/* ==========================================================================
   Inner Child Healing Mumbai — Editorial, Soft, Reflective Design System
   ========================================================================== */

:root {
    /* Color Palette */
    --warm-beige: #F5EFE6;
    --soft-clay: #E8D5C4;
    --dusty-rose: #D9A5A5;
    --sage-green: #A8B5A2;
    --warm-off-white: #FBF9F6;
    --cream: #F9F4EC;

    /* Text Tones */
    --ink: #3A3431;
    --soft-ink: #5C544F;
    --muted-ink: #8B8378;
    --whisper: #B8AFA3;

    /* Accents */
    --rose-deep: #C68B8B;
    --sage-deep: #8B9A85;
    --terracotta: #C99785;

    /* Typography */
    --font-serif: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
    --font-sans: 'Inter', 'Lato', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-script: 'Caveat', 'Dancing Script', cursive;

    /* Layout */
    --max-width: 1280px;
    --content-width: 920px;
    --reading-width: 680px;

    /* Transitions */
    --ease: cubic-bezier(0.2, 0.65, 0.25, 1);
    --slow: 0.8s var(--ease);
    --gentle: 0.5s var(--ease);
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: var(--font-sans);
    font-weight: 300;
    color: var(--ink);
    background: var(--warm-off-white);
    line-height: 1.75;
    font-size: 16px;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--gentle); }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

/* Typography */
h1, h2, h3, h4, h5 {
    font-family: var(--font-serif);
    font-weight: 400;
    color: var(--ink);
    letter-spacing: -0.01em;
    line-height: 1.15;
}
h1 { font-size: clamp(2.4rem, 5.5vw, 4.6rem); font-weight: 300; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 300; }
h3 { font-size: clamp(1.5rem, 2.4vw, 2rem); }
h4 { font-size: 1.25rem; }
p { margin-bottom: 1.2em; color: var(--soft-ink); font-weight: 300; }

.script { font-family: var(--font-script); font-weight: 400; color: var(--rose-deep); }
.serif-italic { font-family: var(--font-serif); font-style: italic; font-weight: 300; }
.eyebrow {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.32em;
    color: var(--sage-deep);
    margin-bottom: 1.4rem;
}
.eyebrow::before {
    content: '';
    display: inline-block;
    width: 36px;
    height: 1px;
    background: var(--sage-deep);
    vertical-align: middle;
    margin-right: 14px;
    opacity: 0.6;
}

/* Layout */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 32px; }
.container-narrow { max-width: var(--content-width); margin: 0 auto; padding: 0 32px; }
.container-reading { max-width: var(--reading-width); margin: 0 auto; padding: 0 32px; }
section { padding: clamp(80px, 12vw, 160px) 0; position: relative; }

/* ==========================================================================
   NAVIGATION
   ========================================================================== */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: rgba(251, 249, 246, 0.0);
    transition: background var(--gentle), backdrop-filter var(--gentle), padding var(--gentle), box-shadow var(--gentle);
    padding: 26px 0;
}
.nav.scrolled {
    background: rgba(251, 249, 246, 0.92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    padding: 16px 0;
    box-shadow: 0 1px 0 rgba(58, 52, 49, 0.06);
}
.nav-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav-brand {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-weight: 400;
    color: var(--ink);
    letter-spacing: 0.01em;
    line-height: 1.1;
}
.nav-brand small {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.62rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.28em;
    color: var(--muted-ink);
    margin-top: 4px;
}
.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}
.nav-links a {
    font-size: 0.83rem;
    font-weight: 400;
    color: var(--soft-ink);
    letter-spacing: 0.04em;
    position: relative;
    padding: 4px 0;
}
.nav-links a::after {
    content: '';
    position: absolute;
    left: 0; right: 100%;
    bottom: 0;
    height: 1px;
    background: var(--rose-deep);
    transition: right var(--gentle);
}
.nav-links a:hover::after,
.nav-links a.active::after { right: 0; }
.nav-links a:hover { color: var(--ink); }
.nav-links a.active { color: var(--ink); }

.nav-toggle {
    display: none;
    width: 32px;
    height: 24px;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
}
.nav-toggle span {
    display: block;
    height: 1px;
    background: var(--ink);
    transition: var(--gentle);
}
.nav-toggle span:nth-child(1) { width: 100%; }
.nav-toggle span:nth-child(2) { width: 70%; }
.nav-toggle span:nth-child(3) { width: 100%; }
.nav-toggle.open span:nth-child(1) { transform: translateY(11px) rotate(45deg); width: 100%; }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-11px) rotate(-45deg); width: 100%; }

@media (max-width: 1080px) {
    .nav-toggle { display: flex; }
    .nav-links {
        position: fixed;
        top: 0; right: -100%;
        width: min(420px, 100%);
        height: 100vh;
        background: var(--warm-off-white);
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        gap: 22px;
        padding: 60px;
        transition: right var(--gentle);
    }
    .nav-links.open { right: 0; }
    .nav-links a {
        font-family: var(--font-serif);
        font-size: 1.5rem;
        font-weight: 300;
    }
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-sans);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    padding: 18px 36px;
    border: 1px solid var(--ink);
    color: var(--ink);
    background: transparent;
    transition: all var(--gentle);
    cursor: pointer;
}
.btn:hover {
    background: var(--ink);
    color: var(--warm-off-white);
}
.btn-filled {
    background: var(--ink);
    color: var(--warm-off-white);
}
.btn-filled:hover {
    background: var(--rose-deep);
    border-color: var(--rose-deep);
    color: var(--warm-off-white);
}
.btn-soft {
    border-color: var(--dusty-rose);
    color: var(--rose-deep);
}
.btn-soft:hover {
    background: var(--dusty-rose);
    border-color: var(--dusty-rose);
    color: var(--warm-off-white);
}
.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ink);
    padding-bottom: 4px;
    border-bottom: 1px solid var(--whisper);
    transition: all var(--gentle);
}
.link-arrow::after { content: '→'; transition: transform var(--gentle); }
.link-arrow:hover { border-color: var(--rose-deep); color: var(--rose-deep); }
.link-arrow:hover::after { transform: translateX(6px); }

/* ==========================================================================
   PAGE HEADER (sub pages)
   ========================================================================== */
.page-header {
    padding: 200px 0 100px;
    text-align: center;
    background: var(--warm-off-white);
    position: relative;
}
.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 50% 50% at 20% 30%, rgba(232, 213, 196, 0.5) 0%, transparent 60%),
        radial-gradient(ellipse 40% 60% at 80% 70%, rgba(217, 165, 165, 0.3) 0%, transparent 60%);
    pointer-events: none;
    opacity: 0.7;
}
.page-header > * { position: relative; z-index: 2; }
.page-header h1 {
    max-width: 900px;
    margin: 0 auto 24px;
    line-height: 1.1;
}
.page-header .lede {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: clamp(1.05rem, 1.6vw, 1.3rem);
    color: var(--soft-ink);
    max-width: 620px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ==========================================================================
   HOMEPAGE — HERO
   ========================================================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 160px 0 80px;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-bg img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center 30%;
    opacity: 0.35;
    filter: saturate(0.85) brightness(1.05);
}
.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
        rgba(251, 249, 246, 0.85) 0%,
        rgba(251, 249, 246, 0.5) 40%,
        rgba(251, 249, 246, 0.92) 100%);
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 32px;
    width: 100%;
    text-align: center;
}
.hero-eyebrow {
    font-family: var(--font-script);
    font-size: clamp(1.5rem, 2.2vw, 2rem);
    color: var(--rose-deep);
    margin-bottom: 18px;
    font-weight: 400;
}
.hero h1 {
    font-size: clamp(2.6rem, 6.5vw, 5.4rem);
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin-bottom: 36px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}
.hero h1 em {
    font-style: italic;
    color: var(--rose-deep);
    font-weight: 300;
}
.hero-sub {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: clamp(1.05rem, 1.6vw, 1.3rem);
    color: var(--soft-ink);
    max-width: 620px;
    margin: 0 auto 50px;
    line-height: 1.6;
}
.hero-cta { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; }
.hero-scroll {
    position: absolute;
    bottom: 36px; left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    text-align: center;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--muted-ink);
}
.hero-scroll::after {
    content: '';
    display: block;
    width: 1px;
    height: 50px;
    background: var(--whisper);
    margin: 14px auto 0;
    animation: scroll-line 2.4s var(--ease) infinite;
}
@keyframes scroll-line {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    51% { transform: scaleY(1); transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ==========================================================================
   SECTION VARIANTS
   ========================================================================== */
.bg-cream { background: var(--cream); }
.bg-beige { background: var(--warm-beige); }
.bg-clay { background: var(--soft-clay); }
.bg-rose-soft { background: linear-gradient(180deg, var(--warm-off-white) 0%, #F2DDDD 100%); }

.section-head { text-align: center; max-width: 720px; margin: 0 auto 80px; }
.section-head .eyebrow { display: inline-block; }
.section-head h2 { margin-bottom: 22px; }
.section-head p {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: clamp(1rem, 1.4vw, 1.2rem);
    color: var(--soft-ink);
    line-height: 1.6;
}

/* ==========================================================================
   "WHAT IS INNER CHILD" — Storytelling Two-Column
   ========================================================================== */
.story-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(50px, 8vw, 110px);
    align-items: center;
}
.story-block.reverse { direction: rtl; }
.story-block.reverse > * { direction: ltr; }
.story-text .eyebrow { margin-bottom: 24px; }
.story-text h2 { margin-bottom: 28px; }
.story-text p { font-size: 1.05rem; line-height: 1.85; }
.story-image {
    position: relative;
    aspect-ratio: 4 / 5;
    overflow: hidden;
}
.story-image img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center 30%;
    transition: transform 1.4s var(--ease);
}
.story-image:hover img { transform: scale(1.04); }
.story-image::before {
    content: '';
    position: absolute;
    inset: -16px;
    border: 1px solid var(--soft-clay);
    z-index: -1;
    pointer-events: none;
}
.story-quote {
    font-family: var(--font-script);
    font-size: 1.6rem;
    color: var(--rose-deep);
    margin-top: 28px;
    line-height: 1.4;
}

@media (max-width: 880px) {
    .story-block { grid-template-columns: 1fr; gap: 50px; }
    .story-block.reverse { direction: ltr; }
    .story-image { aspect-ratio: 4 / 5; max-width: 480px; margin: 0 auto; }
}

/* ==========================================================================
   SYMPTOMS / PATTERNS GRID
   ========================================================================== */
.patterns-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1px;
    background: var(--soft-clay);
    border-top: 1px solid var(--soft-clay);
    border-bottom: 1px solid var(--soft-clay);
}
.pattern-card {
    padding: 56px 36px;
    background: var(--warm-off-white);
    transition: background var(--gentle);
    position: relative;
    text-align: center;
}
.pattern-card:hover { background: var(--cream); }
.pattern-num {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 0.95rem;
    color: var(--rose-deep);
    margin-bottom: 18px;
}
.pattern-card h3 {
    font-size: 1.35rem;
    margin-bottom: 14px;
    line-height: 1.3;
}
.pattern-card p {
    font-size: 0.93rem;
    color: var(--muted-ink);
    line-height: 1.65;
    margin: 0;
}

/* ==========================================================================
   TRANSFORMATION / JOURNEY SECTION
   ========================================================================== */
.transform {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
    background: var(--warm-beige);
}
.transform-side {
    padding: clamp(60px, 9vw, 110px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.transform-side.image { padding: 0; }
.transform-side.image img {
    width: 100%; height: 100%;
    object-fit: cover;
    min-height: 500px;
}
.transform-side h2 { margin-bottom: 28px; }
.transform-list { margin-top: 36px; }
.transform-row {
    display: flex;
    align-items: baseline;
    gap: 22px;
    padding: 22px 0;
    border-bottom: 1px solid rgba(58, 52, 49, 0.08);
}
.transform-row:last-child { border-bottom: none; }
.transform-from {
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--muted-ink);
    flex: 1;
    text-decoration: line-through;
    opacity: 0.7;
}
.transform-arrow { color: var(--sage-deep); font-size: 1.1rem; }
.transform-to {
    font-family: var(--font-serif);
    color: var(--ink);
    flex: 1;
    font-weight: 400;
}
@media (max-width: 880px) {
    .transform { grid-template-columns: 1fr; }
    .transform-side.image img { min-height: 320px; }
}

/* ==========================================================================
   TESTIMONIAL PREVIEW
   ========================================================================== */
.testimonials-soft {
    text-align: center;
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 50px;
    margin-top: 60px;
}
.t-card {
    padding: 0 20px;
    text-align: center;
}
.t-mark {
    font-family: var(--font-serif);
    font-size: 4rem;
    color: var(--dusty-rose);
    line-height: 0.5;
    margin-bottom: 24px;
}
.t-text {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--soft-ink);
    margin-bottom: 24px;
}
.t-author {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.24em;
    color: var(--muted-ink);
}

/* ==========================================================================
   CTA STRIP (Soft)
   ========================================================================== */
.cta-strip {
    text-align: center;
    background: linear-gradient(180deg, var(--warm-beige) 0%, var(--soft-clay) 100%);
    padding: clamp(90px, 12vw, 140px) 32px;
}
.cta-strip h2 {
    max-width: 700px;
    margin: 0 auto 28px;
}
.cta-strip p {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.15rem;
    max-width: 560px;
    margin: 0 auto 40px;
    color: var(--soft-ink);
}

/* ==========================================================================
   ABOUT PAGE
   ========================================================================== */
.about-intro {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: clamp(50px, 8vw, 110px);
    align-items: center;
}
.about-portrait {
    aspect-ratio: 4 / 5;
    overflow: hidden;
    position: relative;
}
.about-portrait img { width: 100%; height: 100%; object-fit: cover; object-position: center 25%; }
.about-portrait::after {
    content: '';
    position: absolute;
    inset: 16px;
    border: 1px solid rgba(251, 249, 246, 0.5);
    pointer-events: none;
}
.about-text h2 { margin-bottom: 28px; line-height: 1.15; }
.about-text .signature {
    font-family: var(--font-script);
    font-size: 2rem;
    color: var(--rose-deep);
    margin-top: 30px;
}
@media (max-width: 880px) {
    .about-intro { grid-template-columns: 1fr; }
    .about-portrait { max-width: 480px; margin: 0 auto; }
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 50px;
    margin-top: 70px;
}
.value-card {
    padding: 40px 30px;
    background: var(--warm-off-white);
    border-top: 1px solid var(--soft-clay);
    text-align: left;
}
.value-card .num {
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--rose-deep);
    font-size: 1.3rem;
    margin-bottom: 16px;
}
.value-card h3 { font-size: 1.25rem; margin-bottom: 14px; }
.value-card p { font-size: 0.95rem; color: var(--muted-ink); margin: 0; }

/* ==========================================================================
   CONTENT PAGES — Editorial body
   ========================================================================== */
.editorial-body {
    max-width: 760px;
    margin: 0 auto;
}
.editorial-body p {
    font-size: 1.08rem;
    line-height: 1.85;
    margin-bottom: 1.6em;
}
.editorial-body h2 {
    margin-top: 80px;
    margin-bottom: 28px;
}
.editorial-body h3 {
    margin-top: 50px;
    margin-bottom: 18px;
}
.editorial-body .pullquote {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: clamp(1.4rem, 2.4vw, 1.9rem);
    line-height: 1.5;
    color: var(--ink);
    text-align: center;
    border-top: 1px solid var(--soft-clay);
    border-bottom: 1px solid var(--soft-clay);
    padding: 50px 30px;
    margin: 70px -30px;
}
.editorial-body ul.soft-list {
    list-style: none;
    margin: 30px 0;
    padding: 0;
}
.editorial-body ul.soft-list li {
    position: relative;
    padding-left: 32px;
    margin-bottom: 18px;
    font-size: 1.05rem;
    color: var(--soft-ink);
    line-height: 1.7;
}
.editorial-body ul.soft-list li::before {
    content: '✿';
    position: absolute;
    left: 0; top: 0;
    color: var(--dusty-rose);
    font-size: 0.85rem;
    line-height: 1.6;
}

/* ==========================================================================
   PROCESS / STEPS
   ========================================================================== */
.process-steps {
    max-width: 880px;
    margin: 0 auto;
}
.step {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 40px;
    padding: 50px 0;
    border-bottom: 1px solid rgba(58, 52, 49, 0.08);
    align-items: start;
}
.step:last-child { border-bottom: none; }
.step-num {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 3rem;
    color: var(--dusty-rose);
    line-height: 1;
    font-weight: 300;
}
.step h3 { margin-bottom: 14px; font-size: 1.6rem; }
.step p { margin: 0; font-size: 1rem; color: var(--soft-ink); line-height: 1.75; }
@media (max-width: 700px) {
    .step { grid-template-columns: 1fr; gap: 12px; }
    .step-num { font-size: 2.4rem; }
}

/* ==========================================================================
   SIGNS PAGE
   ========================================================================== */
.signs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}
.sign-card {
    padding: 50px 40px;
    background: var(--warm-off-white);
    border: 1px solid var(--soft-clay);
    transition: all var(--gentle);
    position: relative;
}
.sign-card:hover {
    background: var(--cream);
    transform: translateY(-3px);
}
.sign-card .icon {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.4rem;
    color: var(--rose-deep);
    margin-bottom: 18px;
}
.sign-card h3 { font-size: 1.35rem; margin-bottom: 16px; }
.sign-card p { font-size: 0.95rem; color: var(--muted-ink); line-height: 1.7; margin: 0; }

/* ==========================================================================
   STORIES PAGE — Editorial Cards
   ========================================================================== */
.stories-list { max-width: 980px; margin: 0 auto; }
.story-item {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 60px;
    padding: 80px 0;
    border-bottom: 1px solid var(--soft-clay);
    align-items: center;
}
.story-item:last-child { border-bottom: none; }
.story-item.reverse { direction: rtl; }
.story-item.reverse > * { direction: ltr; }
.story-item-image {
    aspect-ratio: 4 / 5;
    overflow: hidden;
}
.story-item-image img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center 25%;
    transition: transform 1.6s var(--ease);
}
.story-item:hover .story-item-image img { transform: scale(1.04); }
.story-item .meta {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.28em;
    color: var(--sage-deep);
    margin-bottom: 18px;
}
.story-item h2 { font-size: clamp(1.6rem, 2.6vw, 2.2rem); margin-bottom: 22px; }
.story-item .quote {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.15rem;
    line-height: 1.65;
    color: var(--soft-ink);
    margin-bottom: 22px;
    padding-left: 22px;
    border-left: 2px solid var(--dusty-rose);
}
.story-item .author {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.24em;
    color: var(--muted-ink);
}
@media (max-width: 880px) {
    .story-item { grid-template-columns: 1fr; gap: 30px; padding: 50px 0; }
    .story-item.reverse { direction: ltr; }
    .story-item-image { max-width: 420px; }
}

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
    border-bottom: 1px solid var(--soft-clay);
}
.faq-q {
    width: 100%;
    text-align: left;
    padding: 30px 0;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
    font-family: var(--font-serif);
    font-size: clamp(1.1rem, 1.7vw, 1.35rem);
    color: var(--ink);
    transition: color var(--gentle);
    line-height: 1.4;
    font-weight: 400;
}
.faq-q:hover { color: var(--rose-deep); }
.faq-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    position: relative;
    margin-top: 8px;
}
.faq-icon::before, .faq-icon::after {
    content: '';
    position: absolute;
    background: var(--rose-deep);
    transition: transform var(--gentle);
}
.faq-icon::before { left: 0; right: 0; top: 50%; height: 1px; }
.faq-icon::after { top: 0; bottom: 0; left: 50%; width: 1px; }
.faq-item.open .faq-icon::after { transform: scaleY(0); }
.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--slow);
}
.faq-a-inner {
    padding: 0 0 30px;
    font-size: 1rem;
    line-height: 1.8;
    color: var(--soft-ink);
}
.faq-a-inner p { margin: 0; }
.faq-item.open .faq-a { max-height: 500px; }

/* ==========================================================================
   MEDIA / GALLERY
   ========================================================================== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 14px;
    grid-auto-flow: dense;
}
.gallery-item {
    overflow: hidden;
    cursor: zoom-in;
    position: relative;
    background: var(--soft-clay);
}
.gallery-item img, .gallery-item video {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 1.4s var(--ease), filter var(--gentle);
    display: block;
}
.gallery-item:hover img { transform: scale(1.05); filter: brightness(1.05); }
.gallery-item.video::after {
    content: '▶';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 64px; height: 64px;
    background: rgba(251, 249, 246, 0.9);
    color: var(--rose-deep);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; padding-left: 4px;
    z-index: 2; pointer-events: none;
    transition: transform var(--gentle);
}
.gallery-item.video:hover::after { transform: translate(-50%, -50%) scale(1.08); }

/* Bento layout spans */
.span-6 { grid-column: span 6; aspect-ratio: 4 / 3; }
.span-4 { grid-column: span 4; aspect-ratio: 1 / 1; }
.span-3 { grid-column: span 3; aspect-ratio: 3 / 4; }
.span-8 { grid-column: span 8; aspect-ratio: 16 / 10; }
.span-tall { grid-column: span 4; aspect-ratio: 3 / 4; }

@media (max-width: 880px) {
    .gallery-grid { grid-template-columns: repeat(6, 1fr); }
    .span-6, .span-8 { grid-column: span 6; aspect-ratio: 4 / 3; }
    .span-4, .span-3, .span-tall { grid-column: span 3; aspect-ratio: 3 / 4; }
}
@media (max-width: 520px) {
    .gallery-grid { grid-template-columns: 1fr; }
    .span-6, .span-8, .span-4, .span-3, .span-tall {
        grid-column: span 1; aspect-ratio: 4 / 5;
    }
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(58, 52, 49, 0.95);
    z-index: 200;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 30px;
    cursor: zoom-out;
}
.lightbox.open { display: flex; }
.lightbox-content {
    max-width: 90vw;
    max-height: 90vh;
    position: relative;
}
.lightbox img, .lightbox video {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    display: block;
}
.lightbox-close {
    position: absolute;
    top: 24px; right: 30px;
    background: none;
    color: var(--warm-off-white);
    font-size: 2rem;
    cursor: pointer;
    z-index: 2;
    width: 44px; height: 44px;
    line-height: 1;
}

/* ==========================================================================
   CONTACT PAGE
   ========================================================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: clamp(50px, 8vw, 100px);
    align-items: start;
}
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-form { display: grid; gap: 28px; }
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.form-field {
    position: relative;
}
.form-field label {
    display: block;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.24em;
    color: var(--muted-ink);
    margin-bottom: 10px;
}
.form-field input, .form-field textarea, .form-field select {
    width: 100%;
    padding: 14px 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--whisper);
    font-family: var(--font-sans);
    font-size: 1rem;
    color: var(--ink);
    transition: border-color var(--gentle);
    border-radius: 0;
    outline: none;
}
.form-field textarea { resize: vertical; min-height: 120px; padding-top: 10px; }
.form-field input:focus, .form-field textarea:focus, .form-field select:focus {
    border-bottom-color: var(--rose-deep);
}
.contact-info {
    background: var(--warm-beige);
    padding: clamp(40px, 5vw, 60px);
}
.contact-info h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    margin-bottom: 30px;
    font-weight: 400;
}
.contact-info .info-item {
    margin-bottom: 24px;
    font-size: 0.95rem;
    color: var(--soft-ink);
    line-height: 1.6;
}
.contact-info .info-item .label {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.24em;
    color: var(--muted-ink);
    margin-bottom: 6px;
}
.contact-info a { color: var(--ink); border-bottom: 1px solid var(--whisper); }
.contact-info a:hover { color: var(--rose-deep); border-color: var(--rose-deep); }
.social-row {
    display: flex;
    gap: 18px;
    margin-top: 30px;
    padding-top: 28px;
    border-top: 1px solid rgba(58, 52, 49, 0.1);
}
.social-row a {
    width: 40px; height: 40px;
    border: 1px solid var(--ink);
    border-radius: 50%;
    display: inline-flex;
    align-items: center; justify-content: center;
    color: var(--ink);
    transition: all var(--gentle);
}
.social-row a:hover {
    background: var(--ink);
    color: var(--warm-off-white);
    border-color: var(--ink);
}
.social-row a svg { width: 16px; height: 16px; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
    background: var(--ink);
    color: rgba(251, 249, 246, 0.85);
    padding: 90px 0 30px;
}
.footer h4 {
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.28em;
    color: var(--dusty-rose);
    margin-bottom: 26px;
}
.footer-top {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 50px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(251, 249, 246, 0.1);
}
.footer-brand {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--warm-off-white);
    line-height: 1.3;
    margin-bottom: 18px;
}
.footer-tag {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1rem;
    color: rgba(251, 249, 246, 0.7);
    line-height: 1.6;
    max-width: 320px;
}
.footer ul li {
    margin-bottom: 12px;
    font-size: 0.92rem;
}
.footer ul a {
    color: rgba(251, 249, 246, 0.65);
    transition: color var(--gentle);
}
.footer ul a:hover { color: var(--dusty-rose); }
.footer-contact {
    font-size: 0.92rem;
    color: rgba(251, 249, 246, 0.65);
    line-height: 1.85;
}
.footer-contact a { color: rgba(251, 249, 246, 0.85); }
.footer-contact a:hover { color: var(--dusty-rose); }
.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}
.footer-social a {
    width: 36px; height: 36px;
    border: 1px solid rgba(251, 249, 246, 0.25);
    border-radius: 50%;
    display: inline-flex;
    align-items: center; justify-content: center;
    color: rgba(251, 249, 246, 0.7);
    transition: all var(--gentle);
}
.footer-social a:hover {
    border-color: var(--dusty-rose);
    color: var(--dusty-rose);
}
.footer-social svg { width: 14px; height: 14px; }
.footer-bottom {
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 14px;
    font-size: 0.78rem;
    color: rgba(251, 249, 246, 0.5);
}
.footer-bottom a { color: var(--dusty-rose); border-bottom: 1px solid transparent; }
.footer-bottom a:hover { border-color: var(--dusty-rose); }
@media (max-width: 880px) {
    .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 520px) {
    .footer-top { grid-template-columns: 1fr; }
}

/* ==========================================================================
   ANIMATION — soft fade-in on scroll
   ========================================================================== */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s var(--ease), transform 1s var(--ease);
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}
.fade-in.delay-1 { transition-delay: 0.15s; }
.fade-in.delay-2 { transition-delay: 0.3s; }
.fade-in.delay-3 { transition-delay: 0.45s; }

/* ==========================================================================
   RESPONSIVE FINE-TUNES
   ========================================================================== */
@media (max-width: 600px) {
    section { padding: 70px 0; }
    .container, .container-narrow, .container-reading { padding: 0 22px; }
    .nav-inner { padding: 0 22px; }
    .hero { min-height: 90vh; padding: 130px 0 60px; }
    .editorial-body .pullquote { margin: 50px 0; padding: 40px 20px; }
}
