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

        :root {
            --forest:       #1A3D2B;
            --forest-deep:  #122A1E;
            --forest-mid:   #2A5740;
            --forest-light: #3B6E52;
            --navy:         #1B2838;
            --navy-deep:    #111D2A;
            --navy-mid:     #243648;
            --burgundy:     #6B2D3E;
            --gold:         #C4973A;
            --gold-rich:    #B8860B;
            --gold-light:   #D9AE68;
            --gold-pale:    #F0DDB8;
            --cream:        #F8F4EE;
            --cream-warm:   #F3EDE3;
            --cream-dark:   #EDE5D8;
            --linen:        #EAE2D6;
            --charcoal:     #1C1714;
            --taupe:        #7A6A58;
            --taupe-light:  #A8998A;
            --white-warm:   #FDFAF6;

            --font-display: 'Italiana', serif;
            --font-heading: 'Cormorant Garamond', serif;
            --font-body:    'Jost', sans-serif;

            --nav-h: 80px;
            --max-w: 1280px;
        }

        html { scroll-behavior: smooth; }

        body {
            font-family: var(--font-body);
            font-weight: 300;
            background: var(--cream);
            color: var(--charcoal);
            line-height: 1.65;
            -webkit-font-smoothing: antialiased;
            overflow-x: hidden;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.02'/%3E%3C/svg%3E");
        }

        a { color: inherit; text-decoration: none; }

        img { display: block; max-width: 100%; }

        /* ── NAV ── */
        nav {
            position: fixed;
            top: 0; left: 0; right: 0;
            z-index: 200;
            height: var(--nav-h);
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 48px;
            background: rgba(248, 244, 238, 0.95);
            backdrop-filter: blur(24px);
            -webkit-backdrop-filter: blur(24px);
            border-bottom: 1px solid rgba(26, 61, 43, 0.1);
            transition: background 0.4s;
        }

        .nav-logo {
            display: flex;
            align-items: center;
            line-height: 1;
        }

        .nav-logo img {
            height: 56px;
            width: auto;
            display: block;
        }

        .nav-links {
            display: flex;
            gap: 40px;
            list-style: none;
            align-items: center;
        }

        .nav-links a {
            font-family: var(--font-body);
            font-size: 12px;
            font-weight: 400;
            letter-spacing: 0.16em;
            text-transform: uppercase;
            color: var(--taupe);
            transition: color 0.25s;
            position: relative;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -3px; left: 0; right: 0;
            height: 1px;
            background: var(--forest);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.3s ease;
        }

        .nav-links a:hover { color: var(--forest); }
        .nav-links a:hover::after { transform: scaleX(1); }

        .nav-cta {
            font-family: var(--font-body) !important;
            font-size: 12px !important;
            font-weight: 400 !important;
            letter-spacing: 0.14em !important;
            text-transform: uppercase !important;
            color: var(--white-warm) !important;
            background: var(--forest);
            padding: 10px 24px;
            border-radius: 0;
            transition: background 0.25s !important;
        }

        .nav-cta:hover { background: var(--forest-deep) !important; }
        .nav-cta::after { display: none !important; }

        .nav-mobile-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            padding: 4px;
        }

        .nav-mobile-toggle span {
            display: block;
            width: 24px;
            height: 1.5px;
            background: var(--forest);
            transition: all 0.3s;
        }

        /* ── HERO ── */
        .hero {
            min-height: 100vh;
            display: grid;
            grid-template-columns: 1fr 1fr;
            padding-top: var(--nav-h);
            overflow: hidden;
        }

        .hero-left {
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 80px 60px 80px 48px;
            position: relative;
        }

        .hero-left::before {
            content: '';
            position: absolute;
            top: 0; bottom: 0; right: 0;
            width: 1px;
            background: linear-gradient(to bottom, transparent, rgba(26,61,43,0.12) 30%, rgba(26,61,43,0.12) 70%, transparent);
        }

        .hero-eyebrow {
            font-size: 11px;
            font-weight: 400;
            letter-spacing: 0.22em;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 28px;
        }

        .hero-title {
            font-family: var(--font-heading);
            font-size: clamp(48px, 5.5vw, 82px);
            font-weight: 300;
            line-height: 1.04;
            letter-spacing: -0.02em;
            color: var(--forest);
            margin-bottom: 32px;
        }

        .hero-title em {
            font-style: italic;
            font-weight: 300;
            color: var(--charcoal);
        }

        .hero-desc {
            font-size: 16px;
            font-weight: 300;
            color: var(--taupe);
            max-width: 440px;
            line-height: 1.75;
            margin-bottom: 48px;
        }

        .hero-actions {
            display: flex;
            gap: 20px;
            align-items: center;
        }

        .btn-forest {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 16px 40px;
            background: var(--forest);
            color: var(--white-warm);
            font-family: var(--font-body);
            font-size: 12px;
            font-weight: 400;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            transition: background 0.25s, box-shadow 0.25s;
        }

        .btn-forest:hover {
            background: var(--forest-deep);
            box-shadow: 0 8px 32px rgba(26, 61, 43, 0.25);
        }

        .btn-outline {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 15px 32px;
            background: transparent;
            color: var(--forest);
            font-family: var(--font-body);
            font-size: 12px;
            font-weight: 400;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            border: 1px solid rgba(26,61,43,0.3);
            transition: border-color 0.25s, background 0.25s;
        }

        .btn-outline:hover {
            border-color: var(--forest);
            background: rgba(26,61,43,0.04);
        }

        .hero-credential {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-top: 56px;
            padding-top: 40px;
            border-top: 1px solid rgba(26,61,43,0.1);
        }

        .hero-credential-icon {
            width: 48px;
            height: 48px;
            background: var(--gold-pale);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            font-size: 20px;
        }

        .hero-credential-text {
            font-size: 13px;
            color: var(--taupe);
            line-height: 1.5;
        }

        .hero-credential-text strong {
            display: block;
            font-size: 14px;
            font-weight: 500;
            color: var(--charcoal);
        }

        .hero-right {
            position: relative;
            background: var(--navy);
            overflow: hidden;
            display: flex;
            align-items: flex-end;
        }

        .hero-right-bg {
            position: absolute;
            inset: 0;
            background:
                radial-gradient(ellipse at 30% 20%, rgba(196, 151, 58, 0.1) 0%, transparent 50%),
                radial-gradient(ellipse at 80% 70%, rgba(107, 45, 62, 0.08) 0%, transparent 50%),
                linear-gradient(160deg, var(--navy-mid) 0%, var(--navy-deep) 100%);
        }

        .hero-pattern {
            position: absolute;
            inset: 0;
            opacity: 0.045;
            background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23ffffff' stroke-width='0.5'%3E%3Crect x='10' y='10' width='60' height='60'/%3E%3Crect x='20' y='20' width='40' height='40'/%3E%3Cline x1='0' y1='0' x2='10' y2='10'/%3E%3Cline x1='70' y1='10' x2='80' y2='0'/%3E%3Cline x1='0' y1='80' x2='10' y2='70'/%3E%3Cline x1='70' y1='70' x2='80' y2='80'/%3E%3Cline x1='40' y1='10' x2='40' y2='20'/%3E%3Cline x1='10' y1='40' x2='20' y2='40'/%3E%3Cline x1='60' y1='40' x2='70' y2='40'/%3E%3Cline x1='40' y1='60' x2='40' y2='70'/%3E%3C/g%3E%3C/svg%3E");
        }

        .hero-featured-wrap {
            position: relative;
            z-index: 2;
            width: 100%;
            padding: 40px;
        }

        .hero-featured-label {
            font-family: var(--font-body);
            font-size: 10px;
            font-weight: 400;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: rgba(255,255,255,0.4);
            margin-bottom: 20px;
        }

        .hero-featured-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
        }

        .hero-feat-card {
            position: relative;
            overflow: hidden;
            cursor: pointer;
            background: rgba(255,255,255,0.04);
        }

        .hero-feat-card:first-child {
            grid-column: span 2;
            height: 260px;
        }

        .hero-feat-card:not(:first-child) {
            height: 160px;
        }

        .hero-feat-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
            opacity: 0.85;
        }

        .hero-feat-card:hover img { transform: scale(1.04); opacity: 1; }

        .hero-feat-info {
            position: absolute;
            bottom: 0; left: 0; right: 0;
            padding: 16px 20px;
            background: linear-gradient(to top, rgba(17,29,42,0.88) 0%, transparent 100%);
        }

        .hero-feat-info .piece-name {
            font-family: var(--font-heading);
            font-size: 16px;
            font-weight: 400;
            font-style: italic;
            color: var(--white-warm);
            line-height: 1.3;
        }

        .hero-feat-info .piece-price {
            font-size: 12px;
            font-weight: 400;
            color: var(--gold-light);
            margin-top: 3px;
            letter-spacing: 0.05em;
        }

        .hero-placeholder {
            width: 100%;
            height: 100%;
            background: rgba(255,255,255,0.04);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            gap: 8px;
        }

        .hero-placeholder-icon { font-size: 36px; opacity: 0.2; }
        .hero-placeholder-text { font-size: 11px; color: rgba(255,255,255,0.25); letter-spacing: 0.1em; text-transform: uppercase; }

        /* ── MARQUEE ── */
        .marquee-strip {
            background: var(--navy);
            color: var(--white-warm);
            padding: 18px 0;
            overflow: hidden;
            border-top: 2px solid var(--gold-rich);
            border-bottom: 2px solid var(--gold-rich);
        }

        .marquee-track {
            display: flex;
            gap: 0;
            animation: marquee 30s linear infinite;
            white-space: nowrap;
        }

        .marquee-item {
            display: inline-flex;
            align-items: center;
            gap: 24px;
            padding: 0 40px;
            font-size: 11px;
            font-weight: 400;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            color: rgba(255,255,255,0.55);
        }

        .marquee-dot {
            width: 4px;
            height: 4px;
            background: var(--gold);
            border-radius: 50%;
            flex-shrink: 0;
        }

        @keyframes marquee {
            from { transform: translateX(0); }
            to { transform: translateX(-50%); }
        }

        /* ── SECTION DIVIDER ── */
        .section-divider {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 20px;
            padding: 48px 48px 0;
        }

        .section-divider::before,
        .section-divider::after {
            content: '';
            flex: 1;
            max-width: 200px;
            height: 1px;
            background: linear-gradient(to var(--dir, right), var(--gold-pale), transparent);
        }

        .section-divider::before { --dir: right; }
        .section-divider::after { --dir: left; }

        .section-divider-ornament {
            color: var(--gold);
            font-size: 18px;
            line-height: 1;
            opacity: 0.7;
        }

        /* ── SECTION BASE ── */
        section { padding: 100px 48px; }

        .section-eyebrow {
            font-size: 11px;
            font-weight: 400;
            letter-spacing: 0.22em;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 20px;
        }

        .section-title {
            font-family: var(--font-heading);
            font-size: clamp(36px, 4vw, 54px);
            font-weight: 300;
            line-height: 1.1;
            letter-spacing: -0.02em;
            color: var(--forest);
        }

        .section-title em {
            font-style: italic;
            color: var(--charcoal);
        }

        /* ── FEATURED PIECES ── */
        .featured {
            background: var(--white-warm);
            border-top: 1px solid var(--gold-pale);
        }

        .featured-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            margin-bottom: 56px;
        }

        .featured-header-left { max-width: 600px; }

        .featured-desc {
            margin-top: 16px;
            font-size: 15px;
            font-weight: 300;
            color: var(--taupe);
            line-height: 1.75;
        }

        .view-all-link {
            font-size: 12px;
            font-weight: 400;
            letter-spacing: 0.16em;
            text-transform: uppercase;
            color: var(--forest);
            border-bottom: 1px solid rgba(26,61,43,0.3);
            padding-bottom: 2px;
            transition: border-color 0.25s;
            white-space: nowrap;
            margin-bottom: 4px;
        }

        .view-all-link:hover { border-color: var(--forest); }

        .pieces-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 28px;
        }

        .piece-card {
            cursor: pointer;
            group: true;
        }

        .piece-card-image {
            position: relative;
            overflow: hidden;
            background: var(--linen);
            aspect-ratio: 4/5;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .piece-card-image img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            transition: transform 0.6s cubic-bezier(0.25, 0, 0, 1);
        }

        .piece-card:hover .piece-card-image img { transform: scale(1.04); }

        .piece-card-badge {
            position: absolute;
            top: 16px; left: 16px;
            background: var(--forest);
            color: var(--white-warm);
            font-size: 10px;
            font-weight: 400;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            padding: 5px 12px;
        }

        .sold-badge {
            background: rgba(28, 23, 20, 0.7) !important;
        }

        .piece-card-overlay {
            position: absolute;
            inset: 0;
            background: rgba(26, 61, 43, 0);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.4s;
        }

        .piece-card:hover .piece-card-overlay {
            background: rgba(26, 61, 43, 0.15);
        }

        .overlay-btn {
            background: var(--white-warm);
            color: var(--forest);
            font-size: 11px;
            font-weight: 400;
            letter-spacing: 0.16em;
            text-transform: uppercase;
            padding: 12px 28px;
            opacity: 0;
            transform: translateY(8px);
            transition: opacity 0.3s, transform 0.3s;
        }

        .piece-card:hover .overlay-btn {
            opacity: 1;
            transform: translateY(0);
        }

        .piece-card-info {
            padding: 20px 0 8px;
        }

        .piece-name {
            font-family: var(--font-heading);
            font-size: 19px;
            font-weight: 400;
            font-style: italic;
            color: var(--charcoal);
            line-height: 1.3;
            margin-bottom: 6px;
        }

        .piece-meta {
            font-size: 12px;
            font-weight: 300;
            color: var(--taupe-light);
            letter-spacing: 0.04em;
            margin-bottom: 8px;
        }

        .piece-price {
            font-size: 14px;
            font-weight: 400;
            color: var(--forest);
            letter-spacing: 0.04em;
        }

        .pieces-loading, .pieces-empty {
            grid-column: span 3;
            text-align: center;
            padding: 80px 0;
            color: var(--taupe);
            font-size: 15px;
        }

        .pieces-loading-dots {
            display: inline-flex;
            gap: 6px;
            margin-bottom: 16px;
        }

        .pieces-loading-dots span {
            width: 6px;
            height: 6px;
            background: var(--gold);
            border-radius: 50%;
            animation: pulse 1.4s ease-in-out infinite;
        }

        .pieces-loading-dots span:nth-child(2) { animation-delay: 0.2s; }
        .pieces-loading-dots span:nth-child(3) { animation-delay: 0.4s; }

        @keyframes pulse {
            0%, 80%, 100% { opacity: 0.3; transform: scale(0.8); }
            40% { opacity: 1; transform: scale(1); }
        }

        /* ── STORY SECTION ── */
        .story {
            background: var(--cream);
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0;
            padding: 0;
        }

        .story-visual {
            background: var(--forest);
            min-height: 600px;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .story-visual-bg {
            position: absolute;
            inset: 0;
            background: linear-gradient(160deg, var(--forest-mid) 0%, var(--forest-deep) 100%);
        }

        .story-visual-pattern {
            position: absolute;
            inset: 0;
            opacity: 0.05;
            background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23ffffff' stroke-width='0.5'%3E%3Crect x='10' y='10' width='60' height='60'/%3E%3Crect x='20' y='20' width='40' height='40'/%3E%3Cline x1='0' y1='0' x2='10' y2='10'/%3E%3Cline x1='70' y1='10' x2='80' y2='0'/%3E%3Cline x1='0' y1='80' x2='10' y2='70'/%3E%3Cline x1='70' y1='70' x2='80' y2='80'/%3E%3Cline x1='40' y1='10' x2='40' y2='20'/%3E%3Cline x1='10' y1='40' x2='20' y2='40'/%3E%3Cline x1='60' y1='40' x2='70' y2='40'/%3E%3Cline x1='40' y1='60' x2='40' y2='70'/%3E%3C/g%3E%3C/svg%3E");
        }

        .story-visual-content {
            position: relative;
            z-index: 2;
            text-align: center;
            padding: 60px 48px;
        }

        .story-stat-list {
            display: flex;
            flex-direction: column;
            gap: 40px;
        }

        .story-stat {
            text-align: left;
            border-left: 2px solid rgba(196, 151, 58, 0.4);
            padding-left: 28px;
        }

        .story-stat-num {
            font-family: var(--font-heading);
            font-size: 52px;
            font-weight: 300;
            color: var(--white-warm);
            line-height: 1;
            letter-spacing: -0.02em;
        }

        .story-stat-num span {
            font-size: 28px;
            color: var(--gold);
        }

        .story-stat-label {
            font-size: 12px;
            font-weight: 300;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: rgba(255,255,255,0.5);
            margin-top: 6px;
        }

        .story-text {
            padding: 80px 72px 80px 60px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .story-body {
            font-family: var(--font-heading);
            font-size: 22px;
            font-weight: 300;
            line-height: 1.65;
            color: var(--charcoal);
            margin-top: 28px;
        }

        .story-body em {
            font-style: italic;
            color: var(--forest);
        }

        .story-quote {
            margin-top: 40px;
            padding: 32px 36px;
            background: var(--cream-warm);
            border-left: 4px solid var(--gold-rich);
            border-top: 1px solid var(--gold-pale);
            border-bottom: 1px solid var(--gold-pale);
            position: relative;
        }

        .story-quote::before {
            content: '\201C';
            position: absolute;
            top: 8px;
            left: 12px;
            font-family: var(--font-heading);
            font-size: 48px;
            color: var(--gold-pale);
            line-height: 1;
        }

        .story-quote p {
            font-family: var(--font-heading);
            font-size: 18px;
            font-weight: 300;
            font-style: italic;
            color: var(--taupe);
            line-height: 1.7;
        }

        .story-cta {
            margin-top: 40px;
            display: inline-flex;
        }

        /* ── JOURNAL / INSPIRATION PREVIEW ── */
        .journal-preview {
            background: var(--cream-warm);
        }

        .journal-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            margin-bottom: 56px;
        }

        .journal-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: start;
        }

        .journal-feature {
            position: relative;
            overflow: hidden;
            cursor: pointer;
        }

        .journal-feature-img {
            width: 100%;
            aspect-ratio: 4/3;
            background: var(--linen);
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .journal-feature-img-placeholder {
            font-size: 64px;
            opacity: 0.12;
        }

        .journal-feature-body {
            padding: 28px 0 0;
        }

        .journal-tag {
            font-size: 10px;
            font-weight: 400;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 12px;
        }

        .journal-title {
            font-family: var(--font-heading);
            font-size: 26px;
            font-weight: 400;
            font-style: italic;
            color: var(--forest);
            line-height: 1.3;
            margin-bottom: 12px;
        }

        .journal-excerpt {
            font-size: 14px;
            font-weight: 300;
            color: var(--taupe);
            line-height: 1.75;
        }

        .journal-read-more {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            margin-top: 16px;
            font-size: 12px;
            font-weight: 400;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            color: var(--forest);
            border-bottom: 1px solid rgba(26,61,43,0.25);
            padding-bottom: 2px;
            transition: border-color 0.25s, gap 0.25s;
        }

        .journal-read-more:hover { border-color: var(--forest); gap: 14px; }

        .journal-sidebar {
            display: flex;
            flex-direction: column;
            gap: 0;
            border-left: 1px solid rgba(26,61,43,0.1);
            padding-left: 40px;
        }

        .journal-mini {
            padding: 24px 0;
            border-bottom: 1px solid rgba(26,61,43,0.08);
            cursor: pointer;
        }

        .journal-mini:first-child { padding-top: 0; }
        .journal-mini:last-child { border-bottom: none; padding-bottom: 0; }

        .journal-mini-title {
            font-family: var(--font-heading);
            font-size: 18px;
            font-weight: 400;
            font-style: italic;
            color: var(--charcoal);
            line-height: 1.35;
            margin-bottom: 8px;
            transition: color 0.25s;
        }

        .journal-mini:hover .journal-mini-title { color: var(--forest); }

        .journal-mini-excerpt {
            font-size: 13px;
            font-weight: 300;
            color: var(--taupe);
            line-height: 1.65;
        }

        /* ── TRUST STRIP ── */
        .trust-strip {
            background: var(--navy);
            padding: 72px 48px;
            position: relative;
            overflow: hidden;
        }

        .trust-strip::before {
            content: '';
            position: absolute;
            inset: 0;
            opacity: 0.03;
            background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23ffffff' stroke-width='0.5'%3E%3Crect x='10' y='10' width='60' height='60'/%3E%3Crect x='20' y='20' width='40' height='40'/%3E%3Cline x1='0' y1='0' x2='10' y2='10'/%3E%3Cline x1='70' y1='10' x2='80' y2='0'/%3E%3Cline x1='0' y1='80' x2='10' y2='70'/%3E%3Cline x1='70' y1='70' x2='80' y2='80'/%3E%3C/g%3E%3C/svg%3E");
            pointer-events: none;
        }

        .trust-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 48px;
            max-width: var(--max-w);
            margin: 0 auto;
        }

        .trust-item {
            text-align: center;
        }

        .trust-icon {
            font-size: 28px;
            margin-bottom: 16px;
            opacity: 0.75;
        }

        .trust-label {
            font-family: var(--font-heading);
            font-size: 20px;
            font-weight: 400;
            font-style: italic;
            color: var(--white-warm);
            margin-bottom: 8px;
        }

        .trust-desc {
            font-size: 13px;
            font-weight: 300;
            color: rgba(255,255,255,0.45);
            line-height: 1.65;
        }

        /* ── CONTACT STRIP ── */
        .contact-strip {
            background: var(--cream-dark);
            padding: 80px 48px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .contact-strip-text .section-title {
            margin-bottom: 20px;
        }

        .contact-strip-text p {
            font-size: 15px;
            font-weight: 300;
            color: var(--taupe);
            line-height: 1.75;
            margin-bottom: 32px;
        }

        .contact-strip-form {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
        }

        .form-input {
            width: 100%;
            padding: 14px 20px;
            background: var(--white-warm);
            border: 1px solid rgba(26,61,43,0.15);
            border-radius: 0;
            font-family: var(--font-body);
            font-size: 14px;
            font-weight: 300;
            color: var(--charcoal);
            outline: none;
            transition: border-color 0.25s;
            -webkit-appearance: none;
        }

        .form-input::placeholder { color: var(--taupe-light); }

        .form-input:focus {
            border-color: var(--forest);
            box-shadow: 0 0 0 3px rgba(26, 61, 43, 0.06);
        }

        .form-textarea {
            resize: none;
            min-height: 120px;
        }

        .form-submit {
            padding: 16px 40px;
            background: var(--navy);
            color: var(--white-warm);
            font-family: var(--font-body);
            font-size: 12px;
            font-weight: 400;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            border: none;
            cursor: pointer;
            transition: background 0.25s, box-shadow 0.25s;
            align-self: flex-start;
        }

        .form-submit:hover {
            background: var(--navy-deep);
            box-shadow: 0 6px 24px rgba(27,40,56,0.3);
        }
        .form-submit:disabled { background: var(--taupe-light); cursor: not-allowed; }

        .form-msg {
            font-size: 14px;
            color: var(--forest);
            display: none;
        }

        .form-msg.error { color: #8B2500; }
        .form-msg.show { display: block; }

        /* ── FOOTER ── */
        footer {
            background: var(--charcoal);
            color: rgba(255,255,255,0.6);
            padding: 72px 48px 40px;
            border-top: 3px solid var(--gold-rich);
        }

        .footer-top {
            display: grid;
            grid-template-columns: 1.8fr 1fr 1fr 1fr;
            gap: 64px;
            padding-bottom: 56px;
            border-bottom: 1px solid rgba(255,255,255,0.08);
            margin-bottom: 40px;
        }

        .footer-logo-img {
            height: 64px;
            width: auto;
            margin-bottom: 20px;
            filter: brightness(1.1);
        }

        .footer-brand-name {
            font-family: var(--font-display);
            font-size: 28px;
            letter-spacing: 0.04em;
            color: var(--white-warm);
            margin-bottom: 16px;
        }

        .footer-brand-desc {
            font-size: 13px;
            font-weight: 300;
            line-height: 1.75;
            color: rgba(255,255,255,0.4);
            margin-bottom: 28px;
        }

        .footer-col h4 {
            font-size: 10px;
            font-weight: 400;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: rgba(255,255,255,0.3);
            margin-bottom: 20px;
        }

        .footer-col a {
            display: block;
            font-size: 13px;
            font-weight: 300;
            color: rgba(255,255,255,0.5);
            margin-bottom: 10px;
            transition: color 0.25s;
        }

        .footer-col a:hover { color: var(--white-warm); }

        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 12px;
            font-weight: 300;
            color: rgba(255,255,255,0.25);
        }

        .footer-legal a {
            color: rgba(255,255,255,0.25);
            margin-left: 24px;
            font-size: 12px;
            transition: color 0.25s;
        }

        .footer-legal a:hover { color: rgba(255,255,255,0.5); }

        /* ── MOBILE ── */
        @media (max-width: 1024px) {
            nav { padding: 0 32px; }

            .hero {
                grid-template-columns: 1fr;
                min-height: auto;
            }

            .hero-left {
                padding: 80px 32px 60px;
                order: 1;
            }

            .hero-left::before { display: none; }

            .hero-right {
                min-height: 400px;
                order: 2;
            }

            .story {
                grid-template-columns: 1fr;
            }

            .story-visual { min-height: 320px; }

            .story-text { padding: 60px 32px; }

            .footer-top {
                grid-template-columns: 1fr 1fr;
                gap: 40px;
            }

            .trust-grid { grid-template-columns: 1fr 1fr; gap: 32px; }

            .contact-strip { grid-template-columns: 1fr; gap: 48px; }
        }

        @media (max-width: 768px) {
            :root { --nav-h: 52px; }

            nav { height: var(--nav-h); padding: 0 16px; }
            .nav-logo { height: var(--nav-h); overflow: hidden; display: flex; align-items: center; }
            .nav-logo img { height: 36px; max-height: 36px; width: auto; max-width: 140px; }
            .logo { height: var(--nav-h); overflow: hidden; display: flex; align-items: center; }
            .logo img { height: 36px; max-height: 36px; width: auto; max-width: 140px; }

            .nav-mobile-toggle {
                display: flex;
                min-width: 44px;
                min-height: 44px;
                align-items: center;
                justify-content: center;
                flex-direction: column;
                gap: 5px;
                cursor: pointer;
                padding: 6px;
                background: none;
                border: none;
                border-radius: 4px;
            }

            .nav-mobile-toggle span {
                display: block;
                width: 22px;
                height: 2px;
                background: var(--forest);
                transition: all 0.3s;
                flex-shrink: 0;
            }

            .nav-links { display: none; }
            .nav-mobile-toggle { display: flex; }

            .nav-links.open {
                display: flex;
                flex-direction: column;
                position: fixed;
                top: var(--nav-h); left: 0; right: 0;
                background: var(--cream);
                padding: 32px 24px;
                gap: 0;
                border-bottom: 1px solid rgba(26,61,43,0.08);
                box-shadow: 0 16px 40px rgba(26,61,43,0.1);
            }

            .nav-links.open li { border-bottom: 1px solid rgba(26,61,43,0.06); }
            .nav-links.open li:last-child { border-bottom: none; }

            .nav-links.open a {
                display: block;
                padding: 16px 0;
                font-size: 14px;
            }

            .nav-links.open .nav-cta {
                margin-top: 16px;
                text-align: center;
                padding: 14px 24px;
            }

            section { padding: 64px 20px; }

            .hero-left { padding: 80px 20px 48px; }

            .hero-actions { flex-direction: column; align-items: flex-start; }
            .btn-forest, .btn-outline { width: 100%; justify-content: center; }

            .featured-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 24px;
            }

            .pieces-grid { grid-template-columns: 1fr 1fr; gap: 16px; }

            .journal-grid { grid-template-columns: 1fr; }
            .journal-sidebar { border-left: none; padding-left: 0; border-top: 1px solid rgba(26,61,43,0.1); padding-top: 40px; margin-top: 8px; }

            .trust-strip { padding: 48px 20px; }
            .trust-grid { grid-template-columns: 1fr 1fr; gap: 24px; }

            .contact-strip { padding: 60px 20px; }
            .form-row { grid-template-columns: 1fr; }

            footer { padding: 48px 20px 32px; }

            .footer-top {
                grid-template-columns: 1fr;
                gap: 32px;
            }

            .footer-bottom {
                flex-direction: column;
                gap: 16px;
                text-align: center;
            }

            .footer-legal a { margin: 0 12px; }

            .story-text { padding: 48px 20px; }
        }

        @media (max-width: 425px) {
            :root { --nav-h: 48px; }

            nav { height: var(--nav-h); padding: 0 12px; }
            .nav-logo { height: var(--nav-h); overflow: hidden; display: flex; align-items: center; }
            .nav-logo img { height: 30px; max-height: 30px; width: auto; max-width: 120px; }
            .logo { height: var(--nav-h); overflow: hidden; display: flex; align-items: center; }
            .logo img { height: 30px; max-height: 30px; width: auto; max-width: 120px; }

            .nav-mobile-toggle { padding: 8px; min-height: 44px; min-width: 44px; }

            .nav-links.open {
                top: var(--nav-h);
                padding: 16px 12px;
                gap: 0;
            }

            .nav-links.open a { padding: 12px 0; font-size: 13px; }
            .nav-links.open .nav-cta { padding: 12px 12px; margin-top: 12px; }

            section { padding: 40px 12px; }

            .hero-left { padding: 48px 12px 32px; }
            .hero-eyebrow { font-size: 10px; letter-spacing: 0.2em; margin-bottom: 16px; }
            .hero-title { font-size: clamp(32px, 4vw, 48px); line-height: 1.1; }
            .hero-subtitle { font-size: 0.9rem; margin-top: 16px; }

            .hero-actions { flex-direction: column; align-items: stretch; gap: 12px; }
            .btn-forest, .btn-outline { width: 100%; justify-content: center; padding: 14px 16px; min-height: 44px; font-size: 12px; }

            .hero-right { min-height: 300px; }

            .featured-header { flex-direction: column; align-items: flex-start; gap: 16px; }
            .featured-header h2 { font-size: 1.3rem; }

            .pieces-grid { grid-template-columns: 1fr; gap: 12px; }

            .journal-grid { grid-template-columns: 1fr; }
            .journal-sidebar { border-left: none; padding-left: 0; border-top: 1px solid rgba(26,61,43,0.1); padding-top: 24px; margin-top: 8px; }

            .trust-strip { padding: 32px 12px; }
            .trust-grid { grid-template-columns: 1fr; gap: 16px; }
            .trust-item h3 { font-size: 1rem; }

            .contact-strip { padding: 40px 12px; }
            .contact-form h2 { font-size: 1.3rem; }
            .form-row { grid-template-columns: 1fr; gap: 0; }
            .form-group input,
            .form-group textarea { padding: 10px 10px; font-size: 14px; }
            .form-group label { font-size: 10px; }

            footer { padding: 24px 12px 20px; }
            .footer-brand { font-size: 16px; }
            .footer-top { grid-template-columns: 1fr; gap: 20px; }
            .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
            .footer-legal a { margin: 0 8px; font-size: 10px; }

            .story-text { padding: 32px 12px; }
        }

        /* ── FOOTER NEWSLETTER ── */
        .footer-newsletter {
            padding: 48px 0;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 48px;
            border-bottom: 1px solid rgba(255,255,255,0.08);
            margin-bottom: 40px;
        }
        .footer-newsletter-label {
            font-size: 10px;
            font-weight: 400;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: rgba(255,255,255,0.3);
            margin-bottom: 10px;
        }
        .footer-newsletter-headline {
            font-family: var(--font-heading);
            font-size: 20px;
            font-weight: 300;
            color: var(--white-warm);
            letter-spacing: 0.02em;
            line-height: 1.4;
            max-width: 360px;
        }
        .footer-nl-form {
            display: flex;
            flex: 0 0 auto;
            width: 360px;
        }
        .footer-nl-input {
            flex: 1;
            background: rgba(255,255,255,0.07);
            border: 1px solid rgba(255,255,255,0.15);
            border-right: none;
            color: var(--white-warm);
            padding: 13px 16px;
            font-family: var(--font-body);
            font-size: 13px;
            font-weight: 300;
            outline: none;
            transition: border-color 0.2s;
        }
        .footer-nl-input::placeholder { color: rgba(255,255,255,0.3); }
        .footer-nl-input:focus { border-color: var(--gold); }
        .footer-nl-btn {
            background: var(--gold);
            color: var(--charcoal);
            border: none;
            padding: 13px 22px;
            font-family: var(--font-body);
            font-size: 11px;
            font-weight: 500;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            cursor: pointer;
            transition: background 0.2s;
            white-space: nowrap;
        }
        .footer-nl-btn:hover { background: var(--gold-light); }
        .footer-nl-msg {
            font-size: 11px;
            color: var(--gold-light);
            margin-top: 8px;
            min-height: 16px;
        }
        @media (max-width: 768px) {
            .footer-newsletter {
                flex-direction: column;
                align-items: flex-start;
                gap: 24px;
                padding: 36px 0;
            }
            .footer-nl-form { width: 100%; }
        }
