/* ============================================================
   Mobile Axe — home page (/)
   Phase 1: brand-aware section styles. Layout largely matches
   the Phase 0 home so existing content still flows; the new
   look comes from the upgraded tokens, components, and a few
   surgical tightenings here.
   ============================================================ */

/* ----------------------------- Hero ----------------------------- */

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  padding: 120px var(--hero-pad-x) 56px;
  color: #fff;
  overflow: hidden;
  background:
    linear-gradient(115deg, rgba(15, 26, 20, 0.92) 0%, rgba(15, 26, 20, 0.55) 55%, rgba(15, 26, 20, 0.18) 100%),
    url("../../site-photos/mobile-axe-trailer-hero.jpg") center / cover no-repeat;
  isolation: isolate;
}

/* Subtle texture grain over hero */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse at top right, rgba(197, 140, 42, 0.18), transparent 60%),
    radial-gradient(ellipse at bottom left, rgba(15, 26, 20, 0.4), transparent 70%);
  z-index: 0;
}

.hero > * { position: relative; z-index: 1; }

.hero-content {
  max-width: 920px;
  display: grid;
  gap: 18px;
}

.hero h1 {
  color: #fff;
  letter-spacing: -0.02em;
}

/* The "axe throwing" emphasis in the hero h1.
   Previously used background-clip: text + color: transparent for a
   gradient-text effect, but the .ma-word entrance-animation spans
   nested inside the <em> lost the gradient background — leaving the
   text invisible. Using a solid bright gold instead. The nested
   .ma-word spans inherit the color cleanly and animate in normally. */
.hero h1 em {
  font-style: normal;
  color: #f1c87a;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.45);
}
.hero h1 em .ma-word {
  /* Belt-and-suspenders: explicitly inherit the gold color even when
     the .ma-word wrapper gets injected by motion.js. */
  color: #f1c87a;
}

.hero p {
  max-width: 680px;
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  line-height: 1.55;
}

.hero .hero-meta {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 700;
}

.hero .hero-meta a {
  text-decoration: none;
}

.hero .hero-meta a:hover { color: var(--gold); }

.hero .hero-meta-divider {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
}

/* ----------------------------- Urgency strip ----------------------------- */

.urgency-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  padding: 0;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.urgency-strip div {
  padding: 22px clamp(20px, 3vw, 36px);
  background: var(--paper);
}

.urgency-strip strong {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: -0.005em;
}

.urgency-strip span {
  color: var(--muted);
  line-height: 1.5;
  font-size: 14px;
}

/* ----------------------------- Intro band + stat grid ----------------------------- */

.intro-band {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 36px;
  align-items: start;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.stat-grid,
.event-grid,
.package-grid,
.proof-grid,
.faq,
.gallery,
.landing-grid {
  display: grid;
  gap: 14px;
}

.stat-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.stat {
  border-left: 3px solid var(--gold);
  padding: 6px 0 6px 14px;
}

.stat strong {
  display: block;
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--ink);
}

.stat span {
  color: var(--muted);
  font-size: 14px;
}

/* ----------------------------- Hero ticker ----------------------------- */

.hero-ticker {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 36px;
  padding: 10px 14px;
  background: rgba(15, 26, 20, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--r-pill);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  max-width: 700px;
  overflow: hidden;
}
.hero-ticker .ticker-label {
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.hero-ticker .ticker-label::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  animation: ticker-pulse 1800ms ease-in-out infinite;
}
@keyframes ticker-pulse {
  0%, 100% { opacity: 0.4; transform: scale(0.85); }
  50% { opacity: 1; transform: scale(1.1); }
}
.hero-ticker .ticker-track {
  flex: 1;
  min-width: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 13.5px;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: opacity 320ms ease;
}
.hero-ticker .ticker-track[data-state="fading"] { opacity: 0; }

/* ----------------------------- Event grid ----------------------------- */

.event-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 30px;
  gap: 16px;
}

.event-grid-6 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.event-card .card-tag {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  background: var(--gold);
  color: var(--ink);
  border-radius: var(--r-pill);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.event-card {
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
  border-radius: var(--r-card);
  padding: 22px;
  color: #fff;
  background: var(--ink-2);
  isolation: isolate;
}

.event-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(15, 26, 20, 0.84));
  z-index: 0;
}

.event-card > * { position: relative; z-index: 1; }
.event-card h3 { color: #fff; font-size: 1.4rem; }
.event-card p { color: rgba(255, 255, 255, 0.85); margin-top: 8px; }

.card-link {
  align-self: flex-start;
  margin-top: 14px;
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: var(--r-pill);
  padding: 0 14px;
  background: rgba(255, 255, 255, 0.10);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 160ms ease, border-color 160ms ease;
}

.card-link:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
}

.card-link::after { content: "→"; }

.corporate { background: url("../../site-photos/group-axe-coaching.jpg") center / cover; }
.private { background: url("../../site-photos/private-party-throwing.jpg") center / cover; }
.venues { background: url("../../site-photos/venue-gathering.jpg") center / cover; }
.apartments { background: url("../../site-photos/venue-gathering.jpg") center 30% / cover; }
.breweries { background: url("../../site-photos/mobile-axe-trailer-hero.jpg") center 65% / cover; }
.weddings { background: url("../../site-photos/private-party-throwing.jpg") center 35% / cover; }
.festivals { background: url("../../site-photos/group-axe-coaching.jpg") center 35% / cover; }

/* ----------------------------- Process / split ----------------------------- */

.split {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
  gap: 40px;
  align-items: start;
}

.split > .media {
  position: sticky;
  top: calc(var(--nav-h) + 24px);
  min-height: 540px;
  border-radius: var(--r-card);
  background: url("../../site-photos/axe-target-detail.jpg") center / cover;
  box-shadow: var(--shadow-2);
  overflow: hidden;
}

.split > .media::after {
  content: "";
  position: absolute;
  inset: auto 16px 16px 16px;
  height: 56px;
  border-radius: var(--r-card);
  background:
    linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(15,26,20,0.85) 100%);
  pointer-events: none;
}

.process {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.process div,
.package,
.proof-item,
.faq article {
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  background: var(--paper);
  padding: 18px 20px;
  transition: border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.process div:hover,
.package:hover,
.faq article:hover {
  border-color: var(--forest);
  transform: translateY(-2px);
  box-shadow: var(--shadow-1);
}

.process strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
}

.process span { color: var(--muted); }

/* ----------------------------- Pricing ----------------------------- */

.package-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 28px;
}

.package h3 {
  font-size: 1.2rem;
  color: var(--ink);
}

.package strong {
  display: block;
  margin: 8px 0 12px;
  font-size: 1.7rem;
  color: var(--forest);
  font-weight: 800;
}

.package ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.6;
  font-size: 14px;
}

/* ----------------------------- Estimator ----------------------------- */

.estimator-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: 32px;
  align-items: start;
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.estimator-card {
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  padding: 22px;
  background: var(--bone);
  box-shadow: var(--shadow-1);
}

.estimator-card h3 { color: var(--ink); margin-bottom: 4px; }

.estimator-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.estimator-form label {
  display: grid;
  gap: 6px;
  color: var(--muted-strong);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.estimator-form input,
.estimator-form select {
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
  text-transform: none;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0;
}

.estimate-result {
  margin-top: 18px;
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  padding: 18px;
  background: var(--paper);
}

.estimate-result span {
  display: block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}

.estimate-result strong {
  display: block;
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--forest);
  font-variant-numeric: tabular-nums;
}

.estimate-result p {
  margin: 8px 0 0;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
}

.quote-checklist {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.quote-checklist div {
  border-left: 3px solid var(--forest);
  padding-left: 14px;
}

.quote-checklist strong {
  display: block;
  color: var(--ink);
  margin-bottom: 2px;
}

.quote-checklist span {
  color: var(--muted);
  font-size: 14px;
}

/* ----------------------------- Safety / area ----------------------------- */

.safety-grid,
.area-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.safety-grid article,
.area-grid article {
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  padding: 20px;
  background: var(--paper);
}

.safety-grid h3,
.area-grid h3 {
  color: var(--ink);
  margin-bottom: 6px;
}

.safety-grid p,
.area-grid p { color: var(--muted); }

/* ----------------------------- Proof band (dark) ----------------------------- */

.proof-band {
  background: var(--ink);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.proof-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at top right, rgba(197, 140, 42, 0.10), transparent 60%);
  pointer-events: none;
}

.proof-band > * { position: relative; }
.proof-band h2 { color: #fff; }
.proof-band p { color: rgba(255, 255, 255, 0.78); }
.proof-band .section-label { color: var(--gold); }

.proof-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 26px;
}

.proof-item {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.92);
}

.proof-item h3 { color: #fff; margin-bottom: 8px; }
.proof-item p { color: rgba(255, 255, 255, 0.78); }

/* ----------------------------- Reviews ----------------------------- */

.reviews-section {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.review-summary,
.review-grid {
  display: grid;
  gap: 16px;
}

.review-summary {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 28px 0 16px;
}

.review-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.review-stat,
.review-card {
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  padding: 20px;
  background: var(--bone);
}

.review-stat strong {
  display: block;
  font-size: 1.85rem;
  color: var(--forest);
  font-weight: 800;
}

.review-stat span {
  color: var(--muted);
  font-size: 14px;
}

.review-card {
  display: grid;
  gap: 12px;
  align-content: start;
}

.stars {
  color: var(--gold);
  font-size: 1.05rem;
  letter-spacing: 0.04em;
}

.review-card blockquote {
  margin: 0;
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.42;
  letter-spacing: -0.005em;
}

.review-card p,
.review-card small,
.review-source {
  margin: 0;
  color: var(--muted);
}

.review-card small {
  font-weight: 700;
  font-size: 12.5px;
}

.coach-note {
  margin-top: 18px;
  border-left: 3px solid var(--forest);
  padding: 14px 18px;
  background: var(--forest-tint);
  border-radius: 0 var(--r-card) var(--r-card) 0;
}

.coach-note p { margin: 0; color: var(--ink); }
.coach-note strong { color: var(--forest); }

/* ----------------------------- Hero game link ----------------------------- */

.hero-game-link {
  display: inline-flex;
  align-items: center;
  align-self: center;
  color: var(--gold-soft, #f1c87a);
  font-weight: 700;
  font-size: 13.5px;
  letter-spacing: 0.02em;
  text-decoration: none;
  border-bottom: 1px dashed rgba(241, 200, 122, 0.55);
  padding: 4px 2px;
  transition: color 0.18s ease, border-color 0.18s ease;
}
.hero-game-link:hover {
  color: #fff;
  border-color: #fff;
}
@media (max-width: 640px) {
  .hero-game-link { font-size: 12.5px; }
}

/* ----------------------------- Hero rating badge ----------------------------- */

.hero-rating {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin: 16px 0 8px;
  padding: 10px 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(197, 140, 42, 0.42);
  border-radius: 999px;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.92);
  width: max-content;
  max-width: 100%;
}
.hero-rating-stars {
  color: #f1c87a;
  font-size: 16px;
  letter-spacing: 2px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.45);
}
.hero-rating > strong {
  color: #fff;
  font-size: 20px;
  font-weight: 900;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.01em;
}
.hero-rating-meta {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.78);
}
.hero-rating-meta strong {
  color: #f1c87a;
  font-weight: 800;
}
@media (max-width: 560px) {
  .hero-rating { font-size: 12.5px; padding: 8px 14px; gap: 8px; }
  .hero-rating > strong { font-size: 17px; }
  .hero-rating-stars { font-size: 14px; }
}

/* ----------------------------- Gallery mosaic ----------------------------- */

.gallery-section {
  padding-top: clamp(48px, 6vw, 72px);
  padding-bottom: clamp(48px, 6vw, 72px);
}

.gallery-head {
  max-width: 780px;
  margin: 0 0 32px;
}
.gallery-head h2 {
  margin: 8px 0 12px;
}
.gallery-head p {
  color: var(--ink-soft);
  line-height: 1.6;
}

.gallery-mosaic {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 200px;
  gap: 14px;
  margin: 0;
}

.g-cell {
  position: relative;
  border-radius: var(--r-card);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  box-shadow: var(--shadow-1);
  overflow: hidden;
  transition: transform 0.32s var(--ease-out-quint),
              box-shadow 0.32s var(--ease-out-quint);
  cursor: zoom-in;
}

/* Subtle vignette so any cell looks polished regardless of underlying photo */
.g-cell::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 55%, rgba(15, 26, 20, 0.32) 100%);
  pointer-events: none;
  opacity: 0.85;
  transition: opacity 0.3s ease;
}

.g-cell:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-2);
}
.g-cell:hover::after {
  opacity: 0.45;
}

/* Variable sizes for visual rhythm */
.g-cell.g-tall { grid-row: span 2; }
.g-cell.g-wide { grid-column: span 2; }

/* Bind each cell's photo via data-photo attribute */
.g-cell[data-photo="event-01"] { background-image: url("../../mobile-axe-drive/processed/mobile-axe-event-01.jpg"); }
.g-cell[data-photo="event-02"] { background-image: url("../../mobile-axe-drive/processed/mobile-axe-event-02.jpg"); }
.g-cell[data-photo="event-03"] { background-image: url("../../mobile-axe-drive/processed/mobile-axe-event-03.jpg"); }
.g-cell[data-photo="event-04"] { background-image: url("../../mobile-axe-drive/processed/mobile-axe-event-04.jpg"); }
.g-cell[data-photo="event-05"] { background-image: url("../../mobile-axe-drive/processed/mobile-axe-event-05.jpg"); }
.g-cell[data-photo="event-06"] { background-image: url("../../mobile-axe-drive/processed/mobile-axe-event-06.jpg"); }
.g-cell[data-photo="event-07"] { background-image: url("../../mobile-axe-drive/processed/mobile-axe-event-07.jpg"); }
.g-cell[data-photo="event-08"] { background-image: url("../../mobile-axe-drive/processed/mobile-axe-event-08.jpg"); }
.g-cell[data-photo="event-09"] { background-image: url("../../mobile-axe-drive/processed/mobile-axe-event-09.jpg"); }
.g-cell[data-photo="event-10"] { background-image: url("../../mobile-axe-drive/processed/mobile-axe-event-10.jpg"); }
.g-cell[data-photo="event-11"] { background-image: url("../../mobile-axe-drive/processed/mobile-axe-event-11.jpg"); }
.g-cell[data-photo="event-12"] { background-image: url("../../mobile-axe-drive/processed/mobile-axe-event-12.jpg"); }
.g-cell[data-photo="event-14"] { background-image: url("../../mobile-axe-drive/processed/mobile-axe-event-14.jpg"); }

.gallery-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 36px;
}

@media (max-width: 960px) {
  .gallery-mosaic {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-rows: 180px;
  }
  .g-cell.g-wide { grid-column: span 2; }
}
@media (max-width: 640px) {
  .gallery-mosaic {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 160px;
    gap: 10px;
  }
  .g-cell.g-tall { grid-row: span 1; }
  .g-cell.g-wide { grid-column: span 2; }
}

/* ----------------------------- Landing-page hub ----------------------------- */

.landing-pages {
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.landing-pages > p { max-width: 780px; }

.landing-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 26px;
}

.landing-link {
  min-height: 156px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  padding: 18px;
  background: var(--bone);
  text-decoration: none;
  transition: border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.landing-link:hover {
  border-color: var(--forest);
  background: var(--paper);
  transform: translateY(-2px);
  box-shadow: var(--shadow-1);
}

.landing-link strong {
  display: block;
  font-size: 1.05rem;
  color: var(--ink);
  margin-bottom: 4px;
}

.landing-link span {
  color: var(--muted);
  line-height: 1.5;
  font-size: 14px;
}

.landing-link small {
  margin-top: 10px;
  color: var(--rust);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.1em;
}

/* ----------------------------- Quote section + form ----------------------------- */

.quote-section {
  background: linear-gradient(135deg, var(--ink) 0%, #1f3329 60%, var(--ink-2) 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.quote-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at bottom right, rgba(197, 140, 42, 0.14), transparent 60%);
  pointer-events: none;
}

.quote-section > * { position: relative; }
.quote-section h2 { color: #fff; }
.quote-section p { color: rgba(255, 255, 255, 0.78); }
.quote-section .section-label { color: var(--gold); }

.conversion-band {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 32px;
  align-items: start;
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.conversion-actions {
  display: grid;
  gap: 12px;
}

.conversion-action {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  padding: 18px;
  background: var(--bone);
  text-decoration: none;
  transition: border-color 160ms ease, transform 160ms ease, background 160ms ease;
}

.conversion-action:hover {
  border-color: var(--forest);
  background: var(--paper);
  transform: translateY(-2px);
}

.conversion-action small {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--r-pill);
  background: var(--forest);
  color: #fff;
  font-weight: 800;
  font-size: 14px;
}

.conversion-action div strong {
  color: var(--ink);
  font-size: 1.02rem;
  display: block;
}

.conversion-action span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  line-height: 1.5;
  font-size: 14px;
}

form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 26px;
}

textarea { min-height: 120px; grid-column: 1 / -1; }
form button { width: fit-content; }
#formStatus { grid-column: 1 / -1; color: var(--gold-soft); font-weight: 800; }

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

.faq {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 24px;
}

.faq h3 { color: var(--ink); margin-bottom: 6px; }
.faq p { color: var(--muted); }

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  background: var(--paper);
  overflow: hidden;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}
.faq-item[open] { border-color: var(--forest); box-shadow: var(--shadow-1); }
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 20px;
  font-weight: 700;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  font-size: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::marker { display: none; }
.faq-item p {
  margin: 0;
  padding: 0 20px 18px;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.55;
}
.faq-chevron {
  position: relative;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform 220ms var(--ease-out-quint);
  color: var(--forest);
}
.faq-chevron::before,
.faq-chevron::after {
  content: "";
  position: absolute;
  background: currentColor;
  border-radius: 2px;
}
/* + glyph (closed) becomes axe-head-like ⨯ when open */
.faq-chevron::before {
  top: 9px; left: 2px;
  width: 16px; height: 2px;
}
.faq-chevron::after {
  top: 2px; left: 9px;
  width: 2px; height: 16px;
  transition: transform 220ms var(--ease-out-quint);
}
.faq-item[open] .faq-chevron { color: var(--gold); transform: rotate(45deg); }
.faq-item[open] .faq-chevron::after { transform: scaleY(0.7); }

/* ----------------------------- Mobile ----------------------------- */

@media (max-width: 1080px) {
  .event-grid-6 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 900px) {
  .intro-band,
  .event-grid,
  .event-grid-6,
  .split,
  .package-grid,
  .proof-grid,
  .review-summary,
  .review-grid,
  .gallery,
  .urgency-strip,
  .estimator-section,
  .safety-grid,
  .area-grid,
  .landing-grid,
  .conversion-band,
  .estimator-form,
  form,
  .faq {
    grid-template-columns: 1fr;
  }
  .stat-grid { grid-template-columns: 1fr; }
  .hero { min-height: 88vh; padding-top: 100px; }
  .split > .media { position: static; min-height: 320px; }
  .hero-ticker { flex-direction: column; align-items: flex-start; gap: 6px; }
  .hero-ticker .ticker-track { white-space: normal; }
}

/* ============================================================
   iPhone hero — fixes the cut-off on small viewports.
   Root cause was: global h1 clamp(3rem, 9vw, 7.5rem) renders the
   8-word headline at ~48px on a 375px iPhone, wrapping 5 lines
   tall; min-height: 88vh + all content overflowed the viewport
   and clipped "Lock a Date" + meta below.
============================================================ */
@media (max-width: 560px) {
  .hero {
    /* Use small-viewport units so the address bar doesn't steal space */
    min-height: 100svh;
    padding: 96px 18px 28px;
    align-items: start;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }
  .hero-content {
    gap: 14px;
    width: 100%;
  }
  /* Tighter, real-sized headline so the whole hero fits */
  .hero h1 {
    font-size: clamp(2rem, 8.4vw, 2.6rem);
    line-height: 0.96;
    letter-spacing: -0.02em;
    text-wrap: balance;
  }
  .hero p {
    font-size: 0.96rem;
    line-height: 1.45;
  }
  .hero .eyebrow {
    font-size: 0.7rem;
    letter-spacing: 0.16em;
    margin-bottom: 2px;
  }
  /* Stack the buttons full-width so "Lock a Date" is never clipped */
  .hero-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: stretch;
  }
  .hero-actions .button {
    width: 100%;
    text-align: center;
    padding: 14px 18px;
    font-size: 1rem;
  }
  .hero-actions .button.secondary {
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.4);
  }
  .hero-game-link {
    display: inline-block;
    margin-top: 2px;
    font-size: 13px;
  }
  /* Meta row: allow it to wrap; dot dividers stay inline */
  .hero-meta {
    flex-wrap: wrap;
    gap: 8px 12px;
    font-size: 13px;
    margin-top: 2px;
  }
  .hero-meta a, .hero-meta span:not(.hero-meta-divider) { white-space: nowrap; }
  /* Trim the 6-pill proof row so it doesn't push everything off-screen */
  .hero-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    font-size: 11.5px;
  }
  .hero-rating {
    width: auto;
    max-width: 100%;
    padding: 8px 12px;
    margin: 6px 0 4px;
  }
  /* Hide the floating axe SVG decoration — it covers headline on narrow screens */
  .hero-axe-float { display: none !important; }
  /* The ticker chip — keep it visible but compact */
  .hero-ticker {
    margin-top: 14px;
    font-size: 12px;
    padding: 8px 10px;
  }
}
