@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;1,400&family=Figtree:wght@400;500;600&display=swap');

/* ── TOKENS ─────────────────────────────────────────────────────────────── */
:root {
  --black:    #111111;
  --ink:      #2A2A2A;
  --ink-mid:  #555555;
  --ink-lt:   #888888;
  --red:      #C1440E;
  --red-dk:   #9E3709;
  --white:    #FFFFFF;
  --off-white:#F7F7F5;
  --rule:     #E0E0DC;
  --on-dark:  rgba(255,255,255,0.75);

  --display: 'Playfair Display', Georgia, serif;
  --body:    'Figtree', system-ui, -apple-system, sans-serif;
}

/* ── RESET ───────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0 }
html { font-size: 16px; -webkit-font-smoothing: antialiased; scroll-behavior: smooth }
body { font-family: var(--body); font-weight: 400; color: var(--ink); background: var(--white); overflow-x: hidden; line-height: 1.6 }

/* ── NAV ─────────────────────────────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 100;
  height: 64px; display: flex; align-items: center; justify-content: space-between;
  padding: 0 56px;
  background: var(--white);
  border-bottom: 1px solid var(--rule);
  transition: box-shadow 0.3s;
}
.nav.scrolled { box-shadow: 0 1px 12px rgba(0,0,0,0.06) }
.nav-wordmark { display: flex; align-items: center; gap: 12px; text-decoration: none }
.nav-text { display: flex; flex-direction: column }
.nav-name { font-family: var(--body); font-size: 0.8rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--black); line-height: 1 }
.nav-rule { height: 1px; background: var(--red); margin: 4px 0 }
.nav-sub { font-family: var(--body); font-size: 0.48rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--red) }
.nav-links { display: flex; align-items: center; gap: 32px }
.nav-links a { font-size: 0.8rem; font-weight: 500; letter-spacing: 0.02em; color: var(--ink-mid); text-decoration: none; transition: color 0.2s }
.nav-links a:hover, .nav-links a.active { color: var(--black) }
.nav-cta {
  display: inline-flex; align-items: center;
  padding: 9px 24px;
  background: var(--red); color: var(--white);
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  text-decoration: none; transition: background 0.2s;
}
.nav-cta:hover { background: var(--red-dk) }
.mobile-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; background: none; border: none }
.mobile-toggle span { width: 22px; height: 1.5px; background: var(--black); display: block }

/* ── BUTTONS ─────────────────────────────────────────────────────────────── */
.btn-blk, .btn-wht, .btn-wht-ghost, .btn-red, .btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--body); font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  text-decoration: none; cursor: pointer; transition: all 0.2s;
}
.btn-blk  { padding: 13px 28px; background: var(--black); color: var(--white); border: 1px solid var(--black) }
.btn-blk:hover { background: var(--ink) }
.btn-wht  { padding: 13px 28px; background: var(--white); color: var(--black); border: 1px solid var(--black) }
.btn-wht:hover { background: var(--off-white) }
.btn-wht-ghost { padding: 12px 26px; border: 1px solid rgba(255,255,255,0.5); color: var(--white) }
.btn-wht-ghost:hover { border-color: var(--white); background: rgba(255,255,255,0.08) }
.btn-red  { padding: 13px 28px; background: var(--red); color: var(--white); border: 1px solid var(--red) }
.btn-red:hover { background: var(--red-dk) }
.btn-ghost { padding: 12px 26px; border: 1px solid var(--black); color: var(--black) }
.btn-ghost:hover { background: var(--black); color: var(--white) }

/* ── TYPOGRAPHY ──────────────────────────────────────────────────────────── */
.lbl {
  display: block; font-size: 0.6rem; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--red);
}
.lbl-dark { color: var(--red) }
.section-title { margin-bottom: 52px }
.section-title h2 {
  font-family: var(--display);
  font-size: clamp(2rem, 3.2vw, 3rem);
  font-weight: 700; color: var(--black);
  line-height: 1.12; letter-spacing: -0.02em; margin-top: 12px;
}
.section-title h2 em { font-style: italic; font-weight: 400; color: var(--red) }
.section-title p { font-size: 0.97rem; font-weight: 400; color: var(--ink-mid); line-height: 1.78; max-width: 52ch; margin-top: 14px }
.section-title.dark h2 { color: var(--white) }
.section-title.dark p  { color: rgba(255,255,255,0.78) }

/* ── LAYOUT ──────────────────────────────────────────────────────────────── */
.section    { padding: 96px 56px }
.section-sm { padding: 72px 56px }
.bg-white   { background: var(--white) }
.bg-stone   { background: var(--off-white) }
.bg-obsidian{ background: var(--black) }
.bg-red     { background: var(--red) }
.two-col    { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start }
.two-col-hero { display: grid; grid-template-columns: 1fr 1fr; min-height: 72vh }

/* ── HERO ────────────────────────────────────────────────────────────────── */
.hero { display: grid; grid-template-columns: 1fr 1fr; min-height: 90vh }
.hero-left {
  background: var(--black);
  padding: 88px 64px 88px 56px;
  display: flex; flex-direction: column; justify-content: center;
  border-right: 1px solid rgba(255,255,255,0.06);
}
.hero-eyebrow {
  display: flex; align-items: center; gap: 12px;
  font-size: 0.6rem; font-weight: 600; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--red); margin-bottom: 28px;
}
.hero-eyebrow::before { content: ''; width: 20px; height: 1px; background: var(--red); flex-shrink: 0 }
.hero-left h1 {
  font-family: var(--display);
  font-size: clamp(2.6rem, 4vw, 3.8rem);
  font-weight: 700; color: var(--white);
  line-height: 1.1; letter-spacing: -0.022em; margin-bottom: 24px;
}
.hero-left h1 em { font-style: italic; font-weight: 400; color: var(--red) }
.hero-left .sub {
  font-size: 0.97rem; font-weight: 400;
  color: rgba(255,255,255,0.72);
  line-height: 1.8; max-width: 42ch; margin-bottom: 40px;
}
.hero-actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap }
.hero-right {
  background: var(--off-white);
  padding: 88px 56px 88px 64px;
  display: flex; flex-direction: column; justify-content: center;
}
.stat-block {
  padding: 28px 0 28px 20px;
  border-bottom: 1px solid var(--rule);
  border-left: 2px solid transparent;
  transition: border-color 0.25s;
}
.stat-block:first-child { border-top: 1px solid var(--rule) }
.stat-block:hover { border-left-color: var(--red) }
.stat-big {
  font-family: var(--display);
  font-size: 2.8rem;
  font-weight: 700; color: var(--red);
  line-height: 1; letter-spacing: -0.01em;
}
.stat-big sup { font-size: 0.48em; color: var(--red); font-weight: 700; vertical-align: super; letter-spacing: 0 }
.stat-label { font-family: var(--body); font-size: 0.82rem; font-weight: 600; color: var(--black); margin-top: 8px; margin-bottom: 5px }
.stat-desc { font-size: 0.79rem; font-weight: 400; color: var(--ink-mid); line-height: 1.65; max-width: 32ch; margin-top: 4px }
.hero-wm { margin-top: 40px; padding-left: 20px; border-left: 1px solid var(--rule) }
.hero-wm-name { font-family: var(--body); font-size: 0.68rem; font-weight: 600; letter-spacing: 0.26em; text-transform: uppercase; color: var(--ink-mid) }
.hero-wm-rule { height: 1px; background: var(--red); margin: 4px 0; width: 60% }
.hero-wm-tag { font-family: var(--display); font-size: 0.62rem; font-style: italic; color: var(--ink-lt) }

/* ── PROBLEM GRID ────────────────────────────────────────────────────────── */
.prob-grid { display: grid; grid-template-columns: repeat(3,1fr); border-top: none }
.prob-card {
  background: var(--black);
  padding: 48px 40px;
  border-right: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid var(--rule);
  position: relative;
}
.prob-card:last-child { border-right: none }
.prob-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: transparent; transition: background 0.3s }
.prob-card:hover::before { background: var(--red) }
.prob-n { font-family: var(--body); font-size: 0.68rem; font-weight: 700; color: var(--red); letter-spacing: 0.14em; line-height: 1; margin-bottom: 16px }
.prob-card h4 { font-family: var(--display); font-size: 1.15rem; font-weight: 700; color: var(--white); margin-bottom: 12px; line-height: 1.2 }
.prob-card p { font-size: 0.85rem; font-weight: 400; color: rgba(255,255,255,0.72); line-height: 1.75 }

/* ── PROOF ───────────────────────────────────────────────────────────────── */
.proof-item { padding: 22px 0; border-bottom: 1px solid var(--rule); display: flex; gap: 20px; align-items: flex-start }
.proof-item:first-child { border-top: 1px solid var(--rule) }
.proof-n { font-family: var(--body); font-size: 0.68rem; font-weight: 700; color: var(--red); letter-spacing: 0.14em; line-height: 1; flex-shrink: 0; width: 32px; padding-top: 2px }
.proof-content h4 { font-family: var(--display); font-size: 1rem; font-weight: 700; color: var(--black); margin-bottom: 6px }
.proof-content p { font-size: 0.83rem; font-weight: 400; color: var(--ink-mid); line-height: 1.7 }

/* ── SERVICES ────────────────────────────────────────────────────────────── */
.svc-grid { display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid var(--rule) }
.svc-card {
  background: var(--white);
  padding: 40px 36px;
  cursor: pointer; transition: background 0.2s;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  position: relative; text-decoration: none; display: block;
}
.svc-card:last-child { border-right: none }
.svc-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: transparent; transition: background 0.25s }
.svc-card:hover { background: var(--off-white) }
.svc-card:hover::before { background: var(--red) }
.svc-tag { font-size: 0.6rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--red); margin-bottom: 14px }
.svc-card h3 { font-family: var(--display); font-size: 1.15rem; font-weight: 700; color: var(--black); margin-bottom: 12px; line-height: 1.2 }
.svc-card p { font-size: 0.82rem; font-weight: 400; color: var(--ink-mid); line-height: 1.72; margin-bottom: 20px }
.svc-more { display: inline-flex; align-items: center; gap: 5px; font-size: 0.68rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--red); transition: gap 0.2s; text-decoration: none }
.svc-card:hover .svc-more { gap: 9px }
.svc-dark { background: var(--black) !important; border-color: rgba(255,255,255,0.06) !important }
.svc-dark:hover { background: #1A1A1A !important }
.svc-dark .svc-tag { color: var(--red) }
.svc-dark h3 { color: var(--white) }
.svc-dark p { color: rgba(255,255,255,0.72) }
.svc-dark .svc-more { color: var(--red) }

/* ── OUTCOMES ────────────────────────────────────────────────────────────── */
.out-num-item { padding: 26px 0; border-bottom: 1px solid var(--rule) }
.out-num-item:first-child { border-top: 1px solid var(--rule) }
.out-big { font-family: var(--display); font-size: clamp(2.8rem, 4vw, 3.8rem); font-weight: 700; color: var(--black); line-height: 1; letter-spacing: -0.03em }
.out-big sup { font-size: 0.42em; color: var(--red); font-weight: 700; vertical-align: super }
.out-lbl { font-size: 0.82rem; font-weight: 400; color: var(--ink-mid); max-width: 28ch; line-height: 1.6; margin-top: 7px }

/* ── CTA BAND ────────────────────────────────────────────────────────────── */
.cta-band {
  background: var(--black);
  padding: 88px 56px;
  display: flex; align-items: center; justify-content: space-between; gap: 48px;
  border-top: 2px solid var(--red);
}
.cta-band h2 { font-family: var(--display); font-size: clamp(1.8rem, 2.8vw, 2.6rem); font-weight: 700; color: var(--white); line-height: 1.12; letter-spacing: -0.02em; margin-top: 12px }
.cta-band h2 em { font-style: italic; font-weight: 400 }
.cta-band p { font-size: 0.93rem; font-weight: 400; color: rgba(255,255,255,0.72); line-height: 1.78; max-width: 42ch; margin-top: 12px }
.cta-right { flex-shrink: 0; display: flex; flex-direction: column; gap: 12px; align-items: flex-start }

/* ── ABOUT ───────────────────────────────────────────────────────────────── */
.split-hero-right { overflow: visible; min-height: 0 }
.split-hero-left { background: var(--off-white); padding: 96px 56px; display: flex; flex-direction: column; justify-content: center }
.split-hero-left h1 { font-family: var(--display); font-size: clamp(2rem, 3.2vw, 3rem); font-weight: 700; color: var(--black); line-height: 1.1; letter-spacing: -0.02em; margin-top: 12px }
.split-hero-left h1 em { font-style: italic; font-weight: 400; color: var(--red) }
.split-hero-left p { font-size: 0.97rem; font-weight: 400; color: var(--ink-mid); line-height: 1.78; max-width: 44ch; margin-top: 18px }
.bio-body { font-size: 0.93rem; font-weight: 400; color: var(--ink-mid); line-height: 1.82; margin-bottom: 18px }
.pull-q { padding: 24px 28px; border-left: 2px solid var(--red); background: var(--off-white); margin-top: 28px }
.pull-q p { font-family: var(--display); font-size: 0.97rem; font-style: italic; color: var(--black); line-height: 1.65 }
.cred-head { font-family: var(--display); font-size: 0.97rem; font-weight: 700; color: var(--black); margin-bottom: 20px }
.cred-item { display: flex; gap: 16px; padding: 13px 0; border-bottom: 1px solid var(--rule) }
.cred-item:first-of-type { border-top: 1px solid var(--rule) }
.cred-dash { width: 12px; height: 1px; background: var(--red); margin-top: 11px; flex-shrink: 0 }
.cred-item p { font-size: 0.85rem; font-weight: 400; color: var(--ink-mid); line-height: 1.6 }

/* ── STANDARDS ───────────────────────────────────────────────────────────── */
.std-grid { display: grid; grid-template-columns: repeat(2,1fr); margin-top: 52px; border-top: 1px solid rgba(255,255,255,0.08) }
.std-item { background: var(--black); padding: 52px 48px; border-bottom: 1px solid rgba(255,255,255,0.06); border-right: 1px solid rgba(255,255,255,0.06) }
.std-item:nth-child(2n) { border-right: none }
.std-n { font-family: var(--body); font-size: 0.68rem; font-weight: 700; color: var(--red); letter-spacing: 0.14em; line-height: 1; margin-bottom: 16px }
.std-item h4 { font-family: var(--display); font-size: 1.1rem; font-weight: 700; color: var(--white); margin-bottom: 12px }
.std-item p { font-size: 0.85rem; font-weight: 400; color: rgba(255,255,255,0.72); line-height: 1.78 }

/* ── SERVICE DETAIL ──────────────────────────────────────────────────────── */
.svc-detail-hero { background: var(--off-white); padding: 88px 56px; border-bottom: 1px solid var(--rule) }
.svc-detail-hero .eyebrow { font-size: 0.6rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--red); margin-bottom: 12px }
.svc-detail-hero h1 { font-family: var(--display); font-size: clamp(2.4rem, 3.8vw, 3.4rem); font-weight: 700; color: var(--black); line-height: 1.08; letter-spacing: -0.022em; max-width: 16ch }
.svc-detail-hero h1 em { font-style: italic; font-weight: 400; color: var(--red) }
.svc-meta { display: flex; gap: 0; margin-top: 32px; border-top: 1px solid var(--rule) }
.svc-meta-item { padding: 18px 32px 18px 0; border-right: 1px solid var(--rule); margin-right: 32px }
.svc-meta-item:last-child { border-right: none }
.svc-meta-label { font-size: 0.6rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-lt); margin-bottom: 6px }
.svc-meta-value { font-family: var(--display); font-size: 0.97rem; font-style: italic; color: var(--black) }
.svc-detail-body { display: grid; grid-template-columns: 1fr 300px; gap: 64px; align-items: start }
.svc-detail-main h2 { font-family: var(--display); font-size: 1.4rem; font-weight: 700; color: var(--black); margin-bottom: 12px; margin-top: 40px }
.svc-detail-main h2:first-child { margin-top: 0 }
.svc-detail-main p { font-size: 0.93rem; font-weight: 400; color: var(--ink-mid); line-height: 1.8; margin-bottom: 16px }
.deliverable-list { list-style: none; margin: 0 0 28px }
.deliverable-list li { display: flex; gap: 14px; align-items: flex-start; padding: 12px 0; border-bottom: 1px solid var(--rule) }
.deliverable-list li::before { content: '—'; color: var(--red); font-weight: 600; flex-shrink: 0 }
.deliverable-list li span { font-size: 0.88rem; font-weight: 400; color: var(--ink-mid); line-height: 1.6 }
.svc-sidebar { position: sticky; top: 80px }
.sidebar-box { background: var(--black); padding: 36px 32px; margin-bottom: 2px }
.sidebar-box .lbl-dark { color: var(--red); margin-bottom: 12px }
.sidebar-box h3 { font-family: var(--display); font-size: 1.3rem; font-weight: 700; color: var(--white); margin-bottom: 8px }
.sidebar-box p { font-size: 0.83rem; font-weight: 400; color: rgba(255,255,255,0.72); line-height: 1.7; margin-bottom: 24px }
.sidebar-also { background: var(--off-white); padding: 28px 32px; border: 1px solid var(--rule) }
.sidebar-also h4 { font-size: 0.6rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-lt); margin-bottom: 16px }
.sidebar-also a { display: block; font-size: 0.83rem; font-weight: 400; color: var(--ink-mid); text-decoration: none; padding: 8px 0; border-bottom: 1px solid var(--rule); transition: color 0.2s }
.sidebar-also a:hover { color: var(--red) }

/* ── TABLE ───────────────────────────────────────────────────────────────── */
.compare-table { width: 100%; border-collapse: collapse; margin-top: 40px }
.compare-table thead tr { background: var(--black) }
.compare-table th { font-family: var(--body); font-size: 0.62rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.85); padding: 16px 20px; text-align: left }
.compare-table th:first-child { color: var(--white) }
.compare-table td { padding: 16px 20px; font-size: 0.83rem; font-weight: 400; color: var(--ink-mid); border-bottom: 1px solid var(--rule); vertical-align: top }
.compare-table tr:nth-child(even) td { background: var(--off-white) }
.compare-table td:first-child { font-family: var(--display); font-size: 0.93rem; font-weight: 700; color: var(--black); border-left: 2px solid transparent }
.compare-table tr:hover td:first-child { border-left-color: var(--red) }

/* ── CONTACT ─────────────────────────────────────────────────────────────── */
.contact-left { background: var(--black); padding: 88px 56px; display: flex; flex-direction: column; justify-content: center }
.contact-left h2 { font-family: var(--display); font-size: clamp(1.8rem, 3vw, 2.8rem); font-weight: 700; color: var(--white); line-height: 1.1; letter-spacing: -0.02em; margin-top: 14px }
.contact-left h2 em { font-style: italic; font-weight: 400; color: var(--red) }
.contact-left .lead { font-size: 0.93rem; font-weight: 400; color: rgba(255,255,255,0.72); line-height: 1.78; max-width: 40ch; margin: 18px 0 36px }
.fit-hd { font-size: 0.6rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.55); margin-bottom: 14px }
.fit-item { display: flex; gap: 14px; align-items: flex-start; padding: 13px 0; border-bottom: 1px solid rgba(255,255,255,0.07) }
.fit-dash { width: 12px; height: 1px; background: var(--red); margin-top: 10px; flex-shrink: 0 }
.fit-item p { font-size: 0.85rem; font-weight: 400; color: rgba(255,255,255,0.75); line-height: 1.65 }
.contact-right { background: var(--white); padding: 88px 56px; display: flex; flex-direction: column; justify-content: center; border-left: 1px solid var(--rule) }
.form-head { font-family: var(--display); font-size: 1.4rem; font-weight: 700; color: var(--black); margin-bottom: 28px }
.fg { margin-bottom: 18px }
.fg label { display: block; font-size: 0.6rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-mid); margin-bottom: 7px }
.fg input, .fg select, .fg textarea { width: 100%; padding: 11px 14px; border: 1px solid var(--rule); background: var(--white); font-family: var(--body); font-size: 0.88rem; font-weight: 400; color: var(--ink); outline: none; transition: border-color 0.2s; -webkit-appearance: none; border-radius: 0 }
.fg input:focus, .fg select:focus, .fg textarea:focus { border-color: var(--black) }
.fg textarea { min-height: 88px; resize: vertical }
.form-sub { width: 100%; padding: 13px; background: var(--black); color: var(--white); font-family: var(--body); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; border: none; cursor: pointer; transition: background 0.2s; border-radius: 0 }
.form-sub:hover { background: var(--ink) }
.form-note { font-size: 0.72rem; font-weight: 400; color: var(--ink-lt); text-align: center; margin-top: 10px }
.form-success { display: none; text-align: center; padding: 32px; background: var(--off-white); border: 1px solid var(--rule) }
.form-success h3 { font-family: var(--display); font-size: 1.3rem; color: var(--black); margin-bottom: 8px }
.form-success p { color: var(--ink-mid); font-weight: 400 }

/* ── PROCESS ─────────────────────────────────────────────────────────────── */
.step { display: grid; grid-template-columns: 52px 1fr; gap: 24px; padding: 28px 0; border-bottom: 1px solid var(--rule) }
.step-n { font-family: var(--body); font-size: 0.68rem; font-weight: 700; color: var(--red); letter-spacing: 0.14em; line-height: 1; padding-top: 4px; flex-shrink: 0; width: 32px }
.step h4 { font-family: var(--display); font-size: 1rem; font-weight: 700; color: var(--black); margin-bottom: 6px }
.step p { font-size: 0.85rem; font-weight: 400; color: var(--ink-mid); line-height: 1.7 }

/* ── RESOURCES ───────────────────────────────────────────────────────────── */
.res-grid { display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid var(--rule); margin-top: 48px }
.res-card { background: var(--white); padding: 44px 36px; display: flex; flex-direction: column; cursor: pointer; transition: background 0.2s; border-right: 1px solid var(--rule); border-bottom: 1px solid var(--rule); position: relative }
.res-card:last-child { border-right: none }
.res-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: transparent; transition: background 0.25s }
.res-card:hover { background: var(--off-white) }
.res-card:hover::before { background: var(--red) }
.res-type { font-size: 0.6rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--red); margin-bottom: 14px }
.res-card h3 { font-family: var(--display); font-size: 1.15rem; font-weight: 700; color: var(--black); margin-bottom: 12px; line-height: 1.2 }
.res-card p { font-size: 0.83rem; font-weight: 400; color: var(--ink-mid); line-height: 1.72; flex: 1; margin-bottom: 24px }

/* ── FOOTER ──────────────────────────────────────────────────────────────── */
footer { background: var(--black); padding: 72px 56px 40px; border-top: 2px solid var(--red) }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.08) }
.footer-wm-name { font-family: var(--body); font-size: 0.82rem; font-weight: 600; letter-spacing: 0.26em; text-transform: uppercase; color: var(--white); line-height: 1 }
.footer-wm-rule { height: 1px; background: var(--red); margin: 6px 0; width: 80% }
.footer-wm-tag { font-family: var(--display); font-size: 0.72rem; font-style: italic; color: rgba(255,255,255,0.52) }
.footer-wm-meaning { font-family: var(--body); font-size: 0.62rem; font-weight: 400; color: rgba(255,255,255,0.3); letter-spacing: 0.04em; margin-top: 10px }
.footer-wm-meaning span { color: rgba(255,255,255,0.65); font-weight: 600 }
.footer-col { display: flex; flex-direction: column; gap: 10px }
.footer-col h5 { font-family: var(--body); font-size: 0.58rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.45); margin-bottom: 6px }
.footer-col a { font-family: var(--body); font-size: 0.82rem; font-weight: 400; color: rgba(255,255,255,0.65); text-decoration: none; transition: color 0.2s; line-height: 1.4 }
.footer-col a:hover { color: var(--white) }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 28px }
.footer-bottom p { font-size: 0.7rem; font-weight: 400; letter-spacing: 0.04em; color: rgba(255,255,255,0.35) }

/* ── SCROLL REVEAL ───────────────────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity 0.55s ease, transform 0.55s ease }
.reveal.visible { opacity: 1; transform: translateY(0) }
.reveal-delay-1 { transition-delay: 0.1s }
.reveal-delay-2 { transition-delay: 0.2s }
.reveal-delay-3 { transition-delay: 0.3s }

/* ── RESPONSIVE ──────────────────────────────────────────────────────────── */
@media (max-width: 960px) {
  .nav { padding: 0 28px }
  .nav-links { display: none }
  .mobile-toggle { display: flex }
  .nav-links.open { display: flex; flex-direction: column; position: fixed; top: 64px; left: 0; right: 0; background: var(--white); padding: 24px 28px; gap: 20px; border-bottom: 1px solid var(--rule); z-index: 99 }
  .hero, .two-col-hero { grid-template-columns: 1fr }
  .hero-left { padding: 72px 28px; min-height: 60vh }
  .hero-right { padding: 56px 28px }
  .split-hero-left { padding: 56px 28px }
  .section, .section-sm { padding: 72px 28px }
  .two-col, .svc-detail-body { grid-template-columns: 1fr; gap: 48px }
  .prob-grid, .svc-grid, .res-grid { grid-template-columns: 1fr }
  .std-grid { grid-template-columns: 1fr }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px }
  .cta-band { flex-direction: column; padding: 72px 28px }
  .svc-meta { flex-wrap: wrap }
  .contact-left, .contact-right { padding: 56px 28px }
  .prob-card, .svc-card, .res-card { border-right: none }
}
@media (max-width: 600px) {
  .footer-top { grid-template-columns: 1fr }
  .hero-actions { flex-direction: column; align-items: flex-start }
}
