/* =============================================
   MONTE SERENO – Main Stylesheet
   Fonts: Cormorant Garamond (display) + Josefin Sans (ui)
   Palette: Cream, Deep Forest Green, Warm Gold
   ============================================= */

:root {
    --cream:       #F5F0E8;
    --cream-dark:  #EDE6D6;
    --gold:        #A07940;
    --gold-light:  #C4964F;
    --gold-pale:   #E8D5B0;
    --forest:      #1C3329;
    --forest-mid:  #2A4A38;
    --charcoal:    #2C2C2C;
    --text:        #3A3028;
    --text-light:  #6B5D4E;
    --white:       #FFFFFF;

    --font-display: 'Cormorant Garamond', serif;
    --font-ui:      'Josefin Sans', sans-serif;

    --nav-h: 80px;
    --radius: 4px;
    --shadow: 0 4px 32px rgba(28,51,41,0.12);
    --shadow-lg: 0 12px 60px rgba(28,51,41,0.18);
    --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ── Reset ────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: var(--font-ui);
    background: var(--cream);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Nav ──────────────────────────────────── */
.site-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    height: var(--nav-h);
    background: rgba(245,240,232,0.96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(160,121,64,0.2);
    transition: box-shadow var(--transition);
}
.site-nav.scrolled { box-shadow: var(--shadow); }
.nav-inner {
    max-width: 1340px;
    margin: 0 auto;
    padding: 0 32px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}
.logo-icon {
    color: var(--gold);
    font-size: 22px;
    line-height: 1;
}
.logo-text { display: flex; flex-direction: column; }
.logo-brand {
    font-family: var(--font-ui);
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 3px;
    color: var(--forest);
}
.logo-sub {
    font-family: var(--font-ui);
    font-weight: 300;
    font-size: 9px;
    letter-spacing: 2.5px;
    color: var(--gold);
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
}
.nav-link {
    font-family: var(--font-ui);
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text);
    padding: 8px 12px;
    border-radius: var(--radius);
    transition: color var(--transition), background var(--transition);
    white-space: nowrap;
}
.nav-link:hover, .nav-link.active {
    color: var(--gold);
    background: rgba(160,121,64,0.08);
}
.nav-cta {
    font-family: var(--font-ui);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--white);
    background: var(--gold);
    padding: 10px 20px;
    border-radius: var(--radius);
    margin-left: 12px;
    transition: background var(--transition), transform var(--transition);
    white-space: nowrap;
}
.nav-cta:hover {
    background: var(--forest);
    transform: translateY(-1px);
}
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--forest);
    transition: all var(--transition);
}

/* ── Page Wrapper ─────────────────────────── */
.site-main { padding-top: var(--nav-h); }
.page-section {
    padding: 100px 32px;
    max-width: 1340px;
    margin: 0 auto;
}
.section-full {
    padding: 100px 32px;
}

/* ── Typography Helpers ───────────────────── */
.eyebrow {
    font-family: var(--font-ui);
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
    margin-bottom: 20px;
}
.eyebrow::before, .eyebrow::after {
    content: '';
    display: block;
    width: 40px;
    height: 1px;
    background: var(--gold);
    opacity: 0.5;
}
.eyebrow-left {
    justify-content: flex-start;
}
.eyebrow-left::before { display: none; }

.display-title {
    font-family: var(--font-display);
    font-size: clamp(38px, 5.5vw, 72px);
    font-weight: 400;
    line-height: 1.1;
    color: var(--charcoal);
    letter-spacing: -0.5px;
}
.display-title em {
    font-style: italic;
    color: var(--gold);
}
.section-subtitle {
    font-family: var(--font-display);
    font-size: clamp(16px, 1.6vw, 20px);
    font-weight: 300;
    color: var(--text-light);
    line-height: 1.65;
    max-width: 680px;
    margin: 0 auto;
}
.text-center { text-align: center; }
.text-left { text-align: left; }

/* ── Buttons ──────────────────────────────── */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-ui);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--white);
    background: var(--gold);
    padding: 16px 36px;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all var(--transition);
}
.btn-primary:hover {
    background: var(--forest);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(160,121,64,0.35);
}
.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-ui);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    background: transparent;
    padding: 14px 32px;
    border: 1.5px solid var(--gold);
    border-radius: var(--radius);
    cursor: pointer;
    transition: all var(--transition);
}
.btn-outline:hover {
    background: var(--gold);
    color: var(--white);
}

/* ── Icon Grid ────────────────────────────── */
.icon-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 0;
    border: 1px solid rgba(160,121,64,0.2);
    border-radius: 8px;
    overflow: hidden;
    background: var(--white);
}
.icon-cell {
    padding: 32px 24px;
    text-align: center;
    border-right: 1px solid rgba(160,121,64,0.15);
    border-bottom: 1px solid rgba(160,121,64,0.15);
    transition: background var(--transition);
}
.icon-cell:hover { background: rgba(160,121,64,0.04); }
.icon-cell-icon {
    width: 44px;
    height: 44px;
    margin: 0 auto 14px;
    color: var(--gold);
}
.icon-cell-title {
    font-family: var(--font-ui);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--forest);
    margin-bottom: 8px;
}
.icon-cell-desc {
    font-family: var(--font-display);
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.5;
}

/* ── Dark Banner ──────────────────────────── */
.dark-banner {
    background: var(--forest);
    padding: 48px 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}
.dark-banner-text .eyebrow { color: var(--gold-pale); }
.dark-banner-text .eyebrow::before,
.dark-banner-text .eyebrow::after { background: var(--gold-pale); }
.dark-banner-title {
    font-family: var(--font-display);
    font-size: clamp(24px, 3vw, 40px);
    color: var(--white);
    font-weight: 400;
}
.dark-banner-title em { color: var(--gold-light); font-style: italic; }
.dark-banner-meta {
    display: flex;
    gap: 24px;
    margin-top: 16px;
    flex-wrap: wrap;
}
.dark-banner-meta span {
    font-family: var(--font-ui);
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
    display: flex;
    align-items: center;
    gap: 6px;
}
.dark-banner-meta span::before {
    content: '';
    display: inline-block;
    width: 16px;
    height: 1px;
    background: var(--gold);
}
.dark-banner-actions { display: flex; flex-direction: column; align-items: flex-end; gap: 12px; }
.dark-banner-actions .wa-link {
    font-family: var(--font-ui);
    font-size: 10px;
    letter-spacing: 1.5px;
    color: rgba(255,255,255,0.6);
    display: flex;
    align-items: center;
    gap: 6px;
}

/* ── Hero (Home) ──────────────────────────── */
.hero {
    position: relative;
    min-height: calc(100vh - var(--nav-h));
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    overflow: hidden;
}
.hero-content {
    padding: 80px 32px 80px 64px;
    position: relative;
    z-index: 2;
}
.hero-image {
    position: relative;
    height: calc(100vh - var(--nav-h));
    overflow: hidden;
}
.hero-image img, .hero-image .img-placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, var(--cream) 0%, transparent 20%);
    pointer-events: none;
}
.hero-eyebrow { justify-content: flex-start; }
.hero-eyebrow::before { display: none; }
.hero-title {
    font-family: var(--font-display);
    font-size: clamp(44px, 5.5vw, 78px);
    font-weight: 400;
    line-height: 1.08;
    color: var(--charcoal);
    margin: 0 0 28px;
}
.hero-title em { font-style: italic; color: var(--gold); }
.hero-body {
    font-family: var(--font-display);
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.65;
    margin-bottom: 12px;
    max-width: 480px;
}
.hero-tagline {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 6px;
}
.hero-tagline-em {
    font-family: var(--font-display);
    font-size: 18px;
    font-style: italic;
    color: var(--gold);
    margin-bottom: 40px;
}
.hero-actions { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
.hero-wa {
    font-family: var(--font-ui);
    font-size: 11px;
    letter-spacing: 1.5px;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color var(--transition);
}
.hero-wa:hover { color: var(--gold); }

/* ── Placeholder images ───────────────────── */
.img-placeholder {
    background: linear-gradient(135deg, var(--cream-dark) 0%, var(--gold-pale) 50%, var(--cream-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-family: var(--font-ui);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-align: center;
    min-height: 240px;
    position: relative;
    overflow: hidden;
}
.img-placeholder::before {
    content: '✦';
    position: absolute;
    font-size: 60px;
    opacity: 0.08;
    color: var(--gold);
}

/* ── Photo Grid (Lifestyle) ───────────────── */
.photo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 24px;
}
.photo-card {
    background: var(--white);
    border-radius: 6px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform var(--transition), box-shadow var(--transition);
}
.photo-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.photo-card-img {
    height: 240px;
    overflow: hidden;
}
.photo-card-img img, .photo-card-img .img-placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.photo-card:hover .photo-card-img img { transform: scale(1.04); }
.photo-card-body {
    padding: 24px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.photo-card-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(160,121,64,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    flex-shrink: 0;
    font-size: 16px;
}
.photo-card-title {
    font-family: var(--font-ui);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--forest);
    margin-bottom: 6px;
}
.photo-card-desc {
    font-family: var(--font-display);
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.55;
}

/* ── Feature Cards ────────────────────────── */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.feature-card {
    background: var(--white);
    border-radius: 6px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform var(--transition);
}
.feature-card:hover { transform: translateY(-4px); }
.feature-card-img {
    height: 260px;
    overflow: hidden;
}
.feature-card-img img, .feature-card-img .img-placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.feature-card-body {
    padding: 28px 24px;
    border-top: 3px solid var(--gold);
}
.feature-card-title {
    font-family: var(--font-ui);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--forest);
    margin-bottom: 10px;
}
.feature-card-desc {
    font-family: var(--font-display);
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.55;
}

/* ── Location Cards ───────────────────────── */
.location-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}
.location-list { display: flex; flex-direction: column; gap: 16px; }
.location-item {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 20px;
    align-items: center;
    background: var(--white);
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(28,51,41,0.08);
    transition: transform var(--transition);
}
.location-item:hover { transform: translateX(4px); }
.location-item-img {
    height: 80px;
    overflow: hidden;
}
.location-item-img img, .location-item-img .img-placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 80px;
}
.location-item-body { padding: 16px 16px 16px 0; }
.location-item-name {
    font-family: var(--font-ui);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--forest);
    margin-bottom: 2px;
}
.location-item-time {
    font-family: var(--font-ui);
    font-size: 10px;
    letter-spacing: 1.5px;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 4px;
}
.location-item-desc {
    font-family: var(--font-display);
    font-size: 14px;
    color: var(--text-light);
}
.map-placeholder {
    background: linear-gradient(135deg, #d4e8db 0%, #b8d4c0 50%, #a8c8b0 100%);
    border-radius: 8px;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 12px;
    color: var(--forest);
    font-family: var(--font-ui);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    box-shadow: var(--shadow);
}
.map-placeholder-icon { font-size: 48px; opacity: 0.4; }

/* ── Compare ──────────────────────────────── */
.compare-split {
    display: grid;
    grid-template-columns: 1fr 80px 1fr;
    min-height: 600px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.compare-left, .compare-right {
    position: relative;
    overflow: hidden;
}
.compare-bg {
    position: absolute;
    inset: 0;
}
.compare-bg img, .compare-bg .img-placeholder { width: 100%; height: 100%; object-fit: cover; }
.compare-overlay {
    position: absolute;
    inset: 0;
    background: rgba(30,30,30,0.65);
}
.compare-right .compare-overlay { background: rgba(28,51,41,0.6); }
.compare-content {
    position: relative;
    z-index: 2;
    padding: 52px 36px;
}
.compare-label {
    font-family: var(--font-ui);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 2px;
    display: inline-block;
    margin-bottom: 32px;
}
.compare-left .compare-label { background: rgba(255,255,255,0.15); color: rgba(255,255,255,0.8); }
.compare-right .compare-label { background: var(--gold); color: var(--white); }
.compare-list { display: flex; flex-direction: column; gap: 20px; }
.compare-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.compare-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 16px;
}
.compare-left .compare-icon { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.5); }
.compare-right .compare-icon { background: rgba(160,121,64,0.2); color: var(--gold-light); }
.compare-item-text {
    font-family: var(--font-display);
    font-size: 17px;
    line-height: 1.4;
}
.compare-left .compare-item-text { color: rgba(255,255,255,0.7); }
.compare-right .compare-item-text { color: var(--white); }
.compare-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    z-index: 3;
}
.compare-arrow span {
    width: 48px;
    height: 48px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
    box-shadow: var(--shadow);
}

/* ── Register Form ────────────────────────── */
.register-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}
.register-form-wrap {
    background: var(--white);
    border-radius: 8px;
    padding: 48px 40px;
    box-shadow: var(--shadow-lg);
}
.form-group { margin-bottom: 20px; }
.form-label {
    display: block;
    font-family: var(--font-ui);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 8px;
}
.form-input, .form-select {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid rgba(160,121,64,0.25);
    border-radius: var(--radius);
    font-family: var(--font-display);
    font-size: 16px;
    color: var(--text);
    background: var(--cream);
    transition: border-color var(--transition), box-shadow var(--transition);
    appearance: none;
}
.form-input:focus, .form-select:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(160,121,64,0.12);
    background: var(--white);
}
.form-input::placeholder { color: var(--text-light); opacity: 0.7; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-submit { width: 100%; padding: 18px; font-size: 12px; }
.form-wa-note {
    text-align: center;
    margin-top: 16px;
    font-family: var(--font-ui);
    font-size: 11px;
    letter-spacing: 1px;
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}
.form-success {
    display: none;
    text-align: center;
    padding: 48px 24px;
}
.form-success-icon { font-size: 48px; color: var(--gold); margin-bottom: 16px; }
.form-success-title {
    font-family: var(--font-display);
    font-size: 28px;
    color: var(--forest);
    margin-bottom: 8px;
}
.form-success-desc {
    font-family: var(--font-display);
    font-size: 17px;
    color: var(--text-light);
}
.register-info { padding-top: 8px; }
.register-price-tag {
    background: var(--forest);
    color: var(--white);
    border-radius: 6px;
    padding: 28px 32px;
    margin-bottom: 32px;
}
.price-eyebrow {
    font-family: var(--font-ui);
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 8px;
}
.price-value {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 300;
    color: var(--white);
    line-height: 1;
    margin-bottom: 4px;
}
.price-value span { font-size: 28px; }
.price-note {
    font-family: var(--font-ui);
    font-size: 10px;
    letter-spacing: 1.5px;
    color: rgba(255,255,255,0.4);
}
.bhk-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 12px; }
.bhk-tag {
    font-family: var(--font-ui);
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold-light);
    border: 1px solid rgba(160,121,64,0.4);
    padding: 4px 12px;
    border-radius: 20px;
}
.highlights-list { display: flex; flex-direction: column; gap: 14px; }
.highlight-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    font-family: var(--font-display);
    font-size: 16px;
    color: var(--text-light);
}
.highlight-item::before {
    content: '✦';
    color: var(--gold);
    flex-shrink: 0;
    font-size: 10px;
    margin-top: 5px;
}

/* ── Walkthrough ──────────────────────────── */
.walkthrough-hero {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 48px;
    aspect-ratio: 16/7;
    background: var(--cream-dark);
    box-shadow: var(--shadow-lg);
}
.walkthrough-hero .img-placeholder { height: 100%; }
.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
    transition: transform var(--transition), box-shadow var(--transition);
    z-index: 3;
}
.play-button:hover {
    transform: translate(-50%, -50%) scale(1.08);
    box-shadow: 0 12px 40px rgba(0,0,0,0.35);
}
.play-button svg { width: 28px; height: 28px; color: var(--gold); margin-left: 4px; }
.walkthrough-meta {
    position: absolute;
    bottom: 24px;
    left: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
    font-family: var(--font-ui);
    font-size: 11px;
    letter-spacing: 2px;
    z-index: 2;
}
.walkthrough-meta span { opacity: 0.6; }
.walkthrough-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 60%);
    z-index: 1;
}
.specs-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1px;
    background: rgba(160,121,64,0.2);
    border: 1px solid rgba(160,121,64,0.2);
    border-radius: 8px;
    overflow: hidden;
}
.spec-cell {
    background: var(--white);
    padding: 28px 20px;
    text-align: center;
}
.spec-icon { font-size: 24px; margin-bottom: 10px; color: var(--gold); }
.spec-title {
    font-family: var(--font-ui);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--forest);
    margin-bottom: 6px;
}
.spec-desc {
    font-family: var(--font-display);
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.4;
}

/* ── Bottom CTA Banner ────────────────────── */
.bottom-cta {
    background: var(--forest);
    padding: 60px 32px;
    text-align: center;
}
.bottom-cta-inner { max-width: 700px; margin: 0 auto; }
.bottom-cta-title {
    font-family: var(--font-display);
    font-size: clamp(28px, 3.5vw, 48px);
    color: var(--white);
    font-weight: 400;
    margin-bottom: 8px;
}
.bottom-cta-title em { color: var(--gold-light); font-style: italic; }
.bottom-cta-sub {
    font-family: var(--font-display);
    font-size: 18px;
    color: rgba(255,255,255,0.6);
    margin-bottom: 32px;
}
.bottom-cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── Footer ───────────────────────────────── */
.site-footer {
    background: var(--charcoal);
    color: var(--cream);
    padding: 48px 32px 32px;
}
.footer-inner { max-width: 1340px; margin: 0 auto; }
.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}
.footer-brand .logo-icon { font-size: 24px; color: var(--gold); }
.footer-logo-name {
    font-family: var(--font-ui);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--white);
}
.footer-logo-sub {
    font-family: var(--font-ui);
    font-size: 9px;
    letter-spacing: 2.5px;
    color: var(--gold);
}
.footer-tagline {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 18px;
    color: var(--gold-pale);
    margin-bottom: 28px;
}
.footer-links {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 32px;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-links a {
    font-family: var(--font-ui);
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.footer-bottom p {
    font-family: var(--font-ui);
    font-size: 10px;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.3);
}
.footer-disclaimer { opacity: 0.5; font-style: italic; }

/* ── WhatsApp Float ───────────────────────── */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 999;
    width: 54px;
    height: 54px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    transition: transform var(--transition), box-shadow var(--transition);
}
.whatsapp-float:hover {
    transform: scale(1.08);
    box-shadow: 0 8px 28px rgba(37,211,102,0.5);
}
.whatsapp-float svg { width: 28px; height: 28px; }

/* ── Animations ───────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── Responsive ───────────────────────────── */
@media (max-width: 1024px) {
    .hero { grid-template-columns: 1fr; }
    .hero-image { display: none; }
    .hero-content { padding: 60px 32px; }
    .photo-grid { grid-template-columns: repeat(2, 1fr); }
    .feature-grid { grid-template-columns: repeat(2, 1fr); }
    .location-layout { grid-template-columns: 1fr; }
    .map-placeholder { height: 300px; }
    .register-layout { grid-template-columns: 1fr; }
    .compare-split { grid-template-columns: 1fr 60px 1fr; }
    .specs-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
    :root { --nav-h: 64px; }
    .nav-links {
        display: none;
        position: fixed;
        top: var(--nav-h);
        left: 0; right: 0;
        background: var(--cream);
        flex-direction: column;
        padding: 24px 32px 32px;
        border-bottom: 1px solid rgba(160,121,64,0.2);
        gap: 4px;
        box-shadow: var(--shadow);
    }
    .nav-links.open { display: flex; }
    .nav-toggle { display: flex; }
    .nav-link, .nav-cta { font-size: 13px; padding: 12px; margin: 0; }
    .page-section { padding: 60px 24px; }
    .photo-grid { grid-template-columns: 1fr; }
    .feature-grid { grid-template-columns: 1fr; }
    .compare-split { grid-template-columns: 1fr; grid-template-rows: 1fr auto 1fr; }
    .compare-arrow { padding: 20px; }
    .specs-grid { grid-template-columns: repeat(2, 1fr); }
    .dark-banner { flex-direction: column; align-items: flex-start; }
    .dark-banner-actions { align-items: flex-start; }
    .register-form-wrap { padding: 32px 24px; }
    .form-row { grid-template-columns: 1fr; }
    .icon-grid { grid-template-columns: repeat(2, 1fr); }
}
