/* ============================================================
   A2Z Junk Removal & Contracting — Design System
   Ink/paper/brass palette pulled from the real trailer wraps
   and flyer (black, white, navy) + a brass accent for CTAs.
   ============================================================ */

:root {
  /* Color */
  --ink: #0e1116;
  --ink-soft: #171b22;
  --ink-line: rgba(255, 255, 255, 0.12);
  --paper: #faf9f6;
  --paper-alt: #f0ede6;
  --white: #ffffff;
  --line: rgba(14, 17, 22, 0.1);
  --muted: #5b6270;
  --muted-dark: #a7acb8;
  --brass: #c6a15b;
  --brass-deep: #a8813f;
  --brass-text: #8a6a2e; /* darker brass for small text on light bg — meets 4.5:1 AA, unlike --brass-deep at ~3.6:1 */
  --brass-tint: rgba(198, 161, 91, 0.14);
  --danger: #b3392c;

  /* Type */
  --font-display: "Fraunces", "Iowan Old Style", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Scale */
  --space-3xs: 4px;
  --space-2xs: 8px;
  --space-xs: 12px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 40px;
  --space-xl: 64px;
  --space-2xl: 96px;
  --space-3xl: 140px;

  --radius-sm: 6px;
  --radius-md: 14px;
  --radius-lg: 28px;
  --radius-pill: 999px;

  --shadow-sm: 0 2px 10px rgba(14, 17, 22, 0.06);
  --shadow-md: 0 12px 32px rgba(14, 17, 22, 0.12);
  --shadow-lg: 0 24px 64px rgba(14, 17, 22, 0.22);

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --dur-fast: 180ms;
  --dur-med: 280ms;

  --container: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

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

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

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

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.1;
  margin: 0 0 var(--space-sm);
  letter-spacing: -0.01em;
}

p {
  margin: 0 0 var(--space-sm);
  color: var(--muted);
}

button {
  font-family: inherit;
  cursor: pointer;
}

/* Visible focus states everywhere — accessibility, not decoration */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--brass-deep);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

@media (max-width: 640px) {
  .container {
    padding: 0 var(--space-sm);
  }
}

section {
  padding: var(--space-2xl) 0;
}

@media (max-width: 768px) {
  section {
    padding: var(--space-xl) 0;
  }
}

.section-dark {
  background: var(--ink);
  color: var(--white);
}

.section-dark p {
  color: var(--muted-dark);
}

.section-alt {
  background: var(--paper-alt);
}

/* ---------- Typography helpers ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2xs);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brass-text);
  margin-bottom: var(--space-sm);
}

.section-dark .eyebrow {
  color: var(--brass);
}

.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: currentColor;
}

h1 {
  font-size: clamp(2.4rem, 5vw + 1rem, 4.2rem);
}

h2 {
  font-size: clamp(1.9rem, 3vw + 1rem, 2.75rem);
}

h3 {
  font-size: clamp(1.25rem, 1vw + 1rem, 1.5rem);
}

.lede {
  font-size: clamp(1.05rem, 1vw + 0.9rem, 1.25rem);
  max-width: 54ch;
}

/* ---------- Wordmark (live text, not a raster logo) ---------- */
.wordmark {
  display: inline-flex;
  align-items: baseline;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.7rem;
  letter-spacing: 0.01em;
  color: var(--ink);
  line-height: 1;
}

.section-dark .wordmark,
.wordmark.on-dark {
  color: var(--white);
}

.wordmark sub {
  font-size: 0.52em;
  font-weight: 500;
  margin: 0 0.02em;
  bottom: -0.1em;
  color: var(--brass);
}

.wordmark .wordmark-suffix {
  font-family: var(--font-body);
  font-size: 0.42em;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-left: var(--space-2xs);
  align-self: center;
}

.section-dark .wordmark-suffix {
  color: var(--muted-dark);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2xs);
  padding: 15px 28px;
  min-height: 48px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.98rem;
  border: 1px solid transparent;
  transition: transform var(--dur-fast) var(--ease-out),
    box-shadow var(--dur-fast) var(--ease-out),
    background var(--dur-fast) var(--ease-out),
    border-color var(--dur-fast) var(--ease-out);
  cursor: pointer;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
}

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

.btn-primary {
  background: var(--brass);
  color: var(--ink);
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background: var(--brass-deep);
  box-shadow: 0 10px 28px rgba(198, 161, 91, 0.35);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}

.btn-ghost:hover {
  border-color: var(--ink);
}

.section-dark .btn-ghost {
  color: var(--white);
  border-color: var(--ink-line);
}

.section-dark .btn-ghost:hover {
  border-color: var(--white);
}

.btn-block {
  width: 100%;
}

.btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* ---------- Header / Nav ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: var(--space-sm) 0;
  transition: background var(--dur-med) var(--ease-out),
    box-shadow var(--dur-med) var(--ease-out),
    padding var(--dur-med) var(--ease-out);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}

.site-header.is-scrolled {
  background: rgba(250, 249, 246, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: var(--shadow-sm);
  padding: var(--space-2xs) 0;
}

.site-header .wordmark {
  color: var(--white);
  transition: color var(--dur-med) var(--ease-out);
}

.site-header.is-scrolled .wordmark {
  color: var(--ink);
}

.site-header .wordmark-suffix {
  color: rgba(255, 255, 255, 0.68);
  transition: color var(--dur-med) var(--ease-out);
}

.site-header.is-scrolled .wordmark-suffix {
  color: var(--muted);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--white);
  position: relative;
  padding: 4px 0;
  transition: color var(--dur-fast) var(--ease-out);
}

.is-scrolled .nav-links a {
  color: var(--ink);
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--brass);
  transition: width var(--dur-med) var(--ease-out);
}

.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after {
  width: 100%;
}

.nav-book-cta {
  background: var(--brass);
  color: var(--ink) !important;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  transition: background var(--dur-fast) var(--ease-out), transform var(--dur-fast) var(--ease-out);
}

.nav-book-cta:hover {
  background: var(--brass-deep);
  transform: translateY(-1px);
}

.nav-book-cta::after {
  display: none;
}

@media (max-width: 900px) {
  .nav-book-cta {
    color: var(--ink) !important;
    padding: 12px 20px;
    text-align: center;
    width: 100%;
  }
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.nav-call {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2xs);
  font-weight: 600;
  color: var(--white);
  font-size: 0.95rem;
  transition: color var(--dur-fast) var(--ease-out);
}

.is-scrolled .nav-call {
  color: var(--ink);
}

.nav-call svg {
  width: 18px;
  height: 18px;
  color: var(--brass);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: var(--space-2xs);
  color: var(--white);
}

.nav-close {
  display: none;
  position: absolute;
  top: var(--space-md);
  right: var(--space-lg);
  background: none;
  border: none;
  color: var(--white);
  padding: var(--space-2xs);
}

.nav-close svg {
  width: 24px;
  height: 24px;
}

.is-scrolled .nav-toggle {
  color: var(--ink);
}

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

@media (max-width: 900px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: min(320px, 84vw);
    background: var(--ink);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: var(--space-lg);
    padding: var(--space-xl) var(--space-lg);
    transform: translateX(100%);
    transition: transform var(--dur-med) var(--ease-out);
    box-shadow: var(--shadow-lg);
  }

  .nav-links.is-open {
    transform: translateX(0);
  }

  .nav-links a {
    color: var(--white);
    font-size: 1.15rem;
  }

  .nav-actions .nav-call span {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-close {
    display: inline-flex;
  }
}

.nav-scrim {
  position: fixed;
  inset: 0;
  background: rgba(14, 17, 22, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--dur-med) var(--ease-out);
  z-index: 90;
}

.nav-scrim.is-open {
  opacity: 1;
  pointer-events: auto;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  min-height: 92svh;
  display: flex;
  align-items: flex-end;
  color: var(--white);
  overflow: hidden;
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  /* This is a real photo of the owners — keep it recognizable. Just
     enough softening for cinematic depth and to keep the gradient +
     glass card doing the legibility work, not the blur. */
  filter: saturate(1.06) brightness(0.92);
  transform: scale(1.04);
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
      180deg,
      rgba(7, 9, 13, 0.86) 0%,
      rgba(7, 9, 13, 0.52) 40%,
      rgba(6, 8, 11, 0.9) 100%
    ),
    radial-gradient(ellipse 60% 55% at 18% 68%, rgba(4, 5, 7, 0.55), transparent 70%);
}

.hero-inner {
  padding: calc(var(--space-3xl) + 40px) 0 var(--space-2xl);
  width: 100%;
}

.hero-content {
  max-width: 700px;
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  background: rgba(9, 11, 15, 0.38);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px) saturate(1.1);
  -webkit-backdrop-filter: blur(18px) saturate(1.1);
}

.hero-content .btn-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
}

.hero-content .btn-ghost:hover {
  border-color: var(--white);
}

@media (max-width: 640px) {
  .hero-content {
    background: rgba(9, 11, 15, 0.5);
  }
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin: var(--space-md) 0 var(--space-lg);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--ink-line);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(6px);
  color: var(--white);
}

.badge svg {
  width: 15px;
  height: 15px;
  color: var(--brass);
  flex-shrink: 0;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.hero-lede {
  color: rgba(255, 255, 255, 0.82);
}

.hero-scroll-cue {
  position: absolute;
  bottom: var(--space-lg);
  right: var(--space-md);
  display: flex;
  align-items: center;
  gap: var(--space-2xs);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
}

.hero-scroll-cue .line {
  width: 1px;
  height: 34px;
  background: rgba(255, 255, 255, 0.4);
  overflow: hidden;
}

.hero-scroll-cue .line::after {
  content: "";
  display: block;
  width: 100%;
  height: 40%;
  background: var(--brass);
  animation: scrollcue 1.8s ease-in-out infinite;
}

@keyframes scrollcue {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(250%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-scroll-cue .line::after {
    animation: none;
  }
}

@media (max-width: 640px) {
  .hero {
    min-height: 100vh;
    min-height: 100svh;
    align-items: flex-end;
  }
  .hero-scroll-cue {
    display: none;
  }
  .hero-inner {
    padding-top: 0;
    padding-bottom: var(--space-md);
  }
  .hero-content {
    max-width: none;
    padding: var(--space-sm) var(--space-sm) var(--space-md);
  }
  .hero-content h1 {
    font-size: 1.85rem;
    line-height: 1.15;
  }
  .hero-content .eyebrow {
    font-size: 0.7rem;
  }
  .hero-content .lede {
    font-size: 0.9rem;
    margin-bottom: var(--space-sm);
  }
  .hero-badges {
    margin-top: var(--space-2xs);
    gap: 6px;
  }
  .hero-badges .badge {
    padding: 6px 11px;
    font-size: 0.74rem;
  }
  .hero-badges .badge:nth-child(n + 3) {
    display: none;
  }
  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
    gap: var(--space-2xs);
  }
  .hero-ctas .btn {
    width: 100%;
  }
  .hero-ctas .btn-ghost {
    background: transparent;
    border-color: transparent;
    color: var(--muted-dark);
    text-decoration: underline;
    text-underline-offset: 3px;
    padding-top: 4px;
    padding-bottom: 4px;
    min-height: auto;
  }
}

/* ---------- Page header (non-home hero) ---------- */
.page-hero {
  position: relative;
  padding: calc(var(--space-3xl) + 20px) 0 var(--space-2xl);
  color: var(--white);
  background: var(--ink);
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 82% 20%, rgba(198, 161, 91, 0.16), transparent 55%);
}

.page-hero .container {
  position: relative;
}

.page-hero p {
  max-width: 60ch;
}

.breadcrumb-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--muted-dark);
  margin-bottom: var(--space-md);
}

.breadcrumb-nav a {
  color: var(--muted-dark);
  transition: color var(--dur-fast) var(--ease-out);
}

.breadcrumb-nav a:hover {
  color: var(--white);
}

.breadcrumb-nav span[aria-hidden] {
  opacity: 0.5;
}

@media (max-width: 640px) {
  .page-hero {
    padding: calc(var(--space-xl) + 56px) 0 var(--space-lg);
  }
}

/* ---------- Trust strip ---------- */
.trust-strip {
  background: var(--ink);
  color: var(--white);
  padding: var(--space-md) 0;
}

.trust-strip .container {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm) var(--space-lg);
  justify-content: center;
  align-items: center;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-2xs);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--muted-dark);
}

.trust-item svg {
  width: 18px;
  height: 18px;
  color: var(--brass);
}

/* ---------- Cards / Grids ---------- */
.grid {
  display: grid;
  gap: var(--space-md);
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

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

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 980px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .grid-4,
  .grid-3,
  .grid-2 {
    grid-template-columns: 1fr;
  }
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: var(--space-lg) var(--space-md);
  transition: transform var(--dur-med) var(--ease-out),
    box-shadow var(--dur-med) var(--ease-out),
    border-color var(--dur-med) var(--ease-out);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.card-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--brass-tint);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
}

.card-icon svg {
  width: 26px;
  height: 26px;
  color: var(--brass-deep);
}

.card h3 {
  margin-bottom: var(--space-2xs);
}

.card p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: var(--space-sm);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--brass-text);
}

.card-link svg {
  width: 14px;
  height: 14px;
  transition: transform var(--dur-fast) var(--ease-out);
}

.card-link:hover svg {
  transform: translateX(3px);
}

/* ---------- Process steps ---------- */
.steps {
  counter-reset: step;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

@media (max-width: 768px) {
  .steps {
    grid-template-columns: 1fr;
  }
}

.step {
  position: relative;
  padding-top: var(--space-md);
}

.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--brass);
  display: block;
  margin-bottom: var(--space-2xs);
}

/* ---------- Split sections ---------- */
.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--space-2xl);
  align-items: center;
}

.split.reverse {
  grid-template-columns: 0.9fr 1.1fr;
}

.split.reverse .split-media {
  order: 2;
}

@media (max-width: 900px) {
  .split,
  .split.reverse {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
  .split.reverse .split-media {
    order: 0;
  }
}

.split-media {
  position: relative;
}

.split-media img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  width: 100%;
  height: auto;
}

.split-media-frame {
  position: absolute;
  inset: 18px -18px -18px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  z-index: -1;
}

.stat-chip {
  position: absolute;
  bottom: -22px;
  left: -22px;
  background: var(--ink);
  color: var(--white);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.stat-chip strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--brass);
}

.stat-chip span {
  font-size: 0.78rem;
  color: var(--muted-dark);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

@media (max-width: 640px) {
  .stat-chip {
    left: var(--space-sm);
    bottom: -18px;
    padding: var(--space-xs) var(--space-sm);
  }
}

/* ---------- Checklist ---------- */
.checklist li {
  display: flex;
  gap: var(--space-xs);
  padding: var(--space-2xs) 0;
  color: var(--ink);
}

.checklist li svg {
  width: 20px;
  height: 20px;
  color: var(--brass-deep);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ---------- Reviews ---------- */
.google-rating-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: var(--space-sm);
  padding: 9px 18px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--line);
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--ink);
  transition: border-color var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast) var(--ease-out);
}

.google-rating-chip:hover {
  border-color: var(--ink);
  box-shadow: var(--shadow-sm);
}

.review-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.review-stars {
  display: flex;
  gap: 3px;
  color: var(--brass);
}

.review-stars svg {
  width: 16px;
  height: 16px;
}

.review-quote {
  color: var(--ink);
  font-size: 1rem;
  margin: 0;
}

.review-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--muted);
}

.review-note {
  margin-top: var(--space-lg);
  padding: var(--space-md);
  border: 1px dashed var(--line);
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  color: var(--muted);
}

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--ink);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl) var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 90% -10%, rgba(198, 161, 91, 0.28), transparent 55%);
}

.cta-band > * {
  position: relative;
}

.cta-band h2 {
  margin-bottom: var(--space-2xs);
  color: var(--white);
}

.cta-band p {
  margin: 0;
  color: var(--muted-dark);
}

/* ---------- Forms ---------- */
.field {
  margin-bottom: var(--space-md);
}

.field label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 6px;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 13px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: var(--white);
  font-family: inherit;
  font-size: 1rem;
  color: var(--ink);
  transition: border-color var(--dur-fast) var(--ease-out);
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--brass-deep);
  outline: none;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

@media (max-width: 560px) {
  .field-row {
    grid-template-columns: 1fr;
  }
}

.form-note {
  font-size: 0.82rem;
  color: var(--muted);
}

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

.form-status {
  display: none;
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: var(--space-md);
}

.form-status.is-visible {
  display: block;
}

.form-status.success {
  background: rgba(120, 160, 110, 0.15);
  color: #3c6b2f;
}

.form-status.error {
  background: rgba(179, 57, 44, 0.12);
  color: var(--danger);
}

/* ---------- Map ---------- */
.map-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
}

.map-frame iframe {
  width: 100%;
  height: 420px;
  border: 0;
  display: block;
}

/* ---------- Area tags ---------- */
.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2xs);
}

.area-tags li {
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--line);
  font-size: 0.88rem;
  font-weight: 500;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: var(--muted-dark);
  padding: var(--space-2xl) 0 var(--space-lg);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: var(--space-lg);
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid var(--ink-line);
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.footer-grid h4 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: var(--space-sm);
}

.footer-grid ul li {
  margin-bottom: var(--space-2xs);
}

.footer-grid a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-sm);
  padding-top: var(--space-md);
  font-size: 0.82rem;
}

/* ---------- Sticky mobile call bar ----------
   Two thumb-reachable actions, not one — Call is the highest-intent
   action, but Text matches how the "snap a photo" flow actually works. */
.mobile-call-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 95;
  background: rgba(14, 17, 22, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid var(--ink-line);
  padding: 8px var(--space-sm);
  padding-bottom: max(8px, env(safe-area-inset-bottom));
}

.mobile-call-bar-row {
  display: flex;
  gap: 8px;
}

.mobile-call-bar a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-weight: 600;
  font-size: 0.86rem;
  padding: 9px;
  border-radius: var(--radius-pill);
  min-height: 44px;
  flex: 1;
}

.mobile-call-bar a.bar-primary {
  background: var(--brass);
  color: var(--ink);
}

.mobile-call-bar a.bar-secondary {
  background: transparent;
  color: var(--muted-dark);
  border: 1px solid var(--ink-line);
}

.mobile-call-bar svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

@media (max-width: 640px) {
  .mobile-call-bar {
    display: block;
  }
  body {
    padding-bottom: 64px;
  }
}

/* ---------- Reveal animation hook ----------
   Elements are visible by default (no-JS / reduced-motion safe).
   JS applies the hidden starting state itself (see js/main.js) right
   before wiring up the ScrollTrigger, so there's never a state where
   content is stuck invisible because a script failed to load. */
.js-ready .reveal {
  transition: opacity 480ms var(--ease-out), transform 480ms var(--ease-out);
}

/* ---------- Misc utility ---------- */
.text-center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-head {
  max-width: 640px;
  margin-bottom: var(--space-xl);
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.mt-lg {
  margin-top: var(--space-lg);
}

.divider {
  height: 1px;
  background: var(--line);
  border: none;
  margin: var(--space-2xl) 0;
}

.section-dark .divider {
  background: var(--ink-line);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--brass);
  color: var(--ink);
  padding: 12px 20px;
  z-index: 200;
  border-radius: 0 0 var(--radius-sm) 0;
  font-weight: 600;
}

.skip-link:focus {
  left: 0;
}

/* ============================================================
   Booking flow — one question at a time, Typeform-style
   ============================================================ */
.booking-shell {
  min-height: 100svh;
  background: var(--ink);
  color: var(--white);
  display: flex;
  flex-direction: column;
}

.booking-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  padding: var(--space-sm) var(--space-md);
}

.booking-exit {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--muted-dark);
}

.booking-exit svg {
  width: 16px;
  height: 16px;
}

.booking-exit:hover {
  color: var(--white);
}

.booking-progress-track {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(255, 255, 255, 0.08);
  z-index: 50;
}

.booking-progress-fill {
  height: 100%;
  width: 8%;
  background: var(--brass);
  transition: width 420ms var(--ease-out);
}

.booking-stage {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-lg) var(--space-md) var(--space-2xl);
}

.booking-step {
  width: 100%;
  max-width: 560px;
  display: none;
}

.booking-step.is-active {
  display: block;
}

.booking-step-count {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--brass);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: var(--space-sm);
}

.booking-step h1 {
  font-size: clamp(1.6rem, 3.4vw + 1rem, 2.5rem);
  margin-bottom: var(--space-2xs);
}

.booking-step-hint {
  color: var(--muted-dark);
  margin-bottom: var(--space-lg);
}

.booking-input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 2px solid rgba(255, 255, 255, 0.22);
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.6vw + 1rem, 1.9rem);
  padding: var(--space-sm) 2px;
  transition: border-color var(--dur-fast) var(--ease-out);
}

.booking-input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.booking-input:focus {
  outline: none;
  border-bottom-color: var(--brass);
}

.address-suggestions {
  list-style: none;
  margin: 6px 0 0;
  padding: 6px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--ink-line);
  border-radius: var(--radius-md);
  max-height: 240px;
  overflow-y: auto;
}

.address-suggestions li {
  padding: 11px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  color: var(--white);
  cursor: pointer;
  transition: background var(--dur-fast) var(--ease-out);
}

.address-suggestions li:hover,
.address-suggestions li.is-active {
  background: rgba(198, 161, 91, 0.16);
  color: var(--brass);
}

.booking-error {
  color: #e7a2a2;
  font-size: 0.85rem;
  margin-top: var(--space-xs);
  min-height: 1.2em;
}

.booking-actions {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-top: var(--space-xl);
}

.booking-actions .btn-primary {
  min-width: 140px;
}

.booking-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--muted-dark);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 12px 6px;
}

.booking-back:hover {
  color: var(--white);
}

.booking-back svg {
  width: 16px;
  height: 16px;
}

.booking-hint-key {
  font-size: 0.78rem;
  color: var(--muted-dark);
  margin-top: var(--space-sm);
}

.booking-hint-key kbd {
  display: inline-block;
  padding: 2px 7px;
  border: 1px solid var(--ink-line);
  border-radius: 5px;
  font-family: inherit;
  font-size: 0.78rem;
}

/* Service picker cards */
.service-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
}

@media (max-width: 560px) {
  .service-options {
    grid-template-columns: 1fr;
  }
}

.service-option {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-md);
  border: 1.5px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.03);
  text-align: left;
  color: var(--white);
  font-weight: 600;
  min-height: 56px;
  transition: border-color var(--dur-fast) var(--ease-out), background var(--dur-fast) var(--ease-out);
}

.service-option svg {
  width: 22px;
  height: 22px;
  color: var(--brass);
  flex-shrink: 0;
}

.service-option:hover {
  border-color: rgba(198, 161, 91, 0.5);
}

.service-option.is-selected {
  border-color: var(--brass);
  background: rgba(198, 161, 91, 0.12);
}

/* Result step */
.booking-result-header {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.booking-result-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(198, 161, 91, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.booking-result-icon svg {
  width: 26px;
  height: 26px;
  color: var(--brass);
}

.booking-summary {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--ink-line);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  margin-bottom: var(--space-lg);
  font-size: 0.92rem;
}

.booking-summary div {
  display: flex;
  justify-content: space-between;
  gap: var(--space-sm);
  padding: 6px 0;
  border-bottom: 1px solid var(--ink-line);
}

.booking-summary div:last-child {
  border-bottom: none;
}

.booking-summary dt {
  color: var(--muted-dark);
}

.booking-summary dd {
  margin: 0;
  font-weight: 600;
  text-align: right;
}

.booking-embed-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--ink-line);
  background: var(--white);
  margin-top: var(--space-md);
}

.booking-embed-frame iframe {
  width: 100%;
  height: 640px;
  border: 0;
  display: block;
}

.booking-fallback-link {
  display: block;
  text-align: center;
  padding: var(--space-sm);
  font-size: 0.85rem;
  color: var(--muted-dark);
}

@media (max-width: 640px) {
  .booking-embed-frame iframe {
    height: 70vh;
  }
  .booking-actions {
    flex-direction: column-reverse;
    align-items: stretch;
  }
  .booking-actions .btn {
    width: 100%;
  }
  .booking-back {
    justify-content: center;
  }
}
