:root {
  --bg: #090b0a;
  --bg-elevated: rgba(11, 14, 13, 0.84);
  --panel: rgba(15, 19, 17, 0.78);
  --panel-strong: rgba(11, 14, 13, 0.94);
  --text: #f5f0e6;
  --muted: rgba(245, 240, 230, 0.72);
  --line: rgba(245, 240, 230, 0.14);
  --accent: #86efac;
  --accent-soft: rgba(134, 239, 172, 0.18);
  --utility-accent: #86efac;
  --button-fill: #147c54;
  --button-fill-hover: #0f6945;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.24);
  --container: min(1320px, calc(100vw - 40px));
  --content: min(1120px, calc(100vw - 40px));
  --section-space: clamp(5rem, 9vw, 8rem);
  --header-height: 76px;
  --radius: 26px;
  --font-display: "Raleway", "Bricolage Grotesque", sans-serif;
  --font-serif: "Cormorant Garamond", serif;
  --font-korean: "Pretendard Variable", "Pretendard", "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  color: var(--text);
  background: #000;
  font-family: var(--font-display);
  font-weight: 300;
  line-height: 1.55;
}

html[lang="ko"] body {
  font-family: var(--font-korean);
  line-height: 1.65;
}

html[lang="ko"] .hero-title em,
html[lang="ko"] .section-title em {
  font-family: "Raleway", var(--font-korean);
  font-style: italic;
  letter-spacing: -0.04em;
}

html[lang="ko"] .hero-title em {
  font-family: inherit;
  font-style: normal;
  font-weight: inherit;
  letter-spacing: inherit;
  color: var(--text);
}

html[lang="ko"] .section-title em {
  font-weight: 400;
}

html[lang="ko"] .hero-title,
html[lang="ko"] .section-title {
  letter-spacing: -0.03em;
  line-height: 1.08;
}

html[lang="ko"] .site-nav a,
html[lang="ko"] .button,
html[lang="ko"] .header-cta,
html[lang="ko"] .action-link,
html[lang="ko"] .eyebrow,
html[lang="ko"] .price-note,
html[lang="ko"] .footer-label,
html[lang="ko"] .footer-mini-link {
  letter-spacing: 0.02em;
  text-transform: none;
}

html[lang="ko"] .site-nav a {
  font-weight: 600;
}

html[lang="ko"] .button,
html[lang="ko"] .action-link,
html[lang="ko"] .footer-mini-link {
  font-weight: 700;
}

html[lang="ko"] .eyebrow,
html[lang="ko"] .footer-label,
html[lang="ko"] .price-note {
  font-weight: 700;
}

html[lang="ko"] .hero-copy,
html[lang="ko"] .section-copy,
html[lang="ko"] .feature-list li,
html[lang="ko"] .policy-list li,
html[lang="ko"] .footer-note,
html[lang="ko"] .footer-contact-link {
  word-break: keep-all;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.65), transparent 90%);
  opacity: 0.28;
}

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

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

p {
  margin: 0;
  color: var(--muted);
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.content-width {
  width: var(--content);
  margin: 0 auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  background: linear-gradient(180deg, rgba(7, 9, 8, 0.92), rgba(7, 9, 8, 0.22));
  transition: background-color 180ms ease, backdrop-filter 180ms ease, border-color 180ms ease;
}

body.is-scrolled .site-header {
  backdrop-filter: blur(18px);
  background: rgba(10, 13, 12, 0.9);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.header-tools {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.brand-logo {
  width: clamp(144px, 12vw, 184px);
  flex: none;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a {
  position: relative;
  padding: 10px 14px;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(247, 243, 234, 0.72);
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 8px;
  height: 1px;
  background: var(--utility-accent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--text);
}

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

.nav-toggle {
  display: none;
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--text);
  cursor: pointer;
}

.nav-toggle-lines {
  width: 28px;
  height: 20px;
  display: grid;
  align-content: space-between;
}

.nav-toggle-lines span {
  display: block;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 28px;
  border: 1px solid rgba(247, 243, 234, 0.12);
  border-radius: 999px;
  font-size: 0.96rem;
  font-weight: 400;
  letter-spacing: -0.01em;
  text-transform: none;
  box-shadow: none;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

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

.button-primary {
  background: var(--button-fill);
  color: var(--text);
  border-color: rgba(20, 124, 84, 0.82);
}

.button-primary:hover {
  background: var(--button-fill-hover);
  border-color: rgba(20, 124, 84, 0.96);
}

.button-secondary {
  border-color: rgba(247, 243, 234, 0.22);
  color: var(--text);
  background: rgba(7, 10, 8, 0.54);
  backdrop-filter: blur(10px);
}

.button-secondary:hover {
  background: rgba(13, 17, 15, 0.76);
  border-color: rgba(247, 243, 234, 0.32);
}

.header-cta {
  min-height: 44px;
  padding: 0 20px;
  font-size: 0.92rem;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.lang-switcher {
  position: relative;
}

.lang-trigger {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid rgba(247, 243, 234, 0.14);
  border-radius: 999px;
  background: rgba(9, 12, 10, 0.56);
  color: rgba(245, 240, 230, 0.72);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
  cursor: pointer;
  transition: border-color 180ms ease, color 180ms ease, background-color 180ms ease;
}

.lang-trigger:hover,
.lang-switcher.is-open .lang-trigger {
  color: var(--text);
  border-color: rgba(134, 239, 172, 0.34);
}

.lang-trigger-icon,
.lang-trigger-caret {
  width: 15px;
  height: 15px;
  flex: none;
}

.lang-trigger svg,
.lang-option-check svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
}

.lang-trigger-label {
  min-width: 2.6em;
  text-align: center;
}

.lang-trigger-caret {
  transition: transform 180ms ease;
}

.lang-switcher.is-open .lang-trigger-caret {
  transform: rotate(180deg);
}

.lang-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 168px;
  padding: 8px;
  display: grid;
  gap: 4px;
  border: 1px solid rgba(247, 243, 234, 0.12);
  border-radius: 18px;
  background: rgba(8, 10, 9, 0.94);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.lang-switcher.is-open .lang-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.lang-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 42px;
  padding: 0 12px;
  border-radius: 12px;
  color: rgba(245, 240, 230, 0.74);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background-color 180ms ease, color 180ms ease;
}

.lang-option-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.lang-option-name {
  color: rgba(245, 240, 230, 0.56);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

.lang-option-check {
  width: 15px;
  height: 15px;
  color: var(--utility-accent);
  opacity: 0;
  transition: opacity 180ms ease;
}

.lang-option:hover {
  color: var(--text);
  background: rgba(247, 243, 234, 0.04);
}

.lang-option.is-active {
  background: rgba(134, 239, 172, 0.12);
  color: var(--utility-accent);
}

.lang-option.is-active .lang-option-check {
  opacity: 1;
}

.lang-option.is-active .lang-option-name,
.lang-option:hover .lang-option-name {
  color: inherit;
}

.page-main {
  padding-top: var(--header-height);
}

.hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: clamp(680px, 80svh, 860px);
  overflow: clip;
  background: #000;
  isolation: isolate;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 160px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), #000 78%);
  z-index: 1;
  pointer-events: none;
}

.hero-home .hero-media::after {
  background:
    linear-gradient(90deg, rgba(6, 8, 7, 0.88) 0%, rgba(6, 8, 7, 0.44) 40%, rgba(6, 8, 7, 0.18) 100%),
    linear-gradient(180deg, rgba(6, 8, 7, 0.1), rgba(6, 8, 7, 0.78));
}

.hero-tech .hero-media::after {
  background:
    linear-gradient(90deg, rgba(7, 8, 7, 0.8) 0%, rgba(7, 8, 7, 0.46) 46%, rgba(7, 8, 7, 0.14) 100%),
    linear-gradient(180deg, rgba(7, 8, 7, 0.1), rgba(7, 8, 7, 0.82));
}

.hero-pricing .hero-media::after {
  background:
    linear-gradient(90deg, rgba(8, 12, 10, 0.76) 0%, rgba(8, 12, 10, 0.4) 42%, rgba(8, 12, 10, 0.18) 100%),
    linear-gradient(180deg, rgba(8, 12, 10, 0.04), rgba(8, 12, 10, 0.68));
}

.hero-pricing {
  min-height: clamp(540px, 66svh, 700px);
}

.hero-location .hero-media::after {
  background:
    linear-gradient(90deg, rgba(9, 11, 10, 0.8) 0%, rgba(9, 11, 10, 0.46) 42%, rgba(9, 11, 10, 0.16) 100%),
    linear-gradient(180deg, rgba(9, 11, 10, 0.1), rgba(9, 11, 10, 0.78));
}

.hero-booking .hero-media::after {
  background:
    linear-gradient(90deg, rgba(6, 8, 7, 0.84) 0%, rgba(6, 8, 7, 0.44) 42%, rgba(6, 8, 7, 0.18) 100%),
    linear-gradient(180deg, rgba(6, 8, 7, 0.08), rgba(6, 8, 7, 0.8));
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  transform: scale(1.05);
  pointer-events: none;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 7, 6, 0.82) 0%, rgba(5, 7, 6, 0.5) 42%, rgba(5, 7, 6, 0.2) 100%),
    linear-gradient(180deg, rgba(5, 7, 6, 0.1), rgba(5, 7, 6, 0.76));
}

.hero-media img,
.hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  width: min(760px, calc(100vw - 40px));
  margin-left: max(20px, calc((100vw - var(--container)) / 2));
  padding-bottom: clamp(4.75rem, 8svh, 6.8rem);
}

.hero-title {
  margin: 0;
  max-width: 8.6ch;
  font-size: clamp(2.24rem, 5.35vw, 3.94rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.03em;
  text-transform: capitalize;
}

.hero-title span {
  display: block;
  text-transform: capitalize;
}

.hero-title em {
  display: block;
  font-family: inherit;
  font-style: normal;
  font-weight: inherit;
  text-transform: capitalize;
  letter-spacing: inherit;
  color: var(--text);
}

.hero-copy {
  max-width: 28rem;
  margin-top: 24px;
  color: rgba(245, 240, 230, 0.58);
  font-size: 1rem;
  line-height: 1.6;
}

.hero-actions {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  position: relative;
  z-index: 4;
}

.hero-actions .button {
  min-width: 198px;
  position: relative;
  z-index: 4;
  pointer-events: auto;
}

.action-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(245, 240, 230, 0.86);
  font-size: 0.94rem;
  font-weight: 400;
  letter-spacing: -0.01em;
  text-transform: none;
}

.action-link::after {
  content: "";
  width: 36px;
  height: 1px;
  background: rgba(134, 239, 172, 0.72);
  transition: transform 180ms ease, background-color 180ms ease;
  transform-origin: left center;
}

.action-link:hover {
  color: var(--text);
}

.action-link:hover::after {
  background: var(--accent);
  transform: scaleX(1.15);
}

.inline-contact-link {
  color: rgba(247, 243, 234, 0.88);
  text-decoration: underline;
  text-decoration-color: rgba(134, 239, 172, 0.36);
  text-underline-offset: 0.16em;
}

.inline-contact-link:hover {
  color: var(--accent);
  text-decoration-color: currentColor;
}

.section-links {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
}

.hero-home .hero-content {
  width: min(620px, calc(100vw - 40px));
}

.hero-tech .hero-content {
  width: min(720px, calc(100vw - 40px));
}

.hero-pricing .hero-content {
  width: min(640px, calc(100vw - 40px));
}

.quick-facts {
  position: relative;
  z-index: 1;
  width: var(--container);
  margin: clamp(2.25rem, 5vw, 3.25rem) auto 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.quick-fact {
  padding: 14px 12px 0 0;
  border-top: 1px solid rgba(245, 240, 230, 0.14);
  background: transparent;
}

.quick-fact span {
  display: block;
  margin-bottom: 12px;
  color: var(--accent);
  font-size: 0.98rem;
  letter-spacing: -0.01em;
  text-transform: none;
}

.quick-fact strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.02rem;
}

.quick-fact p {
  max-width: 21ch;
  font-size: 0.96rem;
  line-height: 1.5;
}

.quick-facts-inline {
  width: 100%;
  margin-top: 0;
  align-items: stretch;
}

.quick-facts-inline .quick-fact {
  min-height: 100%;
}

.hero-rail {
  position: relative;
  z-index: 1;
  width: var(--container);
  margin: clamp(2.75rem, 6vw, 4rem) auto 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(247, 243, 234, 0.18);
  border-bottom: 1px solid rgba(247, 243, 234, 0.12);
  background: rgba(10, 12, 11, 0.4);
  backdrop-filter: blur(10px);
}

.hero-rail-item {
  padding: 18px 20px 20px;
  min-height: 102px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 10px;
  border-left: 1px solid rgba(247, 243, 234, 0.1);
}

.hero-rail-item:first-child {
  border-left: 0;
}

.hero-rail-item strong {
  font-size: 1rem;
  font-weight: 600;
}

.hero-rail-item span {
  font-size: 0.88rem;
  color: var(--muted);
}

.section {
  position: relative;
  padding: var(--section-space) 0;
}

.section + .section {
  border-top: 1px solid rgba(247, 243, 234, 0.06);
}

.section-head {
  margin-bottom: 38px;
}

.eyebrow {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--accent);
  font-size: 0.96rem;
  letter-spacing: -0.01em;
  text-transform: none;
}

.section-title {
  margin: 0;
  max-width: 11.5ch;
  font-size: clamp(2.9rem, 4.6vw, 4.7rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  font-weight: 300;
}

.section-title em {
  font-family: "Raleway", var(--font-korean);
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
}

.section-copy {
  max-width: 31rem;
  margin-top: 22px;
  font-size: 1.02rem;
  line-height: 1.62;
}

.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(36px, 6vw, 88px);
  align-items: start;
}

.split-grid.reverse {
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
}

.framed-copy {
  max-width: 34rem;
  padding: 26px 0 0;
}

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

.feature-list li {
  padding: 16px 0;
  display: grid;
  grid-template-columns: minmax(112px, 1fr) minmax(0, 1.8fr);
  gap: 22px;
  border-bottom: 1px solid rgba(247, 243, 234, 0.08);
  font-size: 0.96rem;
}

.feature-list li strong {
  color: var(--text);
  line-height: 1.32;
}

.feature-list li span {
  max-width: none;
  text-align: left;
  color: var(--muted);
  line-height: 1.52;
}

.media-frame {
  position: relative;
  overflow: clip;
  border: 1px solid rgba(247, 243, 234, 0.08);
  border-radius: 32px;
  background: rgba(10, 12, 11, 0.44);
  aspect-ratio: 1.08 / 1;
}

.media-frame::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 28%;
  background: linear-gradient(180deg, rgba(4, 7, 6, 0), rgba(4, 7, 6, 0.16));
  pointer-events: none;
}

.media-frame img,
.media-frame video,
.media-frame iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-frame.tall {
  aspect-ratio: 0.82 / 1;
  min-height: clamp(500px, 48vw, 660px);
}

.media-frame.medium {
  aspect-ratio: 0.98 / 1;
  min-height: clamp(380px, 34vw, 520px);
}

.media-frame.short {
  aspect-ratio: 1.26 / 1;
  min-height: clamp(260px, 25vw, 380px);
}

.mode .media-frame.medium {
  aspect-ratio: 1 / 1;
  min-height: 0;
}

.map-frame {
  aspect-ratio: auto;
}

.focus-top img,
.focus-top video,
.focus-top iframe {
  object-position: center 16%;
}

.focus-center img,
.focus-center video,
.focus-center iframe {
  object-position: center center;
}

.focus-right img,
.focus-right video,
.focus-right iframe {
  object-position: 68% center;
}

.stack-copy {
  display: grid;
  gap: 28px;
}

.stack-copy h3,
.timeline-item h3,
.cta-banner h3 {
  margin: 0 0 10px;
  font-size: 1.48rem;
  font-weight: 300;
  letter-spacing: -0.03em;
}

.stat-grid,
.mode-grid,
.timeline {
  display: grid;
  gap: 22px;
}

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

.stat-item {
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.stat-item strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1rem;
  color: var(--text);
}

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

.mode {
  display: grid;
  gap: 18px;
}

.mode-caption {
  display: grid;
  gap: 6px;
}

.mode-caption strong {
  font-size: 1.04rem;
}

.mode-caption span {
  font-size: 0.92rem;
  color: var(--muted);
}

.board {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(12, 15, 13, 0.54);
  transition: border-color 180ms ease, background-color 180ms ease;
}

.board-head,
.row-item {
  display: grid;
}

.board-head {
  grid-template-columns: minmax(0, 1fr) minmax(220px, 272px);
  gap: 32px;
  align-items: end;
  padding: 24px 28px;
  border-bottom: 1px solid rgba(247, 243, 234, 0.12);
}

.board-head > div:first-child {
  min-width: 0;
  display: grid;
  gap: 8px;
}

.board-head strong {
  font-size: clamp(1.4rem, 2vw, 1.9rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
  font-weight: 300;
}

.board-head span {
  font-size: 0.92rem;
  color: var(--accent);
  text-transform: none;
  letter-spacing: -0.01em;
}

.row-item {
  grid-template-columns: minmax(112px, 132px) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  padding: 20px 28px;
  border-bottom: 1px solid rgba(247, 243, 234, 0.08);
}

.row-item:last-child {
  border-bottom: 0;
}

.row-item strong {
  font-size: 0.96rem;
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.row-item span {
  max-width: 32ch;
  justify-self: start;
  text-align: left;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.45;
}

.price {
  width: 100%;
  display: grid;
  justify-items: end;
  gap: 8px;
  text-align: right;
}

.price-main {
  font-size: clamp(2.8rem, 4.6vw, 4.4rem);
  line-height: 0.9;
  letter-spacing: -0.05em;
  white-space: nowrap;
}

.price-note {
  font-size: 0.88rem;
  color: rgba(247, 243, 234, 0.62);
  letter-spacing: -0.01em;
  text-transform: none;
  white-space: nowrap;
}

.pricing-note,
.legal-note {
  margin-top: 16px;
  font-size: 0.88rem;
  color: rgba(247, 243, 234, 0.62);
}

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

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

.timeline-item {
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.map-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(28px, 5vw, 60px);
  align-items: stretch;
}

.map-frame iframe {
  min-height: 540px;
  border: 0;
}

.cta-banner {
  position: relative;
  overflow: clip;
  border: 1px solid rgba(247, 243, 234, 0.12);
  border-radius: 32px;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  background: #0a100d;
}

.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(4, 7, 6, 0.08), rgba(4, 7, 6, 0.78)),
    linear-gradient(90deg, rgba(4, 7, 6, 0.75), rgba(4, 7, 6, 0.18));
  z-index: 1;
}

.cta-banner > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-content {
  position: relative;
  z-index: 2;
  padding: clamp(26px, 5vw, 54px);
  max-width: 44rem;
}

.cta-content p {
  margin-bottom: 24px;
}

.policy-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.policy-list li {
  padding: 15px 0;
  border-top: 1px solid var(--line);
  font-size: 0.98rem;
}

.policy-list li:last-child {
  border-bottom: 1px solid var(--line);
}

.site-footer {
  padding: 38px 0 46px;
  border-top: 1px solid rgba(247, 243, 234, 0.08);
  background:
    linear-gradient(180deg, rgba(9, 12, 10, 0), rgba(9, 12, 10, 0.92)),
    rgba(6, 8, 7, 0.92);
}

.footer-shell {
  display: grid;
  gap: 22px;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 6px;
}

.footer-brand-block {
  display: grid;
  gap: 12px;
  max-width: 34rem;
}

.footer-logo {
  width: clamp(144px, 12vw, 176px);
}

.footer-label {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--accent);
  font-size: 0.9rem;
  letter-spacing: -0.01em;
  text-transform: none;
}

.footer-utility-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.footer-mini-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(245, 240, 230, 0.72);
  font-size: 0.88rem;
  letter-spacing: -0.01em;
  text-transform: none;
}

.footer-mini-link::after {
  content: "";
  width: 28px;
  height: 1px;
  background: rgba(245, 240, 230, 0.18);
}

.footer-mini-link:hover {
  color: var(--text);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  padding: 24px 0 18px;
  border-top: 1px solid rgba(247, 243, 234, 0.08);
  border-bottom: 1px solid rgba(247, 243, 234, 0.08);
}

.footer-column {
  min-width: 0;
}

.footer-stack {
  display: grid;
  gap: 10px;
}

.footer-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(247, 243, 234, 0.88);
  font-size: 0.9rem;
  line-height: 1.5;
  transition: color 180ms ease, opacity 180ms ease;
}

.social-icon {
  width: 16px;
  height: 16px;
  flex: none;
  color: currentColor;
}

.social-icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
}

.footer-contact-link:hover {
  color: var(--accent);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  color: rgba(247, 243, 234, 0.62);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer-note {
  max-width: 40rem;
  font-size: 0.84rem;
  color: rgba(247, 243, 234, 0.58);
}

body:not([data-page="home"]) .hero-title {
  max-width: none;
  width: max-content;
  font-size: clamp(1.97rem, 4.8vw, 3.4rem);
}

body:not([data-page="home"]) .hero-title span,
body:not([data-page="home"]) .hero-title em {
  white-space: nowrap;
}

body[data-page="booking"] .hero-title {
  max-width: 7ch;
}

.hero-home .hero-media img,
.hero-home .hero-media video {
  object-position: 54% center;
}

.hero-tech .hero-media video {
  object-position: 54% center;
}

.hero-pricing .hero-media img {
  object-position: center 54%;
}

.hero-location .hero-media img {
  object-position: 58% center;
}

.hero-booking .hero-media img {
  object-position: 56% center;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 500ms ease, transform 500ms ease;
}

.hero .reveal {
  opacity: 1;
  transform: none;
}

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

@media (max-width: 1080px) {
  .hero-rail,
  .quick-facts,
  .stat-grid,
  .mode-grid,
  .dual-board,
  .timeline,
  .split-grid,
  .map-grid {
    grid-template-columns: 1fr !important;
  }

  .split-grid.reverse {
    grid-template-columns: 1fr !important;
  }

  .hero {
    min-height: clamp(640px, 88svh, 820px);
  }

  .hero-content {
    width: min(680px, calc(100vw - 40px));
    padding-bottom: clamp(3.5rem, 7svh, 4.75rem);
  }

  .quick-facts-inline {
    width: 100%;
  }

  .brand-logo {
    width: 150px;
  }

  .hero-rail-item {
    border-left: 0;
    border-top: 1px solid rgba(247, 243, 234, 0.08);
  }

  .hero-rail-item:first-child {
    border-top: 0;
  }

  .quick-fact {
    border-top: 1px solid rgba(245, 240, 230, 0.12);
  }

  .media-frame.tall,
  .media-frame.medium,
  .media-frame.short,
  .map-frame iframe {
    min-height: 420px;
  }
}

@media (max-width: 860px) {
  .header-inner {
    gap: 12px;
    justify-content: flex-start;
  }

  .header-tools {
    gap: 8px;
    order: 3;
    margin-left: auto;
  }

  .brand-mark {
    order: 2;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    order: 1;
    margin-left: -6px;
  }

  .header-cta {
    display: none;
  }

  .site-nav {
    position: fixed;
    inset: calc(var(--header-height) + 10px) 14px auto;
    padding: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(8, 12, 10, 0.95);
    box-shadow: var(--shadow);
    z-index: 50;
    max-height: calc(100svh - var(--header-height) - 28px);
    overflow: auto;
  }

  body.nav-open .site-nav {
    display: flex;
  }

  .site-nav a {
    padding: 14px 12px;
  }

  .site-nav a::after {
    left: 12px;
    right: 12px;
    bottom: 10px;
  }

  .footer-top,
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  :root {
    --container: min(100vw - 28px, 1320px);
    --content: min(100vw - 28px, 1120px);
    --header-height: 68px;
    --section-space: clamp(3.5rem, 10vw, 4.5rem);
  }

  .page-main {
    padding-top: 0;
  }

  .site-header {
    background: linear-gradient(180deg, rgba(7, 9, 8, 0.94), rgba(7, 9, 8, 0.28));
  }

  .hero-media::after {
    background:
      linear-gradient(180deg, rgba(4, 7, 6, 0.28), rgba(4, 7, 6, 0.84)),
      linear-gradient(90deg, rgba(4, 7, 6, 0.84), rgba(4, 7, 6, 0.42));
  }

  .hero,
  .hero-pricing {
    min-height: clamp(620px, 92svh, 760px);
    padding-top: var(--header-height);
  }

  body[data-page="home"] .hero {
    min-height: clamp(660px, 96svh, 820px);
  }

  body[data-page="kgolf"] .hero {
    min-height: clamp(620px, 90svh, 760px);
  }

  body[data-page="pricing"] .hero,
  body[data-page="booking"] .hero,
  body[data-page="location"] .hero {
    min-height: clamp(600px, 88svh, 720px);
  }

  .hero::after {
    height: 112px;
  }

  .hero-content {
    width: calc(100vw - 28px);
    margin-left: 14px;
    padding-bottom: 2rem;
  }

  .hero-home .hero-content {
    width: calc(100vw - 28px);
  }

  .brand-logo {
    width: 132px;
  }

  .lang-switcher {
    position: relative;
  }

  .lang-trigger {
    min-height: 38px;
    padding: 0 12px;
    gap: 8px;
    font-size: 0.68rem;
  }

  .lang-menu {
    min-width: 154px;
    right: 0;
  }

  .lang-option {
    min-height: 38px;
    font-size: 0.72rem;
  }

  .hero-title {
    font-size: clamp(1.47rem, 7.2vw, 2.13rem);
    max-width: 100%;
    line-height: 1.08;
    letter-spacing: -0.025em;
  }

  .hero-copy,
  .section-copy {
    font-size: 0.96rem;
  }

  .hero-copy {
    margin-top: 18px;
    max-width: 17.5rem;
    font-size: 0.9rem;
  }

  .hero-actions {
    margin-top: 24px;
    gap: 10px;
  }

  .button {
    width: 100%;
    min-height: 50px;
    padding: 0 20px;
    font-size: 0.92rem;
  }

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

  .hero-actions .button {
    min-width: 0;
  }

  .action-link {
    width: 100%;
    justify-content: space-between;
    padding: 10px 0 2px;
    border-top: 1px solid rgba(247, 243, 234, 0.12);
  }

  .footer-utility-links {
    display: grid;
    gap: 10px;
  }

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

  .quick-facts-inline {
    gap: 0;
  }

  .quick-facts-inline .quick-fact {
    padding-left: 0;
    padding-right: 0;
    background: transparent;
  }

  .section {
    padding: var(--section-space) 0;
  }

  .section-head {
    margin-bottom: 24px;
  }

  .section-title {
    max-width: 100%;
    font-size: clamp(2.3rem, 10.8vw, 3.25rem);
    line-height: 1.02;
  }

  .section-copy {
    margin-top: 14px;
  }

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

  .feature-list {
    margin-top: 20px;
  }

  .feature-list li {
    gap: 10px;
    padding: 14px 0;
  }

  body[data-page="kgolf"] .hero-title {
    font-size: clamp(2.35rem, 11.8vw, 3.7rem);
  }

  body[data-page="kgolf"] .hero-copy {
    max-width: 17rem;
    font-size: 0.9rem;
  }

  body:not([data-page="home"]) .hero-title {
    font-size: clamp(1.33rem, 6.53vw, 1.97rem);
    max-width: 100%;
    width: auto;
  }

  body:not([data-page="home"]) .hero-title span,
  body:not([data-page="home"]) .hero-title em {
    white-space: nowrap;
  }

  body[data-page="pricing"] .hero-copy,
  body[data-page="booking"] .hero-copy,
  body[data-page="location"] .hero-copy {
    max-width: 16rem;
  }

  body[data-page="kgolf"] .hero-actions {
    gap: 10px;
  }

  .quick-facts {
    gap: 10px;
  }

  .quick-fact {
    padding: 14px 0 16px;
    background: transparent;
  }

  .quick-fact strong {
    font-size: 1rem;
  }

  .media-frame.tall,
  .media-frame.medium,
  .media-frame.short {
    min-height: 260px;
  }

  .map-frame iframe {
    min-height: 320px;
  }

  .mode-grid,
  .stat-grid,
  .timeline,
  .dual-board {
    gap: 18px;
  }

  .mode {
    gap: 12px;
  }

  .mode-caption strong {
    font-size: 1rem;
  }

  .mode-caption span,
  .policy-list li,
  .row-item span {
    font-size: 0.92rem;
  }

  .board {
    border-radius: 22px;
  }

  .board-head {
    gap: 16px;
    padding: 18px 18px 16px;
  }

  .board-head strong {
    font-size: 1.35rem;
  }

  .row-item {
    gap: 10px;
    padding: 16px 18px;
  }

  .price-main {
    font-size: clamp(2.1rem, 12vw, 2.9rem);
  }

  .price-note {
    white-space: normal;
    line-height: 1.35;
    padding-bottom: 0;
  }

  .pricing-note,
  .legal-note {
    margin-top: 12px;
    font-size: 0.82rem;
  }

  .cta-banner {
    min-height: 340px;
  }

  .cta-content {
    padding: 20px 18px;
  }

  .cta-content p {
    margin-bottom: 18px;
  }

  .policy-list {
    gap: 8px;
    margin-top: 20px;
  }

  .policy-list li {
    padding: 12px 0;
  }

  .site-footer {
    padding: 30px 0 34px;
  }

  .footer-shell {
    gap: 18px;
  }

  .footer-top {
    gap: 14px;
    padding-bottom: 0;
  }

  .footer-logo {
    width: 138px;
  }

  .footer-label {
    margin-bottom: 8px;
  }

  .footer-mini-link {
    justify-content: space-between;
  }

  .footer-mini-link::after {
    width: 20px;
  }

  .footer-grid {
    padding: 18px 0 12px;
    gap: 16px;
  }

  .footer-stack {
    gap: 8px;
  }

  .footer-contact-link {
    font-size: 0.88rem;
  }

  .footer-note {
    font-size: 0.8rem;
  }

  .board-head,
  .row-item,
  .feature-list li {
    display: grid;
    grid-template-columns: 1fr;
  }

  .price {
    justify-items: start;
    text-align: left;
  }

  .price-note {
    padding-bottom: 0;
  }

  .row-item span,
  .feature-list li span {
    text-align: left;
  }

  .feature-list li strong,
  .feature-list li span,
  .policy-list li,
  .footer-contact-link,
  .inline-contact-link,
  .footer-note {
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  body[data-page="location"] .feature-list li span {
    max-width: none;
    overflow-wrap: anywhere;
    word-break: break-word;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .button,
  .site-header,
  .site-nav a::after {
    transition: none;
  }
}

:where(.site-header, .page-main > section:not(.hero), .site-footer) :where(*:not(em):not(i)) {
  font-weight: 300 !important;
}
