/* ==========================================================================
   Little Stream Industries — landing page styles
   Single light theme, deliberately committed to. Colours are explicit so the
   page renders the same regardless of the visitor's OS theme.
   ========================================================================== */

:root {
  /* Colour — higher contrast than before, for a bolder modern read */
  --ink:        #0d1a17;  /* headings, body text */
  --ink-soft:   #465a55;  /* secondary text */
  --ink-faint:  #5e706c;  /* labels, meta (>=4.5:1 on --paper) */
  --paper:      #fbfaf7;  /* page background */
  --paper-alt:  #f2f1ec;  /* alternating section background */
  --card:       #ffffff;
  --rule:       #e4e1d8;  /* hairlines */

  --accent:     #0f6b5c;  /* primary green */
  --accent-dk:  #0a4f44;
  --accent-lt:  #e7f0ed;
  --accent-br:  #35d6ae;  /* bright green, dark backgrounds only */
  --clay:       #b6603a;  /* small warm highlight */

  --dark:       #0a1512;  /* hero / contact ground */
  --dark-2:     #0f201b;

  /* Type — one family, weight and size carry the hierarchy */
  --sans: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --serif: var(--sans);

  /* Layout */
  --wrap: 1140px;
  --gutter: 24px;
  --radius: 14px;

  color-scheme: light;
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3 {
  font-family: var(--sans);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.032em;
  margin: 0 0 .55em;
  text-wrap: balance;
}
h1 { font-size: clamp(2.35rem, 4.9vw, 3.55rem); }
h2 { font-size: clamp(2rem, 4vw, 2.9rem); }
h3 { font-size: 1.25rem; font-weight: 700; letter-spacing: -0.018em; }

p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

a { color: var(--accent-dk); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--accent); }

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

.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;
}

.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 200;
  background: var(--ink); color: #fff; padding: 10px 16px;
  border-radius: 0 0 8px 8px; text-decoration: none; font-weight: 500;
  transition: top .15s ease;
}
.skip-link:focus { top: 0; color: #fff; }

/* ── Layout helpers ───────────────────────────────────────── */
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.wrap-narrow { max-width: 760px; }

.section { padding-block: clamp(64px, 9vw, 118px); }
.section-alt { background: var(--paper-alt); border-block: 1px solid var(--rule); }

.section-head { max-width: 640px; margin: 0 auto clamp(36px, 5vw, 60px); text-align: center; }
.section-head-left { text-align: left; margin-inline: 0; margin-bottom: 0; }
.section-lede { color: var(--ink-soft); font-size: 1.05rem; }

.eyebrow {
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 .9em;
}
.eyebrow-light { color: var(--accent-br); }

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  --btn-bg: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55em;
  font: inherit;
  font-weight: 500;
  line-height: 1.2;
  padding: 16px 28px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-decoration: none;
  cursor: pointer;
  transition: background-color .15s ease, border-color .15s ease, color .15s ease, transform .1s ease;
}
.btn:active { transform: translateY(1px); }
.btn-sm { padding: 11px 20px; font-size: .94rem; }
.btn-block { width: 100%; }

.btn-primary { background: var(--accent); color: #fff; }
.btn-primary {
  box-shadow: 0 1px 2px rgba(10,21,18,.16), 0 10px 24px -12px rgba(15,107,92,.7);
}
.btn-primary:hover { background: var(--accent-dk); color: #fff; }

.btn-ghost { background: rgba(255,255,255,.06); color: #fff; border-color: rgba(255,255,255,.22); }
.btn-ghost:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.4); color: #fff; }

.btn-quiet { background: transparent; color: var(--ink-soft); border-color: transparent; padding-inline: 8px; }
.btn-quiet:hover { color: var(--ink); }

.btn-outline { background: transparent; color: var(--accent-dk); border-color: var(--accent); }
.btn-outline:hover { background: var(--accent-lt); color: var(--accent-dk); }

.ico { width: 19px; height: 19px; flex: none; }

.link-arrow {
  display: inline-flex; align-items: center; gap: .4em;
  font-weight: 500; text-decoration: none;
  color: var(--accent-dk);
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
}
.link-arrow span { transition: transform .15s ease; }
.link-arrow:hover span { transform: translateX(3px); }

/* ── Header ───────────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(251, 250, 247, .86);
  backdrop-filter: saturate(1.5) blur(12px);
  border-bottom: 1px solid var(--rule);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; min-height: 74px;
}

.brand { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; color: var(--ink); }
.brand-mark { width: 32px; height: 32px; color: var(--accent); flex: none; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name { font-weight: 800; font-size: 1.1rem; letter-spacing: -0.03em; white-space: nowrap; }
.brand-sub {
  font-size: .63rem; font-weight: 600; letter-spacing: .22em; text-transform: uppercase;
  color: var(--ink-faint); margin-top: 4px;
}

.header-actions { display: flex; align-items: center; gap: 10px; }
.header-phone {
  display: inline-flex; align-items: center; gap: 8px;
  text-decoration: none; color: var(--ink); font-weight: 600; font-size: .95rem;
  padding: 9px 14px; border-radius: 999px; border: 1px solid var(--rule);
  transition: border-color .15s ease, background-color .15s ease;
}
.header-phone svg { width: 16px; height: 16px; color: var(--accent); }
.header-phone:hover { background: #fff; border-color: var(--ink-faint); color: var(--ink); }

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--dark);
  color: #eaf2ef;
  padding-block: clamp(48px, 6.5vw, 86px) clamp(52px, 7vw, 92px);
}
.hero-glow {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(780px 520px at 78% 6%, rgba(53,214,174,.20) 0%, rgba(53,214,174,0) 62%),
    radial-gradient(620px 420px at 8% 92%, rgba(15,107,92,.28) 0%, rgba(15,107,92,0) 66%);
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, .88fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: center;
}
.hero .eyebrow {
  display: inline-block;
  color: var(--accent-br);
  background: rgba(53,214,174,.10);
  border: 1px solid rgba(53,214,174,.26);
  padding: 7px 14px; border-radius: 999px;
  font-size: .74rem; letter-spacing: .11em;
  margin-bottom: 22px;
}
.hero h1 { color: #fff; margin-bottom: .42em; }
.hero .lede {
  font-size: clamp(1.08rem, 1.55vw, 1.24rem);
  color: #a9bdb7;
  max-width: 46ch;
  line-height: 1.6;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.hero-phone { margin-top: 22px; font-size: .95rem; color: #8ba39d; }
.hero-phone a { font-weight: 700; color: #fff; text-decoration-color: var(--accent-br); }
.hero-phone a:hover { color: var(--accent-br); }

/* The value stack, as a glass card on the dark ground */
.hero-card {
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 18px;
  padding: clamp(26px, 3vw, 34px);
  backdrop-filter: blur(6px);
}
.hero-card-title {
  font-size: .74rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase; color: var(--accent-br);
  margin: 0 0 22px; padding-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,.11);
}
.check-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 18px; }
.check-list li {
  position: relative; padding-left: 32px;
  font-size: .96rem; color: #a9bdb7; line-height: 1.55;
}
.check-list li strong { color: #fff; font-weight: 700; display: block; margin-bottom: 2px; }
.check-list li::before {
  content: "";
  position: absolute; left: 0; top: .2em;
  width: 20px; height: 20px; border-radius: 7px;
  background: rgba(53,214,174,.14) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%2335d6ae' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round' d='M5 13l4.5 4.5L19 7'/%3E%3C/svg%3E") center / 12px no-repeat;
}

/* ── Services ─────────────────────────────────────────────── */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(20px, 3vw, 34px);
}
.service {
  background: var(--card);
  border: 1px solid var(--rule);
  border-radius: 20px;
  box-shadow: 0 1px 2px rgba(13,26,23,.03), 0 18px 40px -32px rgba(13,26,23,.4);
  padding: clamp(26px, 3.2vw, 38px);
  display: flex; flex-direction: column;
}
.service-head { display: flex; align-items: center; gap: 13px; margin-bottom: 14px; }
.service-ico {
  width: 46px; height: 46px; flex: none; padding: 11px;
  color: var(--accent); background: var(--accent-lt); border-radius: 13px;
}
.service-head h3 { margin: 0; font-size: 1.3rem; }
.service-lede { color: var(--ink-soft); font-size: 1rem; }
.service-list {
  list-style: none; margin: 22px 0 28px; padding: 0;
  display: grid; gap: 14px;
  border-top: 1px solid var(--rule); padding-top: 22px;
}
.service-list li { font-size: .96rem; color: var(--ink-soft); line-height: 1.55; }
.service-list li strong { color: var(--ink); font-weight: 600; }
.service .link-arrow { margin-top: auto; align-self: flex-start; }

/* ── Recent work (section is commented out in the HTML until there is
      real work to show; these styles are ready for when there is) ───── */
.work-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(20px, 3vw, 32px);
}
.work {
  background: var(--card);
  border: 1px solid var(--rule);
  border-radius: 14px;
  overflow: hidden;
  display: flex; flex-direction: column;
}
.work img {
  display: block; width: 100%; height: auto;
  aspect-ratio: 3 / 2; object-fit: cover; object-position: top center;
  border-bottom: 1px solid var(--rule);
  background: var(--paper-alt);
}
.work-body { padding: 22px 24px 26px; }
.work-body h3 { margin-bottom: .45em; }
.work-what { color: var(--ink-soft); font-size: .95rem; margin-bottom: .7em; }
.work-result {
  margin: 0; font-size: .95rem; font-weight: 500; color: var(--accent-dk);
}

.quote {
  margin: clamp(36px, 5vw, 56px) auto 0;
  max-width: 720px; text-align: center;
}
.quote blockquote {
  margin: 0 0 18px;
  font-family: var(--serif); font-size: clamp(1.25rem, 2.4vw, 1.6rem);
  line-height: 1.4; letter-spacing: -.01em; color: var(--ink);
}
.quote blockquote::before { content: "\201C"; }
.quote blockquote::after  { content: "\201D"; }
.quote figcaption { font-size: .92rem; color: var(--ink-faint); }
.quote figcaption strong { color: var(--ink-soft); font-weight: 600; }

/* ── Process ──────────────────────────────────────────────── */
.steps {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: clamp(24px, 3vw, 36px);
  counter-reset: step;
}
.step { padding-top: 4px; }
.step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; border-radius: 13px;
  background: var(--ink); color: var(--accent-br);
  font-size: .9rem; font-weight: 800; letter-spacing: -0.02em;
  margin-bottom: 18px;
}
.step h3 { margin-bottom: .5em; }
.step p { color: var(--ink-soft); font-size: .96rem; }

/* ── Pricing ──────────────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}
.pricing-grid .btn { margin-top: 10px; }
.cost-panel {
  background: var(--card); border: 1px solid var(--rule);
  border-radius: 20px; padding: clamp(24px, 3vw, 34px);
}
.cost-title {
  font-family: var(--sans); font-size: .8rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase; color: var(--ink-faint);
  margin: 0 0 20px;
}
.cost-list { margin: 0; display: grid; gap: 18px; }
.cost-list > div { padding-bottom: 18px; border-bottom: 1px solid var(--rule); }
.cost-list > div:last-child { padding-bottom: 0; border-bottom: 0; }
.cost-list dt { font-weight: 600; margin-bottom: 3px; }
.cost-list dd { margin: 0; color: var(--ink-soft); font-size: .95rem; }
.cost-note {
  margin-top: 22px; padding-top: 20px; border-top: 1px solid var(--rule);
  font-size: .92rem; color: var(--ink-faint);
}

/* Optional tier table (commented out in the HTML by default) */
.tier-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
.tier { background: var(--card); border: 1px solid var(--rule); border-radius: 14px; padding: 30px; }
.tier-price { font-family: var(--serif); font-size: 1.9rem; color: var(--ink); margin: 0 0 18px; }
.tier ul { list-style: none; margin: 0 0 24px; padding: 0; display: grid; gap: 10px; color: var(--ink-soft); font-size: .95rem; }

/* ── Repeated CTA band (Hormozi: one goal, restated) ─────── */
.cta-band {
  background: var(--dark);
  color: #eaf2ef;
  padding-block: clamp(34px, 4.5vw, 52px);
}
.cta-band-inner {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 18px 32px;
}
.cta-band-text {
  margin: 0;
  font-size: clamp(1.15rem, 2.2vw, 1.6rem);
  font-weight: 700; letter-spacing: -0.025em; color: #fff;
  max-width: 30ch;
}
.cta-band-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; }
.cta-band .btn-quiet { color: #a9bdb7; }
.cta-band .btn-quiet:hover { color: #fff; }

/* ── FAQ ──────────────────────────────────────────────────── */
.faq { border-top: 1px solid var(--rule); }
.faq details { border-bottom: 1px solid var(--rule); }
.faq summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: flex-start; justify-content: space-between; gap: 18px;
  padding: 20px 2px;
  font-weight: 600; font-size: 1.05rem; color: var(--ink);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; flex: none; width: 18px; height: 18px; margin-top: 5px;
  background: currentColor; color: var(--accent);
  transition: transform .2s ease;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23000' stroke-width='2.2' stroke-linecap='round' d='M12 5v14M5 12h14'/%3E%3C/svg%3E") center / contain no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23000' stroke-width='2.2' stroke-linecap='round' d='M12 5v14M5 12h14'/%3E%3C/svg%3E") center / contain no-repeat;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq summary:hover { color: var(--accent-dk); }
.faq-body { padding: 0 44px 22px 2px; color: var(--ink-soft); font-size: 1rem; }

/* ── Contact ──────────────────────────────────────────────── */
.section-contact {
  background: var(--dark);
  color: #e8eeec;
  padding-block: clamp(56px, 8vw, 100px);
}
.section-contact h2 { color: #fff; }
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(34px, 5vw, 68px);
  align-items: start;
}
.contact-lede { color: #b6c5c1; font-size: 1.05rem; max-width: 42ch; }

.contact-methods { list-style: none; margin: 34px 0 0; padding: 0; display: grid; gap: 0; }
.contact-methods li {
  display: flex; flex-wrap: wrap; align-items: baseline; gap: 4px 16px;
  padding: 15px 0; border-top: 1px solid rgba(255,255,255,.13);
}
.contact-methods li:last-child { border-bottom: 1px solid rgba(255,255,255,.13); }
.contact-label {
  flex: none; width: 96px;
  font-size: .74rem; letter-spacing: .12em; text-transform: uppercase; color: #7f938e;
}
.contact-value { color: #fff; font-weight: 500; text-decoration-color: rgba(255,255,255,.4); }
.contact-value:hover { color: #86c3b5; }
.contact-value-plain { font-weight: 400; color: #cdd9d6; }

.contact-form {
  background: var(--card);
  color: var(--ink);
  border-radius: 22px;
  padding: clamp(24px, 3.2vw, 36px);
}
.form-title {
  font-size: 1.15rem; margin: 0 0 22px; padding-bottom: 16px;
  border-bottom: 1px solid var(--rule);
}
.field { margin-bottom: 18px; border: 0; padding: 0; min-width: 0; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field label, .field legend {
  display: block; font-size: .9rem; font-weight: 500;
  margin-bottom: 7px; color: var(--ink); padding: 0;
}
.req { color: var(--clay); }
.field input, .field textarea {
  width: 100%; font: inherit; font-size: 1rem; color: var(--ink);
  padding: 11px 13px;
  background: #fdfdfb;
  border: 1px solid var(--rule); border-radius: 8px;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field input:focus, .field textarea:focus {
  outline: none; border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-lt);
}
.field textarea { resize: vertical; min-height: 96px; }
.field input[aria-invalid="true"], .field textarea[aria-invalid="true"] { border-color: #b23b2c; }
.field-error { margin: 6px 0 0; font-size: .86rem; color: #a4372a; }

.choices { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 8px 16px; }
.choice { display: flex; align-items: center; gap: 9px; margin: 0; font-weight: 400; cursor: pointer; }
.choice input { width: auto; accent-color: var(--accent); width: 17px; height: 17px; }

.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form-note { margin: 14px 0 0; font-size: .87rem; color: var(--ink-faint); text-align: center; }
.form-status { margin: 14px 0 0; font-size: .95rem; font-weight: 500; text-align: center; }
.form-status.is-ok { color: var(--accent-dk); }
.form-status.is-bad { color: #a4372a; }
.form-status:empty { margin: 0; }

/* ── Footer ───────────────────────────────────────────────── */
.site-footer { background: var(--paper-alt); border-top: 1px solid var(--rule); padding-top: 52px; }
.footer-inner {
  display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: 32px; padding-bottom: 40px;
}
.footer-brand .brand-name { display: block; font-size: 1.1rem; margin-bottom: 10px; }
.footer-brand p { color: var(--ink-soft); font-size: .94rem; max-width: 34ch; }
.footer-nav, .footer-contact { display: grid; gap: 10px; align-content: start; }
.footer-nav a, .footer-contact a { text-decoration: none; color: var(--ink-soft); font-size: .94rem; }
.footer-nav a:hover, .footer-contact a:hover { color: var(--accent-dk); text-decoration: underline; }
.footer-base {
  display: flex; flex-wrap: wrap; gap: 10px 24px; justify-content: space-between;
  border-top: 1px solid var(--rule); padding-block: 20px 26px;
  font-size: .87rem; color: var(--ink-faint);
}
.footer-base p { margin: 0; }
.footer-base a { color: var(--ink-faint); }

/* ── Sticky call button (small screens only) ───────────────── */
.call-fab {
  display: none;
  position: fixed; right: 16px; bottom: 16px; z-index: 90;
  align-items: center; gap: 8px;
  background: var(--accent); color: #fff;
  padding: 13px 20px; border-radius: 999px;
  font-weight: 500; font-size: .97rem; text-decoration: none;
  box-shadow: 0 8px 22px -8px rgba(17,34,31,.5);
}
.call-fab:hover { background: var(--accent-dk); color: #fff; }
.call-fab svg { width: 19px; height: 19px; }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 960px) {
  .hero-grid, .pricing-grid, .contact-grid { grid-template-columns: 1fr; }
  .section-head-left { text-align: left; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .cta-band-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 760px) {
  body { font-size: 16.5px; }
  html { scroll-padding-top: 78px; }

  /* Header keeps the one goal: the quote button never leaves the screen.
     Everything else shrinks so it always fits on one row at 360px up. */
  .header-inner { gap: 8px; min-height: 64px; }
  .header-actions { gap: 8px; }
  .header-phone span { display: none; }
  .header-phone { padding: 10px; border-radius: 12px; }
  .header-phone svg { width: 18px; height: 18px; }
  .brand-sub { display: none; }
  .brand { gap: 8px; }
  .brand-mark { width: 26px; height: 26px; }
  .brand-name { font-size: .98rem; }
  .header-actions .btn-sm { padding: 10px 15px; font-size: .86rem; white-space: nowrap; }

  .lede { max-width: none; }
  .hero-actions .btn { flex: 1 1 auto; justify-content: center; }
  .hero-card { padding: 24px 20px; }
  .cta-band-actions { width: 100%; }
  .cta-band-actions .btn-primary { flex: 1 1 auto; justify-content: center; }

  .field-row { grid-template-columns: 1fr; }
  .faq-body { padding-right: 8px; }
  .call-fab { display: inline-flex; }
  body { padding-bottom: 76px; }
  .footer-inner { grid-template-columns: 1fr; }
}

@media (max-width: 420px) {
  .btn { padding: 15px 20px; }
}

@media print {
  .site-header, .call-fab, .contact-form, .cta-band { display: none !important; }
  body { font-size: 11pt; }
  .section-contact { background: #fff; color: #000; }
}
