/* =========================================================
   MEZBAAN HOSPITALITY — style.css  (Mobile-First Premium)
   ========================================================= */

/* ── CSS Variables ── */
:root {
    --green-dark: #1f3a2e;
    --green-mid: #2d5240;
    --green-light: #3a6b52;
    --green-accent: #4a8a68;
    --green-pale: #e8f0eb;
    --gold: #c8a96e;
    --gold-light: #d4bc8a;
    --gold-pale: #f9f4eb;
    --white: #ffffff;
    --off-white: #fafaf8;
    --gray-100: #f5f5f3;
    --gray-200: #e8e8e4;
    --gray-300: #d0d0ca;
    --gray-500: #8a8a82;
    --gray-700: #4a4a44;
    --gray-900: #1a1a16;

    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Inter', system-ui, sans-serif;

    --shadow-sm: 0 1px 3px rgba(0, 0, 0, .08), 0 1px 2px rgba(0, 0, 0, .04);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, .10), 0 2px 6px rgba(0, 0, 0, .06);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, .12), 0 4px 12px rgba(0, 0, 0, .07);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, .18), 0 8px 24px rgba(0, 0, 0, .10);

    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;

    --transition: .25s cubic-bezier(.4, 0, .2, 1);
    --container: 1200px;
}

/* ── Reset & Base ── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

/* FIX: overflow-x hidden prevents horizontal scroll on all devices */
html,
body {
    overflow-x: hidden;
    max-width: 100%;
}

body {
    font-family: var(--font-body);
    color: var(--gray-900);
    background: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

/* ── Container ── */
/* FIX: reduced padding-inline so content doesn't touch edges on mobile */
.container {
    max-width: var(--container);
    margin-inline: auto;
    padding-inline: clamp(16px, 4vw, 32px);
    width: 100%;
}

/* ── Section base ── */
/* FIX: use clamp so sections don't have excessive spacing on mobile */
.section {
    padding-block: clamp(56px, 8vw, 100px);
}

.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-body);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--green-accent);
    margin-bottom: 18px;
}

.section-eyebrow::before {
    content: '';
    display: block;
    width: 24px;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
    flex-shrink: 0;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 3.1rem);
    font-weight: 600;
    line-height: 1.15;
    color: var(--gray-900);
    margin-bottom: 18px;
}

.section-title em {
    font-style: italic;
    color: var(--green-mid);
}

.section-title.center {
    text-align: center;
}

.section-desc {
    font-size: clamp(.9rem, 2vw, 1.06rem);
    color: var(--gray-500);
    max-width: 600px;
    margin-bottom: 52px;
    line-height: 1.75;
}

.section-desc.center {
    text-align: center;
    margin-inline: auto;
}

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 28px;
    font-family: var(--font-body);
    font-size: .875rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all var(--transition);
    /* FIX: allow wrapping on tiny screens, but nowrap in flex containers */
    white-space: nowrap;
    letter-spacing: .01em;
    position: relative;
    overflow: hidden;
    /* FIX: minimum touch target size 44px */
    min-height: 44px;
    min-width: 44px;
}

.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, .12);
    opacity: 0;
    transition: opacity var(--transition);
    border-radius: inherit;
}

.btn:hover::after {
    opacity: 1;
}

.btn-primary {
    background: var(--green-dark);
    color: var(--white);
    border: 2px solid var(--green-dark);
    box-shadow: 0 2px 12px rgba(31, 58, 46, .2);
}

.btn-primary:hover {
    background: var(--green-mid);
    border-color: var(--green-mid);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(31, 58, 46, .32);
}

.btn-secondary {
    background: var(--gold);
    color: var(--gray-900);
    border: 2px solid var(--gold);
    box-shadow: 0 2px 12px rgba(200, 169, 110, .2);
}

.btn-secondary:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(200, 169, 110, .35);
}

.btn-ghost {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, .45);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, .1);
    border-color: rgba(255, 255, 255, .8);
}

.btn-outline {
    background: transparent;
    color: var(--green-dark);
    border: 2px solid var(--green-dark);
}

.btn-outline:hover {
    background: var(--green-dark);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-sm {
    padding: 9px 22px;
    font-size: .8rem;
    min-height: 44px;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* =========================================================
   NAVBAR
   ========================================================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 18px 0;
    background: transparent;
    transition: background .35s ease, box-shadow .35s ease, padding .35s ease, backdrop-filter .35s ease;
}

.navbar.scrolled {
    background: rgba(15, 25, 20, .92);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: 0 2px 32px rgba(0, 0, 0, .3);
    padding: 12px 0;
}

.nav-container {
    max-width: var(--container);
    margin-inline: auto;
    padding-inline: clamp(16px, 4vw, 32px);
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 11px;
    flex-shrink: 0;
    /* FIX: min touch target */
    min-height: 44px;
}

.site-logo {
    display: block;
    height: 60px;
    width: auto;
    transition: all .3s ease;
}

.site-logo:hover {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .site-logo {
        height: 45px;
    }
}

.logo-icon {
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    box-shadow: 0 3px 14px rgba(200, 169, 110, .45);
    flex-shrink: 0;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-name {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: .01em;
}

.logo-sub {
    font-size: .58rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--gold);
}

/* ── Hide mobile-only elements on desktop ── */
.nav-mobile-header {
    display: none;
}

.nav-links-card {
    display: contents;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2px;
    margin-left: auto;
}

.nav-links a {
    font-size: .85rem;
    font-weight: 500;
    color: rgba(255, 255, 255, .78);
    padding: 7px 15px;
    border-radius: 50px;
    transition: all var(--transition);
    letter-spacing: .01em;
    /* FIX: min touch target */
    min-height: 44px;
    display: flex;
    align-items: center;
}

.nav-links a:hover {
    color: var(--white);
    background: rgba(255, 255, 255, .12);
}

.nav-cta {
    flex-shrink: 0;
    background: var(--gold) !important;
    color: var(--gray-900) !important;
    border: 2px solid var(--gold) !important;
    font-weight: 700 !important;
    padding: 10px 24px !important;
    border-radius: 50px !important;
    font-size: .85rem !important;
    transition: all var(--transition) !important;
    letter-spacing: .01em;
    min-height: 44px !important;
    display: inline-flex !important;
    align-items: center !important;
}

.nav-cta:hover {
    background: var(--gold-light) !important;
    border-color: var(--gold-light) !important;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(200, 169, 110, .38) !important;
}

/* FIX: hamburger hidden on desktop, shown on mobile */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    margin-left: auto;
    /* FIX: min touch target 44px */
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all var(--transition);
    flex-shrink: 0;
}

.hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
    width: 0;
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* FIX: mobile nav overlay backdrop */
.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .55);
    z-index: 1100;
    transition: opacity .35s ease;
}

.nav-overlay.open {
    display: block;
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
    position: relative;
    min-height: 100svh;
    /* FIX: use svh for mobile browser chrome */
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

.hero-image-wrap {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transform-origin: center;
    animation: heroZoom 20s ease-in-out infinite alternate;
    will-change: transform;
}

@keyframes heroZoom {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.07);
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(110deg, rgba(8, 15, 10, .88) 0%, rgba(8, 15, 10, .60) 55%, rgba(8, 15, 10, .32) 100%),
        linear-gradient(to top, rgba(31, 58, 46, .5) 0%, transparent 45%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: var(--container);
    margin-inline: auto;
    /* FIX: use clamp for padding so hero doesn't overflow on small screens */
    padding-inline: clamp(20px, 5vw, 64px);
    padding-top: clamp(110px, 15vw, 160px);
    padding-bottom: 32px;
    width: 100%;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-body);
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
    opacity: 0;
    animation: heroFadeUp .7s .12s cubic-bezier(.22, 1, .36, 1) forwards;
    flex-wrap: wrap;
}

.hero-eyebrow::before,
.hero-eyebrow::after {
    content: '';
    display: block;
    width: 24px;
    height: 1px;
    background: var(--gold);
    opacity: .65;
    flex-shrink: 0;
}

.hero-headline {
    font-family: 'Cormorant Garamond', serif;
    /* FIX: clamp prevents overflow on 320px; was 3.8rem min which is too large */
    font-size: clamp(2.4rem, 7.5vw, 6.4rem);
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: var(--white);
    margin-bottom: 24px;
    max-width: 800px;
    opacity: 0;
    animation: heroFadeUp .9s .26s cubic-bezier(.22, 1, .36, 1) forwards;
    /* FIX: prevent text overflow */
    overflow-wrap: break-word;
    word-break: break-word;
}

.hero-headline .gold-italic {
    color: var(--gold);
    font-style: italic;
}

.hero-sub {
    font-family: var(--font-body);
    font-size: clamp(.9rem, 2vw, 1.08rem);
    color: rgba(255, 255, 255, .72);
    max-width: 540px;
    margin-bottom: 36px;
    line-height: 1.8;
    opacity: 0;
    animation: heroFadeUp .8s .42s cubic-bezier(.22, 1, .36, 1) forwards;
}

.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    opacity: 0;
    animation: heroFadeUp .8s .56s cubic-bezier(.22, 1, .36, 1) forwards;
}

/* Hero button overrides */
.hero-cta-group .btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    border-color: var(--gold);
    color: var(--gray-900);
    font-weight: 700;
    padding: 14px 28px;
    box-shadow: 0 4px 24px rgba(200, 169, 110, .4);
}

.hero-cta-group .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 32px rgba(200, 169, 110, .5);
}

.hero-cta-group .btn-secondary {
    background: rgba(255, 255, 255, .1);
    border: 2px solid rgba(255, 255, 255, .42);
    color: var(--white);
    font-weight: 600;
    padding: 14px 28px;
    backdrop-filter: blur(8px);
}

.hero-cta-group .btn-secondary:hover {
    background: rgba(255, 255, 255, .2);
    border-color: rgba(255, 255, 255, .78);
    transform: translateY(-3px);
}

.hero-cta-group .btn-ghost {
    background: transparent;
    color: rgba(255, 255, 255, .7);
    border: 2px solid rgba(255, 255, 255, .22);
    font-weight: 500;
    padding: 14px 24px;
}

.hero-cta-group .btn-ghost:hover {
    background: rgba(255, 255, 255, .07);
    border-color: rgba(255, 255, 255, .55);
    color: var(--white);
}

@keyframes heroFadeUp {
    from {
        opacity: 0;
        transform: translateY(38px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ── Hero Stats ── */
.hero-stats {
    position: relative;
    z-index: 2;
    max-width: var(--container);
    margin-inline: auto;
    /* FIX: clamp padding */
    padding-inline: clamp(20px, 5vw, 64px);
    padding-bottom: clamp(40px, 6vw, 72px);
    opacity: 0;
    animation: heroFadeUp .8s .74s cubic-bezier(.22, 1, .36, 1) forwards;
    width: 100%;
}

.hero-stats-inner {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, .08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: var(--radius-xl);
    /* FIX: reduce padding on mobile */
    padding: clamp(18px, 3vw, 30px) clamp(16px, 3vw, 40px);
    width: 100%;
    max-width: 740px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, .28), inset 0 1px 0 rgba(255, 255, 255, .1);
    gap: 0;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    /* FIX: reduce padding on mobile */
    padding: 0 clamp(8px, 2vw, 20px);
    min-width: 0;
    /* FIX: prevent overflow in flex */
}

.stat-number {
    font-family: var(--font-display);
    /* FIX: clamp prevents overflow */
    font-size: clamp(1.6rem, 4vw, 2.6rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: clamp(.55rem, 1.2vw, .66rem);
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .5);
    margin-top: 6px;
    /* FIX: allow wrap */
    white-space: normal;
    text-align: center;
}

.stat-divider {
    width: 1px;
    height: 44px;
    background: rgba(255, 255, 255, .14);
    flex-shrink: 0;
}

/* =========================================================
   ABOUT
   ========================================================= */
.about {
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(32px, 6vw, 88px);
    align-items: start;
}

.about-left .section-eyebrow {
    margin-bottom: 14px;
}

.about-text {
    font-size: clamp(.9rem, 1.8vw, 1.05rem);
    color: var(--gray-700);
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-pillars {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.pillar {
    display: flex;
    gap: 12px;
    padding: 18px 16px;
    background: var(--gray-100);
    border-radius: var(--radius-md);
    transition: all var(--transition);
    border: 1px solid transparent;
    align-items: flex-start;
}

.pillar:hover {
    background: var(--green-pale);
    border-color: rgba(74, 138, 104, .2);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.pillar-icon {
    width: 40px;
    height: 40px;
    background: var(--green-dark);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: .9rem;
    flex-shrink: 0;
}

.pillar-content h4 {
    font-size: .84rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 5px;
}

.pillar-content p {
    font-size: .78rem;
    color: var(--gray-500);
    line-height: 1.5;
}

/* =========================================================
   PROPERTIES
   ========================================================= */
.properties {
    background: var(--gray-100);
}

.properties-grid {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.property-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, .07);
    transition: all .35s cubic-bezier(.4, 0, .2, 1);
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    width: 100%;
    border: 1px solid rgba(0, 0, 0, .05);
}

/* FIX: direction:rtl trick causes layout issues on mobile — use order instead */
.property-card:nth-child(even) .prop-image-wrap {
    order: 2;
}

.property-card:nth-child(even) .prop-body {
    order: 1;
}

.property-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 64px rgba(0, 0, 0, .13);
}

.prop-image-wrap {
    position: relative;
    width: 100%;
    min-height: 300px;
    overflow: hidden;
}

.prop-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}

.property-card:hover .prop-image-wrap img {
    transform: scale(1.06);
}

.prop-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--gray-900);
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 50px;
    box-shadow: 0 2px 12px rgba(200, 169, 110, .4);
}

.prop-body {
    padding: clamp(24px, 3vw, 40px);
    display: flex;
    flex-direction: column;
}

.prop-location {
    font-size: .75rem;
    font-weight: 700;
    color: var(--green-accent);
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 10px;
    letter-spacing: .03em;
}

.prop-name {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 2.5vw, 1.7rem);
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 12px;
    line-height: 1.2;
}

.prop-desc {
    font-size: .9rem;
    color: var(--gray-700);
    line-height: 1.7;
    margin-bottom: 14px;
}

.prop-address {
    font-size: .78rem;
    color: var(--gray-500);
    display: flex;
    gap: 6px;
    align-items: flex-start;
    margin-bottom: 18px;
    line-height: 1.55;
    padding: 10px 14px;
    background: var(--gray-100);
    border-radius: var(--radius-sm);
}

.prop-address i {
    margin-top: 2px;
    flex-shrink: 0;
    color: var(--green-accent);
}

.prop-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 20px;
}

.prop-tags span {
    font-size: .68rem;
    font-weight: 600;
    background: var(--green-pale);
    color: var(--green-dark);
    padding: 4px 11px;
    border-radius: 50px;
    letter-spacing: .02em;
}

.prop-actions {
    display: flex;
    gap: 10px;
    margin-top: auto;
    flex-wrap: wrap;
}

/* =========================================================
   FACILITIES
   ========================================================= */
.facilities {
    background: var(--green-dark);
}

.facilities .section-eyebrow {
    color: var(--gold);
}

.facilities .section-title {
    color: var(--white);
}

.facilities .section-desc {
    color: rgba(255, 255, 255, .58);
}

.facilities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.facility-item {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: var(--radius-lg);
    padding: 28px 16px 22px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
    transition: all var(--transition);
}

.facility-item:hover {
    background: rgba(255, 255, 255, .11);
    border-color: rgba(200, 169, 110, .38);
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, .25);
}

.facility-icon {
    width: 52px;
    height: 52px;
    background: rgba(200, 169, 110, .14);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.1rem;
    transition: all var(--transition);
    flex-shrink: 0;
}

.facility-item:hover .facility-icon {
    background: rgba(200, 169, 110, .24);
    transform: scale(1.1);
}

.facility-item span {
    font-size: .8rem;
    font-weight: 500;
    color: rgba(255, 255, 255, .8);
    line-height: 1.4;
}

/* =========================================================
   WHY MEZBAAN
   ========================================================= */
.why {
    background: var(--off-white);
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.reason-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 28px 22px;
    border: 1px solid var(--gray-200);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.reason-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--green-dark), var(--gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .35s ease;
}

.reason-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.reason-card:hover::before {
    transform: scaleX(1);
}

.reason-num {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--gray-200);
    line-height: 1;
    margin-bottom: 12px;
    transition: color var(--transition);
}

.reason-card:hover .reason-num {
    color: var(--green-pale);
}

.reason-card h4 {
    font-size: .92rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.reason-card p {
    font-size: .82rem;
    color: var(--gray-500);
    line-height: 1.65;
}

/* =========================================================
   GALLERY
   ========================================================= */
.gallery {
    background: var(--white);
}

.gallery-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 36px;
    justify-content: center;
}

.filter-btn {
    font-size: .8rem;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: 50px;
    background: var(--gray-100);
    color: var(--gray-700);
    border: 1px solid var(--gray-200);
    transition: all var(--transition);
    letter-spacing: .02em;
    /* FIX: min touch target */
    min-height: 44px;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--green-dark);
    color: var(--white);
    border-color: var(--green-dark);
    box-shadow: 0 4px 16px rgba(31, 58, 46, .25);
}

.gallery-grid {
    columns: 4;
    column-gap: 14px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    break-inside: avoid;
    margin-bottom: 14px;
    display: block;
}

.gallery-item:nth-child(3n+1) {
    aspect-ratio: 4/5;
}

.gallery-item:nth-child(3n+2) {
    aspect-ratio: 4/3;
}

.gallery-item:nth-child(3n) {
    aspect-ratio: 1/1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
    display: block;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 22, 16, .8) 0%, transparent 55%);
    display: flex;
    align-items: flex-end;
    padding: 16px;
    opacity: 0;
    transition: opacity var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    font-size: .75rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: .06em;
    text-transform: uppercase;
}

.gallery-item.hidden {
    display: none;
}

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.testimonials {
    background: var(--green-dark);
}

.testimonials .section-eyebrow {
    color: var(--gold);
}

.testimonials .section-title {
    color: var(--white);
}

.testimonials-wrap {
    display: flex;
    justify-content: center;
}

.testimonial-card {
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .11);
    border-radius: var(--radius-xl);
    padding: clamp(28px, 5vw, 56px) clamp(22px, 5vw, 64px);
    max-width: 680px;
    width: 100%;
    text-align: center;
    position: relative;
    box-shadow: 0 16px 64px rgba(0, 0, 0, .2);
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.testimonial-quote-icon {
    font-size: 2.2rem;
    color: var(--gold);
    margin-bottom: 20px;
    opacity: .8;
}

.testimonial-text {
    font-family: var(--font-display);
    font-size: clamp(1.1rem, 2.2vw, 1.35rem);
    font-style: italic;
    color: rgba(255, 255, 255, .88);
    line-height: 1.75;
    margin-bottom: 28px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: .85rem;
    color: var(--gray-900);
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(200, 169, 110, .35);
}

.testimonial-author strong {
    display: block;
    color: var(--white);
    font-size: .92rem;
    font-weight: 700;
}

.testimonial-author span {
    font-size: .78rem;
    color: rgba(255, 255, 255, .5);
    margin-top: 2px;
    display: block;
}

/* =========================================================
   FAQ
   ========================================================= */
.faq {
    background: var(--gray-100);
}

.faq-container {
    max-width: 800px;
}

.faq-link {
    color: var(--green-accent);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-200);
    overflow: hidden;
    transition: box-shadow var(--transition), border-color var(--transition);
}

.faq-item.active {
    box-shadow: 0 4px 24px rgba(31, 58, 46, .12);
    border-color: rgba(74, 138, 104, .5);
    border-left: 3px solid var(--green-accent);
}

/* FIX: min touch target for FAQ buttons */
.faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 22px;
    font-size: clamp(.85rem, 1.8vw, .95rem);
    font-weight: 600;
    color: var(--gray-900);
    text-align: left;
    gap: 16px;
    transition: color var(--transition);
    min-height: 44px;
}

.faq-q i {
    color: var(--gray-500);
    flex-shrink: 0;
    transition: transform var(--transition), color var(--transition);
    font-size: .78rem;
}

.faq-item.active .faq-q {
    color: var(--green-dark);
}

.faq-item.active .faq-q i {
    transform: rotate(180deg);
    color: var(--green-accent);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .38s ease;
}

.faq-item.active .faq-a {
    max-height: 300px;
}

.faq-a p {
    padding: 0 22px 20px;
    font-size: .9rem;
    color: var(--gray-700);
    line-height: 1.75;
}

/* =========================================================
   CONTACT
   ========================================================= */
.contact {
    background: var(--white);
}

.contact-top {
    display: flex;
    gap: 14px;
    margin-bottom: 44px;
    flex-wrap: wrap;
}

.contact-channel {
    display: flex;
    align-items: center;
    gap: 14px;
    flex: 1;
    min-width: 200px;
    padding: 20px 22px;
    background: var(--gray-100);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    transition: all var(--transition);
    /* FIX: min touch target */
    min-height: 44px;
}

.contact-channel:hover {
    background: var(--green-pale);
    border-color: rgba(74, 138, 104, .35);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.channel-icon {
    width: 46px;
    height: 46px;
    background: var(--green-dark);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.05rem;
    flex-shrink: 0;
    transition: all var(--transition);
}

.contact-channel:hover .channel-icon {
    background: var(--green-mid);
    transform: scale(1.05);
}

.channel-icon.whatsapp {
    background: #25d366;
    color: var(--white);
}

.contact-channel:hover .channel-icon.whatsapp {
    background: #1ab454;
}

.channel-info {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.channel-label {
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--gray-500);
}

.channel-value {
    font-size: .88rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-top: 3px;
    /* FIX: long email won't overflow */
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-map {
    border-radius: var(--radius-xl);
    overflow: hidden;
    min-height: 460px;
    box-shadow: var(--shadow-lg);
}

.contact-map iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 460px;
}

.contact-form-wrap {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.form-group label {
    font-size: .78rem;
    font-weight: 700;
    color: var(--gray-700);
    letter-spacing: .04em;
    text-transform: uppercase;
}

/* FIX: form inputs need min-height 44px for touch accessibility */
.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    font-family: var(--font-body);
    font-size: 1rem;
    /* FIX: 1rem prevents iOS zoom-on-focus */
    color: var(--gray-900);
    background: var(--gray-100);
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-md);
    outline: none;
    transition: border-color var(--transition), background var(--transition), box-shadow var(--transition);
    min-height: 44px;
    width: 100%;
    -webkit-appearance: none;
    /* FIX: normalize on iOS */
    appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--green-accent);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(74, 138, 104, .12);
}

.form-group textarea {
    resize: vertical;
    min-height: 110px;
}

/* WhatsApp float */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 20px;
    z-index: 900;
    width: 54px;
    height: 54px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.45rem;
    box-shadow: 0 4px 24px rgba(37, 211, 102, .42);
    transition: all var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.12) translateY(-2px);
    box-shadow: 0 8px 32px rgba(37, 211, 102, .52);
}

/* =========================================================
   NEWSLETTER
   ========================================================= */
.newsletter {
    background: linear-gradient(125deg, var(--green-dark) 0%, #243d30 50%, var(--green-mid) 100%);
    padding-block: clamp(48px, 7vw, 72px);
    position: relative;
    overflow: hidden;
}

.newsletter::before {
    content: '';
    position: absolute;
    right: -80px;
    top: 50%;
    transform: translateY(-50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(200, 169, 110, .08) 0%, transparent 70%);
    pointer-events: none;
}

.newsletter-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 28px;
    position: relative;
}

.newsletter-text {
    flex: 1;
    min-width: 200px;
}

.newsletter-text h3 {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 3vw, 1.7rem);
    color: var(--white);
    margin-bottom: 7px;
    font-weight: 500;
}

.newsletter-text p {
    font-size: .875rem;
    color: rgba(255, 255, 255, .58);
    line-height: 1.6;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    flex: 1;
    min-width: 260px;
    max-width: 460px;
    /* FIX: allow wrap so button doesn't overflow */
    flex-wrap: wrap;
}

.newsletter-form input {
    flex: 1;
    min-width: 160px;
    padding: 13px 18px;
    font-family: var(--font-body);
    font-size: 1rem;
    /* FIX: prevent iOS zoom */
    border: 1.5px solid rgba(255, 255, 255, .2);
    border-radius: 50px;
    background: rgba(255, 255, 255, .1);
    color: var(--white);
    outline: none;
    transition: all var(--transition);
    min-height: 44px;
    -webkit-appearance: none;
    appearance: none;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, .45);
}

.newsletter-form input:focus {
    background: rgba(255, 255, 255, .16);
    border-color: rgba(255, 255, 255, .48);
}

.newsletter-note {
    font-size: .7rem;
    color: rgba(255, 255, 255, .38);
    width: 100%;
    text-align: center;
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
    background: #0f172a;
    color: #ffffff;
    padding-top: 72px;
    padding-bottom: 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: clamp(28px, 4vw, 56px);
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 11px;
    margin-bottom: 16px;
}

.footer-tagline {
    font-size: .95rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, .72);
    margin-bottom: 18px;
    max-width: 320px;
}

.footer-creed {
    font-size: .78rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 22px;
    opacity: .95;
}

.footer-socials {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, .06);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .85rem;
    color: rgba(255, 255, 255, .55);
    transition: all var(--transition);
    border: 1px solid rgba(255, 255, 255, .06);
    /* FIX: min touch target */
    min-width: 40px;
    min-height: 40px;
}

.footer-socials a:hover {
    background: var(--green-accent);
    color: var(--white);
    border-color: var(--green-accent);
    transform: translateY(-2px);
}

.footer-col h5 {
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 18px;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col ul li a,
.footer-col ul li span {
    font-size: .85rem;
    color: rgba(255, 255, 255, .45);
    display: flex;
    align-items: center;
    gap: 9px;
    transition: color var(--transition);
    /* FIX: min touch target */
    min-height: 44px;
    padding: 2px 0;
}

.footer-col ul li a:hover {
    color: var(--gold);
}

.footer-col ul li i {
    color: var(--green-accent);
    font-size: .78rem;
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .12);
    padding: 25px 15px;
    text-align: center;
    color: #ffffff;
    font-size: 15px;
    line-height: 1.8;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.footer-bottom p {
    font-size: .95rem;
    color: rgba(255, 255, 255, .82);
    margin: 0;
}

.footer-bottom a {
    color: #d4af37;
    text-decoration: none;
    font-weight: 600;
    transition: color .3s ease;
}

.footer-bottom a:hover {
    color: #ffffff;
}

.footer-bottom .heart-emoji {
    color: #eb3b5a;
}

/* =========================================================
   SCROLL ANIMATIONS
   ========================================================= */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .65s ease, transform .65s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* =========================================================
   RESPONSIVE — 1200px
   ========================================================= */
@media (max-width: 1200px) {
    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
        gap: 32px;
    }
}

/* =========================================================
   RESPONSIVE — Tablet 1024px
   ========================================================= */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 44px;
    }

    .about-pillars {
        grid-template-columns: 1fr 1fr;
    }

    .property-card {
        max-width: 100%;
    }

    .facilities-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .reasons-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid {
        columns: 3;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-map {
        min-height: 320px;
    }

    .contact-map iframe {
        min-height: 320px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }
}

/* =========================================================
   RESPONSIVE — 992px
   ========================================================= */
@media (max-width: 992px) {
    .hero-content {
        padding-inline: clamp(20px, 4vw, 40px);
    }

    .hero-stats {
        padding-inline: clamp(20px, 4vw, 40px);
    }

    .property-card {
        /* FIX: stack property cards on narrow tablets */
        grid-template-columns: 1fr;
    }

    .property-card:nth-child(even) .prop-image-wrap {
        order: 0;
    }

    .property-card:nth-child(even) .prop-body {
        order: 0;
    }

    .prop-image-wrap {
        min-height: 240px;
        max-height: 280px;
    }
}

/* =========================================================
   RESPONSIVE — Mobile 768px
   ========================================================= */
@media (max-width: 768px) {

    /* ── Navbar ── */
    .nav-container {
        justify-content: space-between;
    }

    .hamburger {
        display: flex;
        z-index: 1300;
        margin-left: 0;
    }

    .nav-cta {
        display: none !important;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 88%;
        max-width: 320px;
        height: 100vh;
        height: 100dvh;
        /* FIX: dynamic viewport height for mobile browsers */
        background: var(--white);
        flex-direction: column;
        align-items: stretch;
        padding: 0;
        transition: right 0.35s cubic-bezier(.4, 0, .2, 1);
        box-shadow: -8px 0 40px rgba(0, 0, 0, .2);
        overflow-y: auto;
        z-index: 1200;
        gap: 0;
    }

    .nav-links.open {
        right: 0;
    }

    /* FIX: show mobile header inside the nav drawer */
    .nav-mobile-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 18px 24px;
        border-bottom: 1px solid var(--gray-200);
        background: var(--gray-100);
        flex-shrink: 0;
    }

    /* Mobile logo in nav drawer uses dark text */
    .nav-mobile-header .logo-name {
        color: var(--gray-900);
    }

    .nav-mobile-header .logo-sub {
        color: var(--green-accent);
    }

    /* FIX: nav-links-card acts as flex column container inside nav drawer */
    .nav-links-card {
        display: flex;
        flex-direction: column;
        width: 100%;
        padding: 12px 0 24px;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        width: 100%;
        padding: 14px 28px;
        border-bottom: 1px solid var(--gray-100);
        color: black;
        font-size: .95rem;
        border-radius: 0;
        min-height: 52px;
        /* FIX: larger touch targets in mobile nav */
        display: flex;
        align-items: center;
    }

    .nav-links a:hover {
        background: var(--green-pale);
        color: var(--green-dark);
    }

    /* FIX: mobile CTA inside nav drawer */
    .nav-mobile-cta {
        display: flex !important;
        width: 85%;
        max-width: 260px;
        margin: 30px auto;
        padding: 14px 20px;
        border-radius: 50px;
        background:rgb(109, 232, 109);
        color: #fff;
        justify-content: center;
        font-size: 1rem;
        font-weight: 700;
        min-height: 52px;
    }

    /* FIX: overlay behind mobile nav
    body.menu-open::before {
        content: '';
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, .5);
        z-index: 1100;
        pointer-events: none;
    } */

    body.menu-open {
        overflow: hidden;
    }

    /* ── Hero ── */
    .hero-cta-group {
        /* FIX: stack buttons on mobile */
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .hero-cta-group .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    /* ── Hero stats ── */
    .hero-stats-inner {
        /* FIX: 2x2 grid on mobile instead of single row */
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
        padding: 20px;
        max-width: 100%;
    }

    .stat-divider {
        display: none;
    }

    .stat-item {
        padding: 8px;
    }

    /* ── About pillars ── */
    .about-pillars {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    /* ── Facilities ── */
    .facilities-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* ── Gallery ── */
    .gallery-grid {
        columns: 2;
    }

    /* FIX: gallery filters overflow on small phones — allow scroll */
    .gallery-filters {
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 8px;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .gallery-filters::-webkit-scrollbar {
        display: none;
    }

    .filter-btn {
        flex-shrink: 0;
    }

    /* ── Properties ── */
    .property-card {
        grid-template-columns: 1fr;
        border-radius: var(--radius-lg);
    }

    .prop-image-wrap {
        min-height: 220px;
        max-height: 260px;
    }

    /* ── Contact channels ── */
    .contact-top {
        flex-direction: column;
        gap: 10px;
    }

    .contact-channel {
        min-width: 100%;
    }

    /* ── Channel value (email) truncation ── */
    .channel-value {
        font-size: .82rem;
    }

    /* ── Footer ── */
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    /* ── Section spacing ── */
    .section-desc {
        margin-bottom: 36px;
    }
}

/* =========================================================
   RESPONSIVE — 576px
   ========================================================= */
@media (max-width: 576px) {

    /* ── Hero ── */
    .hero-cta-group .btn {
        max-width: 100%;
    }

    /* FIX: hide ghost button on very small screens — too many CTAs */
    .hero-cta-group .btn-ghost {
        display: none;
    }

    /* ── Stats ── */
    .hero-stats-inner {
        padding: 16px 12px;
        gap: 12px;
    }

    /* ── Property actions ── */
    .prop-actions {
        flex-direction: column;
        gap: 8px;
    }

    .prop-actions .btn {
        width: 100%;
        justify-content: center;
    }

    /* ── Newsletter form ── */
    .newsletter-form {
        flex-direction: column;
        max-width: 100%;
        min-width: 100%;
    }

    .newsletter-form input {
        min-width: 100%;
    }

    .newsletter-form .btn {
        width: 100%;
        justify-content: center;
    }

    /* ── Contact map ── */
    .contact-map {
        min-height: 260px;
    }

    .contact-map iframe {
        min-height: 260px;
    }

    /* ── Footer ── */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-brand {
        grid-column: auto;
    }

    .footer-tagline {
        max-width: 100%;
    }
}

/* =========================================================
   RESPONSIVE — 480px
   ========================================================= */
@media (max-width: 480px) {
    .facilities-grid {
        grid-template-columns: 1fr 1fr;
    }

    .reasons-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        columns: 2;
    }

    .testimonial-card {
        padding: 24px 18px;
    }

    .section-title {
        font-size: clamp(1.55rem, 6vw, 1.9rem);
    }

    .hero-stats-inner {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        padding: 14px 10px;
    }
}

/* =========================================================
   RESPONSIVE — 375px (iPhone SE / standard iPhone)
   ========================================================= */
@media (max-width: 375px) {
    .navbar {
        padding: 14px 0;
    }

    .hero-headline {
        font-size: clamp(2rem, 8vw, 2.6rem);
        line-height: 1.08;
    }

    .hero-sub {
        font-size: .88rem;
        margin-bottom: 28px;
    }

    .hero-cta-group {
        gap: 8px;
    }

    .stat-number {
        font-size: 1.45rem;
    }

    .stat-label {
        font-size: .52rem;
    }

    .hero-stats-inner {
        padding: 12px 8px;
        gap: 8px;
    }

    .about-pillars {
        grid-template-columns: 1fr;
    }

    .facilities-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .facility-item {
        padding: 20px 10px 16px;
    }

    .facility-item span {
        font-size: .75rem;
    }

    .reasons-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        columns: 1;
    }

    .faq-q {
        padding: 16px 16px;
        font-size: .85rem;
    }

    .faq-a p {
        padding: 0 16px 16px;
    }

    .footer-grid {
        gap: 24px;
    }

    .contact-top {
        gap: 8px;
    }
}

/* =========================================================
   RESPONSIVE — 320px (small Android phones)
   ========================================================= */
@media (max-width: 320px) {
    .container {
        padding-inline: 14px;
    }

    .nav-container {
        padding-inline: 14px;
    }

    .logo-name {
        font-size: 1rem;
    }

    .logo-sub {
        font-size: .5rem;
    }

    .hero-content {
        padding-inline: 14px;
        padding-top: 90px;
    }

    .hero-stats {
        padding-inline: 14px;
    }

    .hero-headline {
        font-size: 1.9rem;
    }

    .hero-stats-inner {
        grid-template-columns: 1fr 1fr;
        padding: 10px 6px;
        gap: 6px;
    }

    .stat-number {
        font-size: 1.3rem;
    }

    .stat-label {
        font-size: .5rem;
        letter-spacing: .04em;
    }

    .hero-cta-group .btn {
        font-size: .8rem;
        padding: 12px 18px;
    }

    .prop-body {
        padding: 18px 16px;
    }

    .gallery-grid {
        columns: 1;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .footer-bottom-links {
        gap: 14px;
    }
}

/* =========================================================
   REDUCED MOTION
   ========================================================= */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        transition: none !important;
        animation: none !important;
    }

    .fade-up {
        opacity: 1;
        transform: none;
    }

    .hero-bg {
        animation: none;
    }
}

/* =========================================================
   FOCUS STYLES (Accessibility)
   ========================================================= */
:focus-visible {
    outline: 3px solid var(--gold);
    outline-offset: 3px;
    border-radius: 4px;
}

/* =========================================================
   PRINT
   ========================================================= */
@media print {

    .navbar,
    .whatsapp-float,
    .hero-cta-group .btn-ghost {
        display: none;
    }

    .hero {
        min-height: auto;
        padding-top: 40px;
    }
}