/* ===========================================================
   Northpoint Advisory — Design Lab
   Bold modern consultancy / high-end B2B
   Dark charcoal canvas · electric amber accent · crisp white
   =========================================================== */

:root {
  /* Canvas */
  --ink-900: #0b0d10;
  --ink-850: #0f1216;
  --ink-800: #14181d;
  --ink-700: #1b2026;
  --ink-600: #262d35;
  --line: #2a323b;
  --line-soft: #1e242b;

  /* Text */
  --white: #f6f8fa;
  --mist: #c2ccd6;
  --slate: #8d99a6;
  --slate-dim: #66717c;

  /* Accent — electric amber */
  --amber: #ffb020;
  --amber-bright: #ffc54d;
  --amber-deep: #d98a00;
  --amber-glow: rgba(255, 176, 32, 0.16);

  /* Secondary cool tone for data accents */
  --teal: #2fd8c0;

  /* On-brand success */
  --emerald: #34d399;

  /* Type */
  --display: "Clash Display", "Archivo", system-ui, sans-serif;
  --body: "Archivo", system-ui, sans-serif;

  /* Geometry */
  --wrap: 1200px;
  --radius: 14px;
  --radius-lg: 22px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --shadow: 0 24px 60px -28px rgba(0, 0, 0, 0.8);
}

/* Clash Display via Fontshare-style fallback isn't allowed external JS;
   we load a distinctive Google pairing instead in HTML <link>.
   Map display var to that family. */
:root {
  --display: "Archivo Expanded", "Archivo", system-ui, sans-serif;
  --body: "Archivo", system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--body);
  background: var(--ink-900);
  color: var(--mist);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; }

::selection { background: var(--amber); color: var(--ink-900); }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 28px; }

h1, h2, h3, h4 {
  font-family: var(--display);
  color: var(--white);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.02em;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--amber);
}
.eyebrow::before {
  content: "";
  width: 26px; height: 2px;
  background: var(--amber);
  display: inline-block;
}

/* ===================== Buttons ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--body);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.01em;
  padding: 14px 24px;
  border-radius: 100px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
}
.btn .arr { transition: transform 0.25s var(--ease); }
.btn:hover .arr { transform: translateX(4px); }

.btn-solid {
  background: var(--amber);
  color: var(--ink-900);
  box-shadow: 0 14px 34px -16px var(--amber);
}
.btn-solid:hover { background: var(--amber-bright); transform: translateY(-2px); }

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: var(--line);
}
.btn-ghost:hover { border-color: var(--amber); color: var(--amber); }

/* ===================== Header ===================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(11, 13, 16, 0.78);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line-soft);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 78px;
}

.brand { display: flex; flex-direction: column; line-height: 1; }
.brand-mark {
  font-family: var(--display);
  font-weight: 700;
  font-size: 22px;
  color: var(--white);
  letter-spacing: -0.02em;
  display: flex; align-items: center; gap: 9px;
}
.brand-mark .glyph {
  width: 22px; height: 22px;
  flex: none;
}
.brand-sub {
  font-size: 10.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--slate);
  margin-top: 5px;
  padding-left: 31px;
}

.nav-links {
  display: flex;
  gap: 34px;
  list-style: none;
  margin-left: auto;
}
.nav-links a {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--mist);
  position: relative;
  padding: 4px 0;
  transition: color 0.2s var(--ease);
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--amber);
  transition: width 0.25s var(--ease);
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-cta { display: flex; align-items: center; gap: 18px; }
.nav-phone {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  white-space: nowrap;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 26px; height: 2px;
  background: var(--white);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

/* ===================== Hero ===================== */
.hero {
  position: relative;
  padding: 86px 0 96px;
  overflow: hidden;
  background:
    radial-gradient(900px 500px at 78% 8%, var(--amber-glow), transparent 62%),
    radial-gradient(700px 600px at 4% 96%, rgba(47, 216, 192, 0.08), transparent 60%),
    var(--ink-900);
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--line-soft) 1px, transparent 1px),
    linear-gradient(90deg, var(--line-soft) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(circle at 50% 30%, black, transparent 72%);
          mask-image: radial-gradient(circle at 50% 30%, black, transparent 72%);
  opacity: 0.5;
  pointer-events: none;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.hero-copy h1 {
  font-size: clamp(2.7rem, 6vw, 4.6rem);
  margin: 22px 0 22px;
}
.hero-copy h1 em {
  font-style: normal;
  color: var(--amber);
  position: relative;
}
.hero-tag {
  font-size: 19px;
  color: var(--mist);
  max-width: 30ch;
  margin-bottom: 32px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-trust {
  display: flex; gap: 28px; margin-top: 40px;
  border-top: 1px solid var(--line-soft);
  padding-top: 26px;
}
.hero-trust .t-n { font-family: var(--display); font-size: 26px; color: var(--white); font-weight: 700; }
.hero-trust .t-l { font-size: 12.5px; color: var(--slate); letter-spacing: 0.04em; }

/* Hero media card with growth-curve SVG */
.hero-media { position: relative; }
.chart-card {
  background: linear-gradient(165deg, var(--ink-800), var(--ink-850));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: var(--shadow);
}
.chart-head {
  display: flex; justify-content: space-between; align-items: flex-start;
  margin-bottom: 8px;
}
.chart-head .label { font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--slate); }
.chart-head .big { font-family: var(--display); font-size: 30px; color: var(--white); font-weight: 700; margin-top: 4px; }
.chart-head .delta {
  font-size: 13px; font-weight: 700; color: var(--emerald);
  background: rgba(52, 211, 153, 0.12);
  padding: 5px 11px; border-radius: 100px;
  display: inline-flex; align-items: center; gap: 5px;
}
.chart-svg { width: 100%; height: auto; margin-top: 6px; }
.chart-foot {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 10px; margin-top: 18px;
}
.kpi-tile {
  background: var(--ink-700);
  border: 1px solid var(--line-soft);
  border-radius: 10px;
  padding: 12px 13px;
}
.kpi-tile .n { font-family: var(--display); font-size: 18px; color: var(--white); font-weight: 700; }
.kpi-tile .l { font-size: 10.5px; color: var(--slate); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 3px; }

.float-badge {
  position: absolute;
  bottom: -22px; left: -22px;
  background: var(--amber);
  color: var(--ink-900);
  border-radius: 16px;
  padding: 16px 20px;
  box-shadow: 0 20px 40px -18px var(--amber);
}
.float-badge .n { font-family: var(--display); font-size: 26px; font-weight: 700; line-height: 1; }
.float-badge .l { font-size: 11.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; margin-top: 4px; }

/* ===================== Stat strip ===================== */
.stats {
  background: var(--ink-850);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat {
  padding: 38px 26px;
  border-right: 1px solid var(--line-soft);
}
.stat:last-child { border-right: none; }
.stat .n {
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 2.9rem);
  color: var(--white);
  font-weight: 700;
  letter-spacing: -0.03em;
}
.stat .n span { color: var(--amber); }
.stat .l { font-size: 13.5px; color: var(--slate); margin-top: 8px; letter-spacing: 0.02em; }

/* ===================== Generic section ===================== */
.section { padding: 96px 0; }
.section.alt { background: var(--ink-850); border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }

.sec-head { max-width: 720px; margin-bottom: 52px; }
.sec-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.sec-head h2 {
  font-size: clamp(2rem, 4.4vw, 3.1rem);
  margin: 18px 0 16px;
}
.sec-head p { font-size: 18px; color: var(--slate); }

.sec-head-row {
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 30px; margin-bottom: 52px; flex-wrap: wrap;
}
.sec-head-row .left { max-width: 620px; }
.sec-head-row h2 { font-size: clamp(2rem, 4.4vw, 3.1rem); margin: 16px 0 0; }

/* ===================== Engagement cards ===================== */
.eng-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.eng-card {
  background: linear-gradient(165deg, var(--ink-800), var(--ink-850));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease);
}
.eng-card::after {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--amber), transparent);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.eng-card:hover { transform: translateY(-6px); border-color: var(--line); }
.eng-card:hover::after { transform: scaleX(1); }
.eng-ico {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: var(--amber-glow);
  border: 1px solid rgba(255,176,32,0.25);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
}
.eng-ico svg { width: 26px; height: 26px; stroke: var(--amber); }
.eng-card h3 { font-size: 21px; margin-bottom: 10px; }
.eng-card p { font-size: 15px; color: var(--slate); margin-bottom: 18px; }
.eng-card .price-tag {
  font-family: var(--display); font-weight: 700;
  color: var(--white); font-size: 15px;
}
.eng-card .price-tag span { color: var(--amber); font-size: 22px; }
.eng-list { list-style: none; margin: 16px 0 0; }
.eng-list li {
  font-size: 14px; color: var(--mist);
  padding: 7px 0 7px 26px; position: relative;
  border-top: 1px solid var(--line-soft);
}
.eng-list li::before {
  content: ""; position: absolute; left: 0; top: 13px;
  width: 12px; height: 12px;
  background:
    linear-gradient(var(--emerald), var(--emerald)) center/12px 2px no-repeat,
    linear-gradient(var(--emerald), var(--emerald)) center/2px 12px no-repeat;
  transform: rotate(0);
}

/* ===================== Method framework ===================== */
.method-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  counter-reset: step;
}
.method-step {
  position: relative;
  padding: 30px 26px 28px;
  background: var(--ink-850);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.method-step:hover { border-color: var(--amber); transform: translateY(-4px); }
.method-step .num {
  font-family: var(--display);
  font-size: 52px; font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1.4px var(--amber-deep);
  line-height: 1; margin-bottom: 16px;
}
.method-step h3 { font-size: 18px; margin-bottom: 9px; }
.method-step p { font-size: 14px; color: var(--slate); }
.method-line {
  display: none;
}

/* ===================== Results / metrics ===================== */
.results-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
}
.metric-stack { display: grid; gap: 18px; }
.metric-bar {
  background: var(--ink-800);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 20px 22px;
}
.metric-bar .top { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 12px; }
.metric-bar .label { font-size: 14px; color: var(--mist); font-weight: 600; }
.metric-bar .val { font-family: var(--display); font-size: 24px; color: var(--amber); font-weight: 700; }
.bar-track { height: 8px; background: var(--ink-600); border-radius: 100px; overflow: hidden; }
.bar-fill {
  height: 100%; border-radius: 100px;
  background: linear-gradient(90deg, var(--amber-deep), var(--amber));
  transform-origin: left; transform: scaleX(0);
  transition: transform 1.1s var(--ease);
}
.reveal.in .bar-fill { transform: scaleX(1); }

.results-viz {
  background: linear-gradient(165deg, var(--ink-800), var(--ink-850));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px;
}
.results-viz h3 { font-size: 18px; margin-bottom: 4px; }
.results-viz .sub { font-size: 13px; color: var(--slate); margin-bottom: 18px; }

/* ===================== Testimonial ===================== */
.quote-wrap {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px; align-items: center;
}
.quote-mark {
  font-family: var(--display); font-size: 120px; color: var(--amber);
  line-height: 0.6; opacity: 0.85;
}
.quote-body blockquote {
  font-family: var(--display);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  color: var(--white);
  line-height: 1.28;
  letter-spacing: -0.02em;
  margin: 18px 0 26px;
  font-weight: 600;
}
.quote-author { display: flex; align-items: center; gap: 16px; }
.quote-avatar {
  width: 54px; height: 54px; border-radius: 50%;
  background: linear-gradient(135deg, var(--amber), var(--amber-deep));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--display); font-weight: 700; color: var(--ink-900);
  font-size: 20px; flex: none;
}
.quote-author .who { font-weight: 700; color: var(--white); font-size: 16px; }
.quote-author .role { font-size: 13.5px; color: var(--slate); }
.quote-side {
  background: linear-gradient(165deg, var(--ink-800), var(--ink-850));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 34px;
}
.quote-stat { padding: 18px 0; border-bottom: 1px solid var(--line-soft); }
.quote-stat:last-child { border-bottom: none; padding-bottom: 0; }
.quote-stat:first-child { padding-top: 0; }
.quote-stat .n { font-family: var(--display); font-size: 34px; color: var(--white); font-weight: 700; }
.quote-stat .n span { color: var(--amber); }
.quote-stat .l { font-size: 13.5px; color: var(--slate); }

/* ===================== Reviews ===================== */
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.review-card {
  background: var(--ink-850);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 28px;
}
.stars { color: var(--amber); letter-spacing: 3px; font-size: 15px; margin-bottom: 14px; }
.review-card p { font-size: 15px; color: var(--mist); margin-bottom: 18px; }
.review-by { font-weight: 700; color: var(--white); font-size: 14.5px; }
.review-co { font-size: 13px; color: var(--slate); }

/* ===================== Insights teaser ===================== */
.insight-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.insight-card {
  background: var(--ink-850);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease);
  display: flex; flex-direction: column;
}
.insight-card:hover { transform: translateY(-5px); border-color: var(--line); }
.insight-thumb { height: 150px; position: relative; overflow: hidden; }
.insight-thumb svg { width: 100%; height: 100%; }
.insight-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.insight-meta { font-size: 11.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--amber); margin-bottom: 12px; }
.insight-body h3 { font-size: 19px; margin-bottom: 10px; line-height: 1.2; }
.insight-body p { font-size: 14px; color: var(--slate); margin-bottom: 16px; flex: 1; }
.read-link { font-size: 14px; font-weight: 700; color: var(--white); display: inline-flex; gap: 7px; align-items: center; }
.read-link:hover { color: var(--amber); }

/* ===================== CTA band ===================== */
.cta-band {
  position: relative;
  padding: 92px 0;
  overflow: hidden;
  background:
    radial-gradient(700px 400px at 80% 50%, var(--amber-glow), transparent 60%),
    var(--ink-850);
  border-top: 1px solid var(--line-soft);
}
.cta-inner {
  display: grid; grid-template-columns: 1.3fr 0.7fr;
  gap: 40px; align-items: center;
}
.cta-inner h2 { font-size: clamp(2.1rem, 4.6vw, 3.3rem); margin-bottom: 16px; }
.cta-inner p { font-size: 18px; color: var(--mist); max-width: 46ch; }
.cta-actions { display: flex; flex-direction: column; gap: 14px; align-items: flex-start; }
.cta-actions .btn { width: 100%; justify-content: center; }
.cta-note { font-size: 13px; color: var(--slate); }

/* ===================== Footer ===================== */
.site-footer {
  background: var(--ink-900);
  border-top: 1px solid var(--line-soft);
  padding: 70px 0 34px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 44px;
  border-bottom: 1px solid var(--line-soft);
}
.footer-brand .brand-mark { font-size: 24px; }
.footer-brand p { font-size: 14.5px; color: var(--slate); margin: 18px 0 0; max-width: 34ch; }
.foot-col h4 {
  font-family: var(--body);
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--slate); margin-bottom: 18px; font-weight: 700;
}
.foot-col ul { list-style: none; display: grid; gap: 11px; }
.foot-col a, .foot-col li { font-size: 14.5px; color: var(--mist); }
.foot-col a:hover { color: var(--amber); }
.foot-nap { font-style: normal; font-size: 14.5px; color: var(--mist); line-height: 1.8; }
.foot-nap strong { color: var(--white); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  gap: 20px; padding-top: 26px; flex-wrap: wrap;
}
.footer-bottom .copy { font-size: 13px; color: var(--slate-dim); }
.disclaimer {
  font-size: 12.5px; color: var(--slate-dim);
  max-width: 760px; margin-top: 18px; line-height: 1.6;
}

/* ===================== Page hero (sub pages) ===================== */
.page-hero {
  position: relative;
  padding: 72px 0 64px;
  border-bottom: 1px solid var(--line-soft);
  background:
    radial-gradient(700px 380px at 82% 10%, var(--amber-glow), transparent 60%),
    var(--ink-850);
  overflow: hidden;
}
.page-hero::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--line-soft) 1px, transparent 1px),
    linear-gradient(90deg, var(--line-soft) 1px, transparent 1px);
  background-size: 60px 60px;
  -webkit-mask-image: radial-gradient(circle at 70% 30%, black, transparent 70%);
          mask-image: radial-gradient(circle at 70% 30%, black, transparent 70%);
  opacity: 0.4; pointer-events: none;
}
.page-hero .inner { position: relative; max-width: 760px; }
.page-hero h1 { font-size: clamp(2.4rem, 5.4vw, 3.8rem); margin: 18px 0 16px; }
.page-hero p { font-size: 19px; color: var(--mist); max-width: 54ch; }
.crumbs { font-size: 13px; color: var(--slate); }
.crumbs a:hover { color: var(--amber); }

/* ===================== Filters ===================== */
.filter-bar {
  display: flex; gap: 10px; flex-wrap: wrap;
  margin-bottom: 36px; align-items: center;
}
.filter-btn {
  font-family: var(--body); font-weight: 600; font-size: 14px;
  padding: 9px 18px; border-radius: 100px;
  background: var(--ink-800); color: var(--mist);
  border: 1px solid var(--line); cursor: pointer;
  transition: all 0.2s var(--ease);
}
.filter-btn:hover { border-color: var(--amber); color: var(--white); }
.filter-btn.active { background: var(--amber); color: var(--ink-900); border-color: var(--amber); }
.filter-count { margin-left: auto; font-size: 13.5px; color: var(--slate); }
.filter-count [data-count] { color: var(--white); font-weight: 700; }

.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
[data-listing].hide { display: none; }
.svc-card {
  background: linear-gradient(165deg, var(--ink-800), var(--ink-850));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px 28px;
  display: flex; flex-direction: column;
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease);
}
.svc-card:hover { transform: translateY(-5px); }
.svc-tag {
  align-self: flex-start;
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  font-weight: 700; color: var(--amber);
  background: var(--amber-glow); border: 1px solid rgba(255,176,32,0.22);
  padding: 5px 11px; border-radius: 100px; margin-bottom: 18px;
}
.svc-card h3 { font-size: 21px; margin-bottom: 10px; }
.svc-card .blurb { font-size: 14.5px; color: var(--slate); margin-bottom: 20px; flex: 1; }
.svc-price {
  display: flex; align-items: baseline; gap: 8px;
  padding-top: 18px; border-top: 1px solid var(--line-soft); margin-top: auto;
}
.svc-price .from { font-size: 12px; color: var(--slate); text-transform: uppercase; letter-spacing: 0.08em; }
.svc-price .amt { font-family: var(--display); font-size: 28px; color: var(--white); font-weight: 700; }
.svc-price .per { font-size: 13px; color: var(--slate); }

/* ===================== Pricing table ===================== */
.tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.tier {
  background: var(--ink-850);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 34px 30px;
  position: relative;
}
.tier.featured { border-color: var(--amber); box-shadow: 0 30px 60px -34px var(--amber-glow); }
.tier .ribbon {
  position: absolute; top: -13px; left: 30px;
  background: var(--amber); color: var(--ink-900);
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 5px 13px; border-radius: 100px;
}
.tier h3 { font-size: 22px; margin-bottom: 6px; }
.tier .desc { font-size: 14px; color: var(--slate); margin-bottom: 22px; min-height: 42px; }
.tier .amount { display: flex; align-items: baseline; gap: 6px; margin-bottom: 24px; }
.tier .amount .cur { font-size: 22px; color: var(--white); font-weight: 700; font-family: var(--display); }
.tier .amount .big { font-family: var(--display); font-size: 46px; color: var(--white); font-weight: 700; letter-spacing: -0.03em; }
.tier .amount .cycle { font-size: 14px; color: var(--slate); }
.tier ul { list-style: none; display: grid; gap: 12px; margin-bottom: 26px; }
.tier ul li { font-size: 14.5px; color: var(--mist); padding-left: 28px; position: relative; }
.tier ul li::before {
  content: "✓"; position: absolute; left: 0; top: 0;
  color: var(--emerald); font-weight: 800;
}
.tier .btn { width: 100%; justify-content: center; }

/* ===================== Contact ===================== */
.contact-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; }
.form-card {
  background: linear-gradient(165deg, var(--ink-800), var(--ink-850));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 38px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; }
.field label {
  display: block; font-size: 13px; font-weight: 700;
  color: var(--mist); margin-bottom: 8px; letter-spacing: 0.02em;
}
.field input, .field select, .field textarea {
  width: 100%;
  background: var(--ink-900);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 13px 15px;
  color: var(--white);
  font-family: var(--body);
  font-size: 15px;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--amber);
  box-shadow: 0 0 0 3px var(--amber-glow);
}
.field textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: 14px; margin-top: 14px; min-height: 20px; font-weight: 600; }

.info-stack { display: grid; gap: 18px; }
.info-card {
  background: var(--ink-850);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 24px;
}
.info-card h4 { font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--amber); margin-bottom: 14px; }
.info-card .nap { font-style: normal; color: var(--mist); font-size: 15px; line-height: 1.8; }
.info-card .nap strong { color: var(--white); }
.info-card a:hover { color: var(--amber); }
.hours-list { list-style: none; }
.hours-list li {
  display: flex; justify-content: space-between;
  padding: 9px 0; border-bottom: 1px solid var(--line-soft);
  font-size: 14.5px;
}
.hours-list li:last-child { border-bottom: none; }
.hours-list .day { color: var(--mist); }
.hours-list .time { color: var(--white); font-weight: 600; }
.hours-list .time.closed { color: var(--slate-dim); }

.map-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--ink-850);
}
.map-card svg { width: 100%; height: 320px; display: block; }
.map-card .map-foot {
  padding: 16px 22px; font-size: 13.5px; color: var(--slate);
  display: flex; align-items: center; gap: 10px;
  border-top: 1px solid var(--line-soft);
}
.pin-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--amber); box-shadow: 0 0 0 4px var(--amber-glow); }

/* ===================== Blog ===================== */
.featured-post {
  display: grid; grid-template-columns: 1.05fr 0.95fr;
  gap: 0; border: 1px solid var(--line);
  border-radius: var(--radius-lg); overflow: hidden;
  background: var(--ink-850); margin-bottom: 56px;
}
.featured-media { position: relative; min-height: 360px; background: var(--ink-800); }
.featured-media svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.featured-body { padding: 46px; display: flex; flex-direction: column; justify-content: center; }
.featured-body .insight-meta { margin-bottom: 16px; }
.featured-body h2 { font-size: clamp(1.7rem, 3.4vw, 2.6rem); margin-bottom: 16px; }
.featured-body p { font-size: 16px; color: var(--mist); margin-bottom: 24px; }
.post-byline { display: flex; align-items: center; gap: 12px; margin-bottom: 26px; }
.post-byline .quote-avatar { width: 42px; height: 42px; font-size: 16px; }
.post-byline .who { font-weight: 700; color: var(--white); font-size: 14px; }
.post-byline .meta { font-size: 13px; color: var(--slate); }

.post-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }

/* ===================== Reveal animation ===================== */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: 0.08s; }
.reveal[data-d="2"] { transition-delay: 0.16s; }
.reveal[data-d="3"] { transition-delay: 0.24s; }
.reveal[data-d="4"] { transition-delay: 0.32s; }

/* ===================== Responsive ===================== */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 60px; }
  .hero-media { max-width: 480px; }
  .results-grid, .quote-wrap, .cta-inner, .contact-grid, .featured-post { grid-template-columns: 1fr; gap: 34px; }
  .eng-grid, .method-grid, .review-grid, .insight-grid, .svc-grid, .tiers, .post-list { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 760px) {
  body { font-size: 16px; }
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .nav.open .nav-links {
    display: flex; flex-direction: column;
    position: absolute; top: 78px; left: 0; right: 0;
    background: var(--ink-850);
    border-bottom: 1px solid var(--line);
    padding: 24px 28px; gap: 6px; margin: 0;
    box-shadow: var(--shadow);
  }
  .nav.open .nav-links a { padding: 12px 0; font-size: 17px; border-bottom: 1px solid var(--line-soft); }
  .nav.open .nav-cta { display: flex; position: absolute; top: 78px; left: 0; right: 0; padding: 0 28px 24px; background: var(--ink-850); transform: translateY(200px); justify-content: space-between; }
  .nav.open .nav-links { padding-bottom: 80px; }

  .stats-inner { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid var(--line-soft); }
  .eng-grid, .method-grid, .review-grid, .insight-grid, .svc-grid, .tiers, .post-list { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .section { padding: 68px 0; }
  .float-badge { left: 0; bottom: -18px; }
  .filter-count { width: 100%; margin: 6px 0 0; }
}

/* Mobile nav simplified: keep it accessible */
@media (max-width: 760px) {
  .nav.open .nav-cta { position: static; transform: none; display: flex; padding: 18px 0 0; }
}
