/* =========================================================
   ShowReady Co. — Site Stylesheet
   Clean, premium, minimalist. Navy / steel blue / olive.
   ========================================================= */

/* ---------- Design tokens ---------- */
:root {
  /* Brand color */
  --navy-900: #10243B;
  --navy-800: #16324F;
  --navy: #1B3A5A;
  --navy-600: #2C5077;
  --steel: #5E86A8;
  --steel-400: #7FA1BD;
  --steel-200: #C4D4E1;
  --steel-100: #E8EFF4;
  --olive: #75834A;
  --olive-600: #5F6C3A;
  --olive-100: #F1F3E7;

  /* Neutrals */
  --paper: #FAFAF7;
  --white: #FFFFFF;
  --ink: #1F2D3A;
  --muted: #55666F;
  --faint: #8195A1;
  --line: #E6E8E3;

  /* Package accents */
  --silver: #7C8894;
  --gold: #A8863D;
  --platinum: #3E4C59;

  /* Type */
  --font-display: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-body: "Inter", -apple-system, "Segoe UI", Roboto, sans-serif;

  /* Rhythm */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-24: 6rem;

  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;

  --shadow-sm: 0 1px 2px rgba(16, 36, 59, 0.06);
  --shadow-md: 0 6px 24px -8px rgba(16, 36, 59, 0.14);
  --shadow-lg: 0 24px 48px -16px rgba(16, 36, 59, 0.22);

  --container: 1160px;
  --header-h: 76px;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }

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

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  color: var(--navy-800);
  margin: 0 0 var(--space-4);
  text-wrap: balance;
}

h1 { font-size: clamp(2.4rem, 5.2vw, 3.9rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(1.9rem, 3.4vw, 2.7rem); }
h3 { font-size: 1.35rem; }
h4 { font-size: 1.1rem; }

p { margin: 0 0 var(--space-4); }

a { color: var(--steel); text-decoration: none; }
a:hover { color: var(--navy-600); }

ul { margin: 0; padding: 0; }

.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}

.lede {
  font-size: 1.125rem;
  color: var(--muted);
  max-width: 62ch;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--olive-600);
  margin-bottom: var(--space-4);
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--olive);
  border-radius: 2px;
}

section { padding-block: clamp(3.5rem, 8vw, 6.5rem); }

.section-head { max-width: 760px; margin-bottom: clamp(2rem, 5vw, 3.5rem); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.section-head.center .lede { margin-inline: auto; }

.alt-bg { background: var(--white); border-block: 1px solid var(--line); }
.navy-bg { background: linear-gradient(160deg, var(--navy-900), var(--navy) 60%, var(--navy-600)); }
.navy-bg h2, .navy-bg h3 { color: var(--white); }
.navy-bg p { color: var(--steel-200); }

:focus-visible {
  outline: 3px solid var(--steel);
  outline-offset: 2px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: var(--navy);
  color: #fff;
  padding: 0.75rem 1.25rem;
  border-radius: 0 0 var(--radius-sm) 0;
}
.skip-link:focus { left: 0; color: #fff; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 48px;
  padding: 0.8rem 1.7rem;
  border-radius: 999px;
  border: 1.5px solid transparent;
  font-family: var(--font-body);
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.2;
  cursor: pointer;
  touch-action: manipulation;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.btn svg { flex: none; }

.btn-primary {
  background: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover {
  background: var(--navy-600);
  color: var(--white);
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--navy);
  border-color: var(--steel-200);
}
.btn-ghost:hover {
  border-color: var(--steel);
  color: var(--navy-600);
  background: var(--steel-100);
}

.btn-light {
  background: var(--white);
  color: var(--navy);
}
.btn-light:hover {
  background: var(--steel-100);
  color: var(--navy-800);
  transform: translateY(-1px);
}

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
}
.btn-outline-light:hover { color: var(--white); border-color: var(--white); background: rgba(255,255,255,0.08); }

.btn:active { transform: translateY(0) scale(0.98); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 250, 247, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.site-header.scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 4px 20px -12px rgba(16, 36, 59, 0.18);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  min-height: var(--header-h);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--navy-800);
}
.brand:hover { color: var(--navy-800); }
.brand img, .brand svg { width: 44px; height: auto; }
.brand-name {
  font-family: var(--font-display);
  font-size: 1.32rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.brand-name span { color: var(--steel); }

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.4vw, 2.1rem);
  list-style: none;
}
.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink);
  padding: 0.5rem 0.15rem;
  border-bottom: 2px solid transparent;
}
.nav-links a:hover { color: var(--navy); }
.nav-links a[aria-current="page"] {
  color: var(--navy);
  border-bottom-color: var(--olive);
  font-weight: 600;
}
.nav-links .mobile-only { display: none; }

.nav-cta { display: flex; align-items: center; gap: var(--space-4); }
.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--navy);
  white-space: nowrap;
}
.nav-cta .btn { min-height: 44px; padding: 0.6rem 1.35rem; }

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero (home) ---------- */
.hero { padding-block: clamp(2.5rem, 6vw, 5.5rem); overflow: hidden; }
.hero .container {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.hero-copy .lede { margin-bottom: var(--space-8); }

.hero-actions { display: flex; flex-wrap: wrap; gap: var(--space-4); margin-bottom: var(--space-8); }

.hero-chips { display: flex; flex-direction: column; align-items: flex-start; gap: 0.6rem; list-style: none; }
.hero-chips li {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.45rem 0.95rem;
}
.hero-chips svg { color: var(--olive); flex: none; }

.hero-media { position: relative; }
.hero-media .frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 4.6;
  background: var(--steel-100);
}
.hero-media img { width: 100%; height: 100%; object-fit: cover; }

.hero-card {
  position: absolute;
  left: clamp(-1.5rem, -3vw, -2.5rem);
  bottom: 2.2rem;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 1.1rem 1.35rem;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  max-width: 300px;
}
.hero-card .icon-disc { flex: none; }
.hero-card strong { display: block; color: var(--navy-800); font-size: 0.98rem; }
.hero-card small { color: var(--muted); font-size: 0.85rem; line-height: 1.45; display: block; }

.icon-disc {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--steel-100);
  color: var(--navy);
}
.icon-disc.olive { background: var(--olive-100); color: var(--olive-600); }

/* ---------- Stats strip ---------- */
.stats { padding-block: 0; }
.stats .container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  max-width: 720px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  overflow: hidden;
  transform: translateY(-50%);
  box-shadow: var(--shadow-md);
}
.stat {
  padding: 1.6rem 1.25rem;
  text-align: center;
  border-left: 1px solid var(--line);
}
.stat:first-child { border-left: 0; }
.stat .num {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 600;
  color: var(--navy);
  display: block;
  line-height: 1.1;
  font-variant-numeric: tabular-nums;
}
.stat .label { font-size: 0.86rem; color: var(--muted); }

/* ---------- Feature split (core service) ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.split-media { position: relative; }
.split-media .frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4 / 3.4;
  background: var(--steel-100);
}
.split-media img { width: 100%; height: 100%; object-fit: cover; }
.split-media .accent {
  position: absolute;
  inset: 1.4rem -1.4rem -1.4rem 1.4rem;
  border: 2px solid var(--steel-200);
  border-radius: var(--radius-lg);
  z-index: -1;
}

.checklist { list-style: none; display: grid; gap: 0.85rem; margin-block: var(--space-6); }
.checklist li { display: flex; gap: 0.8rem; align-items: flex-start; }
.checklist svg { flex: none; margin-top: 0.2rem; color: var(--olive); }
.checklist strong { color: var(--navy-800); }
.checklist span { color: var(--muted); }

/* ---------- Services grid ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  list-style: none;
}
.services-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.service-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.7rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  transition: box-shadow 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}
.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: var(--steel-200);
}
.service-card h3 { font-size: 1.16rem; margin: 0; }
.service-card p { font-size: 0.94rem; color: var(--muted); margin: 0; }
.service-card .tag {
  position: absolute;
  top: 1.1rem;
  right: 1.1rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--olive-600);
  background: var(--olive-100);
  border-radius: 999px;
  padding: 0.28rem 0.7rem;
}

/* ---------- Packages ---------- */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}
.package-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2.2rem 1.9rem 1.9rem;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.package-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.package-card.featured {
  border: 2px solid var(--navy);
  box-shadow: var(--shadow-lg);
}
.package-card.featured:hover { transform: translateY(-6px); }

.package-flag {
  position: absolute;
  top: -0.85rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--navy);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 1.1rem;
  border-radius: 999px;
  white-space: nowrap;
}

.tier {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.tier::before { content: ""; width: 10px; height: 10px; border-radius: 50%; }
.tier.silver { color: var(--silver); }
.tier.silver::before { background: var(--silver); }
.tier.gold { color: var(--gold); }
.tier.gold::before { background: var(--gold); }
.tier.platinum { color: var(--platinum); }
.tier.platinum::before { background: var(--platinum); }

.package-card h3 { font-size: 1.5rem; margin-bottom: 0.35rem; }
.package-card .package-sub { color: var(--muted); font-size: 0.94rem; min-height: 3em; }

.package-list { list-style: none; display: grid; gap: 0.7rem; margin-block: 1.4rem; flex: 1; align-content: start; }
.package-list li { display: flex; gap: 0.7rem; align-items: flex-start; font-size: 0.95rem; }
.package-list svg { flex: none; margin-top: 0.22rem; color: var(--olive); }
.package-list .muted-item { color: var(--faint); }
.package-list .muted-item svg { color: var(--steel-200); }

.package-price {
  border-top: 1px solid var(--line);
  padding-top: 1.2rem;
  margin-bottom: 1.2rem;
  font-size: 0.9rem;
  color: var(--muted);
}
.package-price strong { color: var(--navy-800); display: block; font-size: 1.02rem; }

/* ---------- Audience cards ---------- */
.audience-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.audience-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.audience-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.audience-card .photo { aspect-ratio: 16 / 9.5; overflow: hidden; background: var(--steel-100); }
.audience-card .photo img { width: 100%; height: 100%; object-fit: cover; }
.audience-card .body { padding: 1.6rem 1.5rem 1.7rem; display: flex; flex-direction: column; gap: 0.5rem; flex: 1; }
.audience-card h3 { margin: 0; font-size: 1.28rem; }
.audience-card p { color: var(--muted); font-size: 0.95rem; flex: 1; margin: 0; }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--navy);
  margin-top: 0.6rem;
}
.text-link:hover { color: var(--steel); }
.text-link svg { transition: transform 0.2s ease; }
.text-link:hover svg { transform: translateX(3px); }

/* ---------- Steps ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  counter-reset: step;
  list-style: none;
}
.steps.steps-3 { grid-template-columns: repeat(3, 1fr); max-width: 900px; margin-inline: auto; }
.step { position: relative; padding-top: 0.5rem; }
.step .step-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 600;
  color: var(--steel-200);
  line-height: 1;
  display: block;
  margin-bottom: 0.9rem;
}
.navy-bg .step .step-num { color: rgba(255, 255, 255, 0.28); }
.step h3 { font-size: 1.15rem; margin-bottom: 0.4rem; }
.step p { font-size: 0.94rem; color: var(--muted); margin: 0; }
.navy-bg .step p { color: var(--steel-200); }

/* ---------- Areas ---------- */
.areas-wrap { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.area-chips { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0.65rem; list-style: none; }
.area-chips li {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.55rem 1.15rem;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 0.45rem;
  white-space: nowrap;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}
.area-chips li:hover { border-color: var(--steel); background: var(--steel-100); }
.area-chips svg { color: var(--olive); flex: none; }

/* ---------- CTA band ---------- */
.cta-band { text-align: center; }
.cta-band h2 { max-width: 20ch; margin-inline: auto; }
.cta-band .lede { margin-inline: auto; margin-bottom: var(--space-8); color: var(--steel-200); }
.cta-actions { display: flex; flex-wrap: wrap; gap: var(--space-4); justify-content: center; }
.cta-note { margin-top: var(--space-6); font-size: 0.9rem; color: var(--steel-200); }
.cta-note a { color: var(--white); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }

/* ---------- About teaser / founder ---------- */
.founder-quote {
  border-left: 3px solid var(--olive);
  padding-left: 1.4rem;
  margin: var(--space-6) 0;
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--navy-800);
  font-style: italic;
  line-height: 1.5;
}
.founder-sig { display: flex; align-items: center; gap: 1rem; margin-top: var(--space-6); }
.founder-sig .avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.3rem;
  flex: none;
  overflow: hidden;
}
.founder-sig .avatar img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.founder-sig strong { display: block; color: var(--navy-800); }
.founder-sig small { color: var(--muted); }

/* ---------- Page hero (interior pages) ---------- */
.page-hero {
  background:
    linear-gradient(160deg, rgba(16, 36, 59, 0.92), rgba(27, 58, 90, 0.82)),
    var(--navy-800);
  background-size: cover;
  background-position: center;
  color: var(--white);
  text-align: center;
  padding-block: clamp(4rem, 9vw, 7rem);
}
.page-hero h1 { color: var(--white); font-size: clamp(2.2rem, 4.6vw, 3.4rem); }
.page-hero .lede { color: var(--steel-200); margin-inline: auto; }
.page-hero .eyebrow { color: var(--steel-200); justify-content: center; }
.page-hero .eyebrow::before { background: var(--steel-400); }

.page-hero .hero-statement {
  font-size: clamp(1.65rem, 3.4vw, 2.6rem);
  font-weight: 500;
  line-height: 1.4;
  max-width: 30ch;
  margin-inline: auto;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  list-style: none;
  font-size: 0.88rem;
  margin-top: var(--space-6);
  color: var(--steel-200);
}
.breadcrumb a { color: var(--steel-200); text-decoration: underline; text-underline-offset: 3px; }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb li + li::before { content: "/"; margin-right: 0.6rem; color: var(--steel-400); }

/* ---------- Service detail blocks ---------- */
.service-rows { display: grid; gap: clamp(2.5rem, 6vw, 4.5rem); }
.service-row {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(1.75rem, 4.5vw, 3.5rem);
  align-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3.5vw, 2.75rem);
}
.service-row:nth-child(even) .service-row-media { order: 2; }
.service-row-media {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--steel-100);
}
.service-row-media img { width: 100%; height: 100%; object-fit: cover; }
.service-row h3 { font-size: 1.6rem; }
.service-row .included { font-size: 0.95rem; }

.pill-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.55rem; list-style: none; margin-top: var(--space-4); }
.pill-list li {
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--navy);
  background: var(--steel-100);
  border-radius: 999px;
  padding: 0.4rem 0.95rem;
  display: flex;
  align-items: center;
}

/* ---------- Comparison table ---------- */
.table-scroll {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  -webkit-overflow-scrolling: touch;
  /* Right-edge scroll shadow: the `local` cover gradient scrolls with the
     content and wipes the `scroll` shadow once you reach the last column, so
     the cue disappears exactly when there's nothing more to see. */
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0), var(--white) 72%),
    linear-gradient(to right, rgba(27, 58, 90, 0), rgba(27, 58, 90, 0.11));
  background-position: right center, right center;
  background-repeat: no-repeat;
  background-size: 44px 100%, 17px 100%;
  background-attachment: local, scroll;
}
.table-scroll:focus-visible { outline: 2px solid var(--steel); outline-offset: 3px; }

/* Swipe cue — only meaningful where the table actually overflows. */
.table-hint {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  margin: 0 0 0.85rem;
  font-size: 0.85rem;
  color: var(--faint);
}

.compare {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  font-size: 0.95rem;
}
.compare th, .compare td { padding: 0.95rem 1.2rem; text-align: center; border-bottom: 1px solid var(--line); }
.compare tbody tr:last-child th, .compare tbody tr:last-child td { border-bottom: 0; }
.compare thead th {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--navy-800);
  border-bottom: 2px solid var(--line);
}
.compare tbody th { text-align: left; font-weight: 500; color: var(--ink); }
.compare .yes { color: var(--olive-600); }
.compare .no { color: var(--steel-200); }
.compare .col-featured { background: var(--steel-100); }

/* Pin the service-name column so the row label stays readable while the
   package columns scroll underneath it. */
.compare thead th:first-child,
.compare tbody th[scope="row"] {
  position: sticky;
  left: 0;
  z-index: 2;
  background: var(--white);
  box-shadow: 1px 0 0 var(--line);
}

/* ---------- Values ---------- */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.value-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.8rem 1.6rem;
}
.value-card h3 { font-size: 1.2rem; }
.value-card p { color: var(--muted); font-size: 0.95rem; margin: 0; }

/* ---------- Contact ---------- */
.contact-layout { display: grid; grid-template-columns: 1fr 1.15fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }

.contact-cards { display: grid; gap: 1rem; }
.contact-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.35rem 1.4rem;
}
.contact-card strong { display: block; color: var(--navy-800); margin-bottom: 0.15rem; }
.contact-card a { font-weight: 600; }
.contact-card p { margin: 0; font-size: 0.93rem; color: var(--muted); }

.form-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3.5vw, 2.5rem);
  box-shadow: var(--shadow-md);
}

.contact-form-primary { max-width: 760px; margin-inline: auto; }

.quick-contact {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem 3rem;
  max-width: 760px;
  margin: 2.5rem auto 0;
}
.quick-contact li { display: flex; align-items: center; gap: 0.85rem; }
.quick-contact strong {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.1rem;
}
.quick-contact a { font-size: 1.08rem; font-weight: 600; color: var(--navy); }
.quick-contact a:hover { color: var(--steel); }

.contact-cards-2up {
  grid-template-columns: repeat(2, 1fr);
  max-width: 760px;
  margin: 1.75rem auto 0;
}

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem 1.25rem; }
.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 0.9rem; font-weight: 600; color: var(--navy-800); }
.field label .req { color: #B4452F; }
.field .hint { font-size: 0.8rem; color: var(--faint); }

.field input,
.field select,
.field textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  background: var(--paper);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 0.75rem 0.95rem;
  min-height: 48px;
  width: 100%;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.field textarea { resize: vertical; min-height: 130px; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--steel);
  box-shadow: 0 0 0 3px rgba(94, 134, 168, 0.18);
}
.field.invalid input, .field.invalid textarea, .field.invalid select { border-color: #B4452F; }
.field .error-msg { font-size: 0.82rem; color: #B4452F; display: none; }
.field.invalid .error-msg { display: block; }

.form-status {
  display: none;
  margin-top: 1.1rem;
  padding: 0.9rem 1.1rem;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  align-items: flex-start;
  gap: 0.6rem;
}
.form-status.success { display: flex; background: var(--olive-100); color: var(--olive-600); }
.form-status.error { display: flex; background: #FBEDEA; color: #8A3324; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-900);
  color: var(--steel-200);
  padding: clamp(3rem, 6vw, 4.5rem) 0 2rem;
  font-size: 0.94rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  padding-bottom: var(--space-12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.site-footer .brand { color: var(--white); margin-bottom: var(--space-4); }
.site-footer .brand img { background: var(--white); border-radius: 50%; padding: 3px; }
.site-footer .brand-name span { color: var(--steel-400); }
.footer-tagline { color: var(--steel-200); max-width: 34ch; }
.footer-badges { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: var(--space-4); list-style: none; }
.footer-badges li {
  font-size: 0.78rem;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  padding: 0.3rem 0.8rem;
  color: var(--steel-200);
}
.site-footer h4 { color: var(--white); font-family: var(--font-body); font-size: 0.85rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: var(--space-4); }
.footer-links { list-style: none; display: grid; gap: 0.6rem; }
.footer-links a { color: var(--steel-200); }
.footer-links a:hover { color: var(--white); }
.footer-areas { color: var(--steel-400); line-height: 1.8; }
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.6rem;
  font-size: 0.84rem;
  color: var(--steel-400);
}
.footer-bottom a { color: var(--steel-200); }

/* ---------- Long-form prose (privacy, future terms pages) ---------- */
.prose { max-width: 760px; }
.prose h2 {
  font-size: 1.45rem;
  margin-top: 2.6rem;
  margin-bottom: 0.7rem;
}
.prose h2:first-child { margin-top: 0; }
.prose p { color: var(--muted); margin: 0 0 1rem; }
.prose .text-link { font-weight: 500; }
.prose-meta {
  margin-top: 2.6rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--line);
  font-size: 0.85rem;
  color: var(--faint);
}

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .services-grid, .services-grid.cols-3 { grid-template-columns: repeat(2, 1fr); }
  .steps, .steps.steps-3 { grid-template-columns: repeat(2, 1fr); gap: 2rem 1.5rem; }
  .stats .container { transform: translateY(-2rem); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    padding: 0.75rem 1.25rem 1.25rem;
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links a { display: block; padding: 0.85rem 0.5rem; border-bottom: 1px solid var(--line); font-size: 1.02rem; }
  .nav-links li:last-child a { border-bottom: 0; }
  .nav-links a[aria-current="page"] { border-bottom-color: var(--line); color: var(--olive-600); }
  .nav-toggle { display: inline-flex; }
  .nav-phone { display: none; }
  .nav-links .mobile-only { display: block; }
  .nav-links .mobile-only a { font-weight: 600; color: var(--navy); display: flex; align-items: center; gap: 0.55rem; }
  .nav-links .mobile-only svg { flex: none; color: var(--olive); }

  .hero .container { grid-template-columns: 1fr; }
  .hero-media .frame { aspect-ratio: 16 / 11; }
  .hero-card { left: 1rem; bottom: 1rem; }

  .split, .areas-wrap, .contact-layout, .contact-cards-2up { grid-template-columns: 1fr; }
  .split-media .accent { display: none; }
  .packages-grid, .audience-grid, .values-grid { grid-template-columns: 1fr; max-width: 540px; margin-inline: auto; }
  .package-card.featured { transform: none; }
  .service-row { grid-template-columns: 1fr; }
  .service-row:nth-child(even) .service-row-media { order: 0; }
}

@media (max-width: 640px) {
  .nav-cta .btn { display: none; }
  .area-chips { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .area-chips li { white-space: normal; }
  .pill-list { grid-template-columns: 1fr; }
  .services-grid, .services-grid.cols-3 { grid-template-columns: 1fr; }
  .steps, .steps.steps-3 { grid-template-columns: 1fr; }
  .stats .container { grid-template-columns: 1fr 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-actions .btn { width: 100%; }
  .cta-actions .btn { width: 100%; max-width: 340px; }

  /* Comparison table: tighten it up so two package columns fit alongside the
     pinned service name, and show the swipe cue. */
  .table-hint { display: flex; }
  .compare { min-width: 500px; font-size: 0.86rem; }
  .compare th, .compare td { padding: 0.8rem 0.65rem; }
  .compare thead th { font-size: 0.95rem; }
  .compare thead th:first-child,
  .compare tbody th[scope="row"] { min-width: 148px; padding-left: 0.9rem; }
  /* Add-on rows span all three package columns; centring them across the full
     scroll width hides the text under the pinned column, so start them left. */
  .compare td[colspan] { text-align: left; }
}
