:root {
  --ink: #090909;
  --ink-soft: #121110;
  --paper: #e9e5dd;
  --paper-soft: #c8c2b8;
  --line: rgba(233, 229, 221, 0.2);
  --navy: #23384e;
  --rose: #b66b7d;
  --gold: #b5955e;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--ink);
  color: var(--paper);
  font-family: "Helvetica Neue", "Apple SD Gothic Neo", "Noto Sans KR", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  word-break: keep-all;
}

body.menu-open {
  overflow: hidden;
}

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

button {
  color: inherit;
  font: inherit;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 100;
  padding: 0.75rem 1rem;
  transform: translateY(-160%);
  background: var(--paper);
  color: var(--ink);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  width: 100%;
  height: 6.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3.25rem;
  border-bottom: 1px solid transparent;
  transition:
    height 400ms var(--ease),
    background 400ms ease,
    border-color 400ms ease;
}

.site-header.is-scrolled {
  height: 5rem;
  background: rgba(9, 9, 9, 0.88);
  border-color: var(--line);
  backdrop-filter: blur(18px);
}

.wordmark,
.footer-wordmark {
  display: flex;
  flex-direction: column;
  font-size: .875rem;
  font-weight: 700;
  letter-spacing: 0.19em;
  line-height: 0.95;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
  font-size: .875rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.desktop-nav a {
  position: relative;
  padding: 0.4rem 0;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  transform: scaleX(0);
  transform-origin: right;
  background: currentColor;
  transition: transform 350ms var(--ease);
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.desktop-nav .nav-contact {
  padding: 0.7rem 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 999px;
}

.desktop-nav .nav-contact::after {
  display: none;
}

.menu-button {
  display: none;
  align-items: center;
  gap: 0.7rem;
  padding: 0.5rem 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-button__label {
  font-size: .875rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.menu-button__icon,
.menu-button__icon::before {
  display: block;
  width: 1.35rem;
  height: 1px;
  background: currentColor;
  transition: transform 350ms var(--ease);
}

.menu-button__icon {
  position: relative;
}

.menu-button__icon::before {
  content: "";
  position: absolute;
  top: 0.35rem;
}

.menu-button[aria-expanded="true"] .menu-button__icon {
  transform: rotate(45deg);
}

.menu-button[aria-expanded="true"] .menu-button__icon::before {
  top: 0;
  transform: rotate(-90deg);
}

.mobile-menu {
  position: fixed;
  z-index: 40;
  inset: 0;
  display: none;
  flex-direction: column;
  justify-content: center;
  padding: 7rem 1.5rem 2.5rem;
  visibility: hidden;
  opacity: 0;
  background: #0c0c0c;
  transition:
    opacity 350ms ease,
    visibility 350ms ease;
}

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

.mobile-menu nav {
  border-top: 1px solid var(--line);
}

.mobile-menu nav a {
  display: grid;
  grid-template-columns: 2.5rem 1fr;
  align-items: baseline;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--line);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.7rem, 8vw, 3rem);
}

.mobile-menu nav a span {
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #8b867f;
  font-size: .875rem;
  letter-spacing: 0.12em;
}

.mobile-menu > p {
  margin: auto 0 0;
  color: #969089;
  font-size: .875rem;
  letter-spacing: 0.18em;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 9rem 3.25rem 7.5rem;
  isolation: isolate;
}

.hero__image,
.hero__veil {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__image {
  z-index: -3;
  object-fit: cover;
  object-position: center center;
  animation: hero-in 1.8s var(--ease) both;
}

.hero__veil {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.88) 0%, rgba(5, 5, 5, 0.54) 42%, rgba(5, 5, 5, 0.08) 78%),
    linear-gradient(0deg, rgba(5, 5, 5, 0.84) 0%, transparent 45%);
}

.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(110deg, transparent 40%, rgba(181, 149, 94, 0.06));
  pointer-events: none;
}

.hero__meta {
  position: absolute;
  top: 50%;
  right: -2.8rem;
  display: flex;
  gap: 1.5rem;
  transform: rotate(90deg);
  color: rgba(255, 255, 255, 0.65);
  font-size: .875rem;
  letter-spacing: 0.2em;
}

.hero__content {
  width: min(68rem, 86vw);
  animation: content-in 1.2s 250ms var(--ease) both;
}

.eyebrow,
.kicker {
  margin: 0 0 1.8rem;
  color: #bbb4aa;
  font-size: .875rem;
  font-weight: 600;
  letter-spacing: 0.24em;
}

.hero h1 {
  max-width: 15ch;
  margin: 0;
  font-family: Georgia, "Iowan Old Style", "Noto Serif KR", serif;
  font-size: clamp(3.5rem, 7.2vw, 8.3rem);
  font-weight: 400;
  letter-spacing: -0.065em;
  line-height: 0.98;
}

.hero h1 span {
  display: block;
}

.hero h1 span:first-child {
  margin-bottom: 0.18em;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 0.24em;
  font-weight: 500;
  letter-spacing: 0.16em;
}

.hero__lead {
  margin: 2rem 0 0;
  color: #d4cec6;
  font-size: clamp(1rem, 1.25vw, 1.25rem);
  line-height: 1.75;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 2.3rem;
}

.button {
  min-height: 3.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.4rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: .875rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition:
    background 300ms ease,
    color 300ms ease,
    border-color 300ms ease,
    transform 300ms var(--ease);
}

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

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

.button--light:hover {
  background: #fff;
}

.button--outline {
  border-color: rgba(233, 229, 221, 0.38);
  background: transparent;
}

.button--outline:hover {
  border-color: var(--paper);
  background: var(--paper);
  color: var(--ink);
}

.text-link {
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.38);
  font-size: .875rem;
}

.text-link span {
  display: inline-block;
  margin-left: 0.45rem;
  transition: transform 300ms var(--ease);
}

.text-link:hover span {
  transform: translateY(4px);
}

.location-ribbon {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  background: rgba(8, 8, 8, 0.36);
  backdrop-filter: blur(12px);
}

.location-ribbon__item {
  position: relative;
  padding: 1rem 3.25rem;
  border-right: 1px solid var(--line);
  font-size: .875rem;
  letter-spacing: 0.2em;
}

.location-ribbon__item::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: 1px;
}

.location-ribbon__item--sinsa::before {
  background: var(--navy);
}

.location-ribbon__item--seongsu::before {
  background: var(--rose);
}

.location-ribbon__item--hannam::before {
  background: var(--gold);
}

.section {
  padding: clamp(6rem, 10vw, 10rem) 3.25rem;
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr 1.65fr 1fr;
  gap: 4rem;
  align-items: end;
  margin-bottom: clamp(4rem, 8vw, 7rem);
}

.section-heading .kicker {
  align-self: start;
}

.section-heading h2,
.schedule__heading h2,
.spaces-intro h2,
.membership__heading h2,
.guide__heading h2,
.philosophy h2,
.visit h2 {
  margin: 0;
  font-family: Georgia, "Iowan Old Style", "Noto Serif KR", serif;
  font-size: clamp(2.6rem, 5vw, 6.2rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 1.05;
}

.section-heading > p:last-child {
  max-width: 24rem;
  margin: 0;
  color: #99938b;
  font-size: 0.95rem;
}

.practice {
  background:
    radial-gradient(circle at 76% 58%, rgba(181, 149, 94, 0.08), transparent 28rem),
    var(--ink);
}

.practice-finder {
  display: grid;
  grid-template-columns: minmax(21rem, 0.9fr) minmax(28rem, 1.1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.practice-options {
  border-right: 1px solid var(--line);
}

.practice-option {
  width: 100%;
  display: grid;
  grid-template-columns: 3.5rem 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 1.15rem 2rem 1.15rem 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  text-align: left;
  cursor: pointer;
  transition:
    padding 350ms var(--ease),
    background 350ms ease;
}

.practice-option:last-child {
  border-bottom: 0;
}

.practice-option:hover,
.practice-option.is-active {
  padding-left: 1rem;
  background: rgba(255, 255, 255, 0.045);
}

.practice-option__number {
  color: #716c65;
  font-size: .875rem;
  letter-spacing: 0.15em;
}

.practice-option__name {
  font-family: Georgia, "Iowan Old Style", "Noto Serif KR", serif;
  font-size: clamp(1.5rem, 2.8vw, 2.8rem);
  line-height: 1;
}

.practice-option__en {
  color: #8f8981;
  font-size: .875rem;
  letter-spacing: 0.18em;
}

.practice-result {
  min-height: 32rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(2rem, 5vw, 4.5rem);
}

.practice-result__top {
  display: flex;
  justify-content: space-between;
  color: #938d84;
  font-size: .875rem;
  letter-spacing: 0.13em;
}

.practice-result__label {
  margin: 2.5rem 0 0.85rem;
  color: var(--gold);
  font-size: .875rem;
  font-weight: 600;
}

.practice-result h3 {
  margin: 0;
  font-family: Georgia, "Iowan Old Style", "Noto Serif KR", serif;
  font-size: clamp(2.3rem, 4vw, 4.8rem);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 1.08;
}

.practice-result__description {
  max-width: 38rem;
  margin: 1.5rem 0 0;
  color: #aaa49c;
  font-size: 0.95rem;
}

.practice-result__classes {
  margin-top: 3.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.practice-result__classes span {
  color: #827d76;
  font-size: .875rem;
  letter-spacing: 0.14em;
}

.practice-result__classes p {
  margin: 0.45rem 0 0;
  font-size: .875rem;
  letter-spacing: 0.1em;
}

.practice-result__recommendations {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 0.75rem;
  border-top: 1px solid var(--line);
}

.practice-result__recommendations p {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding: 0.85rem 0.8rem 0.85rem 0;
  border-right: 1px solid var(--line);
  line-height: 1.35;
}

.practice-result__recommendations p:last-child {
  padding-left: 0.8rem;
  border-right: 0;
}

.practice-result__recommendations p:nth-child(2) {
  padding-left: 0.8rem;
}

.practice-result__recommendations b {
  color: var(--gold);
  font-size: .875rem;
  font-weight: 600;
  letter-spacing: 0.15em;
}

.practice-result__recommendations span {
  color: var(--paper);
  font-size: .875rem;
  letter-spacing: 0.06em;
}

.practice-result__classes small {
  display: block;
  margin-top: 1rem;
  color: #77726b;
  font-size: .875rem;
  letter-spacing: 0;
}

.schedule {
  background: #e8edf1;
  color: #0b1f3f;
}

.schedule__heading {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 5rem;
  align-items: end;
  margin-bottom: clamp(3.5rem, 7vw, 6rem);
}

.schedule .kicker {
  color: #55718d;
}

.schedule__intro p {
  margin: 0 0 1rem;
  color: #263f59;
}

.schedule__intro small {
  display: block;
  color: #647587;
  font-size: .875rem;
}

.live-schedule-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(11, 31, 63, 0.22);
  border-bottom: 1px solid rgba(11, 31, 63, 0.22);
}

.live-schedule-card {
  position: relative;
  min-height: 14rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem;
  align-items: center;
  padding: 1.5rem;
  border-right: 1px solid rgba(11, 31, 63, 0.22);
  background: rgba(255, 255, 255, 0.35);
  transition: background 240ms ease, transform 300ms var(--ease);
}

.live-schedule-card:last-child {
  border-right: 0;
}

.live-schedule-card:hover,
.live-schedule-card:focus-visible {
  z-index: 1;
  background: #ffffff;
  transform: translateY(-0.25rem);
}

.live-schedule-card img {
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 50%;
  object-fit: cover;
}

.live-schedule-card span {
  display: flex;
  flex-direction: column;
}

.live-schedule-card small {
  color: #687a8b;
  font-size: .875rem;
  letter-spacing: 0.14em;
}

.live-schedule-card b {
  margin-top: 0.25rem;
  font-size: clamp(1.35rem, 2vw, 2rem);
  letter-spacing: 0.04em;
}

.live-schedule-card em {
  color: #566a7d;
  font-size: .875rem;
  font-style: normal;
}

.live-schedule-card i {
  position: absolute;
  right: 1.25rem;
  bottom: 1.1rem;
  color: #55718d;
  font-style: normal;
}

.live-schedule-card--sinsa b { color: #176f9e; }
.live-schedule-card--seongsu b { color: #c92587; }
.live-schedule-card--hannam b { color: #9b762d; }

.schedule-guide-link {
  margin: 1.5rem 0 0;
  color: #647587;
  font-size: .875rem;
  text-align: right;
}

.schedule-guide-link a {
  margin-left: 0.4rem;
  padding-bottom: 0.2rem;
  border-bottom: 1px solid currentColor;
  color: #0b1f3f;
  font-weight: 600;
}

.schedule-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(11, 31, 63, 0.22);
  border-bottom: 1px solid rgba(11, 31, 63, 0.22);
}

.schedule-tab {
  min-height: 7.2rem;
  display: flex;
  gap: 1rem;
  align-items: center;
  padding: 1.1rem 1.4rem;
  border: 0;
  border-right: 1px solid rgba(11, 31, 63, 0.22);
  background: transparent;
  color: #6a7785;
  text-align: left;
  cursor: pointer;
  transition: background 260ms ease, color 260ms ease;
}

.schedule-tab:last-child {
  border-right: 0;
}

.schedule-tab img {
  width: 3.8rem;
  height: 3.8rem;
  border-radius: 50%;
  object-fit: cover;
  filter: grayscale(0.7);
  transition: filter 260ms ease, transform 320ms var(--ease);
}

.schedule-tab span {
  display: flex;
  flex-direction: column;
}

.schedule-tab b {
  font-size: 0.95rem;
  letter-spacing: 0.1em;
}

.schedule-tab em {
  font-size: .875rem;
  font-style: normal;
}

.schedule-tab:hover,
.schedule-tab.is-active {
  background: #ffffff;
  color: #0b1f3f;
}

.schedule-tab.is-active img {
  filter: none;
  transform: scale(1.04);
}

.schedule-viewer {
  --schedule-accent: #1598d4;
  margin-top: 3rem;
}

.schedule-viewer[data-branch="seongsu"] {
  --schedule-accent: #ec32aa;
}

.schedule-viewer[data-branch="hannam"] {
  --schedule-accent: #b58a32;
}

.schedule-viewer__top {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  align-items: center;
  padding-bottom: 1rem;
}

.schedule-viewer__top p {
  display: flex;
  gap: 1rem;
  align-items: baseline;
  margin: 0;
}

.schedule-viewer__top p span {
  color: var(--schedule-accent);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.schedule-viewer__top p b {
  color: #65768a;
  font-size: .875rem;
  letter-spacing: 0.12em;
}

.schedule-viewer__top > a {
  padding-bottom: 0.25rem;
  border-bottom: 1px solid currentColor;
  font-size: .875rem;
  font-weight: 600;
  color: var(--schedule-accent);
}

.schedule-sheets {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.schedule-sheets figure {
  margin: 0;
  padding: 1rem;
  background: #ffffff;
  box-shadow: 0 1.5rem 4rem rgba(11, 31, 63, 0.1);
}

.schedule-sheets figcaption {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.2rem 0 0.9rem;
  color: #647587;
}

.schedule-sheets figcaption span {
  font-size: .875rem;
  letter-spacing: 0.15em;
}

.schedule-sheets figcaption b {
  color: #0b1f3f;
  font-size: .875rem;
}

.schedule-sheets a,
.schedule-sheets img {
  display: block;
  width: 100%;
}

.schedule-sheets a {
  overflow: hidden;
  background: #eef3f7;
}

.schedule-sheets img {
  transition: transform 500ms var(--ease), opacity 180ms ease;
}

.schedule-sheets a:hover img {
  transform: scale(1.012);
}

.schedule-sheets img.is-changing {
  opacity: 0.35;
}

.schedule-viewer__hint {
  margin: 1rem 0 0;
  color: #647587;
  font-size: .875rem;
  text-align: center;
}

.spaces {
  padding-bottom: 0;
  background: #11100f;
}

.spaces-intro {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  align-items: start;
  margin-bottom: clamp(4rem, 8vw, 7rem);
}

.space-list {
  margin: 0 -3.25rem;
}

.space-card {
  min-height: 29rem;
  padding: 2rem 3.25rem 3rem;
  border-top: 1px solid var(--line);
  transition: background 650ms var(--ease);
}

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

.space-card--sinsa:hover {
  background: color-mix(in srgb, var(--navy) 37%, #11100f);
}

.space-card--seongsu:hover {
  background: color-mix(in srgb, var(--rose) 26%, #11100f);
}

.space-card--hannam:hover {
  background: color-mix(in srgb, var(--gold) 23%, #11100f);
}

.space-card__top {
  display: flex;
  justify-content: space-between;
  color: #817b74;
  font-size: .875rem;
  letter-spacing: 0.16em;
}

.space-card__identity {
  display: flex;
  gap: 0.8rem;
  align-items: center;
}

.space-card__identity img {
  width: 3.4rem;
  height: 3.4rem;
  border-radius: 50%;
  object-fit: cover;
}

.space-card__identity b {
  font-size: .875rem;
  font-weight: 400;
}

.space-card__body {
  min-height: 22rem;
  display: grid;
  grid-template-columns: 1.5fr 1fr 0.75fr;
  gap: 4rem;
  align-items: end;
}

.space-card__body > div > p {
  margin: 0 0 1rem;
  color: #aaa49b;
  font-size: .875rem;
}

.space-card h3 {
  margin: 0;
  font-size: clamp(4rem, 9vw, 10rem);
  font-weight: 500;
  letter-spacing: -0.07em;
  line-height: 0.8;
}

.space-card__description,
.space-card__tags {
  margin: 0;
  color: #aaa49b;
  font-size: 0.9rem;
}

.space-card__footer {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  align-items: center;
  margin-top: 2rem;
}

.space-card__tags {
  margin: 0;
  text-align: right;
  font-size: .875rem;
  letter-spacing: 0.14em;
}

.space-card__booking {
  flex: none;
  padding-bottom: 0.3rem;
  border-bottom: 1px solid currentColor;
  color: var(--paper);
  font-size: .875rem;
  letter-spacing: 0.04em;
  transition: color 220ms ease;
}

.space-card__booking:hover {
  color: var(--gold);
}

.space-card__facts {
  align-self: end;
  border-top: 1px solid var(--line);
}

.space-card__facts p {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin: 0;
  padding: 0.48rem 0;
  border-bottom: 1px solid var(--line);
  color: #8e8880;
  font-size: .875rem;
}

.space-card__facts b {
  color: #d2ccc3;
  font-weight: 500;
  text-align: right;
}

.membership {
  background: #ded8ce;
  color: var(--ink);
}

.membership__heading {
  display: grid;
  grid-template-columns: 1.7fr 0.7fr;
  gap: 5rem;
  align-items: end;
  margin-bottom: clamp(4rem, 8vw, 7rem);
}

.membership .kicker {
  color: #6f6960;
}

.membership__heading > p {
  max-width: 27rem;
  margin: 0;
  color: #5d5851;
}

.ticket-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid rgba(9, 9, 9, 0.24);
  border-bottom: 1px solid rgba(9, 9, 9, 0.24);
}

.first-practice {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 5rem;
  margin-bottom: 3rem;
  padding: clamp(2rem, 5vw, 4rem);
  background: var(--ink);
  color: var(--paper);
  transition: transform 300ms var(--ease), box-shadow 300ms ease;
}

.first-practice:hover,
.first-practice:focus-visible {
  transform: translateY(-0.25rem);
  box-shadow: 0 1.5rem 4rem rgba(9, 9, 9, 0.16);
}

.first-practice .kicker {
  color: var(--gold);
}

.first-practice h3 {
  margin: 0;
  font-family: Georgia, "Iowan Old Style", "Noto Serif KR", serif;
  font-size: clamp(2.2rem, 4vw, 4.2rem);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 1.08;
}

.first-practice__details {
  align-self: end;
}

.first-practice__price {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin: 0 0 1.5rem;
}

.first-practice__price strong {
  font-size: 1rem;
  font-weight: 500;
}

.first-practice__price b {
  font-size: clamp(1.5rem, 3vw, 2.6rem);
  font-weight: 500;
}

.first-practice dl {
  margin: 0;
  border-top: 1px solid var(--line);
}

.first-practice dl div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--line);
  font-size: .875rem;
}

.first-practice dt { color: #969089; }
.first-practice dd { margin: 0; text-align: right; }

.first-practice__details > p:not(.first-practice__price) {
  margin: 1rem 0;
  color: #9f9990;
  font-size: .875rem;
}

.first-practice__details > span {
  display: flex;
  justify-content: space-between;
  padding-top: 1rem;
  color: var(--gold);
  font-size: .875rem;
  font-weight: 600;
}

.first-practice__details i { font-style: normal; }

.family-ticket-note {
  margin: 1.2rem 0 0;
  color: #625d56;
  font-size: .875rem;
}

.ticket-card {
  position: relative;
  min-height: 24rem;
  display: flex;
  flex-direction: column;
  padding: 1.5rem 1.25rem;
  border-right: 1px solid rgba(9, 9, 9, 0.24);
}

.ticket-card:last-child {
  border-right: 0;
}

.ticket-card--featured {
  background: var(--ink);
  color: var(--paper);
}

.ticket-card__top {
  display: flex;
  justify-content: space-between;
  color: #706a62;
  font-size: .875rem;
  letter-spacing: 0.13em;
}

.ticket-card--featured .ticket-card__top {
  color: #918b82;
}

.ticket-card__badge {
  width: max-content;
  margin: 1.4rem 0 -1rem;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  background: var(--gold);
  color: var(--ink);
  font-size: .875rem;
  font-weight: 600;
}

.ticket-card h3 {
  margin: auto 0 1rem;
  font-family: Georgia, "Iowan Old Style", "Noto Serif KR", serif;
  font-size: 1.55rem;
  font-weight: 400;
}

.ticket-card__price {
  display: flex;
  gap: 0.35rem;
  align-items: baseline;
  margin: 0 0 1.5rem;
}

.ticket-card__price strong {
  font-size: clamp(1.45rem, 2vw, 2rem);
  font-weight: 500;
  letter-spacing: -0.04em;
}

.ticket-card__price span {
  color: #6f6962;
  font-size: .875rem;
}

.ticket-card--featured .ticket-card__price span {
  color: #aaa39a;
}

.ticket-card__note {
  min-height: 3.6rem;
  margin: 0;
  padding-top: 1rem;
  border-top: 1px solid rgba(9, 9, 9, 0.18);
  color: #625d56;
  font-size: .875rem;
}

.ticket-card dl {
  margin: 0;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(9, 9, 9, 0.18);
}

.ticket-card--featured dl {
  border-color: var(--line);
}

.ticket-card dl div {
  display: flex;
  justify-content: space-between;
  padding: 0.35rem 0;
  font-size: .875rem;
}

.ticket-card dt {
  color: #726c64;
}

.ticket-card--featured dt {
  color: #918b83;
}

.ticket-card dd {
  margin: 0;
  font-weight: 500;
}

.private-session {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 5rem;
  align-items: end;
  margin-top: 7rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(9, 9, 9, 0.24);
}

.private-session h3 {
  margin: 0;
  font-family: Georgia, "Iowan Old Style", "Noto Serif KR", serif;
  font-size: clamp(2.4rem, 4vw, 4.5rem);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 1.08;
}

.private-session__rates {
  border-top: 1px solid rgba(9, 9, 9, 0.24);
}

.private-session__rates p {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1rem;
  margin: 0;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(9, 9, 9, 0.24);
  font-size: .875rem;
}

.private-session__rates b,
.private-session__rates em {
  font-style: normal;
  font-weight: 500;
  text-align: right;
}

.private-session__rates em {
  color: #6f6962;
}

.guide {
  background:
    radial-gradient(circle at 10% 50%, rgba(35, 56, 78, 0.17), transparent 35rem),
    #0c0c0c;
}

.guide__heading {
  display: grid;
  grid-template-columns: 0.7fr 2.3fr;
  gap: 4rem;
  margin-bottom: clamp(4rem, 8vw, 7rem);
}

.guide-steps {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.guide-steps li {
  display: grid;
  grid-template-columns: 0.45fr 2fr;
  gap: 3rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--line);
}

.guide-steps > li > span {
  color: var(--gold);
  font-size: .875rem;
  letter-spacing: 0.15em;
}

.guide-steps h3 {
  margin: 0 0 0.65rem;
  font-family: Georgia, "Iowan Old Style", "Noto Serif KR", serif;
  font-size: clamp(1.4rem, 2.5vw, 2.5rem);
  font-weight: 400;
}

.guide-steps p {
  max-width: 43rem;
  margin: 0;
  color: #969089;
}

.policy-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-top: 7rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.policy-grid article {
  min-height: 19rem;
  padding: 1.5rem;
  border-right: 1px solid var(--line);
}

.policy-grid article:last-child {
  border-right: 0;
}

.policy-grid article > span {
  color: #7f7972;
  font-size: .875rem;
  letter-spacing: 0.14em;
}

.policy-grid h3 {
  margin: 4rem 0 1.2rem;
  font-family: Georgia, "Iowan Old Style", "Noto Serif KR", serif;
  font-size: 1.4rem;
  font-weight: 400;
}

.policy-grid p {
  margin: 0.6rem 0 0;
  color: #938d85;
  font-size: .875rem;
}

.policy-grid b {
  color: var(--paper);
  font-weight: 500;
}

.policy-note {
  margin: 1rem 0 0;
  color: #777169;
  font-size: .875rem;
}

.philosophy {
  position: relative;
  display: grid;
  grid-template-columns: 0.7fr 2.3fr;
  gap: 4rem;
  padding-top: clamp(8rem, 13vw, 14rem);
  padding-bottom: clamp(8rem, 13vw, 14rem);
  background: var(--paper);
  color: var(--ink);
}

.philosophy__marker {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  color: #756f66;
  font-size: .875rem;
  letter-spacing: 0.16em;
}

.philosophy .kicker {
  color: #6d675f;
}

.philosophy h2 {
  max-width: 12ch;
}

.philosophy__copy {
  max-width: 48rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 4rem;
  color: #514d47;
}

.philosophy__copy p {
  margin: 0;
}

.philosophy blockquote {
  max-width: 58rem;
  margin: 8rem 0 0;
  padding: 2rem 0 0 4rem;
  border-top: 1px solid rgba(9, 9, 9, 0.22);
  font-family: Georgia, "Iowan Old Style", "Noto Serif KR", serif;
  font-size: clamp(1.6rem, 3.1vw, 3.5rem);
  letter-spacing: -0.045em;
  line-height: 1.35;
}

.manifesto {
  overflow: hidden;
  padding: clamp(5rem, 9vw, 9rem) 3.25rem;
  background: #151311;
}

.manifesto p {
  margin: 0;
  color: transparent;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.4rem, 8.2vw, 10rem);
  font-style: italic;
  letter-spacing: -0.065em;
  line-height: 0.95;
  -webkit-text-stroke: 1px rgba(233, 229, 221, 0.42);
  white-space: nowrap;
}

.manifesto p:nth-child(2) {
  margin-left: 8vw;
  color: var(--paper);
  font-style: normal;
  -webkit-text-stroke: 0;
}

.manifesto p:nth-child(3) {
  margin-left: 17vw;
  -webkit-text-stroke-color: rgba(181, 149, 94, 0.7);
}

.visit {
  background:
    linear-gradient(120deg, transparent, rgba(35, 56, 78, 0.16)),
    var(--ink);
}

.visit__grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 5rem;
  align-items: end;
}

.visit__content {
  padding-bottom: 0.6rem;
}

.visit__content > p:first-child {
  margin: 0 0 2rem;
  color: #a9a39a;
}

.visit__content strong {
  color: var(--paper);
  font-weight: 500;
}

.visit__actions {
  display: flex;
  gap: 1.25rem;
  align-items: center;
  flex-wrap: wrap;
}

.visit__all-links {
  padding-bottom: 0.25rem;
  border-bottom: 1px solid #716b64;
  color: #a9a39a;
  font-size: .875rem;
}

.visit__booking-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 3rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.visit__booking-links a {
  position: relative;
  min-height: 8rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1rem;
  border-right: 1px solid var(--line);
  transition: background 220ms ease;
}

.visit__booking-links a:last-child {
  border-right: 0;
}

.visit__booking-links a:hover {
  background: rgba(255, 255, 255, 0.05);
}

.visit__booking-links span {
  margin-bottom: auto;
  color: #777169;
  font-size: .875rem;
  letter-spacing: 0.14em;
}

.visit__booking-links b {
  font-family: Georgia, "Iowan Old Style", "Noto Serif KR", serif;
  font-size: 1.05rem;
  font-weight: 400;
}

.visit__booking-links i {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  color: var(--gold);
  font-style: normal;
}

.site-footer {
  padding: 4rem 3.25rem 2.5rem;
  border-top: 1px solid var(--line);
  background: var(--ink);
}

.footer-wordmark {
  width: min-content;
  font-size: clamp(3.4rem, 8vw, 8rem);
  letter-spacing: -0.075em;
  line-height: 0.78;
}

.site-footer__meta {
  display: grid;
  grid-template-columns: 0.8fr 2fr 1fr auto;
  gap: 2rem;
  margin-top: 5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  color: #7f7a73;
  font-size: .875rem;
  letter-spacing: 0.14em;
}

.site-footer__meta p {
  margin: 0;
}

.site-footer__meta a:hover {
  color: var(--paper);
}

.mobile-action {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(2.5rem);
  transition:
    opacity 900ms var(--ease),
    transform 900ms var(--ease);
}

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

@keyframes hero-in {
  from {
    transform: scale(1.06);
    filter: brightness(0.55);
  }
  to {
    transform: scale(1);
    filter: brightness(1);
  }
}

@keyframes content-in {
  from {
    opacity: 0;
    transform: translateY(2rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 960px) {
  .site-header {
    height: 5rem;
    padding: 0 1.5rem;
  }

  .desktop-nav {
    display: none;
  }

  .menu-button,
  .mobile-menu {
    display: flex;
  }

  .hero {
    min-height: 100svh;
    padding: 7.5rem 1.5rem 8rem;
  }

  .hero__image {
    object-position: 56% center;
  }

  .hero__veil {
    background:
      linear-gradient(90deg, rgba(5, 5, 5, 0.8), rgba(5, 5, 5, 0.18)),
      linear-gradient(0deg, rgba(5, 5, 5, 0.93) 0%, rgba(5, 5, 5, 0.3) 62%, rgba(5, 5, 5, 0.42));
  }

  .hero__meta {
    display: none;
  }

  .hero__content {
    width: 100%;
  }

  .hero h1 {
    font-size: clamp(3.2rem, 12.5vw, 6rem);
  }

  .location-ribbon__item {
    padding: 0.9rem 1.5rem;
  }

  .section {
    padding-right: 1.5rem;
    padding-left: 1.5rem;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .schedule__heading {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .section-heading .kicker {
    margin-bottom: 1.5rem;
  }

  .practice-finder {
    grid-template-columns: 1fr;
  }

  .practice-options {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .practice-result {
    min-height: 34rem;
  }

  .spaces-intro {
    grid-template-columns: 1fr;
  }

  .space-list {
    margin-right: -1.5rem;
    margin-left: -1.5rem;
  }

  .space-card {
    padding-right: 1.5rem;
    padding-left: 1.5rem;
  }

  .space-card__body {
    grid-template-columns: 1.4fr 1fr;
    gap: 2rem;
  }

  .space-card__facts {
    grid-column: 1 / -1;
  }

  .space-card__tags {
    text-align: left;
  }

  .site-footer__meta {
    grid-template-columns: 1fr 2fr;
  }

  .membership__heading,
  .private-session,
  .first-practice {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

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

  .live-schedule-grid {
    grid-template-columns: 1fr;
  }

  .live-schedule-card,
  .live-schedule-card:last-child {
    min-height: 8rem;
    border-right: 0;
    border-bottom: 1px solid rgba(11, 31, 63, 0.22);
  }

  .live-schedule-card:last-child {
    border-bottom: 0;
  }

  .schedule-guide-link {
    text-align: left;
  }

  .ticket-card {
    border-bottom: 1px solid rgba(9, 9, 9, 0.24);
  }

  .ticket-card:nth-child(2n) {
    border-right: 0;
  }

  .ticket-card:last-child {
    border-right: 1px solid rgba(9, 9, 9, 0.24);
  }

  .guide__heading {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .policy-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .policy-grid article:nth-child(2n) {
    border-right: 0;
  }

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

  .philosophy__marker {
    margin-bottom: 1rem;
  }

  .philosophy blockquote {
    margin-top: 5rem;
    padding-left: 0;
  }

  .manifesto {
    padding-right: 1.5rem;
    padding-left: 1.5rem;
  }

  .visit__grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .site-footer {
    padding-right: 1.5rem;
    padding-left: 1.5rem;
  }
}

@media (max-width: 640px) {
  .hero {
    padding-bottom: 7rem;
  }

  .hero__lead {
    font-size: 0.96rem;
  }

  .hero__actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.8rem;
  }

  .location-ribbon__item {
    padding: 0.85rem 0.45rem;
    text-align: center;
    font-size: .875rem;
    letter-spacing: 0.13em;
  }

  .section {
    padding-top: 6.5rem;
    padding-bottom: 6.5rem;
  }

  .section-heading h2,
  .schedule__heading h2,
  .spaces-intro h2,
  .membership__heading h2,
  .guide__heading h2,
  .philosophy h2,
  .visit h2 {
    font-size: clamp(2.5rem, 12vw, 4.3rem);
  }

  .practice-option {
    grid-template-columns: 2.4rem 1fr auto;
    padding-right: 0.5rem;
  }

  .practice-option__name {
    font-size: 1.7rem;
  }

  .practice-result {
    min-height: 32rem;
    padding: 2rem 1rem;
  }

  .practice-result__recommendations {
    grid-template-columns: 1fr;
  }

  .practice-result__recommendations p,
  .practice-result__recommendations p:nth-child(2),
  .practice-result__recommendations p:last-child {
    padding: 0.65rem 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .schedule-tabs {
    grid-template-columns: 1fr;
  }

  .schedule-tab,
  .schedule-tab:last-child {
    min-height: 5.6rem;
    border-right: 0;
    border-bottom: 1px solid rgba(11, 31, 63, 0.22);
  }

  .schedule-tab:last-child {
    border-bottom: 0;
  }

  .schedule-tab img {
    width: 3rem;
    height: 3rem;
  }

  .schedule-viewer__top {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.7rem;
  }

  .schedule-sheets {
    grid-template-columns: 1fr;
  }

  .schedule-sheets figure {
    padding: 0.7rem;
  }

  .practice-result__recommendations p:last-child {
    border-bottom: 0;
  }

  .space-card {
    min-height: 31rem;
  }

  .space-card__body {
    min-height: 25rem;
    grid-template-columns: 1fr;
    gap: 1.4rem;
  }

  .space-card h3 {
    font-size: clamp(3.8rem, 19vw, 6rem);
  }

  .space-card__tags {
    text-align: left;
  }

  .space-card__footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 1rem;
  }

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

  .ticket-card,
  .ticket-card:nth-child(2n),
  .ticket-card:last-child {
    min-height: 20rem;
    border-right: 0;
  }

  .private-session__rates p {
    grid-template-columns: 1fr 1fr;
  }

  .private-session__rates em {
    grid-column: 2;
  }

  .guide-steps li {
    grid-template-columns: 2.4rem 1fr;
    gap: 0.6rem;
  }

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

  .policy-grid article,
  .policy-grid article:nth-child(2n) {
    min-height: auto;
    padding: 1.5rem 0 2rem;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .policy-grid h3 {
    margin-top: 2rem;
  }

  .philosophy__copy {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 3rem;
  }

  .philosophy blockquote br {
    display: none;
  }

  .manifesto p {
    font-size: clamp(2.5rem, 12.5vw, 4rem);
  }

  .manifesto p:nth-child(2),
  .manifesto p:nth-child(3) {
    margin-left: 0;
  }

  .footer-wordmark {
    font-size: clamp(3.2rem, 18vw, 5rem);
  }

  .site-footer__meta {
    grid-template-columns: 1fr;
    gap: 0.5rem;
    margin-top: 3.5rem;
  }

  .visit__booking-links {
    grid-template-columns: 1fr;
  }

  .visit__booking-links a {
    min-height: 6rem;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .visit__booking-links a:last-child {
    border-bottom: 0;
  }

  body {
    padding-bottom: 4.25rem;
  }

  .mobile-action {
    position: fixed;
    z-index: 35;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(9, 9, 9, 0.94);
    backdrop-filter: blur(14px);
  }

  .mobile-action a {
    min-height: 4.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid rgba(255, 255, 255, 0.16);
    font-size: .875rem;
  }

  .mobile-action a:last-child {
    border-right: 0;
    background: var(--paper);
    color: var(--ink);
    font-weight: 600;
  }
}

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

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

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