:root {
  --evergreen: #2f4a3a;
  --evergreen-deep: #1c3327;
  --amber: #b97738;
  --ink: #1c241e;
  --muted: #5c6a60;
  --moss: #7e8a7f;
  --paper: #f3eee3;
  --porcelain: #fbf7ee;
  --profile: #fcfaf4;
  --line: #e3dbcc;
  --soft-line: #eee6d6;
  --gold: #c49a3b;
  --shadow: 0 24px 70px rgba(47, 74, 58, .18);
  --soft-shadow: 0 14px 38px rgba(47, 74, 58, .12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(251, 247, 238, .86), rgba(243, 238, 227, .94)),
    var(--paper);
  font-family: Avenir, "Avenir Next", "Segoe UI", system-ui, sans-serif;
  letter-spacing: 0;
}

body::before {
  position: fixed;
  inset: auto 0 0;
  z-index: -2;
  height: 42vh;
  content: "";
  background: url("/assets/assets/images/forest_mountain_treeline.png") center bottom / min(1040px, 120vw) auto no-repeat;
  opacity: .18;
}

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

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

.site-header {
  position: fixed;
  top: 16px;
  left: 50%;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1120px, calc(100% - 32px));
  min-height: 64px;
  padding: 10px 12px 10px 18px;
  color: var(--evergreen);
  background: rgba(251, 247, 238, .82);
  border: 1px solid rgba(227, 219, 204, .9);
  border-radius: 999px;
  box-shadow: 0 12px 36px rgba(47, 74, 58, .12);
  transform: translateX(-50%);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  font-size: 19px;
  font-weight: 800;
}

.brand-mark,
.hero h1,
.coupon-offer strong {
  font-family: Didot, "Bodoni 72", Georgia, serif;
}

.brand-mark {
  font-size: 27px;
  line-height: .9;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 800;
}

.site-nav a {
  padding: 13px 16px;
  border-radius: 999px;
  color: rgba(28, 36, 30, .72);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--evergreen);
  background: rgba(47, 74, 58, .08);
}

.site-nav .nav-cta {
  color: var(--porcelain);
  background: var(--evergreen);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  color: var(--evergreen);
  background: rgba(47, 74, 58, .08);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  border-radius: 99px;
}

.hero {
  position: relative;
  display: grid;
  min-height: 100vh;
  padding: 154px max(28px, calc((100vw - 1120px) / 2)) 72px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(251, 247, 238, .52), rgba(243, 238, 227, .98)),
    var(--paper);
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: 0;
  content: "";
  background:
    radial-gradient(circle at 72% 32%, rgba(196, 154, 59, .12), transparent 28%),
    linear-gradient(120deg, rgba(47, 74, 58, .08), transparent 46%);
  pointer-events: none;
}

.hero-bg {
  position: absolute;
  z-index: 0;
  opacity: .24;
  pointer-events: none;
}

.hero-bg-left {
  right: 54%;
  bottom: -200px;
  width: min(620px, 64vw);
}

.hero-bg-right {
  right: -60px;
  bottom: -170px;
  width: min(560px, 50vw);
  opacity: .2;
}

.hero-treeline {
  position: absolute;
  inset: auto 0 0;
  z-index: 0;
  height: 320px;
  background: url("/assets/assets/images/nh_treeline.png") center bottom / cover no-repeat;
  opacity: .22;
}

.hero-content {
  position: relative;
  z-index: 2;
  align-self: center;
  max-width: 640px;
  padding-top: 24px;
}

.region-line,
.section-heading p,
.map-copy > p:first-child,
.business-panel > div > p {
  margin: 0 0 18px;
  color: var(--evergreen);
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  color: var(--evergreen);
  font-size: 106px;
  line-height: .9;
  font-weight: 700;
}

.hero-copy {
  max-width: 610px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 25px;
  line-height: 1.42;
}

.hero-actions,
.ticket-actions,
.site-footer div {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions {
  margin-top: 36px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 800;
  box-shadow: var(--soft-shadow);
}

.button-primary {
  color: var(--porcelain);
  background: var(--evergreen);
}

.button-secondary {
  color: var(--evergreen);
  background: rgba(251, 247, 238, .72);
  border-color: rgba(47, 74, 58, .18);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.hero-showcase {
  position: absolute;
  right: max(26px, calc((100vw - 1120px) / 2));
  bottom: 84px;
  z-index: 3;
  width: min(490px, 43vw);
}

.ticket-card,
.coupon-card,
.feature-card,
.business-panel,
.final-cta,
.map-panel {
  background: rgba(251, 247, 238, .86);
  border: 1px solid rgba(47, 74, 58, .16);
  box-shadow: var(--shadow);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.ticket-card {
  display: grid;
  grid-template-columns: 36% 1fr;
  min-height: 220px;
  overflow: hidden;
  border-radius: 32px;
}

.ticket-media {
  position: relative;
  overflow: hidden;
  background: #124d55;
}

.ticket-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background: rgba(18, 77, 85, .35);
}

.ticket-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ticket-copy {
  position: relative;
  padding: 28px 28px 24px 34px;
}

.ticket-copy::before {
  position: absolute;
  top: 22px;
  bottom: 22px;
  left: 16px;
  width: 1px;
  content: "";
  border-left: 2px dashed rgba(47, 74, 58, .16);
}

.ticket-copy p,
.coupon-card p {
  margin: 0 0 12px;
  color: var(--evergreen);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.ticket-copy h2,
.coupon-card h2 {
  margin: 0;
  color: var(--ink);
  font-family: Georgia, serif;
  font-size: 32px;
  line-height: 1.03;
}

.ticket-copy > span,
.coupon-card span {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
}

.ticket-actions {
  margin-top: 24px;
}

.ticket-actions strong,
.ticket-actions em {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  font-size: 13px;
  font-style: normal;
  font-weight: 800;
}

.ticket-actions strong {
  color: var(--porcelain);
  background: var(--evergreen);
}

.ticket-actions em {
  color: var(--evergreen);
  border: 1px solid rgba(47, 74, 58, .2);
}

.coupon-card {
  display: grid;
  grid-template-columns: 1fr 42%;
  gap: 20px;
  width: 92%;
  margin: -18px 0 0 auto;
  padding: 22px 24px;
  border-radius: 26px;
  transform: rotate(-2deg);
}

.coupon-card h2 {
  font-size: 26px;
}

.coupon-offer {
  display: grid;
  justify-items: center;
  align-content: center;
  text-align: center;
  border-left: 2px dashed rgba(47, 74, 58, .16);
}

.coupon-offer strong {
  color: var(--evergreen);
  font-size: 52px;
  line-height: .78;
}

.coupon-offer span {
  margin-top: 18px;
  padding: 9px 12px;
  border: 1px solid rgba(47, 74, 58, .2);
  border-radius: 10px;
  color: var(--evergreen);
  font-size: 12px;
}

.section {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 98px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(210px, 34%) 1fr;
  gap: 58px;
  align-items: start;
  margin-bottom: 40px;
}

.section-heading h2,
.map-copy h2,
.business-panel h2,
.final-cta h2 {
  margin: 0;
  color: var(--evergreen-deep);
  font-size: 48px;
  line-height: 1.04;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.feature-card {
  min-height: 290px;
  padding: 30px;
  border-radius: 26px;
}

.feature-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 26px;
  border-radius: 999px;
  color: var(--evergreen);
  background: var(--porcelain);
  border: 1px solid var(--line);
}

.feature-icon::before {
  width: 26px;
  height: 26px;
  content: "";
  background: currentColor;
}

.search-icon::before {
  border-radius: 50%;
  box-shadow: inset 0 0 0 5px var(--porcelain);
  clip-path: polygon(0 0, 82% 0, 82% 56%, 100% 74%, 84% 90%, 66% 72%, 0 72%);
}

.ticket-icon::before {
  clip-path: polygon(6% 22%, 94% 22%, 94% 78%, 6% 78%, 6% 60%, 16% 50%, 6% 40%);
}

.map-icon::before {
  clip-path: polygon(48% 0, 68% 4%, 78% 24%, 73% 50%, 50% 100%, 27% 50%, 22% 24%, 32% 4%);
}

.feature-card h3,
.business-list h3 {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: 25px;
  line-height: 1.12;
}

.feature-card p,
.business-list p,
.map-copy p,
.final-cta p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

.map-section {
  display: grid;
  grid-template-columns: .82fr 1fr;
  gap: 52px;
  align-items: center;
}

.map-copy p:last-child {
  margin-top: 24px;
  max-width: 520px;
}

.map-panel {
  position: relative;
  min-height: 480px;
  overflow: hidden;
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(251, 247, 238, .86), rgba(243, 247, 234, .72)),
    url("/assets/assets/images/map_background_transparent_chroma_keyed.png") center / cover no-repeat;
}

.map-outline {
  position: absolute;
  right: 58px;
  top: 58px;
  width: 230px;
  opacity: .84;
}

.map-pin {
  position: absolute;
  width: 70px;
  filter: drop-shadow(0 16px 16px rgba(28, 36, 30, .18));
}

.pin-one {
  left: 38%;
  top: 48%;
}

.pin-two {
  right: 20%;
  top: 28%;
  width: 60px;
}

.pin-three {
  left: 22%;
  top: 30%;
  width: 58px;
}

.map-label {
  position: absolute;
  min-width: 150px;
  padding: 12px 18px;
  color: var(--evergreen);
  background: rgba(251, 247, 238, .9);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: var(--soft-shadow);
  font-weight: 900;
  text-align: center;
}

.label-one {
  left: 27%;
  top: 40%;
}

.label-two {
  right: 7%;
  top: 20%;
}

.label-three {
  left: 8%;
  top: 22%;
}

.business-panel {
  display: grid;
  grid-template-columns: .78fr 1fr;
  gap: 46px;
  padding: 46px;
  border-radius: 34px;
}

.business-panel .button {
  grid-column: 1;
  justify-self: start;
}

.business-list {
  display: grid;
  gap: 22px;
}

.business-list article {
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.business-list article:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.town-section {
  padding-top: 72px;
}

.town-ribbon {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.town-ribbon span {
  display: inline-flex;
  align-items: center;
  min-height: 54px;
  padding: 0 22px;
  color: var(--evergreen);
  background: rgba(251, 247, 238, .86);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: 0 10px 26px rgba(47, 74, 58, .08);
  font-size: 18px;
  font-weight: 800;
}

.final-cta {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 26px;
  align-items: center;
  width: min(1120px, calc(100% - 40px));
  margin: 24px auto 92px;
  padding: 30px 34px;
  overflow: hidden;
  border-radius: 34px;
}

.final-cta img {
  width: 104px;
  opacity: .9;
}

.final-cta p {
  max-width: 590px;
  margin-top: 8px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 0 0 40px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.site-footer a {
  color: var(--evergreen);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

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

@media (max-width: 980px) {
  .site-header {
    top: 10px;
    width: calc(100% - 20px);
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    left: 0;
    display: none;
    padding: 10px;
    background: rgba(251, 247, 238, .96);
    border: 1px solid var(--line);
    border-radius: 28px;
    box-shadow: var(--soft-shadow);
  }

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

  .site-nav a {
    padding: 15px 18px;
  }

  .hero {
    min-height: auto;
    padding: 130px 22px 46px;
  }

  .hero h1 {
    font-size: 68px;
  }

  .hero-copy {
    font-size: 21px;
  }

  .hero-showcase {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 42px;
  }

  .section,
  .final-cta,
  .site-footer {
    width: calc(100% - 32px);
  }

  .section-heading,
  .map-section,
  .business-panel,
  .final-cta {
    grid-template-columns: 1fr;
  }

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

  .feature-card {
    min-height: 0;
  }

  .business-panel .button {
    grid-column: auto;
  }
}

@media (max-width: 640px) {
  .hero {
    padding-top: 118px;
  }

  .hero h1 {
    font-size: 54px;
  }

  .hero-copy {
    font-size: 18px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .ticket-card {
    grid-template-columns: 1fr;
  }

  .ticket-media {
    min-height: 150px;
  }

  .coupon-card {
    grid-template-columns: 1fr;
    width: 100%;
    transform: none;
  }

  .coupon-offer {
    padding-top: 18px;
    border-top: 2px dashed rgba(47, 74, 58, .16);
    border-left: 0;
  }

  .section {
    padding: 64px 0;
  }

  .section-heading h2,
  .map-copy h2,
  .business-panel h2,
  .final-cta h2 {
    font-size: 34px;
  }

  .map-panel {
    min-height: 380px;
  }

  .map-outline {
    right: 24px;
    top: 42px;
    width: 170px;
  }

  .map-label {
    min-width: 118px;
    padding: 10px 13px;
    font-size: 13px;
  }

  .business-panel,
  .final-cta {
    padding: 28px;
  }

  .final-cta img {
    width: 86px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }
}

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