/* ─────────────────────────────────────────
   Studio Voss v2 — Maroon & Cream Edition
   
   Palette:
   Accent  : Terracotta/maroon  #E63A19 → #C4311A
   Cream   : Warm ivory scale   #F5F3E9 → #E8E3D0
   Ink     : Deep warm brown    #1C1410 → #3D2E24
   Borders : Warm taupe
───────────────────────────────────────── */

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

:root {
  --b0: #FAF8F2;
  --b1: #F5F3E9;
  --b2: #EDE9D8;
  --b3: #E5E0CC;
  --b4: #DAD3B8;
  --b5: #CFC6A3;
  --brass:      #C4311A;
  --brass-lite: #E63A19;
  --brass-deep: #9E2714;
  --brass-dim:  rgba(196,49,26,0.08);
  --brass-ring: rgba(196,49,26,0.20);
  --ink0:  #1C1410;
  --ink1:  #2A1E17;
  --ink2:  #3D2E24;
  --pearl:       #1C1410;
  --pearl-mid:   rgba(28,20,16,0.65);
  --pearl-low:   rgba(28,20,16,0.42);
  --pearl-faint: rgba(28,20,16,0.18);
  --pearl-ghost: rgba(28,20,16,0.07);
  --bdr:  rgba(28,20,16,0.10);
  --bdr2: rgba(28,20,16,0.16);
  --bdr3: rgba(196,49,26,0.22);
}

html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--b1);
  color: var(--pearl);
  overflow-x: hidden;
  line-height: 1.6;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 4rem; height: 70px;
  background: rgba(250,248,242,0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--bdr);
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem; font-weight: 500; letter-spacing: 0.06em;
  color: var(--ink0); text-decoration: none;
}
.nav-logo span { color: var(--brass); font-style: italic; }
.nav-links { display: flex; gap: 2.8rem; list-style: none; }
.nav-links a {
  font-size: 0.74rem; font-weight: 400; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--pearl-low);
  text-decoration: none; transition: color .3s;
}
.nav-links a:hover { color: var(--ink0); }
.nav-cta {
  font-size: 0.72rem; font-weight: 500; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--b0); background: var(--brass);
  padding: 0.62rem 1.7rem; text-decoration: none; transition: background .3s;
}
.nav-cta:hover { background: var(--brass-lite); }

/* ── HERO ── */
.hero {
  min-height: 100vh; padding-top: 70px;
  display: grid; grid-template-columns: 1fr 390px;
  background: var(--b1); overflow: hidden; position: relative;
}
.hero-depth {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 70% 70% at 25% 60%, rgba(196,49,26,0.06) 0%, transparent 70%);
}
.hero-stars {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    radial-gradient(circle, rgba(196,49,26,0.18) 1px, transparent 1px),
    radial-gradient(circle, rgba(28,20,16,0.06) 1px, transparent 1px);
  background-size: 140px 140px, 70px 70px;
  background-position: 0 0, 35px 35px; opacity: 0.7;
}
.hero-left {
  display: flex; flex-direction: column; justify-content: center;
  padding: 5.5rem 4rem; position: relative; z-index: 1;
}
.hero-ey {
  display: flex; align-items: center; gap: 1rem;
  font-size: 0.68rem; font-weight: 400; letter-spacing: 0.24em;
  text-transform: uppercase; color: var(--brass); margin-bottom: 2.5rem;
}
.hero-ey-line { width: 36px; height: 1px; background: var(--brass); }
.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.2rem, 5.5vw, 6rem); font-weight: 300;
  line-height: 1.02; letter-spacing: -0.01em;
  color: var(--ink0); max-width: 660px; margin-bottom: 2.2rem;
}
.hero h1 em { font-style: italic; color: var(--brass); }
.hero-sub {
  font-size: 1rem; font-weight: 300; color: var(--pearl-mid);
  max-width: 430px; line-height: 1.9; margin-bottom: 2.5rem;
}
.hero-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem; font-style: italic; font-weight: 300;
  color: var(--pearl-low); max-width: 480px;
  padding-left: 1.6rem; border-left: 2px solid var(--brass);
  margin-bottom: 3.2rem; line-height: 1.75;
}
.hero-actions { display: flex; gap: 0; align-items: center; margin-bottom: 5rem; }
.btn-brass {
  background: var(--brass); color: var(--b0);
  padding: 1rem 2.6rem; font-size: 0.76rem; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  text-decoration: none; transition: background .3s;
  font-family: 'DM Sans', sans-serif; cursor: pointer; border: none;
}
.btn-brass:hover { background: var(--brass-lite); }
.btn-outline {
  background: transparent; color: var(--pearl-mid);
  padding: 1rem 2.2rem; font-size: 0.76rem; font-weight: 400;
  letter-spacing: 0.14em; text-transform: uppercase;
  text-decoration: none; border: 1px solid var(--bdr2); margin-left: -1px;
  transition: all .3s; font-family: 'DM Sans', sans-serif;
}
.btn-outline:hover { border-color: var(--brass); color: var(--brass); }
.hero-stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--bdr); padding-top: 2.5rem;
}
.hstat-border { border-left: 1px solid var(--bdr); padding-left: 1.5rem; }
.hstat-n {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.6rem; font-weight: 500; color: var(--ink0); line-height: 1;
}
.hstat-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem; font-weight: 400; font-style: italic;
  color: var(--brass); line-height: 1.35;
  padding-top: 0.5rem; max-width: 140px;
}
.hstat-u {
  font-family: 'DM Sans', sans-serif; font-size: 0.85rem;
  font-weight: 300; color: var(--brass); margin-left: 1px;
}
.hstat-l {
  font-size: 0.68rem; font-weight: 400; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--pearl-low); margin-top: 0.4rem; line-height: 1.4;
}

/* ── HERO RIGHT ── */
.hero-right {
  background: var(--b2); display: flex; flex-direction: column;
  border-left: 1px solid var(--bdr); position: relative; overflow: hidden;
}
.hr-glow {
  position: absolute; top: -80px; right: -80px;
  width: 360px; height: 360px; border-radius: 50%;
  background: radial-gradient(circle, rgba(196,49,26,0.07) 0%, transparent 60%);
  pointer-events: none;
}
.hr-inner {
  flex: 1; padding: 3.5rem 2.8rem;
  display: flex; flex-direction: column; justify-content: center;
  position: relative; z-index: 1;
}
.hr-tag {
  font-size: 0.62rem; font-weight: 400; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--brass); margin-bottom: 1.2rem; opacity: 0.85;
}
.hr-pull {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.38rem; font-style: italic; font-weight: 300;
  color: var(--ink1); line-height: 1.55; margin-bottom: 2.5rem;
}
.hr-list { display: flex; flex-direction: column; }
.hr-item {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 0.8rem 0; border-bottom: 1px solid var(--bdr);
  font-size: 0.81rem; font-weight: 300; color: var(--pearl-mid); line-height: 1.5;
}
.hr-item:last-child { border-bottom: none; }
.hr-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.75rem; font-style: italic; color: var(--brass);
  min-width: 18px; margin-top: 1px;
}
.hr-band { background: var(--brass); padding: 1.8rem 2.8rem; position: relative; z-index: 1; }
.hr-band-label {
  font-size: 0.6rem; font-weight: 400; letter-spacing: 0.18em;
  text-transform: uppercase; color: rgba(250,248,242,0.55); margin-bottom: 0.35rem;
}
.hr-band-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem; font-style: italic; font-weight: 400;
  color: var(--b0); line-height: 1.4;
}

/* ── HERO RIGHT — DEVICE SCENE ── */
.hr-scene-wrap {
  flex: 1; display: flex; align-items: center; justify-content: center;
  padding: 1.5rem 1rem 1rem; overflow: hidden; position: relative; z-index: 1;
}
.hr-scene {
  position: relative; width: 100%; max-width: 360px; height: 280px;
  font-family: 'DM Sans', sans-serif;
}
.hr-ambient {
  position: absolute; inset: 0; pointer-events: none; border-radius: 12px;
  background:
    radial-gradient(ellipse 60% 50% at 50% 100%, rgba(196,49,26,0.07) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 60%, rgba(196,49,26,0.05) 0%, transparent 60%);
}
/* LAPTOP */
.hr-laptop { position: absolute; left: 50%; top: 0; transform: translateX(-50%); width: 230px; }
.hr-laptop-lid {
  background: #2A1E17; border: 1.5px solid rgba(196,49,26,0.25);
  border-bottom: none; border-radius: 6px 6px 0 0; overflow: hidden;
}
.hr-laptop-screen { width: 100%; height: 150px; background: #F5F3E9; overflow: hidden; }
.hr-browser-bar {
  display: flex; align-items: center; gap: 5px; padding: 4px 8px;
  background: #EDE9D8; border-bottom: 1px solid rgba(28,20,16,0.12);
}
.hr-dots { display: flex; gap: 3px; }
.hr-dot { width: 6px; height: 6px; border-radius: 50%; }
.hr-dot.r { background: #FF5F57; } .hr-dot.y { background: #FFBD2E; } .hr-dot.g { background: #28CA41; }
.hr-url-bar {
  flex: 1; background: #FAF8F2; border: 1px solid rgba(28,20,16,0.12);
  border-radius: 3px; text-align: center; font-size: 7px;
  color: rgba(28,20,16,0.45); padding: 2px 0; letter-spacing: 0.04em;
}
.hr-site { padding: 6px 10px 0; display: flex; flex-direction: column; height: 124px; overflow: hidden; }
.hr-site-nav {
  display: flex; justify-content: space-between; align-items: center;
  border-bottom: 1px solid rgba(28,20,16,0.10); padding-bottom: 5px; margin-bottom: 7px;
}
.hr-site-logo { font-family: 'Cormorant Garamond', serif; font-size: 11px; font-style: italic; color: #1C1410; }
.hr-site-logo em { color: #C4311A; }
.hr-site-navlinks { display: flex; gap: 8px; }
.hr-site-navlink { font-size: 5.5px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(28,20,16,0.45); }
.hr-site-body { display: flex; flex: 1; gap: 7px; }
.hr-site-left { flex: 1; display: flex; flex-direction: column; }
.hr-site-eyebrow {
  font-size: 5px; letter-spacing: 0.2em; text-transform: uppercase;
  color: #C4311A; margin-bottom: 4px; display: flex; align-items: center; gap: 4px;
}
.hr-site-eyebrow::before { content: ''; width: 10px; height: 1px; background: #C4311A; }
.hr-site-h1 { font-family: 'Cormorant Garamond', serif; font-size: 14px; font-weight: 300; line-height: 1.15; color: #1C1410; margin-bottom: 5px; }
.hr-site-h1 em { font-style: italic; color: #C4311A; }
.hr-site-sub { font-size: 5.5px; color: rgba(28,20,16,0.6); line-height: 1.5; margin-bottom: 7px; }
.hr-site-btn {
  display: inline-block; background: #C4311A; color: #FAF8F2;
  font-size: 5px; font-weight: 500; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 3px 8px; align-self: flex-start;
}
.hr-site-stats { display: flex; gap: 8px; border-top: 1px solid rgba(28,20,16,0.10); padding-top: 5px; margin-top: auto; }
.hr-stat-n { font-family: 'Cormorant Garamond', serif; font-size: 11px; color: #1C1410; line-height: 1; }
.hr-stat-u { font-size: 6px; color: #C4311A; }
.hr-stat-l { font-size: 5px; letter-spacing: 0.05em; text-transform: uppercase; color: rgba(28,20,16,0.42); line-height: 1.3; }
.hr-site-panel {
  width: 56px; background: #EDE9D8; border-left: 1px solid rgba(28,20,16,0.10);
  padding: 5px; display: flex; flex-direction: column; gap: 4px;
}
.hr-panel-label { font-size: 4.5px; letter-spacing: 0.14em; text-transform: uppercase; color: #C4311A; margin-bottom: 2px; }
.hr-mini-card { background: #FAF8F2; border: 1px solid rgba(28,20,16,0.10); border-left: 1.5px solid #C4311A; padding: 3px 4px; }
.hr-mini-num { font-family: 'Cormorant Garamond', serif; font-size: 5px; font-style: italic; color: #C4311A; }
.hr-mini-title { font-family: 'Cormorant Garamond', serif; font-size: 7px; color: #1C1410; margin: 1px 0; }
.hr-mini-body { font-size: 4.5px; color: rgba(28,20,16,0.5); line-height: 1.3; }
.hr-laptop-base {
  background: linear-gradient(180deg, #2A1E17 0%, #1C1410 100%);
  height: 10px; border-radius: 0 0 4px 4px;
  border: 1.5px solid rgba(196,49,26,0.15); border-top: none;
  display: flex; justify-content: center; align-items: center;
}
.hr-laptop-notch { width: 30px; height: 3px; background: #1C1410; border-radius: 0 0 3px 3px; }
.hr-laptop-foot { height: 3px; background: #1C1410; border-radius: 0 0 2px 2px; border: 1px solid rgba(196,49,26,0.08); border-top: none; margin: 0 14px; }
/* PHONE */
.hr-phone {
  position: absolute; left: 4px; top: 44px; width: 68px;
  background: #2A1E17; border: 1.5px solid rgba(196,49,26,0.25);
  border-radius: 11px; overflow: hidden; box-shadow: 0 8px 32px rgba(28,20,16,0.35);
}
.hr-phone-bar {
  background: #1C1410; display: flex; justify-content: space-between;
  align-items: center; padding: 4px 7px; font-size: 6px; color: rgba(245,243,233,0.6);
}
.hr-phone-time { font-weight: 500; }
.hr-phone-icons { display: flex; gap: 3px; align-items: center; color: rgba(245,243,233,0.5); }
.hr-phone-screen { background: #F5F3E9; padding: 6px; min-height: 140px; }
.hr-phone-nav { display: flex; justify-content: space-between; align-items: center; margin-bottom: 6px; }
.hr-phone-logo { font-family: 'Cormorant Garamond', serif; font-size: 9px; font-style: italic; color: #1C1410; }
.hr-phone-logo em { color: #C4311A; }
.hr-hamburger { display: flex; flex-direction: column; gap: 2px; }
.hr-ham-line { width: 10px; height: 1px; background: rgba(28,20,16,0.5); }
.hr-phone-hero {
  background: #EDE9D8; border: 1px solid rgba(196,49,26,0.20);
  border-radius: 5px; padding: 6px; margin-bottom: 5px; position: relative; overflow: hidden;
}
.hr-phone-hero::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1.5px; background: #C4311A; }
.hr-phone-eyebrow { font-size: 5px; letter-spacing: 0.18em; text-transform: uppercase; color: #C4311A; margin-bottom: 3px; }
.hr-phone-h1 { font-family: 'Cormorant Garamond', serif; font-size: 10px; font-weight: 300; line-height: 1.2; color: #1C1410; margin-bottom: 5px; }
.hr-phone-h1 em { font-style: italic; color: #C4311A; }
.hr-phone-cta { display: inline-block; background: #C4311A; color: #FAF8F2; font-size: 5px; letter-spacing: 0.1em; text-transform: uppercase; padding: 2px 6px; }
.hr-phone-tags { display: flex; gap: 3px; margin-bottom: 5px; flex-wrap: wrap; }
.hr-phone-tag { font-size: 5px; color: #C4311A; border: 1px solid rgba(196,49,26,0.3); padding: 1px 4px; border-radius: 2px; }
.hr-phone-stat {
  background: #EDE9D8; border-radius: 4px; padding: 5px 6px;
  display: flex; align-items: center; justify-content: space-between; gap: 4px;
}
.hr-phone-stat-label { font-size: 5px; color: rgba(28,20,16,0.5); text-transform: uppercase; letter-spacing: 0.08em; }
.hr-phone-stat-val { font-family: 'Cormorant Garamond', serif; font-size: 11px; color: #1C1410; line-height: 1; }
.hr-phone-stat-val em { color: #C4311A; font-style: normal; }
.hr-phone-chart { width: 36px; height: 22px; color: #C4311A; }
.hr-phone-home { background: #2A1E17; display: flex; justify-content: center; padding: 4px 0; }
.hr-home-line { width: 24px; height: 2px; background: rgba(245,243,233,0.25); border-radius: 2px; }
/* TABLET */
.hr-tablet {
  position: absolute; right: 4px; top: 56px; width: 112px;
  background: #2A1E17; border: 1.5px solid rgba(196,49,26,0.22);
  border-radius: 8px; overflow: hidden; box-shadow: 0 8px 32px rgba(28,20,16,0.3);
}
.hr-tablet-screen { background: #F5F3E9; padding: 6px; }
.hr-tablet-nav {
  display: flex; justify-content: space-between; align-items: center;
  border-bottom: 1px solid rgba(28,20,16,0.10); padding-bottom: 4px; margin-bottom: 6px;
}
.hr-tablet-logo { font-family: 'Cormorant Garamond', serif; font-size: 9px; font-style: italic; color: #1C1410; }
.hr-tablet-logo em { color: #C4311A; }
.hr-tablet-links { display: flex; gap: 5px; }
.hr-tablet-link { font-size: 5px; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(28,20,16,0.42); }
.hr-tablet-h1 { font-family: 'Cormorant Garamond', serif; font-size: 11px; font-weight: 300; color: #1C1410; line-height: 1.2; margin-bottom: 3px; }
.hr-tablet-h1 em { font-style: italic; color: #C4311A; }
.hr-tablet-sub { font-size: 5.5px; color: rgba(28,20,16,0.55); line-height: 1.5; margin-bottom: 6px; }
.hr-tablet-cta { display: inline-block; background: #C4311A; color: #FAF8F2; font-size: 5px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; padding: 3px 8px; margin-bottom: 7px; }
.hr-tablet-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3px; }
.hr-tablet-card { border-radius: 3px; overflow: hidden; border: 1px solid rgba(28,20,16,0.10); }
.hr-tablet-img { height: 30px; background: #E5E0CC; position: relative; }
.hr-tablet-img.featured { background: linear-gradient(135deg, #DAD3B8 0%, rgba(196,49,26,0.15) 100%); }
.hr-tablet-img.featured::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: #C4311A; opacity: 0.7; }
.hr-tablet-label { padding: 3px 4px; font-size: 5px; color: rgba(28,20,16,0.55); background: #EDE9D8; }
.hr-tablet-base { background: #1C1410; height: 8px; border-top: 1px solid rgba(196,49,26,0.15); display: flex; align-items: center; justify-content: center; }
.hr-tablet-bar { width: 20px; height: 2px; background: rgba(245,243,233,0.2); border-radius: 2px; }

/* ── ORNAMENTAL DIVIDERS ── */
.or { display: flex; align-items: center; gap: 2rem; padding: 0 4rem; background: var(--b1); }
.or-line { flex: 1; height: 1px; background: var(--bdr); }
.or-gem { font-family: 'Cormorant Garamond', serif; font-size: 0.85rem; color: var(--brass); letter-spacing: 0.3em; opacity: 0.5; }
.brass-line { height: 1px; background: linear-gradient(90deg, transparent 0%, var(--brass) 20%, var(--brass) 80%, transparent 100%); opacity: 0.2; }

/* ── SHARED TYPOGRAPHY ── */
.eyebrow {
  font-size: 0.67rem; font-weight: 400; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--brass); margin-bottom: 1.4rem;
  display: flex; align-items: center; gap: 0.8rem;
}
.eyebrow::before { content: ''; width: 24px; height: 1px; background: var(--brass); }
.eyebrow.ctr { justify-content: center; }
.eyebrow.ctr::before { display: none; }

/* ── MANIFESTO ── */
.s-manifesto {
  padding: 9rem 4rem;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 9rem; background: var(--b1); align-items: start;
}
.s-manifesto h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 3.5vw, 3.4rem); font-weight: 300;
  line-height: 1.15; color: var(--ink0); margin-bottom: 2rem;
}
.s-manifesto h2 em { font-style: italic; color: var(--brass); }
.s-manifesto p { font-size: 0.97rem; font-weight: 300; color: var(--pearl-mid); line-height: 1.95; margin-bottom: 1rem; }
.mcard {
  padding: 2rem 2rem 2rem 2.2rem; border: 1px solid var(--bdr);
  background: var(--b2); position: relative;
  transition: border-color .4s, background .4s, box-shadow .4s;
}
.mcard + .mcard { border-top: none; }
.mcard:hover { border-color: var(--bdr3); background: var(--b1); box-shadow: 0 4px 24px rgba(196,49,26,0.07); }
.mcard::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 2px; height: 100%; background: var(--brass);
}
.mcard-num { font-family: 'Cormorant Garamond', serif; font-size: 0.75rem; font-style: italic; color: var(--brass); margin-bottom: 0.5rem; opacity: 0.7; }
.mcard-title { font-family: 'Cormorant Garamond', serif; font-size: 1.25rem; font-weight: 500; color: var(--ink0); margin-bottom: 0.5rem; }
.mcard-body { font-size: 0.86rem; font-weight: 300; color: var(--pearl-mid); line-height: 1.8; }

/* ── CREDENTIALS ── */
.s-cred {
  background: var(--b2); padding: 7rem 4rem;
  border-top: 1px solid var(--bdr); border-bottom: 1px solid var(--bdr);
}
.cred-head {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 6rem; align-items: end; margin-bottom: 5rem;
}
.cred-head h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3vw, 3rem); font-weight: 300;
  line-height: 1.15; color: var(--ink0);
}
.cred-head h2 em { font-style: italic; color: var(--brass); }
.cred-head-sub { font-size: 0.88rem; font-weight: 300; color: var(--pearl-mid); line-height: 1.85; text-align: right; }
.cred-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--bdr); }
.cred-card {
  background: var(--b2); padding: 2.8rem 2.2rem;
  transition: background .35s, box-shadow .35s; position: relative; overflow: hidden;
}
.cred-card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--brass), transparent);
  transform: scaleX(0); transition: transform .5s;
}
.cred-card:hover::after { transform: scaleX(1); }
.cred-card:hover { background: var(--b1); box-shadow: 0 2px 20px rgba(28,20,16,0.06); }
.cred-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.2rem; font-weight: 300; font-style: italic;
  color: rgba(196,49,26,0.10); line-height: 1; margin-bottom: 1rem;
}
.cred-title { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-weight: 500; color: var(--ink0); margin-bottom: 0.6rem; }
.cred-body { font-size: 0.84rem; font-weight: 300; color: var(--pearl-mid); line-height: 1.85; }
.cred-tag {
  display: inline-block; margin-top: 1.4rem;
  font-size: 0.6rem; font-weight: 400; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--brass);
  border: 1px solid var(--bdr3); padding: 0.25rem 0.65rem;
}

/* ── SERVICES ── */
.s-services { padding: 9rem 4rem; background: var(--b1); }
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--bdr); margin-top: 4rem; }
.svc-card {
  background: var(--b1); padding: 3.2rem 2.5rem;
  transition: background .35s, box-shadow .35s; position: relative; overflow: hidden;
  display: flex; flex-direction: column;
}
.svc-card:hover { background: var(--b2); box-shadow: 0 4px 30px rgba(28,20,16,0.06); }
.svc-card::before {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: var(--brass); transform: scaleX(0); transform-origin: left; transition: transform .5s;
}
.svc-card:hover::before { transform: scaleX(1); }
/* Featured card — dark ink on cream makes it pop */
.svc-card.featured { background: var(--ink0); border-top: 2px solid var(--brass); }
.svc-card.featured:hover { background: var(--ink1); }
.svc-card.featured .svc-tier    { color: rgba(245,243,233,0.4); }
.svc-card.featured .svc-title   { color: var(--b0); }
.svc-card.featured .svc-body    { color: rgba(245,243,233,0.65); }
.svc-card.featured .svc-price-sub { color: rgba(245,243,233,0.45); }
.svc-card.featured .svc-price-main { color: var(--brass-lite); }
.svc-card.featured .svc-features li { color: rgba(245,243,233,0.55); }
.svc-card.featured .svc-features li::before { color: var(--brass-lite); opacity: 0.8; }
.svc-card.featured .svc-divider { background: rgba(245,243,233,0.10); }
.svc-card.featured .svc-icon { border-color: rgba(230,58,25,0.4); background: rgba(230,58,25,0.12); }
.svc-card.featured::before { transform: scaleX(0.4); opacity: 0.5; }
.svc-head { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 0.6rem; }
.svc-icon {
  width: 40px; height: 40px; border: 1px solid var(--bdr3);
  display: flex; align-items: center; justify-content: center; background: var(--brass-dim);
}
.svc-icon svg { width: 18px; height: 18px; stroke: var(--brass); fill: none; stroke-width: 1.5; }
.svc-tier { font-family: 'Cormorant Garamond', serif; font-size: 0.82rem; font-style: italic; color: var(--pearl-low); }
.svc-title { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 500; color: var(--ink0); margin-bottom: 0.5rem; }
.svc-price-block { margin-bottom: 1.5rem; }
.svc-price-main { font-family: 'Cormorant Garamond', serif; font-size: 2.4rem; font-weight: 300; color: var(--brass); line-height: 1; letter-spacing: -0.01em; }
.svc-price-sub { font-size: 0.7rem; font-weight: 400; color: var(--pearl-low); letter-spacing: 0.08em; text-transform: uppercase; margin-top: 0.3rem; }
.svc-divider { height: 1px; background: var(--bdr); margin: 1.5rem 0; }
.svc-body { font-size: 0.86rem; font-weight: 300; color: var(--pearl-mid); line-height: 1.85; flex: 1; }
.svc-features { list-style: none; margin-top: 1.5rem; display: flex; flex-direction: column; gap: 0.6rem; }
.svc-features li { display: flex; align-items: flex-start; gap: 0.7rem; font-size: 0.8rem; font-weight: 300; color: var(--pearl-low); line-height: 1.5; }
.svc-features li::before { content: '—'; color: var(--brass); opacity: 0.7; flex-shrink: 0; }
.svc-cta {
  margin-top: 2rem; display: block; text-align: center;
  padding: 0.85rem 1.5rem; font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.13em; text-transform: uppercase;
  font-family: 'DM Sans', sans-serif; transition: all .3s;
  border: 1px solid var(--bdr3); color: var(--brass);
  background: transparent; cursor: pointer; width: 100%;
}
.svc-cta:hover { background: var(--brass); color: var(--b0); border-color: var(--brass); }
.svc-card.featured .svc-cta { background: var(--brass); color: var(--b0); border-color: var(--brass); }
.svc-card.featured .svc-cta:hover { background: var(--brass-lite); border-color: var(--brass-lite); }

/* ── PROCESS ── */
.s-process {
  padding: 9rem 4rem; background: var(--b3);
  border-top: 1px solid var(--bdr); border-bottom: 1px solid var(--bdr);
}
.proc-head { display: grid; grid-template-columns: 1fr 2fr; gap: 5rem; align-items: end; margin-bottom: 5rem; }
.proc-head h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3vw, 3rem); font-weight: 300;
  line-height: 1.15; color: var(--ink0);
}
.proc-head h2 em { font-style: italic; color: var(--brass); }
.proc-head-right { font-size: 0.88rem; font-weight: 300; color: var(--pearl-mid); line-height: 1.85; }
.proc-flow { display: grid; grid-template-columns: repeat(4, 1fr); position: relative; }
.proc-flow::before {
  content: ''; position: absolute;
  top: 22px; left: calc(12.5% + 8px); right: calc(12.5% + 8px);
  height: 1px; background: linear-gradient(90deg, var(--brass) 0%, rgba(196,49,26,0.15) 100%);
  pointer-events: none;
}
.proc-step { padding: 0 2rem 0 0; position: relative; }
.proc-step:last-child { padding-right: 0; }
.proc-step-top { display: flex; align-items: center; gap: 1rem; margin-bottom: 2rem; }
.proc-dot {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid var(--bdr3); background: var(--b3);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; position: relative; z-index: 1;
  transition: background .3s, border-color .3s, box-shadow .3s;
}
.proc-step:hover .proc-dot { background: var(--b1); border-color: var(--brass); box-shadow: 0 0 0 4px var(--brass-dim); }
.proc-dot-num { font-family: 'Cormorant Garamond', serif; font-size: 1rem; font-style: italic; color: var(--brass); font-weight: 400; }
.proc-title { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-weight: 500; color: var(--ink0); margin-bottom: 0.7rem; }
.proc-body { font-size: 0.84rem; font-weight: 300; color: var(--pearl-mid); line-height: 1.85; }

/* ── CTA BANNER ── */
.s-cta { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--bdr); }
.cta-left { padding: 8rem 4rem; background: var(--brass); position: relative; overflow: hidden; }
.cta-left::before {
  content: ''; position: absolute; width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.10) 0%, transparent 60%);
  top: -120px; right: -120px; pointer-events: none;
}
.cta-wm {
  position: absolute; bottom: -0.12em; right: -0.04em;
  font-family: 'Cormorant Garamond', serif;
  font-size: 24vw; font-weight: 600; font-style: italic;
  color: rgba(28,20,16,0.07); line-height: 1; pointer-events: none; user-select: none;
}
.cta-left .eyebrow { color: rgba(250,248,242,0.55); position: relative; z-index: 1; }
.cta-left .eyebrow::before { background: rgba(250,248,242,0.4); }
.cta-left h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 4vw, 4rem); font-weight: 300;
  line-height: 1.08; color: var(--b0); position: relative; z-index: 1; margin-top: 1rem;
}
.cta-left h2 em { font-style: italic; font-weight: 500; color: var(--b0); opacity: 0.88; }
.cta-right { padding: 8rem 4rem; background: var(--b2); display: flex; flex-direction: column; justify-content: center; gap: 2.5rem; }
.cta-right p { font-size: 0.98rem; font-weight: 300; color: var(--pearl-mid); line-height: 1.9; }
.cta-promise { display: flex; flex-direction: column; gap: 0.8rem; }
.cta-row { display: flex; align-items: center; gap: 0.9rem; font-size: 0.82rem; font-weight: 300; color: var(--pearl-mid); }
.cta-chk { width: 18px; height: 18px; border: 1px solid var(--bdr3); display: flex; align-items: center; justify-content: center; font-size: 0.62rem; color: var(--brass); flex-shrink: 0; }
.btn-pearl {
  background: var(--ink0); color: var(--b0);
  padding: 1.05rem 2.6rem; font-size: 0.76rem; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  text-decoration: none; transition: all .3s;
  font-family: 'DM Sans', sans-serif; display: inline-block;
  width: fit-content; cursor: pointer; border: none;
}
.btn-pearl:hover { background: var(--brass-deep); color: var(--b0); }

/* ── CONTACT ── */
.s-contact {
  padding: 9rem 4rem;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 9rem; background: var(--b2); border-top: 1px solid var(--bdr);
}
.c-h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3vw, 2.9rem); font-weight: 300;
  line-height: 1.15; color: var(--ink0); margin: 0.8rem 0 1.5rem;
}
.c-h2 em { font-style: italic; color: var(--brass); }
.c-p { font-size: 0.92rem; font-weight: 300; color: var(--pearl-mid); line-height: 1.95; margin-bottom: 2.5rem; }
.crows { display: flex; flex-direction: column; }
.crow {
  display: grid; grid-template-columns: 78px 1fr; gap: 1rem;
  padding: 0.9rem 0; border-bottom: 1px solid var(--bdr); align-items: baseline;
}
.crow:first-child { border-top: 1px solid var(--bdr); }
.crow-l { font-size: 0.62rem; font-weight: 400; letter-spacing: 0.16em; text-transform: uppercase; color: var(--brass); }
.crow-v { font-size: 0.88rem; font-weight: 300; color: var(--ink0); }
.crow-v a { color: var(--ink0); text-decoration: none; transition: color .3s; }
.crow-v a:hover { color: var(--brass); }
.sform { display: flex; flex-direction: column; }
.sfield { display: flex; flex-direction: column; border-bottom: 1px solid var(--bdr); }
.sfield:first-child { border-top: 1px solid var(--bdr); }
.sfield label { font-size: 0.6rem; font-weight: 400; letter-spacing: 0.18em; text-transform: uppercase; color: var(--brass); padding: 0.9rem 0 0.3rem; opacity: 0.85; }
.sfield input, .sfield select, .sfield textarea {
  background: transparent; border: none; padding: 0 0 0.85rem;
  font-family: 'DM Sans', sans-serif; font-size: 0.9rem; font-weight: 300;
  color: var(--ink0); outline: none; resize: none; width: 100%;
}
.sfield select { cursor: pointer; appearance: none; -webkit-appearance: none; }
.sfield select option { background: var(--b2); color: var(--ink0); }
.sfield input::placeholder, .sfield textarea::placeholder { color: var(--pearl-ghost); }
.sfield:focus-within { background: rgba(196,49,26,0.03); }
.sfield textarea { min-height: 85px; }
.form-legal { font-size: 0.7rem; font-weight: 300; color: var(--pearl-low); line-height: 1.65; margin: 1.6rem 0 1.3rem; }
.form-legal a { color: var(--brass); text-decoration: none; }
.form-btn {
  background: var(--brass); color: var(--b0); border: none;
  padding: 1rem 2.4rem; cursor: pointer;
  font-family: 'DM Sans', sans-serif; font-size: 0.74rem; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  display: flex; align-items: center; gap: 1rem;
  transition: background .3s; width: fit-content;
}
.form-btn:hover { background: var(--brass-lite); }
.form-btn.sent { background: #3A6B4A; pointer-events: none; }

/* ── PACKAGE INDICATOR ── */
.pkg-indicator {
  display: none; padding: 0.8rem 1.2rem; margin-bottom: 1.5rem;
  background: var(--brass-dim); border: 1px solid var(--bdr3);
  font-size: 0.76rem; font-weight: 400; color: var(--brass);
  align-items: center; gap: 0.7rem;
}
.pkg-indicator.visible { display: flex; }
.pkg-indicator-x { cursor: pointer; opacity: 0.6; font-size: 0.8rem; margin-left: auto; transition: opacity .2s; }
.pkg-indicator-x:hover { opacity: 1; }

/* ── FOOTER ── */
.footer {
  background: var(--ink0); padding: 5rem 4rem;
  display: grid; grid-template-columns: 1.3fr 1fr 1fr;
  gap: 4rem; border-top: 1px solid rgba(245,243,233,0.08);
}
.f-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem; font-weight: 500; letter-spacing: 0.06em;
  color: var(--b0); display: block; text-decoration: none; margin-bottom: 1rem;
}
.f-logo span { color: var(--brass-lite); font-style: italic; }
.f-p { font-size: 0.84rem; font-weight: 300; color: rgba(245,243,233,0.38); line-height: 1.85; }
.f-col-h { font-size: 0.62rem; font-weight: 400; letter-spacing: 0.2em; text-transform: uppercase; color: var(--brass-lite); margin-bottom: 1.4rem; opacity: 0.85; }
.f-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.85rem; }
.f-col a { font-size: 0.87rem; font-weight: 300; color: rgba(245,243,233,0.38); text-decoration: none; transition: color .3s; }
.f-col a:hover { color: var(--b0); }
.f-bottom {
  background: var(--ink1); padding: 1.4rem 4rem;
  display: flex; justify-content: space-between; align-items: center;
  border-top: 1px solid rgba(245,243,233,0.06);
}
.f-bottom p { font-size: 0.7rem; font-weight: 300; color: rgba(245,243,233,0.22); letter-spacing: 0.06em; }
.f-legal { display: flex; gap: 2rem; }
.f-legal a { font-size: 0.7rem; font-weight: 300; color: rgba(245,243,233,0.22); text-decoration: none; transition: color .3s; }
.f-legal a:hover { color: rgba(245,243,233,0.6); }

/* ── TOAST ── */
.toast {
  position: fixed; bottom: 2rem; left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--ink0); border: 1px solid var(--bdr3);
  padding: 0.9rem 1.8rem;
  font-size: 0.78rem; font-weight: 400; color: var(--b0);
  opacity: 0; transition: opacity .3s, transform .3s;
  pointer-events: none; z-index: 999; white-space: nowrap;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ── MODAL ── */
.sv-modal {
  position: fixed; inset: 0; z-index: 200;
  display: flex; align-items: center; justify-content: center;
}
.sv-modal[hidden] { display: none; }
.sv-modal-backdrop {
  position: absolute; inset: 0;
  background: rgba(28,20,16,0.55); backdrop-filter: blur(6px);
  cursor: pointer;
}
.sv-modal-panel {
  position: relative; z-index: 1;
  width: min(760px, 92vw); max-height: 82vh;
  background: var(--b1); border: 1px solid var(--bdr2);
  display: flex; flex-direction: column;
  box-shadow: 0 32px 80px rgba(28,20,16,0.18);
}
.sv-modal-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 2rem 2.5rem 1.5rem; border-bottom: 1px solid var(--bdr);
  flex-shrink: 0;
}
.sv-modal-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem; font-weight: 400; color: var(--ink0);
}
.sv-modal-close {
  background: none; border: none; cursor: pointer;
  color: var(--pearl-low); font-size: 1rem;
  width: 32px; height: 32px; display: flex; align-items: center; justify-content: center;
  transition: color .2s; padding: 0;
}
.sv-modal-close:hover { color: var(--ink0); }
.sv-modal-body {
  padding: 2rem 2.5rem 2.5rem;
  overflow-y: auto; flex: 1;
  font-size: 0.9rem; font-weight: 300;
  color: var(--pearl-mid); line-height: 1.9;
}
.sv-modal-body h1, .sv-modal-body h2, .sv-modal-body h3 {
  font-family: 'Cormorant Garamond', serif;
  color: var(--ink0); margin: 1.5rem 0 0.6rem; font-weight: 400;
}
.sv-modal-body h2 { font-size: 1.25rem; }
.sv-modal-body h3 { font-size: 1rem; }
.sv-modal-body p { margin-bottom: 0.9rem; }
.sv-modal-body a { color: var(--brass); }
.sv-modal-loading {
  display: flex; align-items: center; gap: 0.8rem;
  color: var(--pearl-low); font-size: 0.82rem;
}
.sv-modal-spinner {
  width: 16px; height: 16px; border-radius: 50%;
  border: 2px solid var(--bdr2); border-top-color: var(--brass);
  animation: sv-spin 0.7s linear infinite;
}
@keyframes sv-spin { to { transform: rotate(360deg); } }

/* ── SCROLL REVEAL ── */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .9s ease, transform .9s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  nav { padding: 0 1.2rem; gap: 0.75rem; }
  .nav-links { display: none; }
  .nav-logo { font-size: 1.2rem; white-space: nowrap; flex-shrink: 0; }
  .nav-cta {
    font-size: 0.62rem; padding: 0.5rem 0.9rem;
    letter-spacing: 0.08em; text-align: center;
    white-space: nowrap; flex-shrink: 0;
  }
  .hero { grid-template-columns: 1fr; }
  .hero-right { min-height: 360px; }
  .hero-left { padding: 4rem 2rem; }
  .hero-stars { display: none; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .hstat-border { border-left: none; padding-left: 0; }
  .s-manifesto, .s-contact { grid-template-columns: 1fr; gap: 3rem; padding: 5rem 2rem; }
  .cred-head, .proc-head { grid-template-columns: 1fr; gap: 1.5rem; }
  .cred-head-sub, .proc-head-right { text-align: left; }
  .cred-grid, .svc-grid { grid-template-columns: 1fr; }
  .proc-flow { grid-template-columns: 1fr; gap: 2.5rem; }
  .proc-flow::before { display: none; }
  .proc-step { padding: 0; }
  .s-cta { grid-template-columns: 1fr; }
  .s-cred, .s-services, .s-process { padding: 5rem 2rem; }
  .cta-left, .cta-right { padding: 5rem 2rem; }
  .footer { grid-template-columns: 1fr; gap: 2.5rem; padding: 3rem 2rem; }
  .f-bottom { flex-direction: column; gap: 0.8rem; padding: 1.4rem 2rem; text-align: center; }
  .or { padding: 0 2rem; }
  .sv-modal-panel { width: 95vw; max-height: 90vh; }
  .sv-modal-header, .sv-modal-body { padding: 1.5rem; }
}
