/* ==========================================================================
   Wayvern Digital — style.css
   "Momentum" direction (from Claude Design handoff): crisp white, energetic,
   amber-gold accent, Space Grotesk display / Hanken Grotesk body,
   rounded cards, pill buttons, playful hover lifts, kinetic hero.
   ========================================================================== */

:root {
  --bg: #ffffff;
  --bg-2: #f4f6f3;
  --ink: #10130f;
  --ink-2: #454a41;
  --ink-3: #80877a;
  --line: #e6e9e3;
  --line-2: #d4d8cd;
  --accent: #ffb020;        /* amber gold */
  --accent-deep: #9a6500;   /* readable gold for text on white */
  --accent-soft: #fff3da;
  --accent-ink: #10130f;    /* text colour that sits on the accent fill */
  --hero-dark: 0.95;        /* hero image overlay darkness (design default) */
  /* aliases kept for legacy inline styles in page markup */
  --txt: var(--ink);
  --txt-dim: var(--ink-2);
  --txt-faint: var(--ink-3);
  --accent-2: var(--accent-deep);
  --accent-dim: color-mix(in srgb, var(--accent) 45%, transparent);
  --disp: "Space Grotesk", sans-serif;
  --sans: "Hanken Grotesk", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --container: 1280px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; }
::selection { background: var(--accent); color: var(--accent-ink); }

/* Legacy decorative layers from the old theme — retired in Momentum */
.lat-lines { display: none; }

/* ---------- Type utilities ---------- */
.mono-label {
  font-family: var(--disp);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-deep);
}
.mono-dim {
  font-family: var(--disp);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-3);
}
/* Headline accents: Space Grotesk has no italic — emphasis is colour, not slant */
h1 em, h2 em, h3 em, .footer-brand em {
  font-style: normal;
  color: var(--accent-deep);
}

/* ---------- Layout ---------- */
.container { width: min(var(--container), calc(100% - 48px)); margin-inline: auto; }
section { position: relative; z-index: 1; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.35s var(--ease), border-color 0.35s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}
.logo { display: flex; align-items: center; gap: 10px; }
.logo .mk {
  width: 32px; height: 32px;
  background: var(--accent);
  display: grid;
  place-items: center;
  border-radius: 50%;
  flex-shrink: 0;
}
.logo .mk svg { width: 18px; height: 18px; }
.logo-text {
  font-family: var(--disp);
  font-weight: 700;
  font-size: 19px;
  letter-spacing: -0.02em;
}
.main-nav { display: flex; align-items: center; gap: 32px; }
.main-nav a {
  font-family: var(--disp);
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink-2);
  transition: color 0.25s;
}
.main-nav a:hover, .main-nav a.active { color: var(--ink); }
.main-nav a.active:not(.nav-cta) { color: var(--accent-deep); }
.nav-cta {
  background: var(--accent);
  color: var(--accent-ink) !important;
  padding: 11px 22px;
  border-radius: 100px;
  font-weight: 600 !important;
  white-space: nowrap;
  transition: transform 0.25s, box-shadow 0.25s !important;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(8, 10, 7, 0.28); }

/* Homepage: header sits over the dark hero until scrolled */
.site-header.on-dark:not(.scrolled) .logo-text { color: #fff; }
.site-header.on-dark:not(.scrolled) .main-nav:not(.open) a:not(.nav-cta) { color: rgba(255, 255, 255, 0.9); }
.site-header.on-dark:not(.scrolled) .main-nav:not(.open) a:not(.nav-cta):hover { color: #fff; }
.site-header.on-dark:not(.scrolled) .nav-toggle span { background: #fff; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  padding: 8px;
  z-index: 110;
}
.nav-toggle span {
  width: 24px; height: 2px;
  background: var(--ink);
  transition: transform 0.35s var(--ease), opacity 0.3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-toggle.open span { background: var(--ink) !important; }

/* ---------- Hero (homepage) ---------- */
.hero {
  position: relative;
  min-height: 94vh;
  display: flex;
  align-items: center;
  text-align: center;
  padding: 150px 0 96px;
  overflow: hidden;
  color: #fff;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; background: #0a0c09; }
/* cinematic crossfade slideshow — always-on motion, fallback when video can't play */
.hero-slides { position: absolute; inset: 0; }
.hero-slides .slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  will-change: opacity, transform;
  animation: hslide 21s linear infinite;
}
.hero-slides .s1 { animation-delay: 0s; }
.hero-slides .s2 { animation-delay: 7s; }
.hero-slides .s3 { animation-delay: 14s; }
@keyframes hslide {
  0% { opacity: 0; transform: scale(1.06); }
  6% { opacity: 1; }
  36% { opacity: 1; transform: scale(1.14); }
  44% { opacity: 0; transform: scale(1.17); }
  100% { opacity: 0; transform: scale(1.06); }
}
/* real video layer — fades in over the slideshow once loaded */
.hero-vid {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease;
}
.hero-vid.show { opacity: 1; }
.hero-bg::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg,
    rgba(8, 10, 7, calc(var(--hero-dark) * 0.5)) 0%,
    rgba(8, 10, 7, calc(var(--hero-dark) * 0.38)) 42%,
    rgba(8, 10, 7, var(--hero-dark)) 100%);
}
.hero > .container { position: relative; z-index: 1; }
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #fff;
  backdrop-filter: blur(8px);
  padding: 8px 16px;
  border-radius: 100px;
  font-family: var(--disp);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 28px;
}
.hero-pill .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2);
}
.hero h1 {
  font-family: var(--disp);
  font-weight: 700;
  font-size: clamp(44px, 8vw, 116px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  max-width: 16ch;
  margin: 0 auto;
}
.hero h1 em { color: var(--accent); }
.rot {
  display: block;
  position: relative;
  color: var(--accent);
  text-align: center;
  height: 1em;
  line-height: 0.95;
  margin-top: 0.04em;
}
.rot .w {
  position: absolute;
  left: 0; right: 0; top: 0;
  text-align: center;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(0.18em);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}
.rot .w.on { opacity: 1; transform: none; }
.hero-sub {
  margin: 30px auto 0;
  max-width: 52ch;
  color: rgba(255, 255, 255, 0.85);
  font-size: 19px;
}
.hero-actions {
  margin-top: 36px;
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--disp);
  font-weight: 600;
  font-size: 15px;
  padding: 16px 30px;
  border-radius: 100px;
  transition: transform 0.25s var(--ease), box-shadow 0.25s, background 0.25s, color 0.25s, border-color 0.25s;
  border: 1.5px solid transparent;
  background: var(--accent);
  color: var(--accent-ink);
  box-shadow: 0 12px 30px rgba(8, 10, 7, 0.18);
}
.btn:hover { transform: translateY(-3px); box-shadow: 0 18px 40px rgba(8, 10, 7, 0.28); }
.btn .ar { transition: transform 0.3s var(--ease); }
.btn:hover .ar { transform: translateX(4px); }
.btn-ghost {
  background: transparent;
  border-color: var(--line-2);
  color: var(--ink);
  box-shadow: none;
}
.btn-ghost:hover { border-color: var(--ink); background: var(--ink); color: #fff; }
/* ghost on dark hero */
.hero .btn-ghost { border-color: rgba(255, 255, 255, 0.45); color: #fff; }
.hero .btn-ghost:hover { border-color: #fff; background: #fff; color: var(--ink); }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--disp);
  font-weight: 600;
  font-size: 15px;
  color: var(--accent-deep);
  transition: gap 0.25s;
}
.text-link:hover { gap: 14px; }

/* ---------- Marquee ---------- */
.mq { background: var(--ink); color: #fff; padding: 18px 0; overflow: hidden; }
.mq-track {
  display: flex;
  gap: 40px;
  white-space: nowrap;
  animation: roll 26s linear infinite;
  width: max-content;
  font-family: var(--disp);
}
.mq:hover .mq-track { animation-play-state: paused; }
@keyframes roll { to { transform: translateX(-50%); } }
.mq-item {
  display: flex;
  align-items: center;
  gap: 40px;
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.mq-item .s { color: var(--accent); }

/* ---------- Section scaffolding ---------- */
.section { padding: 110px 0; }
.section.alt { background: var(--bg-2); }
.section-head {
  display: flex;
  flex-direction: column-reverse; /* markup order is h2 then .section-num — show eyebrow above */
  align-items: center;
  text-align: center;
  gap: 14px;
  max-width: 34ch;
  margin: 0 auto 56px;
}
.section-head h2 {
  font-family: var(--disp);
  font-weight: 700;
  font-size: clamp(30px, 4.6vw, 58px);
  line-height: 1.02;
  letter-spacing: -0.025em;
}
.section-num {
  font-family: var(--disp);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-deep);
}
.section-num b { font-weight: 600; color: inherit; }

/* ---------- Services (cards with thumbs + number badges) ---------- */
.svc-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.svc-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  position: relative;
  transition: transform 0.3s var(--ease), box-shadow 0.3s, border-color 0.3s;
}
.section.alt .svc-card { background: #fff; }
.svc-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 50px rgba(16, 19, 15, 0.1);
  border-color: var(--accent);
}
.svc-thumb { position: relative; aspect-ratio: 16 / 8; background: var(--bg-2); }
.svc-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); clip-path: inset(0); }
.svc-card:hover .svc-thumb img { transform: scale(1.05); }
.svc-card .ic {
  position: absolute;
  left: 18px; bottom: -22px;
  width: 48px; height: 48px;
  border-radius: 14px;
  background: var(--accent);
  display: grid;
  place-items: center;
  font-family: var(--disp);
  font-weight: 700;
  color: var(--accent-ink);
  font-size: 17px;
  box-shadow: 0 8px 20px rgba(8, 10, 7, 0.28);
  z-index: 1;
}
.svc-body { padding: 36px 32px 34px; }
.svc-card h3 {
  font-family: var(--disp);
  font-weight: 700;
  font-size: 23px;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}
.svc-card p { color: var(--ink-2); font-size: 15.5px; max-width: 42ch; }
.linkrow { text-align: center; margin-top: 44px; }

/* ---------- Why / angle ---------- */
.angle { display: grid; grid-template-columns: 1fr 1.05fr; gap: 56px; align-items: stretch; }
.angle-media {
  border-radius: 24px;
  overflow: hidden;
  min-height: 460px;
  position: relative;
  background: var(--bg-2);
}
.angle-media img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.angle-media:hover img { transform: scale(1.04); }
.angle-copy { display: flex; flex-direction: column; justify-content: center; gap: 32px; }
.angle-copy h2 {
  font-family: var(--disp);
  font-weight: 700;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.06;
  letter-spacing: -0.025em;
}
.angle-copy p { color: var(--ink-2); margin-top: 20px; max-width: 46ch; }
.angle-stats { display: grid; gap: 16px; }
.stat {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 28px 30px;
  display: flex;
  align-items: center;
  gap: 26px;
  transition: transform 0.3s, border-color 0.3s;
}
.stat:hover { transform: translateX(6px); border-color: var(--accent); }
.stat .num {
  font-family: var(--disp);
  font-weight: 700;
  font-size: clamp(38px, 4.4vw, 56px);
  color: var(--accent-deep);
  line-height: 1;
  letter-spacing: -0.02em;
  flex-shrink: 0;
  min-width: 3.6ch;
}
.stat .desc { color: var(--ink-2); font-size: 15px; }

/* ---------- Process steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.step { position: relative; padding-top: 26px; border-top: 3px solid var(--ink); transition: border-color 0.3s; }
.step:hover { border-color: var(--accent); }
.step .no { font-family: var(--disp); font-weight: 700; font-size: 15px; color: var(--accent-deep); }
.step h3 {
  font-family: var(--disp);
  font-weight: 700;
  font-size: 22px;
  margin: 14px 0 10px;
  letter-spacing: -0.01em;
}
.step p { color: var(--ink-2); font-size: 15px; }

/* ---------- Work ---------- */
.work-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.work-card.wide { grid-column: 1 / -1; }
.work-thumb {
  aspect-ratio: 16 / 10;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  background: var(--bg-2);
  display: flex;
  align-items: center;
  justify-content: center;
}
.work-card.wide .work-thumb { aspect-ratio: 24 / 9; }
.work-thumb img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.8s var(--ease);
}
.work-card:hover .work-thumb img { transform: scale(1.05); }
.work-thumb .badge {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--accent);
  color: var(--accent-ink);
  padding: 6px 14px;
  border-radius: 100px;
  font-family: var(--disp);
  font-size: 12px;
  font-weight: 600;
  z-index: 1;
}
.work-thumb .placeholder-mark {
  font-family: var(--disp);
  font-weight: 600;
  font-size: clamp(20px, 2.4vw, 30px);
  color: var(--ink-3);
  transition: color 0.4s;
  position: relative;
  z-index: 1;
}
.work-card:hover .placeholder-mark { color: var(--accent-deep); }
.work-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-top: 18px;
  gap: 16px;
}
.work-meta h3 { font-family: var(--disp); font-weight: 700; font-size: 22px; letter-spacing: -0.01em; }
.work-desc { color: var(--ink-2); font-size: 15px; margin-top: 6px; max-width: 60ch; }

/* ---------- Testimonials ---------- */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.testi-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 34px 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.testi-card:hover { transform: translateY(-5px); box-shadow: 0 24px 50px rgba(16, 19, 15, 0.1); }
.testi-card .stars { color: var(--accent-deep); letter-spacing: 0.2em; font-size: 15px; }
.testi-card blockquote { font-size: 17px; line-height: 1.5; flex: 1; }
.testi-card cite { font-style: normal; display: flex; align-items: center; gap: 12px; }
.testi-card .av {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent-deep);
  display: grid;
  place-items: center;
  font-family: var(--disp);
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
  object-fit: cover;
}
.testi-card cite b { display: block; font-weight: 600; font-size: 14.5px; }
.testi-card cite .who span { font-size: 13px; color: var(--ink-3); display: block; }

/* ---------- CTA band (dark rounded box) ---------- */
.cta-band { padding: 0 0 110px; border: 0; text-align: center; }
.cta-band > .container {
  background: var(--ink);
  color: #fff;
  border-radius: 34px;
  padding: 80px 40px;
  position: relative;
  overflow: hidden;
}
.cta-band .cta-bg { position: absolute; inset: 0; z-index: 0; }
.cta-band .cta-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.45; }
.cta-band .cta-bg::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(8, 10, 7, 0.74), rgba(8, 10, 7, 0.9));
}
.cta-band > .container::before {
  content: "";
  position: absolute;
  inset: auto -10% -60% -10%;
  height: 90%;
  z-index: 1;
  background: radial-gradient(ellipse at 50% 100%, color-mix(in srgb, var(--accent) 45%, transparent), transparent 65%);
  pointer-events: none;
}
.cta-band .mono-label { position: relative; z-index: 2; color: var(--accent); }
.cta-band h2 {
  position: relative;
  z-index: 2;
  font-family: var(--disp);
  font-weight: 700;
  font-size: clamp(38px, 6vw, 82px);
  line-height: 0.98;
  letter-spacing: -0.03em;
  max-width: 15ch;
  margin: 16px auto 0;
}
.cta-band h2 em { color: var(--accent); }
.cta-band .btn { position: relative; z-index: 2; margin-top: 38px; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero { padding: 180px 0 80px; }
.page-hero h1 {
  font-family: var(--disp);
  font-weight: 700;
  font-size: clamp(40px, 6vw, 84px);
  line-height: 1;
  letter-spacing: -0.03em;
  max-width: 16ch;
  margin-top: 22px;
}
.page-hero .lede {
  margin-top: 26px;
  font-size: 19px;
  color: var(--ink-2);
  max-width: 56ch;
}

/* ---------- Detail rows (services page) ---------- */
.detail-row {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 56px;
  padding: 64px 0;
  border-top: 1px solid var(--line);
}
.detail-row h2 {
  font-family: var(--disp);
  font-weight: 700;
  font-size: clamp(28px, 3.2vw, 42px);
  letter-spacing: -0.02em;
  margin-top: 14px;
}
.detail-row .body p { color: var(--ink-2); margin-bottom: 20px; }
.detail-row .body ul {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.detail-row .body ul li {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px 22px;
  font-size: 14px;
  color: var(--ink-2);
  transition: border-color 0.3s, transform 0.3s;
}
.detail-row .body ul li:hover { border-color: var(--accent); transform: translateY(-2px); }
.detail-row .body ul li b {
  display: block;
  font-family: var(--disp);
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 4px;
}

/* ---------- About ---------- */
.about-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 64px; }
.about-grid .body p { color: var(--ink-2); margin-bottom: 22px; font-size: 17px; }
.about-grid .body p:first-child {
  font-family: var(--disp);
  font-size: 23px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.4;
  letter-spacing: -0.01em;
}
.values-list { display: grid; gap: 14px; }
.values-list li {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 26px 28px;
  transition: border-color 0.3s, transform 0.3s;
}
.values-list li:hover { border-color: var(--accent); transform: translateX(6px); }
.values-list h3 {
  font-family: var(--disp);
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.values-list p { font-size: 15px; color: var(--ink-2); }

/* ---------- Pricing ---------- */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.price-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 44px 36px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.3s var(--ease), box-shadow 0.3s, border-color 0.3s;
}
.price-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 50px rgba(16, 19, 15, 0.1);
  border-color: var(--accent);
}
.price-card.featured {
  border: 2px solid var(--accent);
  box-shadow: 0 24px 60px rgba(16, 19, 15, 0.12);
}
.price-card .tier {
  font-family: var(--disp);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-deep);
  margin-bottom: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
.price-card .badge {
  font-size: 11px;
  background: var(--accent);
  color: var(--accent-ink);
  border: 0;
  padding: 5px 12px;
  border-radius: 100px;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.price-card h3 {
  font-family: var(--disp);
  font-weight: 700;
  font-size: 26px;
  letter-spacing: -0.015em;
}
.price-card .amount { margin-top: 20px; display: flex; align-items: baseline; gap: 9px; }
.price-card .amount .from {
  font-family: var(--disp);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.price-card .amount .figure {
  font-family: var(--disp);
  font-weight: 700;
  font-size: clamp(38px, 3.6vw, 52px);
  color: var(--ink);
  line-height: 1;
  letter-spacing: -0.02em;
}
.price-card.featured .amount .figure { color: var(--accent-deep); }
.price-card .amount .gst { font-family: var(--disp); font-size: 12px; color: var(--ink-3); }
.price-card .tagline { margin-top: 16px; font-size: 15px; color: var(--ink-2); }
.price-card ul { margin-top: 28px; flex: 1; }
.price-card ul li {
  font-size: 14.5px;
  color: var(--ink-2);
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 12px;
  align-items: baseline;
}
.price-card ul li::before { content: "✓"; color: var(--accent-deep); font-weight: 700; flex-shrink: 0; }
.price-card .btn, .price-card .btn-ghost { margin-top: 32px; justify-content: center; }
.pricing-note { margin-top: 40px; display: flex; gap: 16px; align-items: baseline; }
.pricing-note p { font-size: 14px; color: var(--ink-3); max-width: 72ch; }
.care-strip {
  margin-top: 90px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 26px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
}
.care-strip .care-copy { padding: 52px 48px; }
.care-strip h3 {
  font-family: var(--disp);
  font-weight: 700;
  font-size: 28px;
  letter-spacing: -0.015em;
  margin-top: 12px;
}
.care-strip .care-copy p { margin-top: 16px; color: var(--ink-2); font-size: 16px; max-width: 50ch; }
.care-strip .care-price {
  padding: 52px 48px;
  background: #fff;
  border-left: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}
.care-strip .care-price .figure {
  font-family: var(--disp);
  font-weight: 700;
  font-size: clamp(40px, 4vw, 58px);
  color: var(--accent-deep);
  line-height: 1;
  letter-spacing: -0.02em;
}
.compare-table {
  margin-top: 90px;
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
}
.compare-row { display: grid; grid-template-columns: 1.4fr 1fr 1fr; border-bottom: 1px solid var(--line); }
.compare-row:last-child { border-bottom: 0; }
.compare-row > div { padding: 20px 24px; font-size: 15px; }
.compare-row > div:first-child { color: var(--ink-2); }
.compare-row > div:nth-child(2) { border-left: 1px solid var(--line); color: var(--ink-3); }
.compare-row > div:nth-child(3) {
  border-left: 1px solid var(--line);
  color: var(--ink);
  font-weight: 500;
  background: var(--accent-soft);
}
.compare-row.head > div {
  font-family: var(--disp);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--bg-2);
}
.compare-row.head > div:nth-child(3) { color: var(--accent-deep); background: var(--accent-soft); }

/* ---------- Blog ---------- */
.blog-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.post-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 36px 34px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s, border-color 0.3s;
}
.post-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 50px rgba(16, 19, 15, 0.1);
  border-color: var(--accent);
}
.post-card .post-meta { display: flex; gap: 16px; align-items: center; margin-bottom: 18px; flex-wrap: wrap; }
.post-card h2, .post-card h3 {
  font-family: var(--disp);
  font-weight: 700;
  font-size: clamp(22px, 2.4vw, 29px);
  line-height: 1.12;
  letter-spacing: -0.02em;
  transition: color 0.3s;
}
.post-card a:hover h2, .post-card a:hover h3 { color: var(--accent-deep); }
.post-card p { margin-top: 14px; color: var(--ink-2); font-size: 15.5px; max-width: 56ch; }
.post-card .text-link { margin-top: 22px; }

/* ---------- Article ---------- */
.article-hero { padding: 180px 0 56px; }
.article-hero h1 {
  font-family: var(--disp);
  font-weight: 700;
  font-size: clamp(32px, 4.6vw, 60px);
  line-height: 1.04;
  letter-spacing: -0.025em;
  max-width: 22ch;
  margin-top: 22px;
}
.article-hero .post-meta { display: flex; gap: 16px; align-items: center; margin-top: 24px; flex-wrap: wrap; }
.article-body { max-width: 720px; padding-bottom: 110px; }
.article-body p { color: var(--ink-2); margin-bottom: 24px; font-size: 17.5px; line-height: 1.7; }
.article-body > p:first-child {
  font-family: var(--disp);
  font-size: 22px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.45;
  letter-spacing: -0.01em;
}
.article-body h2 {
  font-family: var(--disp);
  font-weight: 700;
  font-size: 30px;
  letter-spacing: -0.02em;
  margin: 52px 0 18px;
}
.article-body h3 {
  font-family: var(--disp);
  font-weight: 700;
  font-size: 21px;
  letter-spacing: -0.01em;
  margin: 38px 0 12px;
}
.article-body ul, .article-body ol { margin: 0 0 24px; }
.article-body ul li, .article-body ol li {
  color: var(--ink-2);
  padding: 9px 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 14px;
  align-items: baseline;
  font-size: 16.5px;
}
.article-body ul li::before { content: "—"; color: var(--accent-deep); font-weight: 700; flex-shrink: 0; }
.article-body ol { counter-reset: oli; list-style: none; }
.article-body ol li { counter-increment: oli; }
.article-body ol li::before {
  content: counter(oli, decimal-leading-zero);
  font-family: var(--disp);
  font-weight: 700;
  font-size: 13px;
  color: var(--accent-deep);
  flex-shrink: 0;
}
.article-body table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 0 0 24px;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
}
.article-body th, .article-body td {
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
  text-align: left;
}
.article-body tr:last-child td { border-bottom: 0; }
.article-body th {
  font-family: var(--disp);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-deep);
  background: var(--bg-2);
}
.article-body td { color: var(--ink-2); }
.article-body td:last-child { color: var(--ink); font-weight: 500; }
.article-body .pull {
  border-left: 4px solid var(--accent);
  background: var(--bg-2);
  border-radius: 0 18px 18px 0;
  padding: 22px 28px;
  margin: 36px 0;
  font-family: var(--disp);
  font-weight: 500;
  font-size: 20px;
  color: var(--ink);
  line-height: 1.45;
  letter-spacing: -0.01em;
}
.article-cta {
  margin-top: 56px;
  background: var(--ink);
  color: #fff;
  border-radius: 24px;
  padding: 44px 40px;
  position: relative;
  overflow: hidden;
}
.article-cta::before {
  content: "";
  position: absolute;
  inset: auto -10% -70% -10%;
  height: 100%;
  background: radial-gradient(ellipse at 50% 100%, color-mix(in srgb, var(--accent) 40%, transparent), transparent 65%);
  pointer-events: none;
}
.article-cta h3 {
  font-family: var(--disp);
  font-weight: 700;
  font-size: 26px;
  letter-spacing: -0.015em;
  margin: 0 0 12px;
  position: relative;
}
.article-cta p { margin-bottom: 24px; color: rgba(255, 255, 255, 0.8); position: relative; }
.article-cta .btn { position: relative; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 56px; }
.contact-info .info-block {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 26px 28px;
  margin-bottom: 14px;
}
.contact-info .info-block p, .contact-info .info-block a {
  font-family: var(--disp);
  font-weight: 600;
  font-size: 17px;
  margin-top: 8px;
  display: block;
  transition: color 0.3s;
}
.contact-info .info-block a:hover { color: var(--accent-deep); }
.contact-form { display: grid; gap: 16px; }
.field { position: relative; }
.field label {
  display: block;
  font-family: var(--disp);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-2);
  margin-bottom: 8px;
}
.field input, .field textarea, .field select {
  width: 100%;
  background: var(--bg-2);
  border: 1.5px solid var(--line);
  border-radius: 14px;
  outline: none;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16.5px;
  padding: 14px 18px;
  transition: border-color 0.25s, background 0.25s;
}
.field input:focus, .field textarea:focus, .field select:focus {
  border-color: var(--accent);
  background: #fff;
}
.field textarea { resize: vertical; min-height: 130px; }
.contact-form .btn { margin-top: 16px; justify-self: start; }
.form-note { margin-top: 4px; font-size: 13px; color: var(--ink-3); }

/* ---------- FAQ ---------- */
.faq-list { display: grid; gap: 14px; }
.faq-item {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 0 26px;
  transition: border-color 0.3s;
}
.faq-item[open], .faq-item:hover { border-color: var(--accent); }
.faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 22px 0;
  cursor: pointer;
  list-style: none;
  font-family: var(--disp);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.01em;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .faq-x { flex-shrink: 0; width: 14px; height: 14px; position: relative; }
.faq-item summary .faq-x::before, .faq-item summary .faq-x::after {
  content: "";
  position: absolute;
  background: var(--accent-deep);
  transition: transform 0.35s var(--ease);
  border-radius: 2px;
}
.faq-item summary .faq-x::before { left: 0; top: 6px; width: 14px; height: 2px; }
.faq-item summary .faq-x::after { left: 6px; top: 0; width: 2px; height: 14px; }
.faq-item[open] summary .faq-x::after { transform: rotate(90deg); }
.faq-item .faq-body { padding: 0 0 24px; color: var(--ink-2); max-width: 62ch; }

/* ---------- Footer (light) ---------- */
.site-footer { background: var(--bg-2); padding: 64px 0 36px; border-top: 1px solid var(--line); }
.footer-top { display: flex; justify-content: space-between; gap: 48px; flex-wrap: wrap; margin-bottom: 50px; }
.footer-brand h2 {
  font-family: var(--disp);
  font-weight: 700;
  font-size: clamp(28px, 3.4vw, 42px);
  letter-spacing: -0.025em;
  max-width: 14ch;
  line-height: 1.04;
}
.footer-cols { display: flex; gap: 60px; flex-wrap: wrap; }
.footer-col h4 {
  font-family: var(--disp);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 16px;
}
.footer-col li { margin-bottom: 10px; }
.footer-col a { font-size: 14.5px; color: var(--ink-2); transition: color 0.25s; }
.footer-col a:hover { color: var(--accent-deep); }
.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--ink-3);
}
.footer-bottom .mono-dim { font-size: 12px; }

/* ---------- Reveal animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.in { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; }
.reveal-d4 { transition-delay: 0.32s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
  .hero-slides .s1 { opacity: 1; }
  .hero-vid { display: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .svc-grid, .angle, .work-grid, .about-grid, .contact-grid, .detail-row { grid-template-columns: 1fr; }
  .angle-media { min-height: 300px; }
  .steps { grid-template-columns: 1fr 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .care-strip { grid-template-columns: 1fr; }
  .care-strip .care-price { border-left: 0; border-top: 1px solid var(--line); }
  .blog-grid { grid-template-columns: 1fr; }
  .stat .desc { font-size: 14px; }
}
@media (max-width: 760px) {
  .main-nav {
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(16px);
    flex-direction: column;
    justify-content: center;
    gap: 26px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s;
  }
  .main-nav.open { opacity: 1; pointer-events: auto; }
  .main-nav a { font-size: 21px; color: var(--ink-2) !important; }
  .main-nav a.nav-cta { color: var(--accent-ink) !important; }
  .nav-toggle { display: flex; }
  .section { padding: 74px 0; }
  .hero { padding: 130px 0 50px; min-height: 88vh; }
  .page-hero { padding: 140px 0 56px; }
  .article-hero { padding: 140px 0 40px; }
  .steps { grid-template-columns: 1fr; }
  .svc-body { padding: 32px 26px 30px; }
  .price-card { padding: 36px 26px; }
  .care-strip .care-copy, .care-strip .care-price { padding: 36px 26px; }
  .cta-band > .container { padding: 60px 24px; border-radius: 26px; }
  .article-cta { padding: 36px 26px; }
  .post-card { padding: 30px 26px; }
  .article-body th, .article-body td { padding: 12px 12px; font-size: 14px; }
  .footer-cols { gap: 36px; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}
/* Small phones: stack the pricing comparison rows */
@media (max-width: 560px) {
  .compare-row { grid-template-columns: 1fr 1fr; }
  .compare-row > div:first-child { grid-column: 1 / -1; padding-bottom: 6px; }
  .compare-row > div:nth-child(2) { border-left: none; padding-top: 0; }
  .compare-row > div:nth-child(3) { padding-top: 0; }
  .compare-row.head > div:first-child { display: none; }
}
