        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --mocha: #A47864;
            --deep-earth: #6B4E3D;
            --warm-cream: #F5EDE4;
            --sage: #8B9D83;
            --terracotta: #C86B4F;
            --gold: #D4A574;
            --charcoal: #3A3330;
            --soft-white: #FDFBF7;
            --emerald: #4A7C59;

            /* Typography system */
            --title-size:        clamp(2rem, 4vw, 3.2rem);
            --title-line-height: 1.25;
            --title-weight:      300;
            --body-size:         1.05rem;
            --body-line-height:  1.9;
        }

        html { scroll-behavior: smooth; }

        body {
            font-family: 'Raleway', sans-serif;
            line-height: 1.8;
            color: var(--charcoal);
            background: var(--warm-cream);
            font-size: 17px;
        }

        h1, h2, h3 {
            font-family: 'Cormorant Garamond', serif;
            font-weight: 300;
            color: var(--deep-earth);
        }

        h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); margin-bottom: 1rem; }
        h2 { font-size: var(--title-size); line-height: var(--title-line-height); font-weight: var(--title-weight); margin-bottom: 1.5rem; text-wrap: balance; }
        h3 { font-size: clamp(1.3rem, 3vw, 1.9rem); margin-bottom: 0.8rem; }

        /* Navigation */
        nav {
            background: rgba(253, 251, 247, 0.98);
            backdrop-filter: blur(15px);
            padding: 1.2rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid rgba(164, 120, 100, 0.15);
        }

        .nav-wrap {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
            color: var(--mocha);
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.6rem;
            font-weight: 400;
        }

        .spiral {
            width: 42px;
            height: 42px;
            border-radius: 50%;
        }

        nav ul {
            list-style: none;
            display: flex;
            gap: 2rem;
            flex-wrap: wrap;
        }

        nav ul a {
            text-decoration: none;
            color: var(--charcoal);
            font-size: 0.9rem;
            font-weight: 400;
            letter-spacing: 1px;
            text-transform: uppercase;
            transition: color 0.3s;
            cursor: pointer;
        }

        nav ul a:hover { color: var(--mocha); }

        /* Mobile Menu */
        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            padding: 5px;
        }

        .hamburger span {
            width: 25px;
            height: 3px;
            background: var(--mocha);
            transition: all 0.3s;
            border-radius: 3px;
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(8px, 8px);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -7px);
        }

        /* Page System */
        .page {
            display: none;
        }

        .page.active {
            display: block;
        }

        /* Container */
        .wrap {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        /* Hero */
        .hero {
            min-height: 88vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            background: var(--warm-cream);
            padding: 5rem 2rem;
        }

        .hero-inner {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 2rem;
            max-width: 720px;
            margin: 0 auto;
        }

        .hero-portrait img {
            width: 340px;
            height: auto;
            border-radius: 15px;
            display: block;
        }

        .hero-text {
            text-align: center;
        }

        .hero-body {
            font-size: var(--body-size);
            line-height: var(--body-line-height);
            color: var(--charcoal);
            margin-bottom: 1rem;
        }

        .founder-byline {
            font-style: italic;
            color: var(--mocha);
            font-size: 1rem;
            margin-bottom: 2rem;
        }

        .hero-cta {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            justify-content: center;
        }

        .hero-content {
            max-width: 900px;
        }

        .hero h1 { color: var(--mocha); font-size: clamp(2rem, 4vw, 3rem); white-space: nowrap; }

        .sub {
            font-size: clamp(1.2rem, 2.5vw, 1.7rem);
            color: var(--deep-earth);
            font-style: italic;
            margin-bottom: 0.5rem;
            font-weight: 300;
        }

        .desc {
            font-size: clamp(1rem, 2vw, 1.2rem);
            color: var(--charcoal);
            opacity: 0.8;
            margin-bottom: 2.5rem;
        }

        /* Buttons */
        .btn {
            display: inline-block;
            padding: 1rem 2.2rem;
            margin: 0.5rem;
            border-radius: 30px;
            text-decoration: none;
            font-size: 0.95rem;
            letter-spacing: 0.5px;
            transition: all 0.3s;
            border: 2px solid transparent;
            cursor: pointer;
            background: none;
            font-family: inherit;
        }

        .btn-primary {
            background: var(--mocha);
            color: white;
            box-shadow: 0 4px 15px rgba(164, 120, 100, 0.3);
        }

        .btn-primary:hover {
            background: var(--deep-earth);
            transform: translateY(-2px);
        }

        .btn-secondary {
            background: transparent;
            color: var(--mocha);
            border: 2px solid var(--mocha);
        }

        .btn-secondary:hover {
            background: var(--mocha);
            color: white;
        }

        /* Sections */
        section {
            padding: 5rem 2rem;
        }

        .bg-cream { background: var(--warm-cream); }
        .bg-sage { background: linear-gradient(180deg, var(--soft-white) 0%, #e8ebe7 100%); }
        .bg-gradient {
            background: linear-gradient(135deg, var(--warm-cream) 0%, #f0e8e0 50%, var(--soft-white) 100%);
        }

        .section-title {
            text-align: center;
            max-width: 900px;
            margin: 0 auto 3.5rem;
            color: var(--charcoal);
        }

        /* Image Placeholders */
        .img-ph {
            background: linear-gradient(135deg, var(--warm-cream), #e8dfd6);
            border: 2px dashed var(--mocha);
            opacity: 0.7;
            padding: 2rem;
            text-align: center;
            border-radius: 12px;
            margin: 1rem 0;
            font-size: 0.9rem;
            color: var(--charcoal);
        }

        .img-ph strong {
            display: block;
            color: var(--mocha);
            margin-bottom: 0.5rem;
            font-size: 1rem;
        }

        /* Grid */
        .grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2.5rem;
            margin: 2.5rem 0;
        }

        .card {
            background: white;
            padding: 2.5rem;
            border-radius: 15px;
            box-shadow: 0 6px 25px rgba(107, 78, 61, 0.08);
            transition: all 0.3s;
            border-top: 3px solid var(--mocha);
        }

        .card:nth-child(2) { border-top-color: var(--sage); }
        .card:nth-child(3) { border-top-color: var(--terracotta); }
        .card:nth-child(4) { border-top-color: var(--gold); }

        .card:hover {
            transform: translateY(-6px);
            box-shadow: 0 10px 35px rgba(107, 78, 61, 0.15);
        }

        .card h3 { color: var(--deep-earth); }

        /* Pillars */
        .pillars {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 2rem;
            margin: 2.5rem 0;
        }

        .pillar {
            background: white;
            padding: 2.5rem 2rem;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 5px 20px rgba(107, 78, 61, 0.08);
            transition: all 0.3s;
        }

        .pillar:hover {
            transform: none;
            box-shadow: none;
        }

        .pillar h3 { margin-top: 1rem; }
        .pillar-br { display: none; }

        .pillar:nth-child(1) { border-left: 4px solid var(--mocha); }
        .pillar:nth-child(2) { border-left: 4px solid var(--sage); }
        .pillar:nth-child(3) { border-left: 4px solid var(--terracotta); }
        .pillar:nth-child(4) { border-left: 4px solid var(--gold); }

        /* Bio */
        .bio-section {
            max-width: 900px;
            margin: 3rem auto;
            background: white;
            padding: 3rem;
            border-radius: 15px;
            box-shadow: 0 6px 25px rgba(107, 78, 61, 0.08);
        }

        .bio-section h3 {
            color: var(--mocha);
            margin-top: 2.5rem;
            margin-bottom: 1.2rem;
        }

        .bio-section p {
            font-size: var(--body-size);
            line-height: var(--body-line-height);
            margin-bottom: 1.5rem;
        }

        /* Form */
        .form-box {
            background: white;
            padding: 2.5rem;
            border-radius: 15px;
            max-width: 650px;
            margin: 2.5rem auto;
            box-shadow: 0 6px 25px rgba(107, 78, 61, 0.08);
        }

        .form-group {
            margin-bottom: 1.3rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: var(--charcoal);
            font-weight: 500;
        }

        input, select, textarea {
            width: 100%;
            padding: 0.9rem;
            border: 2px solid var(--warm-cream);
            border-radius: 10px;
            font-family: inherit;
            font-size: 1rem;
            transition: border-color 0.3s;
        }

        input:focus, select:focus, textarea:focus {
            outline: none;
            border-color: var(--mocha);
        }

        input.error, select.error, textarea.error {
            border-color: var(--terracotta);
        }

        .error-message {
            color: var(--terracotta);
            font-size: 0.85rem;
            margin-top: 0.3rem;
            display: none;
        }

        textarea {
            min-height: 140px;
            resize: vertical;
        }

        .gdpr-notice {
            font-size: 0.85rem;
            color: var(--charcoal);
            opacity: 0.7;
            margin-top: 1rem;
            line-height: 1.6;
        }

        .success-message {
            background: var(--sage);
            color: white;
            padding: 1rem;
            border-radius: 10px;
            text-align: center;
            margin-top: 1rem;
            display: none;
        }

        /* Footer */
        footer {
            background: linear-gradient(135deg, var(--deep-earth) 0%, var(--mocha) 100%);
            color: white;
            padding: 4rem 2rem 2rem;
            text-align: center;
        }

        footer a {
            color: white;
            text-decoration: none;
            margin: 0 1rem;
            transition: opacity 0.3s;
        }

        footer a:hover { opacity: 0.8; }

        /* Responsive */
        @media (max-width: 768px) {
            .nav-wrap {
                justify-content: space-between;
            }

            .hamburger {
                display: flex;
            }

            nav ul {
                display: none;
                width: 100%;
                flex-direction: column;
                gap: 0;
                padding-top: 1rem;
            }

            nav ul.active {
                display: flex;
            }

            nav ul a {
                padding: 0.8rem 0;
                display: block;
            }

            .grid, .pillars {
                grid-template-columns: 1fr;
            }

            section {
                padding: 3rem 1rem;
            }

            .bio-section, .form-box {
                padding: 2rem;
            }

            .book-grid {
                grid-template-columns: 1fr !important;
            }
        }

        /* Book grid for larger screens */
        .book-grid {
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 4rem;
            align-items: start;
            margin-bottom: 4rem;
        }


        /* Ibiza gallery — stacked cards */
        .ibiza-gallery {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 0.75rem;
        }

        .ibiza-gallery img {
            width: 100%;
            height: 160px;
            object-fit: cover;
            border-radius: 8px;
            cursor: pointer;
            transition: opacity 0.2s;
            display: block;
        }

        .ibiza-gallery img:hover {
            opacity: 0.85;
        }

        @media (max-width: 600px) {
            .ibiza-gallery {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        /* ============================================
           GRAIN TEXTURE OVERLAY
           ============================================ */
        body::after {
            content: '';
            position: fixed;
            inset: 0;
            pointer-events: none;
            z-index: 9999;
            opacity: 0.038;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
            background-size: 200px 200px;
        }

        /* ============================================
           PAGE ENTRY ANIMATION
           ============================================ */
        @keyframes pageEnter {
            from { opacity: 0; transform: translateY(12px); }
            to   { opacity: 1; transform: translateY(0); }
        }
        .page.active {
            display: block;
            animation: pageEnter 0.5s ease forwards;
        }

        /* ============================================
           SCROLL REVEAL
           ============================================ */
        .reveal {
            opacity: 0;
            transform: translateY(28px);
            transition: opacity 0.65s ease, transform 0.65s ease;
        }
        .reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* ============================================
           HOME HERO — editorial 2-column
           ============================================ */
        .hero-home {
            min-height: 92vh;
            display: flex;
            align-items: stretch;
            background: var(--warm-cream);
            overflow: hidden;
        }

        .hero-home-inner {
            display: grid;
            grid-template-columns: 1fr 1fr;
            align-items: center;
            width: 100%;
        }

        .hero-home-text {
            padding: 6rem 3rem 6rem 4rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .hero-eyebrow {
            font-family: 'Raleway', sans-serif;
            font-size: 0.78rem;
            font-weight: 500;
            letter-spacing: 3.5px;
            text-transform: uppercase;
            color: var(--mocha);
            margin-bottom: 1.8rem;
            display: block;
        }

        .hero-home-h1 {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(2.8rem, 4.5vw, 5.5rem);
            font-weight: 300;
            line-height: 1.15;
            color: var(--charcoal);
            margin-bottom: 2rem;
            letter-spacing: -0.01em;
        }

        .hero-home-h1 em {
            font-style: italic;
            color: var(--mocha);
        }

        .hero-home-body {
            font-size: var(--body-size);
            line-height: var(--body-line-height);
            color: var(--charcoal);
            opacity: 0.8;
            margin-bottom: 0.8rem;
            max-width: 480px;
        }

        .hero-home-byline {
            font-family: 'Cormorant Garamond', serif;
            font-style: italic;
            color: var(--mocha);
            font-size: 1.05rem;
            margin-bottom: 2.5rem;
        }

        .hero-home-portrait {
            height: 92vh;
            overflow: hidden;
        }

        .hero-home-portrait img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center top;
            display: block;
        }

        @media (max-width: 900px) {
            .hero-home {
                min-height: unset;
            }
            .hero-home-inner {
                grid-template-columns: 1fr;
            }
            .hero-home-text {
                padding: 3.5rem 1.5rem 2.5rem;
                order: 1;
            }
            .hero-home-portrait {
                height: 72vw;
                min-height: 260px;
                max-height: 480px;
                order: 2;
            }
            .hero-home-h1 {
                font-size: clamp(2.8rem, 9vw, 4rem);
            }
            .hero-home-body {
                font-size: 1rem;
            }
        }

        /* ============================================
           CREDENTIALS — chapter panels
           ============================================ */
        .credentials-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 0;
            margin: 3rem 0 2.5rem;
        }

        .credential-panel {
            padding: 2rem 2.5rem 2rem 0;
            border-left: 1px solid rgba(164, 120, 100, 0.18);
            transition: background 0.3s;
        }

        .credential-panel:first-child {
            border-left: none;
            padding-left: 0;
        }

        .credential-panel:not(:first-child) {
            padding-left: 2.5rem;
        }

        .credential-panel img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: 4px;
            display: block;
            margin-bottom: 1.5rem;
            filter: sepia(10%) saturate(88%);
            transition: filter 0.4s;
        }

        @media (max-width: 768px) {
            .credential-panel img {
                height: 300px;
            }
            .credential-panel--flip {
                display: flex;
                flex-direction: column;
            }
            .credential-panel--flip img {
                order: 2;
                margin-top: 1.5rem;
                margin-bottom: 0;
            }
            .credential-panel--flip h3 {
                order: 0;
            }
            .credential-panel--flip p {
                order: 1;
            }
        }

        .credential-panel:hover img {
            filter: sepia(0%) saturate(100%);
        }

        .credential-num {
            font-family: 'Cormorant Garamond', serif;
            font-size: 0.78rem;
            font-weight: 400;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--mocha);
            margin-bottom: 0.5rem;
            display: block;
        }

        .credential-panel h3 {
            color: var(--deep-earth);
            margin-bottom: 0.6rem;
            font-size: clamp(0.95rem, 1.8vw, 2rem);
            white-space: nowrap;
        }

        @media (max-width: 768px) {
            .credential-panel h3 {
                font-size: 1.5rem;
                white-space: normal;
            }
        }

        @media (max-width: 768px) {
            .credentials-grid {
                grid-template-columns: 1fr;
            }
            .credential-panel,
            .credential-panel:not(:first-child) {
                border-left: none;
                border-top: 1px solid rgba(164, 120, 100, 0.18);
                padding: 2rem 0;
            }
            .credential-panel:first-child {
                border-top: none;
            }
        }

        /* ============================================
           AUDIENCE — editorial dark section
           ============================================ */
        .audience-section {
            background: var(--charcoal);
            padding: 8rem 2rem;
        }

        .audience-section .section-title {
            color: var(--warm-cream);
            font-size: var(--title-size);
            font-weight: var(--title-weight);
            margin-bottom: 5rem;
        }

        .audience-items {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 0;
            max-width: 1100px;
            margin: 0 auto;
        }

        .audience-item {
            padding: 0 3.5rem 0 0;
            border-right: 1px solid rgba(245, 237, 228, 0.1);
        }

        .audience-item:nth-child(2) {
            padding: 0 3.5rem 0 3.5rem;
        }

        .audience-item:last-child {
            border-right: none;
            padding: 0 0 0 3.5rem;
        }

        .audience-item.reveal:nth-child(2) { transition-delay: 0.15s; }
        .audience-item.reveal:nth-child(3) { transition-delay: 0.3s; }

        .audience-num {
            font-family: 'Cormorant Garamond', serif;
            font-size: 5rem;
            font-weight: 300;
            color: var(--gold);
            opacity: 0.22;
            line-height: 1;
            display: block;
            margin-bottom: 1.2rem;
        }

        .audience-item h3 {
            font-family: 'Cormorant Garamond', serif;
            color: var(--warm-cream);
            font-size: clamp(1.4rem, 2.5vw, 1.9rem);
            font-weight: 400;
            font-style: italic;
            line-height: 1.25;
            margin-bottom: 1rem;
        }

        .audience-item p {
            color: var(--warm-cream);
            opacity: 0.6;
            font-size: 0.95rem;
            line-height: 1.85;
        }

        @media (max-width: 768px) {
            .audience-items {
                grid-template-columns: 1fr;
            }
            .audience-item,
            .audience-item:nth-child(2),
            .audience-item:last-child {
                border-right: none;
                border-bottom: 1px solid rgba(245, 237, 228, 0.1);
                padding: 2.5rem 0;
            }
            .audience-item:last-child {
                border-bottom: none;
            }
            .audience-section {
                padding: 5rem 2rem;
            }
        }

        /* ============================================
           PILLARS — refined, no white boxes
           ============================================ */
        .pillar {
            background: transparent !important;
            padding: 2.5rem 2rem 2.5rem 0 !important;
            border-radius: 0 !important;
            text-align: left !important;
            box-shadow: none !important;
            border-left: none !important;
            border-top: 1px solid rgba(164, 120, 100, 0.2) !important;
            transition: background 0.3s !important;
        }

        .pillar:hover {
            transform: none !important;
            box-shadow: none !important;
            background: rgba(164, 120, 100, 0.04) !important;
        }

        .pillars {
            gap: 0;
            margin: 3rem 0;
        }

        .pillar.reveal:nth-child(2) { transition-delay: 0.12s; }
        .pillar.reveal:nth-child(3) { transition-delay: 0.24s; }
        .pillar-br { display: block; }

        /* ============================================
           MANIFESTO — full-width dark
           ============================================ */
        .manifesto-section {
            background: var(--charcoal);
            padding: 10rem 2rem;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .manifesto-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse at center, rgba(164, 120, 100, 0.07) 0%, transparent 68%);
            pointer-events: none;
        }

        .manifesto-label {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(2.8rem, 6vw, 6rem);
            font-weight: 300;
            color: var(--warm-cream);
            margin-bottom: 3rem;
            display: block;
            letter-spacing: 0;
        }

        .manifesto-lines {
            margin: 0 auto 5rem;
        }

        .manifesto-line {
            display: block;
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(2rem, 4.5vw, 4.5rem);
            font-weight: 300;
            font-style: italic;
            line-height: 1.15;
            color: var(--gold);
            opacity: 0;
            transform: translateY(22px);
            transition: opacity 0.75s ease, transform 0.75s ease;
        }

        .manifesto-line.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .manifesto-line:nth-child(2) { transition-delay: 0.18s; }
        .manifesto-line:nth-child(3) { transition-delay: 0.36s; }

        .manifesto-body {
            color: var(--warm-cream);
            opacity: 0.85;
            font-size: var(--body-size);
            line-height: var(--body-line-height);
            max-width: 540px;
            margin: 0 auto 3rem;
        }

        .manifesto-footer {
            font-family: 'Cormorant Garamond', serif;
            font-style: italic;
            color: var(--gold);
            font-size: var(--body-size);
            letter-spacing: 0.5px;
            opacity: 1;
        }

        @media (max-width: 768px) {
            .manifesto-section {
                padding: 6rem 2rem;
            }
        }

        /* ============================================
           FAQ ACCORDION
           ============================================ */
        .faq-accordion {
            max-width: 820px;
            margin: 0 auto;
        }

        .faq-item {
            border-bottom: 1px solid rgba(107, 78, 61, 0.14);
        }

        .faq-item:first-child {
            border-top: 1px solid rgba(107, 78, 61, 0.14);
        }

        .faq-question {
            width: 100%;
            background: none;
            border: none;
            text-align: left;
            padding: 1.8rem 0;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 2rem;
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(1.1rem, 2vw, 1.35rem);
            font-weight: 400;
            color: var(--deep-earth);
            transition: color 0.2s;
        }

        .faq-question:hover {
            color: var(--mocha);
        }

        .faq-icon {
            flex-shrink: 0;
            width: 20px;
            height: 20px;
            position: relative;
        }

        .faq-icon::before,
        .faq-icon::after {
            content: '';
            position: absolute;
            background: currentColor;
            border-radius: 2px;
            transition: opacity 0.3s, transform 0.35s;
        }

        .faq-icon::before {
            width: 100%;
            height: 1.5px;
            top: 50%;
            left: 0;
            transform: translateY(-50%);
        }

        .faq-icon::after {
            width: 1.5px;
            height: 100%;
            left: 50%;
            top: 0;
            transform: translateX(-50%);
        }

        .faq-item.open .faq-icon::after {
            opacity: 0;
            transform: translateX(-50%) rotate(90deg);
        }

        .faq-answer {
            overflow: hidden;
            max-height: 0;
            transition: max-height 0.45s ease;
        }

        .faq-answer-inner {
            padding: 0 0 2rem;
            color: var(--charcoal);
            line-height: 1.9;
            font-size: 1rem;
        }

        .faq-answer-inner p + p {
            margin-top: 1rem;
        }

        /* ============================================
           NEWSLETTER — cleaner
           ============================================ */
        .newsletter-section {
            background: var(--warm-cream);
        }

        .newsletter-gifts {
            margin-top: 3rem;
            border-top: 1px solid rgba(107, 78, 61, 0.15);
            padding-top: 2rem;
        }

        .newsletter-gifts-label {
            font-family: 'Raleway', sans-serif;
            font-size: 0.75rem;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--mocha);
            margin-bottom: 1.5rem;
        }

        .newsletter-gifts-list {
            display: flex;
            flex-direction: column;
            gap: 0.9rem;
            align-items: center;
        }

        .newsletter-gift {
            display: flex;
            align-items: center;
            gap: 0.9rem;
            font-size: 1rem;
            color: var(--charcoal);
        }

        .newsletter-gift-icon {
            width: 5px;
            height: 5px;
            border-radius: 50%;
            background: var(--gold);
            flex-shrink: 0;
        }

        /* legacy rule kept for nothing — remove placeholder */
        .newsletter-resource::before {
            content: '◆';
            font-size: 0.4rem;
            color: var(--gold);
            opacity: 1;
        }

        /* ============================================
           BOOK WAITLIST (inline, dark)
           ============================================ */
        .book-waitlist-inline {
            background: var(--deep-earth);
            padding: 3.5rem;
            border-radius: 4px;
            margin: 4rem auto 0;
            max-width: 820px;
            text-align: center;
        }

        .book-waitlist-inline h3 {
            color: var(--gold);
            margin-bottom: 0.8rem;
            font-size: clamp(1.5rem, 3vw, 2rem);
        }

        .book-waitlist-inline p:not(.gdpr-notice) {
            color: var(--warm-cream);
            opacity: 0.7;
            margin-bottom: 2rem;
            font-size: 1rem;
        }

        .book-waitlist-inline input {
            background: rgba(255, 255, 255, 0.07);
            border-color: rgba(245, 237, 228, 0.2);
            color: var(--warm-cream);
        }

        .book-waitlist-inline input::placeholder {
            color: rgba(245, 237, 228, 0.4);
        }

        .book-waitlist-inline input:focus {
            border-color: var(--gold);
        }

        .book-waitlist-inline .gdpr-notice {
            color: var(--warm-cream);
            opacity: 0.38;
        }

        @media (max-width: 768px) {
            .book-waitlist-inline {
                padding: 2.5rem 1.5rem;
            }
        }

        /* ============================================
           TESTIMONIALS — pull-quote on deep earth
           ============================================ */
        .testimonials-section {
            background: var(--warm-cream);
            padding: 8rem 2rem;
        }

        .testimonials-heading {
            font-family: 'Cormorant Garamond', serif;
            font-size: var(--title-size);
            font-weight: var(--title-weight);
            line-height: var(--title-line-height);
            color: var(--charcoal);
            text-align: center;
            display: block;
            margin-bottom: 3.5rem;
        }

        .testimonials-stack {
            max-width: 800px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 1.5rem !important;
            gap: 3.5rem;
        }

        .testimonial-pullquote {
            position: relative;
            background: white;
            padding: 2.5rem;
            border-radius: 12px;
            box-shadow: 0 4px 20px rgba(107, 78, 61, 0.08);
            border-left: 3px solid var(--mocha);
        }

        .testimonial-pullquote blockquote::before {
            content: '\201C';
        }

        .testimonial-pullquote blockquote::after {
            content: '\201D';
        }

        .testimonial-pullquote blockquote {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(1.4rem, 2vw, 1.6rem);
            font-style: italic;
            font-weight: 300;
            line-height: 1.55;
            color: var(--charcoal);
            margin: 0 0 1.3rem 0;
        }

        .testimonial-attribution {
            font-family: 'Raleway', sans-serif;
            font-size: 0.78rem;
            font-weight: 500;
            letter-spacing: 2.5px;
            text-transform: uppercase;
            color: var(--mocha);
            text-align: right;
        }

        .testimonial-pullquote.reveal:nth-child(2) { transition-delay: 0.15s; }
        .testimonial-pullquote.reveal:nth-child(3) { transition-delay: 0.3s; }

        @media (max-width: 768px) {
            .testimonials-section {
                padding: 5rem 2rem;
            }
            .testimonials-stack {
                gap: 1rem;
            }
            .testimonial-pullquote {
                padding: 1.5rem;
            }
            .testimonial-pullquote blockquote {
                font-size: 1rem;
            }
            .testimonial-attribution {
                font-size: 0.55rem;
                letter-spacing: 1.5px;
            }
        }

        /* ============================================
           ACTIVE NAV INDICATOR
           ============================================ */
        nav ul a.nav-active {
            color: var(--mocha);
            position: relative;
        }

        nav ul a.nav-active::after {
            content: '';
            position: absolute;
            bottom: -3px;
            left: 0;
            width: 100%;
            height: 1.5px;
            background: var(--mocha);
            border-radius: 2px;
        }

/* ============================================
   JOURNEY PAGE
   ============================================ */

/* Hero */
.journey-hero {
    display: flex;
    align-items: stretch;
    background: var(--warm-cream);
    overflow: hidden;
}
.journey-hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    width: 100%;
}
.journey-hero-text {
    padding: 6rem 2rem 6rem 15rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
}
.journey-hero-h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.4rem, 2.4vw, 2.6rem);
    font-weight: 300;
    line-height: 1.2;
    color: var(--charcoal);
    margin-bottom: 0;
    letter-spacing: -0.01em;
}
.journey-hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.6rem, 4.8vw, 5.8rem);
    font-weight: 300;
    font-style: italic;
    color: var(--mocha);
    margin-bottom: 1.2rem;
    line-height: 1.1;
    letter-spacing: -0.01em;
}
.journey-hero-portrait {
    display: flex;
    align-items: flex-start;
    padding: 0 11rem 0 2rem;
}
.journey-hero-portrait img {
    width: 100%;
    height: auto;
    display: block;
    filter: sepia(10%) saturate(88%);
    transition: filter 0.4s;
}
.journey-hero-portrait:hover img {
    filter: sepia(0%) saturate(100%);
}

/* Intro narrative */
.journey-intro {
    padding: 1rem 2rem 5rem;
}
.journey-prose {
    max-width: 680px;
    margin: 0 auto;
}
.journey-prose p {
    font-size: var(--body-size);
    line-height: var(--body-line-height);
    color: var(--charcoal);
    margin-bottom: 1.5rem;
}
.journey-prose p:last-child {
    margin-bottom: 0;
}

/* Full-bleed divider images */
.journey-divider {
    overflow: hidden;
    height: 55vw;
    max-height: 520px;
    min-height: 240px;
}
.journey-divider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    filter: sepia(10%) saturate(88%);
    transition: filter 0.4s;
}
.journey-divider:hover img {
    filter: sepia(0%) saturate(100%);
}

/* Chapter sections */
.journey-chapter {
    padding: 4rem 2rem 5rem;
}
.journey-story {
    max-width: 680px;
    margin: 0 auto;
}
.journey-chapter-h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: var(--title-size);
    font-weight: var(--title-weight);
    color: var(--deep-earth);
    margin-bottom: 1.5rem;
}
.journey-story p {
    font-size: var(--body-size);
    line-height: var(--body-line-height);
    color: var(--charcoal);
    margin-bottom: 1.5rem;
}
.journey-story-image {
    margin-top: 3rem;
    overflow: hidden;
    border-radius: 2px;
}
.journey-story-image img {
    width: 100%;
    height: auto;
    display: block;
    filter: sepia(10%) saturate(88%);
    transition: filter 0.4s;
    border-radius: 2px;
}
.journey-story-image:hover img {
    filter: sepia(0%) saturate(100%);
}

/* CONSCIENCIA — dark culmination */
.journey-consciencia {
    background: var(--warm-cream);
    padding: 1rem 2rem 2rem;
    text-align: center;
}
.journey-consciencia-inner {
    max-width: 780px;
    margin: 0 auto;
}
.journey-consciencia-h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 300;
    color: var(--deep-earth);
    margin-bottom: 2rem;
    letter-spacing: 0.04em;
}
.journey-consciencia-body {
    font-size: var(--body-size);
    line-height: var(--body-line-height);
    color: var(--charcoal);
    opacity: 0.85;
    margin-bottom: 3rem;
}

/* Testimonial */
.journey-testimonial {
    background: var(--warm-cream);
    padding: 0 2rem 5rem;
}
.journey-testimonial .testimonials-stack {
    max-width: 700px;
}

/* CTA */
.journey-cta-section {
    padding: 5rem 2rem;
}
.journey-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

/* Journey responsive */
@media (max-width: 900px) {
    .journey-hero { min-height: unset; }
    .journey-hero-inner { grid-template-columns: 1fr; }
    .journey-hero-text { padding: 3.5rem 1.5rem 2.5rem; order: 1; text-align: center; align-items: center; }
    .journey-hero-portrait { height: auto; order: 2; padding: 0 2rem; }
    .journey-hero-h1 { font-size: clamp(1.4rem, 5vw, 2rem); }

    .journey-chapter { padding: 3rem 1.5rem 4rem; }
}

@media (max-width: 768px) {
    .journey-consciencia { padding: 1rem 1.5rem 1.5rem; }
    .journey-testimonial { padding: 1rem 1.5rem 4rem; }
}

/* ============================================
   OFFERINGS PAGE
   ============================================ */

/* --- Hero --- */
.offerings-hero {
    background: var(--warm-cream);
    padding: 9rem 2rem 3rem;
    text-align: center;
    position: relative;
}
.offerings-hero-inner {
    max-width: 820px;
    margin: 0 auto;
}
.offerings-hero-h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(4rem, 9vw, 8rem);
    font-weight: 300;
    font-style: italic;
    color: var(--mocha);
    line-height: 1.05;
    margin-bottom: 1.4rem;
    letter-spacing: -0.01em;
}
.offerings-hero-sub {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    font-style: italic;
    font-weight: 300;
    color: var(--deep-earth);
    margin-bottom: 1.8rem;
    line-height: 1.3;
}
.offerings-hero-desc {
    font-size: var(--body-size);
    line-height: var(--body-line-height);
    color: var(--charcoal);
    opacity: 0.75;
    max-width: 520px;
    margin: 0 auto;
}

/* --- Intro with portrait --- */
.offerings-intro {
    padding: 2rem 2rem 6rem;
}
.offerings-intro-grid {
    display: grid;
    grid-template-columns: 0.45fr 0.55fr;
    gap: 5rem;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}
.offerings-intro-portrait {
    overflow: hidden;
    border-radius: 4px;
}
.offerings-intro-portrait img {
    width: 100%;
    height: auto;
    display: block;
    filter: sepia(10%) saturate(88%);
    transition: filter 0.4s;
    border-radius: 4px;
}
.offerings-intro-portrait:hover img {
    filter: sepia(0%) saturate(100%);
}
.offerings-intro-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.offerings-intro-lead {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.25rem, 2.2vw, 1.5rem);
    font-style: italic;
    font-weight: 400;
    color: var(--deep-earth);
    margin-bottom: 1.2rem;
    line-height: 1.5;
}
.offerings-intro-text p:not(.offerings-intro-lead) {
    font-size: var(--body-size);
    line-height: var(--body-line-height);
    color: var(--charcoal);
    margin-bottom: 1.4rem;
}
.offerings-intro-italic {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    color: var(--mocha);
    font-size: clamp(1.1rem, 2vw, 1.35rem) !important;
    margin-bottom: 2rem !important;
}

/* --- Collection header --- */
.offerings-collection-header {
    padding: 5rem 2rem 0;
    background: #faf4ef;
}
.offerings-collection-header .section-title {
    margin-bottom: 0;
}

/* --- Individual service card sections --- */
.offering-card {
    padding: 5rem 2rem;
    background: #faf4ef;
}
.offering-card--alt {
    background: var(--warm-cream);
}
.offering-card-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}
.offering-card--no-image .offering-card-inner {
    grid-template-columns: 1fr;
    max-width: 760px;
}
.offering-card-image {
    overflow: hidden;
    border-radius: 4px;
    height: 480px;
}
.offering-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: sepia(10%) saturate(88%);
    transition: filter 0.4s;
}
.offering-card-image:hover img {
    filter: sepia(0%) saturate(100%);
}
/* Alt cards: image moves to left */
.offering-card--alt .offering-card-image {
    order: -1;
}
.offering-card-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3.5rem, 6vw, 5rem);
    font-weight: 300;
    color: var(--mocha);
    opacity: 0.2;
    line-height: 1;
    padding-top: 0.3rem;
    user-select: none;
}
.offering-card-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 400;
    color: var(--deep-earth);
    margin-bottom: 0.8rem;
    line-height: 1.2;
}
.offering-card-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    font-weight: 300;
    color: var(--charcoal);
    opacity: 0.75;
    line-height: 1.55;
    margin-bottom: 2rem;
}
.offering-card-meta {
    border-top: 1px solid rgba(164, 120, 100, 0.2);
    padding-top: 1.8rem;
    margin-bottom: 2rem;
}
.offering-card-meta p {
    font-size: var(--body-size);
    line-height: var(--body-line-height);
    color: var(--charcoal);
    margin-bottom: 1.5rem;
}
.offering-meta-label {
    display: block;
    font-family: 'Raleway', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--charcoal);
    margin-bottom: 0.5rem;
}
.offering-card-cta {
    padding-top: 0.5rem;
}

/* Upcoming/course list block */
.offering-upcoming {
    margin: 1.5rem 0 2rem;
    padding: 1.5rem;
    background: rgba(164, 120, 100, 0.06);
    border-left: 3px solid var(--mocha);
    border-radius: 0 4px 4px 0;
}
.offering-dates-list {
    list-style: none;
    padding: 0;
    margin: 0.6rem 0 0;
}
.offering-dates-list li {
    font-size: var(--body-size);
    line-height: var(--body-line-height);
    color: var(--charcoal);
    padding: 0.25rem 0 0.25rem 1.2rem;
    position: relative;
}
.offering-dates-list li::before {
    content: '·';
    position: absolute;
    left: 0;
    color: var(--mocha);
    font-weight: 700;
}

/* --- Testimonial --- */
.offerings-testimonial {
    background: var(--warm-cream);
    padding: 6rem 2rem;
}
.offerings-testimonial .testimonials-stack {
    max-width: 720px;
}

/* --- Final CTA --- */
.offerings-cta-close {
    background: var(--charcoal);
    padding: 9rem 2rem 10rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.offerings-cta-close::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(164, 120, 100, 0.07) 0%, transparent 68%);
    pointer-events: none;
}
.offerings-cta-close-inner {
    max-width: 680px;
    margin: 0 auto;
    position: relative;
}
.offerings-cta-close .hero-eyebrow {
    color: var(--gold);
    margin-bottom: 1.5rem;
}
.offerings-cta-h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.2rem, 4.5vw, 3.8rem);
    font-weight: 300;
    color: var(--warm-cream);
    margin-bottom: 1.8rem;
    line-height: 1.2;
}
.offerings-cta-body {
    font-size: var(--body-size);
    line-height: var(--body-line-height);
    color: var(--warm-cream);
    opacity: 0.75;
    margin-bottom: 3rem;
}

/* --- Offerings mobile --- */
@media (max-width: 768px) {
    .offerings-hero { padding: 6rem 1.5rem 2rem; }
    .offerings-intro { padding: 1rem 1.5rem 5rem; }
    .offerings-intro-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .offerings-intro-portrait {
        max-width: 100%;
    }
    .offerings-intro-text .btn {
        font-size: 0.82rem;
        padding: 0.75rem 1.6rem;
    }
    .offering-card { padding: 4rem 1.5rem 1.5rem; }
    .offerings-testimonial { padding: 1rem 1.5rem 4rem; }
    .offering-card-inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .offering-card--alt .offering-card-image {
        order: 0;
    }
    .offering-card-image {
        height: auto;
    }
    .offering-card-image img {
        height: auto;
        object-fit: contain;
    }
    .offerings-cta-close { padding: 6rem 1.5rem 7rem; }
}

/* ============================================
   TYPOGRAPHY SYSTEM — mobile overrides
   ============================================ */
@media (max-width: 768px) {
    :root {
        --title-size:        clamp(1.75rem, 6vw, 2.6rem);
        --title-line-height: 1.3;
        --body-size:         1rem;
        --body-line-height:  1.85;
    }
}

/* ============================================
   RETREATS PAGE
   ============================================ */

/* Hero */
.retreats-hero {
    background: var(--warm-cream);
    padding: 9rem 2rem 5rem;
    text-align: center;
}
.retreats-hero-inner {
    max-width: 820px;
    margin: 0 auto;
}
.retreats-hero-h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 7vw, 6rem);
    font-weight: 300;
    font-style: italic;
    color: var(--deep-earth);
    line-height: 1.1;
    margin-bottom: 1.4rem;
    letter-spacing: -0.01em;
}
.retreats-hero-sub {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.2rem, 2.5vw, 1.75rem);
    font-style: italic;
    font-weight: 300;
    color: var(--charcoal);
    opacity: 0.7;
    line-height: 1.4;
}

/* Intro section */
.retreats-intro {
    background: var(--warm-cream);
    padding: 6rem 2rem;
}
.retreats-intro-body {
    max-width: 760px;
    margin: 0 auto;
}
.retreats-intro-body p {
    font-size: var(--body-size);
    line-height: var(--body-line-height);
    color: var(--charcoal);
    margin-bottom: 1.5rem;
}
.retreats-intro-body h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.3rem, 2.5vw, 1.75rem);
    font-weight: 300;
    color: var(--deep-earth);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

/* Dark differentiation section */
.retreats-different {
    background: var(--warm-cream);
    padding: 8rem 2rem;
    position: relative;
    overflow: hidden;
}
.retreats-different::before {
    display: none;
}
.retreats-different-inner {
    max-width: 820px;
    margin: 0 auto;
    position: relative;
}
.retreats-different .section-title {
    color: var(--charcoal);
    margin-bottom: 4rem;
}
.retreats-different-statement {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.15rem, 2vw, 1.55rem);
    font-style: normal;
    font-weight: 300;
    color: var(--charcoal);
    line-height: 1.4;
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(164, 120, 100, 0.15);
}
.retreats-different-statement:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

/* Testimonial section */
.retreats-testimonial {
    background: var(--warm-cream);
    padding: 6rem 2rem;
}
.retreats-testimonial .testimonials-stack {
    max-width: 720px;
}

/* Set Your Intention CTA */
.retreats-intention-cta {
    background: var(--warm-cream);
    padding: 5rem 2rem;
    text-align: center;
}
.retreats-intention-cta-inner {
    background: var(--deep-earth);
    padding: 3.5rem;
    border-radius: 4px;
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
}
.retreats-intention-cta h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 300;
    color: var(--gold);
    margin-bottom: 0.8rem;
    line-height: 1.25;
}
.retreats-intention-cta p {
    font-size: var(--body-size);
    line-height: var(--body-line-height);
    color: var(--warm-cream);
    opacity: 0.7;
    margin-bottom: 2rem;
}

/* Ibiza retreat section */
.retreats-ibiza {
    background: var(--warm-cream);
    padding: 7rem 2rem;
}
.retreats-ibiza-inner {
    max-width: 860px;
    margin: 0 auto;
}
.retreats-ibiza-meta {
    margin-bottom: 2.5rem;
}
.retreats-ibiza-meta p {
    font-size: var(--body-size);
    line-height: var(--body-line-height);
    color: var(--charcoal);
    margin-top: 0.3rem;
    margin-bottom: 0;
}
.retreats-ibiza-body p {
    font-size: var(--body-size);
    line-height: var(--body-line-height);
    color: var(--charcoal);
    margin-bottom: 1.5rem;
}
.retreats-ibiza-image {
    overflow: hidden;
    margin: 2.5rem 0;
    border-radius: 2px;
}
.retreats-ibiza-image img {
    width: 100%;
    height: auto;
    display: block;
    filter: sepia(10%) saturate(88%);
    transition: filter 0.4s;
    border-radius: 2px;
}
.retreats-ibiza-image:hover img {
    filter: sepia(0%) saturate(100%);
}
.retreats-included {
    margin: 2rem 0 2.5rem;
    padding: 2rem 2rem 2rem 2.5rem;
    background: rgba(164, 120, 100, 0.05);
    border-left: 3px solid var(--mocha);
    border-radius: 0 4px 4px 0;
}
.retreats-included h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    font-weight: 300;
    color: var(--deep-earth);
    margin-bottom: 1.2rem;
}
.retreats-included ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.retreats-included ul li {
    font-size: var(--body-size);
    line-height: var(--body-line-height);
    color: var(--charcoal);
    padding: 0.25rem 0 0.25rem 1.4rem;
    position: relative;
}
.retreats-included ul li::before {
    content: '·';
    position: absolute;
    left: 0;
    color: var(--mocha);
    font-weight: 700;
    font-size: 1.2rem;
    line-height: inherit;
}
.retreats-everything-note {
    font-size: var(--body-size);
    font-weight: 500;
    color: var(--charcoal);
    line-height: var(--body-line-height);
    margin-bottom: 2.5rem;
}
.retreats-ibiza-cta {
    text-align: center;
    margin-top: 2.5rem;
}
.retreats-ibiza-fine {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.9rem;
    font-style: italic;
    color: var(--charcoal);
    opacity: 0.65;
}

/* Gallery heading */
.retreats-gallery-header {
    margin: 3rem 0 1.5rem;
}
.retreats-gallery-header h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    font-weight: 300;
    color: var(--deep-earth);
}

/* Gallery sepia handled per-card in the stacked gallery rules above */

/* Upcoming Retreats */
.retreats-upcoming {
    background: var(--warm-cream);
    padding: 0 2rem 5rem;
    text-align: center;
}
.retreats-upcoming-inner {
    background: var(--deep-earth);
    padding: 3.5rem;
    border-radius: 4px;
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
}
.retreats-upcoming-inner .section-title {
    color: var(--gold);
    margin-bottom: 0.8rem;
    font-size: clamp(1.5rem, 3vw, 2rem);
}
.retreats-upcoming-inner p {
    font-size: var(--body-size);
    line-height: var(--body-line-height);
    color: var(--warm-cream);
    opacity: 0.7;
    margin-bottom: 2rem;
}
/* Footer nav row */
.retreats-footer-nav {
    background: var(--warm-cream);
    padding: 3rem 2rem;
    text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
    .retreats-hero { padding: 6rem 1.5rem 3.5rem; }
    .retreats-intro { padding: 4rem 1.5rem; }
    .retreats-different { padding: 5rem 1.5rem 3rem; }
    .retreats-testimonial { padding: 3rem 1.5rem 4rem; }
    .retreats-different-statement { font-size: clamp(1rem, 4vw, 1.3rem); }
    .retreats-intention-cta { padding: 3rem 1.5rem; }
    .retreats-intention-cta-inner { padding: 2.5rem 1.5rem; }
    .retreats-ibiza { padding: 5rem 1.5rem; }
    .retreats-included { padding: 1.5rem 1.5rem 1.5rem 1.8rem; }
    .retreats-upcoming { padding: 0 1.5rem 3.5rem; }
    .retreats-upcoming-inner { padding: 2.5rem 1.5rem; }
}

/* ============================================
   BOOK PAGE — The Feminine Shift
   ============================================ */

.book-hero {
    background: var(--warm-cream);
    padding: 9rem 2rem 5rem;
    text-align: center;
}
.book-hero-inner {
    max-width: 820px;
    margin: 0 auto;
}
.book-hero-h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 7vw, 6.5rem);
    font-weight: 300;
    font-style: italic;
    color: var(--mocha);
    line-height: 1.08;
    margin-bottom: 1.2rem;
    letter-spacing: -0.01em;
}
.book-hero-sub {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.3rem, 2.5vw, 1.9rem);
    font-style: italic;
    font-weight: 300;
    color: var(--deep-earth);
    margin-bottom: 1.4rem;
    line-height: 1.3;
}
.book-hero-meta {
    font-family: 'Raleway', sans-serif;
    font-size: 0.88rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--charcoal);
    opacity: 0.6;
}

.book-intro {
    background: var(--warm-cream);
    padding: 6rem 2rem 2rem;
}
.book-intro .book-grid {
    max-width: 1100px;
    margin: 0 auto;
}
.book-intro-cover {
    overflow: hidden;
    border-radius: 4px;
}
.book-intro-cover img {
    width: 100%;
    height: auto;
    display: block;
    filter: sepia(10%) saturate(88%);
    transition: filter 0.4s;
    border-radius: 4px;
}
.book-intro-cover:hover img {
    filter: sepia(0%) saturate(100%);
}
.book-intro-text h2 {
    color: var(--deep-earth);
    margin-bottom: 1.5rem;
}
.book-intro-text p {
    font-size: var(--body-size);
    line-height: var(--body-line-height);
    color: var(--charcoal);
    margin-bottom: 1.4rem;
}
.book-avail-note {
    font-size: 0.9rem;
    opacity: 0.65;
    margin-top: 0.8rem;
    margin-bottom: 0 !important;
}

.book-praise {
    background: var(--warm-cream);
    padding: 2rem 2rem 7rem;
}
.book-praise .testimonial-pullquote blockquote {
    font-size: clamp(1.05rem, 1.8vw, 1.25rem);
}
.book-praise-heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: var(--title-size);
    font-weight: var(--title-weight);
    line-height: var(--title-line-height);
    color: var(--charcoal);
    text-align: center;
    margin-bottom: 3.5rem;
    display: block;
}

.book-foreword {
    background: var(--warm-cream);
    padding: 7rem 2rem;
}
.book-foreword-inner {
    max-width: 760px;
    margin: 0 auto;
}
.book-foreword-inner h2 {
    color: var(--deep-earth);
    margin-bottom: 0.6rem;
}
.book-foreword-byline {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    color: var(--mocha);
    font-size: 1.2rem;
    margin-bottom: 2rem;
    display: block;
}
.book-foreword-inner blockquote {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    font-style: italic;
    font-weight: 300;
    color: var(--charcoal);
    line-height: 1.65;
    padding-left: 2rem;
    border-left: 2px solid var(--mocha);
    margin: 0;
}

.book-inside {
    background: var(--warm-cream);
    padding: 7rem 2rem;
}
.book-inside-inner {
    max-width: 900px;
    margin: 0 auto;
    background: var(--deep-earth);
    padding: 3rem;
    border-radius: 4px;
    box-shadow: 0 6px 25px rgba(107, 78, 61, 0.18);
}
.book-inside-inner .section-title {
    color: var(--gold);
}
.book-inside-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}
.book-inside-col h3 {
    color: var(--gold);
    font-size: clamp(1.2rem, 2.5vw, 1.65rem);
    margin-bottom: 1.5rem;
    font-weight: 300;
}
.book-archetype-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.book-archetype-list li {
    font-size: var(--body-size);
    line-height: var(--body-line-height);
    color: var(--warm-cream);
    padding: 0.35rem 0;
    border-bottom: 1px solid rgba(212, 165, 116, 0.2);
}
.book-archetype-list li:last-child {
    border-bottom: none;
}

.book-why {
    background: var(--warm-cream);
    padding: 7rem 2rem;
}
.book-why-inner {
    max-width: 760px;
    margin: 0 auto;
}
.book-why-inner h2 {
    color: var(--deep-earth);
    margin-bottom: 2rem;
}
.book-why-inner p {
    font-size: var(--body-size);
    line-height: var(--body-line-height);
    color: var(--charcoal);
    margin-bottom: 1.4rem;
}
.book-why-inner .book-why-pullquote {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.4rem, 2vw, 1.7rem);
    font-style: italic;
    font-weight: 300;
    color: var(--mocha);
    text-align: left;
    margin: 2.5rem 0;
    line-height: 1.3;
    padding: 0;
}

.book-audience {
    background: var(--charcoal);
    padding: 8rem 2rem;
    position: relative;
    overflow: hidden;
}
.book-audience::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(164, 120, 100, 0.07) 0%, transparent 68%);
    pointer-events: none;
}
.book-audience-inner {
    max-width: 820px;
    margin: 0 auto;
    position: relative;
}
.book-audience-inner .section-title {
    color: var(--warm-cream);
    margin-bottom: 1rem;
}
.book-audience-body {
    font-size: var(--body-size);
    line-height: var(--body-line-height);
    color: var(--warm-cream);
    opacity: 0.7;
    margin-bottom: 2rem;
    text-align: center;
}
.book-audience-list {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: 640px;
}
.book-audience-list li {
    font-size: var(--body-size);
    line-height: var(--body-line-height);
    color: var(--warm-cream);
    padding: 0.65rem 0 0.65rem 1.6rem;
    position: relative;
    border-bottom: 1px solid rgba(245, 237, 228, 0.08);
}
.book-audience-list li:last-child {
    border-bottom: none;
}
.book-audience-list li::before {
    content: '·';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 700;
    font-size: 1.2rem;
    line-height: inherit;
}

.book-speaking {
    background: var(--warm-cream);
    padding: 7rem 2rem;
}
.book-speaking-inner {
    max-width: 760px;
    margin: 0 auto;
}
.book-speaking-inner h2 {
    color: var(--deep-earth);
    margin-bottom: 1rem;
}
.book-speaking-inner > p {
    font-size: var(--body-size);
    line-height: var(--body-line-height);
    color: var(--charcoal);
    margin-bottom: 1.5rem;
}
.book-speaking-inner .book-archetype-list {
    margin-bottom: 2.5rem;
}
.book-speaking-inner .book-archetype-list li {
    color: var(--charcoal);
    border-bottom-color: rgba(164, 120, 100, 0.12);
}
.book-speaking-cta {
    text-align: center;
    margin-top: 2rem;
}

.book-cta-close {
    background: var(--warm-cream);
    padding: 3rem 2rem;
    text-align: center;
}
.book-cta-inner {
    max-width: 680px;
    margin: 0 auto;
}
.book-cta-h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 300;
    color: var(--gold);
    margin-bottom: 1rem;
    line-height: 1.25;
}
.book-cta-body {
    font-size: var(--body-size);
    line-height: var(--body-line-height);
    color: var(--warm-cream);
    opacity: 0.7;
    margin-bottom: 2.5rem;
}

@media (max-width: 768px) {
    .book-hero { padding: 6rem 1.5rem 3rem; }
    .book-intro { padding: 3.5rem 1.5rem 2rem; }
    .book-praise { padding: 2rem 1.5rem 2rem; }
    .book-foreword { padding: 2rem 1.5rem 3.5rem; }
    .book-inside { padding: 3.5rem 1.5rem; }
    .book-inside-grid { grid-template-columns: 1fr; gap: 3rem; }
    .book-why { padding: 3.5rem 1.5rem; }
    .book-audience { padding: 3.5rem 1.5rem; }
    .book-speaking { padding: 3.5rem 1.5rem; }
    .book-cta-close { padding: 3.5rem 1.5rem; }
}

/* ============================================
   CONTACT PAGE
   ============================================ */

.contact-hero {
    background: var(--warm-cream);
    padding: 9rem 2rem 5rem;
    text-align: center;
}
.contact-hero-inner {
    max-width: 820px;
    margin: 0 auto;
}
.contact-hero-h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 300;
    font-style: italic;
    color: var(--mocha);
    line-height: 1.1;
    margin-bottom: 1.2rem;
    letter-spacing: -0.01em;
}
.contact-hero-sub {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.2rem, 2.5vw, 1.75rem);
    font-style: italic;
    font-weight: 300;
    color: var(--charcoal);
    opacity: 0.7;
    line-height: 1.4;
}

.contact-form-section {
    background: var(--warm-cream);
    padding: 6rem 2rem;
}

.contact-connect {
    background: var(--warm-cream);
    padding: 0 2rem 4rem;
    text-align: center;
}
.contact-connect-inner {
    background: white;
    padding: 3.5rem;
    border-radius: 15px;
    box-shadow: 0 6px 25px rgba(107, 78, 61, 0.08);
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
}
.contact-connect-inner h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 300;
    color: var(--deep-earth);
    margin-bottom: 2rem;
    line-height: 1.25;
}
.contact-connect-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}
.contact-connect-item {
    font-size: var(--body-size);
    line-height: var(--body-line-height);
    color: var(--charcoal);
    opacity: 0.85;
    margin: 0;
}
.contact-connect-item strong {
    color: var(--mocha);
    font-weight: 500;
    margin-right: 0.4rem;
}
.contact-connect-item a {
    color: var(--charcoal);
    text-decoration: none;
    border-bottom: 1px solid rgba(107, 78, 61, 0.2);
    transition: border-color 0.3s, color 0.3s;
}
.contact-connect-item a:hover {
    color: var(--mocha);
    border-bottom-color: var(--mocha);
}

@media (max-width: 768px) {
    .contact-hero { padding: 6rem 1.5rem 3.5rem; }
    .contact-form-section { padding: 4rem 1.5rem; }
    .contact-connect { padding: 3rem 1.5rem; }
    .contact-connect-inner { padding: 2.5rem 1.5rem; }
}
