:root {
  --font-geist-sans: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  --font-geist-mono: "SFMono-Regular", Consolas, monospace;
  --ink: #080914;
  --ink-soft: #111426;
  --paper: #f3f4f8;
  --paper-deep: #dce2ec;
  --cyan: #77e7ff;
  --cyan-dark: #007f9c;
  --pink: #ff5aa5;
  --pink-dark: #c52b73;
  --violet: #9774ff;
  --signal: var(--pink);
  --lime: var(--cyan);
  --sunset: var(--violet);
  --white: #fbfbff;
  --muted: #aab3c3;
  --line: rgba(255, 255, 255, 0.18);
  --pad: clamp(20px, 4vw, 64px);
  --display: var(--font-geist-sans), "Arial Narrow", sans-serif;
  --body: var(--font-geist-sans), "Hiragino Sans", "Yu Gothic", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--ink);
  overflow-x: clip;
}

body {
  margin: 0;
  max-width: 100%;
  overflow-x: clip;
  background: var(--ink);
  color: var(--white);
  font-family: var(--body);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
  touch-action: none;
}

main {
  display: flex;
  flex-direction: column;
}

.hero { order: 1; }
.service-summary { order: 2; }
.attractions { order: 3; }
.lifestyle { order: 4; }
.event-section { order: 5; }
.ticket-section { order: 6; }
.beginner { order: 7; }
.faq-section { order: 8; }
.partner-section { order: 9; }
.final-cta { order: 10; }

body::selection {
  background: var(--lime);
  color: var(--ink);
}

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

[id] {
  scroll-margin-top: 96px;
}

button,
summary,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

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

h1,
h2,
h3 {
  text-wrap: balance;
}

p,
li,
summary {
  text-wrap: pretty;
}

.heading-line,
.copy-line {
  display: block;
}

.heading-line {
  white-space: nowrap;
}

.section-shell {
  width: min(100%, 1500px);
  margin-inline: auto;
  padding-inline: var(--pad);
}

.section-light {
  background: var(--paper);
  color: var(--ink);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 28px;
  color: var(--lime);
  font-family: var(--font-geist-mono), monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.eyebrow::before {
  width: 34px;
  height: 2px;
  background: currentColor;
  content: "";
}

.eyebrow.dark {
  color: #566074;
}

.display-title {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(54px, 13vw, 198px);
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 0.84;
  text-transform: uppercase;
}

.display-title em {
  color: var(--lime);
  font-style: normal;
}

.display-title.dark {
  color: var(--ink);
}

.display-title.dark em {
  color: var(--pink-dark);
}

.button {
  min-height: 58px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border: 1px solid transparent;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-dark {
  background: var(--ink);
  color: var(--white);
}

.button-lime {
  background: var(--signal);
  color: var(--ink);
}

.button-outline {
  border-color: rgba(255, 255, 255, 0.48);
  color: var(--white);
}

.ui-arrow {
  position: relative;
  width: 18px;
  height: 18px;
  display: inline-block;
  flex: 0 0 auto;
  color: currentColor;
}

.ui-arrow::before {
  position: absolute;
  top: calc(50% - .5px);
  left: 2px;
  width: 13px;
  height: 1px;
  background: currentColor;
  content: "";
}

.ui-arrow::after {
  position: absolute;
  top: calc(50% - 4px);
  right: 2px;
  width: 7px;
  height: 7px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  content: "";
  transform: rotate(45deg);
}

.ui-arrow-up-right { transform: rotate(-45deg); }
.ui-arrow-down-right { transform: rotate(45deg); }
.ui-arrow-down { transform: rotate(90deg); }

.swipe-cue { display: none; }

:focus-visible {
  outline: 3px solid var(--signal);
  outline-offset: 4px;
}

/* Header */
.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  height: 74px;
  padding: 14px var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--white);
  background: linear-gradient(to bottom, rgba(5,7,18, 0.78), transparent);
}

.brand {
  position: relative;
  z-index: 102;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 0.9;
}

.brand small {
  display: block;
  margin-top: 4px;
  font-size: 6px;
  font-weight: 600;
  letter-spacing: 0.16em;
}

.brand-mark {
  width: 38px;
  aspect-ratio: 1;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: var(--lime);
  color: var(--ink);
  font-size: 21px;
  font-weight: 950;
  letter-spacing: -0.08em;
}

.brand-logo-mark {
  width: 38px;
  height: 38px;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(255,90,165,.3));
}

.menu-toggle {
  position: relative;
  z-index: 102;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.18);
  color: inherit;
}

.menu-toggle span {
  position: absolute;
  left: 14px;
  width: 18px;
  height: 1px;
  background: currentColor;
  transition: transform 180ms ease, top 180ms ease;
}

.menu-toggle span:first-child {
  top: 19px;
}

.menu-toggle span:last-child {
  top: 26px;
}

.menu-toggle[aria-expanded="true"] span:first-child {
  top: 23px;
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  top: 23px;
  transform: rotate(-45deg);
}

.global-nav {
  position: fixed;
  inset: 0;
  padding: 118px var(--pad) 40px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  visibility: hidden;
  min-height: 100dvh;
  overflow-y: auto;
  overscroll-behavior: contain;
  background: #070817;
  opacity: 0;
  transform: translateY(-16px);
  transition: opacity 200ms ease, transform 200ms ease, visibility 200ms;
}

.nav-intro {
  margin: 0 0 22px;
  color: #aeb8c8;
  font-size: 11px;
  line-height: 1.8;
}

.nav-intro span {
  margin-bottom: 8px;
  display: block;
  color: var(--lime);
  font-family: var(--font-geist-mono), monospace;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .16em;
}

.global-nav.is-open {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.global-nav > a {
  padding-block: 15px;
  border-bottom: 1px solid var(--line);
  font-size: clamp(32px, 10vw, 54px);
  font-weight: 900;
  letter-spacing: -0.06em;
}

.global-nav .nav-ticket {
  margin-top: 16px;
  padding-inline: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--signal);
  color: var(--ink);
}

.global-nav .nav-contact {
  padding-inline: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(255,255,255,.34);
  font-size: 14px;
  letter-spacing: .02em;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
  background: #070817;
}

.hero-media,
.hero-noise,
.hero-orbit {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: -4;
  overflow: hidden;
}

.hero-photo {
  position: absolute;
  inset: -5%;
  opacity: 0;
  background-position: 53% calc(50% + var(--hero-pan, 0px));
  background-size: cover;
  will-change: opacity, transform, background-position;
  animation: hero-scene 21s cubic-bezier(.45, 0, .2, 1) infinite;
}

.hero-photo-one {
  background-image: url("../images/food-dining.png");
  opacity: 1;
}

.hero-photo-two {
  background-image: url("../images/putting-pair.png");
  background-position-x: 48%;
  animation-delay: 7s;
}

.hero-photo-three {
  background-image: url("../images/close-to-you.png");
  background-position-x: 58%;
  animation-delay: 14s;
}

.hero::after {
  position: absolute;
  z-index: -3;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4,6,16, 0.86) 0%, rgba(4,6,16, 0.34) 48%, rgba(4,6,16, 0.01) 82%),
    linear-gradient(0deg, rgba(4,6,16, 0.68) 0%, transparent 42%);
  content: "";
}

.hero-noise {
  z-index: -2;
  pointer-events: none;
  opacity: 0.28;
  background-image: repeating-linear-gradient(0deg, transparent 0, transparent 2px, rgba(255,255,255,.025) 3px);
}

.hero-orbit {
  z-index: -1;
  width: 74vw;
  height: 74vw;
  margin: auto;
  border: 1px solid rgba(119,231,255, 0.22);
  border-radius: 50%;
}

.orbit-one {
  left: 44%;
  top: 4%;
}

.orbit-two {
  left: 58%;
  top: 20%;
  width: 48vw;
  height: 48vw;
  border-color: rgba(255, 90, 165, .24);
}

.hero-content {
  min-height: 100svh;
  padding: 128px var(--pad) 72px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.hero-kicker {
  margin: 0 0 17px;
  font-family: var(--font-geist-mono), monospace;
  font-size: clamp(10px, 2.5vw, 16px);
  font-weight: 700;
  letter-spacing: 0.13em;
}

.hero-kicker i {
  color: var(--lime);
  font-style: normal;
}

.hero h1 {
  margin: 0;
  font-size: clamp(70px, 18.2vw, 280px);
  font-weight: 950;
  letter-spacing: -0.095em;
  line-height: 0.74;
  text-transform: uppercase;
  text-shadow: 0 10px 40px rgba(0,0,0,.2);
}

.hero h1 span {
  display: block;
  animation: hero-type-in 950ms cubic-bezier(.2,.75,.2,1) both;
}

.hero h1 span:nth-child(2) {
  animation-delay: 110ms;
}

.hero h1 span:last-child {
  color: transparent;
  -webkit-text-stroke: 1.5px var(--white);
}

.hero-bottom {
  margin-top: 38px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
}

.hero-copy {
  max-width: 720px;
  margin: 0;
  animation: hero-copy-in 850ms 360ms cubic-bezier(.2,.75,.2,1) both;
}

.hero-copy small {
  margin-bottom: 9px;
  display: block;
  color: var(--lime);
  font-family: var(--font-geist-mono), monospace;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .1em;
}

.hero-copy strong {
  display: block;
  font-size: clamp(16px, 3vw, 32px);
  font-weight: 850;
  letter-spacing: -.025em;
  line-height: 1.5;
}

.circle-cta {
  width: 104px;
  aspect-ratio: 1;
  flex: 0 0 auto;
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 50%;
  background: var(--signal);
  color: var(--ink);
  font-size: 11px;
  font-weight: 900;
  transition: transform 200ms ease;
  animation: hero-copy-in 850ms 520ms cubic-bezier(.2,.75,.2,1) both;
}

.circle-cta:hover {
  transform: rotate(6deg) scale(1.04);
}

.circle-cta b {
  align-self: flex-end;
  font-size: 26px;
  line-height: 1;
}

.hero-side-copy,
.hero-scroll {
  display: none;
}

/* Service summary */
.service-summary {
  padding: 108px 0 116px;
  border-bottom: 1px solid #c8ced8;
}

.summary-heading-grid h2 {
  margin: 0;
  font-size: clamp(24px, 3.4vw, 64px);
  font-weight: 900;
  letter-spacing: -.065em;
  line-height: 1.08;
}

.summary-heading-grid h2 em {
  color: var(--pink-dark);
  font-style: normal;
}

.summary-heading-grid > p {
  margin: 32px 0 0;
  color: #424b5d;
  font-size: 14px;
  line-height: 2;
}

.summary-heading-grid > p strong {
  color: var(--ink);
}

.summary-grid {
  margin-top: 58px;
  display: grid;
  border-top: 1px solid #acb5c5;
}

.summary-grid article {
  padding: 28px 0;
  border-bottom: 1px solid #acb5c5;
}

.summary-grid article > span,
.partner-values article > span {
  color: var(--pink-dark);
  font-family: var(--font-geist-mono), monospace;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .12em;
}

.summary-grid h3 {
  margin: 12px 0 14px;
  font-size: clamp(22px, 2.1vw, 31px);
  letter-spacing: -.04em;
  line-height: 1.25;
}

.summary-grid p {
  margin: 0;
  color: #555e70;
  font-size: 12px;
  line-height: 1.9;
}

.summary-grid article {
  min-height: 174px;
}

.summary-actions {
  margin-top: 34px;
  display: grid;
  gap: 24px;
}

.summary-actions > div {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.summary-actions > div span {
  padding: 8px 11px;
  border: 1px solid #8f98a8;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
}

/* Concept */
.concept {
  position: relative;
  overflow: hidden;
  padding: 110px 0 105px;
}

.marquee {
  position: absolute;
  top: 28px;
  left: 0;
  width: 100%;
  overflow: hidden;
  color: rgba(8,9,20, 0.08);
  font-size: 66px;
  font-weight: 950;
  letter-spacing: -0.07em;
  line-height: 1;
  white-space: nowrap;
}

.marquee div {
  width: max-content;
  animation: marquee 24s linear infinite;
}

.concept .display-title {
  position: relative;
  z-index: 1;
}

.concept-grid {
  margin-top: 62px;
}

.concept-photo {
  position: relative;
  min-height: 420px;
  background-image:
    linear-gradient(to top, rgba(7,9,22,.56), transparent 45%),
    url("../images/close-to-you.png");
  background-position: 58% center;
  background-size: cover;
}

.concept-photo::before {
  position: absolute;
  top: -18px;
  right: -10px;
  width: 74%;
  height: 18px;
  background: var(--sunset);
  content: "";
}

.concept-photo > p {
  position: absolute;
  bottom: 16px;
  left: 18px;
  margin: 0;
  color: white;
  font-family: var(--font-geist-mono), monospace;
  font-size: 9px;
  letter-spacing: 0.12em;
}

.lime-sticker {
  position: absolute;
  z-index: 2;
  right: -8px;
  bottom: -36px;
  width: 132px;
  aspect-ratio: 1;
  padding: 23px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--lime);
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.05;
  text-align: center;
  transform: rotate(8deg);
}

.concept-copy {
  padding-top: 76px;
}

.concept-copy h3 {
  margin: 0 0 30px;
  font-size: clamp(19px, 2.4vw, 36px);
  letter-spacing: -0.045em;
  line-height: 1.55;
}

.concept-copy > p {
  max-width: 650px;
  margin: 0 0 20px;
  color: #4c5566;
  font-size: 14px;
  font-weight: 600;
  line-height: 2;
}

.concept-signature {
  margin-top: 46px;
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #b8bec8;
  font-family: var(--font-geist-mono), monospace;
  font-size: 9px;
  letter-spacing: 0.12em;
}

/* Matching story */
.matching-story {
  position: relative;
  padding: 120px 0;
  overflow: clip;
  background:
    radial-gradient(circle at 82% 12%, rgba(119,231,255,.12), transparent 26%),
    radial-gradient(circle at 8% 88%, rgba(255,90,165,.1), transparent 28%),
    #080914;
  color: var(--white);
}

.matching-glow {
  position: absolute;
  width: 46vw;
  aspect-ratio: 1;
  border: 1px solid rgba(119,231,255,.14);
  border-radius: 50%;
  pointer-events: none;
}

.matching-glow-one { top: 7%; right: -24vw; }
.matching-glow-two {
  bottom: 10%;
  left: -31vw;
  width: 58vw;
  border-color: rgba(255,90,165,.16);
}

.matching-story-heading {
  position: relative;
  z-index: 1;
  padding-bottom: 62px;
  border-bottom: 1px solid var(--line);
}

.matching-story-heading h2 {
  margin: 0;
  font-size: clamp(32px, 8vw, 116px);
  font-weight: 950;
  letter-spacing: -.075em;
  line-height: 1.04;
}

.matching-story-heading h2 span { display: block; }
.matching-story-heading h2 span:last-child { color: var(--lime); }

.matching-story-heading div > p {
  max-width: 610px;
  margin: 30px 0 0;
  color: #bdc6d6;
  font-size: 13px;
  line-height: 2;
}

.matching-story-heading > strong {
  display: block;
  margin-top: 34px;
  color: #747e90;
  font-family: var(--font-geist-mono), monospace;
  font-size: 10px;
  letter-spacing: .13em;
  line-height: 1.8;
}

.mechanism-stack { position: relative; z-index: 2; padding-top: 36px; }

.mechanism-card {
  position: relative;
  margin-top: 24px;
  border: 1px solid rgba(255,255,255,.2);
  background: #111426;
  box-shadow: 0 30px 80px rgba(0,0,0,.28);
}

.mechanism-visual {
  position: relative;
  min-height: 370px;
  overflow: hidden;
  isolation: isolate;
  background-size: cover;
  background-position: center;
}

.mechanism-visual::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(135deg, rgba(4,6,16,.04), rgba(4,6,16,.72));
  content: "";
}

.mechanism-tags .mechanism-visual { background-image: url("../images/drink-cheers.png"); }
.mechanism-pair .mechanism-visual { background-image: url("../images/putting-pair.png"); background-position: 52% center; }
.mechanism-rotation .mechanism-visual { background-image: url("../images/trust-shot.png"); background-position: 58% center; }
.mechanism-again .mechanism-visual { background-image: url("../images/close-to-you.png"); background-position: 62% center; }

.mechanism-number {
  position: absolute;
  left: 18px;
  bottom: -18px;
  color: rgba(255,255,255,.9);
  font-size: clamp(108px, 30vw, 230px);
  font-weight: 950;
  letter-spacing: -.12em;
  line-height: .8;
}

.mechanism-scanline {
  position: absolute;
  inset: 0;
  border-top: 1px solid rgba(119,231,255,.42);
  background: linear-gradient(to bottom, rgba(119,231,255,.08), transparent 14%);
  animation: mechanism-scan 5.5s ease-in-out infinite;
}

.profile-tags { position: absolute; top: 22px; right: 18px; display: grid; justify-items: end; gap: 8px; }
.profile-tags span { padding: 8px 10px; border: 1px solid var(--lime); border-radius: 999px; background: rgba(8,9,20,.72); color: var(--lime); font-family: var(--font-geist-mono), monospace; font-size: 7px; letter-spacing: .1em; }

.rotation-route { position: absolute; right: 18px; bottom: 20px; display: flex; align-items: center; }
.rotation-route i { width: 40px; aspect-ratio: 1; display: grid; place-items: center; border: 1px solid var(--lime); border-radius: 50%; background: rgba(8,9,20,.78); color: var(--lime); font-size: 9px; font-style: normal; }
.rotation-route i + i { margin-left: 17px; }
.rotation-route i + i::before { position: absolute; width: 18px; height: 1px; margin-left: -40px; background: var(--lime); content: ""; }

.mechanism-copy { padding: 30px 24px 26px; }
.mechanism-copy > span, .mechanism-copy small { color: var(--lime); font-family: var(--font-geist-mono), monospace; font-size: 8px; font-weight: 800; letter-spacing: .12em; }
.mechanism-copy h3 { margin: 16px 0 22px; font-size: clamp(22px, 6.5vw, 58px); letter-spacing: -.055em; line-height: 1.26; }
.mechanism-copy p { max-width: 620px; margin: 0; color: #bdc6d6; font-size: 12px; line-height: 1.95; }
.mechanism-copy small { margin-top: 30px; padding-top: 16px; display: block; border-top: 1px solid rgba(255,255,255,.16); color: #7d8798; }

.matching-story-footer { padding-top: 88px; display: grid; gap: 34px; }
.matching-story-footer p { margin: 0; font-size: clamp(27px, 5vw, 62px); font-weight: 850; letter-spacing: -.055em; line-height: 1.35; }
.matching-story-footer strong { color: var(--lime); }

/* Page motion and persistent event navigation */
.site-header { transition: height 240ms ease, background-color 240ms ease, border-color 240ms ease, backdrop-filter 240ms ease; }
body.is-scrolled .site-header { background: rgba(8,9,20,.86); border-bottom: 1px solid rgba(255,255,255,.12); backdrop-filter: blur(14px); }

.scroll-progress { position: fixed; z-index: 110; top: 0; right: 0; width: 3px; height: 100vh; background: rgba(255,255,255,.08); pointer-events: none; }
.scroll-progress span { width: 100%; height: 100%; display: block; background: var(--lime); transform: scaleY(var(--page-progress, 0)); transform-origin: top; will-change: transform; }

.event-dock { position: fixed; z-index: 96; right: 20px; bottom: 20px; width: min(340px, calc(100vw - 40px)); min-height: 72px; padding: 14px 18px; display: flex; align-items: center; justify-content: space-between; border: 1px solid rgba(8,9,20,.18); background: var(--lime); color: var(--ink); box-shadow: 0 18px 50px rgba(0,0,0,.28); opacity: 0; visibility: hidden; transform: translateY(24px); transition: opacity 260ms ease, transform 260ms ease, visibility 260ms; }
.event-dock { padding: 0; background: var(--ink); }
body.show-event-dock .event-dock { opacity: 1; visibility: visible; transform: translateY(0); }
.dock-line { min-width: 0; min-height: 72px; padding: 13px 16px; display: flex; flex: 1; align-items: center; justify-content: space-between; background: var(--signal); color: var(--ink); }
.dock-contact { min-height: 72px; padding: 0 15px; display: grid; place-items: center; border-left: 1px solid rgba(255,255,255,.18); color: var(--white); font-size: 10px; font-weight: 800; white-space: nowrap; }
.event-dock span { display: grid; gap: 4px; }
.event-dock small { font-family: var(--font-geist-mono), monospace; font-size: 7px; letter-spacing: .12em; }
.event-dock strong { font-size: 13px; }
.event-dock b { font-size: 22px; }
body:has(.course-detail-panel.is-open) .event-dock { opacity: 0; visibility: hidden; }
body.menu-open .event-dock { opacity: 0; visibility: hidden; }

.motion-ready .reveal-ready { opacity: 0; transform: translateY(42px); transition: opacity 900ms cubic-bezier(.2,.72,.2,1) var(--reveal-delay, 0ms), transform 900ms cubic-bezier(.2,.72,.2,1) var(--reveal-delay, 0ms); }
.motion-ready .reveal-ready.is-revealed { opacity: 1; transform: translateY(0); }

/* Three experiences */
.experience-grid {
  display: grid;
}

.experience-card {
  position: relative;
  min-height: 82svh;
  padding: 36px var(--pad);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  isolation: isolate;
  border-bottom: 1px solid rgba(255,255,255,.26);
}

.experience-image {
  position: absolute;
  z-index: -2;
  inset: 0;
  background-image: url("../images/close-to-you.png");
  background-size: cover;
  transition: transform 700ms cubic-bezier(.2,.7,.2,1);
}

.experience-card::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(to top, rgba(6,8,20,.94), rgba(6,8,20,.1) 70%);
  content: "";
}

.experience-card:hover .experience-image {
  transform: scale(1.04);
}

.experience-play .experience-image {
  background-image: url("../images/trust-shot.png");
  background-position: 74% center;
}

.experience-meet .experience-image {
  background-image: url("../images/putting-pair.png");
  background-position: 52% center;
}

.experience-enjoy .experience-image {
  background-image: url("../images/food-dining.png");
  background-position: 91% center;
}

.experience-index {
  position: absolute;
  top: 30px;
  left: var(--pad);
  font-family: var(--font-geist-mono), monospace;
  font-size: 11px;
}

.experience-card h2 {
  margin: 0;
  color: var(--lime);
  font-size: clamp(84px, 25vw, 170px);
  font-weight: 950;
  letter-spacing: -0.09em;
  line-height: .82;
}

.experience-card p {
  max-width: 330px;
  margin: 28px 0 0;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.75;
}

.experience-arrow {
  position: absolute;
  right: var(--pad);
  bottom: 34px;
  font-size: 36px;
}

/* Attractions */
.attractions {
  padding: 120px 0 110px;
  background: var(--ink);
}

.attractions-intro {
  margin-bottom: 62px;
}

.course-title-grid .display-title {
  font-size: clamp(38px, 7.8vw, 148px);
  line-height: .86;
}

.course-intro-copy {
  margin-top: 34px;
  padding-top: 20px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
}

.course-intro-copy strong {
  color: var(--white);
  font-size: clamp(20px, 2vw, 30px);
  font-weight: 900;
  letter-spacing: -.055em;
  line-height: .9;
}

.course-intro-copy p {
  margin: 0;
  color: #adb7c8;
  font-family: var(--font-geist-mono), monospace;
  font-size: 9px;
  letter-spacing: .08em;
  line-height: 1.7;
  text-align: right;
}

.course-map-wrap {
  --lime: var(--signal);
  position: relative;
}

.course-map-frame {
  position: relative;
}

.course-map-toolbar {
  padding-top: 15px;
  padding-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid var(--line);
  color: #bdc6d3;
  font-family: var(--font-geist-mono), monospace;
  font-size: 7px;
  font-weight: 700;
  letter-spacing: .1em;
}

.course-map-toolbar > div {
  display: flex;
  align-items: center;
  gap: 8px;
}

.course-map-toolbar p {
  margin: 0;
  text-align: right;
}

.course-map-toolbar p span {
  color: var(--lime);
}

.live-dot {
  width: 6px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 10px rgba(119,231,255, .8);
  animation: map-pulse 2s ease-in-out infinite;
}

.course-map-stage {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  min-height: 290px;
  max-height: 900px;
  overflow: hidden;
  isolation: isolate;
  background-color: #080c1c;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  border-top: 1px solid rgba(255, 255, 255, .18);
  border-bottom: 1px solid rgba(255, 255, 255, .18);
}

.course-map-stage::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7,9,22, .36), transparent 35%, transparent 68%, rgba(7,9,22, .18)),
    linear-gradient(0deg, rgba(7,9,22, .55), transparent 40%);
  content: "";
  pointer-events: none;
}

.course-map-shade {
  position: absolute;
  z-index: 2;
  inset: 0;
  background: rgba(4,6,16, .04);
  pointer-events: none;
  transition: background-color 280ms ease;
}

.course-map-stage.has-active-hole .course-map-shade {
  background: rgba(4,5,14, .34);
}

.course-map-grid {
  position: absolute;
  z-index: 3;
  inset: 0;
  opacity: .16;
  background-image:
    linear-gradient(rgba(255,255,255,.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.18) 1px, transparent 1px);
  background-size: 12.5% 20%;
  pointer-events: none;
}

.course-label {
  position: absolute;
  z-index: 7;
  color: rgba(255,255,255,.72);
  font-family: var(--font-geist-mono), monospace;
  font-size: 7px;
  font-weight: 700;
  letter-spacing: .16em;
  pointer-events: none;
}

.course-label-top {
  top: 14px;
  left: var(--pad);
}

.course-label-side {
  right: 10px;
  bottom: 16px;
  writing-mode: vertical-rl;
}

.course-route {
  position: absolute;
  z-index: 6;
  inset: 0;
  pointer-events: none;
}

.course-route-segment {
  position: absolute;
  top: var(--segment-y);
  left: var(--segment-x);
  width: var(--segment-length);
  height: 1px;
  overflow: visible;
  background: repeating-linear-gradient(90deg, rgba(119,231,255, .68) 0 4px, transparent 4px 9px);
  filter: drop-shadow(0 0 3px rgba(119,231,255,.3));
  opacity: .54;
  transform: rotate(var(--segment-angle));
  transform-origin: left center;
  transition: height 180ms ease, opacity 180ms ease, filter 180ms ease;
}

.course-route-segment.is-active {
  height: 2px;
  opacity: 1;
  filter: drop-shadow(0 0 7px rgba(119,231,255,.8));
}

.course-spotlight {
  position: absolute;
  z-index: 4;
  width: clamp(72px, 18vw, 150px);
  aspect-ratio: 1;
  border: 1px solid rgba(119,231,255,.48);
  border-radius: 50%;
  box-shadow:
    0 0 36px rgba(119,231,255,.22),
    0 0 0 110vmax rgba(0,0,0,.26);
  background: radial-gradient(circle, rgba(119,231,255,.12), transparent 68%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  animation: spotlight-in 220ms ease both;
}

.course-markers {
  position: absolute;
  z-index: 10;
  inset: 0;
}

.course-marker {
  position: absolute;
  top: var(--map-y);
  left: var(--map-x);
  width: 46px;
  height: 46px;
  padding: 0;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  transform: translate(-50%, -50%);
  transition: transform 200ms cubic-bezier(.2,.8,.2,1), filter 200ms ease;
}

.course-marker:hover,
.course-marker:focus-visible,
.course-marker.is-active {
  z-index: 12;
  filter: drop-shadow(0 0 12px rgba(119,231,255,.72));
  transform: translate(-50%, -50%) scale(1.22);
}

.marker-pulse {
  position: absolute;
  inset: -5px;
  border: 1px solid rgba(119,231,255,.56);
  border-radius: 50%;
  animation: marker-pulse 2.7s ease-out infinite;
}

.marker-core {
  position: relative;
  width: 36px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.92);
  border-radius: 50%;
  background: var(--lime);
  box-shadow:
    0 0 0 3px rgba(8,9,20,.72),
    0 5px 14px rgba(0,0,0,.36);
}

.marker-core b {
  font-family: var(--font-geist-mono), monospace;
  font-size: 10px;
  letter-spacing: -.03em;
}

.marker-flag {
  position: absolute;
  top: -10px;
  left: 50%;
  width: 1px;
  height: 13px;
  background: var(--white);
}

.marker-flag::after {
  position: absolute;
  top: 0;
  left: 1px;
  width: 7px;
  height: 5px;
  background: var(--sunset);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  content: "";
}

.marker-name {
  display: none;
}

.course-hover-card {
  display: none;
}

.course-map-legend {
  position: absolute;
  z-index: 8;
  bottom: 14px;
  left: var(--pad);
  display: flex;
  gap: 15px;
  color: rgba(255,255,255,.7);
  font-family: var(--font-geist-mono), monospace;
  font-size: 6px;
  letter-spacing: .1em;
  pointer-events: none;
}

.course-map-legend span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.course-map-legend i {
  width: 5px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 7px var(--lime);
}

.course-map-legend span:last-child i {
  width: 13px;
  height: 1px;
  border-radius: 0;
}

.course-detail-scrim {
  position: fixed;
  z-index: 150;
  inset: 0;
  visibility: hidden;
  border: 0;
  background: rgba(0,0,0,.62);
  opacity: 0;
  transition: opacity 220ms ease, visibility 220ms;
}

.course-detail-scrim.is-visible {
  visibility: visible;
  opacity: 1;
}

.course-detail-panel {
  position: fixed;
  z-index: 160;
  right: 0;
  bottom: 0;
  left: 0;
  max-height: 82svh;
  overflow-y: auto;
  visibility: hidden;
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 -22px 60px rgba(0,0,0,.45);
  transform: translateY(104%);
  transition: transform 330ms cubic-bezier(.22,.8,.2,1), visibility 330ms;
}

.course-detail-panel.is-open {
  visibility: visible;
  transform: translateY(0);
}

.detail-drag-handle {
  width: 42px;
  height: 4px;
  margin: 10px auto 8px;
  border-radius: 2px;
  background: #a5afbf;
}

.detail-close {
  position: absolute;
  z-index: 3;
  top: 16px;
  right: 16px;
  width: 42px;
  aspect-ratio: 1;
  padding: 0;
  border: 1px solid rgba(255,255,255,.65);
  border-radius: 50%;
  background: rgba(9,11,25,.64);
  color: white;
  cursor: pointer;
}

.detail-close span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 15px;
  height: 1px;
  background: currentColor;
  transform: translate(-50%, -50%) rotate(45deg);
}

.detail-close span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.detail-image {
  position: relative;
  height: 142px;
  overflow: hidden;
  background-position: 72% center;
  background-size: cover;
}

.detail-image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5,7,18,.72), transparent 74%);
  content: "";
}

.detail-image > span,
.detail-image > b {
  position: absolute;
  z-index: 1;
}

.detail-image > span {
  bottom: 14px;
  left: 18px;
  color: white;
  font-family: var(--font-geist-mono), monospace;
  font-size: 7px;
  letter-spacing: .12em;
}

.detail-image > b {
  right: 16px;
  bottom: -12px;
  color: var(--lime);
  font-size: 84px;
  letter-spacing: -.09em;
  line-height: .8;
}

.detail-hole-switcher {
  padding: 8px var(--pad);
  display: grid;
  grid-template-columns: repeat(9, minmax(0, 1fr));
  gap: 3px;
  background: var(--ink);
}

.detail-hole-switcher button {
  min-width: 0;
  aspect-ratio: 1;
  padding: 0;
  border: 1px solid rgba(255,255,255,.2);
  background: transparent;
  color: #adb7c8;
  font-family: var(--font-geist-mono), monospace;
  font-size: 8px;
  font-weight: 800;
  cursor: pointer;
}

.detail-hole-switcher button.is-active {
  border-color: var(--lime);
  background: var(--lime);
  color: var(--ink);
}

.detail-body {
  padding: 22px var(--pad) 28px;
}

.detail-body > p:first-child {
  margin: 0 0 8px;
  color: #646e7f;
  font-family: var(--font-geist-mono), monospace;
  font-size: 8px;
  letter-spacing: .12em;
}

.detail-body h3 {
  margin: 0;
  font-size: clamp(34px, 10vw, 64px);
  font-weight: 950;
  letter-spacing: -.07em;
  line-height: .94;
}

.detail-rule {
  width: 100%;
  height: 1px;
  margin: 19px 0;
  background: linear-gradient(90deg, #007f9c, transparent);
}

.detail-body > strong {
  display: block;
  font-size: 15px;
  line-height: 1.75;
}

.detail-note {
  margin: 14px 0 22px;
  color: #5b6576;
  font-size: 11px;
  line-height: 1.8;
}

.detail-body > a {
  min-height: 52px;
  padding: 0 17px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--ink);
  color: var(--lime);
  font-size: 11px;
  font-weight: 800;
}

.course-map-footer {
  padding-top: 22px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.course-map-footer p {
  margin: 0;
  color: var(--white);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.35;
}

.course-map-footer > span {
  max-width: 230px;
  color: #7f899a;
  font-size: 8px;
  line-height: 1.6;
  text-align: right;
}

/* Lifestyle */
.lifestyle {
  padding: 112px 0;
}

.lifestyle-title-wrap {
  position: relative;
  margin-bottom: 64px;
}

.lifestyle-lead {
  margin: 32px 0 0;
  color: #555f70;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.9;
}

.mosaic-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: 260px;
  gap: 8px;
}

.mosaic-item {
  position: relative;
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  isolation: isolate;
  background-image: url("../images/close-to-you.png");
  background-size: cover;
  color: white;
}

.mosaic-item::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(to top, rgba(7,9,22,.86), rgba(7,9,22,.08));
  content: "";
}

.mosaic-food {
  grid-row: span 2;
  background-image: url("../images/food-dining.png");
  background-position: 92% center;
}

.mosaic-drink {
  background-image: url("../images/drink-cheers.png");
  background-position: 57% center;
}

.mosaic-music {
  background-image: url("../images/food-dining.png");
  background-position: 100% center;
}

.mosaic-beginner {
  grid-column: 1 / -1;
  background-image: url("../images/close-to-you.png");
  background-position: 73% 36%;
}

.mosaic-count {
  align-self: flex-end;
  font-family: var(--font-geist-mono), monospace;
  font-size: 10px;
}

.mosaic-item h3 {
  margin: 0;
  color: var(--lime);
  font-size: clamp(32px, 6vw, 76px);
  font-weight: 950;
  letter-spacing: -.07em;
  line-height: .92;
}

.mosaic-item p {
  margin: 10px 0 0;
  font-family: var(--font-geist-mono), monospace;
  font-size: 7px;
  letter-spacing: .1em;
  line-height: 1.5;
}

/* How to */
.howto {
  position: relative;
  padding: 110px 0 120px;
  overflow: hidden;
  background: #0d1024;
}

.howto-backdrop {
  position: absolute;
  top: 0;
  right: -30%;
  width: 92%;
  height: 100%;
  opacity: .22;
  background-image: url("../images/trust-shot.png");
  background-position: 90% center;
  background-size: cover;
  filter: grayscale(1);
  clip-path: polygon(22% 0, 100% 0, 100% 100%, 0 100%);
}

.howto-content {
  position: relative;
}

.steps {
  position: relative;
  margin-top: 76px;
  border-left: 1px solid rgba(119,231,255,.42);
}

.step {
  position: relative;
  padding: 0 0 54px 30px;
}

.step:last-child {
  padding-bottom: 0;
}

.step-number {
  color: var(--lime);
  font-family: var(--font-geist-mono), monospace;
  font-size: 11px;
}

.step h3 {
  margin: 7px 0 10px;
  font-size: clamp(30px, 8vw, 70px);
  font-weight: 900;
  letter-spacing: -.065em;
  line-height: 1;
}

.step p {
  max-width: 420px;
  margin: 0;
  color: #adb7c6;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.75;
}

.step-dot {
  position: absolute;
  top: 5px;
  left: -6px;
  width: 11px;
  aspect-ratio: 1;
  border: 3px solid #0d1024;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 1px var(--lime);
}

/* Event */
.event-section {
  position: relative;
  padding: 112px 0 120px;
  overflow: hidden;
}

.event-accent {
  position: absolute;
  top: 32%;
  left: -5%;
  color: rgba(8,9,20,.045);
  font-size: 21vw;
  font-weight: 950;
  letter-spacing: -.1em;
  line-height: .7;
  white-space: nowrap;
  transform: rotate(-6deg);
}

.event-section .section-shell {
  position: relative;
}

.event-card {
  margin-top: 64px;
  padding: 20px;
  border: 1px solid #969faf;
  background: var(--paper);
  box-shadow: 14px 14px 0 var(--lime);
}

.event-card-top {
  padding-bottom: 20px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid #a9b2c3;
}

.event-card-top p {
  margin: 0 0 5px;
  font-family: var(--font-geist-mono), monospace;
  font-size: 9px;
  letter-spacing: .12em;
}

.event-card-top h3 {
  margin: 0;
  font-size: 28px;
  letter-spacing: -.06em;
}

.event-status {
  padding: 8px 10px;
  background: var(--ink);
  color: var(--lime);
  font-family: var(--font-geist-mono), monospace;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .08em;
}

.event-date-placeholder {
  padding: 34px 0;
  display: grid;
  border-bottom: 1px solid #a9b2c3;
}

.event-date-placeholder span,
.event-meta span {
  color: #5f687a;
  font-family: var(--font-geist-mono), monospace;
  font-size: 8px;
  letter-spacing: .12em;
}

.event-date-placeholder strong {
  font-size: clamp(48px, 14vw, 150px);
  font-weight: 950;
  letter-spacing: -.09em;
  line-height: .88;
}

.event-price-summary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid #a9b2c3;
}

.event-price-summary > div {
  padding: 22px 14px 22px 0;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: baseline;
  gap: 5px 12px;
}

.event-price-summary > div + div {
  padding-left: 16px;
  border-left: 1px solid #a9b2c3;
}

.event-price-summary span {
  grid-column: 1 / -1;
  color: #5f687a;
  font-family: var(--font-geist-mono), monospace;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .1em;
}

.event-price-summary strong {
  font-size: clamp(24px, 5vw, 44px);
  letter-spacing: -.055em;
}

.event-price-summary small { font-size: 7px; }

.event-status { white-space: nowrap; }

.event-date-placeholder small {
  margin-top: 10px;
  font-family: var(--font-geist-mono), monospace;
  font-size: 8px;
  letter-spacing: .12em;
}

.event-meta {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  border-bottom: 1px solid #a9b2c3;
}

.event-meta > div {
  padding: 20px 10px;
  display: grid;
  gap: 7px;
  border-right: 1px solid #a9b2c3;
}

.event-meta > div:first-child {
  padding-left: 0;
}

.event-meta > div:last-child {
  border-right: 0;
}

.event-meta b {
  font-size: clamp(19px, 4vw, 38px);
  letter-spacing: -.05em;
}

.event-actions {
  padding-top: 20px;
  display: grid;
  gap: 8px;
}

.placeholder-note,
.price-note {
  margin: 14px 0 0;
  color: #656f80;
  font-size: 10px;
  line-height: 1.6;
}

/* Ticket */
.ticket-section {
  padding: 112px 0 120px;
  background: #10132a;
}

.ticket-heading > p:last-child {
  margin: 32px 0 0;
  color: #b0bac8;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.9;
}

.ticket-cards {
  margin-top: 66px;
  display: grid;
  gap: 16px;
  min-width: 0;
}

.ticket-card {
  min-width: 0;
  padding: 22px;
  border: 1px solid rgba(255,255,255,.26);
  background: #171b33;
}

.ticket-1 {
  border-color: var(--lime);
  background: var(--lime);
  color: var(--ink);
}

.ticket-card-header {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-geist-mono), monospace;
  font-size: 9px;
  letter-spacing: .1em;
}

.ticket-card-header b {
  padding: 6px 8px;
  background: var(--ink);
  color: var(--lime);
}

.ticket-card h3 {
  margin: 48px 0 24px;
  font-size: clamp(36px, 3.8vw, 60px);
  font-weight: 950;
  letter-spacing: -.075em;
  line-height: .94;
  white-space: nowrap;
}

.ticket-prices {
  border-top: 1px solid currentColor;
}

.ticket-prices > div {
  padding: 19px 0;
  display: grid;
  grid-template-columns: minmax(42px, .65fr) minmax(0, 1.1fr) auto;
  align-items: baseline;
  border-bottom: 1px solid currentColor;
}

.ticket-prices span {
  font-size: 10px;
  font-weight: 800;
}

.ticket-prices strong {
  font-size: clamp(26px, 7vw, 48px);
  letter-spacing: -.06em;
}

.ticket-prices small {
  font-size: 8px;
}

.ticket-link {
  margin-top: 24px;
  padding: 17px 0;
  display: flex;
  justify-content: space-between;
  border-bottom: 2px solid currentColor;
  font-family: var(--font-geist-mono), monospace;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .1em;
}

.ticket-1 .ticket-link {
  border-color: var(--ink);
}

.ticket-2 .ticket-link {
  border-color: var(--lime);
  color: var(--lime);
}

.ticket-section .price-note {
  color: #858f9f;
}

/* Beginner */
.beginner {
  position: relative;
  padding: 112px 0 0;
  overflow: hidden;
}

.beginner-photo {
  height: 58vw;
  min-height: 360px;
  max-height: 760px;
  margin-top: -10px;
  background-image:
    linear-gradient(to top, rgba(8,9,20,.35), transparent),
    url("../images/putting-pair.png");
  background-position: 72% center;
  background-size: cover;
}

.beginner-content {
  position: relative;
  padding-bottom: 100px;
}

.beginner-grid {
  margin-top: 46px;
}

.beginner-lead {
  margin: 0 0 38px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.95;
}

.beginner ul {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid #9ca5b5;
}

.beginner li {
  padding: 17px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid #9ca5b5;
  font-size: 13px;
  font-weight: 700;
}

.beginner li span {
  color: var(--pink-dark);
  font-size: 8px;
}

.beginner li .list-dot {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--pink-dark);
}

/* Partners */
.partner-section {
  padding: 112px 0;
  background: #111426;
}

.partner-heading-grid h2 {
  margin: 0;
  font-size: clamp(34px, 6.1vw, 88px);
  font-weight: 950;
  letter-spacing: -.065em;
  line-height: 1.03;
}

.partner-heading-grid h2 em {
  color: var(--lime);
  font-style: normal;
}

.partner-heading-grid > div {
  margin-top: 36px;
}

.partner-heading-grid strong {
  display: block;
  font-size: clamp(18px, 3vw, 27px);
  line-height: 1.7;
}

.partner-heading-grid p {
  margin: 18px 0 0;
  color: #b9c2d0;
  font-size: 13px;
  line-height: 1.95;
}

.partner-values {
  margin-top: 60px;
  display: grid;
  border-top: 1px solid var(--line);
}

.partner-values article {
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}

.partner-values h3 {
  margin: 12px 0;
  color: var(--white);
  font-size: clamp(27px, 6vw, 46px);
  letter-spacing: -.055em;
}

.partner-values p {
  margin: 0;
  color: #adb7c8;
  font-size: 12px;
  line-height: 1.85;
}

.partner-form {
  margin-top: 70px;
  border: 1px solid rgba(255,255,255,.24);
  background: #080914;
}

.partner-form-intro {
  padding: 30px var(--pad);
  border-bottom: 1px solid rgba(255,255,255,.24);
}

.partner-form-intro > span {
  color: var(--lime);
  font-family: var(--font-geist-mono), monospace;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .12em;
}

.partner-form-intro h3 {
  margin: 16px 0;
  font-size: clamp(25px, 3vw, 40px);
  letter-spacing: -.05em;
  line-height: 1.2;
}

.partner-form-intro p {
  margin: 0;
  color: #adb7c8;
  font-size: 12px;
  line-height: 1.85;
}

.partner-form-fields {
  padding: 30px var(--pad);
  display: grid;
  gap: 18px;
}

.partner-form-fields label {
  display: grid;
  gap: 8px;
  color: #cbd3df;
  font-size: 10px;
  font-weight: 700;
}

.partner-form-fields input,
.partner-form-fields select,
.partner-form-fields textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 0;
  background: #15182e;
  color: var(--white);
  font: inherit;
}

.partner-form-fields textarea {
  min-height: 120px;
  resize: vertical;
}

.partner-form-fields button {
  width: 100%;
  border: 0;
  cursor: pointer;
}

/* FAQ */
.faq-section {
  padding: 112px 0;
}

.faq-heading > p:last-child {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.faq-list {
  margin-top: 64px;
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  min-height: 88px;
  padding: 18px 0;
  display: grid;
  grid-template-columns: 44px 1fr 28px;
  align-items: center;
  gap: 7px;
  cursor: pointer;
  list-style: none;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-index {
  color: var(--lime);
  font-family: var(--font-geist-mono), monospace;
  font-size: 9px;
}

.faq-list summary i {
  position: relative;
  width: 28px;
  aspect-ratio: 1;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.faq-list summary i::before,
.faq-list summary i::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 1px;
  background: currentColor;
  content: "";
  transform: translate(-50%, -50%);
  transition: transform 180ms ease;
}

.faq-list summary i::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-list details[open] summary i::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-answer {
  padding: 0 0 28px 44px;
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 10px;
  color: #b8c1ce;
  font-size: 13px;
  line-height: 1.9;
}

.faq-answer > span {
  color: var(--sunset);
  font-family: var(--font-geist-mono), monospace;
  font-weight: 800;
}

.faq-answer p {
  margin: 0;
}

/* Final CTA */
.final-cta {
  position: relative;
  min-height: 100svh;
  padding: 100px var(--pad) 52px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  isolation: isolate;
}

.final-image,
.final-overlay {
  position: absolute;
  z-index: -2;
  inset: 0;
}

.final-image {
  background-image: url("../images/food-dining.png");
  background-position: 75% center;
  background-size: cover;
}

.final-overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(5,7,18,.92), rgba(5,7,18,.25)),
    linear-gradient(to top, rgba(5,7,18,.85), transparent 55%);
}

.final-content > p {
  margin: 0 0 22px;
  color: var(--lime);
  font-family: var(--font-geist-mono), monospace;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .15em;
}

.final-content h2 {
  margin: 0;
  max-width: 1100px;
  font-size: clamp(42px, 10vw, 150px);
  font-weight: 950;
  letter-spacing: -.075em;
  line-height: .94;
  word-break: keep-all;
}

.final-content h2 em {
  color: var(--lime);
  font-style: normal;
}

.final-actions {
  margin-top: 48px;
  display: grid;
  gap: 8px;
}

.final-content > .final-lead {
  max-width: 560px;
  margin: 30px 0 0;
  color: #e8ece5;
  font-family: var(--body);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.9;
}

.final-stamp {
  position: absolute;
  top: 100px;
  right: -74px;
  width: 200px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.42);
  border-radius: 50%;
  font-family: var(--font-geist-mono), monospace;
  font-size: 8px;
  letter-spacing: .12em;
  text-align: center;
  transform: rotate(14deg);
}

/* Footer */
.footer {
  padding: 44px var(--pad) 26px;
  border-top: 1px solid rgba(119, 231, 255, .5);
  background:
    radial-gradient(circle at 8% 18%, rgba(119, 231, 255, .12), transparent 24%),
    radial-gradient(circle at 92% 82%, rgba(255, 90, 165, .09), transparent 26%),
    var(--ink);
  color: var(--white);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-logo {
  width: min(280px, 62vw);
  height: auto;
}

.footer-brand .brand-mark {
  background: var(--ink);
  color: var(--lime);
}

.footer-brand b {
  font-size: 18px;
  letter-spacing: -.04em;
}

.footer-brand p {
  margin: 3px 0 0;
  color: #aeb8c8;
  font-size: 8px;
  letter-spacing: .12em;
}

.footer nav {
  margin: 44px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid rgba(255,255,255,.2);
}

.footer nav a {
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.2);
  font-size: 12px;
  font-weight: 800;
  transition: color 180ms ease;
}

.footer nav a:hover {
  color: var(--lime);
}

.footer-meta {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-family: var(--font-geist-mono), monospace;
  font-size: 7px;
  letter-spacing: .1em;
  color: #8994a7;
}

@keyframes hero-in {
  from { opacity: 0; transform: scale(1.08); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes hero-scene {
  0%, 28% { opacity: 1; transform: scale(1.06); }
  38%, 90% { opacity: 0; transform: scale(1.13); }
  100% { opacity: 1; transform: scale(1.06); }
}

@keyframes hero-type-in {
  from { opacity: 0; transform: translateY(42px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes hero-copy-in {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes mechanism-scan {
  0%, 100% { transform: translateY(-12%); opacity: .3; }
  50% { transform: translateY(84%); opacity: .75; }
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

@keyframes map-pulse {
  0%, 100% { opacity: .55; transform: scale(.85); }
  50% { opacity: 1; transform: scale(1.15); }
}

@keyframes marker-pulse {
  0% { opacity: .8; transform: scale(.72); }
  68%, 100% { opacity: 0; transform: scale(1.45); }
}

@keyframes spotlight-in {
  from { opacity: 0; transform: translate(-50%, -50%) scale(.68); }
  to { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}

@supports (animation-timeline: view()) {
  .course-map-stage,
  .mosaic-item,
  .step {
    animation: section-reveal linear both;
    animation-timeline: view();
    animation-range: entry 10% cover 34%;
  }
}

@keyframes section-reveal {
  from { opacity: .35; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes swipe-travel {
  0% { left: 0; opacity: .3; }
  35% { opacity: 1; }
  80%, 100% { left: calc(100% - 8px); opacity: .2; }
}

@media (max-width: 759px) {
  body {
    line-break: strict;
    overflow-wrap: anywhere;
  }

  h1,
  h2,
  h3,
  p,
  li,
  summary {
    text-wrap: wrap;
  }

  .heading-line,
  .copy-line {
    white-space: normal;
  }

  .eyebrow {
    align-items: flex-start;
    gap: 9px;
    font-size: 8px;
    line-height: 1.55;
    letter-spacing: .1em;
  }

  .eyebrow::before {
    width: 24px;
    flex: 0 0 24px;
    margin-top: .55em;
  }

  .button {
    width: 100%;
    padding-inline: 16px;
    gap: 12px;
    font-size: 11px;
  }

  .hero h1 {
    font-size: clamp(58px, 18.2vw, 80px);
  }

  .hero-bottom {
    gap: 12px;
  }

  .hero-copy {
    min-width: 0;
  }

  .hero-copy strong {
    font-size: clamp(14px, 4.1vw, 18px);
    line-height: 1.5;
  }

  .circle-cta {
    width: clamp(82px, 24vw, 104px);
    padding: 14px;
    font-size: 9px;
  }

  .summary-heading-grid h2 {
    font-size: clamp(20px, 6.4vw, 26px);
    letter-spacing: -.045em;
    line-height: 1.18;
  }

  .summary-heading-grid h2 .heading-line {
    white-space: nowrap;
  }

  .course-map-footer {
    display: grid;
    gap: 12px;
  }

  .course-map-footer > span {
    max-width: none;
    text-align: left;
  }

  .lifestyle .display-title,
  .beginner .display-title {
    font-size: clamp(40px, 12.8vw, 58px);
  }

  .event-meta b {
    font-size: clamp(14px, 4.2vw, 18px);
  }

  .partner-heading-grid h2 {
    font-size: clamp(24px, 7.3vw, 34px);
    letter-spacing: -.045em;
    line-height: 1.18;
  }

  .final-content h2 {
    font-size: clamp(24px, 7.3vw, 34px);
    line-height: 1.16;
    word-break: normal;
  }

  .footer-meta {
    display: grid;
    justify-content: start;
    gap: 8px;
  }

  .service-summary,
  .concept,
  .matching-story,
  .attractions,
  .lifestyle,
  .howto,
  .event-section,
  .ticket-section,
  .partner-section,
  .faq-section {
    padding-top: 78px;
    padding-bottom: 82px;
  }

  .global-nav {
    padding-top: 96px;
    padding-bottom: max(28px, env(safe-area-inset-bottom));
  }

  .global-nav > a {
    padding-block: 13px;
    font-size: clamp(20px, 6vw, 26px);
    line-height: 1.12;
  }

  .global-nav .nav-ticket {
    min-height: 64px;
    margin-top: 12px;
    font-size: 15px;
  }

  .global-nav .nav-contact {
    min-height: 54px;
    margin-top: 2px;
  }

  .swipe-cue {
    margin: 34px 0 13px;
    display: grid;
    grid-template-columns: auto minmax(48px, 1fr) auto;
    align-items: center;
    gap: 10px;
    color: currentColor;
    font-family: var(--font-geist-mono), monospace;
    line-height: 1;
  }

  .swipe-cue > span {
    font-size: 8px;
    font-weight: 850;
    letter-spacing: .13em;
  }

  .swipe-cue > small {
    font-size: 8px;
    font-weight: 750;
    letter-spacing: .04em;
  }

  .swipe-cue > i {
    position: relative;
    height: 1px;
    background: currentColor;
    opacity: .52;
  }

  .swipe-cue > i::after {
    position: absolute;
    top: -3px;
    right: 0;
    width: 6px;
    height: 6px;
    border-top: 1px solid currentColor;
    border-right: 1px solid currentColor;
    content: "";
    transform: rotate(45deg);
  }

  .swipe-cue > i > b {
    position: absolute;
    top: -3px;
    left: 0;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--signal);
    box-shadow: 0 0 10px rgba(119,231,255,.5);
    animation: swipe-travel 2.2s ease-in-out infinite;
  }

  .section-light .swipe-cue > i > b { background: #c52b73; box-shadow: none; }
  .swipe-cue + .summary-grid,
  .swipe-cue + .steps,
  .swipe-cue + .ticket-cards,
  .swipe-cue + .partner-values { margin-top: 0; }
  .swipe-cue + .mechanism-stack { padding-top: 0; }
  .experience-section > .swipe-cue { margin: 0 var(--pad) 13px; }

  .summary-heading-grid > p { margin-top: 24px; }

  .summary-grid {
    width: calc(100% + var(--pad));
    margin-top: 38px;
    padding-right: var(--pad);
    display: flex;
    gap: 10px;
    overflow-x: auto;
    border-top: 0;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .summary-grid::-webkit-scrollbar,
  .mechanism-stack::-webkit-scrollbar,
  .experience-grid::-webkit-scrollbar,
  .mosaic-grid::-webkit-scrollbar,
  .steps::-webkit-scrollbar,
  .ticket-cards::-webkit-scrollbar,
  .partner-values::-webkit-scrollbar { display: none; }

  .summary-grid article {
    min-height: 188px;
    padding: 24px;
    flex: 0 0 82vw;
    border: 1px solid #acb5c5;
    scroll-snap-align: start;
  }

  .summary-actions { margin-top: 26px; }

  .attractions-intro { margin-bottom: 40px; }
  .course-intro-copy { margin-top: 24px; }

  .concept-grid { margin-top: 42px; }
  .concept-photo { min-height: 340px; }
  .concept-copy { padding-top: 62px; }
  .concept-copy h3 { margin-bottom: 22px; }
  .concept-copy > p { margin-bottom: 14px; line-height: 1.85; }

  .matching-story-heading { padding-bottom: 42px; }
  .matching-story-heading div > p { margin-top: 22px; }
  .matching-story-heading > strong { margin-top: 24px; }

  .mechanism-stack {
    width: calc(100% + var(--pad));
    padding: 24px var(--pad) 8px 0;
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .mechanism-card {
    margin: 0;
    flex: 0 0 84vw;
    scroll-snap-align: start;
  }

  .mechanism-visual { min-height: 260px; }
  .mechanism-copy { min-height: 300px; padding: 25px 21px 22px; }
  .mechanism-copy h3 { margin: 13px 0 17px; font-size: 21px; }
  .mechanism-copy p { line-height: 1.75; }
  .mechanism-copy small { margin-top: 20px; }
  .matching-story-footer { padding-top: 52px; }

  .experience-section { padding: 62px 0; background: #080914; }
  .experience-grid {
    padding: 0 var(--pad);
    display: flex;
    gap: 10px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .experience-card {
    min-height: 540px;
    padding: 30px 22px;
    flex: 0 0 84vw;
    border: 1px solid rgba(255,255,255,.26);
    scroll-snap-align: center;
  }

  .experience-index { top: 24px; left: 22px; }
  .experience-card h2 { font-size: clamp(65px, 20vw, 92px); }
  .experience-card p { margin-top: 20px; padding-right: 32px; font-size: 13px; }
  .experience-arrow { right: 20px; bottom: 28px; }

  .lifestyle-title-wrap { margin-bottom: 42px; }
  .mosaic-grid {
    width: calc(100% + var(--pad));
    padding-right: var(--pad);
    display: flex;
    gap: 10px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .mosaic-item {
    min-height: 390px;
    flex: 0 0 82vw;
    scroll-snap-align: start;
  }

  .steps {
    width: calc(100% + var(--pad));
    margin-top: 48px;
    padding-right: var(--pad);
    display: flex;
    gap: 10px;
    overflow-x: auto;
    border-left: 0;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .step {
    min-height: 240px;
    padding: 24px;
    flex: 0 0 76vw;
    border: 1px solid rgba(119,231,255,.3);
    background: rgba(8,9,20,.7);
    scroll-snap-align: start;
  }

  .step:last-child { padding-bottom: 24px; }
  .step h3 { font-size: 29px; }
  .step-dot { display: none; }

  .ticket-cards {
    width: calc(100% + var(--pad));
    margin-top: 42px;
    padding-right: var(--pad);
    display: flex;
    gap: 10px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .ticket-card { flex: 0 0 84vw; scroll-snap-align: start; }
  .beginner { padding-top: 78px; }
  .beginner-photo { min-height: 300px; }
  .beginner-content { padding-bottom: 78px; }
  .partner-values {
    width: calc(100% + var(--pad));
    margin-top: 42px;
    padding-right: var(--pad);
    display: flex;
    gap: 10px;
    overflow-x: auto;
    border-top: 0;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .partner-values article {
    min-height: 220px;
    padding: 24px;
    flex: 0 0 80vw;
    border: 1px solid rgba(255,255,255,.2);
    scroll-snap-align: start;
  }
  .partner-form { margin-top: 48px; }
  .faq-list { margin-top: 42px; }

  .final-cta {
    min-height: 78svh;
    padding-top: 88px;
    padding-bottom: 104px;
  }

  .final-content h2 { font-size: clamp(24px, 7.3vw, 34px); line-height: 1.16; }
  .final-content > .final-lead { margin-top: 22px; font-size: 12px; }
  .final-actions { margin-top: 30px; }
  .final-stamp { display: none; }

  .event-dock {
    right: 10px;
    bottom: max(10px, env(safe-area-inset-bottom));
    width: calc(100vw - 20px);
  }
}

@media (min-width: 760px) {
  .site-header {
    height: 88px;
  }

  .brand {
    font-size: 18px;
  }

  .brand-mark {
    width: 44px;
  }

  .hero-content {
    padding-top: 150px;
    padding-bottom: 58px;
  }

  .matching-story-heading { display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: end; column-gap: 70px; }
  .matching-story-heading > .eyebrow { grid-column: 1 / -1; }
  .matching-story-heading > strong { margin: 0 0 8px; text-align: right; }

  .mechanism-card { position: sticky; top: 100px; min-height: 560px; display: grid; grid-template-columns: 1.08fr .92fr; overflow: hidden; }
  .mechanism-card:nth-child(even) { grid-template-columns: .92fr 1.08fr; }
  .mechanism-card:nth-child(2) { top: 112px; }
  .mechanism-card:nth-child(3) { top: 124px; }
  .mechanism-card:nth-child(4) { top: 136px; }
  .mechanism-card:nth-child(even) .mechanism-visual { order: 2; }
  .mechanism-visual { min-height: 560px; }
  .mechanism-copy { padding: clamp(42px, 6vw, 82px); display: flex; flex-direction: column; justify-content: center; }
  .mechanism-copy h3 { font-size: clamp(32px, 3.5vw, 58px); }
  .mechanism-number { left: 28px; font-size: clamp(150px, 18vw, 270px); }
  .matching-story-footer { grid-template-columns: 1fr auto; align-items: end; }

  .circle-cta {
    width: 136px;
    padding: 24px;
  }

  .summary-heading-grid {
    display: grid;
    grid-template-columns: 1.12fr .88fr;
    align-items: end;
    gap: clamp(48px, 7vw, 110px);
  }

  .summary-heading-grid > p {
    margin: 0 0 6px;
  }

  .summary-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .summary-grid article {
    padding: 34px 28px 34px 0;
  }

  .summary-grid article + article {
    padding-left: 28px;
    border-left: 1px solid #acb5c5;
  }

  .summary-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .partner-heading-grid {
    display: grid;
    grid-template-columns: 1.12fr .88fr;
    align-items: end;
    gap: clamp(50px, 8vw, 130px);
  }

  .partner-heading-grid > div {
    margin: 0 0 6px;
  }

  .partner-values {
    grid-template-columns: repeat(3, 1fr);
  }

  .partner-values article {
    padding: 34px 28px 34px 0;
  }

  .partner-values article + article {
    padding-left: 28px;
    border-left: 1px solid var(--line);
  }

  .partner-form {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
  }

  .partner-form-intro {
    padding: 44px;
    border-right: 1px solid rgba(255,255,255,.24);
    border-bottom: 0;
  }

  .partner-form-fields {
    padding: 44px;
    grid-template-columns: 1fr 1fr;
  }

  .partner-message,
  .partner-form-fields button {
    grid-column: 1 / -1;
  }

  .concept-grid {
    display: grid;
    grid-template-columns: 1.12fr .88fr;
    gap: clamp(46px, 7vw, 110px);
    align-items: end;
  }

  .concept-photo {
    min-height: 640px;
  }

  .concept-copy {
    padding-top: 0;
  }

  .experience-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .experience-card {
    min-height: 84svh;
    padding-inline: 26px;
    border-right: 1px solid rgba(255,255,255,.26);
    border-bottom: 0;
  }

  .experience-index {
    left: 26px;
  }

  .experience-card h2 {
    font-size: clamp(60px, 8.5vw, 144px);
  }

  .experience-arrow {
    right: 26px;
  }

  .course-title-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 50px;
  }

  .course-intro-copy {
    width: clamp(270px, 25vw, 370px);
    min-width: 270px;
    margin: 0 0 4px;
    padding: 0 0 0 26px;
    display: grid;
    gap: 20px;
    border-top: 0;
    border-left: 1px solid var(--line);
  }

  .course-intro-copy p {
    text-align: left;
  }

  .course-map-toolbar {
    min-height: 56px;
    font-size: 8px;
  }

  .course-map-stage {
    aspect-ratio: 16 / 8.8;
    min-height: 560px;
    background-size: cover;
  }

  .course-map-frame {
    overflow: hidden;
  }

  .course-label {
    font-size: 8px;
  }

  .course-marker {
    width: 58px;
    height: 58px;
  }

  .marker-core {
    width: 45px;
  }

  .marker-core b {
    font-size: 12px;
  }

  .marker-name {
    position: absolute;
    top: calc(100% + 6px);
    left: 50%;
    padding: 5px 7px;
    display: block;
    visibility: hidden;
    background: rgba(8,9,20,.84);
    color: var(--white);
    font-family: var(--font-geist-mono), monospace;
    font-size: 6px;
    font-weight: 700;
    letter-spacing: .06em;
    opacity: 0;
    white-space: nowrap;
    transform: translate(-50%, -4px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms;
  }

  .course-marker:hover .marker-name,
  .course-marker:focus-visible .marker-name,
  .course-marker.is-active .marker-name {
    visibility: visible;
    opacity: 1;
    transform: translate(-50%, 0);
  }

  .course-hover-card {
    position: absolute;
    z-index: 14;
    left: var(--pad);
    bottom: 55px;
    width: min(330px, 27vw);
    min-height: 178px;
    padding: 22px;
    display: block;
    visibility: hidden;
    border-top: 2px solid var(--lime);
    background: rgba(9,11,25,.9);
    color: var(--white);
    box-shadow: 0 18px 44px rgba(0,0,0,.28);
    opacity: 0;
    pointer-events: none;
    transform: translateY(14px);
    transition: opacity 200ms ease, transform 200ms ease, visibility 200ms;
    backdrop-filter: blur(12px);
  }

  .course-hover-card.is-visible {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .course-hover-card > span {
    color: var(--lime);
    font-family: var(--font-geist-mono), monospace;
    font-size: 8px;
    letter-spacing: .12em;
  }

  .course-hover-card h3 {
    margin: 7px 0 12px;
    font-size: clamp(25px, 2.7vw, 40px);
    letter-spacing: -.065em;
    line-height: .9;
  }

  .course-hover-card p {
    margin: 0 0 18px;
    color: #c4ccd9;
    font-size: 11px;
    line-height: 1.65;
  }

  .course-hover-card > b {
    display: flex;
    justify-content: space-between;
    color: var(--lime);
    font-family: var(--font-geist-mono), monospace;
    font-size: 8px;
    letter-spacing: .08em;
  }

  .course-hover-card > b i {
    font-style: normal;
  }

  .course-map-legend {
    font-size: 7px;
  }

  .course-detail-scrim {
    position: absolute;
    z-index: 20;
    background: rgba(4,5,14,.46);
  }

  .course-detail-panel {
    position: absolute;
    z-index: 30;
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    width: min(450px, 38vw);
    max-height: none;
    box-shadow: -24px 0 70px rgba(0,0,0,.46);
    transform: translateX(104%);
  }

  .course-detail-panel.is-open {
    transform: translateX(0);
  }

  .detail-drag-handle {
    display: none;
  }

  .detail-hole-switcher {
    display: none;
  }

  .detail-image {
    height: 36%;
    min-height: 190px;
  }

  .detail-image > b {
    font-size: 120px;
  }

  .detail-body {
    padding: clamp(26px, 3vw, 46px);
  }

  .detail-body h3 {
    font-size: clamp(42px, 4.4vw, 70px);
  }

  .detail-body > strong {
    font-size: 16px;
  }

  .course-map-footer {
    padding-top: 28px;
  }

  .course-map-footer p {
    font-size: 14px;
  }

  .course-map-footer > span {
    max-width: 350px;
    font-size: 9px;
  }

  .lifestyle-title-wrap {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: end;
  }

  .lifestyle-title-wrap .eyebrow {
    grid-column: 1 / -1;
  }

  .mosaic-grid {
    grid-template-columns: 1.1fr .8fr 1.1fr;
    grid-template-rows: 330px 330px;
  }

  .mosaic-food {
    grid-row: 1 / 3;
  }

  .mosaic-drink {
    grid-column: 2;
  }

  .mosaic-music {
    grid-column: 2;
    grid-row: 2;
  }

  .mosaic-beginner {
    grid-column: 3;
    grid-row: 1 / 3;
  }

  .mosaic-item {
    padding: 24px;
  }

  .steps {
    margin-top: 100px;
    border-top: 1px solid rgba(119,231,255,.42);
    border-left: 0;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
  }

  .step {
    min-height: 300px;
    padding: 34px 26px 0 0;
  }

  .step h3 {
    font-size: clamp(22px, 2.2vw, 36px);
  }

  .step-dot {
    top: -6px;
    left: 0;
  }

  .event-card {
    padding: clamp(30px, 5vw, 70px);
    box-shadow: 24px 24px 0 var(--lime);
  }

  .event-actions {
    grid-template-columns: 1fr 1fr;
  }

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

  .ticket-card {
    padding: clamp(26px, 4vw, 54px);
  }

  .beginner-photo {
    margin-top: 50px;
  }

  .beginner-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(50px, 8vw, 140px);
  }

  .faq-layout {
    display: grid;
    grid-template-columns: .7fr 1.3fr;
    gap: clamp(60px, 10vw, 170px);
  }

  .faq-list {
    margin-top: 0;
  }

  .final-actions {
    max-width: 800px;
    grid-template-columns: 1.6fr 1fr 1fr;
  }

  .footer {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px 80px;
  }

  .footer nav {
    margin: 0;
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-meta {
    grid-column: 1 / -1;
  }
}

@media (min-width: 1080px) {
  .menu-toggle {
    display: none;
  }

  .global-nav {
    position: static;
    padding: 0;
    flex-direction: row;
    align-items: center;
    gap: 18px;
    visibility: visible;
    background: transparent;
    opacity: 1;
    transform: none;
  }

  .nav-intro { display: none; }

  .global-nav > a {
    padding: 9px 0;
    border: 0;
    font-size: 8.5px;
    letter-spacing: .08em;
  }

  .global-nav .nav-ticket {
    min-width: 156px;
    min-height: 45px;
    margin: 0 0 0 10px;
    padding: 0 15px;
  }

  .global-nav .nav-contact {
    min-height: 45px;
    padding: 0 13px;
    border: 1px solid rgba(255,255,255,.34);
    font-size: 8.5px;
    letter-spacing: .04em;
  }

  .hero-side-copy {
    position: absolute;
    top: 50%;
    right: 23px;
    margin: 0;
    display: block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .1em;
    writing-mode: vertical-rl;
    transform: translateY(-50%);
  }

  .hero-scroll {
    position: absolute;
    bottom: 46px;
    right: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-geist-mono), monospace;
    font-size: 8px;
    letter-spacing: .12em;
    writing-mode: vertical-rl;
  }

  .hero-scroll span {
    width: 1px;
    height: 64px;
    background: var(--lime);
  }

  .concept,
  .service-summary,
  .partner-section {
    padding-block: 160px;
  }

  .attractions,
  .lifestyle,
  .howto,
  .event-section,
  .ticket-section,
  .faq-section {
    padding-block: 170px;
  }

  .beginner {
    padding-top: 170px;
  }

  .ticket-shell {
    display: grid;
    grid-template-columns: .72fr 1.28fr;
    gap: 80px;
    align-items: start;
  }

  .ticket-cards {
    margin-top: 0;
  }

  .ticket-shell > .price-note {
    grid-column: 2;
  }

  .final-cta {
    padding-bottom: 76px;
  }
}

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

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