:root {
  --forest: #29563c;
  --forest-dark: #173927;
  --forest-soft: #dce9df;
  --gold: #c79a49;
  --gold-light: #e8c77d;
  --cream: #f8f5ef;
  --white: #ffffff;
  --ink: #18211c;
  --muted: #647068;
  --line: rgba(41, 86, 60, 0.18);
  --shadow: 0 24px 70px rgba(26, 55, 39, 0.16);
  --radius: 8px;
  --radius-xl: 24px;
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 154px;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 8%, rgba(199, 154, 73, 0.08), transparent 28%),
    linear-gradient(180deg, #fffdf8 0%, var(--cream) 42%, #ffffff 100%);
  font-family: "Poppins", Arial, sans-serif;
  line-height: 1.65;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    repeating-linear-gradient(8deg, rgba(41, 86, 60, 0.08) 0 1px, transparent 1px 70px),
    repeating-linear-gradient(96deg, rgba(41, 86, 60, 0.055) 0 1px, transparent 1px 84px);
  content: "";
  opacity: 0.38;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
select {
  font: inherit;
}

button {
  color: inherit;
}

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

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(26px, 4vw, 64px);
  min-height: 142px;
  padding: 18px clamp(18px, 5vw, 64px) 16px;
  border-bottom: 1px solid rgba(199, 154, 73, 0.62);
  color: var(--forest);
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 8px 28px rgba(23, 57, 39, 0.08);
  backdrop-filter: blur(12px);
  transition: box-shadow 180ms ease, min-height 180ms ease, padding 180ms ease;
}

.site-header.is-scrolled,
.site-header.menu-active {
  color: var(--forest);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 12px 38px rgba(23, 57, 39, 0.12);
}

.site-header.is-scrolled {
  min-height: 126px;
  padding-block: 12px;
}

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

.masthead-brand {
  align-items: flex-start;
  flex-direction: column;
  gap: 10px;
  min-width: min(560px, 54vw);
}

.masthead-brand__logos {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.4vw, 30px);
}

.masthead-brand__logo {
  object-fit: contain;
}

.masthead-brand__logo--chamber {
  width: auto;
  height: clamp(74px, 6vw, 80px);
}

.masthead-brand__logo--passport {
  width: auto;
  height: clamp(62px, 5vw, 72px);
  filter: drop-shadow(0 10px 18px rgba(23, 57, 39, 0.12));
}

.masthead-brand__copy {
  display: grid;
  gap: 1px;
}

.masthead-brand__copy strong {
  color: var(--forest);
  font-size: clamp(1.12rem, 1.5vw, 1.25rem);
  font-weight: 600;
  line-height: 1.15;
  text-transform: uppercase;
}

.masthead-brand__copy small {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.3;
  text-transform: uppercase;
}

.masthead-brand__copy em {
  color: var(--forest);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.22rem, 1.9vw, 1.56rem);
  font-style: normal;
  font-weight: 800;
  line-height: 1.12;
}

.brand__logo {
  width: 62px;
  height: 62px;
  object-fit: contain;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.16));
}

.brand__seal {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 2px solid currentColor;
  border-radius: 50%;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 0.92rem;
  font-weight: 800;
}

.brand__text strong,
.brand__text small {
  display: block;
}

.brand__text strong {
  font-weight: 800;
  line-height: 1.1;
}

.brand__text small {
  font-size: 0.72rem;
  font-weight: 600;
  opacity: 0.78;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.4vw, 32px);
  font-size: 0.92rem;
  font-weight: 700;
  margin-left: auto;
}

.site-nav a {
  position: relative;
  padding-block: 6px;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--gold);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a.is-active::after {
  transform: scaleX(1);
}

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

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 10px;
  border: 1px solid currentColor;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 96vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding-top: 166px;
  color: var(--white);
}

.hero::after {
  position: absolute;
  right: clamp(18px, 6vw, 84px);
  bottom: clamp(86px, 14vw, 160px);
  z-index: 1;
  width: 132px;
  height: 132px;
  border: 2px solid rgba(232, 199, 125, 0.35);
  border-radius: 50%;
  color: rgba(232, 199, 125, 0.32);
  content: "FORT KENT";
  display: grid;
  place-items: center;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  transform: rotate(-14deg);
}

.hero__image,
.hero__shade {
  position: absolute;
  inset: 0;
}

.hero__image {
  background:
    linear-gradient(rgba(23, 57, 39, 0.06), rgba(23, 57, 39, 0.12)),
    url("assets/images/river-sunset-hero.jpg") center / cover;
  transform: scale(1.01);
  will-change: transform;
}

.hero__shade {
  background:
    linear-gradient(90deg, rgba(18, 45, 31, 0.88) 0%, rgba(18, 45, 31, 0.54) 44%, rgba(18, 45, 31, 0.12) 100%),
    linear-gradient(0deg, rgba(18, 45, 31, 0.78) 0%, rgba(18, 45, 31, 0) 52%);
}

.hero__content {
  position: relative;
  z-index: 1;
  width: min(780px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(24px, 3.4vw, 32px);
  margin-bottom: clamp(30px, 6vw, 52px);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 24px;
  background: rgba(23, 57, 39, 0.42);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
}

.hero__content::before {
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  content: "";
  pointer-events: none;
}

.hero__logo {
  width: min(148px, 46vw);
  margin-bottom: 14px;
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.28));
}

.kicker,
.card-label {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
blockquote {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.04;
  letter-spacing: 0;
}

h1 {
  max-width: 800px;
  font-size: clamp(2.75rem, 6.8vw, 5.25rem);
}

h2 {
  font-size: clamp(2.35rem, 5vw, 4.8rem);
}

h3 {
  font-size: clamp(1.28rem, 2.2vw, 1.8rem);
}

p {
  margin: 0;
}

.hero__copy {
  max-width: 700px;
  margin-top: 14px;
  font-size: clamp(1rem, 1.7vw, 1.22rem);
}

.section-heading p,
.feature-copy p,
.today-layout p {
  font-size: clamp(1rem, 1.25vw, 1.1rem);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.button {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 800;
  text-align: center;
  box-shadow: 0 10px 24px rgba(23, 57, 39, 0.1);
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease, border-color 180ms ease, color 180ms ease;
}

.button:hover,
.button:focus-visible {
  box-shadow: 0 18px 34px rgba(23, 57, 39, 0.2);
  transform: translateY(-3px) scale(1.015);
}

.button::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.45) 42%, transparent 72%);
  content: "";
  transform: translateX(-120%);
  transition: transform 520ms ease;
}

.button:hover::before,
.button:focus-visible::before {
  transform: translateX(120%);
}

.button::after {
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.36);
  content: "";
  opacity: 0;
  transform: scale(1);
}

.button.is-rippling::after {
  animation: button-ripple 520ms ease-out;
}

@keyframes button-ripple {
  0% {
    opacity: 0.45;
    transform: scale(1);
  }

  100% {
    opacity: 0;
    transform: scale(18);
  }
}

a:focus-visible,
button:focus-visible,
select:focus-visible {
  outline: 3px solid rgba(199, 154, 73, 0.7);
  outline-offset: 4px;
}

.button--gold {
  color: var(--forest-dark);
  background: var(--gold-light);
  box-shadow: 0 14px 28px rgba(82, 55, 14, 0.18);
}

.button--gold:hover,
.button--gold:focus-visible {
  background: #f1d18c;
}

.button--light {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.12);
}

.button--light:hover,
.button--light:focus-visible {
  color: var(--forest-dark);
  border-color: var(--gold-light);
  background: var(--gold-light);
}

.button--green {
  color: var(--white);
  background: var(--forest);
  box-shadow: 0 14px 28px rgba(41, 86, 60, 0.18);
}

.button--green:hover,
.button--green:focus-visible {
  background: var(--forest-dark);
}

.button--outline {
  color: var(--forest);
  border-color: var(--line);
  background: var(--white);
}

.button--full {
  width: 100%;
}

.hero__cue {
  position: absolute;
  right: clamp(18px, 5vw, 64px);
  bottom: 32px;
  z-index: 1;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.quote-band {
  position: relative;
  overflow: hidden;
  color: var(--forest);
  background: var(--white);
}

.quote-band::before {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(9deg, rgba(41, 86, 60, 0.1) 0 1px, transparent 1px 58px),
    repeating-linear-gradient(96deg, rgba(41, 86, 60, 0.08) 0 1px, transparent 1px 72px),
    radial-gradient(circle at 22% 40%, transparent 0 70px, rgba(199, 154, 73, 0.22) 71px 72px, transparent 73px 210px);
  content: "";
  opacity: 0.07;
}

.quote-band__inner {
  position: relative;
  z-index: 1;
  padding: clamp(58px, 8vw, 94px) 0;
  text-align: center;
}

blockquote {
  max-width: 1000px;
  margin-inline: auto;
  color: var(--forest-dark);
  font-size: clamp(2.05rem, 4.7vw, 4.55rem);
}

.quote-band p:last-child {
  max-width: 720px;
  margin: 22px auto 0;
  color: var(--muted);
  font-size: 1.06rem;
}

.section {
  position: relative;
  overflow: hidden;
  padding: clamp(78px, 10vw, 140px) 0;
}

.section::after,
.feature-section::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 62px;
  pointer-events: none;
  background:
    radial-gradient(90% 70px at 50% 100%, rgba(41, 86, 60, 0.08), transparent 72%),
    linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(41, 86, 60, 0.04));
  content: "";
}

.section--cream {
  background:
    radial-gradient(circle at 86% 14%, rgba(199, 154, 73, 0.1), transparent 22%),
    linear-gradient(180deg, #fffaf0 0%, var(--cream) 100%);
}

.section--white {
  background:
    radial-gradient(circle at 14% 20%, rgba(41, 86, 60, 0.055), transparent 28%),
    linear-gradient(180deg, var(--white) 0%, #fffcf7 100%);
}

.section--paper::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(0deg, rgba(41, 86, 60, 0.045) 0 1px, transparent 1px 28px),
    repeating-linear-gradient(90deg, rgba(199, 154, 73, 0.04) 0 1px, transparent 1px 34px);
  content: "";
  opacity: 0.55;
}

.section--paper > .container {
  position: relative;
  z-index: 1;
}

.section--green {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 78% 16%, rgba(232, 199, 125, 0.12), transparent 24%),
    linear-gradient(145deg, var(--forest-dark) 0%, var(--forest) 46%, #214934 100%);
}

.section--green::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(18deg, rgba(248, 245, 239, 0.18) 0 1px, transparent 1px 72px),
    repeating-linear-gradient(104deg, rgba(248, 245, 239, 0.14) 0 1px, transparent 1px 86px),
    radial-gradient(circle at 18% 24%, transparent 0 48px, rgba(248, 245, 239, 0.2) 49px 50px, transparent 51px 155px),
    radial-gradient(circle at 78% 62%, transparent 0 66px, rgba(248, 245, 239, 0.18) 67px 68px, transparent 69px 180px);
  content: "";
  opacity: 0.08;
}

.section--atlas::after {
  background:
    radial-gradient(130% 90px at 50% 100%, rgba(248, 245, 239, 0.16), transparent 72%),
    linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.08));
}

.section--green > .container {
  position: relative;
  z-index: 1;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
  gap: clamp(34px, 7vw, 90px);
  align-items: center;
}

.section-copy p,
.section-heading p,
.feature-copy p,
.today-layout p {
  max-width: 690px;
  margin-top: 18px;
  color: var(--muted);
}

.section-heading {
  position: relative;
  max-width: 790px;
  margin-bottom: clamp(34px, 5vw, 58px);
}

.section-heading::before {
  position: absolute;
  top: -26px;
  right: -22px;
  width: 92px;
  height: 92px;
  border: 1px solid currentColor;
  border-radius: 50%;
  color: rgba(199, 154, 73, 0.22);
  content: "";
}

.section-heading::after {
  position: absolute;
  top: 17px;
  right: 19px;
  width: 24px;
  height: 24px;
  background: currentColor;
  clip-path: polygon(50% 0, 62% 38%, 100% 50%, 62% 62%, 50% 100%, 38% 62%, 0 50%, 38% 38%);
  color: rgba(199, 154, 73, 0.26);
  content: "";
}

.section-heading--center {
  margin-inline: auto;
  text-align: center;
}

.section-heading--center::before {
  right: 50%;
  transform: translateX(50%);
}

.section-heading--center::after {
  right: 50%;
  transform: translateX(50%);
}

.section-heading--center p {
  margin-inline: auto;
}

.section-heading--light p {
  color: rgba(255, 255, 255, 0.78);
}

.route-card,
.today-panel {
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.route-card h3 {
  margin-bottom: 22px;
  color: var(--forest);
}

.route-card label {
  display: block;
  margin: 16px 0 8px;
  color: var(--forest-dark);
  font-weight: 800;
}

.route-card select {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: #fffdf8;
}

.route-card__result {
  min-height: 54px;
  margin-top: 16px;
  color: var(--muted);
  font-size: 0.94rem;
}

.passport-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 2.4vw, 28px);
  perspective: 1400px;
}

.passport-steps--start {
  margin-top: 34px;
}

.passport-steps article {
  position: relative;
  --page-tilt: 0deg;
  min-height: 350px;
  padding: 36px 26px 30px;
  overflow: hidden;
  border: 1px solid rgba(108, 83, 37, 0.24);
  border-radius: var(--radius-xl);
  color: var(--forest-dark);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.44), rgba(255, 255, 255, 0) 34%),
    radial-gradient(circle at top left, rgba(199, 154, 73, 0.14), transparent 36%),
    var(--cream);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.58),
    inset 0 0 0 8px rgba(255, 255, 255, 0.2),
    0 24px 45px rgba(15, 34, 24, 0.24);
  text-align: center;
  transform: translateY(0) rotate(var(--page-tilt)) rotateX(0deg);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.passport-steps article:nth-child(1),
.passport-steps article:nth-child(3) {
  --page-tilt: -1deg;
}

.passport-steps article:nth-child(2),
.passport-steps article:nth-child(4) {
  --page-tilt: 1deg;
}

.passport-steps article::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 8px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
  content: "";
}

.passport-steps article::after {
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(41, 86, 60, 0.13);
  border-radius: 18px;
  content: "";
  pointer-events: none;
}

.passport-steps article:hover {
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.62),
    inset 0 0 0 8px rgba(255, 255, 255, 0.22),
    0 34px 58px rgba(15, 34, 24, 0.32);
  transform: translateY(-10px) rotate(var(--page-tilt)) rotateX(2deg);
}

.passport-steps img {
  width: 128px;
  height: 128px;
  margin: 0;
  object-fit: contain;
  filter: drop-shadow(0 8px 14px rgba(41, 86, 60, 0.14));
}

.passport-icon {
  display: grid;
  width: clamp(122px, 11vw, 150px);
  height: clamp(122px, 11vw, 150px);
  place-items: center;
  margin: 6px auto 24px;
  overflow: hidden;
  border-radius: 50%;
}

.passport-icon img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: contain;
  transform: none;
}

.passport-steps h3 {
  color: var(--forest-dark);
  font-size: 1.75rem;
}

.passport-steps p {
  margin: 14px auto 0;
  max-width: 240px;
  color: #556358;
  font-weight: 600;
}

.passport-action {
  display: flex;
  justify-content: center;
  margin-top: clamp(34px, 5vw, 52px);
}

.button--passport {
  min-width: min(100%, 340px);
  color: var(--white);
  background: var(--forest-dark);
  box-shadow: 0 16px 32px rgba(12, 28, 20, 0.28);
}

.button--passport:hover,
.button--passport:focus-visible {
  color: var(--forest-dark);
  background: var(--gold-light);
}

.passport-awaits {
  background:
    radial-gradient(circle at 18% 18%, rgba(199, 154, 73, 0.08), transparent 26%),
    linear-gradient(180deg, var(--white) 0%, #fffaf2 100%);
}

.passport-awaits::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(12deg, rgba(41, 86, 60, 0.09) 0 1px, transparent 1px 72px),
    repeating-linear-gradient(102deg, rgba(41, 86, 60, 0.06) 0 1px, transparent 1px 86px),
    radial-gradient(circle at 82% 22%, transparent 0 62px, rgba(199, 154, 73, 0.18) 63px 64px, transparent 65px 170px);
  content: "";
  opacity: 0.08;
}

.passport-awaits > .container {
  position: relative;
  z-index: 1;
}

.awaits-intro {
  display: grid;
  gap: 10px;
  max-width: 780px;
  margin: -18px auto clamp(36px, 6vw, 68px);
  color: var(--forest-dark);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.45rem, 2.7vw, 2.35rem);
  line-height: 1.18;
  text-align: center;
}

.awaits-intro p:last-child {
  max-width: 720px;
  margin: 12px auto 0;
  color: var(--muted);
  font-family: "Poppins", Arial, sans-serif;
  font-size: clamp(1rem, 1.25vw, 1.12rem);
  font-weight: 600;
  line-height: 1.7;
}

.awaits-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 2.4vw, 26px);
  margin-bottom: clamp(38px, 6vw, 72px);
}

.awaits-stats article {
  position: relative;
  overflow: hidden;
  min-height: 210px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 8px;
  padding: 26px;
  border: 1px solid rgba(41, 86, 60, 0.14);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.18)),
    var(--cream);
  box-shadow: 0 20px 50px rgba(26, 55, 39, 0.11);
  text-align: center;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.awaits-stats article::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: 72px;
  height: 5px;
  border-radius: 0 0 999px 999px;
  background: var(--gold);
  content: "";
  transform: translateX(-50%);
}

.awaits-stats article:hover {
  box-shadow: 0 32px 70px rgba(26, 55, 39, 0.18);
  transform: translateY(-6px);
}

.awaits-stats strong {
  max-width: 100%;
  color: var(--forest);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.35rem, 4.2vw, 4.1rem);
  line-height: 0.95;
  overflow-wrap: anywhere;
  text-wrap: balance;
}

.awaits-stats article:last-child strong {
  font-size: clamp(2rem, 3.25vw, 3.35rem);
}

.awaits-stats span {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.awaits-story {
  position: relative;
  max-width: 880px;
  margin: 0 auto;
  padding: clamp(28px, 4.5vw, 46px);
  border: 1px solid rgba(199, 154, 73, 0.24);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.2)),
    var(--cream);
  box-shadow: 0 24px 64px rgba(26, 55, 39, 0.12);
}

.awaits-story::after {
  position: absolute;
  right: 24px;
  bottom: 24px;
  width: 96px;
  height: 96px;
  border: 2px solid rgba(199, 154, 73, 0.22);
  border-radius: 50%;
  color: rgba(199, 154, 73, 0.24);
  content: "PASSPORT";
  display: grid;
  place-items: center;
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  transform: rotate(-12deg);
}

.awaits-story p {
  max-width: 720px;
  color: var(--muted);
  font-weight: 600;
}

.awaits-story p:first-child {
  margin-bottom: 12px;
  color: var(--forest-dark);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.75rem, 3vw, 2.55rem);
  line-height: 1.1;
}

.awaits-story p + p {
  margin-top: 14px;
}

.destination-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 30px);
}

.destination-tile {
  position: relative;
  min-height: clamp(500px, 58vw, 660px);
  display: grid;
  align-items: end;
  overflow: hidden;
  border: 1px solid rgba(248, 245, 239, 0.18);
  border-radius: 28px;
  box-shadow: 0 34px 90px rgba(10, 25, 17, 0.34);
  transform: translateY(0);
  transition: transform 240ms ease, box-shadow 240ms ease;
}

.destination-tile:hover,
.destination-tile:focus-within {
  box-shadow: 0 44px 110px rgba(10, 25, 17, 0.42);
  transform: translateY(-8px);
}

.destination-tile::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(18, 45, 31, 0.9) 0%, rgba(18, 45, 31, 0.48) 48%, rgba(18, 45, 31, 0.08) 100%);
  content: "";
}

.destination-tile::before {
  position: absolute;
  top: 22px;
  right: 22px;
  z-index: 2;
  width: 82px;
  height: 82px;
  border: 2px solid rgba(232, 199, 125, 0.58);
  border-radius: 50%;
  color: rgba(232, 199, 125, 0.66);
  content: "PASSPORT";
  display: grid;
  place-items: center;
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  transform: rotate(-12deg);
}

.destination-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease;
}

.destination-tile:nth-child(4) img {
  padding: clamp(44px, 8vw, 80px);
  object-fit: contain;
  background: var(--cream);
}

.destination-tile:hover img,
.destination-tile:focus-within img {
  transform: scale(1.06);
}

.destination-tile > div {
  position: relative;
  z-index: 1;
  padding: clamp(30px, 5vw, 50px);
  color: var(--white);
}

.destination-tile h3 {
  max-width: 520px;
  font-size: clamp(2.35rem, 5.4vw, 5.2rem);
}

.destination-tile p:not(.card-label) {
  max-width: 420px;
  margin: 12px 0 22px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 600;
}

.communities-section {
  background:
    radial-gradient(circle at 12% 10%, rgba(199, 154, 73, 0.08), transparent 26%),
    linear-gradient(180deg, var(--white) 0%, #fffaf6 100%);
}

.communities-section::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(22deg, rgba(41, 86, 60, 0.08) 0 1px, transparent 1px 78px),
    radial-gradient(circle at 78% 18%, rgba(41, 86, 60, 0.08), transparent 24%);
  content: "";
  opacity: 0.48;
}

.communities-section > .container {
  position: relative;
  z-index: 1;
}

.community-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.4vw, 28px);
}

.community-card {
  position: relative;
  min-height: clamp(360px, 34vw, 460px);
  display: grid;
  align-items: end;
  overflow: hidden;
  border: 1px solid rgba(248, 245, 239, 0.22);
  border-radius: 26px;
  box-shadow: 0 26px 70px rgba(26, 55, 39, 0.2);
  transform: translateY(0);
  transition: transform 240ms ease, box-shadow 240ms ease;
}

.community-card:hover,
.community-card:focus-within {
  box-shadow: 0 36px 90px rgba(26, 55, 39, 0.28);
  transform: translateY(-7px);
}

.community-card::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(19, 44, 31, 0.9) 0%, rgba(19, 44, 31, 0.48) 56%, rgba(19, 44, 31, 0.08) 100%),
    radial-gradient(circle at 82% 14%, rgba(232, 199, 125, 0.16), transparent 24%);
  content: "";
  transition: opacity 240ms ease;
}

.community-card:hover::after,
.community-card:focus-within::after {
  opacity: 0.92;
}

.community-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 480ms ease;
}

.community-card:hover img,
.community-card:focus-within img {
  transform: scale(1.06);
}

.community-card > div {
  position: relative;
  z-index: 1;
  padding: clamp(24px, 3vw, 34px);
  color: var(--white);
}

.community-card h3 {
  max-width: 420px;
  font-size: clamp(1.9rem, 3vw, 3.1rem);
  text-wrap: balance;
}

.community-card p {
  max-width: 360px;
  margin: 10px 0 16px;
  color: rgba(255, 255, 255, 0.84);
  font-weight: 600;
  line-height: 1.55;
}

.community-card span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 18px;
  color: var(--cream);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.community-card span b {
  color: var(--gold-light);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.35rem;
  line-height: 1;
}

.community-card .button {
  box-shadow: 0 16px 34px rgba(8, 22, 14, 0.26);
}

.community-card .button.is-active {
  color: var(--white);
  background: var(--gold);
}

.how-to-win {
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 16%, rgba(199, 154, 73, 0.1), transparent 24%),
    linear-gradient(180deg, var(--white) 0%, #fffaf3 100%);
}

.how-to-win::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(16deg, rgba(41, 86, 60, 0.08) 0 1px, transparent 1px 84px),
    radial-gradient(circle at 84% 20%, rgba(41, 86, 60, 0.08), transparent 24%);
  content: "";
  opacity: 0.5;
}

.how-to-win > .container {
  position: relative;
  z-index: 1;
}

.win-flatlay {
  position: relative;
  min-height: clamp(360px, 42vw, 540px);
  margin-top: clamp(34px, 5vw, 64px);
  overflow: hidden;
  border: 1px solid rgba(41, 86, 60, 0.14);
  border-radius: 34px;
  background:
    radial-gradient(circle at 20% 22%, rgba(199, 154, 73, 0.14), transparent 24%),
    radial-gradient(circle at 82% 18%, rgba(41, 86, 60, 0.1), transparent 26%),
    linear-gradient(135deg, #fffdf8 0%, var(--cream) 100%);
  box-shadow: 0 34px 90px rgba(26, 55, 39, 0.16);
}

.win-flatlay::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(0deg, rgba(41, 86, 60, 0.05) 0 1px, transparent 1px 42px),
    repeating-linear-gradient(90deg, rgba(41, 86, 60, 0.04) 0 1px, transparent 1px 48px);
  content: "";
}

.win-flatlay::after {
  position: absolute;
  right: 34px;
  bottom: 28px;
  width: 132px;
  height: 132px;
  border: 2px solid rgba(199, 154, 73, 0.26);
  border-radius: 50%;
  color: rgba(199, 154, 73, 0.35);
  content: "ROAD TRIP";
  display: grid;
  place-items: center;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  transform: rotate(-14deg);
}

.win-flatlay > * {
  position: absolute;
  box-shadow: 0 18px 44px rgba(26, 55, 39, 0.14);
}

.flatlay-map {
  inset: 10% auto auto 8%;
  width: min(42%, 460px);
  height: 66%;
  overflow: hidden;
  border: 1px solid rgba(41, 86, 60, 0.14);
  border-radius: 18px;
  background:
    linear-gradient(120deg, rgba(199, 154, 73, 0.16), transparent 34%),
    repeating-linear-gradient(28deg, rgba(41, 86, 60, 0.16) 0 2px, transparent 2px 36px),
    #f3ecd9;
  transform: rotate(-5deg);
}

.flatlay-map span {
  position: absolute;
  display: block;
  width: 58%;
  height: 2px;
  border-top: 3px dashed rgba(41, 86, 60, 0.36);
  transform: rotate(-18deg);
}

.flatlay-map span:nth-child(1) {
  top: 28%;
  left: 18%;
}

.flatlay-map span:nth-child(2) {
  top: 48%;
  left: 28%;
  transform: rotate(18deg);
}

.flatlay-map span:nth-child(3) {
  top: 66%;
  left: 10%;
  transform: rotate(-8deg);
}

.flatlay-passport {
  top: 16%;
  left: 32%;
  width: min(34%, 360px);
  min-height: 230px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 0 2px, transparent 2px 50%),
    linear-gradient(135deg, #244a35, var(--forest));
  color: var(--cream);
  transform: rotate(4deg);
}

.flatlay-passport div {
  width: 74%;
  padding: 26px;
  border: 1px solid rgba(232, 199, 125, 0.46);
  border-radius: 18px;
  text-align: center;
}

.flatlay-passport small,
.flatlay-passport em {
  display: block;
  color: var(--gold-light);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.flatlay-passport strong {
  display: block;
  margin: 12px 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 3vw, 3.1rem);
  line-height: 0.95;
}

.flatlay-camera {
  top: 50%;
  left: 58%;
  width: 178px;
  height: 112px;
  border-radius: 18px;
  background: linear-gradient(135deg, #2a352d, #101d16);
  transform: rotate(-7deg);
}

.flatlay-camera::before {
  position: absolute;
  top: 26px;
  left: 54px;
  width: 62px;
  height: 62px;
  border: 8px solid #f8f5ef;
  border-radius: 50%;
  background: #223b2c;
  content: "";
}

.flatlay-camera::after {
  position: absolute;
  top: -18px;
  left: 26px;
  width: 70px;
  height: 28px;
  border-radius: 12px 12px 0 0;
  background: #18241d;
  content: "";
}

.flatlay-photo {
  width: 150px;
  height: 118px;
  padding: 10px 10px 28px;
  background: var(--white);
}

.flatlay-photo::before {
  display: block;
  width: 100%;
  height: 100%;
  background:
    linear-gradient(0deg, rgba(41, 86, 60, 0.46), transparent 58%),
    linear-gradient(135deg, #9bbf98, #e8c77d);
  content: "";
}

.flatlay-photo--one {
  top: 17%;
  right: 17%;
  transform: rotate(-9deg);
}

.flatlay-photo--two {
  right: 8%;
  bottom: 24%;
  transform: rotate(8deg);
}

.flatlay-ticket {
  bottom: 13%;
  left: 22%;
  width: 220px;
  padding: 18px 24px;
  border: 1px dashed rgba(41, 86, 60, 0.42);
  border-radius: 18px;
  color: var(--forest-dark);
  background: #fff7df;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(7deg);
}

.flatlay-keys {
  right: 27%;
  bottom: 13%;
  width: 118px;
  height: 72px;
  background: transparent;
  box-shadow: none;
}

.flatlay-keys::before {
  position: absolute;
  top: 4px;
  left: 0;
  width: 48px;
  height: 48px;
  border: 8px solid var(--gold);
  border-radius: 50%;
  content: "";
}

.flatlay-keys::after {
  position: absolute;
  top: 26px;
  left: 44px;
  width: 70px;
  height: 8px;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 42px 10px 0 -2px var(--gold);
  content: "";
}

.flatlay-sunglasses {
  top: 18%;
  right: 4%;
  width: 148px;
  height: 56px;
  background: transparent;
  box-shadow: none;
  transform: rotate(12deg);
}

.flatlay-sunglasses::before,
.flatlay-sunglasses::after {
  position: absolute;
  top: 6px;
  width: 52px;
  height: 38px;
  border-radius: 8px 8px 24px 24px;
  background: rgba(22, 39, 29, 0.88);
  content: "";
}

.flatlay-sunglasses::before {
  left: 12px;
}

.flatlay-sunglasses::after {
  right: 12px;
}

.flatlay-compass {
  left: 7%;
  bottom: 13%;
  width: 92px;
  height: 92px;
  display: grid;
  place-items: center;
  border: 2px solid rgba(41, 86, 60, 0.38);
  border-radius: 50%;
  color: var(--forest);
  background: rgba(255, 255, 255, 0.82);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.8rem;
  font-weight: 900;
}

.flatlay-compass::after {
  position: absolute;
  width: 3px;
  height: 58px;
  background: var(--gold);
  content: "";
  transform: rotate(42deg);
}

.flatlay-brochure {
  top: 13%;
  left: 3%;
  width: 160px;
  height: 86px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: var(--white);
  background:
    linear-gradient(0deg, rgba(0, 0, 0, 0.16), transparent 56%),
    linear-gradient(135deg, var(--forest), #58845f);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transform: rotate(-8deg);
}

.flatlay-stamp {
  width: 124px;
  height: 124px;
  display: grid;
  place-items: center;
  border: 2px solid rgba(199, 154, 73, 0.42);
  border-radius: 50%;
  color: rgba(199, 154, 73, 0.58);
  background: transparent;
  box-shadow: none;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
}

.flatlay-stamp--one {
  top: 13%;
  right: 33%;
  transform: rotate(-16deg);
}

.flatlay-stamp--two {
  right: 39%;
  bottom: 10%;
  transform: rotate(13deg);
}

.win-route {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 2.4vw, 28px);
  margin-top: clamp(34px, 5vw, 58px);
}

.win-route::before {
  position: absolute;
  top: 72px;
  right: 9%;
  left: 9%;
  height: 2px;
  border-top: 2px dashed rgba(199, 154, 73, 0.46);
  content: "";
}

.win-step-card {
  position: relative;
  min-height: 270px;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid rgba(41, 86, 60, 0.14);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.22)),
    var(--cream);
  box-shadow: 0 24px 58px rgba(26, 55, 39, 0.14);
  text-align: center;
  transform: translateY(0);
  transition: transform 240ms ease, box-shadow 240ms ease;
}

.win-step-card::before {
  position: absolute;
  top: 0;
  right: 28%;
  left: 28%;
  height: 6px;
  border-radius: 0 0 999px 999px;
  background: var(--gold);
  content: "";
}

.win-step-card:hover,
.win-step-card:focus-within {
  box-shadow: 0 34px 76px rgba(26, 55, 39, 0.2);
  transform: translateY(-7px);
}

.win-step-card > span {
  position: relative;
  z-index: 1;
  display: inline-grid;
  width: 82px;
  height: 82px;
  margin-bottom: 18px;
  place-items: center;
  border: 1px solid rgba(199, 154, 73, 0.46);
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 16px 32px rgba(26, 55, 39, 0.12);
  font-size: 2rem;
}

.win-step-card h3,
.win-feature h3,
.prize-showcase h3,
.good-to-know h3 {
  color: var(--forest-dark);
}

.win-step-card p {
  max-width: 240px;
  margin: 12px auto 0;
  color: #556358;
  font-weight: 600;
}

.win-feature {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1.15fr);
  gap: clamp(24px, 5vw, 56px);
  align-items: center;
  margin-top: clamp(32px, 5vw, 62px);
  padding: clamp(28px, 5vw, 52px);
  border: 1px solid rgba(199, 154, 73, 0.28);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(41, 86, 60, 0.96), rgba(28, 61, 42, 0.96)),
    var(--forest);
  box-shadow: 0 30px 80px rgba(10, 25, 17, 0.24);
  color: var(--white);
}

.win-feature::after {
  position: absolute;
  right: -36px;
  bottom: -34px;
  width: 190px;
  height: 190px;
  border: 2px solid rgba(232, 199, 125, 0.18);
  border-radius: 50%;
  color: rgba(232, 199, 125, 0.22);
  content: "PASSPORT";
  display: grid;
  place-items: center;
  font-weight: 900;
  letter-spacing: 0.16em;
  transform: rotate(-16deg);
}

.win-feature .kicker {
  color: var(--gold-light);
}

.win-feature h3 {
  max-width: 520px;
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3.8rem);
}

.win-feature > p {
  grid-column: 1 / -1;
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 600;
}

.win-feature__entries {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.win-feature__entries p {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 10px;
  align-items: center;
  margin: 0;
  padding: 18px;
  border: 1px solid rgba(248, 245, 239, 0.16);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.86);
  font-weight: 700;
}

.win-feature__entries strong {
  color: var(--gold-light);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.55rem, 2vw, 2.15rem);
  line-height: 1;
}

.win-feature__entries span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 1.4rem;
  font-weight: 900;
}

.win-feature__entries b {
  color: var(--white);
  text-align: right;
}

.win-timeline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.4vw, 28px);
  margin-top: clamp(32px, 5vw, 58px);
}

.win-timeline article {
  position: relative;
  padding: 24px;
  border: 1px solid rgba(41, 86, 60, 0.12);
  border-radius: 22px;
  background: var(--white);
  box-shadow: 0 18px 48px rgba(26, 55, 39, 0.1);
}

.win-timeline article:not(:last-child)::after {
  position: absolute;
  top: 50%;
  right: -22px;
  color: var(--gold);
  content: "->";
  font-weight: 900;
}

.win-timeline span {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 1.8rem;
}

.win-timeline h3 {
  color: var(--forest-dark);
  font-size: clamp(1.45rem, 2.2vw, 2.1rem);
}

.win-timeline p {
  margin-top: 8px;
  color: var(--muted);
  font-weight: 700;
}

.prize-showcase {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.4vw, 28px);
  margin-top: clamp(30px, 5vw, 56px);
}

.prize-showcase article {
  position: relative;
  min-height: 210px;
  display: grid;
  align-content: end;
  padding: 28px;
  overflow: hidden;
  border: 1px solid rgba(199, 154, 73, 0.22);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.3)),
    var(--cream);
  box-shadow: 0 24px 58px rgba(26, 55, 39, 0.12);
}

.prize-showcase article::before {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 76px;
  height: 76px;
  border: 2px solid rgba(199, 154, 73, 0.32);
  border-radius: 50%;
  color: rgba(199, 154, 73, 0.46);
  content: "PRIZE";
  display: grid;
  place-items: center;
  font-size: 0.6rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  transform: rotate(-12deg);
}

.prize-showcase h3 {
  font-size: clamp(1.7rem, 2.6vw, 2.4rem);
}

.section-cta {
  display: flex;
  justify-content: center;
  margin-top: clamp(30px, 5vw, 52px);
}

.section-cta .button {
  min-width: min(100%, 280px);
}

.good-to-know {
  max-width: 900px;
  margin: clamp(28px, 5vw, 48px) auto 0;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid rgba(41, 86, 60, 0.14);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 18px 48px rgba(26, 55, 39, 0.1);
}

.good-to-know ul {
  display: grid;
  gap: 10px;
  margin: 14px 0 0;
  padding-left: 20px;
  color: var(--muted);
  font-weight: 700;
}

.experience-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.passport-tools {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(18px, 3vw, 30px);
  align-items: stretch;
  margin-bottom: 34px;
}

.passport-tools--dashboard {
  grid-template-columns: minmax(320px, 0.9fr) minmax(360px, 1.1fr);
  max-width: 1040px;
  margin: 0 auto;
}

.passport-search,
.passport-progress {
  position: relative;
  overflow: hidden;
  padding: clamp(20px, 3vw, 28px);
  border: 1px solid rgba(41, 86, 60, 0.14);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.16)),
    var(--cream);
  box-shadow: 0 18px 44px rgba(26, 55, 39, 0.1);
}

.passport-tools--dashboard .passport-search,
.passport-tools--dashboard .passport-progress {
  border-color: rgba(199, 154, 73, 0.24);
  box-shadow: 0 24px 60px rgba(26, 55, 39, 0.14);
}

.passport-search label {
  display: block;
  color: var(--forest-dark);
  font-weight: 900;
}

.passport-search input {
  width: 100%;
  min-height: 58px;
  padding: 0 52px 0 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--white);
  font: inherit;
}

.passport-search__field {
  position: relative;
  margin-top: 10px;
}

.passport-search__field button {
  position: absolute;
  top: 50%;
  right: 8px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: var(--forest);
  background: var(--forest-soft);
  cursor: pointer;
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1;
  transform: translateY(-50%);
  transition: color 160ms ease, background 160ms ease, transform 160ms ease;
}

.passport-search__field button:hover,
.passport-search__field button:focus-visible {
  color: var(--white);
  background: var(--forest);
  transform: translateY(-50%) scale(1.04);
}

.passport-view-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.passport-view-filters .chip {
  min-height: 46px;
}

.passport-search p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.passport-no-results {
  padding: 14px 16px;
  border: 1px dashed rgba(41, 86, 60, 0.26);
  border-radius: var(--radius);
  color: var(--forest-dark) !important;
  background: rgba(255, 255, 255, 0.68);
}

.passport-no-results[hidden] {
  display: none;
}

.passport-progress {
  display: grid;
  align-content: center;
  gap: 16px;
}

.passport-progress h3 {
  color: var(--forest-dark);
  font-size: clamp(1.5rem, 2.6vw, 2.15rem);
}

.passport-progress__bar {
  position: relative;
  height: 16px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(41, 86, 60, 0.14);
  box-shadow: inset 0 1px 3px rgba(23, 57, 39, 0.18);
}

.passport-progress__bar span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--forest), var(--gold));
  transition: width 520ms ease;
}

.passport-progress__summary {
  margin: -4px 0 0;
  color: var(--forest-dark);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.3rem, 2.3vw, 1.9rem);
  font-weight: 800;
  line-height: 1.1;
}

.passport-progress__summary b {
  font: inherit;
}

.passport-progress__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.passport-progress__stats span {
  display: grid;
  gap: 2px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 800;
}

.passport-progress__stats strong {
  color: var(--forest-dark);
  font-family: "Poppins", Arial, sans-serif;
  font-size: clamp(0.95rem, 1.5vw, 1.12rem);
  line-height: 1;
  text-transform: none;
}

.passport-progress__stats b {
  font: inherit;
}

.chip {
  min-height: 42px;
  padding: 9px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--forest);
  background: var(--cream);
  cursor: pointer;
  font-weight: 800;
}

.chip.is-active,
.chip:hover,
.chip:focus-visible {
  color: var(--white);
  background: var(--forest);
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.experience-card {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--cream);
  box-shadow: 0 16px 36px rgba(26, 55, 39, 0.08);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.experience-card[hidden] {
  display: none;
}

.experience-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 58px rgba(26, 55, 39, 0.16);
}

.experience-card img {
  width: 100%;
  aspect-ratio: 4 / 3.35;
  object-fit: cover;
  background: var(--cream);
}

.experience-card[data-category="shops"] img {
  padding: 32px;
  object-fit: contain;
}

.experience-card div {
  padding: 20px;
}

.experience-card h3 {
  min-height: 112px;
  font-size: 1.25rem;
}

.text-button {
  margin-top: 18px;
  padding: 0;
  border: 0;
  color: var(--forest);
  background: transparent;
  cursor: pointer;
  font-weight: 900;
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-underline-offset: 5px;
}

.feature-section {
  position: relative;
  overflow: hidden;
  padding: clamp(86px, 10vw, 150px) 0;
  background:
    radial-gradient(circle at 90% 18%, rgba(199, 154, 73, 0.08), transparent 24%),
    var(--cream);
}

.feature-section:nth-of-type(even) {
  background:
    radial-gradient(circle at 12% 24%, rgba(41, 86, 60, 0.06), transparent 25%),
    var(--white);
}

.feature-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.85fr);
  gap: clamp(30px, 6vw, 82px);
  align-items: center;
}

.feature-layout--reverse {
  grid-template-columns: minmax(320px, 0.85fr) minmax(0, 0.95fr);
}

.feature-layout--reverse .feature-media {
  order: 2;
}

.feature-media {
  min-height: clamp(560px, 56vw, 720px);
  border: 1px solid rgba(41, 86, 60, 0.1);
  border-radius: 28px;
  box-shadow: 0 34px 90px rgba(26, 55, 39, 0.18);
  background-position: center;
  background-size: cover;
  transition: transform 500ms ease, box-shadow 240ms ease;
}

.feature-media:hover {
  box-shadow: 0 44px 110px rgba(26, 55, 39, 0.24);
  transform: scale(1.012);
}

.feature-section--food .feature-media {
  background-image: url("assets/images/rocks-diner.jpg");
}

.feature-section--outdoors .feature-media {
  background-image: url("assets/images/fort-kent-outdoor-center.webp");
}

.feature-section--shops .feature-media {
  background-image: url("assets/logos/first-mile-mainely-made.png");
  background-color: var(--white);
  background-size: min(68%, 340px) auto;
  background-repeat: no-repeat;
}

.feature-section--history .feature-media {
  background-image: url("assets/images/fort-kent-blockhouse.jpg");
}

.feature-copy {
  color: var(--forest-dark);
}

.stop-section {
  margin-top: clamp(48px, 7vw, 86px);
  scroll-margin-top: 190px;
}

.stop-section__heading {
  max-width: 740px;
  margin-bottom: 26px;
}

.stop-section__heading h3 {
  color: var(--forest-dark);
  font-size: clamp(1.75rem, 3vw, 2.65rem);
}

.stop-section__heading p {
  margin-top: 8px;
  color: var(--muted);
  font-weight: 600;
}

.stop-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.4vw, 28px);
}

.stop-card {
  position: relative;
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(41, 86, 60, 0.14);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.76), rgba(255, 255, 255, 0.18)),
    var(--cream);
  box-shadow: 0 22px 54px rgba(26, 55, 39, 0.12);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.stop-card:not([hidden]) {
  animation: passport-card-in 220ms ease both;
}

.stop-card::before {
  position: absolute;
  top: 94px;
  right: 20px;
  z-index: 2;
  width: 72px;
  height: 72px;
  border: 2px solid rgba(199, 154, 73, 0.34);
  border-radius: 50%;
  color: rgba(199, 154, 73, 0.42);
  content: "STOP";
  display: grid;
  place-items: center;
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  transform: rotate(-13deg);
}

.stop-card:hover,
.stop-card:focus-within {
  box-shadow: 0 34px 76px rgba(26, 55, 39, 0.2);
  transform: translateY(-8px);
}

.stop-card__image-wrap {
  position: relative;
  overflow: hidden;
  background: var(--white);
}

.stop-card__image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 440ms ease;
}

.stop-card--logo .stop-card__image {
  padding: clamp(30px, 6vw, 54px);
  object-fit: contain;
}

.stop-card__ribbon {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 4;
  max-width: calc(100% - 32px);
  padding: 8px 13px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  color: var(--forest-dark);
  background: rgba(248, 245, 239, 0.94);
  box-shadow: 0 12px 24px rgba(23, 57, 39, 0.16);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.stop-card.is-saved {
  border-color: rgba(199, 154, 73, 0.48);
  box-shadow: 0 26px 64px rgba(26, 55, 39, 0.16);
}

.stop-card.is-saved .stop-card__ribbon {
  color: var(--forest);
  background: rgba(255, 248, 226, 0.96);
}

.stop-card__visited-badge {
  position: absolute;
  right: 16px;
  bottom: 16px;
  z-index: 4;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 3px solid var(--white);
  border-radius: 50%;
  color: var(--white);
  background: var(--forest);
  box-shadow: 0 14px 28px rgba(23, 57, 39, 0.24);
  font-size: 1.2rem;
  font-weight: 900;
  opacity: 0;
  transform: translateY(8px) scale(0.86);
  transition: opacity 200ms ease, transform 200ms ease;
}

.stop-card.is-complete .stop-card__visited-badge {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.stop-card:hover .stop-card__image,
.stop-card:focus-within .stop-card__image {
  transform: scale(1.055);
}

.stop-card__body {
  position: relative;
  display: grid;
  gap: 12px;
  padding: 22px;
}

.stop-card.is-complete {
  border-color: rgba(41, 86, 60, 0.44);
  box-shadow: 0 26px 64px rgba(26, 55, 39, 0.18);
}

.stop-card.is-complete::after {
  position: absolute;
  top: 18px;
  left: -38px;
  z-index: 3;
  width: 150px;
  padding: 7px 0;
  color: var(--white);
  background: var(--forest);
  content: "Visited";
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(-34deg);
}

.stop-card.is-complete .stop-card__body::before {
  position: absolute;
  top: -26px;
  right: 18px;
  z-index: 4;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 3px solid var(--white);
  border-radius: 50%;
  color: var(--white);
  background: var(--forest);
  box-shadow: 0 12px 26px rgba(23, 57, 39, 0.24);
  content: "✓";
  font-size: 1.35rem;
  font-weight: 900;
}

.favorite-button {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 4;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  color: var(--forest);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 24px rgba(23, 57, 39, 0.18);
  cursor: pointer;
  font-size: 1.2rem;
  line-height: 1;
  transition: transform 180ms ease, color 180ms ease, background 180ms ease;
}

.favorite-button:hover,
.favorite-button:focus-visible,
.favorite-button.is-saved {
  color: var(--white);
  background: var(--forest);
  transform: translateY(-2px) scale(1.04);
}

.stop-card__category {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.stop-card__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.stop-card__community,
.stop-card__category-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 28px;
  padding: 6px 10px;
  border: 1px solid rgba(41, 86, 60, 0.12);
  border-radius: 999px;
  color: var(--gold);
  background: rgba(255, 255, 255, 0.66);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.stop-card__community {
  color: var(--forest);
  background: rgba(41, 86, 60, 0.08);
}

.stop-card__actions .favorite-button {
  position: static;
  z-index: auto;
  display: inline-flex;
  width: auto;
  height: auto;
  place-items: initial;
  border-radius: 999px;
  box-shadow: none;
  font-size: 0.84rem;
  line-height: 1.15;
}

.stop-card__actions .favorite-button:hover,
.stop-card__actions .favorite-button:focus-visible,
.stop-card__actions .favorite-button.is-saved {
  color: var(--forest-dark);
  background: var(--gold);
}

.stop-card__actions .complete-toggle {
  justify-self: stretch;
  min-height: 44px;
  padding: 10px 12px;
  border-color: transparent;
  color: var(--white);
  background: var(--forest);
  font-size: 0.84rem;
}

.stop-card__actions .complete-toggle:hover,
.stop-card__actions .complete-toggle:focus-visible,
.stop-card__actions .complete-toggle.is-complete {
  color: var(--forest-dark);
  background: var(--gold);
}

.stop-card.is-complete .stop-card__body::before {
  display: none;
}

.stop-card.is-complete::after {
  top: 104px;
  right: 22px;
  left: auto;
  display: grid;
  width: 86px;
  height: 86px;
  place-items: center;
  padding: 0;
  border: 3px double rgba(41, 86, 60, 0.42);
  border-radius: 50%;
  color: rgba(41, 86, 60, 0.48);
  background: transparent;
  content: "VISITED";
  font-size: 0.64rem;
  letter-spacing: 0.16em;
  transform: rotate(-12deg);
}

.stop-card h4 {
  margin: 0;
  color: var(--forest-dark);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  line-height: 1.08;
}

.stop-card__community-line {
  margin: -4px 0 0;
  color: var(--forest);
  font-size: 0.93rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.stop-card__body > .stop-card__category-badge {
  margin: 0;
}

.stop-card__description,
.stop-card__address {
  margin: 0;
  color: var(--muted);
}

.stop-card__address {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  font-size: 0.92rem;
  font-weight: 700;
}

.complete-toggle {
  justify-self: start;
  min-height: 38px;
  padding: 7px 13px;
  border: 1px solid rgba(41, 86, 60, 0.22);
  border-radius: 999px;
  color: var(--forest);
  background: rgba(255, 255, 255, 0.72);
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 900;
  transition: transform 180ms ease, color 180ms ease, background 180ms ease;
}

.complete-toggle:hover,
.complete-toggle:focus-visible,
.complete-toggle.is-complete {
  color: var(--white);
  background: var(--forest);
  transform: translateY(-2px);
}

@keyframes passport-card-in {
  from {
    opacity: 0.35;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.stop-card__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 6px;
}

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

.stop-card__actions .button {
  min-height: 44px;
  padding: 10px 12px;
  font-size: 0.84rem;
  white-space: normal;
}

.stop-section.is-filtered-empty .stop-grid::before {
  display: none;
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 24px 0 28px;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--ink);
  font-weight: 700;
}

.check-list li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
  content: "";
  transform: translateY(-50%);
}

.local-gallery {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  margin-top: clamp(34px, 5vw, 54px);
}

.local-gallery article {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 18px 42px rgba(26, 55, 39, 0.12);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.local-gallery article:hover {
  box-shadow: 0 28px 64px rgba(26, 55, 39, 0.18);
  transform: translateY(-6px);
}

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

.local-gallery h3 {
  padding: 15px;
  color: var(--forest-dark);
  font-size: 1.08rem;
}

.today-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(310px, 390px);
  gap: clamp(28px, 6vw, 78px);
  align-items: center;
}

.today-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.today-tags span {
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--forest-dark);
  background: var(--forest-soft);
  font-size: 0.88rem;
  font-weight: 800;
}

.today-panel {
  position: relative;
  overflow: hidden;
  color: var(--forest-dark);
  border-radius: 24px;
}

.today-panel::before {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 92px;
  height: 92px;
  border: 2px solid rgba(199, 154, 73, 0.18);
  border-radius: 50%;
  content: "";
}

.today-panel ol {
  display: grid;
  gap: 14px;
  margin: 22px 0 0;
  padding-left: 22px;
  font-weight: 700;
}

.today-panel li strong,
.today-panel li span {
  display: block;
}

.today-panel li strong {
  color: var(--forest-dark);
}

.today-panel li span {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
}

.road-trip-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: start;
}

.road-trip-intro {
  grid-column: 1 / -1;
  max-width: 820px;
  text-align: center;
  margin: 0 auto;
}

.road-trip-intro p:not(.kicker) {
  max-width: 680px;
  margin: 18px auto 0;
  color: var(--muted);
  font-weight: 600;
}

.today-adventure-panel {
  position: relative;
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(130px, 0.28fr) minmax(0, 1fr);
  gap: clamp(18px, 4vw, 34px);
  align-items: center;
  overflow: hidden;
  padding: clamp(22px, 4vw, 36px);
  border: 1px solid rgba(41, 86, 60, 0.14);
  border-radius: 28px;
  background:
    radial-gradient(circle at 88% 8%, rgba(199, 154, 73, 0.16), transparent 28%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.24)),
    var(--cream);
  box-shadow: 0 24px 64px rgba(26, 55, 39, 0.13);
}

.today-adventure-panel::after {
  position: absolute;
  right: -32px;
  bottom: -42px;
  width: 170px;
  height: 170px;
  border: 2px solid rgba(41, 86, 60, 0.08);
  border-radius: 50%;
  content: "";
  transform: rotate(-12deg);
}

.today-adventure-panel__weather {
  display: grid;
  place-items: center;
  padding: 22px;
  border: 1px solid rgba(199, 154, 73, 0.28);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.62);
  text-align: center;
}

.today-adventure-panel__weather span {
  font-size: clamp(2rem, 5vw, 3.8rem);
  line-height: 1;
}

.today-adventure-panel__weather strong {
  color: var(--forest-dark);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 4.8vw, 3.4rem);
  line-height: 1;
}

.today-adventure-panel__weather small {
  color: var(--muted);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.today-adventure-panel__content {
  position: relative;
  z-index: 1;
}

.today-adventure-panel h3 {
  margin: 0;
  color: var(--forest-dark);
  font-size: clamp(1.7rem, 3vw, 2.55rem);
}

.today-adventure-panel__content > p:not(.kicker) {
  max-width: 760px;
  margin-top: 10px;
  color: var(--muted);
  font-weight: 700;
}

.today-adventure-panel ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 22px;
  padding: 0;
  list-style: none;
}

.today-adventure-panel li {
  padding: 8px 11px;
  border: 1px solid rgba(41, 86, 60, 0.12);
  border-radius: 999px;
  color: var(--forest);
  background: rgba(255, 255, 255, 0.68);
  font-size: 0.84rem;
  font-weight: 900;
}

.road-trip-builder,
.road-trip-result {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(41, 86, 60, 0.14);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.18)),
    var(--cream);
  box-shadow: 0 24px 64px rgba(26, 55, 39, 0.13);
}

.road-trip-builder {
  display: grid;
  gap: 22px;
  padding: clamp(22px, 4vw, 34px);
}

.road-trip-builder fieldset {
  display: grid;
  gap: 12px;
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.road-trip-builder legend {
  margin-bottom: 10px;
  color: var(--forest-dark);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.45rem, 2.3vw, 2rem);
  font-weight: 800;
}

.road-trip-builder label {
  cursor: pointer;
}

.road-trip-builder label > span {
  display: block;
  padding: 15px 16px;
  border: 1px solid rgba(41, 86, 60, 0.13);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.68);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.road-trip-builder input {
  position: absolute;
  opacity: 0;
}

.road-trip-builder input:checked + span {
  border-color: rgba(199, 154, 73, 0.72);
  background: rgba(232, 199, 125, 0.18);
  box-shadow: inset 0 0 0 1px rgba(199, 154, 73, 0.24);
}

.road-trip-builder input:focus-visible + span {
  outline: 3px solid rgba(199, 154, 73, 0.7);
  outline-offset: 3px;
}

.road-trip-builder label:hover > span {
  transform: translateY(-2px);
}

.road-trip-builder strong,
.route-highlights strong {
  display: block;
  color: var(--forest-dark);
}

.road-trip-builder small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-weight: 700;
}

.interest-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.interest-grid label > span {
  min-height: 56px;
  display: grid;
  place-items: center;
  text-align: center;
  font-weight: 800;
}

.road-trip-result {
  padding: clamp(24px, 4vw, 38px);
}

.road-trip-result.is-ready {
  animation: itinerary-ready 520ms ease both;
}

@keyframes itinerary-ready {
  0% {
    opacity: 0.72;
    transform: translateY(16px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.road-trip-result h3 {
  color: var(--forest-dark);
  font-size: clamp(1.85rem, 3vw, 2.8rem);
}

.road-trip-result > p:not(.kicker) {
  margin-top: 10px;
  color: var(--muted);
  font-weight: 600;
}

.road-trip-result ol {
  display: grid;
  gap: 14px;
  margin: 22px 0;
  padding: 0;
  list-style: none;
}

.road-trip-result li,
.road-trip-stop {
  display: grid;
  grid-template-columns: 76px 110px 1fr;
  gap: 14px;
  align-items: start;
  padding: 16px;
  border: 1px solid rgba(41, 86, 60, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.68);
}

.road-trip-result li > span {
  display: grid;
  min-height: 42px;
  place-items: center;
  border-radius: 999px;
  color: var(--forest-dark);
  background: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 900;
  text-align: center;
}

.road-trip-stop img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 14px;
  object-fit: cover;
  box-shadow: 0 12px 24px rgba(23, 57, 39, 0.12);
}

.road-trip-stop__content {
  min-width: 0;
}

.road-trip-result li strong,
.road-trip-result li small,
.road-trip-result li p {
  display: block;
}

.road-trip-result li strong {
  color: var(--forest-dark);
}

.road-trip-result li small {
  margin-top: 3px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.road-trip-result li p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
}

.road-trip-stop__address,
.road-trip-stop__drive {
  color: var(--forest);
}

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

.road-trip-stop__actions .button {
  min-height: 40px;
  padding: 9px 10px;
  font-size: 0.78rem;
  white-space: normal;
}

.road-trip-stop__actions .favorite-button {
  position: static;
  z-index: auto;
  display: inline-flex;
  width: auto;
  height: auto;
  border-radius: 999px;
  box-shadow: none;
  line-height: 1.1;
}

.route-highlights {
  display: grid;
  gap: 10px;
  margin-bottom: 22px;
}

.route-highlights p {
  margin: 0;
  padding: 14px 16px;
  border-left: 4px solid var(--gold);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.62);
}

.route-highlights span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-weight: 700;
}

.button.is-disabled {
  pointer-events: none;
  opacity: 0.58;
}

.passport-stamp {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  pointer-events: none;
  opacity: 0;
}

.passport-stamp::before {
  position: absolute;
  inset: 0;
  background: rgba(23, 57, 39, 0.18);
  content: "";
}

.passport-stamp > div {
  position: relative;
  display: grid;
  width: min(290px, 78vw);
  height: min(290px, 78vw);
  place-items: center;
  padding: 30px;
  border: 7px double rgba(199, 154, 73, 0.92);
  border-radius: 50%;
  color: var(--forest-dark);
  background: rgba(248, 245, 239, 0.92);
  box-shadow: 0 24px 74px rgba(23, 57, 39, 0.32);
  text-align: center;
  text-transform: uppercase;
  transform: rotate(-14deg) scale(1.6);
}

.passport-stamp span,
.passport-stamp small {
  color: var(--gold);
  font-weight: 900;
  letter-spacing: 0.16em;
}

.passport-stamp strong {
  color: var(--forest);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.55rem, 6.2vw, 2.55rem);
  line-height: 0.98;
  text-wrap: balance;
}

.passport-stamp.is-stamping {
  animation: stamp-fade 1150ms ease both;
}

.passport-stamp.is-stamping > div {
  animation: stamp-hit 1150ms cubic-bezier(0.18, 0.9, 0.28, 1.1) both;
}

@keyframes stamp-fade {
  0%,
  100% {
    opacity: 0;
  }

  14%,
  78% {
    opacity: 1;
  }
}

@keyframes stamp-hit {
  0% {
    opacity: 0;
    transform: rotate(-22deg) scale(1.9);
  }

  28% {
    opacity: 1;
    transform: rotate(-10deg) scale(0.92);
  }

  42%,
  78% {
    opacity: 1;
    transform: rotate(-13deg) scale(1);
  }

  100% {
    opacity: 0;
    transform: rotate(-13deg) scale(1.04);
  }
}

.sponsor-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

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

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

.sponsor-card {
  display: grid;
  min-height: 210px;
  align-content: center;
  justify-items: center;
  gap: 8px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.16)),
    var(--cream);
  box-shadow: 0 18px 44px rgba(26, 55, 39, 0.1);
  text-align: center;
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.sponsor-card:hover {
  box-shadow: 0 28px 64px rgba(26, 55, 39, 0.16);
  transform: translateY(-6px);
}

.sponsor-card--diamond {
  position: relative;
  overflow: hidden;
  min-height: 250px;
  padding: clamp(30px, 5vw, 48px);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(248, 245, 239, 0.96)),
    radial-gradient(circle at top left, rgba(199, 154, 73, 0.2), transparent 36%);
  border: 1px solid rgba(199, 154, 73, 0.34);
}

.sponsor-card--diamond::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(199, 154, 73, 0.22);
  border-radius: calc(var(--radius-lg) - 8px);
  pointer-events: none;
}

.sponsor-card--diamond::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 88px;
  height: 5px;
  border-radius: 0 0 999px 999px;
  background: var(--gold);
  transform: translateX(-50%);
}

.sponsor-card img {
  width: 100%;
  height: 96px;
  object-fit: contain;
  margin-bottom: 8px;
}

.sponsor-grid--logos .sponsor-card:last-child img {
  height: 118px;
  object-fit: cover;
  border-radius: var(--radius);
}

.sponsor-card--diamond img {
  position: relative;
  z-index: 1;
  width: min(100%, 220px);
  height: 118px;
  object-fit: contain;
  margin-bottom: 14px;
}

.sponsor-card--diamond:nth-child(2) img {
  height: 150px;
}

.sponsor-card span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.sponsor-card strong {
  color: var(--forest);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.8rem;
}

.sponsor-grid--logos .sponsor-card strong {
  font-family: "Poppins", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.35;
}

.sponsor-card--diamond strong {
  max-width: 16ch;
  font-size: clamp(1.65rem, 3vw, 2.45rem);
  line-height: 1.05;
  text-align: center;
}

.sponsor-callout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 34px;
  padding: 24px;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--forest);
}

.sponsor-callout p {
  font-weight: 800;
}

.site-footer {
  position: relative;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.78);
  background:
    linear-gradient(180deg, rgba(23, 57, 39, 0.95), var(--forest-dark)),
    var(--forest-dark);
}

.site-footer::before {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 160px;
  background:
    linear-gradient(135deg, transparent 0 46%, rgba(248, 245, 239, 0.08) 47% 51%, transparent 52%),
    linear-gradient(25deg, transparent 0 56%, rgba(248, 245, 239, 0.06) 57% 60%, transparent 61%);
  content: "";
  opacity: 0.8;
}

.site-footer > .container {
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(190px, 0.75fr) minmax(220px, 0.85fr);
  gap: 34px;
  padding: 70px 0 38px;
}

.footer-chamber-logo {
  width: 120px;
  margin-top: 24px;
  padding: 10px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
}

.brand--footer {
  color: var(--white);
}

.footer-grid p {
  max-width: 460px;
  margin-top: 16px;
}

.footer-links,
.footer-contact {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-links a,
.footer-contact a {
  color: rgba(255, 255, 255, 0.78);
}

.footer-links a:hover,
.footer-contact a:hover,
.footer-links a:focus-visible,
.footer-contact a:focus-visible {
  color: var(--gold-light);
}

.footer-contact strong {
  color: var(--white);
}

.social-links {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}

.social-links a {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(232, 199, 125, 0.34);
  border-radius: 50%;
  color: var(--gold-light);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.social-links a:hover,
.social-links a:focus-visible {
  color: var(--forest-dark);
  background: var(--gold-light);
}

.reveal-section,
.reveal-section .section-heading,
.reveal-section .passport-steps article,
.reveal-section .destination-tile,
.reveal-section .community-card,
.reveal-section .win-flatlay,
.reveal-section .win-step-card,
.reveal-section .win-feature,
.reveal-section .win-timeline article,
.reveal-section .prize-showcase article,
.reveal-section .good-to-know,
.reveal-section .experience-card,
.reveal-section .awaits-stats article,
.reveal-section .feature-media,
.reveal-section .feature-copy,
.reveal-section .sponsor-card,
.reveal-section .today-panel,
.reveal-section .local-gallery article {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 620ms ease, transform 620ms ease;
}

.reveal-section.is-visible,
.reveal-section.is-visible .section-heading,
.reveal-section.is-visible .passport-steps article,
.reveal-section.is-visible .destination-tile,
.reveal-section.is-visible .community-card,
.reveal-section.is-visible .win-flatlay,
.reveal-section.is-visible .win-step-card,
.reveal-section.is-visible .win-feature,
.reveal-section.is-visible .win-timeline article,
.reveal-section.is-visible .prize-showcase article,
.reveal-section.is-visible .good-to-know,
.reveal-section.is-visible .experience-card,
.reveal-section.is-visible .awaits-stats article,
.reveal-section.is-visible .feature-media,
.reveal-section.is-visible .feature-copy,
.reveal-section.is-visible .sponsor-card,
.reveal-section.is-visible .today-panel,
.reveal-section.is-visible .local-gallery article {
  opacity: 1;
  transform: translateY(0);
}

.reveal-section.is-visible .passport-steps article:nth-child(2),
.reveal-section.is-visible .destination-tile:nth-child(2),
.reveal-section.is-visible .community-card:nth-child(2),
.reveal-section.is-visible .win-step-card:nth-child(2),
.reveal-section.is-visible .win-timeline article:nth-child(2),
.reveal-section.is-visible .prize-showcase article:nth-child(2),
.reveal-section.is-visible .experience-card:nth-child(2),
.reveal-section.is-visible .awaits-stats article:nth-child(2),
.reveal-section.is-visible .sponsor-card:nth-child(2) {
  transition-delay: 80ms;
}

.reveal-section.is-visible .passport-steps article:nth-child(3),
.reveal-section.is-visible .destination-tile:nth-child(3),
.reveal-section.is-visible .community-card:nth-child(3),
.reveal-section.is-visible .win-step-card:nth-child(3),
.reveal-section.is-visible .win-timeline article:nth-child(3),
.reveal-section.is-visible .prize-showcase article:nth-child(3),
.reveal-section.is-visible .experience-card:nth-child(3),
.reveal-section.is-visible .awaits-stats article:nth-child(3),
.reveal-section.is-visible .sponsor-card:nth-child(3) {
  transition-delay: 150ms;
}

.reveal-section.is-visible .passport-steps article:nth-child(4),
.reveal-section.is-visible .destination-tile:nth-child(4),
.reveal-section.is-visible .community-card:nth-child(4),
.reveal-section.is-visible .win-step-card:nth-child(4),
.reveal-section.is-visible .experience-card:nth-child(4),
.reveal-section.is-visible .awaits-stats article:nth-child(4),
.reveal-section.is-visible .sponsor-card:nth-child(4) {
  transition-delay: 220ms;
}

.reveal-section.is-visible .destination-tile:hover,
.reveal-section.is-visible .community-card:hover,
.reveal-section.is-visible .community-card:focus-within,
.reveal-section.is-visible .destination-tile:focus-within {
  transform: translateY(-8px);
}

.reveal-section.is-visible .experience-card:hover,
.reveal-section.is-visible .awaits-stats article:hover,
.reveal-section.is-visible .sponsor-card:hover,
.reveal-section.is-visible .local-gallery article:hover {
  transform: translateY(-6px);
}

.reveal-section.is-visible .feature-media:hover {
  transform: scale(1.012);
}

.reveal-section.is-visible .passport-steps article:hover {
  transform: translateY(-10px) rotate(var(--page-tilt)) rotateX(2deg);
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal-section,
  .reveal-section * {
    opacity: 1 !important;
    transform: none !important;
  }
}

.footer-bottom {
  display: grid;
  justify-items: center;
  gap: 18px;
  padding: 22px 0 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.58);
  text-align: center;
}

.footer-bottom button {
  padding: 0;
  border: 0;
  color: var(--gold-light);
  background: transparent;
  cursor: pointer;
  font-weight: 800;
}

.footer-credit {
  position: relative;
  width: min(100%, 760px);
  margin-top: 4px;
  padding: 28px 0 24px;
  overflow: hidden;
  border-top: 1px solid rgba(232, 199, 125, 0.22);
  border-bottom: 1px solid rgba(232, 199, 125, 0.12);
}

.footer-credit::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 150px;
  height: 150px;
  display: grid;
  place-items: center;
  border: 2px solid rgba(232, 199, 125, 0.42);
  border-radius: 50%;
  color: rgba(232, 199, 125, 0.46);
  content: "PASSPORT";
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  opacity: 0.05;
  pointer-events: none;
  transform: translate(-50%, -50%) rotate(-12deg);
}

.footer-credit p {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.56);
  font-size: clamp(0.76rem, 1.4vw, 0.9rem);
  line-height: 1.7;
}

.footer-credit p + p {
  margin-top: 10px;
}

.footer-credit strong {
  color: rgba(255, 255, 255, 0.82);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 700;
}

@media (max-width: 1020px) {
  .nav-toggle {
    display: block;
    flex: 0 0 auto;
  }

  .site-nav {
    position: fixed;
    top: 140px;
    right: 18px;
    left: 18px;
    display: none;
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    color: var(--forest);
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .masthead-brand {
    min-width: 0;
  }

  .masthead-brand__logo--chamber {
    height: 70px;
  }

  .masthead-brand__logo--passport {
    height: 62px;
  }

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

  .split,
  .feature-layout,
  .feature-layout--reverse,
  .today-layout,
  .road-trip-layout,
  .passport-tools {
    grid-template-columns: 1fr;
  }

  .feature-layout--reverse .feature-media {
    order: 0;
  }

  .passport-steps,
  .experience-grid,
  .stop-grid,
  .sponsor-grid,
  .sponsor-grid--logos,
  .local-gallery,
  .awaits-stats,
  .community-grid,
  .win-route,
  .win-timeline,
  .prize-showcase,
  .destination-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .win-feature {
    grid-template-columns: 1fr;
  }

  .road-trip-intro {
    text-align: left;
  }

  .win-route::before,
  .win-timeline article:not(:last-child)::after {
    display: none;
  }

  .win-flatlay {
    min-height: 460px;
  }

  .flatlay-passport {
    left: 28%;
    width: 44%;
  }

  .flatlay-photo--one {
    right: 10%;
  }

  .flatlay-sunglasses,
  .flatlay-stamp--one {
    display: none;
  }

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

@media (max-width: 680px) {
  html {
    scroll-padding-top: 220px;
  }

  .site-header {
    justify-content: center;
    min-height: 206px;
    padding: 14px 58px 16px;
    text-align: center;
  }

  .site-header.is-scrolled {
    min-height: 190px;
    padding-block: 12px;
  }

  .site-header .nav-toggle {
    position: absolute;
    top: 18px;
    right: 18px;
  }

  .site-nav {
    top: 202px;
  }

  .site-header.is-scrolled .site-nav,
  .site-header.menu-active .site-nav {
    top: 190px;
  }

  .brand {
    min-width: 0;
  }

  .masthead-brand {
    align-items: center;
    width: 100%;
  }

  .masthead-brand__logos {
    flex-direction: column;
    gap: 8px;
  }

  .masthead-brand__logo--chamber {
    height: 72px;
  }

  .masthead-brand__logo--passport {
    height: 62px;
  }

  .masthead-brand__copy strong {
    font-size: 0.92rem;
  }

  .masthead-brand__copy small {
    font-size: 0.62rem;
  }

  .masthead-brand__copy em {
    font-size: 1.16rem;
  }

  .brand__seal {
    width: 44px;
    height: 44px;
    font-size: 0.82rem;
  }

  .brand__logo {
    width: 48px;
    height: 48px;
  }

  .brand__text small {
    display: none;
  }

  .hero {
    min-height: 90vh;
    padding-top: 220px;
  }

  .hero__content {
    width: min(100% - 32px, 860px);
    margin-bottom: 74px;
    padding: 28px 20px;
    border-radius: 18px;
  }

  .hero__cue {
    display: none;
  }

  .button-row,
  .sponsor-callout,
  .footer-bottom {
    justify-items: stretch;
  }

  .button {
    width: 100%;
    min-height: 54px;
  }

  .stop-section {
    scroll-margin-top: 230px;
  }

  .passport-steps,
  .experience-grid,
  .stop-grid,
  .sponsor-grid,
  .sponsor-grid--logos,
  .local-gallery,
  .awaits-stats,
  .community-grid,
  .win-route,
  .win-feature__entries,
  .win-timeline,
  .prize-showcase,
  .interest-grid,
  .destination-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .destination-tile {
    min-height: 370px;
    border-radius: 18px;
  }

  .destination-tile::before {
    width: 68px;
    height: 68px;
    font-size: 0.52rem;
  }

  .stop-card__actions {
    grid-template-columns: 1fr;
  }

  .passport-progress__stats {
    grid-template-columns: 1fr;
  }

  .experience-card h3 {
    min-height: 0;
  }

  .passport-steps article {
    --page-tilt: 0deg;
  }

  .feature-media {
    min-height: 360px;
  }

  .road-trip-builder,
  .road-trip-result {
    border-radius: 22px;
  }

  .today-adventure-panel {
    grid-template-columns: 1fr;
    border-radius: 22px;
  }

  .today-adventure-panel__weather {
    justify-self: start;
    grid-template-columns: auto auto;
    gap: 4px 12px;
    min-width: 190px;
  }

  .today-adventure-panel__weather span {
    grid-row: 1 / 3;
  }

  .road-trip-result li {
    grid-template-columns: 1fr;
    padding: 14px;
  }

  .road-trip-result li > span {
    width: fit-content;
    min-height: 36px;
    padding: 8px 12px;
  }

  .road-trip-stop img {
    max-height: 190px;
  }

  .road-trip-stop__actions {
    grid-template-columns: 1fr;
  }

  .win-flatlay {
    min-height: 520px;
    border-radius: 24px;
  }

  .flatlay-map {
    top: 8%;
    left: 4%;
    width: 74%;
    height: 42%;
  }

  .flatlay-passport {
    top: 20%;
    left: 18%;
    width: 66%;
    min-height: 190px;
  }

  .flatlay-camera {
    top: 58%;
    left: 44%;
    width: 142px;
    height: 92px;
  }

  .flatlay-camera::before {
    top: 22px;
    left: 44px;
    width: 48px;
    height: 48px;
  }

  .flatlay-photo {
    width: 118px;
    height: 94px;
  }

  .flatlay-photo--one {
    top: 9%;
    right: 6%;
  }

  .flatlay-photo--two {
    right: 8%;
    bottom: 24%;
  }

  .flatlay-ticket {
    bottom: 10%;
    left: 12%;
    width: 190px;
  }

  .flatlay-brochure,
  .flatlay-stamp,
  .flatlay-keys {
    display: none;
  }
}
