/* ─── RESET ─── */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* ─── VARIABLES ─── */
:root {
    --gold: #D5B77B;
    --gold-light: #e8d09a;
    --gold-dim: rgba(213, 183, 123, 0.15);
    --black: #0a0a0a;
    --dark: #0d0d0d;
    --dark2: #111111;
    --dark3: #161616;
    --charcoal: #1a1a1a;
    --white: #ffffff;
    --white-70: rgba(255, 255, 255, 0.7);
    --white-40: rgba(255, 255, 255, 0.4);
    --serif: 'Cormorant Garamond', Georgia, serif;
    --sans: 'Jost', sans-serif;
}

html { scroll-behavior: smooth; }

body {
    background: var(--black);
    color: var(--white);
    font-family: var(--sans);
    font-weight: 300;
    font-size: 16px;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* ─── REVEAL ANIMATIONS ─── */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.22s; }
.reveal-delay-3 { transition-delay: 0.36s; }
.reveal-delay-4 { transition-delay: 0.5s; }

/* ─── BUTTONS ─── */
.btn-gold {
    display: inline-block;
    padding: 14px 36px;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    background: transparent;
    transition: background 0.3s ease, color 0.3s ease;
    position: relative;
    overflow: hidden;
}
.btn-gold::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gold);
    transform: translateX(-101%);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.btn-gold:hover::before { transform: translateX(0); }
.btn-gold:hover { color: var(--black); }
.btn-gold span { position: relative; z-index: 1; }

@media (max-width: 768px) {
    .btn-gold { padding: 10px 24px; font-size: 9px; }
}

/* ─── SHARED TEXT CLASSES ─── */
.eyebrow {
    font-family: var(--sans);
    font-size: 11px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 22px;
}
.section-headline {
    font-family: var(--serif);
    font-size: clamp(42px, 6.5vw, 78px);
    font-weight: 300;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 22px;
}
.section-subheadline {
    font-family: var(--sans);
    font-size: 18px;
    font-weight: 300;
    line-height: 1.85;
    color: var(--white-70);
    margin-bottom: 36px;
    max-width: 420px;
}
.chapter-label {
    font-family: var(--sans);
    font-size: 11px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}
.chapter-headline {
    font-family: var(--serif);
    font-size: clamp(36px, 5.5vw, 66px);
    font-weight: 300;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 22px;
}
.chapter-headline em { color: var(--gold); font-style: italic; }
.chapter-body {
    font-family: var(--sans);
    font-size: 18px;
    font-weight: 300;
    line-height: 1.85;
    color: var(--white-70);
    margin-bottom: 36px;
    max-width: 400px;
}
.chapter-subheader {
    font-family: var(--sans);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
    color: var(--gold);
    margin-bottom: 16px;
}
.tag-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 40px; }
.tag-pill {
    padding: 7px 18px 7px 0;
    border: none;
    color: var(--gold);
    font-family: var(--sans);
    font-size: 11px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
}
.spec-list { list-style: none; margin-bottom: 36px; }
.spec-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    font-family: var(--sans);
    font-size: 14px;
    font-weight: 300;
    color: var(--white-70);
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.spec-list li::before { content: '—'; color: var(--gold); font-size: 14px; flex-shrink: 0; }

/* ─── IMG CAPTION ─── */
.img-caption-notice {
    position: absolute;
    bottom: 12px;
    right: 16px;
    z-index: 3;
    font-family: var(--sans);
    font-size: 8px;
    font-weight: 300;
    letter-spacing: 0.22em;
    color: rgba(255, 255, 255, 0.50);
    text-transform: uppercase;
    pointer-events: none;
    user-select: none;
}

/* ─── TOP BAR ─── */
#top-bar {
    position: relative;
    z-index: 998;
    background: black;
    border-bottom: 1px solid rgba(213, 183, 123, 0.25);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 28px;
    height: 84px;
}
#top-bar-logo { height: 70px; width: auto; display: block; }

@media (max-width: 480px) {
    #top-bar { height: auto; min-height: 56px; padding: 8px 12px; }
    #top-bar-logo { height: 48px; }
    .top-bar-rera { padding: 4px 8px 4px 6px !important; gap: 7px !important; }
    #rera-qr-block img { width: 30px !important; height: 30px !important; }
    #rera-qr-block span { font-size: 6px !important; }
}

/* ─── QR POPUP ─── */
#qr-popup {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
#qr-popup.open { display: flex; }
#qr-popup img {
    width: min(280px, 80vw);
    height: auto;
    border: 1px solid rgba(213, 183, 123, 0.4);
    background: #fff;
    padding: 16px;
}

/* ─── HERO ─── */
#hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    background: #000;
}
#hero-video {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center 20%;
    z-index: 0;
    opacity: 0;
    transition: opacity 0.9s ease;
}
#hero-video.loaded { opacity: 1; }
.hero-overlay { position: absolute; inset: 0; background: transparent; z-index: 1; }
.hero-content {
    position: absolute;
    top: clamp(28px, 4vw, 50px);
    left: clamp(28px, 5vw, 70px);
    z-index: 6;
}
.hero-bottom-left {
    position: absolute;
    bottom: clamp(36px, 5vw, 60px);
    left: clamp(28px, 5vw, 70px);
    z-index: 6;
    opacity: 0;
    animation: heroFade 1.2s ease 1.3s forwards;
}
.scroll-indicator {
    position: absolute;
    bottom: 36px;
    right: clamp(32px, 6vw, 90px);
    z-index: 6;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    opacity: 0;
    animation: heroFade 1s ease 1.8s forwards;
}
.scroll-indicator span {
    font-family: var(--sans);
    font-size: 9px;
    letter-spacing: 0.25em;
    color: var(--white-40);
    text-transform: uppercase;
}
.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}
#sound-toggle {
    position: absolute;
    top: 16px; right: 20px;
    z-index: 6;
    background: transparent;
    border: none;
    color: var(--gold);
    font-size: 20px;
    width: 32px; height: 32px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}
#sound-toggle:hover { opacity: 1; }
#video-loader {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 4;
    pointer-events: none;
}
#hero-spinner {
    width: 36px; height: 36px;
    border: 3px solid rgba(255, 255, 255, 0.22);
    border-top-color: var(--gold);
    border-radius: 50%;
    animation: heroSpin 0.9s linear infinite;
}

@keyframes heroFade {
    from { opacity: 0; transform: translateY(18px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes heroSpin { to { transform: rotate(360deg); } }
@keyframes scrollPulse {
    0%, 100% { transform: scaleY(1); opacity: 0.6; }
    50% { transform: scaleY(1.3); opacity: 1; }
}

/* Mobile hero */
@media (max-width: 768px) {
    #hero { height: auto; min-height: unset; display: block; }
    #hero-video { position: relative; top: auto; left: auto; width: 100%; height: auto; object-fit: unset; }
    .hero-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.55) 40%, rgba(0,0,0,0.30) 100%); }
    .hero-content { position: absolute; top: 20px; left: 20px; padding: 0; }
    .hero-bottom-left { bottom: 24px; left: 20px; }
    .scroll-indicator { position: absolute; }
}

/* ─── SECTION: LIFE ─── */
#life {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}
#life .section-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.45) 60%, rgba(0,0,0,0.2) 100%);
    z-index: 1;
}
.life-content {
    position: relative;
    z-index: 2;
    padding: clamp(40px, 8vw, 120px);
    max-width: 640px;
}

/* ─── SECTION: CALM ─── */
#calm {
    background: var(--black);
    padding: clamp(80px, 10vw, 140px) clamp(40px, 7vw, 100px);
    border-top: 1px solid rgba(213, 183, 123, 0.08);
}
.calm-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(48px, 6vw, 100px);
    align-items: center;
}
.calm-text-col { display: flex; flex-direction: column; gap: 0; }
.calm-headline {
    font-family: var(--serif);
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 300;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 24px;
}
.calm-headline em { color: var(--gold); font-style: italic; }
.calm-separator { width: 32px; height: 1px; background: var(--gold); opacity: 0.5; margin-bottom: 24px; }
.calm-body {
    font-family: var(--sans);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.90);
    margin-bottom: 20px;
    max-width: 440px;
}
.calm-video-col { display: flex; justify-content: center; align-items: center; }
.calm-video-wrap { position: relative; width: 100%; max-width: 480px; }
.calm-video-wrap video {
    display: block;
    width: 100%;
    height: auto;
    border: 1px solid rgba(213, 183, 123, 0.12);
}
#calm-sound-toggle {
    position: absolute;
    bottom: 14px; left: 14px;
    z-index: 3;
    background: rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(213, 183, 123, 0.25);
    color: var(--gold);
    font-size: 16px;
    width: 34px; height: 34px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.75;
    transition: opacity 0.3s ease;
}
#calm-sound-toggle:hover { opacity: 1; }

@media (max-width: 860px) {
    .calm-inner { grid-template-columns: 1fr; gap: 48px; }
    .calm-video-wrap { max-width: 100%; }
    .calm-body { max-width: 100%; }
}

/* ─── SECTION: CHAPTER 2 ─── */
#chapter2 {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    overflow: hidden;
}
#chapter2 .section-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(260deg, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0.1) 100%);
    z-index: 1;
}
#chapter2 .chapter-text {
    position: relative;
    z-index: 2;
    padding: clamp(60px, 10vw, 140px) clamp(40px, 7vw, 100px);
    max-width: 600px;
}
#chapter2 .img-caption-notice {
    position: absolute;
    bottom: 16px; left: 16px; right: auto;
    z-index: 4;
    color: rgba(255, 255, 255, 0.65);
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.8);
}

/* ─── SECTION: WHY BANDRA ─── */
#why-bandra {
    background: var(--dark2);
    border-top: 1px solid rgba(213, 183, 123, 0.08);
    padding: clamp(80px, 12vw, 160px) clamp(40px, 8vw, 120px);
}
.wb-inner { max-width: 1100px; margin: 0 auto; }
.wb-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 100px);
    margin-bottom: 60px;
    align-items: start;
}
.wb-headline {
    font-family: var(--serif);
    font-size: clamp(36px, 4.5vw, 64px);
    font-weight: 300;
    line-height: 1.1;
    color: var(--white);
    margin-top: 16px;
}
.wb-headline em { color: var(--gold); font-style: italic; }
.wb-body-col { display: flex; flex-direction: column; gap: 20px; padding-top: 8px; }
.wb-body {
    font-family: var(--sans);
    font-size: 18px;
    font-weight: 400;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.92);
}
.wb-divider { width: 100%; height: 1px; background: rgba(213, 183, 123, 0.12); margin-bottom: 48px; }
.wb-tiles {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(213, 183, 123, 0.1);
    margin-bottom: 60px;
}
.wb-tile {
    background: var(--dark2);
    padding: 32px 28px;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: background 0.3s ease;
}
.wb-tile:hover { background: rgba(213, 183, 123, 0.04); }
.wb-tile-time { font-family: var(--sans); font-size: 11px; font-weight: 400; letter-spacing: 0.25em; color: var(--gold); text-transform: uppercase; }
.wb-tile-name { font-family: var(--serif); font-size: 22px; font-weight: 300; color: var(--white); line-height: 1.2; }
.wb-tile-cta { font-family: var(--sans); font-size: 14px; letter-spacing: 0.2em; color: var(--white-40); text-transform: uppercase; margin-top: 12px; transition: color 0.2s ease; }
.wb-tile:hover .wb-tile-cta { color: var(--gold); }
.wb-bottom { text-align: left; }

@media (max-width: 900px) {
    .wb-top { grid-template-columns: 1fr; gap: 28px; }
    .wb-tiles { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
    .wb-tile { padding: 24px 18px; }
    .wb-tile-name { font-size: 18px; }
}

/* ─── PILLAR SECTIONS ─── */
.pillar-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.pillar-section.align-right { justify-content: flex-end; }
.pillar-section .pillar-overlay { position: absolute; inset: 0; z-index: 1; }
.pillar-section-content {
    position: relative;
    z-index: 2;
    padding: clamp(60px, 10vw, 140px) clamp(40px, 7vw, 100px);
    max-width: 600px;
}
.pillar-name {
    font-family: var(--serif);
    font-size: clamp(36px, 5vw, 58px);
    font-weight: 300;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 8px;
}
.pillar-subheader {
    font-family: var(--sans);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.7;
    color: var(--gold);
    margin-bottom: 20px;
    max-width: 400px;
}
.pillar-separator { width: 32px; height: 1px; background: var(--gold); opacity: 0.5; margin-bottom: 22px; }
.pillar-body {
    font-family: var(--sans);
    font-size: 18px;
    font-weight: 400;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 28px;
    max-width: 400px;
}
.pillar-specs { list-style: none; margin-bottom: 32px; }
.pillar-specs li {
    font-family: var(--sans);
    font-size: 15px;
    font-weight: 400;
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 14px;
    color: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.pillar-specs li::before { content: '—'; color: var(--gold); font-size: 14px; flex-shrink: 0; }

/* Pillar overlays */
#pillar-space .pillar-overlay {
    background: linear-gradient(to right, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.58) 35%, rgba(0,0,0,0.28) 60%, transparent 80%);
}
#pillar-wellness .pillar-overlay {
    background: linear-gradient(to left, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.58) 35%, rgba(0,0,0,0.28) 60%, transparent 80%);
}

@media (max-width: 900px) {
    .pillar-section.align-right { justify-content: flex-start; }
    #pillar-wellness .pillar-overlay {
        background: linear-gradient(to right, rgba(0,0,0,0.50) 0%, rgba(0,0,0,0.58) 35%, rgba(0,0,0,0.28) 60%, transparent 80%);
    }
}

/* ─── PHILOSOPHY INTRO ─── */
#philosophy-intro {
    background: var(--dark2);
    padding: clamp(70px, 10vw, 130px) clamp(40px, 8vw, 120px) clamp(60px, 8vw, 100px);
    text-align: center;
}
.philosophy-super { font-family: var(--sans); font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.philosophy-title { font-family: var(--serif); font-size: clamp(36px, 5vw, 64px); font-weight: 300; line-height: 1.1; color: var(--white); margin-bottom: 28px; }
.philosophy-intro-text { font-family: var(--sans); font-size: 18px; font-weight: 400; line-height: 1.85; color: rgba(255,255,255,0.90); max-width: 560px; margin: 0 auto; }
.pillar-divider { width: 1px; height: 40px; background: var(--gold); opacity: 0.3; margin: 28px auto 0; }

/* ─── FINAL CTA ─── */
#final-cta {
    position: relative;
    padding: clamp(100px, 15vw, 200px) 40px;
    text-align: center;
    overflow: hidden;
    background: var(--black);
}
#final-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(213,183,123,0.05) 0%, transparent 70%);
    pointer-events: none;
}
#final-cta::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(213,183,123,0.015) 2px, rgba(213,183,123,0.015) 3px);
    pointer-events: none;
}
.final-cta-content { position: relative; z-index: 1; }
.final-headline { font-family: var(--serif); font-size: clamp(40px, 7vw, 88px); font-weight: 300; line-height: 1.05; color: var(--white); margin-bottom: 26px; }
.final-headline em { color: var(--gold); font-style: italic; }
.final-sub { font-family: var(--sans); font-size: 18px; font-weight: 400; line-height: 1.85; color: rgba(255,255,255,0.90); max-width: 480px; margin: 0 auto 48px; }

/* ─── FOOTER ─── */
footer {
    background: var(--dark2);
    border-top: 1px solid rgba(213, 183, 123, 0.1);
    padding: 60px 40px;
    text-align: center;
}
.footer-location { font-family: var(--sans); font-size: 12px; letter-spacing: 0.25em; color: rgba(255,255,255,0.75); text-transform: uppercase; margin-bottom: 12px; }
.footer-tag { font-family: var(--sans); font-size: 10px; letter-spacing: 0.2em; color: var(--gold); text-transform: uppercase; margin-bottom: 32px; }
.footer-divider { width: 40px; height: 1px; background: rgba(213,183,123,0.2); margin: 0 auto 22px; }
.footer-copy { font-family: var(--sans); font-size: 12px; color: rgba(255,255,255,0.30); letter-spacing: 0.12em; line-height: 1.9; }
.footer-contact { display: flex; align-items: center; justify-content: center; gap: 12px; margin-bottom: 32px; }
.footer-contact::before, .footer-contact::after { content: ''; width: 40px; height: 1px; background: rgba(213,183,123,0.3); }
.footer-contact-inner { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.footer-contact-label { font-family: var(--sans); font-size: 9px; letter-spacing: 0.35em; text-transform: uppercase; color: rgba(255,255,255,0.85); }
.footer-phone { font-family: var(--serif); font-size: 22px; font-weight: 300; color: var(--gold); letter-spacing: 0.18em; text-decoration: none; font-style: italic; transition: color 0.25s ease, letter-spacing 0.25s ease; }
.footer-phone:hover { color: var(--gold-light); letter-spacing: 0.22em; }
.footer-map-wrap { width: 100%; max-width: 600px; margin: 0 auto 36px; border: 1px solid rgba(213,183,123,0.2); overflow: hidden; line-height: 0; }
.footer-map-wrap iframe { width: 100%; height: 280px; border: 0; }
.footer-legal-links { margin-bottom: 20px; display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 8px; }
.footer-legal-links a { font-family: var(--sans); font-size: 12px; letter-spacing: 0.15em; color: rgba(255,255,255,0.55); text-decoration: none; text-transform: uppercase; transition: color 0.2s; }
.footer-legal-links a:hover { color: var(--gold); }
.footer-legal-sep { color: rgba(213,183,123,0.25); font-size: 10px; }

@media (max-width: 600px) {
    .life-content { padding: 40px 24px; }
    footer { padding: 50px 24px; }
}

/* ─── MODAL ─── */
.modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.88);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}
.modal-backdrop.open { opacity: 1; visibility: visible; }
.modal {
    background: var(--dark3);
    border: 1px solid rgba(213, 183, 123, 0.2);
    width: 100%;
    max-width: 500px;
    padding: clamp(36px, 6vw, 60px);
    position: relative;
    transform: translateY(24px);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.modal-backdrop.open .modal { transform: translateY(0); }
.modal-close { position: absolute; top: 20px; right: 24px; background: none; border: none; color: var(--white-40); font-size: 20px; cursor: pointer; padding: 4px; transition: color 0.2s; font-family: var(--sans); font-weight: 200; line-height: 1; }
.modal-close:hover { color: var(--gold); }
.modal-title { font-family: var(--serif); font-size: 32px; font-weight: 300; color: var(--white); margin-bottom: 8px; }
.modal-subtitle { font-family: var(--sans); font-size: 11px; letter-spacing: 0.2em; color: var(--gold); text-transform: uppercase; margin-bottom: 36px; }
.form-group { margin-bottom: 22px; }
.form-group label { display: block; font-family: var(--sans); font-size: 9px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.form-group input { width: 100%; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); color: var(--white); font-family: var(--sans); font-size: 14px; font-weight: 300; padding: 14px 16px; outline: none; transition: border-color 0.25s ease; -webkit-appearance: none; border-radius: 0; }
.form-group input:focus { border-color: var(--gold); }
.form-group input::placeholder { color: rgba(255,255,255,0.2); }
.field-error { font-family: var(--sans); font-size: 11px; color: #e06060; margin-top: 6px; display: none; }
.field-error.visible { display: block; }
.modal-submit { width: 100%; padding: 16px; background: transparent; border: 1px solid var(--gold); color: var(--gold); font-family: var(--sans); font-size: 11px; font-weight: 400; letter-spacing: 0.2em; text-transform: uppercase; cursor: pointer; position: relative; overflow: hidden; transition: color 0.3s ease; margin-top: 8px; }
.modal-submit::before { content: ''; position: absolute; inset: 0; background: var(--gold); transform: translateX(-101%); transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1); }
.modal-submit:hover:not(:disabled)::before { transform: translateX(0); }
.modal-submit:hover:not(:disabled) { color: var(--black); }
.modal-submit:disabled { opacity: 0.5; cursor: not-allowed; }
.modal-submit span { position: relative; z-index: 1; }
.spinner { display: none; width: 16px; height: 16px; border: 2px solid rgba(213,183,123,0.3); border-top-color: var(--gold); border-radius: 50%; animation: spin 0.7s linear infinite; position: relative; z-index: 1; margin: 0 auto; }
@keyframes spin { to { transform: rotate(360deg); } }
.modal-success { text-align: center; padding: 20px 0; display: none; }
.modal-success-icon { font-size: 36px; margin-bottom: 16px; }
.modal-success-title { font-family: var(--serif); font-size: 26px; color: var(--white); margin-bottom: 10px; }
.modal-success-body { font-family: var(--sans); font-size: 13px; color: var(--white-70); line-height: 1.7; }
.modal-error-msg { font-family: var(--sans); font-size: 12px; color: #e06060; text-align: center; margin-top: 12px; display: none; }

/* ═══════════════════════════════════════════════
   DESKTOP: CREAM OVERLAY SECTIONS (min-width 901px)
   ═══════════════════════════════════════════════ */
@media (min-width: 901px) {
    /* Life — cream overlay left side */
    #life .section-overlay {
        background: linear-gradient(to right, rgba(242,237,224,1.0) 0%, rgba(242,237,224,1.0) 40%, rgba(242,237,224,0.85) 58%, rgba(242,237,224,0.20) 75%, transparent 88%);
    }
    #life .section-headline  { color: #0a0a0a; font-weight: 400; }
    #life .section-subheadline { color: rgba(10,10,10,0.80); }
    #life .eyebrow           { color: #8a6500; font-weight: 500; }
    #life .tag-pill          { color: #7a5c00; font-weight: 500; }
    #life .btn-gold          { border-color: #7a5c00; color: #7a5c00; }
    #life .btn-gold::before  { background: #7a5c00; }
    #life .btn-gold:hover    { color: var(--white); }

    /* Chapter 2 — cream overlay right side */
    #chapter2 .section-overlay {
        background: linear-gradient(to left, rgba(242,237,224,1.0) 0%, rgba(242,237,224,1.0) 36%, rgba(242,237,224,0.75) 55%, rgba(242,237,224,0.15) 72%, transparent 85%);
    }
    #chapter2 .chapter-headline   { color: #111111; font-weight: 400; }
    #chapter2 .chapter-headline em { color: var(--gold); }
    #chapter2 .chapter-body       { color: var(--gold); font-weight: 400; font-size: 17px; line-height: 1.85; }
    #chapter2 .spec-list li        { color: rgba(20,20,20,0.85); font-weight: 500; font-size: 15px; border-bottom-color: rgba(0,0,0,0.10); }
    #chapter2 .spec-list li::before { color: #8a6500; }
    #chapter2 .btn-gold            { border-color: #7a5c00; color: #7a5c00; }
    #chapter2 .btn-gold::before    { background: #7a5c00; }
    #chapter2 .btn-gold:hover      { color: var(--white); }
}

/* ═══════════════════════════════════════════════
   MOBILE OVERRIDES (max-width 900px)
   ═══════════════════════════════════════════════ */
@media (max-width: 900px) {
    #chapter2 { justify-content: flex-start; }
    #chapter2 .section-overlay { background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.82) 60%); }
    #chapter2 .chapter-headline { color: var(--white); }
    #chapter2 .chapter-body     { color: var(--gold); font-weight: 400; }
    #chapter2 .spec-list li     { color: rgba(255,255,255,0.92); border-bottom-color: rgba(255,255,255,0.10); }
    #life .section-headline     { color: var(--white); }
    #life .section-subheadline  { color: rgba(255,255,255,0.92); font-weight: 400; }
    #life .eyebrow              { color: var(--gold); }
    #life .tag-pill             { color: var(--gold); }
}