:root {
  --ink: #15352b;
  --muted: #5f6f65;
  --paper: #f7fbf3;
  --panel: #ffffff;
  --line: #d9e7d4;
  --red: #d53b2f;
  --yellow: #f7c948;
  --cyan: #147c72;
  --green: #258247;
  --light-green: #e7f5df;
  --mint: #bfe8d0;
  --shadow: 0 18px 50px rgba(21, 53, 43, .16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  min-height: 72px;
  padding: 12px clamp(18px, 4vw, 56px);
  background: rgba(236, 248, 231, .96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  text-decoration: none;
}

.brand-logo {
  width: 58px;
  height: 58px;
  padding: 3px;
  object-fit: contain;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 50%;
  box-shadow: 0 5px 14px rgba(21, 53, 43, .12);
}

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

.brand strong {
  font-size: 1.05rem;
}

.brand small {
  color: var(--muted);
  font-size: .78rem;
}

.top-nav {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 3vw, 34px);
  font-size: .93rem;
}

.top-nav a,
.header-action,
.button {
  text-decoration: none;
}

.top-nav a {
  color: #24483a;
}

.header-action,
.button,
.attraction-card button,
.request-box button,
.filter {
  min-height: 42px;
  border-radius: 8px;
  border: 1px solid transparent;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.header-action {
  display: inline-flex;
  align-items: center;
  padding: 0 18px;
  color: #fff;
  background: var(--green);
}

.hero {
  position: relative;
  min-height: min(680px, calc(100vh - 30px));
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
}

.hero picture,
.hero picture img,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero picture img {
  object-fit: cover;
  object-position: center 32%;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(15, 82, 48, .82) 0%, rgba(27, 118, 69, .42) 48%, rgba(50, 146, 83, .08) 100%),
    linear-gradient(0deg, rgba(10, 47, 34, .42) 0%, rgba(10, 47, 34, 0) 50%);
}

.hero-content {
  position: relative;
  width: min(780px, calc(100% - 36px));
  margin: 0 clamp(18px, 7vw, 92px) 132px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--red);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--yellow);
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

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

h1 {
  max-width: 760px;
  font-size: clamp(2.55rem, 7vw, 6rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 4.1rem);
}

h3 {
  font-size: 1.3rem;
}

.hero-copy {
  max-width: 680px;
  margin: 22px 0 0;
  font-size: clamp(1.05rem, 2vw, 1.34rem);
}

.hero-memory-card {
  position: absolute;
  right: clamp(18px, 7vw, 92px);
  bottom: clamp(118px, 15vw, 172px);
  z-index: 1;
  width: clamp(180px, 25vw, 340px);
  margin: 0;
  padding: 8px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 22px 48px rgba(8, 41, 28, .34);
  transform: rotate(3deg);
}

.hero-memory-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center;
  border-radius: 5px;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
}

.button.primary {
  color: #203111;
  background: var(--yellow);
}

.button.secondary {
  color: #fff;
  background: rgba(255, 255, 255, .14);
  border-color: rgba(255, 255, 255, .5);
}

.button.film-button {
  color: #fff;
  background: rgba(37, 130, 71, .82);
  border-color: rgba(232, 255, 219, .45);
}

.contact .button.secondary {
  color: var(--ink);
  background: #fff;
  border-color: var(--line);
}

.hero-facts {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(760px, calc(100% - 36px));
  margin: 0 clamp(18px, 7vw, 92px) 28px;
  background: rgba(232, 255, 219, .32);
  border: 1px solid rgba(232, 255, 219, .46);
  border-radius: 8px;
  overflow: hidden;
}

.hero-facts div {
  padding: 18px;
  background: rgba(21, 80, 54, .58);
}

.hero-facts strong,
.hero-facts span {
  display: block;
}

.hero-facts strong {
  font-size: 1.18rem;
}

.hero-facts span {
  color: rgba(255, 255, 255, .78);
  font-size: .9rem;
}

.section {
  padding: clamp(58px, 8vw, 110px) clamp(18px, 5vw, 72px);
  background: #fff;
}

.intro {
  display: grid;
  grid-template-columns: minmax(260px, 520px) minmax(280px, 680px);
  gap: clamp(28px, 7vw, 92px);
  align-items: start;
}

.intro-copy {
  color: var(--muted);
  font-size: 1.08rem;
}

.film-section {
  padding-top: clamp(58px, 8vw, 110px);
  background: #f7fbf3;
}

.film-card {
  display: grid;
  grid-template-columns: minmax(280px, 1.05fr) minmax(300px, .95fr);
  gap: 0;
  max-width: 1180px;
  margin: 0 auto;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.film-image {
  position: relative;
  min-height: 360px;
  background: var(--green);
}

.film-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.film-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(21, 53, 43, .14), rgba(21, 53, 43, .56));
}

.play-mark {
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  width: 92px;
  height: 92px;
  transform: translate(-50%, -50%);
  background: rgba(247, 201, 72, .96);
  border-radius: 50%;
  box-shadow: 0 14px 34px rgba(21, 53, 43, .26);
}

.play-mark::before {
  content: "";
  position: absolute;
  left: 38px;
  top: 29px;
  width: 0;
  height: 0;
  border-top: 17px solid transparent;
  border-bottom: 17px solid transparent;
  border-left: 24px solid #173829;
}

.film-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 5vw, 58px);
}

.film-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.06rem;
}

.film-copy .video-note {
  margin-top: 12px;
  padding: 12px 14px;
  color: #426054;
  background: #eef8e8;
  border: 1px solid #cae5bd;
  border-radius: 8px;
  font-size: .95rem;
}

.film-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 24px;
}

.film-actions span {
  color: var(--muted);
  font-weight: 700;
}

.feature-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  padding-top: 0;
  background: #dcebd5;
}

.event-gallery {
  padding-top: 0;
  background: #fff;
}

.event-gallery-reel {
  display: grid;
  grid-auto-columns: minmax(250px, 34vw);
  grid-auto-flow: column;
  gap: 14px;
  margin: 30px calc(clamp(18px, 5vw, 72px) * -1) 0;
  padding: 0 clamp(18px, 5vw, 72px) 12px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: x proximity;
}

.event-gallery-reel figure {
  position: relative;
  min-height: 290px;
  margin: 0;
  overflow: hidden;
  background: var(--green);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(21, 53, 43, .12);
  scroll-snap-align: start;
}

.event-gallery-reel img {
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
}

.feature-strip article {
  min-height: 230px;
  padding: clamp(24px, 4vw, 44px);
  color: #fff;
  background: #285c3f;
}

.feature-strip article:nth-child(2) {
  background: #167768;
}

.feature-strip article:nth-child(3) {
  background: #7a982d;
}

.feature-icon {
  display: inline-block;
  margin-bottom: 46px;
  color: #ffe278;
  font-weight: 800;
}

.feature-strip p {
  color: rgba(255, 255, 255, .78);
}

.section-heading {
  max-width: 760px;
}

.section-heading.wide {
  max-width: 980px;
}

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

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 34px 0 26px;
}

.filter {
  padding: 0 16px;
  color: var(--ink);
  background: #fff;
  border-color: var(--line);
}

.filter.is-active {
  color: #fff;
  background: var(--green);
}

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

.attraction-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(21, 53, 43, .08);
}

.attraction-card.featured {
  grid-column: span 2;
}

.attraction-card img {
  width: 100%;
  aspect-ratio: 1.45 / 1;
  object-fit: cover;
}

.attraction-card.featured img {
  aspect-ratio: 1.9 / 1;
}

.attraction-card div {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 18px;
}

.tag {
  margin: 0 0 9px;
  color: var(--green);
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.attraction-card p:not(.tag) {
  color: var(--muted);
}

dl {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 12px;
  margin: auto 0 18px;
  padding-top: 10px;
  font-size: .9rem;
}

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

dd {
  margin: 0;
  font-weight: 700;
}

.attraction-card button,
.request-box button {
  width: 100%;
  color: var(--ink);
  background: #eff9df;
  border-color: #b9da8b;
}

.attraction-card button.is-selected {
  color: #fff;
  background: var(--green);
  border-color: var(--green);
}

.story {
  display: grid;
  grid-template-columns: minmax(240px, 420px) minmax(320px, 700px);
  gap: clamp(28px, 6vw, 82px);
  align-items: center;
  background: var(--light-green);
}

.story-media img {
  width: 100%;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.story-copy p {
  color: var(--muted);
  font-size: 1.06rem;
}

.check-list {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.check-list span {
  padding: 14px 16px;
  background: #fffef7;
  border-left: 5px solid var(--green);
  border-radius: 8px;
  font-weight: 700;
}

.references {
  background: #fff;
}

.reference-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 1.06rem;
}

.contact {
  background:
    radial-gradient(circle at top left, rgba(247, 201, 72, .18), transparent 34%),
    linear-gradient(135deg, #143c2e, #236b43);
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(260px, 420px);
  gap: 28px;
  max-width: 1180px;
  margin: 0 auto;
  color: #fff;
}

.contact-panel > div:first-child {
  padding-right: clamp(0px, 4vw, 48px);
}

.contact-panel p,
.contact-panel address {
  color: rgba(255, 255, 255, .78);
  font-style: normal;
}

.contact-panel a {
  color: inherit;
}

.request-box {
  align-self: start;
  padding: 24px;
  color: var(--ink);
  background: #fff;
  border-radius: 8px;
}

.request-box p {
  color: var(--muted);
}

#selection-list {
  display: grid;
  gap: 8px;
  margin: 14px 0 18px;
  padding: 0;
  list-style: none;
}

#selection-list li {
  padding: 10px 12px;
  background: #edf8e5;
  border-radius: 8px;
  font-weight: 700;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 26px clamp(18px, 5vw, 72px);
  color: #fff;
  background: #0b281d;
}

.is-hidden {
  display: none;
}

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

@media (max-width: 760px) {
  .site-header {
    position: static;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .top-nav {
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .header-action {
    justify-content: center;
  }

  .hero {
    min-height: 780px;
  }

  .hero-content {
    margin: 0 18px 132px;
  }

  .hero-memory-card {
    bottom: 238px;
    right: 18px;
    width: 132px;
    transform: rotate(3deg);
  }

  .hero-facts {
    grid-template-columns: 1fr;
    margin: 0 18px 18px;
  }

  .intro,
  .film-card,
  .feature-strip,
  .story,
  .reference-list,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .feature-strip {
    gap: 0;
  }

  .event-gallery-reel {
    grid-auto-columns: minmax(220px, 78vw);
  }

  .event-gallery-reel figure {
    min-height: 230px;
  }

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

  .attraction-card.featured {
    grid-column: span 1;
  }

  .site-footer {
    flex-direction: column;
  }
}
