/* =============================================================
   My I.T. Guy — Design System v2
   "Confident. Considered. Owner-led."
   Type: Inter + Inter Tight | Palette: Tailwind stone + rose-800
   ============================================================= */

:root {
  /* ---- BRAND -------- */
  --brand: #9f1239;        /* rose-800, used <10% of UI */
  --brand-dark: #881337;   /* rose-900 hover */
  --brand-soft: #fff1f2;   /* rose-50 wash */
  --brand-border: #fecdd3; /* rose-200 */

  /* ---- STONE NEUTRALS (Tailwind) -------- */
  --paper: #fafaf9;        /* stone-50, primary page bg (warm off-white) */
  --paper-alt: #f5f5f4;    /* stone-100, alt sections */
  --surface: #ffffff;      /* card surfaces */
  --ink: #1c1917;          /* stone-900, primary text */
  --ink-deep: #0c0a09;     /* stone-950, dark surfaces */
  --text-2: #57534e;       /* stone-600, secondary text */
  --text-3: #78716c;       /* stone-500, muted text */
  --text-4: #a8a29e;       /* stone-400, faint */
  --border: #e7e5e4;       /* stone-200 */
  --border-strong: #d6d3d1;/* stone-300 */

  /* ---- TYPOGRAPHY -------- */
  --font-display: 'Inter Tight', 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;

  /* ---- SPACING (8px base) -------- */
  --sp-1: 4px;
  --sp-2: 8px;
  --sp-3: 12px;
  --sp-4: 16px;
  --sp-5: 24px;
  --sp-6: 32px;
  --sp-7: 48px;
  --sp-8: 64px;
  --sp-9: 96px;
  --sp-10: 128px;

  /* ---- RADII -------- */
  --r-sm: 4px;
  --r-md: 8px;
  --r-lg: 12px;
  --r-xl: 16px;
  --r-pill: 999px;

  /* ---- SHADOWS (low, considered) -------- */
  --shadow-xs: 0 1px 2px rgba(28,25,23,0.04);
  --shadow-sm: 0 2px 6px rgba(28,25,23,0.06);
  --shadow-md: 0 8px 20px rgba(28,25,23,0.08);
  --shadow-lg: 0 20px 50px rgba(28,25,23,0.12);
}

/* ---- RESET -------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: 'cv02', 'cv03', 'cv04', 'cv11';
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--brand); text-decoration: none; transition: color 0.18s ease; }
a:hover { color: var(--brand-dark); }
button { font: inherit; cursor: pointer; }

/* ---- TOP BAR -------- */
.topbar {
  background: var(--ink-deep);
  color: var(--paper);
  text-align: center;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.topbar a { color: inherit; }
.topbar a:hover { color: var(--surface); }

/* ---- NAV -------- */
.nav {
  background: var(--paper);
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 0;
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: saturate(180%) blur(6px);
  background: rgba(250,250,249,0.92);
}
.nav-link, .nav-trigger {
  display: inline-flex;
  align-items: center;
  color: var(--text-2);
  background: transparent;
  border: none;
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  padding: 20px 22px;
  height: 64px;
  line-height: 1;
  cursor: pointer;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: color 0.18s ease, border-color 0.18s ease;
}
.nav-link:hover, .nav-trigger:hover { color: var(--ink); }
.nav-link.active { color: var(--ink); border-bottom-color: var(--brand); }

.nav-dropdown { position: relative; display: inline-flex; }
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%; left: 50%;
  transform: translateX(-50%);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 0 0 var(--r-md) var(--r-md);
  min-width: 220px;
  z-index: 100;
  box-shadow: var(--shadow-md);
  padding: var(--sp-2) 0;
}
.nav-dropdown-menu a {
  display: block;
  padding: 10px 18px;
  color: var(--text-2);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.15s, background-color 0.15s;
}
.nav-dropdown-menu a:hover { color: var(--brand); background: var(--paper-alt); }
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu { display: block; }

/* ---- LAYOUT -------- */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 var(--sp-5);
}

/* ---- TYPOGRAPHY -------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  letter-spacing: -0.025em;
  line-height: 1.05;
}
h1 { font-weight: 800; font-size: clamp(40px, 6vw, 72px); }
h2 { font-weight: 700; font-size: clamp(32px, 4.5vw, 48px); letter-spacing: -0.02em; line-height: 1.12; }
h3 { font-weight: 700; font-size: clamp(22px, 2.4vw, 28px); letter-spacing: -0.01em; line-height: 1.2; }
h4 { font-weight: 700; font-size: 18px; letter-spacing: 0; line-height: 1.3; }

.accent { color: var(--brand); }

p {
  font-family: var(--font-body);
  color: var(--text-2);
  font-size: 16px;
  line-height: 1.65;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-3);
}

/* ---- HERO (text-only confident hero — Linear/Stripe style) -------- */
.hero {
  background: var(--paper);
  padding: clamp(80px, 14vh, 160px) 0 clamp(80px, 14vh, 160px);
  position: relative;
  overflow: hidden;
  text-align: center;
}
/* Subtle paper texture detail — soft gradient halo at center */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 30%, rgba(159,18,57,0.04), transparent 60%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
}
.hero .eyebrow {
  display: inline-block;
  margin-bottom: var(--sp-6);
  padding: 6px 14px;
  border: 1px solid var(--border-strong);
  border-radius: var(--r-pill);
  background: var(--surface);
  color: var(--text-2);
}
.hero h1 {
  font-size: clamp(44px, 7.5vw, 88px);
  margin: 0 auto var(--sp-5);
  max-width: 14ch;
  letter-spacing: -0.035em;
}
.hero .lead {
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.55;
  color: var(--text-2);
  margin: 0 auto var(--sp-7);
  max-width: 620px;
}
.hero-actions {
  display: inline-flex;
  gap: var(--sp-3);
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}
.hero-meta {
  margin-top: var(--sp-7);
  font-size: 13px;
  color: var(--text-3);
  letter-spacing: 0.02em;
}
.hero-meta strong { color: var(--ink); font-weight: 600; }

/* ---- HERO PHOTO VARIANT (kept for future when bench is set up) -------- */
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: var(--sp-9);
  align-items: center;
  text-align: left;
}
.hero-grid .hero-content { max-width: 600px; margin: 0; text-align: left; }
.hero-grid h1 { margin-left: 0; }
.hero-grid .lead { margin-left: 0; }
.hero-grid .hero-actions { justify-content: flex-start; }

.hero-photo {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 5;
  background: var(--paper-alt);
}
.hero-photo img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.hero-photo::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(28,25,23,0.18));
  pointer-events: none;
}
.hero-photo-caption {
  position: absolute;
  bottom: var(--sp-5);
  left: var(--sp-5);
  right: var(--sp-5);
  color: var(--surface);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

@media (max-width: 880px) {
  .hero { padding: var(--sp-8) 0; }
  .hero-grid { grid-template-columns: 1fr; gap: var(--sp-7); }
  .hero-photo { aspect-ratio: 4 / 3; max-height: 360px; }
  .hero h1 { max-width: 100%; }
}

/* ---- BUTTONS -------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
  padding: 14px 24px;
  border-radius: var(--r-md);
  border: 1px solid transparent;
  text-decoration: none;
  transition: background-color 0.18s ease, color 0.18s ease, border-color 0.18s ease, transform 0.12s ease, box-shadow 0.18s ease;
  white-space: nowrap;
  cursor: pointer;
}
.btn--brand {
  background: var(--brand);
  color: var(--surface);
  border-color: var(--brand);
}
.btn--brand:hover {
  background: var(--brand-dark);
  border-color: var(--brand-dark);
  color: var(--surface);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(159,18,57,0.22);
}
.btn--ink {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.btn--ink:hover { background: var(--ink-deep); color: var(--paper); }
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--border-strong);
}
.btn--ghost:hover { background: var(--paper-alt); border-color: var(--ink); }
.btn--lg { padding: 16px 28px; font-size: 16px; }

/* ---- FOOTER (slim, restrained) -------- */
.footer {
  background: var(--ink-deep);
  color: var(--text-4);
  padding: var(--sp-7) 0;
  font-size: 13px;
  font-family: var(--font-body);
}
.footer .container { display: flex; flex-direction: column; gap: var(--sp-3); align-items: center; text-align: center; }
.footer a { color: var(--text-3); }
.footer a:hover { color: var(--surface); }
.footer p { color: var(--text-4); font-size: 13px; }

/* ---- WORK-IN-PROGRESS NOTE (for staging) -------- */
.wip-banner {
  background: var(--paper-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
  padding: var(--sp-7) var(--sp-5);
  color: var(--text-3);
  font-size: 14px;
}
.wip-banner strong { color: var(--ink); font-weight: 600; }

/* ---- SECTION (general) -------- */
.section {
  padding: clamp(72px, 10vh, 128px) 0;
  background: var(--paper);
}
.section--alt { background: var(--paper-alt); }
.section--ink { background: var(--ink-deep); color: var(--paper); }
.section-header { margin-bottom: var(--sp-8); }
.section-header .eyebrow {
  display: block;
  margin-bottom: var(--sp-3);
  color: var(--brand);
}
.section-header h2 { max-width: 18ch; }
.section-header .section-sub {
  font-size: clamp(16px, 1.4vw, 18px);
  color: var(--text-2);
  max-width: 560px;
  margin-top: var(--sp-3);
  line-height: 1.6;
}

/* ---- SERVICES LIST (editorial typographic list, not card grid) -------- */
.services-list {
  border-top: 1px solid var(--border);
}
.service-row {
  display: grid;
  grid-template-columns: 1fr 1.6fr auto auto;
  align-items: center;
  gap: var(--sp-6);
  padding: var(--sp-6) var(--sp-4);
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  color: inherit;
  transition: background-color 0.18s ease, padding 0.18s ease;
  position: relative;
}
.service-row:hover {
  background: var(--paper);
  padding-left: var(--sp-5);
}
.service-row:hover .service-arrow { transform: translateX(4px); color: var(--brand); }
.service-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(20px, 1.8vw, 24px);
  letter-spacing: -0.015em;
  color: var(--ink);
  line-height: 1.2;
}
.service-desc {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.55;
}
.service-price {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 17px;
  color: var(--ink);
  white-space: nowrap;
  letter-spacing: -0.005em;
  text-align: right;
}
.service-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: transparent;
  color: var(--text-3);
  font-size: 18px;
  line-height: 1;
  transition: transform 0.18s ease, color 0.18s ease, background-color 0.18s ease;
}

@media (max-width: 800px) {
  .service-row {
    grid-template-columns: 1fr auto;
    gap: var(--sp-3);
    padding: var(--sp-5) var(--sp-3);
  }
  .service-row:hover { padding-left: var(--sp-4); }
  .service-desc { grid-column: 1 / -1; order: 3; }
  .service-price { order: 2; }
  .service-arrow { display: none; }
}

/* ---- TRUST / REVIEW SPOTLIGHT (dark, editorial) -------- */
.review-spot {
  background: var(--ink-deep);
  color: var(--paper);
  padding: clamp(72px, 10vh, 128px) 0;
  position: relative;
  overflow: hidden;
}
.review-spot::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 20%, rgba(159,18,57,0.18), transparent 50%);
  pointer-events: none;
}
.review-spot .container { position: relative; max-width: 880px; text-align: center; }
.review-spot .eyebrow {
  color: var(--brand);
  margin-bottom: var(--sp-5);
  display: block;
}
.review-spot blockquote {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--paper);
  max-width: 18ch;
  margin: 0 auto var(--sp-6);
}
.review-spot .review-context {
  color: var(--text-4);
  font-size: 16px;
  line-height: 1.6;
  max-width: 560px;
  margin: 0 auto var(--sp-6);
}
.review-spot .review-byline {
  color: var(--text-3);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: var(--sp-7);
}
.review-spot .review-actions { display: flex; gap: var(--sp-3); justify-content: center; flex-wrap: wrap; }

/* ---- PROCESS / HOW IT WORKS (3 steps, restrained) -------- */
.process { padding: clamp(72px, 10vh, 128px) 0; background: var(--paper); }
.process .container { max-width: 1100px; }
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-7);
  margin-top: var(--sp-7);
  counter-reset: step;
}
.process-step {
  position: relative;
  padding-top: var(--sp-6);
  border-top: 1px solid var(--border);
}
.process-step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  color: var(--brand);
  letter-spacing: 0.06em;
  display: block;
  margin-bottom: var(--sp-4);
}
.process-step h3 {
  font-size: clamp(22px, 2.4vw, 28px);
  margin-bottom: var(--sp-3);
  letter-spacing: -0.02em;
}
.process-step p { font-size: 16px; line-height: 1.65; color: var(--text-2); }
@media (max-width: 800px) {
  .process-grid { grid-template-columns: 1fr; gap: var(--sp-6); }
}

/* ---- CLOSING CTA (dark, single action) -------- */
.cta-close {
  background: var(--ink-deep);
  color: var(--paper);
  padding: clamp(80px, 12vh, 160px) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-close::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(159,18,57,0.15), transparent 60%);
  pointer-events: none;
}
.cta-close .container { position: relative; max-width: 720px; }
.cta-close h2 {
  color: var(--paper);
  margin-bottom: var(--sp-5);
  max-width: 16ch;
  margin-left: auto;
  margin-right: auto;
  letter-spacing: -0.025em;
}
.cta-close p {
  color: var(--text-3);
  font-size: clamp(16px, 1.4vw, 18px);
  max-width: 540px;
  margin: 0 auto var(--sp-7);
  line-height: 1.6;
}
.cta-close .btn--brand:hover { box-shadow: 0 8px 24px rgba(159,18,57,0.4); }

/* ---- EDITORIAL BIO (about page — magazine feature layout) -------- */
.bio { padding: clamp(72px, 10vh, 128px) 0; background: var(--paper); }
.bio .container { max-width: 1100px; }
.bio-grid {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: clamp(40px, 6vw, 88px);
  align-items: start;
}
.bio-photo {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 5;
  background: var(--paper-alt);
  position: sticky;
  top: 88px;
}
.bio-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.bio-photo-caption {
  position: absolute;
  bottom: var(--sp-4);
  left: var(--sp-4);
  right: var(--sp-4);
  color: var(--surface);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-shadow: 0 1px 2px rgba(0,0,0,0.6);
}
.bio-text { max-width: 560px; }
.bio-text .eyebrow { display: block; color: var(--brand); margin-bottom: var(--sp-4); }
.bio-text h2 {
  font-size: clamp(34px, 4vw, 52px);
  margin-bottom: var(--sp-6);
  max-width: 14ch;
}
.bio-text p {
  font-size: 17px;
  line-height: 1.75;
  color: var(--text-2);
  margin-bottom: var(--sp-5);
}
.bio-text p:last-of-type { margin-bottom: 0; }
.bio-text p strong { color: var(--ink); font-weight: 600; }
.bio-pullquote {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(22px, 2.2vw, 28px);
  line-height: 1.25;
  letter-spacing: -0.015em;
  color: var(--ink);
  border-left: 3px solid var(--brand);
  padding: var(--sp-2) 0 var(--sp-2) var(--sp-5);
  margin: var(--sp-6) 0;
  max-width: 22ch;
}
@media (max-width: 880px) {
  .bio-grid { grid-template-columns: 1fr; gap: var(--sp-6); }
  .bio-photo { position: relative; top: 0; aspect-ratio: 4 / 3; max-height: 420px; }
}

/* ---- PRINCIPLES (3 numbered points, editorial — alt-bg variant of .process) -------- */
.principles { padding: clamp(72px, 10vh, 128px) 0; background: var(--paper-alt); }
.principles .container { max-width: 1100px; }
.principles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-7);
  margin-top: var(--sp-7);
  counter-reset: principle;
}
.principle {
  position: relative;
  padding-top: var(--sp-6);
  border-top: 1px solid var(--border-strong);
}
.principle::before {
  counter-increment: principle;
  content: counter(principle, decimal-leading-zero);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  color: var(--brand);
  letter-spacing: 0.06em;
  display: block;
  margin-bottom: var(--sp-4);
}
.principle h3 {
  font-size: clamp(20px, 2.2vw, 26px);
  margin-bottom: var(--sp-3);
  letter-spacing: -0.02em;
}
.principle p { font-size: 16px; line-height: 1.65; color: var(--text-2); }
@media (max-width: 800px) {
  .principles-grid { grid-template-columns: 1fr; gap: var(--sp-6); }
}

/* ---- VOB / VERIFIED MEMBER STRIP (subtle, single line) -------- */
.vob {
  background: var(--paper);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: var(--sp-7) 0;
  text-align: center;
}
.vob .eyebrow { display: block; margin-bottom: var(--sp-3); }
.vob p {
  font-size: 14px;
  color: var(--text-3);
  max-width: 480px;
  margin: 0 auto var(--sp-5);
}
.vob img { max-width: 130px; height: auto; opacity: 0.85; margin: 0 auto; transition: opacity 0.2s; }
.vob a:hover img { opacity: 1; }

/* ---- CONTACT — big phone CTA block -------- */
.contact-cta {
  background: var(--paper);
  padding: clamp(60px, 8vh, 96px) 0 clamp(40px, 6vh, 80px);
  text-align: center;
}
.contact-cta .container { max-width: 720px; }
.contact-cta .phone {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(40px, 6vw, 64px);
  letter-spacing: -0.025em;
  color: var(--ink);
  margin: var(--sp-5) 0 var(--sp-6);
  text-decoration: none;
  transition: color 0.2s;
}
.contact-cta .phone:hover { color: var(--brand); }
.contact-cta .actions {
  display: inline-flex;
  gap: var(--sp-3);
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--sp-5);
}
.contact-cta .note {
  font-size: 14px;
  color: var(--text-3);
  margin-top: var(--sp-4);
  letter-spacing: 0.01em;
}

/* ---- CONTACT — info grid (hours + area) -------- */
.contact-info { padding: clamp(60px, 8vh, 96px) 0; background: var(--paper-alt); }
.contact-info .container { max-width: 1100px; }
.info-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}
.info-block .eyebrow { display: block; color: var(--brand); margin-bottom: var(--sp-3); }
.info-block h3 {
  font-size: clamp(24px, 2.8vw, 32px);
  margin-bottom: var(--sp-5);
  letter-spacing: -0.02em;
}
.info-block p, .info-block li { font-size: 16px; line-height: 1.7; color: var(--text-2); }
.info-block ul { list-style: none; padding: 0; margin: 0 0 var(--sp-5); }
.info-block li {
  display: flex;
  justify-content: space-between;
  padding: var(--sp-3) 0;
  border-bottom: 1px solid var(--border);
}
.info-block li:last-child { border-bottom: none; }
.info-block li strong { color: var(--ink); font-weight: 600; font-family: var(--font-display); letter-spacing: -0.01em; }
.info-block .area-list {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.8;
  margin-bottom: var(--sp-5);
}
.info-block .area-list strong { color: var(--ink); font-weight: 600; }
.contact-map {
  margin-top: var(--sp-4);
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
}
.contact-map iframe { display: block; width: 100%; height: 260px; border: 0; }
@media (max-width: 800px) {
  .info-grid { grid-template-columns: 1fr; gap: var(--sp-7); }
}

/* ---- PRICE TABLE (editorial line list for pricing) -------- */
.price-section { padding: clamp(60px, 8vh, 96px) 0; background: var(--paper-alt); }
.price-section + .price-section { padding-top: 0; }
.price-section .container { max-width: 880px; }
.price-section .eyebrow { display: block; color: var(--brand); margin-bottom: var(--sp-3); }
.price-section h2 {
  font-size: clamp(28px, 3.6vw, 38px);
  margin-bottom: var(--sp-3);
  letter-spacing: -0.02em;
}
.price-section .lede {
  font-size: 16px;
  color: var(--text-2);
  line-height: 1.65;
  margin-bottom: var(--sp-6);
  max-width: 560px;
}
.price-list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--border-strong);
}
.price-list li {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--sp-4);
  align-items: baseline;
  padding: var(--sp-4) 0;
  border-bottom: 1px solid var(--border);
}
.price-list .pl-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 17px;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.price-list .pl-note {
  display: block;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  color: var(--text-3);
  margin-top: 2px;
  letter-spacing: 0;
}
.price-list .pl-price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  color: var(--ink);
  letter-spacing: -0.005em;
  white-space: nowrap;
  text-align: right;
}
.price-list .pl-price-na {
  color: var(--text-3);
  font-weight: 500;
}

/* ---- PRICE GRID TABLE (Model | Screen | Battery | Port) -------- */
.price-series { margin-top: var(--sp-7); }
.price-series h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(20px, 2vw, 24px);
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: var(--sp-3);
}
.price-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 0;
  border-top: 2px solid var(--ink);
  border-bottom: 1px solid var(--border);
  max-width: 820px;
}
.price-grid .pg-cell {
  padding: var(--sp-3) var(--sp-3);
  border-bottom: 1px solid var(--border);
  font-size: 15px;
  color: var(--text-2);
  display: flex;
  align-items: center;
}
.price-grid .pg-cell:nth-child(4n+1) { padding-left: var(--sp-2); }
.price-grid .pg-cell.pg-h {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-3);
  background: transparent;
  border-bottom: 1px solid var(--border-strong);
  padding-top: var(--sp-3);
  padding-bottom: var(--sp-3);
}
/* Right-align the price column headers to match the price values below them */
.price-grid .pg-cell.pg-h:nth-child(4n+2),
.price-grid .pg-cell.pg-h:nth-child(4n+3),
.price-grid .pg-cell.pg-h:nth-child(4n+4) {
  justify-content: flex-end;
  text-align: right;
}
.price-grid .pg-cell.pg-name {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--ink);
  font-size: 16px;
  letter-spacing: -0.01em;
}
.price-grid .pg-cell.pg-price {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.005em;
  justify-content: flex-end;
  text-align: right;
}
.price-grid .pg-cell.pg-price.pg-na {
  color: var(--text-3);
  font-weight: 500;
  font-style: italic;
  font-size: 13px;
}
.price-grid .pg-row-end { border-bottom: none; }
@media (max-width: 720px) {
  .price-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .price-grid .pg-cell { padding: var(--sp-2) var(--sp-3); border-bottom: none; }
  .price-grid .pg-cell.pg-h { display: none; }
  .price-grid .pg-cell.pg-name {
    padding-top: var(--sp-4);
    border-top: 1px solid var(--border);
    font-size: 17px;
  }
  .price-grid .pg-cell.pg-price {
    justify-content: space-between;
    text-align: left;
    font-size: 14px;
    padding-bottom: var(--sp-2);
  }
  .price-grid .pg-cell.pg-price::before {
    content: attr(data-label);
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-3);
    margin-right: var(--sp-3);
  }
  .price-grid .pg-cell.pg-price:last-child { padding-bottom: var(--sp-4); }
}

/* ---- TRUST STRIP (small chip row below hero) -------- */
.trust-strip {
  background: var(--paper);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: var(--sp-6) 0;
}
.trust-strip .container { max-width: 1100px; }
.trust-strip .chips {
  display: flex;
  gap: var(--sp-5);
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.trust-strip .chip {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-2);
  letter-spacing: 0.01em;
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
}
.trust-strip .chip strong { color: var(--ink); font-weight: 600; }
.trust-strip .chip .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--brand); }

/* ---- TRAVEL FEE NOTE (small footnote-style strip) -------- */
.travel-note {
  background: var(--paper);
  border-top: 1px solid var(--border);
  padding: var(--sp-5) 0;
  text-align: center;
}
.travel-note .container { max-width: 720px; }
.travel-note p {
  font-size: 13px;
  color: var(--text-3);
  letter-spacing: 0.01em;
}
.travel-note p strong { color: var(--ink); font-weight: 600; }

/* ---- COUNTY GRID (service-areas hub) -------- */
.county-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-7);
  margin-top: var(--sp-7);
}
.county-col h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(22px, 2.4vw, 28px);
  letter-spacing: -0.015em;
  color: var(--ink);
  padding-bottom: var(--sp-3);
  margin-bottom: var(--sp-5);
  border-bottom: 2px solid var(--ink);
}
.county-col ul { list-style: none; padding: 0; margin: 0; }
.county-col li {
  padding: var(--sp-3) 0;
  border-bottom: 1px solid var(--border);
}
.county-col li:last-child { border-bottom: none; }
.county-col .town-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  color: var(--ink);
  letter-spacing: -0.005em;
  display: block;
}
.county-col .town-note {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text-3);
  margin-top: 2px;
  line-height: 1.5;
}
.county-col a.town-name { color: var(--brand); }
.county-col a.town-name:hover { color: var(--brand-dark); }
@media (max-width: 800px) {
  .county-grid { grid-template-columns: 1fr; gap: var(--sp-6); }
}

/* ---- DEEP-DIVE PAIR (Lejeune + Topsail callout cards) -------- */
.deep-dive {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-5);
  margin-top: var(--sp-7);
}
.deep-dive .dd-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--sp-6);
  transition: border-color 0.18s, transform 0.18s;
  text-decoration: none;
  color: inherit;
  display: block;
}
.deep-dive .dd-card:hover {
  border-color: var(--brand);
  transform: translateY(-2px);
}
.deep-dive .dd-card .eyebrow {
  display: block;
  color: var(--brand);
  margin-bottom: var(--sp-3);
}
.deep-dive .dd-card h3 {
  font-size: clamp(22px, 2.4vw, 28px);
  margin-bottom: var(--sp-3);
  letter-spacing: -0.015em;
}
.deep-dive .dd-card p { font-size: 15px; color: var(--text-2); line-height: 1.6; margin-bottom: var(--sp-4); }
.deep-dive .dd-card .dd-arrow {
  color: var(--brand);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.02em;
}
@media (max-width: 720px) {
  .deep-dive { grid-template-columns: 1fr; }
}

/* ---- BLOG INDEX (post list, editorial) -------- */
.post-list { border-top: 1px solid var(--border); margin-top: var(--sp-7); }
.post-row {
  display: grid;
  grid-template-columns: 1fr 2fr auto;
  align-items: center;
  gap: var(--sp-6);
  padding: var(--sp-6) var(--sp-3);
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  color: inherit;
  transition: background-color 0.18s ease, padding 0.18s ease;
}
.post-row:hover { background: var(--paper); padding-left: var(--sp-5); }
.post-row:hover .post-arrow { transform: translateX(4px); color: var(--brand); }
.post-row .post-tag {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand);
}
.post-row .post-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(18px, 1.8vw, 22px);
  letter-spacing: -0.015em;
  color: var(--ink);
  line-height: 1.25;
  margin-bottom: 4px;
}
.post-row .post-excerpt {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.5;
}
.post-row .post-meta {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--text-3);
  text-align: right;
  white-space: nowrap;
}
.post-row .post-arrow {
  color: var(--text-3);
  font-size: 18px;
  transition: transform 0.18s ease, color 0.18s ease;
}
@media (max-width: 800px) {
  .post-row {
    grid-template-columns: 1fr;
    gap: var(--sp-2);
    padding: var(--sp-5) var(--sp-3);
  }
  .post-row .post-meta { text-align: left; }
  .post-row .post-arrow { display: none; }
}

/* ---- BLOG ARTICLE (single post body) -------- */
.article {
  padding: clamp(60px, 8vh, 96px) 0 clamp(60px, 8vh, 96px);
  background: var(--paper);
}
.article .container { max-width: 720px; }
.article .article-header { margin-bottom: var(--sp-7); }
.article .article-header .eyebrow { display: block; color: var(--brand); margin-bottom: var(--sp-3); }
.article .article-header h1 {
  font-size: clamp(36px, 5vw, 56px);
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: var(--sp-4);
  max-width: 18ch;
}
.article .article-header .article-meta {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text-3);
  letter-spacing: 0.02em;
}
.article-body { font-family: var(--font-body); color: var(--ink); }
.article-body p,
.article-body ul,
.article-body ol {
  font-size: 17px;
  line-height: 1.75;
  color: var(--ink);
  margin-bottom: var(--sp-5);
}
.article-body p { color: var(--text-2); }
.article-body ul, .article-body ol { padding-left: var(--sp-6); color: var(--text-2); }
.article-body li { margin-bottom: var(--sp-2); }
.article-body h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(24px, 3vw, 32px);
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-top: var(--sp-8);
  margin-bottom: var(--sp-4);
  line-height: 1.2;
}
.article-body h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(20px, 2.2vw, 24px);
  color: var(--ink);
  margin-top: var(--sp-6);
  margin-bottom: var(--sp-3);
  line-height: 1.25;
}
.article-body a { color: var(--brand); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.article-body a:hover { color: var(--brand-dark); }
.article-body strong { color: var(--ink); font-weight: 600; }
.article-body blockquote {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(20px, 2vw, 24px);
  line-height: 1.35;
  letter-spacing: -0.015em;
  color: var(--ink);
  border-left: 3px solid var(--brand);
  padding: 0 0 0 var(--sp-5);
  margin: var(--sp-6) 0;
}
.article-body code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.92em;
  background: var(--paper-alt);
  padding: 1px 6px;
  border-radius: 4px;
  color: var(--ink);
}
.article-body .callout {
  background: var(--paper-alt);
  border-left: 3px solid var(--brand);
  padding: var(--sp-5) var(--sp-5);
  margin: var(--sp-6) 0;
  border-radius: 0 var(--r-md) var(--r-md) 0;
}
.article-body .callout p {
  font-size: 16px;
  color: var(--ink);
  margin-bottom: 0;
  line-height: 1.65;
}
.article-body .callout strong { color: var(--brand); }
.article-back {
  display: inline-block;
  margin-bottom: var(--sp-5);
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-3);
  text-decoration: none;
  transition: color 0.18s;
}
.article-back:hover { color: var(--brand); }

/* ---- INLINE BLOG CTA (replaces .cta-block from legacy posts) -------- */
.article-cta {
  background: var(--ink-deep);
  color: var(--paper);
  border-radius: var(--r-lg);
  padding: var(--sp-7) var(--sp-6);
  margin-top: var(--sp-8);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.article-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(159,18,57,0.18), transparent 60%);
  pointer-events: none;
}
.article-cta > * { position: relative; }
.article-cta h3 {
  color: var(--paper);
  font-size: clamp(20px, 2.2vw, 26px);
  margin-bottom: var(--sp-3);
  letter-spacing: -0.015em;
}
.article-cta p { color: var(--text-3); margin-bottom: var(--sp-5); font-size: 15px; }
.article-related {
  margin-top: var(--sp-7);
  padding-top: var(--sp-5);
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--text-3);
}
.article-related a { color: var(--brand); }

/* ---- ARTICLE BODY — STEP/CARD pattern (for checklists) -------- */
.article-body .step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--brand);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  padding: var(--sp-5);
  margin: var(--sp-5) 0;
}
.article-body .step > strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--ink);
  margin-bottom: var(--sp-2);
  letter-spacing: -0.005em;
}
.article-body .step p {
  margin-bottom: 0;
  font-size: 16px;
  color: var(--text-2);
}

/* ---- ARTICLE BODY — price box (inline pricing summary) -------- */
.article-body .price-box {
  background: var(--paper-alt);
  border: 1px solid var(--border-strong);
  border-radius: var(--r-md);
  padding: var(--sp-5) var(--sp-5);
  margin: var(--sp-6) 0;
}
.article-body .price-box h3 {
  margin-top: 0;
  margin-bottom: var(--sp-4);
  font-size: 20px;
  color: var(--ink);
}
.article-body .price-box ul { margin-bottom: 0; }
.article-body .price-box li { color: var(--text-2); font-size: 16px; margin-bottom: var(--sp-2); }
