@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400;1,500&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,300&family=Courier+Prime:wght@400&display=swap');

/* ─── Tokens ──────────────────────────────────────────── */
:root {
  --bg:          #F8F5F0;
  --surface:     #FFFFFF;
  --alt:         #EFEBE3;
  --ink:         #1A1714;
  --mid:         #4A443C;
  --muted:       #9A9189;
  --accent:      #C8922A;
  --accent-d:    #A8771E;
  --rule:        #DDD8CF;
  --f-display:   'Cormorant Garamond', Georgia, serif;
  --f-body:      'DM Sans', system-ui, sans-serif;
  --f-mono:      'Courier Prime', monospace;
  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --max:         1280px;
  --gx:          72px;
}

/* ─── Reset ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--f-body);
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font-family: inherit; }

/* ─── Cursor ──────────────────────────────────────────── */
.cursor-dot, .cursor-ring {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: opacity 300ms ease;
}
.cursor-dot {
  width: 6px; height: 6px;
  background: var(--accent);
  top: 0; left: 0;
}
.cursor-ring {
  width: 36px; height: 36px;
  border: 1px solid var(--accent);
  top: 0; left: 0;
  opacity: 0.5;
  transition: width 300ms var(--ease-out), height 300ms var(--ease-out), opacity 300ms ease;
}
.cursor-ring.expand {
  width: 56px; height: 56px;
  opacity: 0.25;
}
body:not(:hover) .cursor-dot,
body:not(:hover) .cursor-ring { opacity: 0; }

/* ─── Page Loader ─────────────────────────────────────── */
.loader {
  position: fixed;
  inset: 0;
  background: var(--ink);
  z-index: 9000;
  display: flex;
  align-items: flex-end;
  padding: 40px 72px;
  transform: translateY(0);
  transition: transform 900ms var(--ease-in-out);
}
.loader.done { transform: translateY(-100%); pointer-events: none; }
.loader__text {
  font-family: var(--f-display);
  font-size: clamp(40px, 6vw, 80px);
  font-style: italic;
  color: #F8F5F0;
  overflow: hidden;
  white-space: nowrap;
}
.loader__text span {
  display: inline-block;
  transform: translateY(110%);
  transition: transform 700ms var(--ease-out);
}
.loader__text span.show { transform: translateY(0); }
.loader__bar {
  position: absolute;
  bottom: 0; left: 0;
  height: 2px;
  background: var(--accent);
  width: 0;
  transition: width 1100ms var(--ease-out);
}

/* ─── Layout ──────────────────────────────────────────── */
.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gx);
}
.sec { padding: 112px 0; }
.sec--alt { background: var(--alt); }
.sec--dark { background: var(--ink); }
.sec--white { background: var(--surface); }

/* ─── Typography ──────────────────────────────────────── */
.label {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
}
.display {
  font-family: var(--f-display);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(56px, 8vw, 108px);
  line-height: 0.95;
  letter-spacing: -0.01em;
}
.h1 {
  font-family: var(--f-display);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(40px, 5.5vw, 72px);
  line-height: 1.05;
}
.h2 {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.1;
}
.h3 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.2;
  font-style: italic;
}
.body-lg { font-size: 17px; line-height: 1.85; color: var(--mid); font-weight: 300; }
.body-md { font-size: 15px; line-height: 1.8; color: var(--mid); font-weight: 300; }
.body-sm { font-size: 13px; line-height: 1.7; color: var(--muted); }

/* ─── Reveal animations ───────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 800ms var(--ease-out), transform 800ms var(--ease-out);
}
.reveal.vis { opacity: 1; transform: none; }
.reveal-up {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 900ms var(--ease-out), transform 900ms var(--ease-out);
}
.reveal-up.vis { opacity: 1; transform: none; }

/* Clip-path word reveal */
.clip-word {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  margin-right: 0.18em;
}
.clip-word > span {
  display: inline-block;
  transform: translateY(105%);
  transition: transform var(--ease-out);
}

/* ─── Animated rule ───────────────────────────────────── */
.line {
  width: 0;
  height: 1px;
  background: var(--rule);
  transition: width 1100ms var(--ease-out);
  margin: 28px 0;
}
.line.vis { width: 100%; }
.line--gold {
  height: 2px;
  width: 0;
  background: var(--accent);
  transition: width 600ms var(--ease-out) 200ms;
  margin: 16px 0 28px;
}
.line--gold.vis { width: 48px; }

/* ─── Navigation ──────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 800;
  padding: 0 var(--gx);
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  transition: background 400ms ease, backdrop-filter 400ms ease, border-bottom 400ms ease;
}
.nav.solid {
  background: rgba(248,245,240,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--rule);
}
.nav__brand {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.nav__name {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 20px;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1;
}
.nav__loc {
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.nav__links {
  list-style: none;
  display: flex;
  gap: 44px;
  align-items: center;
}
.nav__links a {
  font-size: 13px;
  font-weight: 400;
  color: var(--mid);
  position: relative;
  padding-bottom: 2px;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0;
  width: 100%; height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 280ms var(--ease-out);
}
.nav__links a:hover::after,
.nav__links a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}
.nav__links a.active { color: var(--accent); }
.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 22px;
  background: var(--ink);
  color: #fff !important;
  font-size: 12px !important;
  font-weight: 500;
  letter-spacing: 0.04em;
  border-radius: 100px;
  transition: background 220ms ease, transform 160ms ease;
}
.nav__cta::after { display: none !important; }
.nav__cta:hover { background: var(--accent); transform: scale(1.03); }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav__burger span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--ink);
  transition: transform 280ms ease, opacity 280ms ease;
}
.nav__burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile nav */
.nav__drawer {
  display: none;
  position: fixed;
  top: 76px; left: 0; right: 0; bottom: 0;
  background: var(--bg);
  z-index: 700;
  padding: 48px var(--gx);
  flex-direction: column;
  gap: 32px;
  transform: translateX(100%);
  transition: transform 380ms var(--ease-out);
}
.nav__drawer.open { transform: none; }
.nav__drawer a {
  font-family: var(--f-display);
  font-size: 36px;
  font-style: italic;
  font-weight: 300;
  color: var(--ink);
  border-bottom: 1px solid var(--rule);
  padding-bottom: 24px;
}

/* ─── Hero ────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  padding: 140px 0 80px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 80px;
  align-items: end;
}
.hero__eyebrow { margin-bottom: 32px; }
.hero__title { margin-bottom: 36px; }
.hero__sub {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--mid);
  max-width: 540px;
  margin-bottom: 48px;
}
.hero__actions { display: flex; gap: 24px; align-items: center; }

.hero__deco {
  align-self: center;
  text-align: right;
  opacity: 0;
  animation: decoFly 1.2s var(--ease-out) 1.2s forwards;
}
@keyframes decoFly {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: none; }
}
.hero__deco-n {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(120px, 16vw, 210px);
  line-height: 1;
  color: var(--rule);
  display: block;
  user-select: none;
  transition: color 400ms ease;
}
.hero__deco:hover .hero__deco-n { color: transparent; -webkit-text-stroke: 1px var(--accent); }
.hero__deco-l {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 40px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeIn 800ms ease 2s forwards;
}
@keyframes fadeIn { to { opacity: 1; } }
.scroll-hint span {
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}
.scroll-hint__line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollLine 1.6s ease-in-out infinite;
}
@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ─── Buttons ─────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  cursor: pointer;
  border: none;
  transition: transform 200ms ease, background 200ms ease, box-shadow 200ms ease;
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.1);
  opacity: 0;
  transition: opacity 200ms ease;
}
.btn:hover::before { opacity: 1; }
.btn--primary {
  background: var(--ink);
  color: #fff;
  box-shadow: 0 4px 20px rgba(26,23,20,0.18);
}
.btn--primary:hover { background: var(--accent); box-shadow: 0 6px 28px rgba(200,146,42,0.3); transform: translateY(-2px); }
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--rule);
}
.btn--ghost:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }
.btn--full { width: 100%; justify-content: center; }
.btn .arrow { transition: transform 220ms ease; }
.btn:hover .arrow { transform: translateX(4px); }

/* ─── Marquee ─────────────────────────────────────────── */
.marquee-wrap {
  overflow: hidden;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 20px 0;
  background: var(--surface);
}
.marquee-track {
  display: flex;
  gap: 0;
  animation: marquee 30s linear infinite;
  width: max-content;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-item {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 0 40px;
  white-space: nowrap;
}
.marquee-item span {
  font-family: var(--f-display);
  font-size: 18px;
  font-style: italic;
  color: var(--mid);
}
.marquee-item .dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─── Stats ───────────────────────────────────────────── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat {
  padding: 56px 40px;
  border-right: 1px solid var(--rule);
  position: relative;
}
.stat:last-child { border-right: none; }
.stat::before {
  content: '';
  position: absolute;
  top: 0; left: 40px;
  height: 2px;
  width: 0;
  background: var(--accent);
  transition: width 800ms var(--ease-out);
}
.stat.vis::before { width: 32px; }
.stat__num {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(52px, 6vw, 80px);
  color: var(--accent);
  line-height: 1;
  display: block;
  margin-bottom: 10px;
}
.stat__label {
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--mid);
  margin-bottom: 8px;
}
.stat__note { font-size: 12px; color: var(--muted); line-height: 1.5; }

/* ─── Grid layouts ────────────────────────────────────── */
.g2 { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.g2--60 { grid-template-columns: 60% 1fr; }
.g2--40 { grid-template-columns: 1fr 60%; }
.g2 p + p { margin-top: 20px; }

/* ─── Service list ────────────────────────────────────── */
.svc-list { list-style: none; display: flex; flex-direction: column; gap: 1px; }
.svc-item {
  padding: 24px 0;
  border-bottom: 1px solid var(--rule);
  display: flex;
  gap: 24px;
  align-items: flex-start;
  cursor: default;
  transition: padding-left 280ms var(--ease-out);
}
.svc-item:hover { padding-left: 8px; }
.svc-item__num {
  font-family: var(--f-mono);
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 0.08em;
  margin-top: 6px;
  flex-shrink: 0;
}
.svc-item__name {
  font-weight: 500;
  font-size: 15px;
  color: var(--ink);
  margin-bottom: 4px;
}
.svc-item__desc { font-size: 13px; color: var(--mid); line-height: 1.65; }
.svc-item__arrow {
  margin-left: auto;
  margin-top: 4px;
  color: var(--accent);
  font-size: 18px;
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 220ms ease, transform 220ms ease;
  flex-shrink: 0;
}
.svc-item:hover .svc-item__arrow { opacity: 1; transform: none; }

/* ─── Cards (industries) ──────────────────────────────── */
.card-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}
.card {
  background: var(--surface);
  padding: 32px 24px 40px;
  transition: background 280ms ease;
  cursor: default;
}
.card:hover { background: var(--bg); }
.card__tag {
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.card__name {
  font-family: var(--f-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 12px;
}
.card__desc { font-size: 12px; line-height: 1.65; color: var(--mid); }

/* ─── Pull quote ──────────────────────────────────────── */
.pull {
  font-family: var(--f-display);
  font-size: clamp(24px, 3.5vw, 44px);
  font-style: italic;
  font-weight: 300;
  line-height: 1.35;
  color: var(--ink);
}
.pull-attr {
  font-size: 12px;
  color: var(--muted);
  margin-top: 20px;
  letter-spacing: 0.04em;
}

/* ─── Timeline ────────────────────────────────────────── */
.timeline { position: relative; }
.timeline::before {
  content: '';
  position: absolute;
  top: 12px; bottom: 12px;
  left: 0;
  width: 1px;
  background: var(--rule);
}
.tl-item {
  padding-left: 32px;
  padding-bottom: 44px;
  position: relative;
}
.tl-item:last-child { padding-bottom: 0; }
.tl-dot {
  position: absolute;
  left: -4px; top: 6px;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--accent);
  transition: background 300ms ease;
}
.tl-item:hover .tl-dot { background: var(--accent); }
.tl-year {
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}
.tl-title { font-weight: 500; font-size: 15px; color: var(--ink); margin-bottom: 6px; }
.tl-desc { font-size: 13px; color: var(--mid); line-height: 1.65; }

/* ─── Values ──────────────────────────────────────────── */
.val-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 40px; margin-top: 60px; }
.val { padding-top: 28px; border-top: 1px solid var(--rule); transition: border-top-color 300ms ease; }
.val:hover { border-top-color: var(--accent); }
.val__name { font-weight: 500; font-size: 14px; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 12px; color: var(--ink); }
.val__body { font-size: 14px; line-height: 1.7; color: var(--mid); }

/* ─── Process ─────────────────────────────────────────── */
.proc-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; margin-top: 64px; }
.proc-step {
  padding: 0 36px 0 0;
  margin-right: 36px;
  border-right: 1px solid var(--rule);
}
.proc-step:last-child { border-right: none; margin-right: 0; padding-right: 0; }
.proc-step__n {
  font-family: var(--f-display);
  font-size: 72px;
  font-weight: 300;
  color: var(--accent);
  opacity: 0.35;
  line-height: 1;
  margin-bottom: 20px;
  transition: opacity 300ms ease;
}
.proc-step:hover .proc-step__n { opacity: 1; }
.proc-step__title { font-weight: 500; font-size: 15px; margin-bottom: 12px; }
.proc-step__body { font-size: 13px; color: var(--mid); line-height: 1.7; }

/* ─── Compliance cards ────────────────────────────────── */
.comp-list { list-style: none; display: flex; flex-direction: column; gap: 2px; }
.comp-item {
  background: var(--surface);
  padding: 20px 24px;
  border-left: 2px solid transparent;
  transition: border-left-color 280ms ease, background 280ms ease;
}
.comp-item:hover { border-left-color: var(--accent); background: var(--bg); }
.comp-item strong { display: block; font-weight: 500; font-size: 14px; margin-bottom: 4px; }
.comp-item span { font-size: 13px; color: var(--mid); }

/* ─── Form ────────────────────────────────────────────── */
.form-wrap {
  background: var(--surface);
  border: 1px solid var(--rule);
  padding: 56px 48px;
  position: relative;
}
.form-wrap::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, var(--accent), transparent);
}
.form { display: flex; flex-direction: column; gap: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.f-label {
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.f-input, .f-select, .f-textarea {
  background: var(--bg);
  border: 1px solid var(--rule);
  border-radius: 4px;
  padding: 13px 16px;
  font-family: var(--f-body);
  font-size: 15px;
  font-weight: 300;
  color: var(--ink);
  width: 100%;
  outline: none;
  transition: border-color 220ms ease, box-shadow 220ms ease;
  appearance: none;
}
.f-input:focus, .f-select:focus, .f-textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(200,146,42,0.1);
}
.f-textarea { resize: vertical; min-height: 130px; }
.f-note { font-size: 11px; color: var(--muted); line-height: 1.6; }

/* ─── CTA band ────────────────────────────────────────── */
.cta-band {
  text-align: center;
  padding: 112px 0;
}
.cta-band .h2 { margin-bottom: 20px; }
.cta-band .body-md { max-width: 520px; margin: 0 auto 40px; }

/* ─── Dark section ────────────────────────────────────── */
.sec--dark .label { color: #6B6158; }
.sec--dark .body-lg { color: #B8B0A7; }
.sec--dark .body-md { color: #B8B0A7; }
.sec--dark .h2 { color: var(--bg); }
.sec--dark .pull { color: var(--bg); }
.sec--dark .pull-attr { color: #6B6158; }

/* ─── Link CTA ────────────────────────────────────────── */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--accent);
  margin-top: 28px;
  transition: gap 220ms ease;
}
.link-arrow:hover { gap: 14px; }
.link-arrow span { font-size: 18px; }

/* ─── Page hero ───────────────────────────────────────── */
.page-hero {
  padding: 140px 0 72px;
  border-bottom: 1px solid var(--rule);
}
.page-hero .label { margin-bottom: 24px; }
.page-hero .h1 { margin-bottom: 24px; }
.page-hero .body-lg { max-width: 620px; }

/* ─── Industry section ────────────────────────────────── */
.ind-sec { padding: 80px 0; }
.ind-sec + .ind-sec { border-top: 1px solid var(--rule); }
.ind-header { margin-bottom: 48px; }
.ind-header .h2 { margin-top: 10px; }

/* ─── Region offset grid ──────────────────────────────── */
.region-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--rule);
  margin-top: 56px;
}
.region-card {
  background: var(--surface);
  padding: 36px 32px;
  transition: background 250ms ease;
}
.region-card:hover { background: var(--bg); }
.region-card__city {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.region-card__hq {
  font-weight: 500;
  font-size: 14px;
  color: var(--ink);
  margin-bottom: 6px;
}
.region-card__desc { font-size: 13px; color: var(--mid); line-height: 1.65; }

/* ─── Footer ──────────────────────────────────────────── */
.footer {
  background: var(--ink);
  color: #F8F5F0;
  padding: 72px 0 40px;
}
.footer__top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer__brand {
  font-family: var(--f-display);
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 8px;
  color: #F8F5F0;
}
.footer__tagline { font-size: 13px; color: #6B6158; line-height: 1.5; }
.footer__col-title {
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #6B6158;
  margin-bottom: 20px;
}
.footer__nav { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer__nav a {
  font-size: 14px;
  color: #9A8F85;
  transition: color 200ms ease;
}
.footer__nav a:hover { color: var(--accent); }
.footer__bottom {
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer__copy { font-size: 11px; color: #504840; }

/* ─── Responsive ──────────────────────────────────────── */
@media (max-width: 1100px) {
  :root { --gx: 40px; }
  .card-row { grid-template-columns: repeat(3, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat { border-right: none; border-bottom: 1px solid var(--rule); }
  .stat:nth-child(odd) { border-right: 1px solid var(--rule); }
  .stat:last-child { border-bottom: none; }
  .proc-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .proc-step { border: none; padding: 0; margin: 0; border-bottom: 1px solid var(--rule); padding-bottom: 40px; }
  .proc-step:last-child { border-bottom: none; padding-bottom: 0; }
}
@media (max-width: 860px) {
  :root { --gx: 24px; }
  .nav__links { display: none; }
  .nav__burger { display: flex; }
  .nav__drawer { display: flex; }
  .hero__inner { grid-template-columns: 1fr; }
  .hero__deco { display: none; }
  .hero .sec { padding: 64px 0; }
  .g2, .g2--60, .g2--40 { grid-template-columns: 1fr; gap: 48px; }
  .val-grid { grid-template-columns: 1fr; gap: 28px; }
  .card-row { grid-template-columns: repeat(2, 1fr); }
  .proc-grid { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; gap: 8px; text-align: center; }
  .region-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .form-wrap { padding: 36px 28px; }
  .hero { padding-top: 110px; }
  .page-hero { padding-top: 110px; }
}
@media (max-width: 560px) {
  .card-row { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat:nth-child(odd) { border-right: none; }
}
