/* ===========================
           VARIABLES & RESET
        =========================== */
        :root {
            --teal:        #1F4E4E;
            --teal-mid:    #2D6B6B;
            --teal-light:  #EAF2F2;
            --charcoal:    #2B2B2B;
            --offwhite:    #F7F5F2;
            --brass:       #C6A56A;
            --brass-light: #F0E6CB;
            --brass-dark:  #A88450;
            --warm-grey:   #9A9188;
            --line:        rgba(43,43,43,0.14);
        }
        *, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
        html { scroll-behavior: smooth; }
        body {
            background: var(--offwhite);
            color: var(--charcoal);
            font-family: 'Lora', Georgia, serif;
            font-size: 16px;
            line-height: 1.7;
            overflow-x: hidden;
        }

        /* ===========================
           HIDDEN SVG FILTERS
        =========================== */
        .svg-defs { position:absolute; width:0; height:0; overflow:hidden; }

        /* ===========================
           TYPOGRAPHY
        =========================== */
        h1,h2,h3 {
            font-family: 'Playfair Display', Georgia, serif;
            color: var(--teal);
            line-height: 1.18;
        }
        h1 { font-size: clamp(2.6rem, 5.5vw, 4.4rem); }
        h2 { font-size: clamp(1.9rem, 3.5vw, 2.8rem); }
        h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
        p  { font-family:'Lora', serif; color:var(--charcoal); line-height:1.8; }

        /* ===========================
           BRAND DOT MOTIF
        =========================== */
        .dot {
            display: inline-block;
            width: 8px; height: 8px;
            background: var(--brass);
            border-radius: 50%;
            margin: 0 5px;
            vertical-align: middle;
            position: relative; top: -1px;
            flex-shrink: 0;
        }
        .dot-sm { width:6px; height:6px; }
        .dot-lg { width:11px; height:11px; }

        /* Dot bullet list item */
        .dot-item {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            margin-bottom: 11px;
        }
        .dot-item .dot { margin-top: 9px; }

        /* Dot divider */
        .dot-row {
            display: flex;
            align-items: center;
            gap: 10px;
            margin: 1.8rem 0;
        }
        .dot-row hr {
            flex: 1;
            border: none;
            border-top: 2px solid var(--brass);
            opacity: 0.35;
        }

        /* ===========================
           SKETCH / HAND-DRAWN HELPERS
        =========================== */
                
        /* Imperfect border via irregular border-radius + filter */
        .card-odd  { border-radius:  4px 14px  4px 14px; transform: rotate(-0.35deg); }
        .card-even { border-radius: 14px  4px 14px  4px; transform: rotate( 0.30deg); }
        .card-alt  { border-radius:  4px 10px 14px  4px; transform: rotate(-0.20deg); }

        .sketch-box {
            border: 2.5px solid var(--charcoal);
            background: white;
            padding: 2.5rem;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .sketch-box:hover {
            transform: rotate(0deg) translateY(-5px) !important;
            box-shadow: 5px 7px 0 var(--brass-light);
        }

        /* Section label */
        .label {
            font-family: 'Caveat', cursive;
            font-size: 1.75rem;
            color: var(--brass);
            letter-spacing: 0.1em;
            text-transform: uppercase;
            display: flex;
            align-items: center;
            gap: 9px;
            margin-bottom: 0.7rem;
        }
        .label::before {
            content: '';
            display: inline-block;
            width: 28px; height: 2px;
            background: var(--brass);
        }

        /* ===========================
           LAYOUT
        =========================== */
        .wrap { max-width:1100px; margin:0 auto; padding:0 2rem; }
        section { padding: 100px 0; }

        /* ===========================
           NAVIGATION
        =========================== */
        nav {
            position: fixed;
            top: 0; left: 0; right: 0;
            z-index: 200;
            height: 80px;
            padding: 0 2rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            background: rgba(247,245,242,0.93);
            backdrop-filter: blur(12px);
            border-bottom: 2px solid transparent;
            transition: border-color 0.3s;
        }
        nav.scrolled { border-bottom-color: var(--line); }

        /* Logo placeholder */
        .nav-logo {
            display: flex;
            align-items: center;
            text-decoration: none;
        }
        .nav-logo-text {
            font-family: 'Playfair Display', serif;
            font-size: 1.35rem;
            font-weight: 400;
            color: var(--teal);
            letter-spacing: 0.02em;
            white-space: nowrap;
        }
        .nav-logo-dot {
            color: var(--brass);
            margin: 0 0.2em;
        }
        .logo-note {
            font-family: 'Caveat', cursive;
            font-size: 0.72rem;
            color: var(--warm-grey);
            margin-left: 6px;
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 2.5rem;
            list-style: none;
        }
        .nav-links a {
            font-family: 'Lora', serif;
            font-size: 0.88rem;
            color: var(--charcoal);
            text-decoration: none;
            position: relative;
            padding-bottom: 3px;
            transition: color 0.2s;
        }
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0; left: 0;
            width: 0; height: 2px;
            background: var(--brass);
            transition: width 0.3s;
        }
        .nav-links a:hover { color: var(--teal); }
        .nav-links a:hover::after { width: 100%; }
        .nav-cta {
            background: var(--teal) !important;
            color: var(--offwhite) !important;
            padding: 0.45rem 1.1rem !important;
            border-radius: 3px 9px 3px 9px;
        }
        .nav-cta:hover { background: var(--brass-dark) !important; }
        .nav-cta::after { display:none !important; }

        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
        }
        .hamburger span {
            display: block;
            width: 24px; height: 2px;
            background: var(--teal);
            border-radius: 50%;
        }

        /* ===========================
           HERO
        =========================== */
        #hero {
            min-height: 50vh;
            display: flex;
            align-items: center;
            padding-top: 80px;
            padding-bottom: 40px;
            position: relative;
            overflow: hidden;
        }
        .hero-wash {
            position: absolute;
            top: 0; right: 0;
            width: 55%; height: 100%;
            background: linear-gradient(140deg, var(--teal-light) 0%, transparent 65%);
            opacity: 0.45;
            z-index: 0;
            pointer-events: none;
        }
        .hero-ring-1 {
            position: absolute;
            top: calc(80px + 20px); right: 7%;
            width: 320px; height: 320px;
            border: 2.5px solid var(--brass-light);
            border-radius: 50%;
            opacity: 0.55;
            pointer-events: none;
            z-index: 2;
        }
        .hero-ring-2 {
            position: absolute;
            bottom: 18%; right: 20%;
            width: 140px; height: 140px;
            border: 2px solid var(--teal);
            border-radius: 50%;
            opacity: 0.18;
            pointer-events: none;
        }
        .hero-content {
            position: relative;
            z-index: 1;
            max-width: 860px;
        }
        .hero-eyebrow {
            font-family: 'Caveat', cursive;
            font-size: 1.2rem;
            color: var(--brass);
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 1rem;
        }
        .hero-h1 {
            font-size: clamp(1.8rem, 2.8vw, 2.6rem);
            font-weight: 700;
            color: var(--teal);
            line-height: 1.15;
            margin-bottom: 1.4rem;
        }
        .hero-h1 em {
            font-style: italic;
            color: var(--brass-dark);
        }
        .hero-sub {
            font-size: 1.05rem;
            max-width: 500px;
            opacity: 0.82;
            margin-bottom: 2.4rem;
        }
        .hero-btns {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            align-items: center;
        }
        /* Sketch ornament — right side of hero */
        .hero-ornament {
            position: absolute;
            right: 5%;
            top: 50%;
            transform: translateY(-50%);
            z-index: 1;
            opacity: 0.32;
            pointer-events: none;
        }

        /* ===========================
           BUTTONS
        =========================== */
        .btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 0.82rem 1.7rem;
            font-family: 'Lora', serif;
            font-size: 0.95rem;
            font-weight: 500;
            text-decoration: none;
            border: none;
            cursor: pointer;
            transition: all 0.25s ease;
        }
        .btn-teal {
            background: var(--teal);
            color: var(--offwhite);
            border-radius: 4px 12px 4px 12px;
        }
        .btn-teal:hover {
            background: #163838;
            transform: translateY(-2px);
            box-shadow: 3px 4px 0 var(--brass);
        }
        .btn-outline {
            background: transparent;
            color: var(--teal);
            border: 2.5px solid var(--teal);
            border-radius: 12px 4px 12px 4px;
        }
        .btn-outline:hover {
            background: var(--teal-light);
            transform: translateY(-2px);
        }
        .btn-brass {
            background: var(--brass);
            color: white;
            border-radius: 4px 10px 4px 10px;
            font-weight: 600;
        }
        .btn-brass:hover {
            background: var(--brass-dark);
            transform: translateY(-2px);
            box-shadow: 3px 4px 0 var(--teal);
        }
        .btn-ghost {
            background: transparent;
            color: var(--charcoal);
            font-family: 'Caveat', cursive;
            font-size: 1.1rem;
            padding: 0.4rem 0;
            border: none;
            border-bottom: 2px solid var(--brass);
        }
        .btn-ghost:hover { color: var(--brass-dark); }

        /* Small vault buy button */
        .buy-sm {
            font-family: 'Caveat', cursive;
            font-size: 0.92rem;
            color: white;
            background: var(--teal);
            padding: 4px 14px;
            border-radius: 3px 8px 3px 8px;
            text-decoration: none;
            transition: background 0.2s;
        }
        .buy-sm:hover { background: var(--brass-dark); }
        .buy-sm.brass-bg { background: var(--brass); }
        .buy-sm.brass-bg:hover { background: var(--brass-dark); }

        /* ===========================
           SECTION SHARED STYLES
        =========================== */
        .sec-title { margin-bottom: 1rem; }
        .sec-intro {
            font-size: 1.05rem;
            opacity: 0.78;
            max-width: 560px;
            line-height: 1.8;
        }
        .thin-rule {
            width: 72px; height: 3px;
            background: var(--brass);
            margin: 1.4rem 0;
            border-radius: 50%;
        }

        /* ===========================
           ENGAGEMENT MODELS (TABS)
        =========================== */
        #engagement-models { background: white; }
        .tabs-nav {
            display: flex;
            border-bottom: 2.5px solid var(--line);
            margin-bottom: 3.5rem;
            gap: 0;
            flex-wrap: wrap;
        }
        .tab-btn {
            font-family: 'Lora', serif;
            font-size: 0.95rem;
            color: var(--warm-grey);
            background: none;
            border: none;
            padding: 1rem 2.2rem;
            cursor: pointer;
            position: relative;
            transition: color 0.25s;
            letter-spacing: 0.01em;
        }
        .tab-btn::after {
            content: '';
            position: absolute;
            bottom: -3px; left: 0; right: 0;
            height: 3px;
            background: var(--brass);
            transform: scaleX(0);
            transition: transform 0.3s ease;
            border-radius: 50%;
        }
        .tab-btn:hover { color: var(--teal); }
        .tab-btn.active { color: var(--teal); font-weight: 500; }
        .tab-btn.active::after { transform: scaleX(1); }

        .tab-panels { min-height: 300px; }
        .tab-panel { display: none; }
        .tab-panel.active {
            display: grid;
            grid-template-columns: 100px 1fr;
            gap: 3rem;
            align-items: start;
            animation: fadeIn 0.35s ease;
        }
        @keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
        .tab-number {
            font-family: 'Playfair Display', serif;
            font-size: 5.5rem;
            font-weight: 700;
            color: var(--brass-light);
            line-height: 1;
            padding-top: 0.2rem;
        }
        .tab-content { flex: 1; }
        .tab-headline {
            font-family: 'Playfair Display', serif;
            font-size: clamp(1.2rem, 2vw, 1.55rem);
            color: var(--teal);
            line-height: 1.4;
            margin-bottom: 1.2rem;
            font-style: italic;
        }
        .tab-bullets {
            list-style: none;
            margin: 1.4rem 0 2rem;
        }
        .tab-bullets li {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            margin-bottom: 0.9rem;
            font-family: 'Lora', serif;
            font-size: 0.97rem;
            color: var(--charcoal);
            line-height: 1.6;
        }
        .tab-bullets li .dot { margin-top: 7px; flex-shrink: 0; }
        @media (max-width: 780px) {
            .tab-panel.active { grid-template-columns: 1fr; gap: 0; }
            .tab-number { font-size: 3rem; margin-bottom: 0.5rem; }
            .tabs-nav { gap: 0; }
            .tab-btn { padding: 0.8rem 1.2rem; font-size: 0.85rem; }
        }

        /* ===========================
           SELECTED IMPACTS (LIST)
        =========================== */
        #selected-impacts { background: var(--offwhite); }
        .impacts-list { margin-top: 1rem; max-width: 820px; }

        /* Each accordion item */
        .impact-row {
            border-top: 1px solid var(--line);
        }
        .impact-row:last-child { border-bottom: 1px solid var(--line); }

        /* Clickable header row */
        .impact-row-trigger {
            display: flex;
            align-items: center;
            gap: 1.2rem;
            padding: 1.5rem 0;
            cursor: pointer;
            background: none;
            border: none;
            width: 100%;
            text-align: left;
            transition: opacity 0.2s;
        }
        .impact-row-trigger:hover { opacity: 0.7; }

        .impact-row-num {
            font-family: 'Lora', serif;
            font-size: 0.82rem;
            font-style: italic;
            color: var(--brass);
            opacity: 0.8;
            flex-shrink: 0;
        }
        .impact-row-header {
            flex: 1;
            display: flex;
            align-items: center;
            gap: 1rem;
            flex-wrap: wrap;
        }
        .impact-row-title {
            font-family: 'Playfair Display', serif;
            font-size: 1.05rem;
            font-weight: 600;
            color: var(--teal);
            line-height: 1.4;
        }
        .impact-badge {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            background: var(--brass-light);
            color: var(--brass-dark);
            font-family: 'Lora', serif;
            font-size: 0.78rem;
            font-style: italic;
            padding: 2px 10px;
            border-radius: 50px;
            flex-shrink: 0;
        }

        /* +/− icon */
        .impact-row-icon {
            flex-shrink: 0;
            width: 20px; height: 20px;
            position: relative;
            margin-left: auto;
        }
        .impact-row-icon::before,
        .impact-row-icon::after {
            content: '';
            position: absolute;
            background: var(--brass);
            border-radius: 2px;
            transition: transform 0.3s ease, opacity 0.3s ease;
        }
        .impact-row-icon::before {
            width: 14px; height: 1.5px;
            top: 50%; left: 50%;
            transform: translate(-50%, -50%);
        }
        .impact-row-icon::after {
            width: 1.5px; height: 14px;
            top: 50%; left: 50%;
            transform: translate(-50%, -50%);
        }
        .impact-row.open .impact-row-icon::after {
            transform: translate(-50%, -50%) rotate(90deg);
            opacity: 0;
        }

        /* Drawer */
        .impact-row-drawer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.42s ease;
        }
        .impact-row-drawer-inner {
            padding: 0 0 1.8rem 0;
        }
        .impact-row-intro {
            font-family: 'Lora', serif;
            font-size: 0.97rem;
            font-style: italic;
            color: var(--teal);
            opacity: 0.85;
            line-height: 1.75;
            margin-bottom: 0.8rem;
        }
        .impact-row-desc {
            font-family: 'Lora', serif;
            font-size: 0.91rem;
            color: var(--charcoal);
            opacity: 0.72;
            line-height: 1.8;
        }

        .impacts-cta {
            text-align: left;
            margin-top: 3rem;
        }
        @media (max-width: 600px) {
            .impact-row-title { font-size: 0.95rem; }
            .impact-row-drawer-inner { padding-left: 2.4rem; }
        }

        /* ===========================
           WHO THIS IS FOR
        =========================== */
        #who-this-is-for { background: var(--offwhite); }
        .who-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            align-items: stretch;
        }
        .who-card {
            display: flex;
            flex-direction: column;
        }
        .who-card .prog-tag {
            font-family: 'Playfair Display', serif;
            font-size: 1.08rem;
            font-weight: 600;
            padding: 6px 16px;
            letter-spacing: 0;
            border-radius: 4px;
            line-height: 1.3;
            margin-bottom: 1.2rem;
        }
        .who-card .card-body {
            flex: 1;
        }
        .who-card .prog-desc {
            margin-bottom: 0.85rem;
        }
        .who-card .prog-desc:last-child {
            margin-bottom: 0;
        }
        .who-cta {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            margin-top: 1.6rem;
            font-family: 'Caveat', cursive;
            font-size: 1.1rem;
            color: var(--teal);
            text-decoration: none;
            border-bottom: 2px solid var(--brass);
            padding-bottom: 2px;
            transition: color 0.2s, border-color 0.2s;
        }
        .who-cta:hover { color: var(--brass-dark); border-color: var(--brass-dark); }
        @media (max-width: 900px) {
            .who-grid { grid-template-columns: 1fr; }
        }

        /* ===========================
           ABOUT
        =========================== */
        #about { background: white; position: relative; }
        #about::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0; height: 3px;
            background: linear-gradient(90deg, transparent, var(--brass), transparent);
            opacity: 0.35;
        }
        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1.15fr;
            gap: 5rem;
            align-items: center;
        }
        .photo-placeholder {
            width: 100%;
            max-height: 520px;
            aspect-ratio: 4/5;
            position: relative;
        }
        .photo-placeholder img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center top;
            border-radius: 58% 42% 52% 48% / 48% 44% 56% 52%;
            display: block;
        }
        .photo-placeholder video {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center 30%;
            border-radius: 58% 42% 52% 48% / 48% 44% 56% 52%;
            display: block;
        }
        .photo-placeholder::after {
            content: '';
            position: absolute;
            bottom: -18px; right: -18px;
            width: 100px; height: 100px;
            border: 2px solid var(--brass);
            border-radius: 50%;
            opacity: 0.35;
        }
        .blockquote {
            font-family: 'Playfair Display', serif;
            font-size: 1.25rem;
            font-style: italic;
            color: var(--teal);
            border-left: 3px solid var(--brass);
            padding-left: 1.4rem;
            margin: 2rem 0;
            line-height: 1.6;
        }

        /* ===========================
           PROGRAMS
        =========================== */
        #programs { background: var(--offwhite); }
        .programs-hd { text-align: center; margin-bottom: 4rem; }
        .programs-hd .sec-intro { margin: 0 auto; }
        .programs-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }
        .prog-tag {
            font-family: 'Caveat', cursive;
            font-size: 0.82rem;
            padding: 3px 11px;
            border-radius: 50px;
            display: inline-block;
            margin-bottom: 1rem;
        }
        .prog-tag.warm  { background: var(--brass-light); color: var(--brass-dark); }
        .prog-tag.dark  { background: var(--teal);        color: white; }
        .prog-name {
            font-family: 'Playfair Display', serif;
            font-size: 1.4rem;
            color: var(--teal);
            margin-bottom: 0.75rem;
        }
        .prog-desc {
            font-size: 0.93rem;
            opacity: 0.78;
            margin-bottom: 1.5rem;
            line-height: 1.7;
        }
        .prog-includes {
            list-style: none;
            margin-bottom: 2rem;
        }
        .prog-includes li {
            font-size: 0.88rem;
            display: flex;
            align-items: flex-start;
            gap: 8px;
            margin-bottom: 7px;
        }
        .prog-includes li::before {
            content: '·';
            color: var(--brass);
            font-size: 1.5rem;
            line-height: 0.9;
            flex-shrink: 0;
        }
        .prog-price {
            font-family: 'Playfair Display', serif;
            font-size: 1.9rem;
            font-weight: 700;
            color: var(--teal);
            margin-bottom: 1.4rem;
        }
        .prog-price sub {
            font-size: 0.9rem;
            font-weight: 400;
            color: var(--warm-grey);
            font-family: 'Lora', serif;
        }
        .stripe-note {
            font-family: 'Caveat', cursive;
            font-size: 0.78rem;
            color: var(--warm-grey);
            margin-top: 0.5rem;
        }

        /* ===========================
           VAULT
        =========================== */
        #vault { background: white; }
        .vault-intro {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            margin-bottom: 4rem;
        }
        .vault-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(248px, 1fr));
            gap: 1.4rem;
        }
        .vault-item {
            background: var(--offwhite);
            border: 2px solid var(--line);
            padding: 1.4rem;
            cursor: pointer;
            transition: all 0.25s ease;
        }
        .vault-item:hover {
            transform: rotate(0deg) translateY(-4px) !important;
            border-color: var(--brass);
            box-shadow: 3px 5px 0 var(--brass-light);
        }
        .vault-thumb {
            width: 100%;
            aspect-ratio: 16/9;
            background: var(--teal-light);
            border-radius: 3px;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .vault-thumb span {
            font-family: 'Caveat', cursive;
            font-size: 0.85rem;
            color: var(--teal);
            opacity: 0.5;
        }
        .vault-type {
            font-family: 'Caveat', cursive;
            font-size: 0.78rem;
            color: var(--warm-grey);
            text-transform: uppercase;
            letter-spacing: 0.08em;
            margin-bottom: 3px;
        }
        .vault-name {
            font-family: 'Playfair Display', serif;
            font-size: 1rem;
            color: var(--teal);
            margin-bottom: 0.4rem;
            line-height: 1.4;
        }
        .vault-desc {
            font-size: 0.83rem;
            opacity: 0.65;
            margin-bottom: 0;
            line-height: 1.6;
        }
        .vault-footer {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-top: 1rem;
        }
        .vault-price {
            font-family: 'Playfair Display', serif;
            font-size: 1.15rem;
            font-weight: 600;
            color: var(--teal);
        }
        /* Vault pass banner */
        .vault-pass {
            background: var(--teal);
            color: white;
            padding: 2.5rem;
            border-radius: 4px 18px 4px 18px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 2rem;
            flex-wrap: wrap;
            margin-top: 3rem;
        }
        .vault-pass h3 { color: white; font-size: 1.5rem; margin-bottom: 0.4rem; }
        .vault-pass p { color: rgba(255,255,255,0.75); font-size: 0.93rem; }
        .vault-pass-price {
            font-family: 'Playfair Display', serif;
            font-size: 2rem;
            font-weight: 700;
            color: var(--brass);
            white-space: nowrap;
        }
        .vault-pass-price sub {
            font-family: 'Lora', serif;
            font-size: 0.9rem;
            font-weight: 400;
            color: rgba(255,255,255,0.55);
        }

        /* ===========================
           COMMUNITY / TESTIMONIALS
        =========================== */
        #community {
            background: var(--offwhite);
            position: relative;
            overflow: hidden;
        }
        .dots-bg {
            position: absolute;
            inset: 0;
            background-image: radial-gradient(var(--brass) 1.2px, transparent 1.2px);
            background-size: 32px 32px;
            opacity: 0.07;
            pointer-events: none;
        }
        .community-inner { position: relative; z-index: 1; }
        .testi-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }
        .testi-card {
            background: white;
            padding: 2rem;
            border: 2px solid var(--line);
        }
        .testi-card:nth-child(2) { border-color: var(--brass-light); }
        .testi-big-q {
            font-family: 'Playfair Display', serif;
            font-size: 2.4rem;
            color: var(--brass);
            line-height: 1;
            margin-bottom: 0.3rem;
        }
        .testi-text {
            font-style: italic;
            font-size: 0.93rem;
            opacity: 0.82;
            line-height: 1.8;
            margin-bottom: 1.2rem;
        }
        .testi-author {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .testi-avatar {
            width: 38px; height: 38px;
            background: var(--teal-light);
            border-radius: 50%;
            flex-shrink: 0;
        }
        .testi-name {
            font-family: 'Caveat', cursive;
            font-size: 1rem;
            font-weight: 600;
            color: var(--teal);
        }
        .testi-role { font-size: 0.78rem; color: var(--warm-grey); }

        /* IAL teaser */
        .ial-box {
            text-align: center;
            margin-top: 5rem;
        }
        .ial-inner {
            background: white;
            border: 2.5px solid var(--teal);
            border-radius: 8px 24px 8px 24px;
            padding: 3rem;
            max-width: 640px;
            margin: 0 auto;
        }
        .ial-inner h3 { font-size: 1.8rem; margin-bottom: 0.7rem; }
        .ial-inner p { opacity: 0.72; max-width: 480px; margin: 0 auto 1.4rem; }
        .ial-dots-row {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            margin-bottom: 1.5rem;
        }
        .ial-dots-row span {
            font-family: 'Caveat', cursive;
            font-size: 1.05rem;
            color: var(--brass);
        }

        /* Newsletter */
        .newsletter {
            background: white;
            border: 2.5px solid var(--teal);
            border-radius: 8px 24px 8px 24px;
            padding: 3rem;
            max-width: 580px;
            margin: 5rem auto 0;
            text-align: center;
        }
        .newsletter h3 { font-size: 1.7rem; margin-bottom: 0.6rem; }
        .newsletter p { opacity: 0.68; font-size: 0.93rem; margin-bottom: 1.4rem; }
        .nl-form {
            display: flex;
            gap: 0.8rem;
            flex-wrap: wrap;
            justify-content: center;
        }
        .nl-form input {
            flex: 1;
            min-width: 210px;
            padding: 0.75rem 1.1rem;
            font-family: 'Lora', serif;
            font-size: 0.9rem;
            background: var(--offwhite);
            border: 2px solid var(--line);
            border-radius: 4px 10px 4px 10px;
            color: var(--charcoal);
            outline: none;
            transition: border-color 0.2s;
        }
        .nl-form input:focus { border-color: var(--teal); }
        .nl-form input::placeholder { color: var(--warm-grey); }

        /* ===========================
           CONTACT
        =========================== */
        #contact {
            background: var(--teal);
            position: relative;
            overflow: hidden;
        }
        #contact::before {
            content: '';
            position: absolute;
            top: -60px; right: -60px;
            width: 380px; height: 380px;
            border: 2px solid rgba(198,165,106,0.2);
            border-radius: 50%;
            pointer-events: none;
        }
        #contact::after {
            content: '';
            position: absolute;
            bottom: -80px; left: -80px;
            width: 280px; height: 280px;
            border: 2px solid rgba(198,165,106,0.13);
            border-radius: 50%;
            pointer-events: none;
        }
        .contact-grid {
            position: relative;
            z-index: 1;
            display: grid;
            grid-template-columns: 1fr 1.4fr;
            gap: 5rem;
            align-items: start;
        }
        .contact-left h2 { color: white; margin-bottom: 0.9rem; }
        .contact-left > p { color: rgba(255,255,255,0.7); margin-bottom: 2rem; }
        .c-info {
            display: flex;
            align-items: center;
            gap: 11px;
            margin-bottom: 0.9rem;
            font-family: 'Lora', serif;
            font-size: 0.88rem;
            color: rgba(255,255,255,0.7);
        }
        .c-dot {
            width: 8px; height: 8px;
            background: var(--brass);
            border-radius: 50%;
            flex-shrink: 0;
        }
        .reply-note {
            font-family: 'Caveat', cursive;
            font-size: 1.05rem;
            color: rgba(255,255,255,0.42);
            margin-top: 2rem;
        }
        .contact-form {
            background: var(--offwhite);
            padding: 2.5rem;
            border-radius: 4px 16px 4px 16px;
        }
        .fg { margin-bottom: 1.1rem; }
        .fg label {
            display: block;
            font-family: 'Caveat', cursive;
            font-size: 1rem;
            color: var(--teal);
            margin-bottom: 4px;
        }
        .fg input, .fg textarea, .fg select {
            width: 100%;
            padding: 0.7rem 1rem;
            font-family: 'Lora', serif;
            font-size: 0.88rem;
            background: white;
            border: 2px solid var(--line);
            border-radius: 4px 8px 4px 8px;
            color: var(--charcoal);
            outline: none;
            transition: border-color 0.2s;
            resize: vertical;
        }
        .fg input:focus, .fg textarea:focus, .fg select:focus { border-color: var(--teal); }
        .fg textarea { min-height: 110px; }
        .fg input::placeholder, .fg textarea::placeholder { color: var(--warm-grey); }
        .btn-full { width: 100%; justify-content: center; }

        /* ===========================
           FOOTER
        =========================== */
        footer {
            background: #131c1c;
            color: rgba(255,255,255,0.5);
            padding: 2.8rem 2rem;
        }
        .footer-inner {
            max-width: 1100px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 1.5rem;
        }
        .footer-logo {
            display: flex;
            align-items: center;
        }
        .footer-logo-text {
            font-family: 'Playfair Display', serif;
            font-size: 1.15rem;
            font-weight: 400;
            color: white;
            letter-spacing: 0.02em;
            white-space: nowrap;
        }
        .footer-logo-dot {
            color: var(--brass);
            margin: 0 0.2em;
        }
        .footer-links { display:flex; gap:2rem; list-style:none; flex-wrap:wrap; }
        .footer-links a {
            color: rgba(255,255,255,0.44);
            text-decoration: none;
            font-family: 'Lora', serif;
            font-size: 0.82rem;
            transition: color 0.2s;
        }
        .footer-links a:hover { color: var(--brass); }
        .footer-copy { font-family:'Lora',serif; font-size:0.78rem; }
        .footer-social { font-family:'Lora',serif; font-size:0.82rem; margin-bottom:0.5rem; }
        .footer-social a { color: rgba(255,255,255,0.6); text-decoration:none; transition:color 0.2s; }
        .footer-social a:hover { color: var(--brass); }
        .footer-social .fd { margin: 0 0.4rem; color: rgba(255,255,255,0.3); }

        /* ===========================
           FOOTER — Inner Pulse Strip
        =========================== */
        .footer-pulse {
            max-width: 1100px;
            margin: 0 auto 2.8rem;
            padding-bottom: 2.4rem;
            border-bottom: 1px solid rgba(255,255,255,0.08);
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }
        .footer-pulse-label {
            font-family: 'Lora', serif;
            font-size: 0.72rem;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: var(--brass);
        }
        .footer-pulse-title {
            font-family: 'Playfair Display', serif;
            font-size: 1.05rem;
            color: white;
            margin: 0;
        }
        .footer-pulse-quote {
            font-family: 'Lora', serif;
            font-style: italic;
            font-size: 0.97rem;
            line-height: 1.75;
            color: rgba(255,255,255,0.82);
            margin: 0.2rem 0 0;
            padding-left: 1rem;
            border-left: 2px solid var(--brass);
        }
        .footer-pulse-link {
            font-family: 'Lora', serif;
            font-size: 0.8rem;
            color: var(--teal-light);
            text-decoration: none;
            transition: color 0.2s;
            align-self: flex-start;
        }
        .footer-pulse-link:hover { color: var(--brass); }

        /* ===========================
           SCROLL ANIMATIONS
        =========================== */
        .fade-up {
            opacity: 0;
            transform: translateY(28px);
            transition: opacity 0.7s ease, transform 0.7s ease;
        }
        .fade-up.in { opacity: 1; transform: translateY(0); }
        .fade-up.delay-1 { transition-delay: 0.12s; }
        .fade-up.delay-2 { transition-delay: 0.24s; }
        .fade-up.delay-3 { transition-delay: 0.36s; }

        /* ===========================
           RESPONSIVE
        =========================== */
        @media (max-width: 780px) {
            /* ── General ── */
            section { padding: 60px 0; }
            .wrap { padding: 0 1.4rem; }

            /* ── Nav ── */
            nav { padding: 1rem 1.4rem; }
            .nav-links {
                display: none;
                flex-direction: column;
                position: fixed;
                top: 58px; left: 0; right: 0;
                background: var(--offwhite);
                padding: 2rem 1.5rem;
                border-bottom: 2px solid var(--line);
                gap: 1.4rem;
                z-index: 199;
                box-shadow: 0 8px 24px rgba(0,0,0,0.08);
            }
            .nav-links.open { display: flex; }
            .nav-links li a { font-size: 1rem; }
            .nav-cta { width: fit-content; }
            .hamburger { display: flex; }

            /* ── Hero ── */
            #hero { min-height: auto; padding-top: 90px; padding-bottom: 50px; }
            .hero-h1 { font-size: clamp(2rem, 8vw, 3rem); }
            .hero-h1 span { white-space: normal !important; }
            .hero-eyebrow { white-space: normal; font-size: 1rem; }
            .hero-sub { font-size: 0.95rem; }
            .hero-btns { flex-direction: column; gap: 0.9rem; }
            .hero-btns .btn { width: 100%; justify-content: center; }
            .hero-ring-1, .hero-ring-2 { display: none; }

            /* ── About (homepage) ── */
            .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
            .photo-placeholder { max-height: 340px; }
            .photo-placeholder::after { display: none; }

            /* ── Who This Is For ── */
            .who-grid { grid-template-columns: 1fr; }
            .who-card { margin-bottom: 0; }

            /* ── Engagement Tabs ── */
            .tabs-nav {
                flex-direction: column;
                border-bottom: none;
                gap: 0.5rem;
                margin-bottom: 2rem;
            }
            .tab-btn {
                width: 100%;
                text-align: left;
                border: 1.5px solid var(--line);
                border-radius: 4px;
                padding: 0.85rem 1.2rem;
                font-size: 0.9rem;
            }
            .tab-btn.active { background: var(--teal-light); color: var(--teal); border-color: var(--teal); }
            .tab-btn::after { display: none; }
            .tab-panel.active { grid-template-columns: 1fr; gap: 0; }
            .tab-number { font-size: 3rem; margin-bottom: 0.5rem; }

            /* ── Selected Impacts ── */
            .impacts-list { max-width: 100%; }
            .impact-row-title { font-size: 0.95rem; }

            /* ── Contact ── */
            .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
            .contact-form { padding: 1.8rem 1.4rem; }

            /* ── Vault ── */
            .vault-intro { grid-template-columns: 1fr; gap: 2rem; }
            .vault-pass { flex-direction: column; text-align: center; }

            /* ── Footer ── */
            .footer-inner {
                flex-direction: column;
                text-align: center;
                gap: 1.2rem;
            }
            .footer-links { justify-content: center; gap: 1.2rem; }

            /* ── Typography ── */
            h2 { font-size: clamp(1.5rem, 6vw, 2rem); }
            .sec-intro { font-size: 0.95rem; }
            .blockquote { font-size: 1.05rem; }

            /* ── Misc ── */
            .hero-ornament { display: none; }
            .btn { font-size: 0.9rem; padding: 0.75rem 1.4rem; }
        }

        @media (max-width: 480px) {
            .wrap { padding: 0 1rem; }
            section { padding: 48px 0; }
            .hero-h1 { font-size: 2rem; }
            .label { font-size: 1.4rem; }
            .tab-btn { font-size: 0.85rem; padding: 0.75rem 1rem; }
            .contact-form { border-radius: 4px; }
            .footer-links { gap: 0.8rem; font-size: 0.78rem; }
        }