/* Maison Vermeil — Deep Velvet Luxury Theme */
:root {
    --noir: #0a0807;
    --noir-2: #14110d;
    --noir-3: #1f1a14;
    --gold: #c9a44c;
    --gold-soft: #d8b86b;
    --gold-deep: #8a6e2a;
    --burgundy: #6e1d2a;
    --burgundy-deep: #3a0d18;
    --champagne: #d4c89a;
    --cream: #f5edd6;
    --line: rgba(201,164,76,0.18);
    --line-2: rgba(201,164,76,0.32);
    --ink: #f5edd6;
    --ink-2: #c9a44c;
    --ink-3: #8a8270;
    --bg: #0a0807;
    --bg-2: #14110d;
    --accent: #c9a44c;
    --brand: #c9a44c;
    --primary: #c9a44c;
    --banner-h: 0px;
}

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; background: var(--noir); color: var(--ink); font-family: "Cormorant Garamond", "Noto Serif KR", serif; -webkit-font-smoothing: antialiased; overflow-x: hidden; font-weight: 400; }
h1, h2, h3 { font-family: "Playfair Display", "Cormorant Garamond", serif; color: var(--cream); margin: 0; font-weight: 600; letter-spacing: -0.01em; }
h2 { font-size: clamp(2rem, 4.5vw, 3.4rem); font-weight: 600; }
h3 { font-size: 1.3rem; font-weight: 500; }
p { color: var(--ink-3); line-height: 1.75; margin: 0; font-size: 1.02rem; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; }
em { font-style: italic; color: var(--gold); font-family: "Cormorant Garamond", serif; }

/* DEMO BANNER */
.demo-banner { position: fixed; top: 0; left: 0; right: 0; background: var(--burgundy-deep); color: var(--gold); padding: 8px 16px; text-align: center; font-size: 0.74rem; z-index: 200; border-bottom: 1px solid var(--line-2); font-family: "Inter", sans-serif; letter-spacing: 0.04em; font-weight: 500; }
.demo-banner strong { color: var(--gold); margin-right: 8px; font-family: "Playfair Display", serif; font-style: italic; }
body.has-banner { padding-top: var(--banner-h); }

/* ============================
   Vermeil Pillar Nav (PC)
   ============================ */
.vermeil-nav-pillar {
    position: fixed; top: calc(var(--banner-h) + 18px); left: 50%; transform: translateX(-50%);
    z-index: 150;
    display: inline-flex; align-items: center; gap: 32px;
    background: rgba(10,8,7,0.55); backdrop-filter: blur(20px) saturate(150%);
    -webkit-backdrop-filter: blur(20px) saturate(150%);
    padding: 12px 24px;
    border: 1px solid var(--line-2);
    box-shadow: 0 8px 32px -8px rgba(0,0,0,0.6);
}
.vermeil-nav-pillar::before, .vermeil-nav-pillar::after { content:""; position: absolute; top: 50%; width: 12px; height: 1px; background: var(--gold); }
.vermeil-nav-pillar::before { left: -16px; }
.vermeil-nav-pillar::after { right: -16px; }

.vermeil-nav-brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; padding-right: 16px; border-right: 1px solid var(--line-2); }
.vermeil-brand-mark { font-family: "Playfair Display", serif; font-style: italic; font-size: 1.2rem; color: var(--gold); font-weight: 700; letter-spacing: 0.05em; }
.vermeil-brand-text { font-family: "Inter", sans-serif; font-size: 0.74rem; letter-spacing: 0.18em; color: var(--cream); font-weight: 500; }

.vermeil-nav-list { display: flex; gap: 24px; list-style: none; margin: 0; padding: 0; align-items: center; }
.vermeil-nav-list a { font-family: "Cormorant Garamond", serif; font-style: italic; font-size: 0.96rem; font-weight: 500; color: var(--cream); padding: 4px 0; position: relative; transition: color .25s; }
.vermeil-nav-list a::after { content:""; position: absolute; left: 0; right: 0; bottom: -3px; height: 1px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform .3s ease; }
.vermeil-nav-list a:hover { color: var(--gold); }
.vermeil-nav-list a:hover::after { transform: scaleX(1); }

.vermeil-nav-actions { display: flex; align-items: center; gap: 12px; flex-shrink: 0; padding-left: 16px; border-left: 1px solid var(--line-2); }
.vermeil-nav-login, .vermeil-nav-signup { font-family: "Inter", sans-serif; font-size: 0.7rem; font-weight: 500; color: var(--ink-3); padding: 6px 8px; letter-spacing: 0.16em; transition: color .25s; }
.vermeil-nav-login:hover, .vermeil-nav-signup:hover { color: var(--gold); }
.vermeil-nav-cta {
    background: transparent; border: 1px solid var(--gold);
    color: var(--gold) !important; padding: 8px 18px;
    font-family: "Inter", sans-serif; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.2em;
    transition: all .3s;
    position: relative; overflow: hidden;
}
.vermeil-nav-cta::before { content:""; position: absolute; inset: 0; background: var(--gold); transform: translateX(-101%); transition: transform .35s ease; z-index: 0; }
.vermeil-nav-cta span, .vermeil-nav-cta { position: relative; z-index: 1; }
.vermeil-nav-cta:hover { color: var(--noir) !important; }
.vermeil-nav-cta:hover::before { transform: translateX(0); }

/* Mobile burger */
.vermeil-burger { display: none; position: fixed; top: calc(var(--banner-h) + 14px); right: 14px; z-index: 160; width: 48px; height: 48px; background: var(--noir); border: 1px solid var(--gold); flex-direction: column; gap: 5px; align-items: center; justify-content: center; padding: 0; }
.vermeil-burger span { width: 22px; height: 1px; background: var(--gold); transition: transform .25s; }

.vermeil-drawer { position: fixed; top: 0; right: -100%; width: 86%; max-width: 380px; height: 100vh; height: 100dvh; background: var(--noir); z-index: 170; transition: right .4s cubic-bezier(.4,0,.2,1); border-left: 1px solid var(--gold); display: flex; flex-direction: column; padding: calc(var(--banner-h) + 80px) 32px 32px; overflow-y: auto; }
.vermeil-drawer.open { right: 0; }
.vermeil-drawer-close { position: absolute; top: calc(var(--banner-h) + 16px); right: 16px; width: 44px; height: 44px; background: var(--burgundy-deep); color: var(--gold); border: 1px solid var(--gold); font-size: 28px; line-height: 1; font-weight: 300; transition: transform .25s; z-index: 2; padding: 0; font-family: serif; }
.vermeil-drawer-close:hover { transform: rotate(90deg); background: var(--gold); color: var(--noir); }
.vermeil-drawer-mark { font-family: "Playfair Display", serif; font-style: italic; font-size: 2rem; color: var(--gold); margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid var(--line-2); text-align: center; }
.vermeil-drawer-inner { display: flex; flex-direction: column; gap: 8px; }
.vermeil-drawer-inner a { padding: 14px 0; font-family: "Cormorant Garamond", serif; font-style: italic; font-size: 1.15rem; color: var(--cream); border-bottom: 1px solid var(--line); transition: color .2s, padding-left .25s; }
.vermeil-drawer-inner a:hover { color: var(--gold); padding-left: 8px; }
.vermeil-drawer-auth { margin-top: auto; padding-top: 24px; border-top: 1px solid var(--line-2); display: flex; gap: 16px; justify-content: space-between; }
.vermeil-drawer-auth a { color: var(--gold); font-family: "Inter", sans-serif; font-size: 0.74rem; letter-spacing: 0.2em; padding: 8px 14px; border: 1px solid var(--gold); }
body.drawer-open { overflow: hidden; }
body.drawer-open .vermeil-nav-pillar { display: none !important; }

/* Section common */
section { position: relative; }
.vermeil-section-head { text-align: center; max-width: 760px; margin: 0 auto 64px; padding: 0 16px; }
.vermeil-eyebrow { display: inline-block; padding: 6px 0; color: var(--gold); font-family: "Inter", sans-serif; font-size: 0.74rem; letter-spacing: 0.24em; margin-bottom: 20px; font-weight: 500; position: relative; }
.vermeil-eyebrow::before { content:""; display: inline-block; width: 18px; height: 1px; background: var(--gold); vertical-align: middle; margin-right: 12px; }
.vermeil-eyebrow::after { content:""; display: inline-block; width: 18px; height: 1px; background: var(--gold); vertical-align: middle; margin-left: 12px; }
.vermeil-section-head h2 { margin-bottom: 16px; }
.vermeil-section-head p { font-style: italic; font-family: "Cormorant Garamond", serif; font-size: 1.1rem; color: var(--ink-3); }
.section-tall { padding: 120px 24px; }

/* ============================
   1. HERO
   ============================ */
.vermeil-hero {
    position: relative; min-height: 100vh; padding: calc(var(--banner-h) + 160px) 24px 100px;
    overflow: hidden; display: flex; align-items: center; justify-content: center;
    background: var(--noir);
}
.vermeil-hero-bg { position: absolute; inset: 0; background-image: url('https://makemonlab.studio/themes/_shared/jewelbox-img/hero-vault.jpg'); background-size: cover; background-position: center; opacity: 0.75; transition: transform .8s; }
.vermeil-hero:hover .vermeil-hero-bg { transform: scale(1.04); }
.vermeil-hero-vignette { position: absolute; inset: 0; background: radial-gradient(circle at center, transparent 30%, rgba(10,8,7,0.55) 100%); pointer-events: none; }

.vermeil-hero-inner { position: relative; z-index: 2; max-width: 880px; text-align: center; }
.vermeil-hero-eyebrow { display: inline-block; padding: 6px 0; color: var(--gold); font-family: "Inter", sans-serif; font-size: 0.74rem; letter-spacing: 0.32em; margin-bottom: 32px; font-weight: 500; }
.vermeil-hero-title { font-family: "Playfair Display", serif; font-size: clamp(2.6rem, 6.4vw, 5.2rem); line-height: 1.12; color: var(--cream); margin: 0 0 32px; letter-spacing: -0.02em; font-weight: 600; }
.vermeil-line { display: block; opacity: 0; transform: translateY(30px); animation: line-rise 1s cubic-bezier(.2,.8,.4,1) forwards; }
.vermeil-line:nth-child(1) { animation-delay: .15s; } .vermeil-line:nth-child(2) { animation-delay: .35s; } .vermeil-line:nth-child(3) { animation-delay: .55s; }
@keyframes line-rise { to { opacity: 1; transform: translateY(0); } }
.vermeil-hero-title em { font-style: italic; color: var(--gold); font-family: "Cormorant Garamond", serif; font-weight: 400; }
.vermeil-hero-sub { font-size: 1.15rem; color: var(--cream); opacity: 0.85; margin: 0 0 40px; line-height: 1.7; max-width: 680px; margin-left: auto; margin-right: auto; font-family: "Cormorant Garamond", serif; font-style: italic; }
.vermeil-hero-meta { display: flex; gap: 48px; justify-content: center; flex-wrap: wrap; margin-bottom: 48px; padding: 24px 0; border-top: 1px solid var(--line-2); border-bottom: 1px solid var(--line-2); max-width: 700px; margin-left: auto; margin-right: auto; }
.vermeil-hero-meta span { font-size: 0.92rem; color: var(--ink-3); font-family: "Inter", sans-serif; font-weight: 400; }
.vermeil-hero-meta em { color: var(--gold); margin-right: 8px; font-family: "Playfair Display", serif; font-style: italic; }
.vermeil-hero-meta strong { color: var(--cream); font-family: "Playfair Display", serif; font-weight: 600; font-size: 1.1rem; margin-right: 4px; }
.vermeil-hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.vermeil-btn-primary, .vermeil-btn-secondary { padding: 14px 32px; font-family: "Inter", sans-serif; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.2em; transition: all .35s; display: inline-block; }
.vermeil-btn-primary { background: var(--gold); color: var(--noir); }
.vermeil-btn-primary:hover { background: var(--gold-soft); transform: translateY(-2px); box-shadow: 0 12px 32px -8px rgba(201,164,76,0.4); }
.vermeil-btn-secondary { background: transparent; color: var(--gold); border: 1px solid var(--gold); }
.vermeil-btn-secondary:hover { background: var(--gold); color: var(--noir); }

.vermeil-hero-loupe { position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); font-size: 28px; color: var(--gold); opacity: 0.5; animation: loupe-glow 3s ease-in-out infinite; }
@keyframes loupe-glow { 0%,100% { opacity: 0.4; transform: translateX(-50%) scale(1); } 50% { opacity: 0.8; transform: translateX(-50%) scale(1.15); } }

/* ============================
   2. INTRO
   ============================ */
.vermeil-intro { padding: 120px 24px; text-align: center; max-width: 880px; margin: 0 auto; position: relative; }
.vermeil-intro-pillar em { font-family: "Playfair Display", serif; font-size: 8rem; color: var(--gold); opacity: 0.18; line-height: 0.5; font-style: italic; }
.vermeil-intro-text { font-family: "Cormorant Garamond", serif; font-style: italic; font-size: clamp(1.6rem, 3.5vw, 2.4rem); color: var(--cream); line-height: 1.5; margin: 24px 0; font-weight: 400; }
.vermeil-intro-tr { display: block; margin-top: 12px; font-size: 0.85em; color: var(--ink-3); font-style: italic; }
.vermeil-intro-sign { font-size: 0.92rem; color: var(--gold); font-family: "Inter", sans-serif; letter-spacing: 0.16em; }

/* ============================
   3. MASTERS — magazine spread
   ============================ */
.vermeil-master-grid { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 40px 24px; padding: 0 16px; }
.vermeil-master-card { text-align: center; position: relative; }
.vermeil-master-photo { aspect-ratio: 4/5; background-size: cover; background-position: center; margin-bottom: 24px; position: relative; overflow: hidden; transition: transform .5s ease; }
.vermeil-master-photo::after { content:""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(10,8,7,0.8) 100%); }
.vermeil-master-card:hover .vermeil-master-photo { transform: scale(1.03); }
.vermeil-master-since { position: absolute; bottom: 16px; left: 16px; color: var(--gold); font-family: "Playfair Display", serif; font-style: italic; font-size: 0.86rem; z-index: 2; letter-spacing: 0.1em; }
.vermeil-master-card h3 { font-family: "Playfair Display", serif; font-size: 1.25rem; margin-bottom: 6px; }
.vermeil-master-role { color: var(--gold); font-family: "Inter", sans-serif; font-size: 0.74rem; letter-spacing: 0.16em; margin-bottom: 16px; font-weight: 500; }
.vermeil-master-motto { font-family: "Cormorant Garamond", serif; font-style: italic; color: var(--ink-3); font-size: 0.95rem; line-height: 1.5; padding: 0 8px; }
.vermeil-master-cta { text-align: center; margin-top: 56px; }
.vermeil-master-cta a { color: var(--gold); font-family: "Inter", sans-serif; font-size: 0.78rem; letter-spacing: 0.2em; padding: 12px 24px; border: 1px solid var(--gold); transition: all .3s; display: inline-block; font-weight: 600; }
.vermeil-master-cta a:hover { background: var(--gold); color: var(--noir); }

/* ============================
   4. COLLECTIONS
   ============================ */
.vermeil-collections { padding: 100px 24px 80px; background: var(--noir-2); }
.vermeil-coll-grid { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 32px; padding: 0 16px; }
.vermeil-coll-card { background: var(--noir); border: 1px solid var(--line); position: relative; transition: transform .4s, border-color .3s, box-shadow .4s; cursor: pointer; }
.vermeil-coll-card:hover { transform: translateY(-8px); border-color: var(--gold); box-shadow: 0 20px 40px -12px rgba(0,0,0,0.6); }
.vermeil-coll-img { aspect-ratio: 1; background-size: cover; background-position: center; background-color: #1a1612; }
.vermeil-coll-tag { position: absolute; top: 16px; left: 16px; padding: 4px 10px; background: var(--noir); color: var(--gold); font-family: "Inter", sans-serif; font-size: 0.68rem; letter-spacing: 0.16em; border: 1px solid var(--gold); font-weight: 500; }
.vermeil-coll-body { padding: 24px; border-top: 1px solid var(--line); }
.vermeil-coll-card h3 { font-family: "Playfair Display", serif; font-size: 1.2rem; margin-bottom: 6px; color: var(--cream); }
.vermeil-coll-item { font-family: "Cormorant Garamond", serif; font-style: italic; color: var(--ink-3); font-size: 0.92rem; margin-bottom: 12px; }
.vermeil-coll-meta { display: flex; justify-content: space-between; align-items: baseline; padding-top: 12px; border-top: 1px solid var(--line); }
.vermeil-coll-carat { font-family: "Inter", sans-serif; font-size: 0.78rem; color: var(--ink-3); letter-spacing: 0.04em; }
.vermeil-coll-price { font-family: "Playfair Display", serif; color: var(--gold); font-size: 1.1rem; font-weight: 600; }

/* ============================
   5. STATS
   ============================ */
.vermeil-stats { padding: 100px 24px; background: linear-gradient(180deg, var(--noir-2) 0%, var(--noir) 100%); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.vermeil-stat-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1px; background: var(--line-2); }
.vermeil-stat-card { background: var(--noir); padding: 56px 24px; text-align: center; transition: background .3s; }
.vermeil-stat-card:hover { background: var(--noir-2); }
.vermeil-stat-roman { font-family: "Playfair Display", serif; font-style: italic; color: var(--gold); font-size: 1.2rem; margin-bottom: 12px; opacity: 0.7; letter-spacing: 0.1em; }
.vermeil-stat-num { font-family: "Playfair Display", serif; font-size: 3.4rem; line-height: 1; margin-bottom: 12px; color: var(--cream); font-weight: 400; }
.vermeil-stat-label { font-family: "Inter", sans-serif; font-size: 0.78rem; color: var(--ink-3); letter-spacing: 0.18em; }

/* ============================
   6. HERITAGE
   ============================ */
.vermeil-heritage-grid { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; padding: 0 16px; }
.vermeil-heritage-card { position: relative; aspect-ratio: 4/5; background-size: cover; background-position: center; cursor: pointer; overflow: hidden; transition: transform .4s; }
.vermeil-heritage-card::before { content:""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(10,8,7,0.9) 100%); }
.vermeil-heritage-card:hover { transform: scale(1.02); }
.vermeil-heritage-overlay { position: absolute; bottom: 0; left: 0; right: 0; padding: 24px; z-index: 2; border-top: 1px solid var(--gold); }
.vermeil-heritage-card h3 { color: var(--cream); font-family: "Playfair Display", serif; margin-bottom: 8px; font-size: 1.2rem; }
.vermeil-heritage-card p { color: var(--ink-3); font-size: 0.9rem; font-family: "Cormorant Garamond", serif; font-style: italic; line-height: 1.5; }

/* ============================
   7. PROCESS — vertical timeline
   ============================ */
.vermeil-process-track { max-width: 920px; margin: 0 auto; position: relative; padding-left: 80px; }
.vermeil-process-track::before { content:""; position: absolute; left: 24px; top: 20px; bottom: 20px; width: 1px; background: var(--gold); opacity: 0.4; }
.vermeil-process-step { position: relative; padding: 32px 0; display: grid; grid-template-columns: 200px 1fr; gap: 32px; align-items: start; }
.vermeil-process-marker { position: absolute; left: -80px; top: 36px; width: 50px; height: 50px; background: var(--noir); border: 1px solid var(--gold); display: flex; align-items: center; justify-content: center; color: var(--gold); font-family: "Playfair Display", serif; font-size: 1.2rem; font-style: italic; }
.vermeil-process-img { aspect-ratio: 4/3; background-size: cover; background-position: center; }
.vermeil-process-text h3 { font-family: "Playfair Display", serif; color: var(--cream); margin-bottom: 12px; font-size: 1.4rem; }
.vermeil-process-text p { font-family: "Cormorant Garamond", serif; font-style: italic; color: var(--ink-3); font-size: 1.05rem; line-height: 1.6; }

/* ============================
   8. ATELIER
   ============================ */
.vermeil-atelier { padding: 100px 24px; background: var(--noir-2); }
.vermeil-atelier-grid { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; padding: 0 16px; }
.vermeil-atelier-card { aspect-ratio: 4/3; background-size: cover; background-position: center; position: relative; overflow: hidden; transition: transform .4s; cursor: pointer; }
.vermeil-atelier-card::before { content:""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(10,8,7,0.55) 100%); }
.vermeil-atelier-card:hover { transform: translateY(-4px); }
.vermeil-atelier-overlay { position: absolute; bottom: 0; left: 0; right: 0; padding: 24px; z-index: 2; }
.vermeil-atelier-card h3 { color: var(--cream); font-family: "Playfair Display", serif; margin-bottom: 6px; font-size: 1.15rem; }
.vermeil-atelier-card p { color: var(--ink-3); font-size: 0.86rem; font-family: "Cormorant Garamond", serif; font-style: italic; }

/* ============================
   9. PRESS
   ============================ */
.vermeil-press-grid { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; padding: 0 16px; }
.vermeil-press-card { background: var(--noir); border: 1px solid var(--line); padding: 32px; transition: border-color .3s, transform .3s; position: relative; }
.vermeil-press-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.vermeil-press-thumb { width: 100%; aspect-ratio: 4/3; background-size: cover; background-position: center; margin-bottom: 20px; filter: grayscale(0.3) sepia(0.1); transition: filter .3s; }
.vermeil-press-card:hover .vermeil-press-thumb { filter: grayscale(0) sepia(0); }
.vermeil-press-source { font-family: "Inter", sans-serif; font-size: 0.7rem; letter-spacing: 0.2em; color: var(--gold); margin-bottom: 12px; font-weight: 500; }
.vermeil-press-title { font-family: "Playfair Display", serif; color: var(--cream); font-size: 1.08rem; line-height: 1.4; }
.vermeil-press-quote { font-family: "Cormorant Garamond", serif; font-style: italic; font-size: 1.1rem; color: var(--cream); line-height: 1.5; margin-bottom: 16px; }
.vermeil-press-quote::before { content:'"'; color: var(--gold); font-size: 1.5em; line-height: 0; }

/* ============================
   10. FOUNDER
   ============================ */
.vermeil-founder { padding: 120px 24px; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; max-width: 1200px; margin: 0 auto; align-items: center; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.vermeil-founder-photo { aspect-ratio: 4/5; background-size: cover; background-position: center; position: relative; }
.vermeil-founder-photo::before, .vermeil-founder-photo::after { content:""; position: absolute; width: 40px; height: 40px; border: 1px solid var(--gold); }
.vermeil-founder-photo::before { top: -8px; left: -8px; border-right: none; border-bottom: none; }
.vermeil-founder-photo::after { bottom: -8px; right: -8px; border-left: none; border-top: none; }
.vermeil-founder-text h2 { font-family: "Playfair Display", serif; margin-bottom: 24px; }
.vermeil-founder-text p { margin-bottom: 16px; line-height: 1.8; color: var(--ink); font-family: "Cormorant Garamond", serif; }
.vermeil-founder-sign { display: block; font-family: "Cormorant Garamond", serif; font-style: italic; color: var(--gold); font-size: 1.1rem; margin-top: 32px; padding-top: 20px; border-top: 1px solid var(--line-2); }

/* ============================
   11. CTA
   ============================ */
.vermeil-cta { padding: 140px 24px; position: relative; overflow: hidden; }
.vermeil-cta-bg { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0.35; }
.vermeil-cta-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(10,8,7,0.92), rgba(20,17,13,0.85)); }
.vermeil-cta-inner { max-width: 720px; margin: 0 auto; position: relative; z-index: 2; text-align: center; }
.vermeil-cta-mark { display: block; font-family: "Playfair Display", serif; font-style: italic; font-size: 2.4rem; color: var(--gold); margin-bottom: 16px; }
.vermeil-cta-inner h2 { font-family: "Playfair Display", serif; margin-bottom: 16px; font-size: clamp(2rem, 5vw, 3.4rem); }
.vermeil-cta-inner p { margin-bottom: 40px; font-size: 1.15rem; font-family: "Cormorant Garamond", serif; font-style: italic; }
.vermeil-cta-form { display: flex; flex-direction: column; gap: 14px; }
.vermeil-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.vermeil-cta-form input, .vermeil-cta-form select, .vermeil-cta-form textarea {
    width: 100%; padding: 14px 18px; border: 1px solid var(--line-2);
    background: rgba(10,8,7,0.6); font-size: 0.96rem; font-family: "Cormorant Garamond", serif;
    color: var(--cream); transition: border-color .25s; backdrop-filter: blur(8px);
}
.vermeil-cta-form input::placeholder, .vermeil-cta-form select, .vermeil-cta-form textarea::placeholder { color: var(--ink-3); font-style: italic; }
.vermeil-cta-form input:focus, .vermeil-cta-form select:focus, .vermeil-cta-form textarea:focus { outline: none; border-color: var(--gold); }
.vermeil-cta-form textarea { resize: vertical; }
.vermeil-form-submit { padding: 16px 32px; background: var(--gold); color: var(--noir); font-family: "Inter", sans-serif; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.24em; transition: all .3s; margin-top: 12px; }
.vermeil-form-submit:hover { background: var(--gold-soft); transform: translateY(-2px); box-shadow: 0 12px 32px -8px rgba(201,164,76,0.5); }

/* ============================
   FOOTER
   ============================ */
.vermeil-footer { background: var(--noir); color: var(--ink-3); padding: 80px 24px 32px; border-top: 1px solid var(--line); }
.vermeil-footer-inner { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 1.2fr 1fr 1fr 1fr; gap: 40px; align-items: start; }
.vermeil-footer-brand .vermeil-brand-mark { font-family: "Playfair Display", serif; font-style: italic; font-size: 2rem; color: var(--gold); }
.vermeil-footer-brand strong { font-family: "Inter", sans-serif; font-size: 0.86rem; letter-spacing: 0.2em; color: var(--cream); display: block; margin: 12px 0 12px; }
.vermeil-footer-brand p { color: var(--ink-3); font-size: 0.92rem; font-family: "Cormorant Garamond", serif; font-style: italic; }
.vermeil-footer-meta em { color: var(--gold); font-family: "Playfair Display", serif; font-style: italic; font-size: 1rem; display: block; margin-bottom: 12px; }
.vermeil-footer-meta p { color: var(--ink-3); font-size: 0.86rem; margin-bottom: 6px; }
.vermeil-footer-credit p { color: var(--ink-3); font-size: 0.78rem; margin-bottom: 4px; opacity: 0.7; }

/* Reveal */
.reveal-init { opacity: 0; transform: translateY(24px); transition: opacity 1s ease-out, transform 1s cubic-bezier(.2,.8,.4,1); }
.reveal-in { opacity: 1; transform: translateY(0); }

/* Responsive */
@media (max-width: 1024px) {
    .vermeil-nav-list { display: none; }
    .vermeil-nav-actions { display: none; }
    .vermeil-burger { display: flex; }
    .vermeil-nav-pillar { padding: 8px 16px; gap: 16px; }
    .vermeil-founder { grid-template-columns: 1fr; padding: 80px 24px; gap: 48px; }
    .vermeil-footer-inner { grid-template-columns: 1fr 1fr; }
    .vermeil-process-track { padding-left: 60px; }
    .vermeil-process-marker { left: -60px; width: 40px; height: 40px; font-size: 1rem; }
    .vermeil-process-step { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .section-tall { padding: 80px 16px; }
    .vermeil-section-head { margin-bottom: 40px; }
    .vermeil-hero { min-height: 80vh; padding: calc(var(--banner-h) + 130px) 20px 80px; }
    .vermeil-hero-meta { flex-direction: column; gap: 16px; padding: 16px 0; }
    .vermeil-form-row { grid-template-columns: 1fr; }
    .vermeil-cta-form input, .vermeil-cta-form select, .vermeil-cta-form textarea { font-size: 16px; }
    .vermeil-footer-inner { grid-template-columns: 1fr; }
    .vermeil-stat-num { font-size: 2.6rem; }
}


/* ===========================================
   RETROFIT v1.27 — motionsites integration
   slug: luxury-jewelbox
   effects: T, M
   =========================================== */
/* === retrofit v1.27 motionsites velocity-parallax (MIT) === */
@supports (animation-timeline: scroll()) {
  @media (prefers-reduced-motion: no-preference) and (min-width: 769px) {
    [data-parallax], .parallax-bg, [class*="hero-bg"], [class*="-bg-img"] {
      animation: rt-parallax linear;
      animation-timeline: scroll(root);
    }
    @keyframes rt-parallax { to { transform: translateY(-20%); } }
  }
}/* === retrofit v1.27 motionsites cinematic-video (MIT) === */
@media (prefers-reduced-motion: no-preference) and (min-width: 769px) {
  /* Boost existing hero with cinematic gradient overlay */
  section.hero, section.cinematic-hero, .hero, [class*="-hero"]:first-of-type {
    position: relative;
  }
  section.hero::after, section.cinematic-hero::after, .hero::after {
    content: ''; position: absolute; inset: 0; pointer-events: none; z-index: 1;
    background: linear-gradient(180deg, rgba(0,0,0,0) 60%, rgba(0,0,0,0.35) 100%);
    opacity: 0.6;
  }
  section.hero > *, section.cinematic-hero > *, .hero > * { position: relative; z-index: 2; }
}