

:root {
  --bg:        #f3efe4;
  --bg2:       #e9e4d6;
  --surface:   #dfd9c8;
  --ink:       #231f14;
  --ink-soft:  rgba(35,31,20,0.58);
  --ink-dim:   rgba(35,31,20,0.30);
  --gold:      #8a6a2e;
  --gold-lt:   rgba(138,106,46,0.10);
  --gold-md:   rgba(138,106,46,0.22);
  --red:       #b89050;
  --border:    rgba(35,31,20,0.1);
  --border-hi: rgba(35,31,20,0.2);
  --display:   'Playfair Display', Georgia, serif;
  --body:      'Crimson Pro', Georgia, serif;
  --ui:        'Syne', sans-serif;
  --max:       1200px;
  --ease:      cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out:  cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; cursor: none !important; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--body);
  font-size: 18px;
  line-height: 1.7;
  overflow-x: hidden;
}

::selection { background: rgba(138,106,46,0.18); }


.cursor-dot {
  position: fixed; top: 0; left: 0;
  width: 6px; height: 6px;
  background: var(--ink);
  border-radius: 50%; z-index: 10001;
  pointer-events: none; transform: translate(-50%,-50%);
  transition: width .18s var(--ease-out), height .18s var(--ease-out),
              background .2s ease, opacity .3s ease;
  will-change: transform;
}
.cursor-ring {
  position: fixed; top: 0; left: 0;
  width: 34px; height: 34px;
  border: 1.5px solid rgba(35,31,20,0.22);
  border-radius: 50%; z-index: 10000;
  pointer-events: none; transform: translate(-50%,-50%);
  transition: width .4s var(--ease-out), height .4s var(--ease-out),
              border-color .3s ease;
  will-change: transform;
}
.cursor-ring.hovered { width: 52px; height: 52px; border-color: rgba(138,106,46,0.5); }
.cursor-dot.hovered  { width: 4px; height: 4px; background: var(--gold); }

.cursor-trail {
  position: fixed; top: 0; left: 0; border-radius: 50%;
  background: var(--ink); pointer-events: none; z-index: 9997;
  transform: translate(-50%,-50%);
  will-change: transform, opacity;
}

@media (hover: none) {
  .cursor-dot, .cursor-ring, .cursor-trail { display: none !important; }
  *, *::before, *::after { cursor: auto !important; }
}


.scroll-progress {
  position: fixed; top: 0; left: 0;
  height: 2px; width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--ink));
  z-index: 101; transition: width .08s linear;
}


.bg-orbs { position: fixed; inset: 0; pointer-events: none; z-index: 0; overflow: hidden; }
.orb { position: absolute; border-radius: 50%; }
.orb-1 {
  width: 900px; height: 900px;
  background: radial-gradient(circle, rgba(138,106,46,0.06) 0%, transparent 65%);
  top: -300px; right: -200px;
  animation: orbDrift1 36s ease-in-out infinite;
}
.orb-2 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(45,90,39,0.04) 0%, transparent 65%);
  bottom: -200px; left: -200px;
  animation: orbDrift2 28s ease-in-out infinite;
}
.orb-3 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(138,106,46,0.04) 0%, transparent 65%);
  top: 40%; left: 35%;
  animation: orbDrift3 42s ease-in-out infinite;
}
@keyframes orbDrift1 { 0%,100%{transform:translate(0,0)} 33%{transform:translate(-60px,80px)} 66%{transform:translate(40px,-40px)} }
@keyframes orbDrift2 { 0%,100%{transform:translate(0,0)} 40%{transform:translate(80px,-60px)} 70%{transform:translate(-40px,30px)} }
@keyframes orbDrift3 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(60px,-70px)} }


.v-mark { font-family: var(--display); font-style: italic; font-weight: 900; font-size: 1.3em; color: var(--gold); line-height: 1; }
.nav-wordmark { font-family: var(--ui); font-weight: 700; font-size: 0.9em; letter-spacing: -0.02em; color: var(--ink); text-transform: uppercase; }


.nav {
  position: fixed; inset: 0 0 auto; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 56px;
  transition: padding .4s var(--ease-out), background .4s ease,
              border-color .4s ease, box-shadow .4s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(243,239,228,.92);
  backdrop-filter: blur(18px);
  padding: 16px 56px;
  border-bottom-color: var(--border);
  box-shadow: 0 8px 32px rgba(35,31,20,.06);
}

.nav-logo { text-decoration: none; display: inline-flex; align-items: baseline; gap: 1px; }

.nav-links { display: flex; align-items: center; gap: 40px; }
.nav-links a {
  font-family: var(--ui); font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--ink-soft); text-decoration: none;
  transition: color .2s ease;
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -3px; left: 0; right: 0;
  height: 1px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s var(--ease-out);
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-cta {
  background: var(--ink) !important; color: var(--bg) !important;
  padding: 9px 20px; border-radius: 2px;
  transition: background .2s ease !important;
}
.nav-cta:hover { background: var(--gold) !important; }
.nav-cta::after { display: none !important; }

.magnetic { will-change: transform; }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; padding: 4px;
}
.hamburger span { display: block; width: 22px; height: 1.5px; background: var(--ink); transition: transform .25s ease, opacity .25s ease; }
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }

.mobile-menu {
  position: fixed; inset: 0; background: var(--ink); z-index: 99;
  padding: 80px 40px 48px; display: none; flex-direction: column; gap: 36px;
}
.mobile-menu.open { display: flex; }
.mm-close { position: absolute; top: 24px; right: 28px; background: none; border: none; color: rgba(242,240,233,.4); font-size: 1.2rem; font-family: var(--ui); padding: 6px; }
.mm-link { font-family: var(--display); font-size: 2.5rem; font-style: italic; font-weight: 400; color: rgba(242,240,233,.5); text-decoration: none; line-height: 1; transition: color .2s ease; }
.mm-link:hover { color: var(--bg); }
.mm-link.gold { color: var(--gold); }


.hero {
  min-height: 100vh; display: grid; grid-template-columns: 1fr 1fr;
  padding: 0 0 0 56px; position: relative; overflow: hidden; z-index: 1;
}
.hero::before {
  content: ''; position: absolute; top: 0; right: 0;
  width: 50%; height: 100%;
  background: var(--bg2); border-left: 2px solid var(--border);
}
.hero-inner {
  display: flex; flex-direction: column; justify-content: center;
  padding: 140px 64px 80px 0; position: relative; z-index: 1;
}

.hero-label {
  font-family: var(--ui); font-size: 0.7rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 32px;
}
.hero-title {
  font-family: var(--display);
  font-size: clamp(3.2rem, 6vw, 5.5rem);
  font-weight: 900; line-height: .95; letter-spacing: -.03em; margin-bottom: 32px;
}
.hero-title em { font-style: italic; color: var(--gold); font-weight: 400; }
.title-sub {
  display: block; font-family: var(--ui); font-size: .35em;
  font-weight: 800; letter-spacing: .18em; text-transform: uppercase;
  color: var(--ink-soft); margin-top: 12px; font-style: normal;
}
.hero-lead { font-size: 1.1rem; color: var(--ink-soft); line-height: 1.75; max-width: 480px; margin-bottom: 44px; }
.hero-lead strong { color: var(--ink); font-weight: 600; }
.hero-actions { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; margin-bottom: 28px; }

.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--ink); color: var(--bg); text-decoration: none;
  padding: 14px 28px; font-family: var(--ui); font-weight: 700;
  font-size: .8rem; letter-spacing: .08em; text-transform: uppercase;
  border-radius: 2px; border: none; position: relative; overflow: hidden;
  transition: background .2s ease;
}
.btn-primary::after {
  content: ''; position: absolute; top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.1), transparent);
  transition: left .5s ease;
}
.btn-primary:hover::after { left: 160%; }
.btn-primary:hover { background: var(--gold); }

.btn-text {
  font-family: var(--ui); font-size: .8rem; font-weight: 600;
  letter-spacing: .05em; color: var(--ink-soft); text-decoration: none;
  transition: color .2s ease;
}
.btn-text:hover { color: var(--gold); }


.hero-chips { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 4px; }
.hero-chip {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--ui); font-size: .65rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase; color: var(--ink-dim);
  background: rgba(35,31,20,.04); border: 1px solid var(--border);
  padding: 5px 12px; border-radius: 20px;
  transition: color .2s, border-color .2s, background .2s;
}
.hero-chip:hover { color: var(--ink-soft); border-color: var(--border-hi); background: rgba(35,31,20,.07); }
.chip-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--gold); animation: pulse 2.5s ease-in-out infinite; flex-shrink: 0;
}


.hero-aside {
  display: flex; flex-direction: column; justify-content: center;
  padding: 140px 56px 80px; gap: 0; position: relative; z-index: 1;
}
.aside-card { background: transparent; padding: 28px 0; border-bottom: 2px solid var(--border); transition: background .25s ease; }
.aside-card:first-child { border-top: 2px solid var(--border); }
.aside-card:hover { background: rgba(138,106,46,.03); }
.aside-num { font-family: var(--ui); font-size: .6rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.aside-card p { font-size: .95rem; color: var(--ink-soft); line-height: 1.65; }


.hero-aside-stats {
  display: flex; gap: 0; margin-top: 28px;
  border: 1px solid var(--border);
}
.has-item {
  flex: 1; padding: 16px 20px;
  border-right: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 4px;
  transition: background .2s;
}
.has-item:last-child { border-right: none; }
.has-item:hover { background: rgba(138,106,46,.05); }
.has-val {
  font-family: var(--display); font-size: 1.6rem; font-weight: 900;
  color: var(--ink); letter-spacing: -.03em; line-height: 1;
}
.has-label {
  font-family: var(--ui); font-size: .6rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; color: var(--ink-dim);
}


.ticker-wrap {
  width: 100%; border-top: 2px solid var(--border); border-bottom: 2px solid var(--border);
  padding: 14px 0; overflow: hidden;
  position: relative; z-index: 1; background: var(--bg2);
}
.ticker-wrap::before, .ticker-wrap::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2; pointer-events: none;
}
.ticker-wrap::before { left: 0; background: linear-gradient(to right, var(--bg2), transparent); }
.ticker-wrap::after  { right: 0; background: linear-gradient(to left, var(--bg2), transparent); }
.ticker-wrap:hover .ticker-track { animation-play-state: paused; }

.ticker-track {
  display: inline-flex; align-items: center; gap: 28px;
  white-space: nowrap; animation: tickerMove 45s linear infinite;
  font-family: var(--ui); font-size: .65rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase; color: var(--ink-dim);
}
.ticker-track span { flex-shrink: 0; transition: color .2s; }
.ticker-track span:hover { color: var(--gold); }
.tsep { color: var(--gold); opacity: .5; font-size: .55rem; }
@keyframes tickerMove { from{transform:translateX(0)} to{transform:translateX(-50%)} }


section { position: relative; z-index: 1; }
.section-head { margin-bottom: 64px; }
.section-kicker {
  font-family: var(--ui); font-size: .68rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px; display: block;
}
.section-title {
  font-family: var(--display); font-size: clamp(2.6rem, 5vw, 4.2rem);
  font-weight: 900; line-height: .95; letter-spacing: -.03em;
}
.section-title em { font-style: italic; font-weight: 400; color: var(--gold); }
.section-sub { margin-top: 24px; color: var(--ink-soft); font-size: 1rem; line-height: 1.8; max-width: 560px; }


.who { background: var(--ink); color: var(--bg); }
.who .section-kicker { color: var(--gold); }
.who .section-title { color: var(--bg); }
.who .section-title em { color: var(--gold); }
.who-inner {
  max-width: var(--max); margin: 0 auto; padding: 120px 56px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start;
}
.who-body p { margin-bottom: 20px; color: rgba(242,240,233,.65); font-size: 1.05rem; line-height: 1.8; }
.who-body p:last-child { margin-bottom: 0; }
.who-body em { color: var(--bg); font-style: italic; }
.who-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2px;
  background: rgba(242,240,233,.08);
}
.wstat {
  background: var(--ink); padding: 32px 28px;
  display: flex; flex-direction: column; gap: 8px;
  transition: background .25s ease;
  position: relative; overflow: hidden;
}
.wstat::after {
  content: ''; position: absolute; top: 0; left: 15%; right: 15%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0; transition: opacity .4s, left .4s, right .4s;
}
.wstat:hover { background: rgba(255,255,255,.03); }
.wstat:hover::after { opacity: 1; left: 5%; right: 5%; }
.wstat-val {
  font-family: var(--display); font-size: 2.8rem; font-weight: 900;
  color: whitesmoke; line-height: 1; letter-spacing: -.03em;
}
.wstat-label { font-family: var(--ui); font-size: .72rem; font-weight: 600; letter-spacing: .04em; color: rgba(242,240,233,.4); line-height: 1.4; }


.ethique { background: var(--bg); }
.ethique-inner { max-width: var(--max); margin: 0 auto; padding: 120px 56px; }
.ethique-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; background: var(--border); }
.ecard {
  background: var(--bg); padding: 40px 36px;
  position: relative; overflow: hidden;
  transition: background .3s ease;
}
.ecard::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(138,106,46,.03), transparent);
  opacity: 0; transition: opacity .4s;
}
.ecard:hover { background: var(--bg2); }
.ecard:hover::before { opacity: 1; }
.ecard-icon { font-size: 1.4rem; color: var(--gold); margin-bottom: 20px; line-height: 1; transition: transform .3s var(--ease-out); }
.ecard:hover .ecard-icon { transform: scale(1.2); }
.ecard h3 {
  font-family: var(--ui); font-size: .85rem; font-weight: 800;
  letter-spacing: .04em; text-transform: uppercase; color: var(--ink); margin-bottom: 14px;
}
.ecard p { font-size: .95rem; color: var(--ink-soft); line-height: 1.75; }


.conviction-strip {
  background: var(--ink); position: relative; z-index: 1;
  overflow: hidden;
}
.conviction-strip::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 2px; background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.conviction-strip::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px; background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.conviction-inner {
  max-width: var(--max); margin: 0 auto; padding: 80px 56px;
  display: flex; flex-direction: column; align-items: center;
  text-align: center; position: relative;
}
.conv-mark {
  font-family: var(--display); font-size: 8rem; font-style: italic;
  color: var(--gold); opacity: .12; line-height: .6;
  margin-bottom: -20px; user-select: none;
}
.conv-quote {
  font-family: var(--display); font-size: clamp(1.6rem, 3.5vw, 2.8rem);
  font-style: italic; font-weight: 400; color: rgba(242,240,233,.85);
  line-height: 1.25; letter-spacing: -.02em; max-width: 760px;
  position: relative; z-index: 1;
}
.conv-attr {
  margin-top: 24px; font-family: var(--ui); font-size: .7rem;
  font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold); opacity: .7;
}


.process { background: var(--bg2); border-top: 2px solid var(--border); border-bottom: 2px solid var(--border); }
.process-inner { max-width: var(--max); margin: 0 auto; padding: 120px 56px; }
.process-steps { display: flex; flex-direction: column; gap: 0; }
.pstep {
  display: grid; grid-template-columns: 120px 1fr; gap: 48px;
  padding: 48px 0; border-bottom: 2px solid var(--border); align-items: start;
  transition: background .25s ease;
}
.pstep:first-child { border-top: 2px solid var(--border); }
.pstep:hover { background: rgba(138,106,46,.03); }
.pstep-num {
  font-family: var(--display); font-size: 3rem; font-weight: 900;
  color: var(--gold); opacity: .35; line-height: 1; letter-spacing: -.04em; padding-top: 4px;
  transition: opacity .3s ease;
}
.pstep:hover .pstep-num { opacity: .65; }
.pstep-content h3 {
  font-family: var(--ui); font-size: .95rem; font-weight: 800;
  letter-spacing: .04em; text-transform: uppercase; color: var(--ink); margin-bottom: 14px;
}
.pstep-content p { font-size: 1rem; color: var(--ink-soft); line-height: 1.8; max-width: 680px; }


.services { background: var(--bg); }
.services-inner { max-width: var(--max); margin: 0 auto; padding: 120px 56px; }
.services-list { display: flex; flex-direction: column; gap: 0; }
.svc {
  display: grid; grid-template-columns: 280px 1fr; gap: 64px;
  padding: 48px 0; border-bottom: 2px solid var(--border); align-items: start;
  transition: background .25s ease;
}
.svc:first-child { border-top: 2px solid var(--border); }
.svc:hover { background: rgba(138,106,46,.025); }
.svc-left { display: flex; flex-direction: column; gap: 10px; }
.svc-num { font-family: var(--ui); font-size: .6rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); }
.svc-left h3 { font-family: var(--display); font-size: 1.4rem; font-weight: 700; font-style: italic; color: var(--ink); line-height: 1.2; letter-spacing: -.02em; }
.svc-right p { font-size: 1rem; color: var(--ink-soft); line-height: 1.8; margin-bottom: 20px; }
.svc-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.svc-tags span {
  font-family: var(--ui); font-size: .62rem; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase; color: var(--gold);
  background: var(--gold-lt); padding: 3px 10px; border-radius: 2px;
  transition: background .2s, color .2s;
}
.svc:hover .svc-tags span { background: var(--gold-md); }
.svc-special .svc-num { color: var(--ink-dim); }
.svc-special .svc-left h3 { color: var(--ink-soft); }


.why { background: var(--ink); color: var(--bg); }
.why-inner {
  max-width: var(--max); margin: 0 auto; padding: 120px 56px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start;
}
.why .section-kicker { color: var(--gold); }
.why .section-title { color: var(--bg); }
.why .section-title em { color: var(--gold); }
.why-body p { font-size: 1.05rem; color: rgba(242,240,233,.65); line-height: 1.85; margin-bottom: 22px; }
.why-body p:last-child { margin-bottom: 0; }
.why-body em { color: var(--bg); font-style: italic; }


.form-section { background: var(--bg2); border-top: 2px solid var(--border); }
.form-outer { max-width: 820px; margin: 0 auto; padding: 120px 56px 140px; }
.form-wrapper { background: var(--bg); border: 2px solid var(--border); }
.form-progress-wrap { height: 3px; background: var(--border); }
.progress-bar { height: 100%; background: linear-gradient(90deg, var(--gold), var(--ink)); width: 25%; transition: width .5s var(--ease-out); }
.form-steps-indicator {
  display: flex; align-items: center; padding: 24px 40px; border-bottom: 2px solid var(--border);
}
.fsi { display: flex; flex-direction: column; align-items: center; gap: 3px; }
.fsi-num { font-family: var(--ui); font-size: .68rem; font-weight: 800; letter-spacing: .08em; color: var(--ink-dim); }
.fsi-label { font-family: var(--ui); font-size: .58rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-dim); }
.fsi.active .fsi-num, .fsi.active .fsi-label { color: var(--gold); }
.fsi.done .fsi-num, .fsi.done .fsi-label { color: var(--ink-soft); }
.fsi-line { flex: 1; height: 2px; background: var(--border); margin: 0 16px; }

form { padding: 48px 40px; }
.form-step { display: none; }
.form-step.active { display: block; animation: fadeUp .35s var(--ease); }
.step-title { font-family: var(--display); font-size: 1.9rem; font-weight: 700; font-style: italic; letter-spacing: -.02em; margin-bottom: 8px; color: var(--ink); }
.step-desc { font-size: .95rem; color: var(--ink-soft); margin-bottom: 36px; line-height: 1.6; }
.field-group { display: flex; flex-direction: column; gap: 24px; margin-bottom: 36px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label { font-family: var(--ui); font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-soft); display: flex; align-items: center; gap: 8px; }
.req { color: var(--gold); }
.opt { font-size: .58rem; color: var(--ink-dim); font-weight: 600; letter-spacing: .04em; text-transform: none; }
.field input, .field textarea {
  background: var(--bg2); border: 2px solid var(--border); color: var(--ink);
  font-family: var(--body); font-size: 1rem; padding: 12px 16px; width: 100%;
  resize: vertical; border-radius: 0; -webkit-appearance: none;
  transition: border-color .2s ease;
}
.field input:focus, .field textarea:focus { border-color: var(--gold); outline: none; }
.field input::placeholder, .field textarea::placeholder { color: var(--ink-dim); font-style: italic; }
.field input.error, .field textarea.error { border-color: #c04040; }

.type-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; }
.type-option { cursor: pointer; }
.type-option input { display: none; }
.type-option span {
  display: flex; align-items: center; justify-content: center;
  background: var(--bg2); border: 2px solid var(--border); padding: 12px 10px;
  font-family: var(--ui); font-size: .72rem; font-weight: 700;
  letter-spacing: .04em; text-transform: uppercase; color: var(--ink-soft);
  text-align: center; cursor: pointer; line-height: 1.3;
  transition: background .2s, border-color .2s, color .2s;
}
.type-option span:hover { border-color: var(--border-hi); color: var(--ink); }
.type-option input:checked + span { border-color: var(--gold); background: var(--gold-lt); color: var(--gold); }

.urgency-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; }
.urgency-option { cursor: pointer; }
.urgency-option input { display: none; }
.urgency-option span {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  background: var(--bg2); border: 2px solid var(--border); padding: 18px 12px;
  text-align: center; cursor: pointer; transition: background .2s, border-color .2s;
}
.urgency-option span strong { font-family: var(--ui); font-size: .78rem; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; color: var(--ink-soft); }
.urgency-option span small  { font-family: var(--ui); font-size: .62rem; font-weight: 600; color: var(--ink-dim); letter-spacing: .04em; }
.urgency-option input:checked + span { border-color: var(--gold); background: var(--gold-lt); }
.urgency-option input:checked + span strong { color: var(--gold); }

.checkbox-field label { display: flex; align-items: flex-start; gap: 12px; cursor: pointer; }
.checkbox-field input[type=checkbox] { width: 16px; height: 16px; flex-shrink: 0; margin-top: 3px; accent-color: var(--gold); cursor: pointer; }
.checkbox-field span { font-size: .9rem; color: var(--ink-soft); line-height: 1.6; }

.form-nav { display: flex; align-items: center; justify-content: flex-end; gap: 12px; }
.btn-prev {
  display: inline-flex; align-items: center; gap: 6px;
  background: none; border: 2px solid var(--border); color: var(--ink-soft);
  padding: 10px 20px; font-family: var(--ui); font-size: .75rem; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase; border-radius: 0;
  transition: color .2s, border-color .2s;
}
.btn-prev:hover { color: var(--ink); border-color: var(--border-hi); }

.btn-next, .btn-submit {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--ink); color: var(--bg); border: none;
  padding: 12px 24px; font-family: var(--ui); font-size: .78rem;
  font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
  border-radius: 0; position: relative; overflow: hidden;
  transition: background .2s ease;
}
.btn-next:hover, .btn-submit:hover { background: var(--gold); }

.form-success { display: none; text-align: center; padding: 80px 40px; }
.form-success.visible { display: block; animation: fadeUp .5s var(--ease); }
.success-icon {
  width: 56px; height: 56px; border: 2px solid var(--gold); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 1.4rem; font-family: var(--ui); font-weight: 800;
  margin: 0 auto 28px;
}
.form-success h3 { font-family: var(--display); font-size: 2rem; font-weight: 700; font-style: italic; margin-bottom: 16px; letter-spacing: -.02em; }
.form-success p { color: var(--ink-soft); max-width: 420px; margin: 0 auto; font-size: 1rem; line-height: 1.75; }


.footer { background: var(--ink); color: var(--bg); }

.footer-display {
  border-bottom: 2px solid rgba(242,240,233,.06);
}
.footer-display-inner {
  max-width: var(--max); margin: 0 auto;
  padding: 72px 56px 64px;
  display: flex; align-items: flex-end;
  justify-content: space-between; gap: 48px;
  flex-wrap: wrap;
}
.footer-big {
  font-family: var(--display);
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 900; line-height: .88;
  letter-spacing: -.04em; color: var(--bg); display: block;
}
.footer-big em { font-style: italic; color: var(--gold); font-weight: 400; }
.footer-dot {
  color: transparent;
  -webkit-text-stroke: 2px rgba(138,106,46,.35);
  transition: -webkit-text-stroke-color .4s;
}
.footer:hover .footer-dot { -webkit-text-stroke-color: var(--gold); }

.footer-display-right {
  display: flex; flex-direction: column; gap: 24px;
  align-items: flex-start; padding-bottom: 8px;
}
.footer-tagline-big {
  font-family: var(--body); font-size: 1.1rem;
  color: rgba(242,240,233,.45); line-height: 1.65;
}
.footer-tagline-big em { font-style: italic; color: rgba(242,240,233,.65); }
.footer-cta {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--ui); font-size: .75rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--gold); text-decoration: none;
  border-bottom: 1px solid rgba(138,106,46,.35);
  padding-bottom: 3px; transition: border-color .3s, color .3s;
}
.footer-cta:hover { color: var(--bg); border-bottom-color: rgba(242,240,233,.3); }

.footer-bottom { }
.footer-inner { max-width: var(--max); margin: 0 auto; padding: 32px 56px 48px; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.footer .v-mark { color: var(--gold); }
.footer .nav-wordmark { color: var(--bg); opacity: .6; }
.footer-logo { display: inline-flex; align-items: baseline; }
.footer-links { display: flex; align-items: center; gap: 12px; font-family: var(--ui); font-size: .65rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.footer-links a { color: rgba(242,240,233,.3); text-decoration: none; transition: color .2s; }
.footer-links a:hover { color: var(--gold); }
.footer-sep { color: rgba(242,240,233,.15); }
.footer-links span { color: rgba(242,240,233,.3); }
.footer-copy { font-family: var(--ui); font-size: .65rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: rgba(242,240,233,.2); }


.reveal {
  opacity: 0; transform: translateY(32px);
  transition: opacity .75s var(--ease-out), transform .75s var(--ease-out);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }


@keyframes fadeUp { from{opacity:0;transform:translateY(16px)} to{opacity:1;transform:translateY(0)} }
@keyframes pulse  { 0%,100%{opacity:1} 50%{opacity:.35} }


@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; padding: 0 40px; }
  .hero::before { display: none; }
  .hero-inner { padding: 140px 0 40px; }
  .hero-aside { padding: 0 0 80px; }
  .who-inner, .why-inner { grid-template-columns: 1fr; gap: 60px; }
  .ethique-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px) {
  .nav { padding: 16px 24px; }
  .nav.scrolled { padding: 12px 24px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .who-inner, .ethique-inner, .process-inner, .services-inner, .why-inner { padding: 80px 24px; }
  .form-outer { padding: 80px 24px 100px; }
  .hero { padding: 0 24px; }
  .hero-inner { padding: 120px 0 40px; }
  .hero-aside { padding: 0 0 60px; }
  .pstep { grid-template-columns: 60px 1fr; gap: 24px; }
  .svc { grid-template-columns: 1fr; gap: 20px; }
  .ethique-grid { grid-template-columns: 1fr; }
  .type-grid { grid-template-columns: repeat(2,1fr); }
  form { padding: 32px 24px; }
  .footer-display-inner { padding: 48px 24px 40px; flex-direction: column; align-items: flex-start; }
  .footer-inner { padding: 24px; flex-direction: column; align-items: flex-start; gap: 12px; }
  .conviction-inner { padding: 60px 24px; }
}
@media (max-width: 480px) {
  .urgency-grid, .type-grid { grid-template-columns: 1fr; }
  .who-stats { grid-template-columns: 1fr; }
  .hero-title { font-size: 2.8rem; }
}
