/* ============================================================
   Mobile Axe — components (Phase 1: new brand surface)
   Reusable building blocks shared across every public page.
   ============================================================ */

/* ============================================================
   Top navigation
   - Default: transparent over hero (white text on dark photo)
   - Scrolled past hero: solid bone surface, ink text
   - Mobile: hamburger toggles a fixed full-width drawer
   ============================================================ */

.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px var(--nav-pad-x);
  min-height: var(--nav-h);
  color: #fff;
  background: linear-gradient(180deg, rgba(15, 26, 20, 0.78), rgba(15, 26, 20, 0.18) 70%, rgba(15, 26, 20, 0));
  transition: background 220ms ease, color 220ms ease, box-shadow 220ms ease;
}

.nav[data-scrolled="true"] {
  background: rgba(250, 247, 238, 0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--ink);
  box-shadow: 0 1px 0 var(--line), 0 6px 16px rgba(15, 26, 20, 0.05);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-direction: row;
  line-height: 1;
  font-weight: 950;
  text-decoration: none;
  color: inherit;
}

.brand .brand-mark {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: var(--r-button);
  background: var(--gold);
  color: var(--ink);
  font-weight: 950;
  font-size: 13px;
  letter-spacing: 0.02em;
  box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.18);
  flex-shrink: 0;
}

.brand .brand-text {
  display: grid;
  gap: 1px;
}

.brand .brand-text strong {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.005em;
}

.brand small {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: currentColor;
  opacity: 0.7;
}

.nav[data-scrolled="true"] .brand small { opacity: 0.65; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.9rem;
  font-weight: 700;
}

.nav-links a {
  color: inherit;
  text-decoration: none;
  padding: 6px 0;
  transition: color 120ms ease;
}

.nav-links a:hover {
  color: var(--gold);
}

.nav[data-scrolled="true"] .nav-links a:hover { color: var(--forest); }

.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 800;
  text-decoration: none;
  color: inherit;
}

/* Mobile hamburger */
.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border: 1px solid currentColor;
  border-radius: var(--r-button);
  background: transparent;
  color: inherit;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

.nav-toggle svg { width: 20px; height: 20px; }

/* Sound toggle (placeholder — Phase 2 wires it up) */
.nav-sound {
  display: none;
  width: 36px;
  height: 36px;
  border: 1px solid currentColor;
  border-radius: var(--r-pill);
  background: transparent;
  color: inherit;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  opacity: 0.7;
}

.nav-sound:hover { opacity: 1; }

/* Mobile drawer */
.nav-drawer {
  display: none;
  position: fixed;
  inset: var(--nav-h) 0 0 0;
  z-index: 25;
  background: var(--ink);
  color: var(--bone);
  padding: 30px clamp(20px, 5vw, 60px) 40px;
  overflow-y: auto;
  flex-direction: column;
  gap: 6px;
}

.nav-drawer.open { display: flex; }

.nav-drawer a {
  font-size: 1.5rem;
  font-weight: 800;
  text-decoration: none;
  color: inherit;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.nav-drawer .button {
  margin-top: 20px;
  width: 100%;
}

/* ============================================================
   Buttons
   - .btn, .btn-primary, .btn-ghost (new system)
   - .button (legacy class, still supported, mapped to new look)
   ============================================================ */

.btn,
.button,
button.btn,
button.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  border: 1px solid transparent;
  border-radius: var(--r-button);
  padding: 0 18px;
  font-family: inherit;
  font-size: 14.5px;
  font-weight: 800;
  letter-spacing: 0.005em;
  text-decoration: none;
  cursor: pointer;
  background: var(--gold);
  color: var(--ink);
  box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.18);
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, box-shadow 160ms ease, color 160ms ease;
}

.btn:hover,
.button:hover {
  background: var(--gold-hi);
  transform: translateY(-1px);
}

.btn:active,
.button:active {
  transform: translateY(0);
}

/* Secondary / ghost — works on dark hero AND light surfaces */
.btn-ghost,
.btn.secondary,
.button.secondary {
  background: transparent;
  color: currentColor;
  border-color: currentColor;
  box-shadow: none;
}

.btn-ghost:hover,
.btn.secondary:hover,
.button.secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}

/* On bone surfaces, ghost gets ink color */
section .btn-ghost,
section .btn.secondary,
section .button.secondary,
.intro-band .button.secondary,
.estimator-card .button.secondary {
  border-color: var(--line-strong);
  color: var(--ink);
}

section .btn-ghost:hover,
section .btn.secondary:hover,
section .button.secondary:hover {
  background: var(--forest-tint);
  border-color: var(--forest);
  color: var(--forest);
}

.btn-block,
.btn.full,
.button.full {
  width: 100%;
}

.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* ============================================================
   Eyebrow / section labels
   ============================================================ */

.eyebrow {
  display: inline-block;
  margin: 0 0 14px;
  color: var(--gold-soft);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px;
  color: var(--rust);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-label::before {
  content: "";
  width: 22px;
  height: 1.5px;
  background: currentColor;
  border-radius: 2px;
}

/* ============================================================
   Hero proof pills
   ============================================================ */

.hero-proof,
.proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.hero-proof span,
.proof-row span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--r-pill);
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.92);
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.005em;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.hero-proof span::before,
.proof-row span::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

/* ============================================================
   Sticky CTA (right-bottom)
   ============================================================ */

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 28;
  box-shadow: var(--shadow-3);
}

/* ============================================================
   Site footer (3 columns + brand strip)
   ============================================================ */

footer.site-footer,
footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.78);
  padding: 56px var(--section-pad-x) 28px;
}

footer p { color: rgba(255, 255, 255, 0.72); }
footer a { color: rgba(255, 255, 255, 0.92); text-decoration: none; }
footer a:hover { color: var(--gold); }

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) repeat(2, minmax(0, 1fr));
  gap: 36px;
  margin-bottom: 36px;
  max-width: 1280px;
}

.footer-grid h4 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-brand {
  display: grid;
  gap: 14px;
}

.footer-brand .brand {
  color: #fff;
}

.footer-brand p {
  margin: 0;
  max-width: 380px;
  font-size: 14px;
}

.footer-contact {
  display: grid;
  gap: 6px;
  margin-top: 6px;
}

.footer-contact a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 14px;
}

.footer-links {
  display: grid;
  gap: 8px;
  font-size: 14px;
}

.footer-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.6);
}

.footer-strip strong { color: rgba(255, 255, 255, 0.85); font-weight: 700; }

/* ============================================================
   Mobile breakpoints (component-level only)
   ============================================================ */

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-toggle { display: inline-flex; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
}

/* ============================================================
   iPhone-tier mobile (≤ 430px)
   ============================================================ */

@media (max-width: 430px) {
  /* Container padding */
  .container,
  .section-container { padding-left: 16px; padding-right: 16px; }

  /* Top nav */
  .site-nav { padding: 10px 14px; }
  .site-nav .brand { font-size: 14px; }
  .site-nav .nav-toggle { width: 40px; height: 40px; }

  /* Hero */
  .hero { padding: 64px 0 40px; }
  .hero h1 { font-size: 32px; line-height: 1.08; letter-spacing: -0.02em; }
  .hero .hero-sub { font-size: 14px; line-height: 1.55; }
  .hero .button-row { flex-direction: column; gap: 10px; align-items: stretch; }
  .hero .button-row .btn,
  .hero .button-row .primary-button,
  .hero .button-row a { width: 100%; text-align: center; padding: 14px 16px; font-size: 14px; }

  /* Section spacing */
  section { padding: 48px 0; }
  section h2 { font-size: 26px; line-height: 1.15; letter-spacing: -0.015em; }
  section .lede { font-size: 14px; }

  /* Card grids */
  .grid-2,
  .grid-3,
  .grid-4,
  .service-grid,
  .testimonial-grid,
  .feature-grid {
    grid-template-columns: 1fr !important;
    gap: 16px;
  }
  .card { padding: 18px; border-radius: 12px; }

  /* Pricing / package cards */
  .package-grid { grid-template-columns: 1fr; gap: 14px; }
  .package-card { padding: 20px; }
  .package-card h3 { font-size: 20px; }
  .package-card .price { font-size: 28px; }

  /* Forms */
  .quote-form,
  .booking-form,
  form .form-row { grid-template-columns: 1fr; gap: 12px; }
  form input,
  form select,
  form textarea {
    font-size: 16px; /* iOS zoom prevention */
    padding: 12px 14px;
  }
  form button[type="submit"],
  form .primary-button { width: 100%; padding: 14px; font-size: 14px; }

  /* Photo gallery */
  .photo-grid { grid-template-columns: 1fr 1fr !important; gap: 8px; }
  .photo-grid img { border-radius: 8px; }

  /* Footer */
  .site-footer { padding: 32px 16px 24px; }
  .footer-grid { gap: 24px; }
  .footer-grid h4 { font-size: 13px; }
  .footer-grid a { font-size: 13px; }

  /* FAQs / accordions */
  .faq summary, .accordion summary { padding: 14px; font-size: 14px; }
  .faq[open] p, .accordion[open] p { padding: 10px 14px 16px; font-size: 13px; }

  /* Sticky CTA bar on iPhone */
  .sticky-cta {
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 12px 14px;
  }
  .sticky-cta .btn { font-size: 13px; padding: 10px 14px; }

  /* Mobile menu open state */
  .nav-menu.is-open {
    position: fixed;
    inset: 56px 0 0 0;
    background: #fff;
    padding: 24px 20px;
    display: flex !important;
    flex-direction: column;
    gap: 12px;
    z-index: 80;
    overflow-y: auto;
  }
  .nav-menu.is-open a { font-size: 16px; padding: 10px 0; border-bottom: 1px solid rgba(0,0,0,0.08); }

  /* Safe-area for notched iPhones */
  body { padding-bottom: env(safe-area-inset-bottom); }
}

/* Tablet (431-768) */
@media (min-width: 431px) and (max-width: 768px) {
  .grid-3, .grid-4, .service-grid { grid-template-columns: 1fr 1fr; }
  .photo-grid { grid-template-columns: 1fr 1fr 1fr; }
  .hero h1 { font-size: 40px; }
}

/* ============================================================
   iPhone V2 — aggressive presentable polish
   ============================================================ */
@media (max-width: 540px) {

  /* ---- Container reset ---- */
  body { font-size: 15px; line-height: 1.55; }
  .container,
  .section-container,
  main > section {
    padding-left: 16px;
    padding-right: 16px;
  }

  /* ---- Top nav — slim, sticky, hamburger ---- */
  .site-nav,
  .site-header {
    padding: 10px 16px;
    height: 56px;
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(14, 22, 20, 0.94);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }
  .site-nav .brand,
  .site-header .brand { font-size: 14px; font-weight: 800; }
  .nav-links { display: none; }
  .nav-toggle {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    color: #fff;
  }

  /* ---- Hero — big, emotional, no extra ---- */
  .hero,
  section.hero {
    min-height: auto;
    padding: 56px 16px 40px;
    text-align: center;
  }
  .hero h1,
  section.hero h1 {
    font-size: clamp(28px, 9vw, 36px);
    line-height: 1.08;
    letter-spacing: -0.022em;
    margin-bottom: 14px;
  }
  .hero .eyebrow,
  section.hero .eyebrow {
    font-size: 11px;
    letter-spacing: 0.16em;
    margin-bottom: 10px;
  }
  .hero .hero-sub,
  section.hero p {
    font-size: 14.5px;
    line-height: 1.55;
    margin-bottom: 22px;
  }
  .hero .button-row,
  section.hero .button-row,
  .hero .cta-group {
    flex-direction: column;
    gap: 10px;
    align-items: stretch;
    width: 100%;
  }
  .hero .button-row > *,
  .hero .cta-group > *,
  section.hero .button-row > * {
    width: 100%;
    text-align: center;
    padding: 14px 18px;
    font-size: 14px;
    min-height: 48px;
    border-radius: 12px;
  }

  /* ---- Proof / stat strip ---- */
  .proof-strip,
  .stat-row { grid-template-columns: 1fr 1fr !important; gap: 10px; }
  .proof-strip strong { font-size: 18px; }
  .proof-strip span { font-size: 11px; }

  /* ---- Section spacing ---- */
  section { padding: 44px 0; }
  section h2 {
    font-size: clamp(22px, 6vw, 28px);
    line-height: 1.18;
    letter-spacing: -0.018em;
    margin-bottom: 12px;
  }
  section .lede, section .section-sub {
    font-size: 14px;
    line-height: 1.55;
    margin-bottom: 22px;
  }
  section .eyebrow { font-size: 10px; }

  /* ---- Card grids → single column ---- */
  .grid-2, .grid-3, .grid-4,
  .service-grid, .testimonial-grid, .feature-grid,
  .audience-grid, .package-grid {
    grid-template-columns: 1fr !important;
    gap: 14px;
  }
  .card, .service-card, .audience-card, .feature-card, .testimonial-card {
    padding: 20px;
    border-radius: 14px;
  }
  .card h3, .service-card h3 {
    font-size: 17px;
    line-height: 1.2;
    margin-bottom: 8px;
  }
  .card p, .service-card p { font-size: 13.5px; line-height: 1.5; }

  /* ---- Pricing / package cards ---- */
  .package-card {
    padding: 22px;
    border-radius: 16px;
  }
  .package-card h3 { font-size: 19px; }
  .package-card .price { font-size: 32px; line-height: 1; }
  .package-card .price-sub { font-size: 13px; }
  .package-card ul { padding-left: 18px; margin: 12px 0; }
  .package-card li { font-size: 13px; margin-bottom: 6px; line-height: 1.45; }

  /* ---- Forms — big, easy to tap ---- */
  .quote-form,
  .booking-form,
  form .form-row,
  form .form-grid {
    grid-template-columns: 1fr !important;
    gap: 14px;
  }
  form label,
  .form-field label {
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 6px;
    display: block;
  }
  form input,
  form select,
  form textarea {
    font-size: 16px; /* iOS zoom prevention */
    padding: 13px 14px;
    border-radius: 10px;
    width: 100%;
    min-height: 48px;
  }
  form textarea { min-height: 110px; }
  form button[type="submit"],
  form .primary-button,
  form .submit-button {
    width: 100%;
    padding: 15px 18px;
    font-size: 14.5px;
    min-height: 50px;
    border-radius: 12px;
    font-weight: 800;
  }

  /* ---- Photo gallery ---- */
  .photo-grid,
  .gallery-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 8px;
  }
  .photo-grid img { border-radius: 10px; }

  /* ---- Footer ---- */
  .site-footer {
    padding: 36px 16px 80px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 22px 14px;
  }
  .footer-grid h4 { font-size: 13px; }
  .footer-grid a { font-size: 13px; line-height: 1.7; }
  .footer-grid .footer-brand { grid-column: 1 / -1; padding-bottom: 12px; border-bottom: 1px solid rgba(255,255,255,0.1); margin-bottom: 6px; }

  /* ---- FAQs / accordions ---- */
  .faq, details.faq, .accordion {
    border-radius: 12px;
    margin-bottom: 8px;
  }
  .faq summary, .accordion summary {
    padding: 14px 16px;
    font-size: 14.5px;
    font-weight: 700;
  }
  .faq[open] p, .accordion[open] p,
  .faq[open] div, .accordion[open] div {
    padding: 4px 16px 18px;
    font-size: 13.5px;
    line-height: 1.55;
  }

  /* ---- Sticky CTA bar at bottom (booking shortcut) ---- */
  .sticky-cta {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: max(12px, calc(env(safe-area-inset-bottom) + 8px));
    padding: 12px 16px;
    border-radius: 12px;
    background: linear-gradient(135deg, #1f4d33, #0e1614);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
    color: #fff;
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: space-between;
    z-index: 40;
  }
  .sticky-cta .label { font-size: 12.5px; font-weight: 700; }
  .sticky-cta .btn,
  .sticky-cta a.primary {
    background: #e1b15f;
    color: #0e1614;
    padding: 9px 14px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
    min-height: 38px;
    display: inline-flex;
    align-items: center;
  }

  /* ---- Mobile nav menu open state ---- */
  .nav-menu.is-open,
  .nav-links.is-open {
    position: fixed;
    inset: 56px 0 0 0;
    background: #0e1614;
    padding: 24px 20px 40px;
    display: flex !important;
    flex-direction: column;
    gap: 4px;
    z-index: 80;
    overflow-y: auto;
  }
  .nav-menu.is-open a,
  .nav-links.is-open a {
    font-size: 17px;
    padding: 14px 4px;
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    text-decoration: none;
    font-weight: 600;
  }
  .nav-menu.is-open .nav-cta,
  .nav-links.is-open .nav-cta {
    margin-top: 16px;
    background: #e1b15f;
    color: #0e1614;
    text-align: center;
    border-radius: 10px;
    font-weight: 800;
  }

  /* ---- Reviews / testimonials ---- */
  .testimonial { padding: 18px; border-radius: 14px; }
  .testimonial-text { font-size: 14px; line-height: 1.55; }
  .testimonial-author { font-size: 12px; margin-top: 12px; }

  /* ---- Safe-area for notched iPhones ---- */
  body { padding-bottom: env(safe-area-inset-bottom); }

  /* ---- Tap feedback ---- */
  a, button { -webkit-tap-highlight-color: rgba(225, 177, 95, 0.18); }
}

/* Tap-state scale */
@media (max-width: 540px) and (hover: none) {
  .btn:active, .primary-button:active, .secondary-button:active,
  form button:active { transform: scale(0.98); transition: transform 0.08s ease; }
}

/* ====================================================================
   IPHONE V3 — fix text cut-off + image fits + photo strip
   Targets all iPhone widths (375, 390, 414, 430). Builds on top of V2.
==================================================================== */
@media (max-width: 540px) {

  /* ---- GLOBAL text safety: no overflow, soft wrap on long words ---- */
  body, h1, h2, h3, h4, h5, p, a, span, strong, em, li, blockquote, small, label, button {
    overflow-wrap: anywhere;
    word-wrap: break-word;
    hyphens: auto;
  }
  /* But never break the brand / heading words mid-letter — use safer wrap */
  h1, h2, .hero h1, section h2 {
    overflow-wrap: break-word;
    hyphens: manual;
  }
  /* Container safety — prevent horizontal overflow on the body */
  html, body { overflow-x: hidden; width: 100%; }
  main, section, header, footer {
    max-width: 100vw;
    overflow-x: clip;
  }

  /* ---- HERO — fix the H1 cut-off on small iPhones ---- */
  .hero, .hero-content {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
  .hero h1 {
    font-size: clamp(26px, 8.4vw, 36px) !important;
    line-height: 1.06 !important;
    letter-spacing: -0.025em !important;
    word-spacing: -0.02em;
    margin-bottom: 14px !important;
    padding-right: 8px;
  }
  .hero h1 em {
    /* The gold "axe throwing" emphasis */
    display: inline-block;
    line-height: 1.05;
  }
  .hero .eyebrow {
    font-size: 10.5px !important;
    letter-spacing: 0.14em !important;
    padding: 5px 10px !important;
  }
  .hero p {
    font-size: 14px !important;
    line-height: 1.5 !important;
    max-width: 100%;
  }
  .hero-rating {
    flex-wrap: wrap;
    gap: 8px;
    font-size: 13px;
  }
  .hero-rating-meta { font-size: 11.5px !important; line-height: 1.4; }
  .hero-actions {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 10px !important;
    width: 100%;
  }
  .hero-actions .button,
  .hero-actions a {
    width: 100%;
    text-align: center;
    min-height: 48px;
    padding: 14px 16px !important;
    font-size: 14px !important;
    box-sizing: border-box;
  }
  .hero-actions .hero-game-link {
    text-align: center;
    font-size: 12.5px;
    padding: 8px 0 !important;
    background: transparent !important;
    min-height: auto;
  }
  .hero-meta {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 8px 12px;
    font-size: 12.5px;
  }
  .hero-meta a { padding: 4px 0; }
  .hero-meta-divider { display: none; }
  .hero-proof {
    gap: 6px !important;
    margin-top: 18px !important;
  }
  .hero-proof span {
    font-size: 10.5px !important;
    padding: 6px 10px !important;
    letter-spacing: 0.04em !important;
  }
  .hero-axe-float { display: none !important; }
  .hero-ticker { display: none; }

  /* ---- NAV — tighter, no text overflow ---- */
  .nav {
    padding: 10px 14px !important;
    height: 56px !important;
    gap: 8px;
  }
  .brand-text strong { font-size: 13px !important; }
  .brand-text small { font-size: 9.5px !important; }
  .nav-toggle {
    width: 40px !important;
    height: 40px !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
  }
  .nav-toggle svg { width: 22px; height: 22px; }
  .nav-drawer {
    display: none;
    position: fixed;
    inset: 56px 0 0 0;
    background: #0e1614;
    z-index: 80;
    padding: 24px 20px 40px;
    flex-direction: column;
    gap: 4px;
    overflow-y: auto;
  }
  .nav-drawer.is-open,
  .nav-drawer.open { display: flex !important; }
  .nav-drawer a {
    font-size: 16px;
    padding: 14px 4px;
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .nav-drawer a.button {
    background: #e1b15f;
    color: #0e1614;
    text-align: center;
    border-radius: 10px;
    font-weight: 800;
    margin-top: 12px;
    border: none;
  }

  /* ---- STICKY CTA pinned to bottom on iPhone ---- */
  .sticky-cta {
    position: fixed !important;
    bottom: max(12px, calc(env(safe-area-inset-bottom) + 8px)) !important;
    left: 12px !important;
    right: 12px !important;
    z-index: 60;
    padding: 13px 18px !important;
    font-size: 13.5px !important;
    border-radius: 12px !important;
    background: linear-gradient(135deg, #1f4d33, #0e1614) !important;
    color: #fff !important;
    text-align: center;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(225, 177, 95, 0.4);
    width: auto !important;
  }

  /* ---- SECTION padding tightened so nothing clips ---- */
  section {
    padding: 44px 16px !important;
  }
  section h2 {
    font-size: clamp(22px, 6.5vw, 28px) !important;
    line-height: 1.16 !important;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
    word-spacing: -0.01em;
  }
  section .section-label, .section-label {
    font-size: 10.5px !important;
    letter-spacing: 0.18em !important;
    margin-bottom: 8px;
  }
  section p {
    font-size: 14px;
    line-height: 1.5;
  }

  /* ---- INTRO BAND ---- */
  .intro-band {
    grid-template-columns: 1fr !important;
    gap: 22px !important;
    padding: 36px 16px !important;
  }
  .intro-band .stat-grid {
    grid-template-columns: 1fr 1fr 1fr !important;
    gap: 8px !important;
  }
  .intro-band .stat strong { font-size: 17px !important; line-height: 1.1; }
  .intro-band .stat span { font-size: 10.5px !important; line-height: 1.25; }

  /* ---- REAL EVENTS STRIP — images need to be tall enough, not stretched ---- */
  .real-events-strip { padding: 30px 12px !important; }
  .real-events-strip .strip-grid {
    grid-template-columns: 1fr 1fr !important;
    grid-auto-rows: 160px !important;
    gap: 8px !important;
    aspect-ratio: auto !important;
  }
  .real-events-strip .strip-photo.strip-photo--lg {
    grid-column: span 2;
    grid-row: span 1;
  }
  .real-events-strip .strip-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .real-events-strip .strip-head h2 {
    font-size: 20px !important;
  }
  .real-events-strip .strip-cta {
    font-size: 12px;
    padding: 7px 12px;
  }

  /* ---- EVENTS / SERVICES grid ---- */
  .event-grid {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }
  .event-card {
    padding: 18px !important;
    border-radius: 14px;
    min-height: auto;
  }
  .event-card h3 {
    font-size: 17px !important;
    line-height: 1.18 !important;
    margin-bottom: 6px !important;
  }
  .event-card p {
    font-size: 13.5px !important;
    line-height: 1.5 !important;
    margin-bottom: 12px;
  }
  .event-card .card-tag {
    font-size: 10px !important;
    padding: 3px 8px !important;
  }
  .event-card .card-link {
    font-size: 12.5px;
    padding: 8px 12px;
  }

  /* ---- PROCESS SECTION (split) ---- */
  section.split {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
  section.split .media {
    aspect-ratio: 4 / 3;
    min-height: 220px;
  }
  .process-steps {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }
  .process-step {
    padding: 14px !important;
  }
  .process-step h3 { font-size: 15px !important; }
  .process-step p { font-size: 13px !important; }

  /* ---- PRICING ---- */
  .price-grid, .packages-grid {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }
  .price-card, .package-card {
    padding: 20px !important;
  }
  .price-card h3 { font-size: 17px !important; }
  .price-card .price-amount { font-size: 32px !important; line-height: 1; }
  .price-card ul { padding-left: 18px; }
  .price-card li { font-size: 13px !important; line-height: 1.5; margin-bottom: 6px; }

  /* ---- REVIEWS ---- */
  .review-grid {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }
  .review-card {
    padding: 18px !important;
    border-radius: 14px;
  }
  .review-card .stars { font-size: 14px !important; margin-bottom: 8px; }
  .review-card blockquote {
    font-size: 15px !important;
    line-height: 1.4 !important;
    margin: 0 0 10px !important;
  }
  .review-card p {
    font-size: 13px !important;
    line-height: 1.5 !important;
    margin-bottom: 8px;
  }
  .review-card small {
    font-size: 11px !important;
    color: rgba(0,0,0,0.55);
  }

  /* ---- GALLERY MOSAIC — convert to clean grid on phone ---- */
  .gallery-mosaic {
    grid-template-columns: 1fr 1fr !important;
    grid-auto-rows: 140px !important;
    gap: 6px !important;
  }
  .gallery-mosaic .g-cell {
    background-size: cover !important;
    background-position: center !important;
  }
  .gallery-mosaic .g-cell.g-tall {
    grid-row: span 2;
  }
  .gallery-mosaic .g-cell.g-wide {
    grid-column: span 2;
  }
  .gallery-cta {
    flex-direction: column;
    gap: 8px;
    margin-top: 18px;
  }
  .gallery-cta .button {
    width: 100%;
    text-align: center;
    min-height: 48px;
  }

  /* ---- QUOTE / FORMS ---- */
  .quote-form, form.quote-form, form .form-row {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }
  form label {
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 4px;
  }
  form input, form select, form textarea {
    font-size: 16px !important; /* iOS no-zoom */
    padding: 12px 14px !important;
    border-radius: 10px !important;
    min-height: 48px !important;
    width: 100% !important;
  }
  form textarea { min-height: 110px !important; }
  form button[type="submit"], form .button {
    width: 100% !important;
    padding: 14px 18px !important;
    font-size: 14px !important;
    min-height: 50px !important;
  }
  .live-estimate { padding: 14px !important; }
  .live-estimate strong { font-size: 22px !important; }

  /* ---- LANDING PAGES (10+ /landing/*.html) ---- */
  .landing-pages {
    padding: 36px 16px !important;
  }
  .landing-grid {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }
  .landing-link {
    padding: 16px !important;
    border-radius: 12px;
  }
  .landing-link strong {
    font-size: 14.5px !important;
    line-height: 1.2 !important;
  }
  .landing-link span {
    font-size: 12.5px !important;
    line-height: 1.45 !important;
    margin-top: 4px;
  }

  /* ---- FAQ ---- */
  .faq, details {
    padding: 0 !important;
    margin-bottom: 8px;
  }
  .faq summary, details summary {
    padding: 14px 16px !important;
    font-size: 14px !important;
    font-weight: 700;
  }
  .faq[open] p, .faq[open] div, details[open] > *:not(summary) {
    padding: 4px 16px 16px !important;
    font-size: 13px !important;
    line-height: 1.55 !important;
  }

  /* ---- FOOTER ---- */
  footer, .footer, .site-footer {
    padding: 32px 16px 100px !important; /* extra bottom for sticky CTA */
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 22px 14px !important;
  }
  .footer-brand {
    grid-column: 1 / -1 !important;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  .footer-grid h4 {
    font-size: 12px !important;
    letter-spacing: 0.14em !important;
    margin-bottom: 8px;
  }
  .footer-grid a, .footer-grid p {
    font-size: 12.5px !important;
    line-height: 1.6 !important;
    padding: 2px 0;
  }

  /* ---- IMAGES — global safety ---- */
  img, picture, video {
    max-width: 100%;
    height: auto;
  }
  .hero img, [data-mobile-axe-photo] {
    object-fit: cover;
  }
  /* Photos with background-image should fill their container cleanly */
  [data-mobile-axe-photo],
  [data-photo] {
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
  }
}

/* Smaller-than-iPhone-SE safety (≤375px width) */
@media (max-width: 380px) {
  .hero h1 { font-size: 22px !important; line-height: 1.1 !important; }
  section h2 { font-size: 20px !important; line-height: 1.18 !important; }
  .real-events-strip .strip-grid { grid-auto-rows: 130px !important; }
  .intro-band .stat strong { font-size: 16px !important; }
  .nav { padding: 8px 12px !important; }
  .brand-text strong { font-size: 12px !important; }
  .brand-text small { display: none; }
}

/* Landscape iPhone — reduce vertical padding so content isn't dwarfed */
@media (max-height: 500px) and (orientation: landscape) and (max-width: 932px) {
  .hero { padding: 80px 16px 30px !important; min-height: auto !important; }
  .hero h1 { font-size: 24px !important; }
  section { padding: 28px 16px !important; }
}
