/* Shared layout and component defaults. */
@font-face {
  font-family: Display;
  src: url('../fonts/cormorant-garamond-medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: Display;
  src: url('../fonts/cormorant-garamond-medium-italic.ttf') format('truetype');
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: Body;
  src: url('../fonts/dm-sans-regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: Body;
  src: url('../fonts/dm-sans-semibold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
:root {
  --forest: #101c17;
  --deep: #0b130f;
  --surface: #17251d;
  --lime: #c0e881;
  --white: #f5f5ed;
  --muted: #abb5a8;
  --line: rgba(240, 246, 232, 0.17);
  --pad: clamp(24px, 5.1vw, 88px);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
body {
  margin: 0;
  color: var(--white);
  background: var(--forest);
  font:
    400 16px/1.65 Body,
    Arial,
    sans-serif;
  -webkit-font-smoothing: antialiased;
}
body.menu-open,
body.modal-open {
  overflow: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
  color: inherit;
  cursor: pointer;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
button {
  border: 0;
}
img {
  display: block;
  max-width: 100%;
}
button:focus-visible,
a:focus-visible,
summary:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 6px;
}
::selection {
  background: var(--lime);
  color: var(--forest);
}
h1,
h2,
h3,
p,
figure {
  margin: 0;
}
h1,
h2 {
  font:
    500 clamp(3.2rem, 5.5vw, 6rem) / 0.97 Display,
    Georgia,
    serif;
  letter-spacing: -0.038em;
}
h1 em,
h2 em {
  color: var(--lime);
  font-weight: 500;
}
p {
  max-width: 44ch;
}
a,
button,
summary {
  touch-action: manipulation;
}
svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
}
.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  background: var(--lime);
  color: var(--forest);
  padding: 12px;
  z-index: 100;
  transform: translateY(-150%);
}
.skip-link:focus {
  transform: none;
}
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 112px;
  padding: 0 var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  z-index: 20;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.wordmark {
  display: flex;
  align-items: center;
  gap: 13px;
  flex-shrink: 0;
  line-height: 1.08;
  font-size: 21px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.wordmark small {
  display: block;
  font-size: 12px;
  letter-spacing: 0.28em;
  margin-bottom: 5px;
  font-weight: 400;
}
.brand-symbol {
  width: 44px;
  height: 44px;
  color: var(--lime);
  stroke-width: 2.4;
}
.desktop-nav {
  display: flex;
  gap: 30px;
  font-size: 14px;
}
.desktop-nav a {
  padding: 12px 0;
  transition: color 0.2s;
  position: relative;
}
.desktop-nav a:after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--lime);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.desktop-nav a:hover {
  color: var(--lime);
}
.desktop-nav a:hover:after {
  transform: scaleX(1);
}
.button {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 45px;
  padding: 16px 24px;
  background: var(--lime);
  color: var(--forest);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
  border: 1px solid var(--lime);
  transition:
    background 0.25s,
    transform 0.25s;
  position: relative;
}
.button:hover {
  background: #d5f4a5;
  transform: translateY(-3px);
}
.button span {
  font-size: 23px;
  font-weight: 400;
  line-height: 1;
}
.button-small {
  font-size: 14px;
  min-height: 46px;
  padding: 11px 18px;
  gap: 22px;
}
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: none;
}
.menu-toggle span {
  display: block;
  height: 1px;
  background: var(--white);
  margin: 7px 0;
  transition: transform 0.3s;
}
.mobile-nav[hidden] {
  display: none;
}
.hero {
  height: max(780px, 100svh);
  max-height: 1180px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: #253223;
}
.hero-scene {
  position: absolute;
  inset: -3%;
  z-index: -3;
  overflow: hidden;
}
.hero-photo,
#lake-canvas {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
}
#lake-canvas {
  opacity: 0;
  transition: opacity 1.4s;
}
.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(
      90deg,
      rgba(8, 19, 13, 0.7) 0%,
      rgba(8, 19, 13, 0.18) 63%,
      rgba(8, 19, 13, 0.08)
    ),
    linear-gradient(
      0deg,
      #101c17 0%,
      rgba(9, 19, 13, 0.34) 21%,
      transparent 67%,
      rgba(9, 19, 13, 0.3)
    );
}
.hero-content {
  position: absolute;
  top: 26%;
  left: var(--pad);
  z-index: 2;
}
.eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.17em;
  line-height: 1.6;
  text-transform: uppercase;
}
.hero-kicker {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 25px;
}
.eyebrow-line {
  width: 37px;
  height: 1px;
  background: var(--lime);
}
.hero h1 {
  font-size: clamp(5rem, 8.7vw, 9.3rem);
  line-height: 0.9;
  letter-spacing: -0.045em;
  text-shadow: 0 3px 35px #0b1c1433;
}
.hero h1 em {
  display: inline-block;
  padding: 5px 5px 12px 0;
}
.hero-description {
  margin-top: 26px;
  font-size: 17px;
  line-height: 1.7;
  color: #edf0e5;
  letter-spacing: 0.005em;
}
.hero-button {
  margin-top: 30px;
}
.hero-edge {
  position: absolute;
  right: var(--pad);
  top: 160px;
  writing-mode: vertical-rl;
  font-size: 12px;
  letter-spacing: 0.14em;
  opacity: 0.8;
}
.hero-bottom {
  position: absolute;
  left: var(--pad);
  right: var(--pad);
  bottom: 28px;
  border-top: 1px solid var(--line);
  padding-top: 21px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: #c9d0c4;
}
.hero-bottom > span {
  font-size: 12px;
  letter-spacing: 0.16em;
}
.scroll-cue {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 12px;
  letter-spacing: 0.04em;
}
.scroll-cue span {
  font-size: 22px;
  animation: scrollNudge 3s ease-in-out infinite;
}
.motion-toggle {
  display: flex;
  gap: 9px;
  align-items: center;
  padding: 6px 0;
  background: none;
  font-size: 12px;
  color: #d9dfd4;
}
.motion-icon {
  font-size: 16px;
}
.hero-captures {
  position: absolute;
  right: calc(var(--pad) + 16px);
  bottom: 150px;
  width: 237px;
  height: 227px;
  perspective: 900px;
  z-index: 3;
}
.mini-photo {
  position: absolute;
  top: 0;
  width: 190px;
  height: 150px;
  padding: 5px;
  background: #e7e9dc;
  box-shadow: 0 16px 32px #0007;
  transition: transform 0.7s var(--ease);
  transform-style: preserve-3d;
}
.mini-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
}
.mini-back {
  left: 0;
  top: -7px;
  transform: rotate(-13deg) rotateY(-12deg);
}
.mini-front {
  right: 0;
  top: 28px;
  transform: rotate(9deg) rotateY(-12deg) translateZ(20px);
}
.mini-front > span {
  position: absolute;
  right: 12px;
  bottom: 12px;
  border-radius: 50%;
  background: var(--lime);
  color: var(--forest);
  height: 33px;
  width: 33px;
  text-align: center;
  line-height: 31px;
}
.hero-captures:hover .mini-back {
  transform: rotate(-20deg) translate(-16px, -14px) rotateY(-12deg);
}
.hero-captures:hover .mini-front {
  transform: rotate(6deg) translate(6px, -5px) rotateY(8deg) translateZ(40px);
}
.mini-label {
  position: absolute;
  left: 30px;
  top: 194px;
  display: grid;
  gap: 2px;
}
.mini-label > span {
  font:
    italic 500 25px/1 Display,
    Georgia,
    serif;
}
.mini-label small {
  font-size: 12px;
  letter-spacing: 0.14em;
  color: #b8c7b4;
  margin-top: 5px;
}
.place-strip {
  background: var(--lime);
  color: var(--forest);
  padding: 20px var(--pad);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 22px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.13em;
  overflow: hidden;
}
.strip-wave {
  font:
    34px/1 Georgia,
    serif;
  opacity: 0.7;
}
.section-pad {
  padding: 55px var(--pad) 110px;
}
.section-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 35px;
  border-bottom: 1px solid var(--line);
}
.section-top .eyebrow {
  color: var(--lime);
}
.section-note {
  font-size: 12px;
  color: var(--muted);
}
.place-grid {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 10%;
  align-items: center;
  padding-top: 80px;
}
.place-copy h2 {
  font-size: clamp(4rem, 6.8vw, 7.2rem);
  margin-bottom: 33px;
}
.place-copy > p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.9;
  margin-top: 18px;
  max-width: 40ch;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 30px;
  border: 0;
  border-bottom: 1px solid #6e8066;
  background: none;
  padding: 10px 0;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
}
.text-link span {
  font-size: 23px;
  font-weight: 400;
}
.text-link:hover {
  color: var(--lime);
  border-color: var(--lime);
}
.place-copy .text-link {
  margin-top: 24px;
}
.place-visual {
  position: relative;
  margin: 20px 0 40px;
  perspective: 1200px;
  transform-style: preserve-3d;
  will-change: transform;
}
.landscape-frame {
  position: relative;
  aspect-ratio: 1/1.08;
  overflow: hidden;
  transform: rotate(3deg);
  box-shadow: 0 40px 75px #0006;
  outline: 1px solid #ffffff1f;
  outline-offset: 12px;
}
.landscape-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}
.place-visual:hover .landscape-frame img {
  transform: scale(1.045);
}
.location-stamp {
  position: absolute;
  left: -42px;
  bottom: 17px;
  z-index: 2;
  padding: 28px 35px;
  background: var(--lime);
  color: var(--forest);
  transform: rotate(-4deg) translateZ(60px);
  box-shadow: 0 20px 35px #0004;
  display: flex;
  flex-direction: column;
}
.location-stamp > span {
  font-size: 12px;
  letter-spacing: 0.14em;
  font-weight: 600;
}
.location-stamp strong {
  font:
    500 53px/1.3 Display,
    Georgia,
    serif;
}
.location-stamp small {
  font-size: 12px;
  letter-spacing: 0.05em;
}
.photo-caption {
  position: absolute;
  bottom: -55px;
  right: 0;
  color: var(--muted);
  font-size: 12px;
}
.captures {
  background: var(--deep);
  overflow: hidden;
  padding-bottom: 62px;
}
.gallery-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
  margin-top: 60px;
}
.gallery-heading h2 {
  font-size: clamp(3.5rem, 5.6vw, 6rem);
}
.gallery-heading p {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 8px;
}
.gallery-stage {
  position: relative;
  height: 550px;
  margin: 10px calc(-1 * var(--pad)) 0;
  perspective: 1600px;
  overflow: hidden;
  touch-action: pan-y;
  outline-offset: -12px !important;
  isolation: isolate;
}
.gallery-orbit {
  position: absolute;
  width: 115%;
  height: 320px;
  border: 1px solid #c0e8811a;
  border-radius: 50%;
  left: -7.5%;
  bottom: 0;
  transform: rotateX(72deg);
  box-shadow:
    0 0 0 65px #c0e88104,
    0 0 0 130px #c0e88102;
  z-index: -1;
}
.catch-card {
  position: absolute;
  top: 55px;
  left: 50%;
  width: min(52vw, 680px);
  aspect-ratio: 1.47;
  padding: 0;
  background: #18271d;
  overflow: hidden;
  border: 1px solid #e5eed722;
  box-shadow: 0 30px 70px #0009;
  transform-style: preserve-3d;
  backface-visibility: hidden;
  transition:
    transform 0.8s var(--ease),
    opacity 0.6s,
    filter 0.6s;
  border-radius: 2px;
  text-align: left;
  cursor: pointer;
  transform: translateX(-50%);
  will-change: transform;
}
.catch-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 57%;
  transition: transform 0.8s var(--ease);
}
.catch-card.is-active:hover img {
  transform: scale(1.025);
}
.catch-card:after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 45%, #05120ddd);
  pointer-events: none;
}
.card-caption {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 24px;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 15px;
  font:
    500 32px/1.1 Display,
    Georgia,
    serif;
}
.card-caption small {
  display: block;
  font:
    400 12px/1.7 Body,
    Arial,
    sans-serif;
  letter-spacing: 0.17em;
  margin-bottom: 8px;
  color: #d9e1d5;
}
.card-open {
  border: 1px solid #ffffff60;
  border-radius: 50%;
  height: 40px;
  width: 40px;
  font: 400 24px/38px Body;
  text-align: center;
  flex-shrink: 0;
}
.card-number {
  position: absolute;
  left: 22px;
  top: 17px;
  background: #0a190b88;
  backdrop-filter: blur(10px);
  padding: 4px 10px;
  border: 1px solid #ffffff22;
  font-size: 12px;
}
.gallery-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--line);
  padding-top: 27px;
}
.gallery-help {
  font-size: 12px;
  color: var(--muted);
}
.gallery-navigation {
  display: flex;
  align-items: center;
  gap: 25px;
}
.circle-button {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  line-height: 1;
  border: 1px solid #c0d0bc50;
  border-radius: 50%;
  background: transparent;
  transition:
    background 0.25s,
    color 0.25s;
}
.circle-button:hover {
  background: var(--lime);
  color: var(--forest);
  border-color: var(--lime);
}
.gallery-count {
  display: flex;
  gap: 16px;
  font-size: 12px;
  font-variant-numeric: tabular-nums;
  color: #899387;
}
.gallery-count b {
  color: var(--lime);
  font-weight: 400;
}
.gallery-controls > .text-link {
  font-size: 12px;
  font-weight: 400;
}
.brand-moment {
  position: relative;
  background: #333b28;
  overflow: hidden;
  margin: 0;
  isolation: isolate;
}
.brand-moment > img {
  width: 100%;
  height: auto;
  max-height: 820px;
  object-fit: cover;
  object-position: center;
}
.brand-caption {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 45px var(--pad) 30px;
  background: linear-gradient(transparent, #06130bdd);
}
.brand-caption > span:first-child {
  font-size: 12px;
  letter-spacing: 0.17em;
}
.brand-caption > span:last-child {
  font:
    italic 500 44px/1.2 Display,
    Georgia,
    serif;
}
.rules {
  background: #17261e;
}
.rules-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.2fr;
  gap: 12%;
  padding-top: 70px;
}
.rules-intro h2 {
  font-size: clamp(4rem, 6vw, 6.4rem);
  margin-bottom: 28px;
}
.rules-intro > p {
  color: var(--muted);
  max-width: 32ch;
  margin-bottom: 24px;
}
.rules-list {
  padding-top: 6px;
}
.rules-list details {
  border-bottom: 1px solid var(--line);
}
.rules-list details:first-child {
  border-top: 1px solid var(--line);
}
.rules-list summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 18px;
  line-height: 1.35;
  padding: 27px 0;
}
.rules-list summary::-webkit-details-marker {
  display: none;
}
.rule-no {
  font-size: 12px;
  color: var(--lime);
  min-width: 18px;
  font-weight: 600;
}
.detail-mark {
  position: relative;
  width: 12px;
  height: 12px;
  margin-left: auto;
  flex-shrink: 0;
}
.detail-mark:before,
.detail-mark:after {
  content: '';
  position: absolute;
  inset: 5px 0 auto;
  height: 1px;
  background: var(--lime);
}
.detail-mark:after {
  transform: rotate(90deg);
  transition: transform 0.2s;
}
details[open] .detail-mark:after {
  transform: rotate(0);
}
.rule-body {
  padding: 0 16px 27px 38px;
  color: #b8c4b7;
  font-size: 15px;
  line-height: 1.85;
}
.rule-body p {
  max-width: none;
}
.rule-body p + p {
  margin-top: 12px;
}
.contact {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 720px;
  padding-bottom: 95px;
}
.contact-image {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: url('../images/lake.webp') center 50% / cover;
  opacity: 0.22;
}
.contact:after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(0deg, #0b1713 0%, #0b171355 50%, #0b1713dd 100%);
}
.contact-content {
  text-align: center;
  padding-top: 68px;
}
.contact-content > .eyebrow {
  color: var(--lime);
  font-size: 12px;
  max-width: none;
}
.contact h2 {
  font-size: clamp(5rem, 8vw, 9rem);
  margin: 22px 0 25px;
}
.contact-content > p:not(.eyebrow) {
  max-width: none;
  color: #c7d0c2;
  font-size: 15px;
}
.contact-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}
.button-outline {
  color: var(--white);
  border-color: #ffffff55;
  background: transparent;
  backdrop-filter: blur(10px);
}
.button-outline:hover {
  background: #ffffff10;
}
.contact-coordinates {
  display: block;
  font-size: 12px;
  letter-spacing: 0.16em;
  margin-top: 34px;
  color: #b5bfaf;
}
.site-footer {
  background: var(--deep);
  padding: 45px var(--pad) 25px;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  padding-bottom: 35px;
}
.footer-top > span {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.8;
}
.back-top {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  font-size: 23px;
  border: 1px solid var(--line);
  border-radius: 50%;
}
.back-top:hover {
  background: var(--lime);
  color: var(--forest);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
  padding-top: 24px;
  color: #8d9b89;
  font-size: 12px;
}
.lightbox {
  background: #08110cf5;
  color: var(--white);
  border: 1px solid var(--line);
  padding: 35px;
  width: 96vw;
  max-width: 1600px;
  max-height: 96dvh;
  overflow: auto;
}
.lightbox::backdrop {
  background: #020805dd;
  backdrop-filter: blur(12px);
}
.lightbox figure {
  width: 100%;
  margin: auto;
}
.lightbox figure img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 74dvh;
  object-fit: contain;
  margin: auto;
}
.lightbox figure figcaption {
  text-align: center;
  margin-top: 17px;
  font-size: 14px;
  color: #c5cec1;
  padding: 0 45px;
}
.lightbox-close {
  position: fixed;
  right: 4vw;
  top: 4vh;
  z-index: 2;
  background: #0b170ed9;
  backdrop-filter: blur(10px);
}
.lightbox-controls {
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
  font-size: 12px;
}
.lightbox.is-rules figure img {
  max-height: none;
  max-width: min(100%, 900px);
}
.lightbox.is-rules .lightbox-controls {
  display: none;
}
.js-motion .reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 1s var(--ease),
    transform 1s var(--ease);
}
.js-motion .reveal.is-visible {
  opacity: 1;
  transform: none;
}
.js-motion .hero-content {
  animation: heroIn 1.2s var(--ease) both;
}
.js-motion .hero-captures {
  animation: heroIn 1.5s var(--ease) 0.25s both;
}
.motion-paused * {
  animation: none !important;
  scroll-behavior: auto !important;
}
.motion-paused .reveal {
  opacity: 1;
  transform: none;
}
.motion-paused .catch-card {
  transition: none;
}
.motion-paused .hero-scene,
.motion-paused .place-visual {
  transform: none !important;
}
@keyframes heroIn {
  from {
    opacity: 0;
    translate: 0 30px;
  }
  to {
    opacity: 1;
    translate: 0 0;
  }
}
@keyframes scrollNudge {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(5px);
  }
}
@media (min-width: 1600px) {
  .hero-content {
    top: 27%;
  }
  .hero-captures {
    right: 8%;
    bottom: 180px;
    scale: 1.15;
  }
  .gallery-stage {
    height: 615px;
  }
  .catch-card {
    top: 60px;
  }
}
@media (max-width: 1100px) {
  .site-header {
    gap: 15px;
  }
  .desktop-nav {
    gap: 20px;
  }
  .wordmark {
    font-size: 18px;
  }
  .brand-symbol {
    width: 38px;
  }
  .hero-captures {
    right: 45px;
    width: 190px;
    scale: 0.85;
    transform-origin: right bottom;
  }
  .hero-content {
    top: 28%;
  }
  .hero h1 {
    font-size: 9.5vw;
  }
  .place-grid {
    gap: 8%;
  }
  .gallery-stage {
    height: 475px;
  }
  .catch-card {
    width: 60vw;
    top: 50px;
  }
  .gallery-heading p {
    font-size: 14px;
  }
  .rules-grid {
    gap: 8%;
  }
  .section-pad {
    padding-bottom: 90px;
  }
  .hero-bottom > span {
    font-size: 12px;
  }
  .place-strip {
    font-size: 12px;
  }
  .hero-description {
    font-size: 16px;
  }
}
@media (max-width: 800px) {
  .site-header {
    height: 90px;
  }
  .desktop-nav {
    display: none;
  }
  .menu-toggle {
    display: block;
  }
  .header-cta {
    margin-left: auto;
  }
  .wordmark {
    font-size: 17px;
  }
  .wordmark small {
    font-size: 12px;
  }
  .brand-symbol {
    width: 35px;
  }
  .mobile-nav {
    position: fixed;
    inset: 0;
    z-index: 19;
    background: #101c17f7;
    backdrop-filter: blur(20px);
    padding: 125px var(--pad) 40px;
    display: flex;
    flex-direction: column;
  }
  .menu-open .site-header {
    position: fixed;
  }
  .mobile-nav > a {
    font:
      500 45px/1.3 Display,
      Georgia,
      serif;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .mobile-nav > a > span {
    font: 400 12px Body;
    color: var(--lime);
  }
  .mobile-nav .mobile-phone {
    font: 400 22px Body;
    margin-top: 30px;
    color: var(--lime);
    border: 0;
  }
  .menu-open .menu-toggle span:first-child {
    transform: translateY(4px) rotate(45deg);
  }
  .menu-open .menu-toggle span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }
  .hero {
    min-height: 820px;
    max-height: 1050px;
    height: 100svh;
  }
  .hero-content {
    top: 24%;
  }
  .hero h1 {
    font-size: 11.6vw;
  }
  .hero-shade {
    background:
      linear-gradient(90deg, #07130cb3, transparent),
      linear-gradient(0deg, #101c17 0%, #101c1744 40%, #101c1755 100%);
  }
  .hero-edge {
    top: 130px;
  }
  .hero-captures {
    bottom: 103px;
    right: var(--pad);
    scale: 0.7;
  }
  .hero-bottom > span {
    display: none;
  }
  .hero-bottom {
    bottom: 22px;
    padding-top: 18px;
  }
  .hero-description {
    font-size: 16px;
    margin-top: 20px;
  }
  .hero-button {
    margin-top: 25px;
  }
  .place-strip {
    padding-top: 14px;
    padding-bottom: 14px;
    white-space: nowrap;
  }
  .place-strip > span:nth-last-child(-n + 2) {
    display: none;
  }
  .section-top {
    padding-bottom: 24px;
  }
  .section-note {
    font-size: 12px;
  }
  .place-grid {
    grid-template-columns: 1fr 1fr;
    gap: 7%;
    padding-top: 50px;
  }
  .place-copy h2 {
    font-size: 4.4rem;
  }
  .place-copy > p {
    font-size: 15px;
  }
  .place-visual {
    align-self: center;
  }
  .location-stamp {
    padding: 17px 20px;
    left: -20px;
    bottom: 0;
  }
  .location-stamp strong {
    font-size: 40px;
  }
  .location-stamp small {
    font-size: 12px;
  }
  .photo-caption {
    font-size: 12px;
    right: -8px;
  }
  .gallery-heading {
    margin-top: 45px;
    display: block;
  }
  .gallery-heading h2 {
    font-size: 4.5rem;
  }
  .gallery-heading p {
    margin-top: 24px;
  }
  .gallery-stage {
    height: 445px;
    margin-top: 20px;
  }
  .catch-card {
    width: 70vw;
    top: 40px;
  }
  .gallery-help {
    font-size: 12px;
  }
  .brand-caption > span:last-child {
    font-size: 35px;
  }
  .rules-grid {
    grid-template-columns: 1fr;
    gap: 45px;
    padding-top: 50px;
  }
  .rules-intro > p {
    max-width: 48ch;
  }
  .rules-intro h2 {
    font-size: 5rem;
  }
  .contact .section-top > .section-note {
    display: none;
  }
  .contact h2 {
    font-size: 6.5rem;
  }
  .contact {
    min-height: 730px;
  }
  .footer-top > span {
    font-size: 12px;
  }
  .footer-bottom {
    font-size: 12px;
  }
}
@media (max-width: 560px) {
  :root {
    --pad: 24px;
  }
  .site-header {
    gap: 12px;
    height: 86px;
  }
  .wordmark {
    font-size: 15px;
    gap: 8px;
    letter-spacing: 0.015em;
  }
  .brand-symbol {
    width: 30px;
    height: 36px;
  }
  .wordmark small {
    font-size: 12px;
    margin-bottom: 4px;
  }
  .header-cta {
    min-height: 38px;
    font-size: 12px;
    gap: 10px;
    padding: 9px 11px;
  }
  .header-cta span {
    font-size: 18px;
  }
  .menu-toggle {
    width: 33px;
    padding: 4px;
  }
  .hero {
    height: 100svh;
    min-height: 760px;
    max-height: 980px;
  }
  .hero-content {
    top: 25%;
    right: 15px;
  }
  .hero h1 {
    font-size: clamp(3.7rem, 12.8vw, 5.8rem);
    line-height: 0.94;
  }
  .hero-kicker {
    font-size: 12px;
    letter-spacing: 0.16em;
    margin-bottom: 22px;
  }
  .hero-edge {
    font-size: 12px;
    right: 25px;
    top: 110px;
  }
  .hero-description {
    font-size: 15px;
    line-height: 1.7;
    margin-top: 16px;
  }
  .hero-button {
    font-size: 13px;
    padding: 14px 18px;
    min-height: 50px;
    gap: 28px;
    margin-top: 26px;
  }
  .hero-captures {
    width: 190px;
    right: 24px;
    bottom: 79px;
    scale: 0.59;
  }
  .mini-label {
    left: 24px;
  }
  .hero-bottom {
    font-size: 12px;
    bottom: 19px;
    padding-top: 15px;
  }
  .scroll-cue {
    font-size: 12px;
    gap: 13px;
  }
  .motion-toggle {
    font-size: 12px;
  }
  .place-strip {
    gap: 15px;
    justify-content: space-between;
    padding: 15px 24px;
    font-size: 12px;
    letter-spacing: 0.08em;
  }
  .strip-wave {
    font-size: 25px;
  }
  .place-strip > span:nth-child(4),
  .place-strip > span:nth-child(5) {
    display: none;
  }
  .section-pad {
    padding-top: 33px;
    padding-bottom: 65px;
  }
  .section-top .eyebrow {
    font-size: 12px;
    letter-spacing: 0.11em;
  }
  .section-note {
    display: none;
  }
  .place-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
    padding-top: 37px;
  }
  .place-copy {
    width: 100%;
  }
  .place-copy h2 {
    font-size: 4.5rem;
    line-height: 0.95;
    margin-bottom: 25px;
  }
  .place-copy h2 br:nth-child(2) {
    display: none;
  }
  .place-copy > p {
    font-size: 15px;
    line-height: 1.8;
  }
  .place-copy .text-link {
    margin-top: 15px;
  }
  .place-visual {
    width: calc(100% - 20px);
    margin: 38px 0 52px 10px;
  }
  .landscape-frame {
    aspect-ratio: 1.07;
  }
  .location-stamp {
    padding: 19px 24px;
    left: -17px;
    bottom: 0;
  }
  .location-stamp > span {
    font-size: 12px;
  }
  .location-stamp strong {
    font-size: 45px;
  }
  .location-stamp small {
    font-size: 12px;
  }
  .photo-caption {
    font-size: 12px;
    bottom: -42px;
    right: 5px;
  }
  .gallery-heading {
    margin-top: 37px;
  }
  .gallery-heading h2 {
    font-size: clamp(3.1rem, 11.4vw, 4rem);
    line-height: 1.02;
  }
  .gallery-heading p {
    font-size: 14px;
    margin-top: 23px;
  }
  .gallery-stage {
    height: 355px;
    margin-top: 10px;
    perspective: 1000px;
  }
  .catch-card {
    width: 82vw;
    top: 38px;
    aspect-ratio: 1.16;
  }
  .card-caption {
    left: 19px;
    right: 19px;
    bottom: 18px;
    font-size: 25px;
  }
  .card-caption small {
    font-size: 12px;
  }
  .card-number {
    left: 15px;
    top: 15px;
  }
  .card-open {
    height: 33px;
    width: 33px;
    font-size: 20px;
    line-height: 32px;
  }
  .gallery-orbit {
    height: 240px;
    bottom: -35px;
  }
  .gallery-controls {
    padding-top: 22px;
    flex-wrap: wrap;
    gap: 15px;
  }
  .gallery-help {
    display: none;
  }
  .gallery-navigation {
    gap: 17px;
  }
  .gallery-count {
    gap: 10px;
  }
  .gallery-controls > .text-link {
    font-size: 12px;
    gap: 13px;
  }
  .circle-button {
    height: 42px;
    width: 42px;
    font-size: 21px;
  }
  .brand-moment > img {
    min-height: 330px;
    object-fit: cover;
    object-position: 55% center;
  }
  .brand-caption {
    padding: 65px 24px 19px;
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }
  .brand-caption > span:first-child {
    font-size: 12px;
    letter-spacing: 0.13em;
  }
  .brand-caption > span:last-child {
    font-size: 31px;
  }
  .rules-grid {
    padding-top: 38px;
    gap: 34px;
  }
  .rules-intro h2 {
    font-size: 4.7rem;
    margin-bottom: 22px;
  }
  .rules-intro > p {
    font-size: 15px;
  }
  .rules-list summary {
    font-size: 16px;
    padding: 24px 0;
    gap: 14px;
  }
  .rule-body {
    padding: 0 0 24px 32px;
    font-size: 14px;
  }
  .contact {
    min-height: 660px;
  }
  .contact-content {
    padding-top: 50px;
  }
  .contact-content > .eyebrow {
    font-size: 12px;
    letter-spacing: 0.12em;
  }
  .contact h2 {
    font-size: clamp(4.5rem, 16vw, 6rem);
    line-height: 0.94;
    margin-top: 24px;
  }
  .contact-content > p:not(.eyebrow) {
    font-size: 14px;
  }
  .contact-actions {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-top: 25px;
  }
  .contact-actions .button {
    width: 245px;
    min-height: 52px;
    font-size: 14px;
    padding: 13px 18px;
  }
  .contact-coordinates {
    font-size: 12px;
    margin-top: 27px;
  }
  .site-footer {
    padding-top: 33px;
  }
  .footer-top {
    flex-wrap: wrap;
    gap: 24px;
    position: relative;
  }
  .footer-top > span {
    order: 3;
    width: 100%;
    font-size: 12px;
  }
  .footer-top .back-top {
    width: 42px;
    height: 42px;
  }
  .footer-bottom {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 14px;
    font-size: 12px;
  }
  .footer-bottom > span:last-child {
    grid-column: 1/-1;
  }
  .lightbox {
    width: 100vw;
    max-width: 100vw;
    max-height: 100dvh;
    padding: 58px 12px 20px;
  }
  .lightbox figure img {
    max-height: 70dvh;
  }
  .lightbox figure figcaption {
    font-size: 12px;
    padding: 0 10px;
  }
  .lightbox-close {
    top: 18px;
    right: 18px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
  }
  .js-motion .reveal {
    opacity: 1;
    transform: none;
  }
  .hero-scene,
  .place-visual {
    transform: none !important;
  }
}
@media (min-width: 561px) and (max-height: 700px) {
  .hero {
    height: 780px;
  }
}

.header-cta .cta-desktop,
.header-cta .cta-mobile {
  font: inherit;
  line-height: 1.5;
}
.header-cta .cta-mobile {
  display: none;
}
@media (max-width: 560px) {
  .header-cta .cta-desktop {
    display: none;
  }
  .header-cta .cta-mobile {
    display: inline;
  }
  .header-cta {
    gap: 8px;
    padding: 9px 10px;
  }
  .brand-moment > img {
    min-height: 0;
    object-fit: contain;
  }
  .brand-caption {
    position: relative;
    padding: 20px 24px;
    background: #19271b;
  }
  .place-strip {
    letter-spacing: 0.035em;
    gap: 12px;
  }
  .wordmark small {
    letter-spacing: 0.18em;
  }
  .gallery-count {
    gap: 8px;
  }
  .gallery-navigation {
    gap: 12px;
  }
  .gallery-controls > .text-link {
    gap: 10px;
  }
}
@media (min-width: 801px) and (max-width: 1100px) {
  .gallery-stage {
    height: calc(60vw / 1.47 + 105px);
  }
}
@media (max-width: 360px) {
  .place-strip > span:nth-child(3) {
    display: none;
  }
  .hero h1 {
    font-size: 12.8vw;
  }
  .hero-description {
    font-size: 14px;
  }
  .header-cta {
    padding: 8px;
    gap: 4px;
  }
  .wordmark {
    font-size: 14px;
  }
  .brand-symbol {
    width: 25px;
  }
  .gallery-navigation {
    gap: 9px;
  }
  .gallery-controls > .text-link {
    gap: 7px;
  }
}
