/* ============================================================
   COASTLINE WEBB - styles.css
   Shared stylesheet for all pages. Mobile-first.
   Tokens and rules follow BRAND.md.
   ============================================================ */

/* === Tokens (BRAND.md section 3) ============================ */
:root {
  --ink:      #141412;
  --accent:   #2563EB;
  --bg:       #FAFAF8;
  --muted:    #6B6B68;
  --border:   #E6E6E1;
  --white:    #FFFFFF;
  --whatsapp: #25D366; /* BRAND.md section 8 - WhatsApp button */

  /* Translucent variants derived from the palette above */
  --overlay:      color-mix(in srgb, var(--ink) 52%, transparent);
  --header-bg:    color-mix(in srgb, var(--bg) 84%, transparent);
  --shadow-soft:  0 1px 3px color-mix(in srgb, var(--ink) 6%, transparent);
  --shadow-card:  0 12px 32px color-mix(in srgb, var(--ink) 10%, transparent);

  --radius:    12px;   /* BRAND.md section 5 - buttons and cards */
  --section-y: clamp(80px, 12vw, 160px);
  --header-h:  68px;
}

/* === Reset ================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  background-color: var(--bg);
  color: var(--ink);
  font-family: 'Figtree', sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img     { max-width: 100%; height: auto; display: block; }
a       { color: inherit; text-decoration: none; }
ul      { list-style: none; }
button  { cursor: pointer; border: none; background: none; font-family: inherit; font-size: inherit; }

/* Prevent long words/URLs from blowing out narrow viewports */
* { overflow-wrap: break-word; }

/* Visible focus for every interactive element */
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* === Typography (BRAND.md section 4) ======================== */
h1 {
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--ink);
}

h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--ink);
}

h3 {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--ink);
  margin-bottom: 0.35rem;
}

p {
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 65ch;
}

small {
  font-size: 0.9rem;
  color: var(--muted);
}

/* === Container (BRAND.md section 5) ========================= */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* === Buttons (BRAND.md section 8) =========================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: 'Figtree', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 150ms ease, opacity 150ms ease,
              background-color 150ms ease, border-color 150ms ease,
              color 150ms ease;
}

.btn:hover  { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--accent);
  color: var(--white);
}
.btn-primary:hover { opacity: 0.9; }

.btn-secondary {
  background: transparent;
  color: var(--ink);
  border-color: var(--border);
}
.btn-secondary:hover { border-color: var(--muted); }

.btn-full { width: 100%; }

/* Full-width buttons on mobile (BRAND.md section 8) */
@media (max-width: 639px) {
  main .btn { width: 100%; }
}

/* === Feature list =========================================== */
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.feature-list li {
  font-size: 0.95rem;
  color: var(--muted);
  padding-left: 1.3rem;
  position: relative;
  line-height: 1.6;
}

.feature-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--muted);
}

/* ============================================================
   HEADER (BRAND.md section 8)
   Sticky, blurred, semi-transparent, 1px bottom border.
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--header-bg);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

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

/* Wordmark (BRAND.md section 9) */
.logo {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
  flex-shrink: 0;
  z-index: 101;
}

/* Hamburger */
.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 101;
  margin-left: auto;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 150ms ease, opacity 150ms ease;
  transform-origin: center;
}

.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.site-nav {
  display: none;
  align-items: center;
  gap: 0.1rem;
}

.site-nav > a:not(.btn) {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted);
  padding: 0.4rem 0.7rem;
  border-radius: var(--radius);
  transition: color 150ms ease;
}

.site-nav > a:not(.btn):hover { color: var(--ink); }

.nav-active { color: var(--accent) !important; }

.lang-toggle {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  margin: 0 0.5rem;
  color: var(--border);
  font-size: 0.9rem;
}

.lang-btn {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--muted);
  padding: 0.2rem 0.3rem;
  border-radius: 4px;
  transition: color 150ms ease;
}

.lang-btn.active { color: var(--ink); }
.lang-btn:hover  { color: var(--ink); }

.site-nav .btn { margin-left: 0.6rem; padding: 10px 20px; font-size: 0.9rem; }

/* Mobile nav open state */
.site-nav.open {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  background: var(--white);
  padding: 1rem 24px 1.5rem;
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  gap: 0.15rem;
}

.site-nav.open > a:not(.btn) {
  width: 100%;
  padding: 0.7rem 0.5rem;
  font-size: 1rem;
  color: var(--ink);
  border-bottom: 1px solid var(--border);
}

.site-nav.open .lang-toggle { margin: 0.6rem 0.5rem 0; }

.site-nav.open .btn {
  margin-left: 0;
  margin-top: 0.8rem;
  width: 100%;
  padding: 14px 28px;
}

/* ============================================================
   HERO - full-viewport video background
   ============================================================ */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--overlay);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding-top: var(--header-h);
  padding-bottom: 3rem;
}

.hero-content h1 {
  color: var(--white);
  margin-bottom: 1.25rem;
}

.hero-sub {
  color: color-mix(in srgb, var(--white) 82%, transparent);
  max-width: 44ch;
  margin: 0 auto 2.25rem;
}

.hero-ctas {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.hero-ctas .btn { width: 100%; max-width: 340px; }

@media (min-width: 640px) {
  .hero-ctas { flex-direction: row; justify-content: center; }
  .hero-ctas .btn { width: auto; }
}

/* Secondary button over the dark hero video: transparent with
   border per BRAND.md, ink swapped to white for WCAG contrast */
.hero .btn-secondary {
  color: var(--white);
  border-color: color-mix(in srgb, var(--white) 55%, transparent);
}
.hero .btn-secondary:hover { border-color: var(--white); }

/* ============================================================
   THE PROBLEM
   ============================================================ */
.section-problem {
  padding: var(--section-y) 0;
  background: var(--white);
}

.problem-intro {
  max-width: 65ch;
  margin-bottom: 3.5rem;
}

.problem-intro h2 { margin-bottom: 0.7rem; }
.problem-intro p  { color: var(--muted); }

.problem-grid {
  display: grid;
  gap: 2.25rem;
}

.prob-num {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 0.55rem;
}

.problem-item p {
  color: var(--muted);
  font-size: 1.05rem;
}

@media (min-width: 640px) {
  .problem-grid { grid-template-columns: repeat(2, 1fr); gap: 2.5rem 3rem; }
}

@media (min-width: 960px) {
  .problem-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ============================================================
   SERVICES
   ============================================================ */
.section-services {
  padding: var(--section-y) 0;
}

.services-inner { display: grid; gap: 2.5rem; }

.services-header h2 { margin-bottom: 0.85rem; }
.services-header p  { color: var(--muted); }

.service-row {
  display: grid;
  grid-template-columns: 2.5rem 1fr;
  gap: 0 1.25rem;
  padding: 1.6rem 0;
  border-top: 1px solid var(--border);
  align-items: start;
}

.service-row:last-child { border-bottom: 1px solid var(--border); }

.svc-num {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted);
  padding-top: 0.35rem;
}

.service-row p { color: var(--muted); }

@media (min-width: 960px) {
  .services-inner {
    grid-template-columns: 2fr 3fr;
    gap: 0 5rem;
    align-items: start;
  }

  .services-header {
    position: sticky;
    top: calc(var(--header-h) + 3rem);
  }
}

/* ============================================================
   PACKAGES (BRAND.md section 8: Growth is the dark card)
   ============================================================ */
.section-packages {
  padding: var(--section-y) 0;
  background: var(--white);
}

.pkg-header { max-width: 65ch; margin-bottom: 3rem; }
.pkg-header h2 { margin-bottom: 0.7rem; }
.pkg-header p  { color: var(--muted); }

.packages-grid {
  display: grid;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.pkg-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
}

/* Growth: dark, elevated, the obvious choice */
.pkg-featured {
  background: var(--ink);
  border-color: var(--ink);
}

.pkg-flag {
  font-size: 0.9rem;
  font-weight: 500;
  color: color-mix(in srgb, var(--white) 60%, transparent);
  margin-bottom: 0.3rem;
}

.pkg-top { display: flex; flex-direction: column; gap: 0.15rem; }

.pkg-name {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-bottom: 0;
}

.pkg-sub {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.pkg-price-row {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
}

.price {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.03em;
  line-height: 1;
}

.price-note {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted);
}

/* Featured (dark card) overrides */
.pkg-featured .pkg-name   { color: var(--white); }
.pkg-featured .pkg-sub    { color: color-mix(in srgb, var(--white) 50%, transparent); }
.pkg-featured .price      { color: var(--white); }
.pkg-featured .price-note { color: color-mix(in srgb, var(--white) 50%, transparent); }

.pkg-featured .feature-list li { color: color-mix(in srgb, var(--white) 78%, transparent); }
.pkg-featured .feature-list li::before { background: color-mix(in srgb, var(--white) 60%, transparent); }

@media (min-width: 960px) {
  .packages-grid {
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
    gap: 1rem;
  }

  .pkg-featured {
    padding: 2.5rem 2rem;
    transform: translateY(-12px);
    box-shadow: var(--shadow-card);
    z-index: 2;
  }
}

/* Add-ons strip (homepage) */
.addons {
  border-top: 1px solid var(--border);
  padding-top: 2rem;
  text-align: center;
}

.addons-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--muted);
  margin: 0 auto 1rem;
}

.addons-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
}

.addons-list span {
  font-size: 0.9rem;
  color: var(--muted);
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 0.38rem 0.9rem;
  border-radius: var(--radius);
}

/* ============================================================
   CARE PLANS
   ============================================================ */
.section-care {
  padding: var(--section-y) 0;
}

.care-header { max-width: 65ch; margin-bottom: 3rem; }
.care-header h2 { margin-bottom: 0.7rem; }
.care-header p  { color: var(--muted); }

.care-comparison { display: grid; gap: 2rem; }

.care-col {
  padding-top: 1.75rem;
  border-top: 2px solid var(--border);
}

.care-col-featured { border-top-color: var(--ink); }

.care-name {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

.care-price-row {
  display: flex;
  align-items: baseline;
  gap: 0.2rem;
  margin-bottom: 1.25rem;
}

.care-amount {
  font-size: 2rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.03em;
  line-height: 1;
}

.care-period {
  font-size: 0.9rem;
  color: var(--muted);
}

.care-col .btn { margin-top: 1.5rem; }

@media (min-width: 760px) {
  .care-comparison {
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
  }

  .care-col { padding: 1.75rem 1.25rem 0 0; }

  .care-col:not(:first-child) {
    padding-left: 1.25rem;
    border-left: 1px solid var(--border);
  }
}

/* ============================================================
   PROCESS
   ============================================================ */
.section-process {
  padding: var(--section-y) 0;
  background: var(--white);
}

.process-header { max-width: 65ch; margin-bottom: 3rem; }
.process-header h2 { margin-bottom: 0.6rem; }
.process-header p  { color: var(--muted); }

.process-steps { display: flex; flex-direction: column; }

.process-step {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 0 1.5rem;
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}

.process-step:first-child { border-top: 1px solid var(--border); }

.step-num {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted);
  padding-top: 0.3rem;
}

.step-body p { color: var(--muted); }

@media (min-width: 640px) {
  .process-steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 3rem;
  }

  .process-step:nth-child(2) { border-top: 1px solid var(--border); }
}

@media (min-width: 960px) {
  .process-steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 0 3.5rem;
  }

  .process-step:nth-child(3) { border-top: 1px solid var(--border); }
}

/* ============================================================
   ABOUT (homepage section)
   ============================================================ */
.section-about {
  padding: var(--section-y) 0;
}

.about-inner { display: grid; gap: 3rem; }

.about-photo {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
}

.about-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
}

.about-text h2 { margin-bottom: 1.2rem; }

.about-text p {
  color: var(--muted);
  margin-bottom: 1rem;
}

.about-stats {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  padding: 1.4rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin: 1.5rem 0 1.8rem;
}

.about-stat { display: flex; flex-direction: column; gap: 0.2rem; }

.astat-value {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.astat-label {
  font-size: 0.9rem;
  color: var(--muted);
}

@media (min-width: 960px) {
  .about-inner {
    grid-template-columns: 5fr 6fr;
    align-items: center;
    gap: 5rem;
  }
}

/* ============================================================
   CTA BAND (the single deliberate dark section, BRAND.md s3)
   ============================================================ */
.section-cta {
  padding: var(--section-y) 0;
  background: var(--ink);
}

.cta-inner { max-width: 640px; }

.section-cta h2 {
  color: var(--white);
  margin-bottom: 0.85rem;
}

.section-cta p {
  color: color-mix(in srgb, var(--white) 62%, transparent);
  margin-bottom: 2rem;
}

/* ============================================================
   CONTACT (homepage section + contact page)
   ============================================================ */
.section-contact {
  padding: var(--section-y) 0;
}

.contact-inner { display: grid; gap: 3.5rem; }

.contact-info h2 { margin-bottom: 0.9rem; }

.contact-info > p {
  color: var(--muted);
  margin-bottom: 2rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.contact-item {
  display: grid;
  grid-template-columns: 6rem 1fr;
  gap: 0 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
  color: var(--muted);
  align-items: baseline;
  transition: color 150ms ease;
}

a.contact-item:hover { color: var(--accent); }

.contact-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink);
}

/* Contact CTA column: WhatsApp + email buttons, no form */
.contact-cta {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.contact-cta-heading {
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

.contact-cta-sub {
  font-size: 1.05rem;
  color: var(--muted);
  margin-bottom: 1.75rem;
  max-width: 42ch;
}

.contact-btns {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.btn-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: 'Figtree', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  transition: opacity 150ms ease, transform 150ms ease;
}

.btn-contact:hover  { opacity: 0.9; transform: translateY(-2px); }
.btn-contact:active { opacity: 1;   transform: translateY(0); }

.btn-whatsapp { background: var(--whatsapp); }
.btn-email    { background: var(--accent); }

.contact-thankyou {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 1.25rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--accent);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 150ms ease, transform 150ms ease;
  pointer-events: none;
}

.contact-thankyou.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

@media (min-width: 480px) {
  .contact-btns { flex-direction: row; }
  .btn-contact  { flex: 1; }
}

@media (min-width: 960px) {
  .contact-inner {
    grid-template-columns: 5fr 6fr;
    align-items: start;
    gap: 5rem;
  }
}

/* ============================================================
   FOOTER (BRAND.md section 8: white, border top, centred)
   ============================================================ */
.site-footer {
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: clamp(3rem, 6vw, 4.5rem) 0 2rem;
  text-align: center;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.75rem;
  padding-bottom: 2rem;
}

.footer-brand .logo {
  display: inline-block;
  margin-bottom: 0.85rem;
}

.footer-brand p {
  font-size: 0.95rem;
  color: var(--muted);
  margin: 0 auto;
}

.footer-nav,
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1.75rem;
}

.footer-nav a,
.footer-contact a {
  font-size: 0.9rem;
  color: var(--muted);
  transition: color 150ms ease;
}

.footer-nav a:hover,
.footer-contact a:hover { color: var(--ink); }

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.footer-bottom p {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0 auto;
}

/* ============================================================
   RESPONSIVE - desktop nav
   ============================================================ */
@media (min-width: 960px) {
  .nav-toggle { display: none; }
  .site-nav   { display: flex; }
}

@media (min-width: 960px) and (max-width: 1139px) {
  .site-nav > a:not(.btn) { padding: 0.4rem 0.5rem; }
}

/* ============================================================
   PAGE HERO (about / contact / packages / get-started)
   ============================================================ */
.page-hero {
  padding-top: calc(var(--header-h) + clamp(3.5rem, 6vw, 5.5rem));
  padding-bottom: clamp(3rem, 5vw, 4.5rem);
  border-bottom: 1px solid var(--border);
}

.page-hero h1 { max-width: 14ch; }

.page-hero-sub {
  margin-top: 1.1rem;
  color: var(--muted);
  max-width: 55ch;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.section-story {
  padding: var(--section-y) 0;
}

.story-inner {
  display: grid;
  gap: clamp(2.5rem, 5vw, 4rem);
}

.story-text h2 { margin-bottom: 1.5rem; }

.story-text p {
  color: var(--muted);
  max-width: 58ch;
}

.story-text p + p { margin-top: 1.1rem; }

.story-photo {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
}

.story-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (min-width: 840px) {
  .story-inner {
    grid-template-columns: 5fr 4fr;
    align-items: start;
  }

  .story-photo {
    position: sticky;
    top: calc(var(--header-h) + 2rem);
  }
}

/* Values */
.section-values {
  padding: var(--section-y) 0;
  background: var(--white);
}

.values-grid {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1fr;
}

.value-item {
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}

.value-item h3 { margin-bottom: 0.55rem; }

.value-item p { color: var(--muted); }

@media (min-width: 640px) {
  .values-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 1000px) {
  .values-grid { grid-template-columns: 1fr 1fr 1fr; }
}

/* Stats */
.section-about-stats {
  padding: var(--section-y) 0;
}

.about-stats-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem 3rem;
  border-top: 1px solid var(--border);
  padding-top: 2.5rem;
}

.about-stat-item {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.about-stat-val {
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.about-stat-lbl {
  font-size: 0.9rem;
  color: var(--muted);
}

@media (min-width: 640px) {
  .about-stats-inner { grid-template-columns: repeat(4, 1fr); }
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.section-contact-main {
  padding: var(--section-y) 0;
}

.contact-intro {
  color: var(--muted);
  margin-bottom: 2.5rem;
  max-width: 48ch;
}

.contact-note {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.contact-note p {
  font-size: 0.95rem;
  color: var(--muted);
}

/* FAQ */
.section-faq {
  padding: var(--section-y) 0;
  background: var(--white);
}

.faq-inner h2 { margin-bottom: 3rem; }

.faq-list { display: grid; gap: 0; }

.faq-item {
  padding: 1.75rem 0;
  border-top: 1px solid var(--border);
}

.faq-item:last-child { border-bottom: 1px solid var(--border); }

.faq-item h3 { margin-bottom: 0.6rem; }

.faq-item p {
  color: var(--muted);
  max-width: 60ch;
}

.faq-item p a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

@media (min-width: 840px) {
  .faq-list { grid-template-columns: 1fr 1fr; gap: 0 4rem; }

  .faq-item:nth-child(odd):last-child { border-bottom: none; }
}

/* ============================================================
   PACKAGES PAGE
   ============================================================ */
.section-sub {
  color: var(--muted);
  margin-bottom: clamp(2.5rem, 4vw, 3.5rem);
}

.section-h2 { margin-bottom: 0.75rem; }

.section-packages-full {
  padding: var(--section-y) 0;
}

.section-care-full {
  padding: var(--section-y) 0;
  background: var(--white);
}

/* Add-ons page section */
.section-addons {
  padding: var(--section-y) 0;
}

.addons-inner { display: grid; gap: 2.5rem; }

.addons-header h2 { margin-bottom: 0.6rem; }
.addons-header p  { color: var(--muted); }

.addons-grid { display: grid; gap: 0; }

.addon-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--border);
}

.addon-item:last-child { border-bottom: 1px solid var(--border); }

.addon-info { min-width: 0; flex: 1; }

.addon-info h3 { margin-bottom: 0.3rem; }

.addon-info p {
  font-size: 0.95rem;
  color: var(--muted);
  max-width: 44ch;
}

.addon-price {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  white-space: nowrap;
  padding-top: 0.15rem;
}

@media (min-width: 700px) {
  .addons-inner { grid-template-columns: 1fr 2fr; align-items: start; }
  .addons-grid  { grid-template-columns: 1fr 1fr; }

  .addon-item:nth-child(even) { border-left: 1px solid var(--border); padding-left: 2rem; }
  .addon-item:nth-child(3),
  .addon-item:nth-child(4) { border-bottom: 1px solid var(--border); }
}

/* ============================================================
   GET STARTED PAGE (Tally embed)
   ============================================================ */
.section-quote-form {
  padding: clamp(2.5rem, 5vw, 4rem) 0 var(--section-y);
}

.section-quote-form iframe {
  display: block;
  width: 100%;
  border: 0;
}

/* ============================================================
   REDUCED MOTION (BRAND.md section 6)
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *, *::before, *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
