/* ============================================================
   Mālama Catchment — styles.css
   Mobile-first. Brand tokens in :root. No external dependencies.
   ============================================================ */

/* ------------------------------------------------------------
   1. BRAND TOKENS
   ------------------------------------------------------------ */
:root {
  /* Colors */
  --navy:       #0E2A47;
  --hull:       #0A1F36;
  --coral:      #E07856;
  --coral-dark: #c4623c;
  --green:      #2F855A;
  --sky:        #2B6CB0;
  --charcoal:   #2D3748;
  --stone:      #718096;
  --mist:       #E2E8F0;
  --offwhite:   #F7FAFC;
  --white:      #FFFFFF;

  /* Typography */
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --text-xs:   0.75rem;   /* 12px */
  --text-sm:   0.875rem;  /* 14px */
  --text-base: 1rem;      /* 16px */
  --text-lg:   1.125rem;  /* 18px */
  --text-xl:   1.25rem;   /* 20px */
  --text-2xl:  1.5rem;    /* 24px */
  --text-3xl:  1.875rem;  /* 30px */
  --text-4xl:  2.25rem;   /* 36px */
  --text-5xl:  3rem;      /* 48px */

  /* Spacing */
  --space-1:  0.25rem;
  --space-2:  0.5rem;
  --space-3:  0.75rem;
  --space-4:  1rem;
  --space-5:  1.25rem;
  --space-6:  1.5rem;
  --space-8:  2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;

  /* Layout */
  --max-w:      1200px;
  --max-w-text: 720px;
  --max-w-bio:  640px;
  --radius:     0.5rem;
  --radius-lg:  0.75rem;

  /* Transitions */
  --transition: 200ms ease;
}

/* ------------------------------------------------------------
   2. RESET & BASE
   ------------------------------------------------------------ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font);
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font: inherit;
}

/* ------------------------------------------------------------
   3. ACCESSIBILITY
   ------------------------------------------------------------ */
.skip-link {
  position: absolute;
  top: -100%;
  left: var(--space-4);
  background: var(--navy);
  color: var(--white);
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius);
  font-weight: 600;
  z-index: 9999;
  transition: top var(--transition);
}
.skip-link:focus {
  top: var(--space-4);
}

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

/* Screen-reader only */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ------------------------------------------------------------
   4. TYPOGRAPHY UTILITIES
   ------------------------------------------------------------ */
.kicker {
  display: block;
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--sky);
  margin-bottom: var(--space-3);
}

.section-h2 {
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: var(--space-5);
}

.body-text {
  font-size: var(--text-base);
  color: var(--charcoal);
  line-height: 1.7;
}

.fine-print {
  font-size: var(--text-sm);
  color: var(--stone);
  line-height: 1.6;
}

/* ------------------------------------------------------------
   5. LAYOUT UTILITIES
   ------------------------------------------------------------ */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--space-5);
}

.section {
  padding-block: var(--space-16);
}

.section--offwhite { background: var(--offwhite); }
.section--white    { background: var(--white); }
.section--navy     { background: var(--navy); }
.section--hull     { background: var(--hull); }

.text-center { text-align: center; }
.text-left   { text-align: left; }

/* ------------------------------------------------------------
   6. BUTTONS
   ------------------------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-size: var(--text-base);
  font-weight: 600;
  line-height: 1;
  padding: var(--space-4) var(--space-6);
  border-radius: var(--radius);
  min-height: 48px;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform 80ms ease;
  text-decoration: none;
  white-space: nowrap;
}
.btn:active { transform: scale(0.98); }

.btn-primary {
  background: var(--coral);
  color: var(--white);
}
.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--coral-dark);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}
.btn-outline:hover, .btn-outline:focus-visible {
  background: var(--navy);
  color: var(--white);
}

.btn-outline--white {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn-outline--white:hover, .btn-outline--white:focus-visible {
  background: var(--white);
  color: var(--navy);
}

.btn-lg {
  font-size: var(--text-lg);
  padding: var(--space-5) var(--space-8);
  min-height: 56px;
}

/* ------------------------------------------------------------
   7. HEADER / NAV
   ------------------------------------------------------------ */
.site-header {
  background: var(--navy);
  color: var(--white);
}

.microbar {
  background: var(--hull);
  font-size: var(--text-xs);
  color: var(--mist);
  padding-block: var(--space-2);
  text-align: center;
  letter-spacing: 0.02em;
}
.microbar a {
  color: var(--white);
  font-weight: 600;
}
.microbar a:hover { text-decoration: underline; }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: var(--space-4);
}

.nav-logo {
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
}
.nav-logo span {
  color: var(--coral);
}

.nav-links {
  display: none;
}

.nav-cta {
  font-size: var(--text-sm);
}

/* ------------------------------------------------------------
   8. HERO
   ------------------------------------------------------------ */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--hull) 100%);
  color: var(--white);
  padding-block: var(--space-16) var(--space-20);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(224,120,86,0.08) 0%, transparent 60%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.hero-kicker {
  display: inline-block;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--coral);
  letter-spacing: 0.04em;
  margin-bottom: var(--space-4);
  background: rgba(224,120,86,0.12);
  padding: var(--space-1) var(--space-3);
  border-radius: 99px;
  border: 1px solid rgba(224,120,86,0.3);
}

.hero h1 {
  font-size: var(--text-3xl);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: var(--space-5);
  letter-spacing: -0.02em;
}

.hero-subhead {
  font-size: var(--text-lg);
  color: var(--mist);
  line-height: 1.65;
  margin-bottom: var(--space-6);
  max-width: 640px;
}

.hero-offer {
  font-size: var(--text-base);
  color: var(--mist);
  margin-bottom: var(--space-8);
}
.hero-offer .price-regular {
  text-decoration: line-through;
  color: var(--stone);
}
.hero-offer .price-founding {
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--white);
}
.hero-offer .price-save {
  color: var(--green);
  font-weight: 600;
}

.hero-ctas {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-bottom: var(--space-5);
}

.hero-microcopy {
  font-size: var(--text-sm);
  color: var(--stone);
}

/* Hero image placeholder */
.hero-image-placeholder {
  display: none;
}

/* Trust strip */
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3) var(--space-6);
  margin-top: var(--space-8);
  padding-top: var(--space-8);
  border-top: 1px solid rgba(255,255,255,0.12);
}
.trust-strip-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  color: var(--mist);
}
.trust-strip-item .check {
  color: var(--green);
  font-weight: 700;
  font-size: var(--text-base);
}

/* ------------------------------------------------------------
   9. PRICING
   ------------------------------------------------------------ */
.pricing-card {
  background: var(--white);
  border: 1px solid var(--mist);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  max-width: 600px;
  margin-inline: auto;
  box-shadow: 0 4px 24px rgba(14,42,71,0.08);
}

.price-display {
  text-align: center;
  margin-bottom: var(--space-6);
  padding-bottom: var(--space-6);
  border-bottom: 1px solid var(--mist);
}
.price-was {
  font-size: var(--text-xl);
  color: var(--stone);
  text-decoration: line-through;
  display: block;
  margin-bottom: var(--space-1);
}
.price-now {
  font-size: var(--text-5xl);
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  display: block;
  margin-bottom: var(--space-2);
}
.price-save-badge {
  display: inline-block;
  background: var(--green);
  color: var(--white);
  font-size: var(--text-sm);
  font-weight: 700;
  padding: var(--space-1) var(--space-3);
  border-radius: 99px;
}

.pricing-sub {
  font-size: var(--text-base);
  color: var(--charcoal);
  margin-bottom: var(--space-6);
  line-height: 1.65;
}

.includes-list {
  margin-bottom: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.includes-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: var(--text-base);
  color: var(--charcoal);
}
.includes-item .check {
  color: var(--green);
  font-weight: 700;
  font-size: var(--text-lg);
  line-height: 1.4;
  flex-shrink: 0;
}

.scarcity-counter {
  text-align: center;
  background: var(--offwhite);
  border: 1px solid var(--mist);
  border-radius: var(--radius);
  padding: var(--space-4);
  margin-bottom: var(--space-6);
  font-size: var(--text-sm);
  color: var(--charcoal);
  font-weight: 500;
}
.scarcity-counter strong {
  color: var(--coral);
}

.pricing-cta-wrap {
  margin-bottom: var(--space-5);
}
.pricing-cta-wrap .btn {
  width: 100%;
}

/* ------------------------------------------------------------
   10. FOUNDER BIO
   ------------------------------------------------------------ */
.founder-section {
  padding-block: var(--space-16);
}

.founder-inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
  max-width: var(--max-w-bio);
  margin-inline: auto;
}

.founder-photo-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  max-height: 420px;
  background: var(--mist);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--stone);
  font-size: var(--text-sm);
  text-align: center;
  padding: var(--space-6);
  gap: var(--space-2);
  border: 2px dashed var(--mist);
}
.founder-photo-placeholder .placeholder-label {
  font-weight: 600;
  color: var(--charcoal);
}
.founder-photo-placeholder .placeholder-note {
  font-size: var(--text-xs);
  color: var(--stone);
}

.founder-bio-text h2 {
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: var(--space-5);
  line-height: 1.3;
}

.founder-bio-text p {
  font-size: var(--text-base);
  color: var(--charcoal);
  line-height: 1.7;
  margin-bottom: var(--space-4);
}
.founder-bio-text p:last-of-type {
  margin-bottom: var(--space-6);
}

.founder-trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-4);
  padding-top: var(--space-5);
  border-top: 1px solid var(--mist);
}
.founder-trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  color: var(--charcoal);
  font-weight: 500;
}
.founder-trust-item .check {
  color: var(--green);
  font-weight: 700;
}

/* ------------------------------------------------------------
   11. WHY MĀLAMA
   ------------------------------------------------------------ */
.why-malama {
  text-align: center;
}
.why-malama .section-inner {
  max-width: var(--max-w-bio);
  margin-inline: auto;
}
.why-malama h2 {
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: var(--space-6);
}
.why-malama p {
  font-size: var(--text-base);
  color: var(--charcoal);
  line-height: 1.75;
  margin-bottom: var(--space-5);
}
.why-malama p:last-child { margin-bottom: 0; }
.why-malama .malama-word {
  font-weight: 700;
  color: var(--sky);
}

/* ------------------------------------------------------------
   12. WHY IT MATTERS (EDUCATION)
   ------------------------------------------------------------ */
.why-matters .section-inner {
  max-width: var(--max-w-text);
  margin-inline: auto;
}
.why-matters h2 {
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: var(--space-6);
}
.why-matters p {
  font-size: var(--text-base);
  color: var(--charcoal);
  line-height: 1.75;
  margin-bottom: var(--space-5);
}
.why-matters p:last-of-type { margin-bottom: var(--space-8); }

sup a {
  color: var(--sky);
  font-size: 0.7em;
  text-decoration: none;
  font-weight: 600;
}
sup a:hover { text-decoration: underline; }

.citations {
  margin-top: var(--space-6);
  padding-top: var(--space-5);
  border-top: 1px solid var(--mist);
}
.citations ol {
  list-style: decimal;
  padding-left: var(--space-5);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.citations li {
  font-size: var(--text-xs);
  color: var(--stone);
  line-height: 1.6;
}
.citations a {
  color: var(--sky);
  text-decoration: underline;
  word-break: break-all;
}
.citations a:hover { color: var(--navy); }

/* Education visual placeholder */
.education-visual-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--mist);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--stone);
  font-size: var(--text-sm);
  text-align: center;
  padding: var(--space-6);
  margin-bottom: var(--space-8);
  border: 2px dashed var(--mist);
}

/* ------------------------------------------------------------
   13. PROCESS (8 STEPS)
   ------------------------------------------------------------ */
.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
  margin-top: var(--space-10);
}

.process-card {
  background: var(--white);
  border: 1px solid var(--mist);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
}

.process-card-header {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  margin-bottom: var(--space-4);
}

.step-number {
  font-size: var(--text-3xl);
  font-weight: 800;
  color: var(--sky);
  line-height: 1;
  flex-shrink: 0;
  width: 2rem;
}

.step-title {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
}

.step-desc {
  font-size: var(--text-base);
  color: var(--charcoal);
  line-height: 1.65;
  margin-bottom: var(--space-4);
}

.step-meta {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.step-meta-item {
  font-size: var(--text-sm);
  line-height: 1.55;
}
.step-meta-label {
  font-weight: 600;
  color: var(--navy);
}
.step-meta-text {
  color: var(--stone);
}

/* ------------------------------------------------------------
   14. GALLERY / PROOF
   ------------------------------------------------------------ */
.proof-intro {
  font-size: var(--text-base);
  color: var(--charcoal);
  max-width: var(--max-w-text);
  margin-inline: auto;
  margin-bottom: var(--space-10);
  text-align: center;
  line-height: 1.7;
}

/* Featured comparison slider placeholder */
.featured-comparison {
  background: var(--mist);
  border-radius: var(--radius-lg);
  aspect-ratio: 16/9;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--stone);
  font-size: var(--text-sm);
  text-align: center;
  padding: var(--space-8);
  margin-bottom: var(--space-8);
  border: 2px dashed var(--mist);
  gap: var(--space-2);
}
.featured-comparison .placeholder-label {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--charcoal);
}

.gallery-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
}

.gallery-card {
  background: var(--white);
  border: 1px solid var(--mist);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.gallery-card-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--mist);
}
.gallery-img-placeholder {
  aspect-ratio: 4/3;
  background: var(--offwhite);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--stone);
  font-size: var(--text-xs);
  text-align: center;
  padding: var(--space-4);
  gap: var(--space-1);
}
.gallery-img-placeholder .img-label {
  font-weight: 600;
  color: var(--charcoal);
  font-size: var(--text-sm);
}

.gallery-card-caption {
  padding: var(--space-4) var(--space-5);
  font-size: var(--text-sm);
  color: var(--charcoal);
  line-height: 1.55;
}

/* ------------------------------------------------------------
   15. TRUST CARDS
   ------------------------------------------------------------ */
.trust-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
  margin-top: var(--space-10);
}

.trust-card {
  background: var(--white);
  border: 1px solid var(--mist);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
}

.trust-card-icon {
  font-size: var(--text-2xl);
  margin-bottom: var(--space-3);
}

.trust-card h3 {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: var(--space-3);
  line-height: 1.3;
}

.trust-card p {
  font-size: var(--text-base);
  color: var(--charcoal);
  line-height: 1.65;
}

/* ------------------------------------------------------------
   16. FAQ
   ------------------------------------------------------------ */
.faq-list {
  max-width: var(--max-w-text);
  margin-inline: auto;
  margin-top: var(--space-10);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.faq-item {
  border: 1px solid var(--mist);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-5) var(--space-5);
  cursor: pointer;
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.4;
  background: var(--white);
  transition: background var(--transition);
  -webkit-user-select: none;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::marker { display: none; }

.faq-item summary:hover {
  background: var(--offwhite);
}

.faq-item[open] summary {
  background: var(--offwhite);
}

.faq-chevron {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--sky);
  transition: transform var(--transition);
}
.faq-item[open] .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  padding: var(--space-5);
  padding-top: 0;
  background: var(--offwhite);
  border-top: 1px solid var(--mist);
}
.faq-answer p {
  font-size: var(--text-base);
  color: var(--charcoal);
  line-height: 1.7;
  padding-top: var(--space-4);
}

/* Inline CTA within FAQ */
.faq-inline-cta {
  background: var(--navy);
  border-radius: var(--radius);
  padding: var(--space-6);
  text-align: center;
  color: var(--white);
  margin-block: var(--space-4);
}
.faq-inline-cta p {
  font-weight: 600;
  margin-bottom: var(--space-4);
  font-size: var(--text-base);
}
.faq-inline-cta .btn {
  font-size: var(--text-base);
}

/* ------------------------------------------------------------
   17. SERVICE AREA
   ------------------------------------------------------------ */
.service-area-inner {
  max-width: var(--max-w-text);
  margin-inline: auto;
}
.service-area-inner h2 {
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: var(--space-6);
}
.towns-list {
  font-size: var(--text-base);
  color: var(--charcoal);
  line-height: 2;
  margin-bottom: var(--space-6);
}
.zip-codes {
  font-family: 'Courier New', Courier, monospace;
  font-size: var(--text-sm);
  color: var(--stone);
  line-height: 2;
  margin-bottom: var(--space-6);
}
.service-area-note {
  font-size: var(--text-base);
  color: var(--charcoal);
  line-height: 1.65;
  padding-top: var(--space-5);
  border-top: 1px solid var(--mist);
}
.service-area-note a {
  color: var(--sky);
  font-weight: 600;
}
.service-area-note a:hover { text-decoration: underline; }

/* ------------------------------------------------------------
   18. FINAL CTA
   ------------------------------------------------------------ */
.final-cta {
  background: var(--navy);
  color: var(--white);
  text-align: center;
  padding-block: var(--space-20);
}
.final-cta-inner {
  max-width: var(--max-w-bio);
  margin-inline: auto;
}
.final-cta h2 {
  font-size: var(--text-3xl);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: var(--space-5);
}
.final-cta p {
  font-size: var(--text-lg);
  color: var(--mist);
  line-height: 1.65;
  margin-bottom: var(--space-8);
}
.final-cta-microcopy {
  font-size: var(--text-sm);
  color: var(--stone);
  margin-top: var(--space-5);
}

/* ------------------------------------------------------------
   19. FOOTER
   ------------------------------------------------------------ */
.site-footer {
  background: var(--hull);
  color: var(--mist);
  padding-block: var(--space-12);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  margin-bottom: var(--space-8);
}

.footer-col h3 {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: var(--space-4);
}

.footer-col p,
.footer-col address {
  font-size: var(--text-sm);
  color: var(--mist);
  line-height: 1.8;
  font-style: normal;
}

.footer-col a {
  color: var(--mist);
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--white); }

.footer-nav-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.footer-nav-list a {
  font-size: var(--text-sm);
  color: var(--mist);
}
.footer-nav-list a:hover {
  color: var(--white);
  text-decoration: underline;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: var(--space-6);
  font-size: var(--text-xs);
  color: var(--stone);
  text-align: center;
}

/* ------------------------------------------------------------
   20. MOBILE STICKY CALL BAR
   ------------------------------------------------------------ */
.mobile-sticky-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--coral);
  height: 60px;
  padding-inline: var(--space-5);
  padding-bottom: env(safe-area-inset-bottom);
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 300ms ease, transform 300ms ease;
  pointer-events: none;
}
.mobile-sticky-cta.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.sticky-call {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  color: var(--white);
  font-weight: 600;
  font-size: var(--text-base);
  text-decoration: none;
  min-height: 60px;
  flex: 1;
}
.sticky-call:focus-visible {
  outline: 3px solid var(--white);
  outline-offset: -3px;
}

.sticky-offer {
  background: rgba(255,255,255,0.2);
  color: var(--white);
  font-size: var(--text-xs);
  font-weight: 700;
  padding: var(--space-1) var(--space-3);
  border-radius: 99px;
  white-space: nowrap;
}

/* ------------------------------------------------------------
   21. DIVIDERS & MISC
   ------------------------------------------------------------ */
.section-divider {
  height: 1px;
  background: var(--mist);
  margin-inline: auto;
  max-width: var(--max-w);
}

/* Strikethrough price */
del { text-decoration: line-through; color: var(--stone); }

/* ============================================================
   22. TABLET — min-width: 768px
   ============================================================ */
@media (min-width: 768px) {

  .section-h2  { font-size: var(--text-3xl); }
  .section { padding-block: var(--space-20); }

  /* Nav */
  .nav-links {
    display: flex;
    align-items: center;
    gap: var(--space-6);
  }
  .nav-links a {
    font-size: var(--text-sm);
    color: var(--mist);
    font-weight: 500;
    transition: color var(--transition);
  }
  .nav-links a:hover { color: var(--white); }

  /* Hero */
  .hero { padding-block: var(--space-20) var(--space-24); }
  .hero h1 { font-size: var(--text-4xl); }
  .hero-ctas {
    flex-direction: row;
    flex-wrap: wrap;
  }

  /* Trust strip */
  .trust-strip { gap: var(--space-6); }

  /* Founder */
  .founder-inner {
    flex-direction: row;
    align-items: flex-start;
    max-width: 100%;
    gap: var(--space-12);
  }
  .founder-photo-placeholder {
    width: 320px;
    flex-shrink: 0;
    max-height: none;
    aspect-ratio: 4/5;
  }
  .founder-bio-text { flex: 1; }

  /* Why It Matters — 2 col on tablet */
  .why-matters-cols {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: var(--space-10);
    align-items: start;
  }
  .education-visual-placeholder {
    margin-bottom: 0;
  }

  /* Process 2-col */
  .process-grid {
    grid-template-columns: 1fr 1fr;
  }

  /* Gallery cards */
  .gallery-cards {
    grid-template-columns: 1fr 1fr 1fr;
  }

  /* Trust cards 2-col */
  .trust-cards-grid {
    grid-template-columns: 1fr 1fr;
  }

  /* Service area 2-col */
  .service-area-cols {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: var(--space-10);
    align-items: start;
    margin-bottom: var(--space-6);
  }

  /* Footer 3-col */
  .footer-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }

  /* Hide sticky bar on tablet+ */
  .mobile-sticky-cta { display: none; }

  /* Final CTA */
  .final-cta h2 { font-size: var(--text-4xl); }
}

/* ============================================================
   23. DESKTOP — min-width: 1024px
   ============================================================ */
@media (min-width: 1024px) {

  .container { padding-inline: var(--space-8); }

  /* Hero */
  .hero-inner { max-width: 780px; }
  .hero h1 { font-size: var(--text-5xl); }
  .hero-subhead { font-size: var(--text-xl); }

  /* Pricing card wider */
  .pricing-card { padding: var(--space-12); }

  /* Process 2×4 grid */
  .process-grid { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   24. LARGE DESKTOP — min-width: 1280px
   ============================================================ */
@media (min-width: 1280px) {
  .container { padding-inline: var(--space-10); }
  .section { padding-block: var(--space-24); }
}

/* ============================================================
   25. PRINT — minimal styles
   ============================================================ */
@media print {
  .site-header,
  .mobile-sticky-cta,
  .hero-ctas,
  .final-cta { display: none; }
  body { font-size: 12pt; color: #000; }
  a[href]::after { content: " (" attr(href) ")"; font-size: 10pt; }
}
