/* ==========================================================================
   San Diego Turf Rescue — brand rebuild
   Palette pulled from the badge logo: deep navy, lime green, white.
   Display type: Anton (athletic, condensed). Body: Archivo.
   ========================================================================== */

:root {
  /* logo palette */
  --navy-950: #0d1733;
  --navy-900: #14224d;
  --navy-800: #1b2e5e;
  --navy-700: #24407a;
  --navy-100: #dbe3f2;
  --navy-50: #eef2f9;
  --lime: #a6ce39;
  --lime-bright: #b6e04a;
  --lime-deep: #5c7a10;      /* AA-safe lime for text on light backgrounds */
  --white: #ffffff;
  --paper: #eaf0f8;
  --ink: #14224d;
  --body: #3e4a63;
  --muted: #5c6a85;
  --line: #dde4ef;
  --card-line: #c7d3e6;
  --line-strong: #7f8ea8;    /* form-control borders: >=3:1 on white */
  --error: #b23a32;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 10px 30px rgba(13, 23, 51, 0.12);
  --shadow-lg: 0 24px 60px rgba(13, 23, 51, 0.2);
  --font-display: "Anton", "Archivo", system-ui, sans-serif;
  --font-body: "Archivo", system-ui, -apple-system, sans-serif;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 5.5rem; }

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

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

h1, h2, h3, h4 { color: var(--ink); margin: 0 0 0.6em; }

h1, h2 {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1.04;
}
h1 { font-size: clamp(2.8rem, 7vw, 5rem); }
h2 { font-size: clamp(1.9rem, 3.8vw, 2.7rem); }
h3 { font-family: var(--font-body); font-weight: 800; font-size: 1.22rem; line-height: 1.25; }
h4 { font-family: var(--font-body); font-weight: 800; font-size: 1.02rem; }

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

a { color: var(--navy-700); }
a:hover { color: var(--navy-900); }

code {
  font-size: 0.88em;
  background: rgba(20, 34, 77, 0.08);
  border-radius: 5px;
  padding: 0.1em 0.4em;
}

ul[role="list"], ol[role="list"] { list-style: none; margin: 0; padding: 0; }

.container { width: min(1160px, 100% - 3rem); margin-inline: auto; }

.section { padding: clamp(2.75rem, 5.5vw, 4.25rem) 0; }
.section-tint { background: var(--paper); }
/* every light section gets the tinted canvas so white cards pop */
.services, .how, .schedule, .faq { background: var(--paper); }

.section-head { max-width: 680px; margin-bottom: clamp(1.5rem, 3.5vw, 2.25rem); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--lime-deep);
  margin: 0 0 0.8rem;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 4px;
  background: var(--lime);
  border-radius: 2px;
}

.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: -999px; top: 0; z-index: 200;
  background: var(--navy-900); color: var(--white);
  padding: 0.6rem 1rem; border-radius: 0 0 var(--radius-sm) 0;
}
.skip-link:focus { left: 0; color: var(--white); }

/* shared side-photo treatment */
.side-photo { margin: 0; }
.side-photo img {
  width: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  border: 5px solid var(--white);
  box-shadow: var(--shadow-lg);
}

/* ---------- buttons ---------- */

.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-align: center;
  border-radius: 10px;
  padding: 0.8rem 1.6rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:focus-visible { outline: 3px solid var(--lime); outline-offset: 2px; }

.btn-lg { padding: 1rem 2rem; font-size: 1rem; }
.btn-block { display: block; width: 100%; }
.btn-nav { padding: 0.6rem 1.2rem; font-size: 0.85rem; }

.btn-lime {
  background: linear-gradient(180deg, var(--lime-bright), var(--lime));
  color: var(--navy-900);
  box-shadow: 0 6px 20px rgba(166, 206, 57, 0.35);
}
.btn-lime:hover { box-shadow: 0 12px 30px rgba(166, 206, 57, 0.5); color: var(--navy-950); }

.btn-navy { background: var(--navy-900); color: var(--white); }
.btn-navy:hover { background: var(--navy-800); color: var(--white); box-shadow: var(--shadow); }

.btn-outline { background: transparent; color: var(--navy-900); border-color: var(--navy-900); }
.btn-outline:hover { background: var(--navy-900); color: var(--white); }

.btn-ghost { background: rgba(255, 255, 255, 0.06); color: var(--white); border-color: rgba(255, 255, 255, 0.5); }
.btn-ghost:hover { border-color: var(--lime); color: var(--lime-bright); }

/* ---------- header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.55rem 0;
}

.logo { display: flex; align-items: center; gap: 0.7rem; text-decoration: none; }
.logo img { width: 64px; height: 64px; object-fit: contain; }
.logo-text {
  font-family: var(--font-display);
  font-size: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--navy-900);
  line-height: 1;
}
.logo-text small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  color: var(--lime-deep);
  margin-bottom: 0.2rem;
}

.main-nav { display: flex; align-items: center; gap: 1.4rem; }
.main-nav a:not(.btn) {
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  color: var(--navy-900);
}
.main-nav a:not(.btn):hover { color: var(--lime-deep); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px; padding: 10px;
  background: none; border: 0; cursor: pointer;
}
.nav-toggle span { height: 3px; border-radius: 2px; background: var(--navy-900); transition: transform 0.2s ease, opacity 0.2s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- hero ---------- */

.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: min(92svh, 820px);
  background:
    linear-gradient(90deg, rgba(13, 23, 51, 0.9) 0%, rgba(13, 23, 51, 0.62) 38%, rgba(13, 23, 51, 0.12) 66%, rgba(13, 23, 51, 0) 100%),
    url("assets/photos/hero-wide.jpg") right center / cover no-repeat,
    var(--navy-900);
  color: var(--white);
  overflow: hidden;
}

.hero-inner {
  position: relative;
  padding: clamp(3rem, 6vw, 4.5rem) 0 clamp(2.5rem, 5vw, 3.5rem);
}

.hero-copy { max-width: 620px; }

.hero-badge { margin-bottom: 1.3rem; }
.hero-badge img {
  width: clamp(100px, 12vw, 136px);
  height: auto;
  background: var(--white);
  border-radius: 20px;
  padding: 9px;
  box-shadow: 0 0 0 4px rgba(166, 206, 57, 0.5), 0 16px 38px rgba(3, 8, 20, 0.5);
}

.kicker {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--lime-bright);
  background: rgba(13, 23, 51, 0.55);
  border: 1px solid rgba(166, 206, 57, 0.4);
  border-radius: 999px;
  padding: 0.45rem 1rem;
  margin: 0 0 1.4rem;
  backdrop-filter: blur(6px);
}

.hero h1 { color: var(--white); margin-bottom: 0.35em; text-shadow: 0 4px 30px rgba(3, 8, 20, 0.5); }

.word-swap {
  display: inline-block;
  transition: opacity 0.24s ease, transform 0.24s ease;
}
.word-swap.swap-out {
  opacity: 0;
  transform: translateY(0.3em);
}

.hero-ball {
  width: 0.5em;
  height: 0.5em;
  display: inline-block;
  margin-left: 0.14em;
  vertical-align: 0.03em;
  filter: drop-shadow(0 6px 14px rgba(3, 8, 20, 0.45));
  animation: ball-bounce 3s cubic-bezier(0.45, 0, 0.55, 1) infinite;
}
@keyframes ball-bounce {
  0%, 55%, 100% { transform: translateY(0); }
  20% { transform: translateY(-0.24em); }
  38% { transform: translateY(0) scale(1.06, 0.92); }
  44% { transform: scale(0.98, 1.03); }
}
.hero h1 .lime {
  color: var(--lime);
  text-shadow: 0 4px 30px rgba(166, 206, 57, 0.3);
}

.hero-sub {
  font-size: 1.15rem;
  color: #dce4f2;
  max-width: 34rem;
  margin-bottom: 1.8rem;
  text-shadow: 0 2px 16px rgba(3, 8, 20, 0.6);
}

.hero-ctas { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-bottom: 1.8rem; }

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: #dce4f2;
}
.hero-trust li {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(13, 23, 51, 0.55);
  border: 1px solid rgba(183, 197, 224, 0.3);
  border-radius: 999px;
  padding: 0.4rem 0.95rem;
  backdrop-filter: blur(6px);
}
.hero-trust li::before { content: "✓"; content: "✓" / ""; font-weight: 800; color: var(--lime); }

/* ---------- stripe divider ---------- */

.stripe-band {
  height: 12px;
  background: repeating-linear-gradient(
    -55deg,
    var(--lime) 0 26px,
    var(--navy-900) 26px 52px
  );
}

/* ---------- pain ---------- */

.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.pain-grid li {
  background: var(--white);
  border: 1px solid var(--card-line);
  border-left: 5px solid var(--lime);
  border-radius: var(--radius-sm);
  padding: 1.15rem 1.3rem;
  font-weight: 600;
  color: var(--ink);
  box-shadow: 0 6px 16px rgba(13, 23, 51, 0.08);
}
.pain { background: var(--paper); }

/* ---------- truth band ---------- */

.truth {
  background:
    radial-gradient(50rem 25rem at 15% 100%, rgba(166, 206, 57, 0.14), transparent 60%),
    var(--navy-900);
  color: #ccd7ec;
  padding: clamp(2.75rem, 5.5vw, 4.25rem) 0;
}
.truth-inner { max-width: 800px; text-align: center; margin-inline: auto; }
.truth-big {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 5vw, 3.4rem);
  text-transform: uppercase;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 1.2rem;
}
.truth-big b { color: var(--lime); }

/* ---------- services ---------- */

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  align-items: start;
}

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--card-line);
  border-top: 6px solid var(--navy-900);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: 0 14px 34px rgba(13, 23, 51, 0.14);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 48px rgba(13, 23, 51, 0.2), 0 0 0 3px rgba(166, 206, 57, 0.4);
}

.service-card-featured {
  background: linear-gradient(170deg, var(--navy-800), var(--navy-900));
  border: 1px solid var(--navy-700);
  border-top: 6px solid var(--lime);
  box-shadow: 0 18px 48px rgba(13, 23, 51, 0.32), 0 0 0 3px rgba(166, 206, 57, 0.45);
}
.service-card-featured:hover {
  box-shadow: 0 26px 60px rgba(13, 23, 51, 0.38), 0 0 0 4px rgba(166, 206, 57, 0.6);
}
.service-card-featured h3, .service-card-featured .service-price strong { color: var(--white); }
.service-card-featured .service-for { color: #b7c5e0; }
.service-card-featured ul li { color: #ccd7ec; }
.service-card-featured .service-price { color: #b7c5e0; border-color: var(--navy-700); }

.featured-badge {
  position: absolute;
  top: -1rem;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(180deg, var(--lime-bright), var(--lime));
  color: var(--navy-950);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.35rem 1rem;
  border-radius: 999px;
  white-space: nowrap;
}

.service-card h3 { margin-bottom: 0.25rem; }

.service-for { font-size: 0.88rem; color: var(--muted); min-height: 2.6em; margin-bottom: 0.75rem; }

.service-price {
  font-size: 0.9rem;
  color: var(--muted);
  border-bottom: 1px dashed var(--line);
  padding-bottom: 0.9rem;
  margin-bottom: 0.9rem;
}
.service-price strong {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 2.35rem;
  letter-spacing: 0.01em;
  color: var(--navy-900);
  margin-left: 0.25rem;
}
.service-price .per { font-size: 0.9rem; }

.service-card ul { flex-grow: 1; margin-bottom: 1.25rem; }
.service-card ul li { display: flex; gap: 0.55rem; padding: 0.28rem 0; font-size: 0.94rem; }
.service-card ul li::before {
  content: "✚";
  content: "✚" / "";
  color: var(--lime-deep);
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 2;
}
.service-card-featured ul li::before { color: var(--lime); }

/* ---------- add-ons ---------- */

.addons { margin-top: 3.5rem; }
.addons > h3 { margin-bottom: 1.25rem; }

.addon-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }

.addon {
  background: var(--white);
  border: 1px solid var(--card-line);
  border-left: 5px solid var(--lime);
  border-radius: var(--radius-sm);
  padding: 1.25rem;
  box-shadow: 0 6px 18px rgba(13, 23, 51, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.addon:hover { transform: translateY(-3px); box-shadow: 0 12px 28px rgba(13, 23, 51, 0.14); }
.addon h4 { margin-bottom: 0.35rem; }
.addon p { font-size: 0.92rem; }
.addon-price {
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  color: var(--lime-deep);
  margin-top: 0.6rem;
}

.pricing-note { margin-top: 1.5rem; font-size: 0.9rem; color: var(--muted); }

/* ---------- photo gallery ---------- */

.gallery {
  background:
    radial-gradient(55rem 28rem at 90% 0%, rgba(36, 64, 122, 0.5), transparent 60%),
    var(--navy-900);
}
.gallery .section-head h2 { color: var(--white); }
.gallery .section-head p { color: #ccd7ec; }
.gallery .eyebrow { color: var(--lime-bright); }
.gallery code { background: rgba(255, 255, 255, 0.12); color: var(--lime-bright); }

.shot-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}

.shot {
  position: relative;
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--navy-800);
  border: 1px solid var(--navy-700);
  aspect-ratio: 4 / 3;
}
.shot-wide { grid-column: 1 / -1; aspect-ratio: 21 / 7; }

.shot img { width: 100%; height: 100%; object-fit: cover; }

.shot-tag {
  position: absolute;
  top: 0.8rem;
  left: 0.8rem;
  z-index: 2;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
}
.tag-before { background: var(--navy-950); color: var(--white); border: 1px solid var(--navy-700); }
.tag-after { background: var(--lime); color: var(--navy-950); }
.tag-crew { background: var(--white); color: var(--navy-900); }

.shot figcaption { display: none; }

/* empty slot state — until real photos are dropped into assets/photos/ */
.shot.empty img { display: none; }
.shot.empty {
  border: 2px dashed rgba(166, 206, 57, 0.5);
  background:
    radial-gradient(18rem 10rem at 50% 0%, rgba(166, 206, 57, 0.08), transparent 70%),
    var(--navy-800);
  display: flex;
  align-items: center;
  justify-content: center;
}
.shot.empty figcaption {
  display: block;
  text-align: center;
  color: #b7c5e0;
  font-size: 0.92rem;
  font-weight: 600;
  padding: 1rem;
}
.shot.empty figcaption::before {
  content: "📷";
  content: "📷" / "";
  display: block;
  font-size: 1.9rem;
  margin-bottom: 0.4rem;
}

.gallery-note { margin-top: 1.4rem; font-size: 0.9rem; color: #b7c5e0; }

/* ---------- how it works ---------- */

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.step {
  background: var(--white);
  border: 1px solid var(--card-line);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: 0 8px 20px rgba(13, 23, 51, 0.09);
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 10px;
  background: var(--navy-900);
  color: var(--lime);
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.step h3 { font-size: 1.05rem; }
.step p { font-size: 0.93rem; }

/* ---------- who we help ---------- */

.who-head-split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  margin-bottom: clamp(2rem, 5vw, 3rem);
}
.who-head-split .section-head { margin-bottom: 0; }

.who-photo { margin: 0; }
.who-photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border: 5px solid var(--white);
}

.who-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }

.who-card {
  background: var(--white);
  border: 1px solid var(--card-line);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: 0 8px 20px rgba(13, 23, 51, 0.09);
}
.who-card h3 { font-size: 1.05rem; color: var(--navy-800); }
.who-card p { font-size: 0.95rem; }
.who-link a { font-weight: 700; font-size: 0.9rem; text-decoration: none; color: var(--lime-deep); }
.who-link a:hover { color: var(--navy-900); text-decoration: underline; }

/* ---------- schedule ---------- */

.schedule-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.schedule-copy .btn { margin-top: 0.5rem; }

.schedule-photo { margin: 1.75rem 0 0; }
.schedule-photo img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center 70%;
  border-radius: var(--radius);
  border: 5px solid var(--white);
  box-shadow: var(--shadow);
}

.schedule-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border: 1px solid var(--card-line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.schedule-table th, .schedule-table td {
  text-align: left;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--line);
}
.schedule-table thead th {
  background: var(--navy-900);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.schedule-table thead th:first-child { box-shadow: inset 0 -4px 0 var(--lime); }
.schedule-table thead th:last-child { box-shadow: inset 0 -4px 0 var(--lime); }
.schedule-table tbody tr:last-child td { border-bottom: 0; }
.schedule-table td:last-child { font-weight: 700; color: var(--lime-deep); }

/* ---------- honesty ---------- */

.honesty-split {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
}
.honesty-split .side-photo img { aspect-ratio: 3 / 4; max-height: 560px; }

.honesty-card {
  background: var(--white);
  border: 1px solid var(--card-line);
  border-top: 5px solid var(--navy-900);
  border-radius: var(--radius);
  padding: clamp(1.6rem, 4vw, 2.6rem);
  box-shadow: var(--shadow);
}

.honesty-note {
  background: rgba(166, 206, 57, 0.14);
  border-left: 4px solid var(--lime);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 1.1rem 1.4rem;
  color: var(--ink);
  font-weight: 600;
}

/* ---------- service area ---------- */

.area { background: var(--navy-900); }
.area .section-head h2 { color: var(--white); }
.area .section-head p { color: #ccd7ec; }
.area .eyebrow { color: var(--lime-bright); }

.area-list { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.area-list li {
  background: var(--navy-800);
  border: 1px solid var(--navy-700);
  color: #ccd7ec;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.45rem 1rem;
  border-radius: 999px;
}
.area-note { margin-top: 1.5rem; font-size: 0.95rem; color: #b7c5e0; }
.area-note a { color: var(--lime-bright); }
.area-note a:hover { color: var(--white); }

/* ---------- FAQ ---------- */

.faq-inner { max-width: 820px; }

.faq-list details {
  background: var(--white);
  border: 1px solid var(--card-line);
  border-radius: var(--radius-sm);
  margin-bottom: 0.75rem;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(13, 23, 51, 0.06);
}
.faq-list summary {
  font-weight: 800;
  font-size: 1.02rem;
  color: var(--ink);
  padding: 1.1rem 3rem 1.1rem 1.4rem;
  cursor: pointer;
  list-style: none;
  position: relative;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  content: "+" / "";
  position: absolute;
  right: 1.4rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--lime-deep);
  transition: transform 0.2s ease;
}
.faq-list details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-list summary:hover { color: var(--navy-700); }
.faq-list details p { padding: 0 1.4rem 1.2rem; font-size: 0.97rem; }

/* ---------- quote form ---------- */

.quote-inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.quote-points li { display: flex; gap: 0.6rem; padding: 0.3rem 0; font-weight: 600; color: var(--ink); }
.quote-points li::before { content: "✓"; content: "✓" / ""; color: var(--lime-deep); font-weight: 800; }

.quote-contact { margin-top: 1.5rem; font-size: 0.95rem; }

.quote-photo { margin: 2rem 0 0; }
.quote-photo img {
  width: 100%;
  max-width: 380px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 70% 70%;
  border-radius: var(--radius);
  border: 5px solid var(--white);
  box-shadow: var(--shadow-lg);
}

.quote-form {
  background: var(--white);
  border: 1px solid var(--card-line);
  border-top: 5px solid var(--lime);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 4vw, 2.25rem);
  box-shadow: var(--shadow);
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.field { margin-bottom: 1rem; }

.field label {
  display: block;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--ink);
  margin-bottom: 0.35rem;
}
.field label span { color: var(--error); }

.field input, .field select, .field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 0.98rem;
  color: var(--ink);
  background: var(--paper);
  border: 1.5px solid var(--line-strong);
  border-radius: var(--radius-sm);
  padding: 0.7rem 0.9rem;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.field textarea { resize: vertical; }

.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--navy-700);
  box-shadow: 0 0 0 3px rgba(166, 206, 57, 0.3);
}

.field input.field-error, .field select.field-error {
  border-color: var(--error);
  box-shadow: 0 0 0 3px rgba(178, 58, 50, 0.15);
}

.quote-form .btn { margin-top: 0.5rem; }

.form-fineprint { font-size: 0.82rem; color: var(--muted); text-align: center; margin-top: 0.9rem; }

.form-status { margin-top: 0.75rem; text-align: center; font-weight: 700; }
.form-status.success { color: var(--lime-deep); }
.form-status.error { color: var(--error); }

/* ---------- footer ---------- */

.site-footer {
  background: var(--navy-950);
  color: #b7c5e0;
  padding: 2.75rem 0 1.75rem;
  font-size: 0.95rem;
}

.footer-badge {
  text-align: center;
  padding-bottom: 2.5rem;
  margin-bottom: 2.5rem;
  border-bottom: 1px solid var(--navy-800);
}
.footer-badge img {
  width: 190px;
  height: 190px;
  object-fit: contain;
  margin: 0 auto 1rem;
  background: var(--white);
  border-radius: 24px;
  padding: 12px;
  box-shadow: 0 0 0 5px rgba(166, 206, 57, 0.4), var(--shadow-lg);
}
.footer-badge p {
  font-family: var(--font-display);
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--white);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--navy-800);
}

.footer-brand a { color: var(--lime-bright); }
.footer-brand a:hover { color: var(--white); }

.footer-links h3 {
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.9rem;
}
.footer-links li { padding: 0.22rem 0; }
.footer-links a { color: #b7c5e0; text-decoration: none; }
.footer-links a:hover { color: var(--lime-bright); }

.footer-legal { padding-top: 1.5rem; font-size: 0.8rem; color: #8ea0bf; }
.footer-legal p { max-width: 72ch; }
.footer-legal a { color: #b7c5e0; }
.footer-legal a:hover { color: var(--lime-bright); }

/* ---------- reveal ---------- */

.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.55s ease, transform 0.55s ease; }
.reveal.revealed { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn, .service-card { transition: none; }
  .hero-ball { animation: none; }
  .word-swap { transition: none; }
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 960px) {
  .who-head-split { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .pain-grid { grid-template-columns: 1fr 1fr; }
  .addon-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .who-grid { grid-template-columns: 1fr 1fr; }
  .shot-grid { grid-template-columns: 1fr 1fr; }
  .shot-wide { aspect-ratio: 16 / 7; }
  .schedule-inner { grid-template-columns: 1fr; }
  .quote-inner { grid-template-columns: 1fr; }
  .quote-photo { display: none; }
  .honesty-split { grid-template-columns: 1fr; }
  .honesty-split .side-photo { order: -1; }
  .honesty-split .side-photo img { aspect-ratio: 16 / 9; max-height: none; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 840px) {
  .nav-toggle { display: flex; }

  .main-nav {
    display: none;
    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);
    padding: 0.5rem 1.5rem 1.25rem;
  }
  .main-nav.open { display: flex; }
  .main-nav a:not(.btn) { padding: 0.85rem 0; border-bottom: 1px solid var(--line); }
  .btn-nav { margin-top: 1rem; }
}

@media (max-width: 640px) {
  .hero {
    background:
      linear-gradient(180deg, rgba(13, 23, 51, 0.88) 0%, rgba(13, 23, 51, 0.55) 45%, rgba(13, 23, 51, 0.25) 75%, rgba(13, 23, 51, 0.6) 100%),
      url("assets/photos/hero-tall.jpg") center top / cover no-repeat,
      var(--navy-900);
  }
  .service-grid, .pain-grid, .addon-grid, .steps, .who-grid { grid-template-columns: 1fr; }
  .shot-grid { grid-template-columns: 1fr; }
  .shot-wide { aspect-ratio: 4 / 3; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .footer-inner { grid-template-columns: 1fr; gap: 1.75rem; }
  .footer-badge img { width: 150px; height: 150px; }
  .service-for { min-height: 0; }
}
