:root {
  --bg: #ffffff;
  --text: #0f172a;
  --muted: #64748b;
  --surface: rgba(255, 255, 255, 0.9);
  --surface-2: #f8fafc;
  --border: rgba(15, 23, 42, 0.12);
  --grid: rgba(15, 23, 42, 0.06);

  --header-bg: rgba(255, 255, 255, 0.82);
  --header-shadow: 0 14px 44px rgba(15, 23, 42, 0.12);
  --nav-toggle-bg: rgba(255, 255, 255, 0.7);

  --surface-elev-1: rgba(255, 255, 255, 0.72);
  --surface-elev-2: rgba(255, 255, 255, 0.86);
  --subtle-bg: rgba(15, 23, 42, 0.04);
  --subtle-border: rgba(15, 23, 42, 0.08);

  --media-bg: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 252, 0.86));
  --feature-bg: linear-gradient(90deg, rgba(22, 163, 74, 0.09), rgba(15, 23, 42, 0.04));

  --field-bg: rgba(255, 255, 255, 0.85);

  --pill-bg: rgba(22, 163, 74, 0.1);
  --pill-border: rgba(22, 163, 74, 0.2);
  --pill-text: var(--primary-dark);

  --spot-1: rgba(125, 255, 0, 0.16);
  --spot-2: rgba(122, 58, 19, 0.1);
  --spot-3: rgba(34, 197, 94, 0.14);

  /* Logo palette */
  --logo-green-1: #d7ff63;
  --logo-green-2: #7dff00;
  --logo-green-3: #22c55e;
  --logo-green-4: #0f7a2e;
  --logo-gold-1: #ffd46b;
  --logo-gold-2: #ff9f1a;
  --logo-brown-1: #7a3a13;
  --logo-brown-2: #3a1c0a;

  --primary: var(--logo-green-3);
  --primary-dark: var(--logo-green-4);
  --accent-1: var(--logo-green-2);
  --accent-2: var(--logo-brown-1);

  --radius: 16px;
  --radius-sm: 12px;
  --shadow: 0 18px 50px rgba(15, 23, 42, 0.14);
  --shadow-sm: 0 10px 26px rgba(15, 23, 42, 0.08);
  --ring: 0 0 0 4px rgba(34, 197, 94, 0.22);

  --container: 1160px;
}

html[data-theme="dark"] {
  --bg: #050807;
  --text: rgba(255, 255, 255, 0.92);
  --muted: rgba(226, 232, 240, 0.74);
  --surface: rgba(9, 12, 10, 0.72);
  --surface-2: rgba(7, 10, 8, 0.82);
  --border: rgba(255, 255, 255, 0.12);
  --grid: rgba(255, 255, 255, 0.06);

  --header-bg: rgba(6, 8, 7, 0.72);
  --header-shadow: 0 14px 44px rgba(0, 0, 0, 0.38);
  --nav-toggle-bg: rgba(9, 12, 10, 0.72);

  --surface-elev-1: rgba(14, 18, 16, 0.78);
  --surface-elev-2: rgba(18, 24, 20, 0.88);
  --subtle-bg: rgba(255, 255, 255, 0.06);
  --subtle-border: rgba(255, 255, 255, 0.12);

  --media-bg: linear-gradient(180deg, rgba(12, 16, 14, 0.92), rgba(7, 10, 8, 0.86));
  --feature-bg: linear-gradient(90deg, rgba(22, 163, 74, 0.14), rgba(255, 255, 255, 0.06));

  --field-bg: rgba(14, 18, 16, 0.88);

  --pill-bg: rgba(22, 163, 74, 0.16);
  --pill-border: rgba(34, 197, 94, 0.24);
  --pill-text: color-mix(in srgb, var(--accent-1) 70%, var(--text));

  --spot-1: rgba(125, 255, 0, 0.12);
  --spot-2: rgba(255, 159, 26, 0.08);
  --spot-3: rgba(34, 197, 94, 0.1);
}

html[data-theme="dark"] .kicker {
  color: color-mix(in srgb, var(--accent-1) 65%, var(--text));
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Noto Sans", ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial,
    sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(900px 560px at 20% 10%, var(--spot-1), transparent 60%),
    radial-gradient(980px 620px at 85% 15%, var(--spot-2), transparent 58%),
    radial-gradient(760px 520px at 55% 90%, var(--spot-3), transparent 60%);
  background-size: 140% 140%;
  background-position: 0% 0%, 100% 0%, 50% 100%;
  animation: bg-float 18s ease-in-out infinite;
}

@keyframes bg-float {
  0% {
    background-position: 0% 0%, 100% 0%, 50% 100%;
    filter: saturate(1);
  }
  50% {
    background-position: 80% 30%, 20% 60%, 50% 20%;
    filter: saturate(1.05);
  }
  100% {
    background-position: 100% 100%, 0% 100%, 50% 0%;
    filter: saturate(1);
  }
}

h1,
h2,
h3,
h4 {
  font-family: "Montserrat", ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial,
    sans-serif;
  color: var(--text);
  line-height: 1.2;
}

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

a:hover {
  color: var(--primary-dark);
}

.container {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

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

.skip-link {
  position: absolute;
  left: 12px;
  top: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--text) 90%, transparent);
  color: color-mix(in srgb, var(--bg) 95%, transparent);
  transform: translateY(-200%);
  z-index: 1000;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: var(--header-bg);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.site-header[data-elevate="true"] {
  border-bottom-color: var(--border);
  box-shadow: var(--header-shadow);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  position: relative;
}

.brand-img {
  display: block;
  height: 84px;
  width: auto;
  max-width: min(520px, 62vw);
  object-fit: contain;
  position: relative;
  z-index: 1;
  transform-origin: 50% 70%;
  will-change: transform;
  filter:
    drop-shadow(0 2px 0 rgba(255, 255, 255, 0.35))
    drop-shadow(0 6px 10px rgba(0, 0, 0, 0.22))
    drop-shadow(0 18px 34px rgba(0, 0, 0, 0.22));
  animation: logo-shock 2.5s ease-in-out infinite;
}

@keyframes logo-shock {
  0%,
  74%,
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
    filter:
      drop-shadow(0 2px 0 rgba(255, 255, 255, 0.35))
      drop-shadow(0 6px 10px rgba(0, 0, 0, 0.22))
      drop-shadow(0 18px 34px rgba(0, 0, 0, 0.22));
  }
  76% {
    transform: translate3d(-1px, -1px, 0) rotate(-1deg) scale(1.03);
    filter:
      drop-shadow(0 2px 0 rgba(255, 255, 255, 0.35))
      drop-shadow(0 8px 18px rgba(0, 0, 0, 0.28))
      drop-shadow(0 0 22px color-mix(in srgb, var(--accent-1) 55%, transparent));
  }
  78% {
    transform: translate3d(1px, 0px, 0) rotate(1.2deg) scale(1.045);
    filter:
      drop-shadow(0 2px 0 rgba(255, 255, 255, 0.35))
      drop-shadow(0 10px 24px rgba(0, 0, 0, 0.3))
      drop-shadow(0 0 28px color-mix(in srgb, var(--accent-1) 65%, transparent));
  }
  80% {
    transform: translate3d(-2px, 1px, 0) rotate(-1.6deg) scale(1.03);
    filter:
      drop-shadow(0 2px 0 rgba(255, 255, 255, 0.35))
      drop-shadow(0 8px 18px rgba(0, 0, 0, 0.26))
      drop-shadow(0 0 20px color-mix(in srgb, var(--primary) 55%, transparent));
  }
  82% {
    transform: translate3d(0, 0, 0) rotate(0.5deg) scale(1.015);
    filter:
      drop-shadow(0 2px 0 rgba(255, 255, 255, 0.35))
      drop-shadow(0 8px 18px rgba(0, 0, 0, 0.24))
      drop-shadow(0 0 16px color-mix(in srgb, var(--accent-1) 40%, transparent));
  }
  86% {
    transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
    filter:
      drop-shadow(0 2px 0 rgba(255, 255, 255, 0.35))
      drop-shadow(0 6px 10px rgba(0, 0, 0, 0.22))
      drop-shadow(0 18px 34px rgba(0, 0, 0, 0.22));
  }
}

.brand:hover .brand-img {
  animation-duration: 3.2s;
}

@media (max-width: 860px) {
  .brand-img {
    height: 64px;
    max-width: min(420px, 82vw);
  }
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 14px;
}

.site-nav a {
  font-weight: 800;
  font-size: 13px;
  color: color-mix(in srgb, var(--text) 78%, transparent);
}

.site-nav a.is-active {
  color: var(--text);
}

.site-nav a.cta {
  padding: 10px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), var(--accent-1));
  color: #07120b;
  font-weight: 900;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: var(--shadow-sm);
}

.site-nav a.cta:hover {
  background: linear-gradient(135deg, var(--primary-dark), var(--accent-1));
  color: #07120b;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--nav-toggle-bg);
}

.nav-toggle-lines {
  display: block;
  width: 18px;
  height: 2px;
  background: color-mix(in srgb, var(--text) 92%, transparent);
  margin: 0 auto;
  position: relative;
  border-radius: 99px;
}

.nav-toggle-lines::before,
.nav-toggle-lines::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: color-mix(in srgb, var(--text) 92%, transparent);
  border-radius: 99px;
}

.theme-toggle {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--nav-toggle-bg);
  display: inline-grid;
  place-items: center;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease, background 160ms ease;
}

.theme-toggle::before {
  content: "";
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--text) 92%, transparent);
  box-shadow: 0 0 0 6px color-mix(in srgb, var(--accent-1) 22%, transparent);
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

html[data-theme="dark"] .theme-toggle::before {
  transform: translateX(2px);
  box-shadow: 0 0 0 6px color-mix(in srgb, var(--accent-1) 18%, transparent);
}

html:not([data-theme="dark"]) .theme-toggle::before {
  transform: translateX(-2px);
}

.theme-toggle:hover {
  transform: translateY(-1px);
}

.theme-toggle:active {
  transform: translateY(0) scale(0.98);
}

.theme-toggle:focus-visible {
  outline: none;
  box-shadow: var(--shadow-sm), var(--ring);
}

.nav-toggle-lines::before {
  top: -6px;
}

.nav-toggle-lines::after {
  top: 6px;
}

.hero {
  position: relative;
  padding: 20px 0 56px;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(var(--grid) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(560px 340px at 25% 18%, black 25%, transparent 70%);
  opacity: 0.5;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 22px;
  align-items: start;
}

.kicker {
  margin: 0 0 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  font-size: 12px;
  color: color-mix(in srgb, var(--primary-dark) 88%, var(--accent-2));
  text-transform: uppercase;
}

.hero-copy {
  padding: 24px 6px;
}

.hero-copy h1 {
  margin: 0 0 12px;
  font-size: clamp(34px, 4.6vw, 56px);
  letter-spacing: -0.03em;
}

.hero-sub {
  margin: 0;
  color: color-mix(in srgb, var(--text) 70%, transparent);
  max-width: 62ch;
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 18px;
  flex-wrap: wrap;
}

.local-bar {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.local-item {
  border: 1px solid color-mix(in srgb, var(--border) 80%, transparent);
  border-radius: var(--radius);
  background: var(--surface-elev-1);
  padding: 10px 12px;
  display: grid;
  gap: 4px;
}

.local-strong {
  font-weight: 900;
  color: color-mix(in srgb, var(--text) 88%, transparent);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 12px 16px;
  font-weight: 900;
  font-family: "Noto Sans", ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial,
    sans-serif;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transform: translateZ(0);
  transition:
    transform 170ms cubic-bezier(0.2, 0.9, 0.2, 1),
    box-shadow 170ms cubic-bezier(0.2, 0.9, 0.2, 1),
    background 170ms ease,
    border-color 170ms ease,
    filter 170ms ease;
}

.button::after {
  content: "";
  position: absolute;
  inset: -40%;
  pointer-events: none;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255, 255, 255, 0.0) 35%,
    rgba(255, 255, 255, 0.55) 50%,
    rgba(255, 255, 255, 0.0) 65%,
    transparent 100%
  );
  transform: translateX(-120%) skewX(-16deg);
  opacity: 0;
  mix-blend-mode: overlay;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
  filter: brightness(1.02);
}

.button:active {
  transform: translateY(0) scale(0.98);
}

.button:hover::after {
  opacity: 0.9;
  animation: btn-sheen 800ms ease-out;
}

.button:active::after {
  opacity: 0.25;
}

.button.primary {
  background: linear-gradient(135deg, var(--primary), var(--accent-1));
  color: #07120b;
}

.button.primary:hover {
  background: linear-gradient(135deg, var(--primary-dark), var(--accent-1));
}

.button.outline {
  background: var(--surface-elev-1);
  border-color: var(--border);
  color: var(--text);
}

.button.subtle {
  background: var(--subtle-bg);
  border-color: var(--subtle-border);
  color: var(--text);
}

.button.block {
  width: 100%;
}

.button:focus-visible,
.site-nav a:focus-visible {
  outline: none;
  box-shadow: var(--ring);
}

.site-nav a.cta {
  position: relative;
  overflow: hidden;
  transform: translateZ(0);
}

.site-nav a.cta::after {
  content: "";
  position: absolute;
  inset: -40%;
  pointer-events: none;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255, 255, 255, 0.0) 35%,
    rgba(255, 255, 255, 0.55) 50%,
    rgba(255, 255, 255, 0.0) 65%,
    transparent 100%
  );
  transform: translateX(-120%) skewX(-16deg);
  opacity: 0;
  mix-blend-mode: overlay;
}

.site-nav a.cta:hover::after {
  opacity: 0.9;
  animation: btn-sheen 800ms ease-out;
}

@keyframes btn-sheen {
  0% {
    transform: translateX(-120%) skewX(-16deg);
  }
  100% {
    transform: translateX(120%) skewX(-16deg);
  }
}

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

.trust-item {
  padding: 12px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--surface-elev-1);
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.trust-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
  background: var(--surface-elev-2);
}

.trust-k {
  display: block;
  font-size: 12px;
  color: var(--muted);
  font-weight: 900;
}

.trust-v {
  display: block;
  font-weight: 900;
}

.hero-media {
  display: grid;
  gap: 14px;
}

.media-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--media-bg);
  box-shadow: var(--shadow);
  padding: 22px;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.tilt:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.media-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.pill {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 6px 10px;
  border: 1px solid var(--border);
  background: var(--pill-bg);
  font-weight: 900;
  font-size: 12px;
  color: var(--pill-text);
}

.pill.pill-subtle {
  background: var(--subtle-bg);
  color: color-mix(in srgb, var(--text) 78%, transparent);
}

.media-card h2 {
  margin: 0 0 8px;
  font-size: 20px;
}

.media-actions {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.logo-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.logo {
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface-elev-1);
  color: color-mix(in srgb, var(--text) 80%, transparent);
  font-weight: 900;
  font-size: 13px;
}

.section {
  padding: 72px 0;
}

.section.alt {
  background: var(--surface-2);
  border-top: 1px solid color-mix(in srgb, var(--border) 60%, transparent);
  border-bottom: 1px solid color-mix(in srgb, var(--border) 60%, transparent);
}

.section-head {
  margin-bottom: 18px;
}

.section-head.centered {
  text-align: center;
}

.section-head h2 {
  margin: 0 0 8px;
  font-size: 34px;
  letter-spacing: -0.02em;
}

.split-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.cards-3.cards-center {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

/* Gallery */
.gallery-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 14px;
}

.gallery-item {
  grid-column: span 6;
  border-radius: var(--radius);
  border: 1px solid color-mix(in srgb, var(--border) 85%, transparent);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  display: block;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.gallery-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: color-mix(in srgb, var(--primary) 30%, var(--border));
}

.gallery-item figure {
  margin: 0;
  display: grid;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  max-height: 320px;
  object-fit: cover;
  background: var(--surface-2);
}

.gallery-video {
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: 320px;
  background: #000;
  display: block;
}

.gallery-inline-video {
  cursor: default;
}

.gallery-inline-video:hover {
  transform: none;
}

.gallery-video-thumb {
  aspect-ratio: 16 / 9;
  background:
    radial-gradient(700px 220px at 20% 0%, var(--spot-1), transparent 60%),
    linear-gradient(135deg, color-mix(in srgb, var(--bg) 92%, #000000), color-mix(in srgb, var(--bg) 70%, #000000));
  position: relative;
}

.play-badge {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--border) 85%, transparent);
  background: color-mix(in srgb, var(--bg) 72%, transparent);
  color: color-mix(in srgb, var(--text) 90%, transparent);
  font-weight: 900;
}

.gallery-item figcaption {
  padding: 12px 14px 14px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.gallery-title {
  font-weight: 900;
  letter-spacing: -0.01em;
}

.gallery-meta {
  font-weight: 900;
  font-size: 12px;
  color: var(--muted);
  white-space: nowrap;
}

@media (max-width: 980px) {
  .gallery-item {
    grid-column: span 12;
  }

  .gallery-item img {
    max-height: 360px;
  }

  .gallery-video {
    max-height: 360px;
  }
}

/* Lightbox */
.lightbox {
  border: 0;
  padding: 0;
  width: min(980px, calc(100% - 28px));
  background: transparent;
}

.lightbox::backdrop {
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
}

.lightbox-inner {
  position: relative;
  border-radius: calc(var(--radius) + 4px);
  border: 1px solid color-mix(in srgb, var(--border) 80%, transparent);
  background: color-mix(in srgb, var(--bg) 94%, #000000);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.5);
  overflow: hidden;
}

.lightbox-media {
  background: #000;
  display: grid;
  place-items: center;
  max-height: 70vh;
}

.lightbox-media img,
.lightbox-media video {
  width: 100%;
  height: auto;
  max-height: 70vh;
  display: block;
  object-fit: contain;
}

.lightbox-caption {
  padding: 12px 14px 14px;
  background: color-mix(in srgb, var(--bg) 92%, #000000);
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.lightbox-title {
  font-weight: 900;
  color: var(--text);
}

.lightbox-meta {
  font-weight: 900;
  font-size: 12px;
  color: var(--muted);
  white-space: nowrap;
}

.lightbox-close {
  position: absolute;
  right: 10px;
  top: 10px;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--border) 80%, transparent);
  background: color-mix(in srgb, var(--bg) 86%, transparent);
  color: var(--text);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--border) 80%, transparent);
  background: color-mix(in srgb, var(--bg) 86%, transparent);
  color: var(--text);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}

.lightbox-nav.prev {
  left: 10px;
}

.lightbox-nav.next {
  right: 10px;
}

.lightbox-close:hover,
.lightbox-nav:hover {
  filter: brightness(1.06);
}

.lightbox-close:active {
  transform: scale(0.98);
}

.lightbox-nav:active {
  transform: translateY(-50%) scale(0.98);
}

@media (max-width: 1120px) {
  .cards-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.card,
.quote {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  padding: 22px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.card:hover,
.quote:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: color-mix(in srgb, var(--primary) 30%, var(--border));
}

.card h3 {
  margin: 0 0 10px;
  font-size: 18px;
}

.card p {
  margin: 0 0 14px;
  color: color-mix(in srgb, var(--text) 75%, transparent);
}

.card-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid color-mix(in srgb, var(--border) 80%, transparent);
  background: linear-gradient(135deg, rgba(22, 163, 74, 0.18), rgba(34, 197, 94, 0.12));
  margin-bottom: 12px;
  display: grid;
  place-items: center;
  color: color-mix(in srgb, var(--text) 85%, transparent);
}

.icon {
  width: 22px;
  height: 22px;
}

.mini-list {
  margin: 0;
  padding-left: 18px;
  color: color-mix(in srgb, var(--text) 70%, transparent);
}

.mini-list li {
  margin: 6px 0;
}

.feature-band {
  margin-top: 22px;
  border: 1px solid color-mix(in srgb, var(--border) 65%, transparent);
  border-radius: var(--radius);
  background: var(--feature-bg);
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chips span {
  display: inline-flex;
  align-items: center;
  border: 1px solid color-mix(in srgb, var(--border) 70%, transparent);
  background: var(--surface-elev-1);
  border-radius: 999px;
  padding: 8px 12px;
  font-weight: 900;
  font-size: 13px;
  color: color-mix(in srgb, var(--text) 80%, transparent);
}

.steps {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.step {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 18px;
  box-shadow: var(--shadow-sm);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.step:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.step-n {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-weight: 900;
  color: var(--pill-text);
  background: var(--pill-bg);
  border: 1px solid var(--pill-border);
  margin-bottom: 12px;
}

.step h3 {
  margin: 0 0 8px;
  font-size: 16px;
}

.step p {
  margin: 0;
}

.cta-row {
  margin-top: 18px;
  border: 1px solid color-mix(in srgb, var(--border) 65%, transparent);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 18px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: center;
}

.cta-row-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.stars {
  font-weight: 900;
  letter-spacing: 0.18em;
  color: #f59e0b;
  text-shadow: 0 2px 0 rgba(58, 28, 10, 0.18);
  margin-bottom: 10px;
}

.quote blockquote {
  margin: 0 0 12px;
  font-weight: 900;
  color: color-mix(in srgb, var(--text) 86%, transparent);
  letter-spacing: -0.01em;
}

.quote figcaption {
  display: grid;
  gap: 2px;
}

.who {
  font-weight: 900;
}

.where {
  color: var(--muted);
  display: block;
}

.faq {
  width: min(820px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 10px;
}

.faq-item {
  border: 1px solid color-mix(in srgb, var(--border) 80%, transparent);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 14px 16px;
  box-shadow: var(--shadow-sm);
  transition: border-color 160ms ease, transform 160ms ease;
}

.faq-item:hover {
  transform: translateY(-2px);
  border-color: color-mix(in srgb, var(--primary) 30%, var(--border));
}

.faq-item summary {
  cursor: pointer;
  font-weight: 900;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  float: right;
  color: color-mix(in srgb, var(--text) 60%, transparent);
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-item p {
  margin: 10px 0 0;
}

.schedule {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 18px;
  align-items: start;
}

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

.area-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
  align-items: start;
}

.map-card .map-embed {
  margin-top: 10px;
  width: 100%;
  height: 240px;
  border-radius: var(--radius);
  border: 1px solid color-mix(in srgb, var(--border) 85%, transparent);
  overflow: hidden;
  background: var(--surface-elev-1);
}

.map-card iframe.map-embed {
  display: block;
  border: 0;
}

.schedule h2 {
  margin: 0 0 8px;
}

.schedule-points {
  margin-top: 14px;
  display: grid;
  gap: 10px;
}

.point {
  border: 1px solid color-mix(in srgb, var(--border) 80%, transparent);
  border-radius: var(--radius);
  padding: 12px 14px;
  background: var(--surface-elev-1);
}

.point-k {
  display: block;
  font-size: 12px;
  color: var(--muted);
  font-weight: 900;
}

.point-v {
  display: block;
  font-weight: 900;
}

.form {
  width: min(720px, 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 22px;
  box-shadow: var(--shadow-sm);
  display: grid;
  gap: 14px;
}

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

label > span {
  display: block;
  font-weight: 900;
  font-size: 13px;
  margin-bottom: 6px;
  color: color-mix(in srgb, var(--text) 80%, transparent);
}

input,
textarea {
  width: 100%;
  padding: 12px 12px;
  border-radius: 12px;
  border: 1px solid color-mix(in srgb, var(--border) 95%, transparent);
  background: var(--field-bg);
  color: var(--text);
  font: inherit;
  transition: box-shadow 160ms ease, border-color 160ms ease, background 160ms ease;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: color-mix(in srgb, var(--primary) 70%, var(--border));
  box-shadow: var(--ring);
}

.fine {
  font-size: 12px;
  margin: 0;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--border) 70%, transparent);
  background: color-mix(in srgb, var(--bg) 18%, transparent);
  color: color-mix(in srgb, var(--text) 88%, transparent);
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.trust-badge::before {
  content: "✓";
  width: 18px;
  height: 18px;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  background: linear-gradient(135deg, var(--primary), var(--accent-1));
  color: #07120b;
  font-size: 12px;
}

.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: start;
}

.contact h2 {
  margin: 0 0 10px;
}

.contact-cards {
  margin-top: 14px;
  display: grid;
  gap: 10px;
}

.contact-card {
  border: 1px solid color-mix(in srgb, var(--border) 80%, transparent);
  border-radius: var(--radius);
  background: var(--surface-elev-1);
  padding: 14px;
  display: grid;
  gap: 6px;
}

.contact-card a {
  font-weight: 900;
}

.site-footer {
  padding: 44px 0 0;
  background: rgba(15, 23, 42, 0.96);
  color: rgba(255, 255, 255, 0.92);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 20px;
  padding-bottom: 28px;
}

.footer-col h4 {
  margin: 0 0 10px;
  color: #ffffff;
  font-size: 16px;
}

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

.footer-links a {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 800;
  font-size: 14px;
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 14px 0 22px;
}

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

  .trust {
    grid-template-columns: 1fr;
  }

  .cards-3 {
    grid-template-columns: 1fr;
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .cta-row {
    grid-template-columns: 1fr;
  }

  .local-bar {
    grid-template-columns: 1fr;
  }

  .schedule {
    grid-template-columns: 1fr;
  }

  .area-grid {
    grid-template-columns: 1fr;
  }

  .contact {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .site-nav {
    position: absolute;
    right: 16px;
    top: 66px;
    width: min(360px, calc(100% - 32px));
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 12px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 10px 12px;
    border-radius: 12px;
    background: color-mix(in srgb, var(--text) 6%, transparent);
  }

  .site-nav a.cta {
    background: var(--primary);
  }

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

[data-animate] {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 520ms ease, transform 520ms ease;
  will-change: transform, opacity;
}

[data-animate].in-view {
  opacity: 1;
  transform: translateY(0);
}

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

  body::before {
    animation: none;
  }

  .brand-img {
    animation: none;
  }

  [data-animate] {
    transition: none;
    transform: none;
    opacity: 1;
  }

  .button {
    transition: none;
  }

  .button::after,
  .site-nav a.cta::after {
    animation: none;
    opacity: 0;
  }
}
