/* ============================================================
   Whetzel CPA — homepage styles
   System: navy + warm cream + ink, Geist + Instrument Serif + JetBrains Mono
   ============================================================ */

:root {
  --navy: #0B1B2C;
  --navy-80: rgba(11, 27, 44, 0.8);
  --navy-60: rgba(11, 27, 44, 0.6);
  --navy-40: rgba(11, 27, 44, 0.4);
  --navy-12: rgba(11, 27, 44, 0.12);
  --navy-06: rgba(11, 27, 44, 0.06);
  --cream: #F1ECE2;
  --cream-deep: #D9CDAE;
  --slate: #7F8C8D;
  --slate-deep: #6E7C7D;
  --paper: #FAF7F1;
  --white: #FFFFFF;
  --ink: #0A0A0A;
  --rule: rgba(11, 27, 44, 0.14);
  --rule-strong: rgba(11, 27, 44, 0.32);

  --font-sans: 'Geist', ui-sans-serif, system-ui, sans-serif;
  --font-serif: 'Instrument Serif', 'Times New Roman', serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;

  --container: 1320px;
  --pad-x: clamp(20px, 4vw, 56px);
}

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

html, body {
  background: var(--paper);
  color: var(--navy);
  font-family: var(--font-sans);
  font-feature-settings: "ss01", "cv11";
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; background: none; border: none; color: inherit; }
img { display: block; max-width: 100%; }

/* ============== Layout primitives ============== */
.wrap {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}

.rule { height: 1px; background: var(--rule); width: 100%; }
.rule-strong { height: 1px; background: var(--rule-strong); width: 100%; }

/* monospace metadata label */
.meta {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy-60);
  font-weight: 500;
}
.meta-dark { color: rgba(241, 236, 226, 0.55); }
.meta-dot::before {
  content: "";
  display: inline-block;
  width: 6px; height: 6px;
  background: currentColor;
  border-radius: 50%;
  margin-right: 10px;
  vertical-align: middle;
  transform: translateY(-1px);
}

/* ============== Top utility bar ============== */
.utility {
  background: var(--navy);
  color: var(--cream);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
}
.utility-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 10px;
  padding-bottom: 10px;
  gap: 24px;
}
.utility-inner .left { display: flex; gap: 24px; align-items: center; flex-wrap: wrap; }
.utility-inner .right { display: flex; gap: 20px; align-items: center; }
.utility-pill {
  display: inline-flex; align-items: center; gap: 8px;
  text-transform: uppercase;
}
.utility-pill .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #6DBE7A;
  box-shadow: 0 0 0 4px rgba(109, 190, 122, 0.18);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.55; }
}

/* ============== Header / nav ============== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--paper);
  border-bottom: 1px solid transparent;
  transition: background 200ms ease, border-color 200ms ease, backdrop-filter 200ms ease;
}
.site-header.scrolled {
  background: rgba(250, 247, 241, 0.92);
  backdrop-filter: saturate(160%) blur(12px);
  border-bottom-color: var(--rule);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 132px;
  gap: 24px;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-brand img { height: 108px; width: auto; }
@media (max-width: 980px) {
  .nav { height: 92px; }
  .nav-brand img { height: 72px; }
}
.nav-brand .wordmark {
  font-family: var(--font-sans);
  font-weight: 600;
  letter-spacing: 0.04em;
  font-size: 15px;
}
.nav-links {
  display: flex;
  gap: 4px;
  align-items: center;
}
.nav-link {
  position: relative;
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--navy-80);
  border-radius: 0;
  transition: color 150ms ease;
}
.nav-link:hover { color: var(--navy); }
.nav-link.has-menu::after {
  content: "";
  display: inline-block;
  margin-left: 8px;
  width: 6px; height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  opacity: 0.5;
}
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  background: var(--navy);
  color: var(--cream);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.01em;
  white-space: nowrap;
  transition: transform 150ms ease, background 150ms ease;
}
.nav-cta:hover { background: #16314c; }
.nav-cta .arrow {
  width: 14px; height: 14px; position: relative;
}
.nav-cta .arrow::before {
  content: ""; position: absolute; top: 50%; left: 0; right: 2px;
  height: 1.5px; background: currentColor;
  transform: translateY(-50%);
}
.nav-cta .arrow::after {
  content: ""; position: absolute; top: 50%; right: 0;
  width: 8px; height: 8px;
  border-right: 1.5px solid currentColor;
  border-top: 1.5px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
}

.menu-toggle { display: none; }

/* dropdown */
.nav-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--paper);
  border: 1px solid var(--rule);
  padding: 10px;
  min-width: 280px;
  display: grid;
  gap: 2px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  transition: opacity 160ms ease, transform 160ms ease;
}
.nav-link-wrap { position: relative; }
.nav-link-wrap:hover .nav-menu,
.nav-link-wrap:focus-within .nav-menu {
  opacity: 1; pointer-events: auto; transform: translateY(0);
}
.nav-menu a {
  display: block;
  padding: 10px 12px;
  font-size: 13px;
  color: var(--navy-80);
  border-left: 2px solid transparent;
  transition: background 120ms, border-color 120ms, color 120ms;
}
.nav-menu a:hover {
  background: var(--cream);
  border-left-color: var(--navy);
  color: var(--navy);
}
.nav-menu .menu-meta {
  padding: 8px 12px 10px;
  border-bottom: 1px solid var(--rule);
  margin-bottom: 6px;
}

/* ============== Hero ============== */
.hero {
  position: relative;
  padding-top: clamp(48px, 7vw, 96px);
  padding-bottom: clamp(72px, 9vw, 140px);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 88px);
  align-items: end;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 32px;
}
.hero-eyebrow .bar { width: 28px; height: 1px; background: var(--navy-40); }
.hero h1 {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: clamp(44px, 7vw, 104px);
  line-height: 0.96;
  letter-spacing: -0.025em;
  color: var(--navy);
  text-wrap: balance;
}
.hero h1 .italic {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--navy);
}
.hero-sub {
  max-width: 520px;
  margin-top: 36px;
  font-size: 18px;
  line-height: 1.55;
  color: var(--navy-80);
  text-wrap: pretty;
}
.hero-cta-row {
  margin-top: 40px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 22px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: transform 150ms ease, background 150ms ease, color 150ms ease, border-color 150ms ease;
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--navy);
  color: var(--cream);
}
.btn-primary:hover { background: #16314c; }
.btn-ghost {
  background: transparent;
  color: var(--navy);
  border-color: var(--rule-strong);
}
.btn-ghost:hover { border-color: var(--navy); background: var(--cream); }
.btn .arrow {
  width: 14px; height: 14px; position: relative;
}
.btn .arrow::before {
  content: ""; position: absolute; top: 50%; left: 0; right: 2px;
  height: 1.5px; background: currentColor;
  transform: translateY(-50%);
}
.btn .arrow::after {
  content: ""; position: absolute; top: 50%; right: 0;
  width: 8px; height: 8px;
  border-right: 1.5px solid currentColor;
  border-top: 1.5px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
}
.btn:hover .arrow { transform: translateX(2px); }

/* hero photograph slot on right */
.hero-photo {
  position: relative;
  align-self: stretch;
  min-height: clamp(420px, 52vw, 620px);
  background: var(--navy);
  overflow: hidden;
}
.hero-photo image-slot {
  display: block;
  width: 100%;
  height: 100%;
  min-height: clamp(420px, 52vw, 620px);
}
.hero-photo .photo-caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 20px 24px 18px;
  background: linear-gradient(to top, rgba(11, 27, 44, 0.78), rgba(11, 27, 44, 0));
  color: var(--cream);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
  z-index: 2;
  pointer-events: none;
}
.hero-photo .photo-tag {
  position: absolute;
  top: 20px; left: 20px;
  z-index: 2;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 12px;
  background: rgba(11, 27, 44, 0.65);
  color: var(--cream);
  backdrop-filter: blur(8px);
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.1em; text-transform: uppercase;
  pointer-events: none;
}
.hero-photo .photo-tag .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #6DBE7A; box-shadow: 0 0 0 4px rgba(109,190,122,0.18);
}

/* legacy hero card (unused) */
.hero-card {
  background: var(--navy);
  color: var(--cream);
  padding: 28px;
  position: relative;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 360px;
}
.hero-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: rgba(241, 236, 226, 0.18);
}
.hero-card .card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}
.hero-card .card-mark img {
  height: 56px; width: auto;
}
.hero-card .card-status {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(241, 236, 226, 0.7);
}
.hero-card .card-status .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #6DBE7A;
  box-shadow: 0 0 0 4px rgba(109, 190, 122, 0.18);
}
.hero-card .card-body {
  display: grid;
  gap: 18px;
}
.hero-card .card-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  padding: 14px 0;
  border-top: 1px solid rgba(241, 236, 226, 0.14);
  align-items: baseline;
}
.hero-card .card-row:last-child { border-bottom: 1px solid rgba(241, 236, 226, 0.14); }
.hero-card .row-k {
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(241, 236, 226, 0.55);
}
.hero-card .row-v {
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--cream);
  font-weight: 500;
  text-align: right;
}

/* skyline svg background */
.hero-skyline {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  width: 100%;
  height: 180px;
  pointer-events: none;
  opacity: 0.55;
}
.hero-skyline path { fill: var(--navy); }

/* hero bottom strip */
.hero-strip {
  margin-top: clamp(56px, 8vw, 96px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.hero-strip .cell {
  padding: 22px 24px;
  border-right: 1px solid var(--rule);
}
.hero-strip .cell:last-child { border-right: none; }
.hero-strip .k {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy-60);
}
.hero-strip .v {
  margin-top: 10px;
  font-family: var(--font-sans);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--navy);
}
.hero-strip .v .em {
  font-family: var(--font-serif); font-style: italic; font-weight: 400;
}

/* ============== Section system ============== */
.section {
  padding-top: clamp(72px, 9vw, 140px);
  padding-bottom: clamp(72px, 9vw, 140px);
  position: relative;
}
.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.6fr);
  gap: clamp(24px, 4vw, 64px);
  align-items: start;
  margin-bottom: clamp(36px, 5vw, 64px);
}
.section-eyebrow {
  display: flex; align-items: center; gap: 14px;
}
.section-eyebrow .bar { width: 28px; height: 1px; background: var(--navy-40); }
.section-h {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: clamp(34px, 4.4vw, 56px);
  line-height: 1.02;
  letter-spacing: -0.022em;
  color: var(--navy);
  text-wrap: balance;
}
.section-h .italic {
  font-family: var(--font-serif); font-style: italic; font-weight: 400;
}
.section-lead {
  margin-top: 20px;
  font-size: 17px;
  line-height: 1.55;
  color: var(--navy-80);
  max-width: 56ch;
  text-wrap: pretty;
}

/* ============== Services ============== */
.services {
  background: var(--paper);
}
.services-list {
  border-top: 1px solid var(--rule);
}
.service-row {
  display: grid;
  grid-template-columns: 56px 200px minmax(0, 1fr) minmax(0, 1.3fr) auto;
  gap: clamp(18px, 2.4vw, 40px);
  padding: clamp(22px, 2.6vw, 32px) 0;
  border-bottom: 1px solid var(--rule);
  align-items: center;
  cursor: pointer;
  transition: padding 200ms ease, background 200ms ease;
  position: relative;
}
.service-thumb {
  width: 100%;
  height: 130px;
  position: relative;
  background: var(--cream-deep);
  overflow: hidden;
}
.service-thumb image-slot {
  display: block; width: 100%; height: 100%;
}
.service-thumb .thumb-cap {
  position: absolute;
  left: 8px; bottom: 8px;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream);
  background: rgba(11,27,44,0.7);
  padding: 4px 6px;
  z-index: 2;
  pointer-events: none;
}
.service-row:hover {
  background: linear-gradient(to right, transparent, var(--cream) 30%, var(--cream) 70%, transparent);
}
.service-row .num {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--navy-40);
  padding-top: 8px;
}
.service-row .title {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: clamp(22px, 2.6vw, 30px);
  letter-spacing: -0.018em;
  color: var(--navy);
  line-height: 1.15;
  text-wrap: balance;
}
.service-row .desc {
  font-size: 16px;
  line-height: 1.55;
  color: var(--navy-80);
  max-width: 56ch;
  text-wrap: pretty;
}
.service-row .more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  font-size: 13px;
  font-weight: 500;
  color: var(--navy);
  white-space: nowrap;
  letter-spacing: 0.01em;
}
.service-row .more .arrow { width: 12px; height: 12px; }
.service-row:hover .more .arrow { transform: translateX(3px); transition: transform 200ms ease; }

.service-row .tag {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy-60);
  margin-bottom: 14px;
  display: inline-block;
}

/* ============== Narrative section (Tim portrait) ============== */
.narrative {
  background: var(--slate);
  color: var(--cream);
}
.narrative-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.narrative-text {
  display: block;
}
.narrative-portrait {
  width: 100%;
  height: clamp(420px, 52vw, 600px);
  background: var(--cream-deep);
  position: relative;
  overflow: hidden;
}
.narrative-portrait image-slot { display: block; width: 100%; height: 100%; }
.narrative h2 {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.022em;
  text-wrap: balance;
  color: var(--cream);
}
.narrative h2 .italic { font-family: var(--font-serif); font-style: italic; font-weight: 400; color: var(--cream); }
.narrative p {
  margin-top: 24px;
  font-size: 17px;
  line-height: 1.6;
  color: rgba(241, 236, 226, 0.85);
  max-width: 52ch;
  text-wrap: pretty;
}
.narrative p + p { margin-top: 16px; }
.narrative-cta { margin-top: 36px; }
.narrative .btn-primary { background: var(--navy); color: var(--cream); }
.narrative .btn-primary:hover { background: #16314c; }

/* phone log card */
.call-card {
  background: var(--paper);
  border: 1px solid var(--rule);
  padding: 0;
  position: relative;
}
.call-card .ch {
  padding: 16px 22px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy-60);
  display: flex; justify-content: space-between; align-items: center;
  border-bottom: 1px solid var(--rule);
}
.call-card .ch .right { display: flex; gap: 14px; }
.call-card .log-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 16px 22px;
  border-bottom: 1px solid var(--rule);
  transition: background 200ms ease;
}
.call-card .log-row:last-child { border-bottom: none; }
.call-card .log-row.live { background: linear-gradient(to right, rgba(11,27,44,0.04), transparent); }
.call-card .log-time {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--navy-60);
  width: 56px;
}
.call-card .log-from { font-size: 14px; font-weight: 500; color: var(--navy); }
.call-card .log-from .sub { display: block; font-weight: 400; font-size: 12px; color: var(--navy-60); margin-top: 2px; font-family: var(--font-mono); letter-spacing: 0.04em; }
.call-card .log-state {
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.1em; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--navy-60);
}
.call-card .log-state.ans { color: #2D7A3F; }
.call-card .log-state.ans .dot { background: #2D7A3F; box-shadow: 0 0 0 4px rgba(45,122,63,0.16); }
.call-card .log-state .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--navy-40); }
.call-card .log-state.live .dot {
  background: #2D7A3F; box-shadow: 0 0 0 4px rgba(45,122,63,0.16);
  animation: pulse 1.4s ease-in-out infinite;
}
.call-card .log-state.live { color: #2D7A3F; }
.call-card .ft {
  padding: 14px 22px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--navy-60);
  display: flex; justify-content: space-between; align-items: center;
  background: var(--cream-deep);
}

/* ============== Testimonials ============== */
.testimonials {
  background: var(--navy);
  color: var(--cream);
}
.testimonials .section-h { color: var(--cream); }
.testimonials .section-lead { color: rgba(241,236,226, 0.7); }
.testimonials .meta { color: rgba(241, 236, 226, 0.55); }

.testimonial-stage {
  margin-top: clamp(24px, 3vw, 40px);
  border-top: 1px solid rgba(241,236,226,0.16);
  padding-top: clamp(32px, 4vw, 56px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: clamp(32px, 5vw, 64px);
  align-items: end;
  min-height: 320px;
}
.testimonial-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(28px, 3.6vw, 48px);
  line-height: 1.18;
  color: var(--cream);
  letter-spacing: -0.012em;
  text-wrap: balance;
  transition: opacity 260ms ease;
}
.testimonial-attr {
  display: grid;
  gap: 8px;
  border-left: 1px solid rgba(241,236,226,0.2);
  padding-left: 24px;
  align-self: end;
}
.testimonial-name {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 17px;
  color: var(--cream);
}
.testimonial-role {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(241, 236, 226, 0.55);
}
.testimonial-controls {
  margin-top: clamp(40px, 5vw, 64px);
  display: flex; justify-content: space-between; align-items: center;
  gap: 24px;
  border-top: 1px solid rgba(241,236,226,0.16);
  padding-top: 24px;
}
.testimonial-dots {
  display: flex; gap: 14px;
}
.testimonial-dot {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(241,236,226,0.4);
  padding: 6px 0;
  display: inline-flex; align-items: center; gap: 10px;
  border-bottom: 1px solid transparent;
  transition: color 160ms ease, border-color 160ms ease;
}
.testimonial-dot .swatch {
  width: 16px; height: 1px; background: rgba(241,236,226,0.3);
  transition: width 200ms ease, background 200ms ease;
}
.testimonial-dot.active {
  color: var(--cream);
}
.testimonial-dot.active .swatch { width: 32px; background: var(--cream); }
.testimonial-nav {
  display: flex; gap: 8px;
}
.testimonial-nav button {
  width: 44px; height: 44px;
  border: 1px solid rgba(241,236,226,0.24);
  color: var(--cream);
  display: inline-flex; align-items: center; justify-content: center;
  transition: background 150ms ease, border-color 150ms ease;
}
.testimonial-nav button:hover { background: rgba(241,236,226,0.08); border-color: rgba(241,236,226,0.5); }
.testimonial-nav .arr {
  width: 16px; height: 10px; position: relative;
}
.testimonial-nav .arr::before {
  content: ""; position: absolute; top: 50%; left: 0; right: 2px;
  height: 1px; background: currentColor; transform: translateY(-50%);
}
.testimonial-nav .arr::after {
  content: ""; position: absolute; top: 50%; right: 0;
  width: 7px; height: 7px;
  border-right: 1px solid currentColor;
  border-top: 1px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
}
.testimonial-nav .arr.prev::after {
  left: 0; right: auto;
  transform: translateY(-50%) rotate(-135deg);
}
.testimonial-nav .arr.prev::before {
  left: 2px; right: 0;
}

/* ============== Process ============== */
.process {
  background: var(--paper);
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule);
}
.process-step {
  padding: 40px 32px 48px;
  border-right: 1px solid var(--rule);
  position: relative;
  transition: background 220ms ease;
}
.process-step:last-child { border-right: none; }
.process-step:hover { background: var(--cream); }
.process-step .num {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.1em; color: var(--navy-60);
  margin-bottom: clamp(32px, 5vw, 60px);
}
.process-step h3 {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: clamp(24px, 2.6vw, 32px);
  letter-spacing: -0.018em;
  line-height: 1.12;
  color: var(--navy);
}
.process-step p {
  margin-top: 14px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--navy-80);
  text-wrap: pretty;
}
.process-step .step-foot {
  margin-top: 32px;
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--navy-60);
}

/* ============== Differentiators ============== */
.diffs {
  background: var(--slate);
  color: var(--cream);
}
.diffs .section-h { color: var(--cream); }
.diffs .section-h .italic { color: var(--cream); }
.diffs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid rgba(241, 236, 226, 0.22);
  border-bottom: 1px solid rgba(241, 236, 226, 0.22);
}
.diff {
  padding: 44px 32px;
  border-right: 1px solid rgba(241, 236, 226, 0.18);
}
.diff:last-child { border-right: none; }
.diff .icon {
  width: 56px; height: 56px;
  border: 1px solid var(--cream);
  color: var(--cream);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 28px;
  position: relative;
}
.diff .icon svg { width: 26px; height: 26px; }
.diff h3 {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 24px;
  letter-spacing: -0.012em;
  color: var(--cream);
}
.diff p {
  margin-top: 12px;
  font-size: 15px;
  line-height: 1.55;
  color: rgba(241, 236, 226, 0.82);
  text-wrap: pretty;
  max-width: 36ch;
}

/* ============== Final CTA ============== */
.final-cta {
  background: var(--navy);
  color: var(--cream);
  padding-top: clamp(72px, 8vw, 120px);
  padding-bottom: clamp(72px, 8vw, 120px);
  position: relative;
  overflow: hidden;
}
.final-cta-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 80px);
  align-items: stretch;
}
.final-cta h2 {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: clamp(40px, 5.5vw, 84px);
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--cream);
  text-wrap: balance;
}
.final-cta h2 .italic { font-family: var(--font-serif); font-style: italic; font-weight: 400; }
.final-cta-left p {
  margin-top: 24px;
  font-size: 18px;
  line-height: 1.55;
  color: rgba(241,236,226,0.7);
  max-width: 44ch;
  text-wrap: pretty;
}
.final-cta-left .meta-row {
  margin-top: 36px;
  display: grid; gap: 14px;
  border-top: 1px solid rgba(241,236,226,0.16);
  padding-top: 24px;
  max-width: 420px;
}
.final-cta-left .meta-row .row {
  display: flex; justify-content: space-between; align-items: baseline;
}
.final-cta-left .meta-row .k {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(241,236,226,0.55);
}
.final-cta-left .meta-row .v { font-size: 15px; color: var(--cream); font-weight: 500; }

/* booking widget */
.booking {
  background: var(--paper);
  color: var(--navy);
  padding: 28px;
  display: grid;
  gap: 22px;
  align-content: start;
}
.booking-head {
  display: flex; justify-content: space-between; align-items: center;
}
.booking-head .title {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 17px;
  letter-spacing: -0.005em;
}
.booking-head .status {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase;
  color: #2D7A3F;
}
.booking-head .status .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #2D7A3F; box-shadow: 0 0 0 4px rgba(45,122,63,0.18);
}
.booking-meta {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 14px 0;
}
.booking-meta .col .k {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--navy-60);
}
.booking-meta .col .v {
  margin-top: 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--navy);
}
.booking-days {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 6px;
}
.booking-day {
  border: 1px solid var(--rule);
  padding: 12px 8px;
  text-align: center;
  transition: background 120ms ease, border-color 120ms ease, color 120ms ease;
}
.booking-day .dow {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--navy-60);
}
.booking-day .dom {
  font-size: 22px; font-weight: 500; margin-top: 6px; letter-spacing: -0.01em;
}
.booking-day.active {
  background: var(--navy); border-color: var(--navy); color: var(--cream);
}
.booking-day.active .dow { color: rgba(241,236,226,0.65); }
.booking-day:not(.disabled):hover {
  border-color: var(--navy);
}
.booking-day.disabled {
  opacity: 0.35; cursor: not-allowed;
}

.booking-slots {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}
.booking-slot {
  padding: 12px 8px;
  border: 1px solid var(--rule);
  font-size: 13px;
  font-weight: 500;
  text-align: center;
  transition: all 120ms ease;
}
.booking-slot:hover { border-color: var(--navy); }
.booking-slot.active {
  background: var(--navy); color: var(--cream); border-color: var(--navy);
}
.booking-confirm {
  display: flex; gap: 10px; align-items: center; justify-content: space-between;
  border-top: 1px solid var(--rule);
  padding-top: 18px;
}
.booking-confirm .note {
  font-size: 12px; color: var(--navy-60);
  font-family: var(--font-mono); letter-spacing: 0.04em;
}
.booking-confirm .btn { padding: 12px 16px; font-size: 13px; }

/* ============== Footer ============== */
.footer {
  background: var(--paper);
  color: var(--navy);
  padding-top: clamp(72px, 8vw, 120px);
  padding-bottom: 32px;
  border-top: 1px solid var(--rule);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer-brand img { height: 56px; width: auto; margin-bottom: 22px; }
.footer-brand p {
  font-size: 14px; color: var(--navy-80); line-height: 1.55; max-width: 34ch;
}
.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy-60);
  margin-bottom: 20px;
  font-weight: 500;
}
.footer-col ul { list-style: none; display: grid; gap: 10px; }
.footer-col li a {
  font-size: 14px;
  color: var(--navy);
  transition: color 120ms ease;
}
.footer-col li a:hover { color: var(--navy-60); }
.footer-bottom {
  margin-top: clamp(48px, 6vw, 80px);
  padding-top: 24px;
  border-top: 1px solid var(--rule);
  display: flex; justify-content: space-between; align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--navy-60);
}
.footer-bottom .legal { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-bottom a:hover { color: var(--navy); }

/* big footer wordmark — removed */

/* ============== Full-bleed skyline / stats bar ============== */
.skyline-bleed {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  height: clamp(420px, 52vw, 680px);
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.skyline-bleed image-slot {
  display: block;
  width: 100%;
  height: 100%;
}
.skyline-bleed .skyline-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(32px, 5vw, 72px) var(--pad-x);
  color: var(--cream);
  pointer-events: none;
  background:
    linear-gradient(to top, rgba(11,27,44,0.82) 0%, rgba(11,27,44,0.35) 55%, rgba(11,27,44,0.55) 100%);
}
.skyline-bleed .skyline-overlay .top {
  display: flex; justify-content: space-between; align-items: flex-start; gap: 24px;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(241,236,226,0.85);
}
.skyline-bleed .skyline-overlay h2 {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(32px, 5vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.018em;
  color: var(--cream);
  max-width: 22ch;
  text-wrap: balance;
}
.skyline-bleed .skyline-overlay h2 .roman {
  font-family: var(--font-sans);
  font-style: normal;
  font-weight: 500;
}

/* stats grid overlaid on bleed */
.stats-bar .stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(241,236,226,0.22);
  margin-top: clamp(28px, 4vw, 48px);
}
.stats-bar .stat {
  padding: 22px 24px 4px 0;
  border-right: 1px solid rgba(241,236,226,0.18);
}
.stats-bar .stat:last-child { border-right: none; }
.stats-bar .stat .k {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(241,236,226,0.6);
}
.stats-bar .stat .v {
  margin-top: 10px;
  font-family: var(--font-sans);
  font-size: clamp(20px, 1.8vw, 24px);
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--cream);
}
.stats-bar .stat .v .em {
  font-family: var(--font-serif); font-style: italic; font-weight: 400;
  color: rgba(241,236,226,0.78);
}
@media (max-width: 780px) {
  .stats-bar .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-bar .stat:nth-child(2n) { border-right: none; }
  .stats-bar .stat:nth-child(-n+2) { border-bottom: 1px solid rgba(241,236,226,0.18); }
}

/* ============== About Tim preview ============== */
.about-tim {
  background: var(--cream);
}
.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(40px, 6vw, 96px);
  align-items: stretch;
}
.about-portrait {
  position: relative;
  height: clamp(420px, 58vw, 640px);
  background: var(--cream-deep);
  overflow: hidden;
}
.about-portrait image-slot { display: block; width: 100%; height: 100%; }
.about-portrait .ptag {
  position: absolute;
  left: 16px; bottom: 16px;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 14px;
  background: rgba(11,27,44,0.7);
  color: var(--cream);
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.1em; text-transform: uppercase;
  z-index: 2; pointer-events: none;
}
.about-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(8px, 1vw, 24px) 0;
}
.about-text h2 {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: clamp(34px, 4.4vw, 56px);
  line-height: 1.04;
  letter-spacing: -0.022em;
  color: var(--navy);
  text-wrap: balance;
  margin-top: 24px;
}
.about-text h2 .italic { font-family: var(--font-serif); font-style: italic; font-weight: 400; }
.about-text p {
  margin-top: 22px;
  font-size: 17px;
  line-height: 1.6;
  color: var(--navy-80);
  text-wrap: pretty;
  max-width: 52ch;
}
.about-text p + p { margin-top: 14px; }
.about-meta {
  margin-top: 36px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--rule);
  max-width: 420px;
}
.about-meta .col {
  padding: 16px 16px 16px 0;
  border-right: 1px solid var(--rule);
}
.about-meta .col:last-child { border-right: none; padding-left: 20px; padding-right: 0; }
.about-meta .k {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--navy-60);
}
.about-meta .v { margin-top: 6px; font-size: 14px; color: var(--navy); font-weight: 500; }
.about-text .about-cta { margin-top: 36px; }

/* mobile: services + about + narrative stack */
@media (max-width: 980px) {
  .service-row {
    grid-template-columns: 40px 1fr;
    gap: 14px;
  }
  .service-thumb { grid-column: 1 / -1; height: 180px; }
  .service-row .desc { grid-column: 1 / -1; padding-left: 54px; }
  .service-row .more { grid-column: 1 / -1; padding-left: 54px; }
  .about-grid { grid-template-columns: 1fr; }
  .about-portrait { height: clamp(360px, 80vw, 520px); }
}

/* ============== Mobile ============== */
@media (max-width: 980px) {
  .nav-links { display: none; }
  .menu-toggle {
    display: inline-flex;
    width: 44px; height: 44px;
    border: 1px solid var(--rule-strong);
    align-items: center; justify-content: center;
  }
  .menu-toggle .bar {
    display: block; width: 18px; height: 1.5px; background: var(--navy);
    position: relative;
  }
  .menu-toggle .bar::before, .menu-toggle .bar::after {
    content: ""; position: absolute; left: 0; right: 0; height: 1.5px; background: var(--navy);
  }
  .menu-toggle .bar::before { top: -6px; }
  .menu-toggle .bar::after { top: 6px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-card { min-height: auto; }
  .hero-strip { grid-template-columns: repeat(2, 1fr); }
  .hero-strip .cell:nth-child(2n) { border-right: none; }
  .hero-strip .cell:nth-child(-n+2) { border-bottom: 1px solid var(--rule); }
  .section-head { grid-template-columns: 1fr; }
  .service-row {
    grid-template-columns: 40px 1fr;
    gap: 16px;
  }
  .service-row .desc { grid-column: 1 / -1; padding-left: 56px; }
  .service-row .more { grid-column: 1 / -1; padding-left: 56px; }
  .narrative-grid { grid-template-columns: 1fr; }
  .testimonial-stage { grid-template-columns: 1fr; }
  .testimonial-attr { border-left: none; border-top: 1px solid rgba(241,236,226,0.2); padding-left: 0; padding-top: 18px; }
  .process-steps { grid-template-columns: 1fr; }
  .process-step { border-right: none; border-bottom: 1px solid var(--rule); }
  .process-step:last-child { border-bottom: none; }
  .diffs-grid { grid-template-columns: 1fr; }
  .diff { border-right: none; border-bottom: 1px solid var(--rule); }
  .diff:last-child { border-bottom: none; }
  .final-cta-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .utility-inner .right .hide-mobile { display: none; }
}
@media (max-width: 540px) {
  .utility-inner { flex-direction: column; align-items: flex-start; }
  .booking-meta { grid-template-columns: 1fr; }
  .booking-days { grid-template-columns: repeat(5, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
}
