:root {
  --font-sans: "Alumni Sans", "Helvetica Neue", Arial, sans-serif;
  --bg: #110b07;
  --bg-soft: #24170e;
  --surface: rgba(255, 247, 239, 0.06);
  --surface-strong: rgba(255, 247, 239, 0.1);
  --text: #fbf1e7;
  --muted: rgba(251, 241, 231, 0.8);
  --accent: #f2b36b;
  --accent-strong: #df8d3d;
  --accent-soft: rgba(242, 179, 107, 0.18);
  --accent-warm: #f4a45d;
  --accent-warm-strong: #d9782a;
  --accent-warm-soft: rgba(244, 164, 93, 0.2);
  --accent-contrast: #1b1009;
  --line: rgba(242, 179, 107, 0.18);
  --shadow: 0 22px 54px rgba(10, 5, 2, 0.36);
  --radius: 5px;
}

:root[data-theme="light"] {
  --bg: #fbf3e8;
  --bg-soft: #f1dfca;
  --surface: rgba(255, 251, 246, 0.76);
  --surface-strong: rgba(255, 251, 246, 0.94);
  --text: #24160d;
  --muted: rgba(36, 22, 13, 0.78);
  --accent: #b96922;
  --accent-strong: #8f4d16;
  --accent-soft: rgba(185, 105, 34, 0.16);
  --accent-warm: #c97525;
  --accent-warm-strong: #974f16;
  --accent-warm-soft: rgba(201, 117, 37, 0.18);
  --accent-contrast: #fff7ef;
  --line: rgba(88, 49, 18, 0.14);
  --shadow: 0 18px 42px rgba(46, 25, 9, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-sans);
  color: var(--text);
  background:
    radial-gradient(circle at 12% 14%, var(--accent-soft), transparent 24%),
    radial-gradient(circle at 88% 16%, var(--accent-warm-soft), transparent 20%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 100%);
}

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

a,
button {
  font: inherit;
}

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

button {
  color: inherit;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 20;
  background: linear-gradient(180deg, rgba(16, 9, 4, 0.94), rgba(16, 9, 4, 0.6));
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(242, 179, 107, 0.12);
}

:root[data-theme="light"] .site-header {
  background: linear-gradient(
    180deg,
    rgba(251, 243, 232, 0.96),
    rgba(251, 243, 232, 0.74)
  );
  border-bottom-color: rgba(88, 49, 18, 0.08);
}

.site-nav,
.content-block,
.feature,
.gallery,
.site-footer__inner {
  width: min(100% - 2rem, 74rem);
  margin-inline: auto;
}

.site-nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
  min-height: 5.3rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  min-width: 0;
}

.brand img {
  width: 3.2rem;
  height: auto;
  max-height: 3rem;
  object-fit: contain;
}

.brand__text {
  display: grid;
  gap: 0.08rem;
}

.brand__text strong,
h1,
h2,
h3,
.subheading,
.nav-menu a,
.theme-switch-text,
.site-footer li {
  font-family: var(--font-sans);
}

.brand__text strong {
  font-size: 1.28rem;
  letter-spacing: 0.1em;
}

.brand__text span:last-child {
  color: var(--muted);
  font-size: 0.92rem;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-left: auto;
}

.nav-menu a,
.provider-card,
.info-card,
.help-card,
.gallery-card,
.intro-card,
.site-footer__inner > div {
  border: 1px solid var(--line);
  background: var(--surface);
}

.nav-menu a {
  padding: 0.6rem 0.95rem;
  border-radius: 5px;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease;
}

:root[data-theme="light"] .nav-menu a {
  background: rgba(255, 255, 255, 0.58);
}

.nav-menu a:hover,
.nav-menu a:focus-visible,
.button:hover,
.button:focus-visible,
.gallery-card:hover,
.provider-card:hover {
  transform: translateY(-2px);
}

.nav-menu a:hover,
.nav-menu a:focus-visible {
  background: linear-gradient(180deg, var(--accent-warm-soft), rgba(255, 255, 255, 0.04));
  border-color: rgba(224, 151, 63, 0.5);
}

.nav-controls {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.theme-switch {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4.9rem;
  height: 2.8rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  position: relative;
  isolation: isolate;
}

.theme-switch::after {
  content: attr(data-tooltip);
  position: absolute;
  left: 50%;
  top: calc(100% + 0.55rem);
  transform: translate(-50%, -0.35rem);
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  background: rgba(17, 11, 7, 0.96);
  border: 1px solid rgba(246, 212, 177, 0.16);
  color: #fbf1e7;
  font-size: 0.74rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.04em;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.2);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
  z-index: 4;
}

:root[data-theme="light"] .theme-switch::after {
  background: rgba(255, 251, 246, 0.98);
  border-color: rgba(88, 49, 18, 0.14);
  color: #24160d;
}

.theme-switch-track {
  position: relative;
  width: 4.6rem;
  height: 2.45rem;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0.45rem;
  border-radius: 999px;
  background:
    radial-gradient(circle at 22% 30%, rgba(255, 255, 255, 0.22), transparent 22%),
    linear-gradient(135deg, #23140b 0%, #f0a258 100%);
  border: 1px solid rgba(242, 179, 107, 0.5);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 10px 24px rgba(18, 8, 2, 0.24);
  overflow: hidden;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

:root[data-theme="light"] .theme-switch-track {
  background:
    radial-gradient(circle at 78% 26%, rgba(255, 255, 255, 0.85), transparent 20%),
    linear-gradient(135deg, #d18034 0%, #f6d4b1 100%);
  border-color: rgba(88, 49, 18, 0.24);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.8),
    0 10px 20px rgba(46, 25, 9, 0.14);
}

.theme-switch-icon {
  position: relative;
  z-index: 1;
  font-size: 0.95rem;
  line-height: 1;
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.theme-switch-icon--moon {
  color: rgba(238, 245, 252, 0.9);
}

.theme-switch-icon--sun {
  color: rgba(50, 28, 13, 0.82);
}

.theme-switch-thumb {
  position: absolute;
  top: 0.24rem;
  left: 0.28rem;
  width: 1.95rem;
  height: 1.95rem;
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 30%, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.6) 38%, transparent 40%),
    linear-gradient(180deg, #fffefc 0%, #f7d7b4 100%);
  box-shadow:
    0 5px 14px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
  transform: translateX(0);
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease;
}

.theme-switch[aria-checked="true"] .theme-switch-thumb {
  transform: translateX(2.08rem);
  background:
    radial-gradient(circle at 65% 34%, rgba(255, 255, 255, 0.12), transparent 32%),
    linear-gradient(180deg, #f3c089 0%, #cf7b2e 100%);
  box-shadow:
    0 5px 14px rgba(0, 0, 0, 0.28),
    inset -7px -5px 0 rgba(73, 38, 16, 0.16);
}

.theme-switch-text {
  font-size: 1rem;
  line-height: 1;
  letter-spacing: 0.04em;
}

.theme-switch:hover .theme-switch-track,
.theme-switch:focus-visible .theme-switch-track {
  border-color: rgba(242, 179, 107, 0.72);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    0 12px 28px rgba(37, 19, 7, 0.24);
}

.theme-switch:hover::after,
.theme-switch:focus-visible::after {
  opacity: 1;
  transform: translate(-50%, 0);
}

.theme-switch:focus-visible {
  outline: 2px solid rgba(242, 179, 107, 0.55);
  outline-offset: 4px;
  border-radius: 999px;
}

.theme-switch[aria-checked="true"] .theme-switch-icon--moon {
  opacity: 1;
  transform: translateX(-0.08rem);
}

.theme-switch[aria-checked="true"] .theme-switch-icon--sun {
  opacity: 0.42;
  transform: translateX(0.08rem);
}

.theme-switch[aria-checked="false"] .theme-switch-icon--moon {
  opacity: 0.45;
  transform: translateX(-0.08rem);
}

.theme-switch[aria-checked="false"] .theme-switch-icon--sun {
  opacity: 1;
  transform: translateX(0.08rem);
}

.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;
}

.burger {
  display: none;
  width: 3rem;
  height: 3rem;
  padding: 0.5rem;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  cursor: pointer;
}

.burger .line {
  display: block;
  width: 100%;
  height: 3px;
  margin: 0 0 5px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.burger .line:last-child {
  margin-bottom: 0;
}

.hero {
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding: 7rem 0 3rem;
}

.hero__inner {
  width: min(100% - 2rem, 74rem);
  margin-inline: auto;
  display: grid;
  gap: 2rem;
  align-items: center;
}

.hero__copy {
  display: grid;
  gap: 1rem;
}

.eyebrow {
  margin: 0;
  color: var(--accent-warm);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.92rem;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 0.96;
}

h1 {
  font-size: clamp(3.4rem, 10vw, 6.6rem);
  letter-spacing: 0.01em;
}

h2 {
  font-size: clamp(2.25rem, 6vw, 4rem);
  letter-spacing: 0.01em;
}

h3 {
  font-size: 1.3rem;
}

.hero__lead,
.provider-card p,
.feature__copy p,
.section-heading p,
.info-card p,
.site-footer p,
.site-footer li,
.help-card p,
.checklist li {
  line-height: 1.6;
  color: var(--muted);
}

.hero__lead {
  max-width: 42rem;
  font-size: clamp(1.08rem, 2vw, 1.35rem);
}

.hero__details {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.hero__details li {
  padding: 0;
  color: var(--text);
}

:root[data-theme="light"] .hero__details li {
  background: transparent;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 11rem;
  padding: 0.85rem 1.3rem;
  border-radius: 5px;
  border: 1px solid transparent;
  background: linear-gradient(180deg, var(--accent-warm) 0%, var(--accent-warm-strong) 100%);
  color: var(--accent-contrast);
  box-shadow: var(--shadow);
  transition:
    transform 180ms ease,
    background-color 180ms ease;
}

.button--ghost {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  border-color: rgba(224, 151, 63, 0.34);
}

.button--small {
  min-width: 0;
  padding: 0.68rem 1rem;
  font-size: 0.95rem;
}

:root[data-theme="light"] .button--ghost {
  background: rgba(255, 255, 255, 0.84);
}

.button--ghost:hover,
.button--ghost:focus-visible {
  background: var(--accent-warm-soft);
}

.hero-visual {
  position: relative;
  min-height: 25rem;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) * 1.2);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0)),
    linear-gradient(180deg, rgba(35, 20, 10, 0.78), rgba(14, 9, 5, 0.94));
  box-shadow: var(--shadow);
}

:root[data-theme="light"] .hero-visual {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0.12)),
    linear-gradient(180deg, rgba(248, 229, 206, 0.92), rgba(241, 214, 180, 0.9));
}

.hero-visual__map {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 3.8rem 3.8rem;
  background-position: 0 0, 0 0;
  opacity: 0.52;
  animation: mapDrift 18s linear infinite alternate;
}

.hero-visual__map::before,
.hero-visual__map::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-visual__map::before {
  background:
    radial-gradient(circle at 20% 66%, rgba(242, 179, 107, 0.16), transparent 0 12%),
    radial-gradient(circle at 49% 49%, rgba(255, 216, 170, 0.12), transparent 0 10%),
    radial-gradient(circle at 73% 61%, rgba(217, 120, 42, 0.2), transparent 0 12%);
  opacity: 0.9;
  animation: mapPulse 6.4s ease-in-out infinite;
}

.hero-visual__map::after {
  background: linear-gradient(
    100deg,
    transparent 0 38%,
    rgba(255, 255, 255, 0.04) 45% 52%,
    transparent 60% 100%
  );
  transform: translateX(-10%);
  opacity: 0.3;
  animation: mapSweep 7.6s ease-in-out infinite;
}

.hero-visual__path {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.hero-visual__path-track,
.hero-visual__path-progress {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-visual__path-track {
  stroke: rgba(255, 255, 255, 0.14);
  stroke-width: 5.5;
}

.hero-visual__path-progress {
  stroke: var(--accent-warm);
  stroke-width: 6;
  filter: drop-shadow(0 0 0.55rem rgba(224, 151, 63, 0.34));
}

.hero-visual__street,
.hero-visual__route,
.hero-visual__package,
.hero-visual__label,
.hero-visual__building,
.hero-visual__marker,
.hero-visual__node {
  position: absolute;
}

.hero-visual__street {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 999px;
}

.hero-visual__street--one {
  left: 12%;
  top: 28%;
  width: 62%;
  height: 0.7rem;
  transform: rotate(-8deg);
}

.hero-visual__street--two {
  left: 48%;
  top: 16%;
  width: 0.7rem;
  height: 62%;
}

.hero-visual__street--three {
  left: 18%;
  bottom: 24%;
  width: 58%;
  height: 0.7rem;
  transform: rotate(10deg);
}

.hero-visual__route {
  border-top: 3px dashed var(--accent);
  transform-origin: left center;
  opacity: 0.28;
  animation: routeEcho 6.4s ease-in-out infinite;
}

.hero-visual__route--one {
  left: 15%;
  top: 60%;
  width: 27%;
  transform: rotate(-24deg);
  animation-delay: 0s;
}

.hero-visual__route--two {
  left: 47%;
  top: 48%;
  width: 34%;
  transform: rotate(16deg);
  animation-delay: 2.8s;
}

.hero-visual__node {
  left: 0;
  top: 0;
  width: 0.95rem;
  height: 0.95rem;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(242, 179, 107, 0.4);
  animation: pulseNode 2.8s ease-in-out infinite;
  transform: translate(-50%, -50%);
}

.hero-visual__node--start {
  background: var(--accent);
}

.hero-visual__node--mid {
  animation-delay: 0.4s;
}

.hero-visual__node--end {
  background: var(--accent-warm);
  animation-delay: 0.8s;
}

.hero-visual__package {
  left: 0;
  top: 0;
  width: 3.65rem;
  height: 2.8rem;
  border-radius: 1rem;
  background: linear-gradient(180deg, #fff5eb 0%, #f7d4be 100%);
  box-shadow: 0 14px 30px rgba(27, 15, 8, 0.22);
  opacity: 0.98;
  will-change: left, top, transform;
}

.hero-visual__package span {
  position: absolute;
  inset: 0.4rem 0.55rem auto;
  height: 0.48rem;
  border-radius: 999px;
  background: rgba(36, 22, 13, 0.26);
}

.hero-visual__label {
  left: 0;
  top: 0;
  z-index: 3;
  padding: 0;
  border: 0;
  background: transparent;
  color: #fbf1e7;
  font-size: 0.86rem;
  font-weight: 600;
  text-shadow: 0 2px 10px rgba(14, 9, 5, 0.55);
  box-shadow: none;
  opacity: 0.52;
  transition:
    opacity 240ms ease,
    transform 240ms ease,
    text-shadow 240ms ease;
}

:root[data-theme="light"] .hero-visual__label {
  color: #24160d;
  text-shadow: 0 1px 8px rgba(255, 255, 255, 0.42);
}

.hero-visual__label.is-active {
  opacity: 1;
  transform: translateY(-2px);
  text-shadow: 0 3px 14px rgba(14, 9, 5, 0.78);
}

.hero-visual__label--destination {
  display: block;
  width: 7.2rem;
  max-width: 7.2rem;
  white-space: normal;
  line-height: 1.08;
  text-align: right;
}

.hero-visual__marker {
  left: 0;
  top: 0;
  z-index: 2;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 1.3rem 1.3rem 1.3rem 0.35rem;
  background: linear-gradient(180deg, var(--accent-warm) 0%, var(--accent-warm-strong) 100%);
  transform: translate(-50%, -50%) rotate(45deg);
  box-shadow: 0 0 0 0 rgba(224, 151, 63, 0.22);
  transition:
    box-shadow 240ms ease,
    transform 240ms ease,
    opacity 240ms ease;
}

.hero-visual__marker::after {
  content: none;
}

.hero-visual__marker.is-active {
  box-shadow: none;
  animation: none;
}

.hero-visual__building {
  bottom: 11%;
  width: 18%;
  border-radius: 1rem 1rem 0 0;
  background: rgba(255, 255, 255, 0.08);
}

.hero-visual__building--one {
  left: 10%;
  height: 26%;
}

.hero-visual__building--two {
  left: 34%;
  height: 34%;
}

.hero-visual__building--three {
  right: 14%;
  height: 30%;
}

.content-block,
.feature,
.gallery {
  padding: 4rem 0;
}

.section-heading {
  display: grid;
  gap: 0.8rem;
  margin-bottom: 1.5rem;
}

.subheading {
  margin: 0;
  max-width: 46rem;
  font-size: clamp(1.28rem, 3vw, 1.9rem);
  color: var(--text);
}

.provider-grid,
.gallery-grid,
.help-grid,
.about-grid {
  display: grid;
  gap: 1rem;
}

.provider-card,
.gallery-card,
.feature__media,
.feature__copy,
.help-card,
.about-card,
.info-card,
.site-footer__inner > div {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.provider-card,
.help-card,
.about-card,
.feature__copy,
.site-footer__inner > div {
  padding: 1.25rem;
}

.about-grid {
  align-items: stretch;
}

.about-card {
  border: 1px solid var(--line);
  background: var(--surface);
}

.about-card--media {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 0;
}

.about-card--media img {
  width: 100%;
  height: 100%;
  min-height: 22rem;
  object-fit: cover;
}

.about-card__overlay {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(calc(100% - 2rem), 22rem);
  display: grid;
  gap: 0.3rem;
  padding: 1rem 1.1rem;
  transform: translate(-50%, -50%);
  border-radius: var(--radius);
  border: 1px solid rgba(224, 151, 63, 0.32);
  background: linear-gradient(180deg, rgba(18, 10, 5, 0.56), rgba(43, 25, 12, 0.66));
  color: #fbf1e7;
  text-align: center;
  justify-items: center;
  opacity: 0.78;
  box-shadow: 0 10px 24px rgba(12, 6, 3, 0.16);
  backdrop-filter: blur(4px);
  transition:
    opacity 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

:root[data-theme="light"] .about-card__overlay {
  background: rgba(44, 26, 14, 0.54);
}

.about-card--media:hover .about-card__overlay,
.about-card--media:focus-within .about-card__overlay {
  opacity: 1;
  border-color: rgba(224, 151, 63, 0.48);
  background: linear-gradient(180deg, rgba(18, 10, 5, 0.84), rgba(43, 25, 12, 0.9));
  box-shadow: 0 16px 34px rgba(12, 6, 3, 0.26);
}

:root[data-theme="light"] .about-card--media:hover .about-card__overlay,
:root[data-theme="light"] .about-card--media:focus-within .about-card__overlay {
  background: rgba(44, 26, 14, 0.84);
}

.about-card__overlay h3,
.about-card__overlay p {
  margin: 0;
}

.about-card__eyebrow {
  color: #f6d4b1;
  font-size: 0.76rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.about-card__overlay h3 {
  font-size: clamp(1.4rem, 3vw, 2.1rem);
  line-height: 1;
}

.about-card__overlay p:last-child {
  color: rgba(251, 241, 231, 0.86);
}

.about-card--copy {
  display: grid;
  gap: 1rem;
  align-content: start;
}

.stat-card {
  display: grid;
  gap: 0.25rem;
  padding: 0;
}

.stat-card__value {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  line-height: 1;
  color: var(--text);
}

.stat-card__label {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.9rem;
}

.provider-card {
  display: grid;
  gap: 0.8rem;
  transition: transform 180ms ease, border-color 180ms ease;
}

.provider-card__logo {
  width: 100%;
  height: 4.25rem;
  object-fit: contain;
  justify-self: start;
}

.provider-card__badge {
  margin: 0;
  justify-self: start;
  padding: 0;
  color: var(--accent-warm);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.76rem;
}

.provider-card__phone {
  margin: 0;
  color: var(--accent-warm);
  font-weight: 600;
}

.provider-card__actions {
  margin-top: auto;
}

.feature {
  display: grid;
  gap: 1.4rem;
}

.feature__media {
  position: relative;
  overflow: hidden;
}

.feature__media img,
.feature__map {
  width: 100%;
  height: 100%;
  min-height: 24rem;
}

.feature__media img {
  object-fit: cover;
}

.feature__map {
  display: block;
  border: 0;
  scroll-margin-top: 6.5rem;
}

.feature__overlay {
  position: absolute;
  inset: auto 1rem 1rem 1rem;
  padding: 1rem 1.1rem;
  border-radius: var(--radius);
  border: 1px solid rgba(224, 151, 63, 0.32);
  background: linear-gradient(180deg, rgba(18, 10, 5, 0.84), rgba(43, 25, 12, 0.9));
  color: #fbf1e7;
}

:root[data-theme="light"] .feature__overlay {
  background: rgba(44, 26, 14, 0.84);
}

.feature__overlay p {
  margin: 0;
  font-size: clamp(1.3rem, 3vw, 2rem);
  font-weight: 700;
  line-height: 1.05;
}

.feature__copy {
  display: grid;
  gap: 0.95rem;
  align-content: center;
}

.info-stack {
  display: grid;
  gap: 0.9rem;
}

.info-card {
  padding: 1rem;
}

.info-note {
  margin: 0;
  padding: 0.95rem 1rem;
  border-left: 3px solid var(--accent-warm);
  background: linear-gradient(90deg, var(--accent-warm-soft), rgba(255, 255, 255, 0.04));
  border-radius: var(--radius);
}

:root[data-theme="light"] .info-note {
  background: rgba(255, 255, 255, 0.6);
}

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

.hours-list {
  display: grid;
  gap: 0.65rem;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.55rem;
  border-bottom: 1px solid var(--line);
}

.hours-list li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.hours-list span,
.hours-list strong {
  color: var(--text);
}

.gallery-card {
  overflow: hidden;
  transition: transform 180ms ease, border-color 180ms ease;
}

.gallery-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.gallery-card__image--id-card {
  display: block;
  aspect-ratio: 260.666 / 190.612;
  object-position: center;
  object-fit: contain;
  box-sizing: border-box;
  padding: 0;
  background: #fbf3e8;
}

.gallery-card figcaption {
  padding: 1rem 1rem 1.1rem;
  font-size: 1.04rem;
  font-weight: 500;
  color: var(--text);
}

.gallery-card figcaption strong {
  color: var(--accent-warm);
}

.help-grid {
  align-items: start;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1rem;
}

.tag-list span {
  padding: 0;
  color: var(--accent-warm);
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-size: 0.78rem;
}

.checklist {
  display: grid;
  gap: 0.78rem;
}

.contact-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.7rem;
}

.contact-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid var(--line);
}

.contact-list li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.contact-list span {
  color: var(--text);
}

.contact-list a {
  color: var(--accent-warm);
  font-weight: 600;
}

.checklist li {
  position: relative;
  padding-left: 1.5rem;
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58rem;
  width: 0.58rem;
  height: 0.58rem;
  border-radius: 50%;
  background: var(--accent-warm);
}

.scroll-fab {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 15;
  min-width: auto;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--accent-warm);
  cursor: pointer;
  backdrop-filter: none;
  box-shadow: none;
  display: inline-flex;
  gap: 0.45rem;
  justify-content: center;
  align-items: center;
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 10px rgba(14, 9, 5, 0.4);
  transition:
    color 180ms ease,
    text-shadow 180ms ease,
    bottom 180ms ease;
}

:root[data-theme="light"] .scroll-fab {
  color: var(--accent-warm-strong);
  text-shadow: 0 2px 8px rgba(251, 243, 232, 0.55);
}

.scroll-fab:hover,
.scroll-fab:focus-visible {
  color: var(--accent-warm-strong);
  text-shadow: 0 2px 12px rgba(14, 9, 5, 0.28);
}

:root[data-theme="light"] .scroll-fab:hover,
:root[data-theme="light"] .scroll-fab:focus-visible {
  color: var(--accent-warm);
  text-shadow: 0 2px 10px rgba(251, 243, 232, 0.4);
}

.scroll-fab::after {
  content: "";
  width: 0.72rem;
  height: 0.72rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-0.08rem) rotate(45deg);
}

.scroll-fab.is-top::after {
  transform: translateY(0.08rem) rotate(225deg);
}

.site-footer {
  padding: 0 0 3rem;
}

.site-footer__inner {
  display: grid;
  gap: 1rem;
}

.site-footer ul {
  margin: 0;
  padding-left: 1rem;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 600ms ease,
    transform 600ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes pulseNode {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(242, 179, 107, 0.36);
  }

  50% {
    box-shadow: 0 0 0 12px rgba(242, 179, 107, 0);
  }
}

@keyframes mapDrift {
  from {
    background-position: 0 0, 0 0;
  }

  to {
    background-position: 1.2rem 0.8rem, -0.8rem 1rem;
  }
}

@keyframes mapPulse {
  0%,
  100% {
    opacity: 0.55;
  }

  50% {
    opacity: 1;
  }
}

@keyframes mapSweep {
  0%,
  100% {
    transform: translateX(-12%);
    opacity: 0.18;
  }

  50% {
    transform: translateX(12%);
    opacity: 0.42;
  }
}

@keyframes routeEcho {
  0%,
  100% {
    opacity: 0.16;
  }

  28%,
  60% {
    opacity: 0.46;
  }
}

@keyframes markerPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(224, 151, 63, 0.36);
  }

  100% {
    box-shadow: 0 0 0 14px rgba(224, 151, 63, 0);
  }
}

@media (min-width: 860px) {
  .hero__inner,
  .feature,
  .site-footer__inner,
  .help-grid,
  .about-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero__copy {
    padding-right: 1rem;
  }

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

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

@media (max-width: 859px) {
  .theme-switch {
    width: 4.25rem;
    height: 2.45rem;
  }

  .theme-switch-track {
    width: 4rem;
    height: 2.1rem;
    padding: 0 0.38rem;
  }

  .theme-switch-icon {
    font-size: 0.84rem;
  }

  .theme-switch-thumb {
    top: 0.22rem;
    left: 0.24rem;
    width: 1.65rem;
    height: 1.65rem;
  }

  .theme-switch[aria-checked="true"] .theme-switch-thumb {
    transform: translateX(1.78rem);
  }

  .burger {
    display: inline-block;
  }

  .nav-menu {
    position: absolute;
    top: calc(100% + 0.6rem);
    right: 1rem;
    left: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 0.9rem;
    border-radius: var(--radius);
    background: rgba(16, 9, 4, 0.96);
    box-shadow: var(--shadow);
    margin-left: 0;
  }

  :root[data-theme="light"] .nav-menu {
    background: rgba(251, 243, 232, 0.98);
  }

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

  .site-nav.is-open .burger .line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 5px);
  }

  .site-nav.is-open .burger .line:nth-child(2) {
    opacity: 0;
  }

  .site-nav.is-open .burger .line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -5px);
  }

  .hero-visual {
    min-height: 21rem;
  }

  .hero-visual__label {
    padding: 0.45rem 0.7rem;
    font-size: 0.78rem;
    max-width: calc(100% - 1.4rem);
    white-space: nowrap;
  }

  .hero-visual__label--destination {
    display: block;
    width: 5.9rem;
    max-width: 5.9rem;
    font-size: 0.74rem;
    white-space: normal;
    line-height: 1.02;
    text-align: right;
  }

  .hero-visual__package {
    width: 3.2rem;
    height: 2.45rem;
  }

  .hero-visual__marker {
    width: 1.95rem;
    height: 1.95rem;
    border-radius: 0.98rem 0.98rem 0.98rem 0.28rem;
    transform: translate(-70%, -50%) rotate(45deg);
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
