/* Smogery — full redesign */
:root {
  --hue-orange: 14;
  --hue-teal: 188;
  --accent: hsl(var(--hue-orange) 90% 54%);
  --accent-soft: hsl(var(--hue-orange) 85% 95%);
  --accent-strong: hsl(var(--hue-orange) 82% 42%);
  --teal: hsl(var(--hue-teal) 55% 28%);
  --teal-glow: hsl(var(--hue-teal) 60% 42%);
  --ink: hsl(215 35% 9%);
  --ink-soft: hsl(215 18% 26%);
  --muted: hsl(215 12% 42%);
  --surface: hsl(40 33% 99%);
  --surface-raised: hsl(0 0% 100%);
  --surface-muted: hsl(35 16% 96%);
  --surface-night: hsl(215 42% 6%);
  --surface-night-mid: hsl(215 35% 11%);
  --border: hsl(35 14% 88%);
  --border-strong: hsl(35 12% 78%);
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --radius-xl: 28px;
  --shadow-xs: 0 1px 2px hsl(215 35% 9% / 0.04);
  --shadow-sm: 0 6px 20px hsl(215 35% 9% / 0.06);
  --shadow-md: 0 16px 48px hsl(215 35% 9% / 0.09);
  --shadow-glow: 0 12px 40px hsl(var(--hue-orange) 90% 54% / 0.22);
  --font-display: "Syne", system-ui, sans-serif;
  --font-body: "DM Sans", system-ui, sans-serif;
  --max: 1140px;
  --header-h: 76px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background-color: var(--surface-muted);
  background-image:
    radial-gradient(ellipse 120% 80% at 100% -20%, hsl(var(--hue-orange) 90% 94% / 0.35), transparent 52%),
    radial-gradient(ellipse 90% 60% at -10% 40%, hsl(var(--hue-teal) 45% 88% / 0.18), transparent 45%);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
}

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

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

a:hover {
  color: var(--accent);
}

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--surface-night);
  color: #fff;
  padding: 0.55rem 1rem;
  z-index: 1000;
  font-weight: 600;
  border-radius: var(--radius-sm);
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: linear-gradient(
    180deg,
    hsl(40 38% 99.5% / 0.96) 0%,
    hsl(40 28% 98.5% / 0.9) 100%
  );
  backdrop-filter: blur(18px) saturate(165%);
  border-bottom: 1px solid hsl(35 14% 90%);
  box-shadow:
    0 1px 0 hsl(0 0% 100% / 0.65) inset,
    0 12px 36px hsl(215 35% 9% / 0.06);
}

.site-header::after {
  content: "";
  display: block;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--accent-strong) 0%,
    var(--accent) 38%,
    var(--teal-glow) 100%
  );
  opacity: 1;
}

.header-inner {
  display: grid;
  grid-template-columns: 1fr auto auto;
  grid-template-rows: auto auto;
  gap: 0.65rem 0.85rem;
  align-items: center;
  min-height: calc(var(--header-h) + 4px);
  padding-block: 0.65rem;
}

.logo {
  grid-column: 1;
  grid-row: 1;
  align-self: center;
  padding: 0.2rem 0.35rem 0.2rem 0;
  margin: -0.2rem 0;
  border-radius: var(--radius-sm);
  transition: box-shadow 0.2s var(--ease-out), background 0.2s var(--ease-out);
}

.logo:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

.logo:hover {
  background: hsl(var(--hue-orange) 95% 97% / 0.65);
}

.logo img {
  width: min(184px, 44vw);
  height: auto;
  filter: drop-shadow(0 2px 10px hsl(215 35% 9% / 0.07));
}

.nav-toggle {
  grid-column: 2;
  grid-row: 1;
  justify-self: end;
  width: 48px;
  height: 48px;
  border: 1px solid hsl(35 12% 82%);
  border-radius: var(--radius);
  background: linear-gradient(180deg, hsl(0 0% 100%) 0%, hsl(35 18% 97%) 100%);
  cursor: pointer;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 0;
  transition:
    border-color 0.2s var(--ease-out),
    box-shadow 0.2s var(--ease-out),
    transform 0.15s var(--ease-out);
}

.nav-toggle:hover {
  border-color: hsl(var(--hue-orange) 65% 72%);
  box-shadow: 0 6px 18px hsl(var(--hue-orange) 70% 50% / 0.12);
}

.nav-toggle:active {
  transform: scale(0.97);
}

.nav-toggle span:nth-child(-n + 3) {
  display: block;
  width: 20px;
  height: 2px;
  background: linear-gradient(90deg, var(--ink-soft), var(--ink));
  border-radius: 2px;
  transition: transform 0.28s var(--ease-out), opacity 0.2s;
}

.nav-toggle[aria-expanded="true"] {
  border-color: hsl(var(--hue-orange) 58% 62%);
  box-shadow: 0 0 0 3px hsl(var(--hue-orange) 90% 92%);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

.btn-header {
  grid-column: 3;
  grid-row: 1;
  font-size: 0.74rem;
  padding: 0.52rem 0.92rem;
  white-space: nowrap;
  letter-spacing: 0.02em;
  box-shadow:
    0 8px 22px hsl(var(--hue-orange) 85% 48% / 0.28),
    inset 0 1px 0 hsl(0 0% 100% / 0.22);
}

.site-nav {
  grid-column: 1 / -1;
  grid-row: 2;
  width: 100%;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.42s var(--ease-out);
}

.site-nav.is-open {
  max-height: 72vh;
  overflow: auto;
}

.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0.55rem 0.65rem;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  background: hsl(0 0% 100% / 0.94);
  border: 1px solid hsl(35 14% 88%);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.site-nav a {
  display: block;
  padding: 0.62rem 0.62rem;
  color: var(--ink);
  text-decoration: none;
  border-radius: var(--radius-sm);
  font-weight: 560;
  font-size: 0.93rem;
  letter-spacing: -0.015em;
  transition:
    background 0.18s var(--ease-out),
    color 0.18s var(--ease-out),
    box-shadow 0.18s var(--ease-out);
  user-select: none;
  -webkit-user-select: none;
}

.site-nav a:hover:not([aria-current="page"]) {
  background: hsl(35 22% 96%);
  color: var(--ink);
}

.site-nav a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.site-nav a[aria-current="page"] {
  background: linear-gradient(
    135deg,
    hsl(var(--hue-orange) 92% 94%) 0%,
    hsl(var(--hue-orange) 85% 92%) 100%
  );
  color: var(--accent-strong);
  font-weight: 700;
  box-shadow:
    inset 0 1px 0 hsl(0 0% 100% / 0.75),
    0 1px 3px hsl(var(--hue-orange) 70% 45% / 0.12);
}

@media (min-width: 1024px) {
  .header-inner {
    grid-template-columns: auto minmax(0, 1fr) auto;
    grid-template-rows: auto;
    gap: 1rem 1.35rem;
    align-items: center;
  }

  .logo {
    grid-column: 1;
    grid-row: 1;
  }

  .site-nav {
    grid-column: 2;
    grid-row: 1;
    justify-self: center;
    max-width: min(52rem, 100%);
    width: 100%;
    max-height: none;
    overflow: visible;
  }

  .site-nav ul {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.12rem;
    padding: 0.38rem 0.48rem;
    background: hsl(35 18% 96% / 0.92);
    border: 1px solid hsl(35 14% 88%);
    border-radius: 999px;
    box-shadow:
      inset 0 1px 0 hsl(0 0% 100% / 0.85),
      0 4px 14px hsl(215 35% 9% / 0.04);
  }

  .site-nav a {
    padding: 0.48rem 0.72rem;
    font-size: 0.765rem;
    border-radius: 999px;
  }

  .site-nav a[aria-current="page"] {
    background: linear-gradient(145deg, var(--accent) 0%, var(--accent-strong) 100%);
    color: #fff !important;
    box-shadow:
      0 6px 18px hsl(var(--hue-orange) 85% 48% / 0.35),
      inset 0 1px 0 hsl(0 0% 100% / 0.25);
  }

  .site-nav a:hover:not([aria-current="page"]) {
    background: hsl(0 0% 100% / 0.88);
    color: var(--ink);
    box-shadow: 0 2px 8px hsl(215 35% 9% / 0.05);
  }

  .btn-header {
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
    font-size: 0.82rem;
    padding: 0.62rem 1.2rem;
  }

  .nav-toggle {
    display: none;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.72rem 1.35rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 650;
  font-size: 0.92rem;
  letter-spacing: -0.01em;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.18s var(--ease-out), box-shadow 0.2s, filter 0.2s;
}

.btn:active {
  transform: scale(0.98);
}

.btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
  color: #fff !important;
  box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
  filter: brightness(1.06);
  box-shadow: 0 14px 44px hsl(var(--hue-orange) 90% 50% / 0.28);
  color: #fff !important;
}

.btn-ghost {
  background: hsl(0 0% 100% / 0.92);
  color: var(--ink) !important;
  border: 1px solid var(--border-strong);
  box-shadow: var(--shadow-xs);
}

.btn-ghost:hover {
  border-color: var(--accent);
  background: var(--surface-raised);
}

/* Hero */
.hero {
  position: relative;
  min-height: min(82vh, 700px);
  display: grid;
  align-items: end;
  color: #fff;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 48px), 0 100%);
}

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

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.15s var(--ease-out);
}

.hero-slide.is-active {
  opacity: 1;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(165deg, hsl(215 42% 6% / 0.92) 0%, hsl(215 35% 12% / 0.55) 42%, hsl(var(--hue-orange) 70% 22% / 0.35) 100%),
    radial-gradient(ellipse 70% 55% at 20% 90%, hsl(var(--hue-orange) 80% 40% / 0.25), transparent 55%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
  padding: 4.25rem 0 3.75rem;
}

.hero-panel {
  max-width: 38rem;
  padding: 1.75rem 1.85rem;
  border-radius: var(--radius-xl);
  background: hsl(215 42% 8% / 0.45);
  backdrop-filter: blur(16px) saturate(140%);
  border: 1px solid hsl(0 0% 100% / 0.12);
  box-shadow: 0 24px 60px hsl(215 42% 4% / 0.35);
}

.hero-eyebrow {
  margin: 0 0 0.85rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: hsl(var(--hue-orange) 95% 78%);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.35rem);
  font-weight: 800;
  line-height: 1.08;
  margin: 0 0 1rem;
  letter-spacing: -0.035em;
}

.hero p {
  margin: 0 0 1.65rem;
  max-width: 36ch;
  font-size: 1.07rem;
  line-height: 1.62;
  color: hsl(40 15% 92%);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.hero-dots {
  display: flex;
  gap: 10px;
  margin-top: 1.65rem;
}

.hero-dots button {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  border: none;
  background: hsl(0 0% 100% / 0.35);
  cursor: pointer;
  padding: 0;
  transition: transform 0.2s, background 0.2s;
}

.hero-dots button:hover {
  background: hsl(0 0% 100% / 0.55);
}

.hero-dots button.is-active {
  background: #fff;
  transform: scale(1.18);
}

.hero-dots button:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

.hero-btn-secondary {
  background: hsl(0 0% 100% / 0.14);
  border: 1px solid hsl(0 0% 100% / 0.38);
  color: #fff !important;
  backdrop-filter: blur(10px);
  box-shadow: none;
}

.hero-btn-secondary:hover {
  background: hsl(0 0% 100% / 0.22);
  border-color: hsl(0 0% 100% / 0.55);
  color: #fff !important;
}

/* Hero — awards over slides (right side) */
.award-figure {
  margin: 0;
  width: 100%;
}

.award-figure img {
  display: block;
  margin-inline: auto;
  width: 100%;
  height: auto;
  aspect-ratio: 560 / 640;
  object-fit: contain;
  border-radius: var(--radius-md);
}

.hero-awards {
  position: absolute;
  z-index: 3;
  right: clamp(1.35rem, 5.5vw, 4.25rem);
  top: 50%;
  translate: 0 -50%;
  pointer-events: none;
}

.hero-awards-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.hero-awards .award-figure {
  max-width: clamp(4.5rem, 10vw, 11rem);
}

.hero-awards .award-figure img {
  filter: drop-shadow(0 6px 18px hsl(215 42% 4% / 0.45));
}

@media (max-width: 720px) {
  .hero-awards {
    top: auto;
    bottom: clamp(4.5rem, 14vw, 6rem);
    translate: none;
    right: clamp(1rem, 5vw, 2rem);
  }

  .hero-awards-grid {
    flex-direction: row;
    gap: 0.45rem;
  }

  .hero-awards .award-figure {
    max-width: clamp(3.75rem, 22vw, 6.5rem);
  }
}

/* Sections */
main > section {
  padding: clamp(3rem, 6vw, 5rem) 0;
  position: relative;
}

main > section.why-wrap {
  padding-block: 0;
}

section.alt {
  background: var(--surface-raised);
  border-block: 1px solid var(--border);
}

.section-head {
  margin-bottom: clamp(1.75rem, 4vw, 2.75rem);
  max-width: 42rem;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3.5vw, 2.35rem);
  font-weight: 800;
  margin: 0 0 0.55rem;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.section-head p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.card-grid {
  display: grid;
  gap: 1.35rem;
}

@media (min-width: 720px) {
  .card-grid.cols-2 {
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
  }

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

.card {
  background: var(--surface-raised);
  border-radius: var(--radius-lg);
  padding: 1.85rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: box-shadow 0.25s var(--ease-out), border-color 0.2s;
}

.card:hover {
  box-shadow: var(--shadow-md);
  border-color: hsl(var(--hue-orange) 60% 88%);
}

.card h3 {
  margin-top: 0;
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 700;
}

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

ul.checklist li {
  position: relative;
  padding-left: 1.65rem;
  margin-bottom: 0.95rem;
  font-size: 1.02rem;
}

ul.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  box-shadow: 0 0 0 3px var(--accent-soft);
}

.steps {
  counter-reset: step;
  display: grid;
  gap: 1.25rem;
  position: relative;
}

@media (min-width: 900px) {
  .steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }

  .steps::before {
    content: "";
    position: absolute;
    top: 2.25rem;
    left: 12%;
    right: 12%;
    height: 2px;
    background: linear-gradient(90deg, var(--border-strong), var(--accent-soft), var(--border-strong));
    z-index: 0;
  }

  .step {
    position: relative;
    z-index: 1;
  }
}

.step {
  position: relative;
  overflow: visible;
  background: linear-gradient(155deg, var(--surface-night-mid) 0%, var(--surface-night) 100%);
  color: hsl(35 20% 94%);
  padding: 1.65rem 1.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid hsl(215 25% 22%);
  box-shadow: var(--shadow-md);
}

.step::before {
  counter-increment: step;
  content: counter(step);
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  opacity: 0.22;
  position: absolute;
  right: 1rem;
  top: 0.55rem;
  color: hsl(var(--hue-orange) 90% 70%);
}

.step h3 {
  margin: 0 0 0.55rem;
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
}

.step p {
  margin: 0;
  font-size: 0.96rem;
  opacity: 0.88;
  line-height: 1.58;
}

.pill {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--accent-strong);
  background: var(--accent-soft);
  padding: 0.32rem 0.72rem;
  border-radius: 999px;
  margin-bottom: 0.85rem;
}

.pill--on-dark {
  background: hsl(0 0% 100% / 0.1);
  color: hsl(var(--hue-orange) 95% 82%);
}

.cities {
  display: grid;
  gap: 1.35rem;
}

@media (min-width: 720px) {
  .cities {
    grid-template-columns: 1fr 1fr;
  }
}

.city-block {
  background: var(--surface-raised);
  padding: 1.65rem 1.6rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  border-left: 4px solid var(--teal-glow);
  box-shadow: var(--shadow-xs);
}

.city-block h3 {
  margin: 0 0 0.45rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
}

.banner-soft {
  background:
    linear-gradient(135deg, var(--accent-soft) 0%, hsl(var(--hue-teal) 40% 94%) 100%);
  border: 1px solid hsl(var(--hue-orange) 60% 84%);
  border-radius: var(--radius-xl);
  padding: 2rem 1.75rem;
  text-align: center;
  margin-top: 2rem;
  box-shadow: var(--shadow-sm);
}

.banner-soft h3 {
  font-family: var(--font-display);
  margin: 0 0 0.45rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.banner-soft .btn-primary {
  margin-top: 1.15rem;
}

.why-wrap {
  background: linear-gradient(180deg, var(--surface-night) 0%, hsl(215 42% 5%) 100%);
  padding: clamp(3rem, 6vw, 5rem) 0;
  margin-top: 0;
}

.why-panel {
  background: hsl(215 35% 11%);
  color: hsl(35 18% 94%);
  border-radius: var(--radius-xl);
  padding: clamp(2rem, 4vw, 2.85rem);
  border: 1px solid hsl(215 22% 22%);
  box-shadow: var(--shadow-md), inset 0 1px 0 hsl(0 0% 100% / 0.05);
}

.why-panel h2 {
  font-family: var(--font-display);
  color: #fff;
  margin-top: 0;
  margin-bottom: 0.35rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.why-panel a {
  color: hsl(var(--hue-orange) 95% 72%);
}

.why-panel a:hover {
  color: hsl(var(--hue-orange) 98% 85%);
}

.why-list {
  display: grid;
  gap: 0.85rem;
  margin: 1.35rem 0 0;
  padding: 0;
  list-style: none;
}

.why-list li {
  padding: 1.05rem 1.15rem 1.05rem 3.25rem;
  background: hsl(215 28% 14%);
  border-radius: var(--radius);
  border: 1px solid hsl(215 22% 20%);
  position: relative;
  font-size: 0.98rem;
  line-height: 1.55;
}

.why-list li::before {
  content: "";
  position: absolute;
  left: 1rem;
  top: 50%;
  translate: 0 -50%;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  box-shadow: 0 4px 14px hsl(var(--hue-orange) 90% 50% / 0.35);
}

.why-list li::after {
  content: "";
  position: absolute;
  left: 1.34rem;
  top: 50%;
  translate: 0 -50%;
  width: 6px;
  height: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg) translate(-1px, -2px);
}

.why-footnote {
  margin-bottom: 0 !important;
  margin-top: 1.35rem !important;
  opacity: 0.72 !important;
  font-size: 0.9rem !important;
}

/* Inner pages hero */
.page-hero {
  position: relative;
  background: var(--surface-raised);
  padding: clamp(2.25rem, 5vw, 3.25rem) 0;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -15%;
  width: min(55vw, 420px);
  height: min(55vw, 420px);
  border-radius: 50%;
  background: radial-gradient(circle, hsl(var(--hue-orange) 85% 92% / 0.65), transparent 68%);
  pointer-events: none;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  font-family: var(--font-display);
  margin: 0 0 0.55rem;
  font-size: clamp(1.85rem, 3.5vw, 2.45rem);
  font-weight: 800;
  letter-spacing: -0.035em;
}

.page-hero p {
  margin: 0;
  color: var(--muted);
  max-width: 54ch;
  font-size: 1.07rem;
}

.contact-hero-details {
  margin-top: 0.5rem;
}

.page-hero p + .contact-hero-details {
  margin-top: 0.9rem;
}

.contact-hero-details p {
  margin: 0.55rem 0 0;
  color: var(--muted);
  max-width: 56ch;
  font-size: 1.02rem;
  line-height: 1.55;
}

.contact-hero-details p.mt-0 {
  margin-top: 0;
}

.contact-hero-details strong {
  color: var(--ink);
  font-weight: 650;
}

.contact-hero-details a {
  color: var(--accent-strong);
}

/* Contact page — two-column layout */
.contact-split-section {
  padding: clamp(1.5rem, 4vw, 2.5rem) 0 clamp(2.75rem, 6vw, 4.5rem);
}

.contact-split {
  display: grid;
  gap: clamp(1.75rem, 3vw, 2.5rem);
  align-items: start;
}

@media (min-width: 900px) {
  .contact-split {
    grid-template-columns: minmax(260px, 1fr) minmax(300px, 1.12fr);
    gap: clamp(2rem, 4.5vw, 3.5rem);
  }
}

.contact-sidebar {
  background: var(--surface-raised);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: clamp(1.5rem, 3vw, 2.1rem);
  box-shadow: var(--shadow-sm);
}

.contact-sidebar-title {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.2vw, 1.4rem);
  font-weight: 800;
  margin: 0 0 1.2rem;
  letter-spacing: -0.025em;
  color: var(--ink);
}

.contact-block + .contact-block {
  margin-top: 1.2rem;
  padding-top: 1.15rem;
  border-top: 1px solid var(--border);
}

.contact-block-label {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 0.42rem;
  font-family: var(--font-display);
}

.contact-block-body {
  margin: 0;
  font-size: 1rem;
  line-height: 1.55;
  color: var(--ink);
}

.contact-locations .contact-block-body + .contact-block-body {
  margin-top: 0.8rem;
}

.contact-sidebar a {
  color: var(--accent-strong);
  text-decoration: none;
}

.contact-sidebar a:hover {
  text-decoration: underline;
}

.contact-form-title {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.2vw, 1.4rem);
  font-weight: 800;
  margin: 0 0 1rem;
  letter-spacing: -0.025em;
  color: var(--ink);
}

.contact-form-column {
  min-width: 0;
}

.contact-page .form-card {
  margin-bottom: 0;
}

.service-request-page .contact-sidebar-lede {
  margin: -0.35rem 0 1.25rem;
  font-size: 0.98rem;
  line-height: 1.58;
  color: var(--muted);
}

.form-page .container-narrow {
  max-width: 720px;
  margin-inline: auto;
  width: min(100% - 2rem, 720px);
}

.form-card {
  background: var(--surface-raised);
  padding: clamp(1.75rem, 4vw, 2.35rem);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  margin-bottom: 3rem;
}

.form-card form {
  position: relative;
}

.city-intro {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  align-items: center;
}

.city-intro-copy {
  flex: 1;
  min-width: 200px;
}

.city-intro-copy p {
  margin: 0;
  color: var(--muted);
}

.city-intro-img {
  flex-shrink: 0;
  width: min(132px, 28vw);
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.city-intro-card.form-card {
  margin-bottom: 1.35rem;
}

.form-grid {
  display: grid;
  gap: 1rem;
}

.form-card form .form-grid + .form-grid {
  margin-top: 1rem;
}

.form-card form .checkbox-row + .form-grid {
  margin-top: 1rem;
}

@media (min-width: 640px) {
  .form-grid.two {
    grid-template-columns: 1fr 1fr;
  }
}

label {
  font-weight: 650;
  font-size: 0.84rem;
  display: block;
  margin-bottom: 0.38rem;
  color: var(--ink-soft);
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
input[type="date"],
select,
textarea {
  width: 100%;
  padding: 0.72rem 0.95rem;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  font: inherit;
  background: var(--surface-muted);
  transition: border-color 0.15s, box-shadow 0.15s;
}

input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}

textarea {
  resize: vertical;
  min-height: 140px;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.15rem;
}

.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 0.72rem;
  margin-bottom: 0.85rem;
}

.checkbox-row input {
  margin-top: 0.28rem;
  accent-color: var(--accent-strong);
}

.checkbox-row label {
  margin: 0;
  font-weight: 500;
}

.form-attest {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0 0 1rem;
  color: var(--accent-strong);
}

.form-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.form-email-note {
  font-size: 0.92rem;
  color: var(--muted);
  margin: 0 0 1.15rem;
  line-height: 1.55;
}

.thanks-card {
  margin-bottom: 2rem;
}

.thanks-card-last {
  margin-bottom: 0;
}

.thanks-actions {
  margin-top: 1.5rem;
}

/* Accordion */
.accordion {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.accordion-item {
  background: var(--surface-raised);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow-xs);
}

.accordion-trigger {
  width: 100%;
  text-align: left;
  padding: 1.05rem 1.35rem;
  font-family: var(--font-body);
  font-weight: 650;
  font-size: 1rem;
  background: var(--surface-raised);
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  color: var(--ink);
  transition: background 0.15s;
}

.accordion-trigger:hover {
  background: var(--surface-muted);
}

.accordion-trigger:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: -2px;
}

.accordion-trigger::after {
  content: "+";
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--accent-strong);
  flex-shrink: 0;
  width: 1.75rem;
  height: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: var(--accent-soft);
}

.accordion-item.is-open .accordion-trigger::after {
  content: "−";
}

.accordion-panel {
  display: none;
  padding: 0 1.35rem 1.25rem;
  color: var(--muted);
  font-size: 0.98rem;
}

.accordion-item.is-open .accordion-panel {
  display: block;
}

.prose {
  max-width: 72ch;
}

.prose .card p:last-child {
  margin-bottom: 0;
}

.prose p {
  margin: 0 0 1rem;
}

.pricing-feature {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  flex-wrap: wrap;
}

.pricing-feature img {
  width: min(100%, 460px);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  object-fit: cover;
  aspect-ratio: 3 / 2;
  max-height: min(52vw, 290px);
}

.pricing-feature > div {
  flex: 1;
  min-width: 260px;
}

.pricing-feature .lead-pricing {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
}

.pricing-feature .lead-pricing a {
  text-decoration: none;
}

.pricing-feature .lead-pricing a:hover {
  text-decoration: underline;
}

/* Footer */
.site-footer {
  background: var(--surface-night);
  color: hsl(215 12% 72%);
  margin-top: 0;
  border-top: 1px solid hsl(215 22% 18%);
}

.footer-main {
  display: grid;
  gap: 2.25rem;
  padding: clamp(2.75rem, 5vw, 3.75rem) 0;
}

@media (min-width: 768px) {
  .footer-main {
    grid-template-columns: 1.35fr 1fr 1fr 1fr;
    align-items: start;
  }
}

.footer-brand .footer-logo img {
  width: min(168px, 50vw);
  height: auto;
  opacity: 0.97;
}

.footer-tagline {
  margin: 0.85rem 0 0;
  font-size: 0.94rem;
  line-height: 1.55;
  max-width: 26ch;
}

.footer-nav-title {
  display: block;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: hsl(35 15% 78%);
  margin-bottom: 0.85rem;
}

.footer-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.footer-nav a {
  color: hsl(215 15% 82%);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
}

.footer-nav a:hover {
  color: hsl(var(--hue-orange) 95% 76%);
}

.footer-connect a {
  color: hsl(var(--hue-orange) 90% 72%);
}

.footer-email {
  margin: 0.75rem 0 0;
  font-size: 0.92rem;
}

.footer-phone {
  margin: 0.85rem 0 0;
  font-size: 0.92rem;
  line-height: 1.45;
}

.footer-hours {
  margin: 0.75rem 0 0;
  font-size: 0.85rem;
  line-height: 1.45;
  color: hsl(215 15% 76%);
}

.footer-hours-title {
  display: block;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: hsl(35 15% 78%);
  margin-bottom: 0.35rem;
}

.footer-hours-line {
  margin: 0.15rem 0 0;
}

.footer-bottom {
  border-top: 1px solid hsl(215 22% 16%);
  padding: 1.25rem 0;
  background: hsl(215 42% 5%);
}

.footer-bottom-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: space-between;
  align-items: center;
}

.copyright {
  margin: 0;
  font-size: 0.86rem;
  color: hsl(215 12% 58%);
}

.copyright a {
  color: hsl(215 15% 74%);
}

.social {
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
}

.social a {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: hsl(215 28% 14%);
  border: 1px solid hsl(215 22% 22%);
  text-decoration: none;
  font-weight: 750;
  font-size: 0.72rem;
  letter-spacing: 0.02em;
  color: hsl(35 18% 92%);
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
}

.social a:hover {
  background: hsl(var(--hue-orange) 70% 36%);
  border-color: hsl(var(--hue-orange) 75% 44%);
  color: #fff;
  transform: translateY(-2px);
}

.mt-0 {
  margin-top: 0;
}

.text-center {
  text-align: center;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-slide {
    transition-duration: 0.01ms;
  }

  .btn,
  .social a {
    transition: none;
  }
}
