:root {
  --bg: #fbfaf7;
  --bg-soft: #f3f0ea;
  --ink: #161514;
  --ink-2: #0f0e0d;
  --sub: #5c554b;
  --sub-2: #8a8378;
  --line: #e6e1d8;
  --accent: #b85c39;
  --accent-dark: #9e4e30;
  --accent-light: #e0a082;
  --white: #fff;
  --serif: "Cormorant", Georgia, serif;
  --sans: "Pretendard", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --container: 1180px;
  --wide: 1340px;
  --side: clamp(22px, 6vw, 90px);
  --section: clamp(84px, 11vw, 150px);
  --header-h: 64px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  min-width: 320px;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  word-break: keep-all;
  text-wrap: pretty;
}

body.no-scroll {
  overflow: hidden;
}

body.is-leaving .page-fade {
  opacity: 1;
  pointer-events: auto;
}

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

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

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

::selection {
  background: var(--accent);
  color: var(--white);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.loader,
.page-fade {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  background: var(--ink);
  color: var(--bg);
  transition: opacity 0.65s ease, visibility 0.65s ease;
}

.loader {
  opacity: 1;
  visibility: visible;
}

body.is-loaded .loader {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.page-fade {
  opacity: 0;
  visibility: visible;
  pointer-events: none;
}

.loader__logo {
  font-family: var(--serif);
  font-size: 46px;
  font-weight: 500;
  animation: pulse 1.6s ease-in-out infinite;
}

.loader__bar {
  width: 120px;
  height: 1px;
  margin: 20px auto 0;
  overflow: hidden;
  background: rgba(251, 250, 247, 0.25);
}

.loader__bar::before {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--accent);
  content: "";
  transform-origin: left;
  animation: loadbar 1.2s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.42;
  }
  50% {
    opacity: 1;
  }
}

@keyframes loadbar {
  0% {
    transform: scaleX(0);
  }
  100% {
    transform: scaleX(1);
  }
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: var(--section) var(--side);
}

.container--wide {
  max-width: var(--wide);
}

.section-kicker {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 48px;
}

.section-kicker__index {
  color: var(--accent);
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1;
}

.section-kicker__line {
  width: 34px;
  height: 1px;
  background: var(--line);
}

.section-kicker__label {
  color: var(--sub-2);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
}

.section-kicker--dark .section-kicker__index {
  color: var(--accent-light);
}

.section-kicker--dark .section-kicker__line {
  background: rgba(255, 255, 255, 0.22);
}

.section-kicker--dark .section-kicker__label {
  color: rgba(255, 255, 255, 0.56);
}

.section-title {
  margin: 0;
  font-size: clamp(2rem, 3.25rem, 3.25rem);
  font-weight: 650;
  line-height: 1.32;
}

.section-copy {
  margin: 28px 0 0;
  color: var(--sub);
  font-size: 16px;
  line-height: 2;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 80;
  height: var(--header-h);
  color: var(--white);
  transition: background 0.35s ease, box-shadow 0.35s ease, color 0.35s ease;
}

.site-header.is-scrolled,
.site-header.is-open,
.policy-page .site-header {
  color: var(--ink);
  background: rgba(251, 250, 247, 0.92);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(12px);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--wide);
  height: 100%;
  margin: 0 auto;
  padding: 0 clamp(18px, 4vw, 46px);
}

.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 7px;
}

.brand__name {
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 500;
}

.brand__place {
  font-size: 9px;
  font-weight: 700;
  opacity: 0.7;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0 20px;
  font-size: 14px;
  font-weight: 700;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn--ghost {
  border-color: currentColor;
  background: transparent;
  color: currentColor;
}

.btn--accent {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--white);
}

.btn--accent:hover,
.btn--accent:focus-visible {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
}

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

.btn--dark:hover,
.btn--dark:focus-visible {
  background: var(--accent);
  border-color: var(--accent);
}

.menu-toggle {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 0;
  background: transparent;
  color: currentColor;
}

.menu-toggle__lines {
  display: grid;
  gap: 5px;
  width: 24px;
}

.menu-toggle__lines span {
  height: 2px;
  background: currentColor;
}

.menu-toggle__lines span:last-child {
  width: 16px;
  justify-self: end;
}

.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: flex;
  flex-direction: column;
  visibility: hidden;
  background: var(--ink);
  color: var(--white);
  opacity: 0;
  transition: opacity 0.45s ease, visibility 0.45s ease;
}

.menu-overlay.is-open {
  visibility: visible;
  opacity: 1;
}

.menu-overlay__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  max-width: var(--wide);
  width: 100%;
  margin: 0 auto;
  padding: 0 clamp(18px, 4vw, 46px);
}

.menu-close {
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  color: var(--white);
  font-size: 34px;
  font-weight: 200;
  line-height: 1;
}

.menu-overlay__nav {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  max-width: var(--wide);
  margin: 0 auto;
  padding: 0 var(--side);
}

.menu-overlay__nav a {
  display: inline-flex;
  align-items: baseline;
  gap: 12px;
  width: max-content;
  max-width: 100%;
  color: rgba(255, 255, 255, 0.92);
  font-family: var(--serif);
  font-size: clamp(2.25rem, 4rem, 4rem);
  line-height: 1.15;
  transition: color 0.25s ease, transform 0.25s ease;
}

.menu-overlay__nav a:hover,
.menu-overlay__nav a:focus-visible {
  color: var(--accent-light);
  transform: translateX(14px);
}

.menu-overlay__nav span {
  color: rgba(255, 255, 255, 0.44);
  font-family: var(--sans);
  font-size: 14px;
}

.menu-overlay__bottom {
  width: 100%;
  max-width: var(--wide);
  margin: 0 auto;
  padding: 0 var(--side) clamp(32px, 5vw, 52px);
}

.hero {
  position: relative;
  display: grid;
  min-height: 560px;
  height: 100svh;
  place-items: center;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
  text-align: center;
}

.hero__media {
  position: absolute;
  inset: 0;
  will-change: transform;
}

.hero__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 14, 13, 0.44), rgba(15, 14, 13, 0.1) 38%, rgba(15, 14, 13, 0.68));
  content: "";
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 0 24px;
}

.hero__eyebrow {
  margin: 0 0 28px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  opacity: 0.86;
}

.hero h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(4rem, 9rem, 9rem);
  font-weight: 500;
  line-height: 0.96;
}

.hero__copy {
  margin: 30px auto 0;
  max-width: 620px;
  font-size: 19px;
  font-weight: 300;
  line-height: 1.85;
  opacity: 0.94;
}

.scroll-cue {
  position: absolute;
  bottom: 34px;
  left: 50%;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  border: 0;
  background: transparent;
  color: var(--white);
  transform: translateX(-50%);
}

.scroll-cue span:first-child {
  font-size: 10px;
  font-weight: 600;
  opacity: 0.72;
}

.scroll-cue span:last-child {
  width: 1px;
  height: 46px;
  background: rgba(255, 255, 255, 0.58);
  animation: cue 2.4s cubic-bezier(0.6, 0, 0.2, 1) infinite;
}

@keyframes cue {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }
  45% {
    transform: scaleY(1);
    transform-origin: top;
  }
  55% {
    transform: scaleY(1);
    transform-origin: bottom;
  }
  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}

.intro-grid,
.location-grid,
.pricing-grid {
  display: grid;
  gap: clamp(40px, 6vw, 90px);
  align-items: start;
}

.intro-grid {
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(72px, 10vw, 132px);
  align-items: center;
}

.location-grid {
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
}

.pricing-grid {
  grid-template-columns: 0.85fr 1.15fr;
}

.highlight {
  background-image: linear-gradient(180deg, #eac9b7, #eac9b7);
  background-position: 0 88%;
  background-repeat: no-repeat;
  background-size: 0% 34%;
}

.intro-image {
  position: relative;
  justify-self: end;
  width: min(100%, 590px);
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--bg-soft);
}

.intro-image picture {
  position: absolute;
  inset: 0;
  display: block;
}

.intro-image img {
  position: absolute;
  top: -9%;
  left: 0;
  width: 100%;
  height: 118%;
  object-fit: cover;
}

.quote {
  margin-top: 36px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
  color: #7a7264;
  font-family: var(--serif);
  font-size: 20px;
  font-style: italic;
}

.dark-section {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.dark-section .section-copy {
  color: rgba(255, 255, 255, 0.64);
}

.drift-word {
  position: absolute;
  color: rgba(255, 255, 255, 0.045);
  font-family: var(--serif);
  font-size: clamp(7rem, 16rem, 16rem);
  font-weight: 500;
  line-height: 1;
  pointer-events: none;
  white-space: nowrap;
}

.drift-word--left {
  top: 8%;
  left: 0;
}

.drift-word--right {
  right: 0;
  bottom: 4%;
}

.stats {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: clamp(30px, 5vw, 56px);
  margin-top: 56px;
}

.stat__value {
  color: var(--white);
  font-family: var(--serif);
  font-size: clamp(4rem, 5.25rem, 5.25rem);
  line-height: 0.9;
}

.stat__value small {
  color: var(--accent-light);
  font-size: 0.38em;
}

.stat__label {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 12px;
}

.stat-divider {
  width: 1px;
  height: 78px;
  background: rgba(255, 255, 255, 0.14);
}

.amenity-wrap {
  margin-top: 42px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.amenity-title {
  margin: 0 0 20px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 15px;
}

.amenity-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.amenity-card {
  min-height: 146px;
  padding: 26px 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0;
  background: #1e1c1a;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.amenity-card:hover,
.amenity-card:focus-within {
  border-color: rgba(224, 160, 130, 0.65);
  transform: translateY(-4px);
}

.amenity-card__no {
  display: block;
  margin-bottom: 18px;
  color: var(--accent-light);
  font-family: var(--serif);
  font-size: 22px;
}

.amenity-card__title {
  display: block;
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.45;
}

.price-sticky {
  position: sticky;
  top: 96px;
}

.price-label {
  margin-bottom: 12px;
  color: var(--sub-2);
  font-size: 13px;
}

.price-number {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.price-number strong {
  font-family: var(--serif);
  font-size: clamp(4rem, 5.75rem, 5.75rem);
  font-weight: 500;
  line-height: 0.9;
}

.price-number span {
  color: var(--sub);
  font-size: 24px;
  font-weight: 700;
}

.price-list {
  display: flex;
  flex-direction: column;
}

.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
}

.price-row:last-child {
  border-bottom: 1px solid var(--line);
}

.price-row h3 {
  margin: 0 0 5px;
  font-size: 17px;
}

.price-row p {
  margin: 0;
  color: var(--sub-2);
  font-size: 13px;
}

.price-row__value {
  flex-shrink: 0;
  font-size: 20px;
  font-weight: 800;
}

.refund {
  margin-top: 46px;
}

.refund h3 {
  margin: 0 0 18px;
  color: var(--sub-2);
  font-size: 13px;
  font-weight: 500;
}

.refund-table {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.refund-table div {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 16px 18px;
  background: var(--bg);
  color: var(--sub);
  font-size: 14px;
}

.refund-table div:last-child {
  grid-column: 1 / -1;
}

.refund-table strong {
  color: var(--ink);
}

.gallery-section {
  background: var(--bg-soft);
}

.gallery-section .section-title {
  margin-bottom: clamp(46px, 6vw, 76px);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(10px, 1.2vw, 16px);
}

.gallery-tile {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 0;
  padding: 0;
  appearance: none;
  background: #e9e3d8;
  color: var(--white);
  line-height: 0;
  isolation: isolate;
}

.gallery-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.gallery-tile::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent 35%, rgba(15, 14, 13, 0.72));
  content: "";
}

.gallery-tile:hover img,
.gallery-tile:focus-visible img {
  transform: scale(1.06);
}

.gallery-caption {
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
  padding: 18px;
  line-height: 1.2;
  text-align: left;
}

.gallery-caption__no {
  color: var(--accent-light);
  font-family: var(--serif);
  font-size: 22px;
}

.gallery-caption__label {
  font-size: 12px;
  font-weight: 700;
}

.faq {
  max-width: 920px;
}

#faq .container {
  padding-bottom: clamp(22px, 2.8vw, 28px);
}

#location .container {
  padding-top: clamp(22px, 2.8vw, 28px);
}

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

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

.faq-question {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 18px;
  padding: 26px 4px;
  border: 0;
  background: transparent;
  color: var(--ink);
  text-align: left;
}

.faq-question__no {
  flex: 0 0 24px;
  color: var(--accent);
  font-family: var(--serif);
  font-size: 16px;
}

.faq-question__text {
  flex: 1;
  font-size: 18px;
  font-weight: 700;
}

.faq-question__icon {
  color: var(--accent);
  font-size: 24px;
  font-weight: 300;
  transition: transform 0.3s ease;
}

.faq-item.is-open .faq-question__icon {
  transform: rotate(45deg);
}

.faq-answer {
  display: none;
  max-width: 680px;
  padding: 0 4px 30px 42px;
  color: var(--sub);
  font-size: 16px;
  line-height: 1.95;
}

.faq-item.is-open .faq-answer {
  display: block;
}

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

.location-row {
  display: flex;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.location-row dt {
  flex: 0 0 80px;
  color: var(--sub-2);
  font-size: 13px;
}

.location-row dd {
  margin: 0;
  color: #3a352e;
  font-size: 15px;
  line-height: 1.7;
}

.location-row small {
  color: var(--sub-2);
  font-size: 13px;
}

.map-panel {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #eae4d9;
}

.map-panel iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.reservation {
  position: relative;
  z-index: 1;
}

.reservation .section-copy {
  margin-bottom: clamp(34px, 4vw, 54px);
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 60px;
}

.contact-card {
  min-height: 160px;
  padding: 30px 24px;
  border: 0;
  border-radius: 0;
  text-align: left;
  transition: transform 0.25s ease;
}

.contact-card:hover,
.contact-card:focus-visible {
  transform: translateY(-4px);
}

.contact-card small {
  display: block;
  margin-bottom: 8px;
  font-family: var(--serif);
  font-size: 15px;
}

.contact-card strong {
  display: block;
  font-size: 20px;
}

.contact-card span {
  display: block;
  margin-top: 6px;
  font-size: 13px;
}

.contact-card--call {
  background: var(--bg);
  color: var(--ink);
}

.contact-card--call small {
  color: var(--accent);
}

.contact-card--call span {
  color: var(--sub-2);
}

.contact-card--naver {
  background: #03c75a;
  color: var(--white);
}

.contact-card--naver small,
.contact-card--naver span {
  color: rgba(255, 255, 255, 0.84);
}

.inquiry-form {
  padding-top: 50px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.inquiry-form__title {
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 13px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}

.field,
.textarea {
  width: 100%;
  min-height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0;
  outline: 0;
  background: transparent;
  color: var(--white);
  font-size: 15px;
  padding: 15px 18px;
}

.textarea {
  min-height: 110px;
  resize: vertical;
}

.field::placeholder,
.textarea::placeholder {
  color: rgba(255, 255, 255, 0.42);
}

.field:focus,
.textarea:focus {
  border-color: var(--accent-light);
}

.form-stack {
  display: grid;
  gap: 14px;
}

.inquiry-form .btn {
  border-radius: 0;
}

.site-footer {
  background: var(--ink-2);
  color: rgba(255, 255, 255, 0.7);
}

.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: clamp(56px, 7vw, 90px) var(--side) 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px 40px;
  padding-bottom: 54px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
  color: var(--white);
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 500;
}

.footer-copy {
  max-width: 320px;
  margin: 18px 0 26px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  line-height: 1.85;
}

.socials {
  display: flex;
  gap: 10px;
}

.socials a {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transition: background 0.25s ease, border-color 0.25s ease;
}

.socials a:hover,
.socials a:focus-visible {
  background: var(--accent);
  border-color: var(--accent);
}

.footer-title {
  margin: 0 0 20px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 12px;
  text-transform: uppercase;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 13px;
  font-size: 14px;
}

.footer-links a,
.footer-link-button {
  color: rgba(255, 255, 255, 0.66);
  transition: color 0.2s ease;
}

.footer-link-button {
  border: 0;
  background: transparent;
  padding: 0;
  text-align: left;
}

.footer-links a:hover,
.footer-links a:focus-visible,
.footer-link-button:hover,
.footer-link-button:focus-visible {
  color: var(--white);
}

.business {
  padding: 26px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.business__toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.56);
  padding: 0;
  font-size: 13px;
}

.business__toggle span {
  transition: transform 0.25s ease;
}

.business.is-open .business__toggle span {
  transform: rotate(180deg);
}

.business__content {
  display: none;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  line-height: 1.7;
}

.business.is-open .business__content {
  display: block;
}

.business-list {
  display: grid;
  gap: 0;
  width: min(100%, 760px);
  margin: 0;
  padding: 4px 0 0;
}

.business-row {
  display: grid;
  grid-template-columns: 136px minmax(0, 1fr);
  gap: 22px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  text-align: left;
}

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

.business-row dt,
.business-row dd {
  margin: 0;
}

.business-row dt {
  color: rgba(255, 255, 255, 0.36);
  font-weight: 600;
}

.business-row dd {
  color: rgba(255, 255, 255, 0.68);
}

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

.copyright {
  color: rgba(255, 255, 255, 0.36);
  font-size: 12px;
}

.policy-links {
  display: flex;
  gap: 22px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  padding: clamp(20px, 5vw, 64px);
  background: rgba(15, 14, 13, 0.94);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.34s ease, visibility 0.34s ease;
}

.lightbox.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.lightbox__stage {
  position: relative;
  width: min(92vw, 1040px);
  opacity: 0;
  transform: translateY(14px) scale(0.965);
  transition: opacity 0.42s ease, transform 0.42s cubic-bezier(0.2, 0.75, 0.22, 1);
}

.lightbox.is-open .lightbox__stage {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.lightbox__image {
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
  background: #201e1b;
}

.lightbox__counter {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
  text-align: center;
}

.lightbox__close,
.lightbox__nav {
  position: absolute;
  border: 0;
  background: transparent;
  color: var(--white);
  opacity: 0.72;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.lightbox__close:hover,
.lightbox__close:focus-visible,
.lightbox__nav:hover,
.lightbox__nav:focus-visible {
  opacity: 1;
}

.lightbox__close {
  top: 24px;
  right: 28px;
  width: 32px;
  height: 32px;
  padding: 0;
  font-size: 25px;
  font-weight: 200;
  line-height: 1;
}

.lightbox__nav {
  top: 50%;
  width: 32px;
  height: 58px;
  padding: 0;
  font-size: 30px;
  font-weight: 200;
  line-height: 1;
  transform: translateY(-50%);
}

.lightbox__nav:hover,
.lightbox__nav:focus-visible {
  transform: translateY(-50%) scale(1.06);
}

.lightbox__nav--prev {
  left: 28px;
}

.lightbox__nav--next {
  right: 28px;
}

.top-button {
  position: fixed;
  right: clamp(16px, 2.4vw, 30px);
  bottom: clamp(16px, 2.4vw, 30px);
  z-index: 70;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  width: 52px;
  height: 52px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(22, 21, 20, 0.86);
  color: var(--white);
  text-align: center;
  backdrop-filter: blur(6px);
  transition: background 0.25s ease, opacity 0.25s ease;
}

.top-button:hover,
.top-button:focus-visible {
  background: var(--accent);
}

.top-button span:first-child {
  display: block;
  font-size: 14px;
  line-height: 1;
}

.top-button span:last-child {
  display: block;
  font-size: 9px;
  font-weight: 700;
  line-height: 1;
}

.policy-hero {
  padding: calc(var(--header-h) + 58px) var(--side) 56px;
  background: var(--bg);
}

.policy-hero__inner,
.policy-content,
.policy-footer__inner {
  max-width: 880px;
  margin: 0 auto;
}

.policy-label {
  margin: 0 0 16px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.policy-hero h1 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 2.75rem, 2.75rem);
  line-height: 1.25;
}

.policy-date {
  margin: 0;
  color: var(--sub-2);
  font-size: 14px;
}

.policy-content {
  padding: 0 var(--side) 90px;
}

.policy-content > p {
  margin: 0 0 40px;
  color: var(--sub);
  font-size: 15px;
  line-height: 2;
}

.policy-content section {
  margin-top: 42px;
}

.policy-content h2 {
  margin: 0 0 16px;
  padding-left: 14px;
  border-left: 3px solid var(--accent);
  font-size: 21px;
  line-height: 1.35;
}

.policy-content p,
.policy-content li {
  color: var(--sub);
  font-size: 15px;
  line-height: 1.95;
}

.policy-content ul {
  margin: 0;
  padding-left: 20px;
}

.policy-box {
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--bg-soft);
  color: var(--sub);
  font-size: 14px;
  line-height: 1.9;
}

.policy-table {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--bg-soft);
}

.policy-table div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 20px;
  border-bottom: 1px solid var(--line);
  color: var(--sub);
  font-size: 14.5px;
}

.policy-table div:last-child {
  border-bottom: 0;
}

.policy-footer {
  background: var(--ink-2);
  color: rgba(255, 255, 255, 0.56);
}

.policy-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  padding: 40px var(--side);
}

.policy-footer nav {
  display: flex;
  gap: 22px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}

@media (max-width: 760px) {
  :root {
    --side: 22px;
    --section: 88px;
  }

  .desktop-only {
    display: none;
  }

  .section-kicker {
    margin-bottom: 34px;
  }

  .section-title,
  .hero h1,
  .menu-overlay__nav a,
  .price-number strong,
  .stat__value,
  .drift-word {
    font-size: revert;
  }

  .section-title {
    font-size: 34px;
  }

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

  .hero__copy {
    font-size: 16px;
  }

  .menu-overlay__nav a {
    width: 100%;
    font-size: 40px;
  }

  .intro-grid,
  .location-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .intro-title br:first-child,
  .intro-title br:nth-child(2) {
    display: none;
  }

  .stat-divider {
    display: none;
  }

  .stat__value {
    font-size: 64px;
  }

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

  .amenity-card {
    min-height: 128px;
    padding: 22px 16px;
  }

  .price-sticky {
    position: static;
  }

  .price-number strong {
    font-size: 64px;
  }

  .price-row {
    flex-wrap: wrap;
  }

  .refund-table {
    grid-template-columns: 1fr;
  }

  .gallery-caption {
    display: block;
    padding: 14px;
  }

  .gallery-caption__label {
    display: block;
    margin-top: 4px;
  }

  #faq .faq-list {
    margin-top: 30px;
  }

  #faq .container {
    padding-bottom: 64px;
  }

  #location .container {
    padding-top: 64px;
  }

  .faq-question {
    padding: 22px 4px;
  }

  .faq-question__text {
    font-size: 16px;
  }

  .contact-cards,
  .form-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    gap: 34px;
  }

  .business-row {
    grid-template-columns: 104px minmax(0, 1fr);
    gap: 14px;
    padding: 10px 0;
  }

  .lightbox__nav {
    top: auto;
    bottom: 18px;
    transform: none;
  }

  .policy-content,
  .policy-hero {
    padding-left: 22px;
    padding-right: 22px;
  }
}

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