:root {
  --bg: #080808;
  --surface: #11110f;
  --surface-2: #171713;
  --text: #f5f0e7;
  --muted: #aaa69e;
  --gold: #d7b879;
  --gold-bright: #f0d89c;
  --line: rgba(245, 240, 231, 0.16);
  --line-strong: rgba(215, 184, 121, 0.38);
  --max: 1200px;
  --radius: 26px;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.38);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Yu Gothic", "Hiragino Kaku Gothic ProN", "Noto Sans CJK JP", Inter, system-ui, sans-serif;
  line-height: 1.75;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.045;
  z-index: 20;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
}

a {
  color: inherit;
}

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

button,
input,
select {
  font: inherit;
}

:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 4px;
}

.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;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 999;
  transform: translateY(-160%);
  padding: 10px 16px;
  border-radius: 100px;
  background: var(--gold-bright);
  color: #080808;
  text-decoration: none;
  font-weight: 800;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: 86px;
  padding: 14px max(24px, calc((100vw - var(--max)) / 2));
  border-bottom: 1px solid var(--line);
  background: rgba(8, 8, 8, 0.82);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--text);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-decoration: none;
  white-space: nowrap;
}

.brand img,
.footer-brand img {
  border: 1px solid rgba(215, 184, 121, 0.28);
  border-radius: 14px;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(22px, 3vw, 46px);
}

.site-nav a,
.site-footer nav a {
  position: relative;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
}

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

.site-nav a:hover,
.site-nav a:focus-visible,
.site-footer nav a:hover {
  color: var(--text);
}

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

.language-switcher {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
}

.language-switcher button {
  min-width: 38px;
  padding: 7px 9px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.language-switcher button[aria-pressed="true"] {
  background: var(--text);
  color: var(--bg);
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  align-items: center;
  min-height: calc(100vh - 86px);
  padding: 90px max(24px, calc((100vw - var(--max)) / 2));
  isolation: isolate;
}

.hero-glow {
  position: absolute;
  z-index: -2;
  border-radius: 999px;
  filter: blur(110px);
  opacity: 0.14;
}

.hero-glow-one {
  top: 0;
  right: 7%;
  width: 440px;
  height: 440px;
  background: var(--gold);
}

.hero-glow-two {
  bottom: 0;
  left: -100px;
  width: 320px;
  height: 320px;
  background: #777f56;
}

.eyebrow {
  margin: 0 0 20px;
  color: var(--gold-bright);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.24em;
}

.hero h1,
.section h2,
.closing-cta h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", "Yu Mincho", serif;
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.045em;
  word-break: normal;
  overflow-wrap: normal;
  text-wrap: balance;
}

:lang(ja) .hero h1,
:lang(ja) .section h2,
:lang(ja) .closing-cta h2 {
  word-break: auto-phrase;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(3.6rem, 7vw, 7.3rem);
}

.hero h1 span {
  display: block;
}

.accent {
  color: var(--gold-bright);
  font-style: italic;
}

.hero-lede {
  max-width: 640px;
  margin: 32px 0 0;
  color: #c6c2ba;
  font-size: clamp(1rem, 1.5vw, 1.16rem);
}

.hero-actions,
.card-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 850;
  letter-spacing: 0.04em;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

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

.button-disabled,
.button:disabled {
  appearance: none;
  cursor: not-allowed;
  font-family: inherit;
  opacity: 0.62;
  pointer-events: none;
}

.button-disabled:hover,
.button:disabled:hover {
  border-color: var(--line-strong);
  background: transparent;
  transform: none;
}

.button-primary {
  background: var(--gold-bright);
  color: #080808;
}

.button-primary:hover {
  background: #fff0c2;
}

.button-ghost,
.button-outline {
  border-color: var(--line-strong);
  background: transparent;
  color: var(--text);
}

.button-ghost:hover,
.button-outline:hover {
  border-color: var(--gold-bright);
  background: rgba(215, 184, 121, 0.08);
}

.button-light {
  background: #080808;
  color: var(--text);
}

.button-wide {
  width: 100%;
}

.text-link {
  padding: 12px 4px;
  color: var(--gold-bright);
  font-size: 0.84rem;
  font-weight: 850;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 650px;
  margin: 54px 0 0;
  padding: 0;
  list-style: none;
}

.hero-facts li {
  display: flex;
  flex-direction: column;
  padding: 0 18px;
  border-left: 1px solid var(--line);
}

.hero-facts li:first-child {
  padding-left: 0;
  border-left: 0;
}

.hero-facts strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.1rem;
  font-weight: 600;
}

.hero-facts span {
  color: var(--muted);
  font-size: 0.75rem;
}

.hero-visual {
  position: relative;
  display: grid;
  min-height: 580px;
  place-items: center;
}

.hero-visual::before {
  content: "";
  position: absolute;
  width: min(38vw, 500px);
  aspect-ratio: 1;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: radial-gradient(circle at 40% 30%, rgba(215, 184, 121, 0.14), transparent 65%);
}

.pose-illustration {
  position: relative;
  z-index: 2;
  width: min(42vw, 540px);
  height: auto;
  filter: drop-shadow(0 20px 50px rgba(215, 184, 121, 0.12));
}

.visual-orbit {
  position: absolute;
  border: 1px solid rgba(215, 184, 121, 0.16);
  border-radius: 50%;
}

.orbit-one {
  width: min(46vw, 590px);
  aspect-ratio: 1;
  animation: rotate 34s linear infinite;
}

.orbit-one::after {
  content: "";
  position: absolute;
  top: 11%;
  left: 11%;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold-bright);
  box-shadow: 0 0 25px var(--gold);
}

.orbit-two {
  width: min(34vw, 430px);
  aspect-ratio: 1;
  border-style: dashed;
  opacity: 0.5;
  animation: rotate 28s linear infinite reverse;
}

.visual-label {
  position: absolute;
  bottom: 7%;
  z-index: 3;
  margin: 0;
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

@keyframes rotate {
  to { transform: rotate(360deg); }
}

.marquee {
  overflow: hidden;
  padding: 17px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}

.marquee div {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 28px;
  animation: ticker 35s linear infinite;
}

.marquee span {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.2em;
}

.marquee i {
  color: var(--gold);
  font-style: normal;
}

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

.section {
  width: min(calc(100% - 48px), var(--max));
  margin-inline: auto;
  padding-block: 145px;
}

.split {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: clamp(50px, 8vw, 120px);
  align-items: center;
}

.section h2,
.closing-cta h2 {
  font-size: clamp(2.6rem, 5.2vw, 5.2rem);
}

.balanced-title span {
  display: block;
  word-break: keep-all;
  white-space: nowrap;
}

.section-intro > p:not(.eyebrow),
.section-heading > p:not(.eyebrow),
.about-copy > p,
.booking-copy > p {
  color: var(--muted);
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 34px;
}

.chips span {
  padding: 8px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #c9c5bc;
  font-size: 0.74rem;
  font-weight: 700;
}

.feature-card,
.program-card,
.booking-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(25, 25, 20, 0.98), rgba(14, 14, 12, 0.98));
  box-shadow: var(--shadow);
}

.feature-card {
  padding: clamp(30px, 5vw, 64px);
}

.feature-card::after,
.booking-panel::after {
  content: "";
  position: absolute;
  top: -90px;
  right: -90px;
  width: 220px;
  height: 220px;
  border: 1px solid rgba(215, 184, 121, 0.24);
  border-radius: 50%;
}

.card-number {
  position: absolute;
  top: 24px;
  right: 28px;
  color: rgba(245, 240, 231, 0.18);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
}

.card-kicker,
.panel-label {
  margin: 0 0 14px;
  color: var(--gold-bright);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.feature-card h3,
.program-card h3,
.booking-panel h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", "Yu Mincho", serif;
  font-size: clamp(1.65rem, 3vw, 2.4rem);
  font-weight: 500;
  line-height: 1.25;
}

.feature-card > p:not(.card-kicker),
.booking-panel > p:not(.panel-label) {
  color: var(--muted);
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: 30px;
}

.price {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.4rem, 4vw, 3.7rem);
  line-height: 1;
}

.price-row > span:last-child {
  color: var(--muted);
  font-size: 0.76rem;
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 25px;
  color: #c6c2b8;
  font-size: 0.9rem;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 0.78em;
  left: 0;
  width: 11px;
  height: 1px;
  background: var(--gold);
}

.programs {
  width: 100%;
  max-width: none;
  padding-inline: max(24px, calc((100vw - var(--max)) / 2));
  background: #0d0d0b;
}

.section-heading {
  max-width: 830px;
  margin-bottom: 66px;
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.program-card {
  display: flex;
  flex-direction: column;
  min-height: 610px;
  padding: 36px;
}

.program-card.featured {
  border-color: rgba(215, 184, 121, 0.65);
  transform: translateY(-18px);
  background: linear-gradient(155deg, #252118, #12110e 70%);
}

.recommended {
  position: absolute;
  top: 0;
  right: 26px;
  padding: 7px 12px;
  border-radius: 0 0 10px 10px;
  background: var(--gold-bright);
  color: #080808;
  font-size: 0.6rem;
  font-weight: 950;
  letter-spacing: 0.12em;
}

.level {
  min-height: 62px;
  margin: 12px 0 0;
  color: #c2beb5;
  font-size: 0.84rem;
}

.program-meta {
  display: grid;
  gap: 2px;
  margin-top: 24px;
  padding-block: 18px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.program-meta span:first-child {
  font-weight: 850;
}

.program-meta span:last-child {
  color: var(--muted);
  font-size: 0.75rem;
}

.program-copy {
  color: var(--muted);
  font-size: 0.9rem;
}

.program-card .price-row {
  margin-top: auto;
  padding-top: 28px;
}

.program-card .button {
  margin-top: 28px;
}

.payment-note {
  max-width: 760px;
  margin: 38px auto 0;
  color: var(--muted);
  font-size: 0.78rem;
  text-align: center;
}

.about {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(300px, 0.82fr);
  gap: clamp(42px, 7vw, 96px);
  align-items: center;
}

.about-photo {
  position: relative;
  min-height: 520px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(215, 184, 121, 0.12), transparent 48%),
    #11110f;
  box-shadow: var(--shadow);
}

.about-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(8, 8, 8, 0.78));
  pointer-events: none;
}

.about-photo img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: 50% 40%;
  filter: saturate(0.94) contrast(1.04) brightness(1.02);
  transform: scale(1.015);
}

.about-photo figcaption {
  position: absolute;
  right: 24px;
  bottom: 20px;
  left: 24px;
  z-index: 1;
  margin: 0;
  color: var(--gold-bright);
  font-size: 0.6rem;
  font-weight: 900;
  letter-spacing: 0.2em;
}

.about-lede {
  font-family: Georgia, "Times New Roman", "Yu Mincho", serif;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  line-height: 1.6;
}

.credentials {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 42px 0 0;
  border-top: 1px solid var(--line);
}

.credentials div {
  padding: 20px 12px 20px 0;
  border-bottom: 1px solid var(--line);
}

.credentials dt {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.credentials dd {
  margin: 6px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.96rem;
}

.booking {
  display: grid;
  grid-template-columns: 1fr 0.86fr;
  gap: clamp(50px, 8vw, 110px);
  align-items: start;
}

.steps {
  display: grid;
  gap: 0;
  margin: 46px 0 0;
  padding: 0;
  list-style: none;
}

.steps li {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 18px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
}

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

.steps li > span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--gold-bright);
  font-family: Georgia, "Times New Roman", serif;
}

.steps strong {
  font-family: Georgia, "Times New Roman", "Yu Mincho", serif;
  font-size: 1.04rem;
}

.steps p {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.booking-panel {
  padding: clamp(30px, 5vw, 54px);
}

.booking-panel .button {
  margin-top: 25px;
}

.areas {
  margin-top: 30px;
  padding-top: 25px;
  border-top: 1px solid var(--line);
}

.areas span {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.1em;
}

.areas p {
  margin: 5px 0 0;
  font-family: Georgia, "Times New Roman", "Yu Mincho", serif;
}

.faq {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: clamp(50px, 9vw, 140px);
  align-items: start;
  padding-top: 70px;
}

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

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

.faq-list summary {
  position: relative;
  padding: 24px 50px 24px 0;
  cursor: pointer;
  font-family: Georgia, "Times New Roman", "Yu Mincho", serif;
  font-size: 1.08rem;
  list-style: none;
}

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

.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 20px;
  right: 4px;
  color: var(--gold-bright);
  font-size: 1.6rem;
  font-weight: 300;
}

.faq-list details[open] summary::after {
  content: "–";
}

.faq-list details p {
  max-width: 680px;
  margin: -4px 0 25px;
  color: var(--muted);
  font-size: 0.9rem;
}

.closing-cta {
  display: grid;
  min-height: 580px;
  padding: 90px 24px;
  place-items: center;
  background:
    linear-gradient(rgba(215, 184, 121, 0.95), rgba(215, 184, 121, 0.95)),
    radial-gradient(circle at 25% 25%, #fff, transparent 35%);
  color: #080808;
  text-align: center;
}

.closing-cta .eyebrow {
  color: #3a3122;
}

.closing-cta p:not(.eyebrow) {
  margin: 22px 0 30px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
  padding: 50px max(24px, calc((100vw - var(--max)) / 2));
  border-top: 1px solid var(--line);
}

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

.footer-brand div {
  display: flex;
  flex-direction: column;
}

.footer-brand strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.92rem;
  letter-spacing: 0.1em;
}

.footer-brand span,
.site-footer > p {
  color: var(--muted);
  font-size: 0.68rem;
}

.site-footer nav {
  display: flex;
  gap: 24px;
}

.site-footer > p {
  justify-self: end;
}

.toast {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 100;
  transform: translateY(140%);
  padding: 12px 18px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: #15140f;
  color: var(--text);
  box-shadow: var(--shadow);
  font-size: 0.75rem;
  transition: transform 220ms ease;
}

.toast.show {
  transform: translateY(0);
}

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

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

@media (max-width: 1000px) {
  .site-header {
    grid-template-columns: auto auto 1fr;
  }

  .menu-toggle {
    display: flex;
    width: 42px;
    height: 42px;
    flex-direction: column;
    justify-content: center;
    gap: 7px;
    margin-left: 16px;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: transparent;
    color: var(--text);
    cursor: pointer;
  }

  .menu-toggle span:not(.sr-only) {
    width: 17px;
    height: 1px;
    margin-inline: auto;
    background: currentColor;
    transition: transform 180ms ease;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    transform: translateY(4px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-4px) rotate(-45deg);
  }

  .site-nav {
    position: absolute;
    top: 86px;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 14px 24px 24px;
    border-bottom: 1px solid var(--line);
    background: rgba(8, 8, 8, 0.98);
  }

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

  .site-nav a {
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
  }

  .language-switcher {
    justify-self: end;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 80px;
  }

  .hero-visual {
    min-height: 500px;
  }

  .pose-illustration {
    width: min(70vw, 520px);
  }

  .hero-visual::before {
    width: min(72vw, 500px);
  }

  .orbit-one {
    width: min(78vw, 590px);
  }

  .orbit-two {
    width: min(61vw, 430px);
  }

  .split,
  .about,
  .booking,
  .faq {
    grid-template-columns: 1fr;
  }

  .program-grid {
    grid-template-columns: 1fr;
    max-width: 720px;
    margin-inline: auto;
  }

  .program-card {
    min-height: 0;
  }

  .program-card.featured {
    transform: none;
  }

  .about-photo {
    min-height: 480px;
    max-width: 720px;
  }

  .about-photo img {
    min-height: 480px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .site-footer > p {
    justify-self: center;
  }
}

@media (max-width: 640px) {
  html {
    scroll-padding-top: 78px;
  }

  .site-header {
    min-height: 72px;
    padding: 11px 16px;
  }

  .brand img {
    width: 36px;
    height: 36px;
  }

  .brand span {
    display: none;
  }

  .menu-toggle {
    margin-left: 8px;
  }

  .site-nav {
    top: 72px;
  }

  .language-switcher button {
    min-width: 34px;
    padding: 6px;
    font-size: 0.62rem;
  }

  .hero {
    min-height: auto;
    padding: 70px 20px 40px;
  }

  .hero h1 {
    font-size: clamp(2.7rem, 14vw, 4.5rem);
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-facts {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .hero-facts li,
  .hero-facts li:first-child {
    padding: 0 0 0 15px;
    border-left: 1px solid var(--line);
  }

  .hero-visual {
    min-height: 410px;
  }

  .visual-label {
    bottom: 2%;
  }

  .section {
    width: min(calc(100% - 36px), var(--max));
    padding-block: 92px;
  }

  .programs {
    width: 100%;
    padding-inline: 18px;
  }

  .feature-card,
  .program-card,
  .booking-panel {
    padding: 28px 22px;
    border-radius: 20px;
  }

  .card-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .card-actions .button,
  .card-actions .text-link {
    width: 100%;
    text-align: center;
  }

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

  .section h2,
  .closing-cta h2 {
    font-size: clamp(2.25rem, 11.4vw, 3.5rem);
  }

  .balanced-title span {
    white-space: normal;
  }

  .about-photo,
  .about-photo img {
    min-height: 390px;
  }

  .site-footer nav {
    flex-wrap: wrap;
    justify-content: center;
  }
}

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

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

/* Warm black-and-gold editorial theme */
:root {
  --bg: #f4eee2;
  --surface: #fffaf0;
  --surface-2: #eadcc2;
  --text: #252018;
  --muted: #6d6559;
  --gold: #b68a3b;
  --gold-bright: #d9b766;
  --line: rgba(48, 39, 27, 0.15);
  --line-strong: rgba(153, 111, 39, 0.42);
  --dark: #17140f;
  --dark-surface: #211c14;
  --dark-text: #fff8e9;
  --dark-muted: #c9bfad;
  --shadow: 0 26px 70px rgba(72, 53, 24, 0.14);
}

body {
  background:
    radial-gradient(circle at 82% 24%, rgba(217, 183, 102, 0.2), transparent 28rem),
    linear-gradient(180deg, #f8f2e8 0%, #eee3cf 100%);
  color: var(--text);
  line-break: auto;
  text-rendering: optimizeLegibility;
  -webkit-text-size-adjust: 100%;
}

.hero h1,
.section h2,
.closing-cta h2,
.feature-card h3,
.program-card h3,
.booking-panel h3 {
  text-wrap: balance;
}

.hero h1,
.section h2,
.closing-cta h2,
.feature-card h3,
.program-card h3,
.booking-panel h3,
.hero-lede,
.section-intro > p,
.section-heading > p,
.about-copy > p,
.booking-copy > p,
.faq-list summary,
.faq-list details p {
  overflow-wrap: break-word;
}

.hero-lede,
.section-intro > p:not(.eyebrow),
.section-heading > p:not(.eyebrow),
.about-copy > p,
.booking-copy > p,
.feature-card > p,
.program-copy,
.booking-panel > p,
.faq-list details p {
  text-wrap: pretty;
}

.balanced-title span {
  max-width: 100%;
  white-space: normal;
  text-wrap: balance;
}

.phrase-title span {
  display: block;
  max-width: 100%;
  text-wrap: balance;
}

:lang(ja) .hero h1,
:lang(ja) .section h2,
:lang(ja) .closing-cta h2,
:lang(ja) .feature-card h3,
:lang(ja) .booking-panel h3,
:lang(ja) p,
:lang(ja) li,
:lang(ja) summary {
  line-break: strict;
  word-break: normal;
}

@supports (word-break: auto-phrase) {
  :lang(ja) .hero h1,
  :lang(ja) .section h2,
  :lang(ja) .closing-cta h2,
  :lang(ja) .feature-card h3,
  :lang(ja) .booking-panel h3 {
    word-break: auto-phrase;
  }
}

.site-header,
.hero,
.marquee,
.site-footer {
  --text: var(--dark-text);
  --muted: var(--dark-muted);
  --line: rgba(255, 248, 233, 0.16);
  --line-strong: rgba(217, 183, 102, 0.42);
  color: var(--dark-text);
}

.site-header {
  border-bottom-color: rgba(217, 183, 102, 0.26);
  background: rgba(23, 20, 15, 0.9);
  box-shadow: 0 12px 35px rgba(30, 22, 10, 0.16);
}

.hero {
  overflow: hidden;
  border-bottom: 1px solid rgba(217, 183, 102, 0.34);
  background:
    radial-gradient(circle at 82% 28%, rgba(217, 183, 102, 0.2), transparent 27rem),
    radial-gradient(circle at 12% 86%, rgba(119, 127, 86, 0.13), transparent 24rem),
    linear-gradient(135deg, #15130f 0%, #211b12 52%, #11100d 100%);
}

.hero-lede,
.hero-facts span,
.visual-label {
  color: var(--dark-muted);
}

.hero .button-ghost {
  border-color: rgba(217, 183, 102, 0.52);
  color: var(--dark-text);
}

.marquee {
  border-color: rgba(217, 183, 102, 0.3);
  background: #201b13;
}

.section {
  position: relative;
}

.chips span {
  border-color: rgba(151, 108, 37, 0.28);
  background: rgba(255, 250, 240, 0.7);
  color: #574d3f;
}

.feature-card,
.booking-panel,
.program-card.featured {
  --text: var(--dark-text);
  --muted: var(--dark-muted);
  --line: rgba(255, 248, 233, 0.16);
  --line-strong: rgba(217, 183, 102, 0.48);
  color: var(--dark-text);
  border-color: rgba(217, 183, 102, 0.34);
  background:
    radial-gradient(circle at 100% 0%, rgba(217, 183, 102, 0.18), transparent 16rem),
    linear-gradient(145deg, #282116, #15130f 72%);
  box-shadow: 0 28px 80px rgba(46, 33, 14, 0.24);
}

.feature-card > p:not(.card-kicker),
.booking-panel > p:not(.panel-label),
.program-card.featured .level,
.program-card.featured .program-copy,
.program-card.featured .program-meta span:last-child {
  color: var(--dark-muted);
}

.programs {
  border-block: 1px solid rgba(151, 108, 37, 0.22);
  background:
    radial-gradient(circle at 88% 8%, rgba(255, 252, 241, 0.88), transparent 26rem),
    linear-gradient(135deg, #e7d4af 0%, #f3e8d4 50%, #dfc38e 100%);
}

.program-card {
  color: var(--text);
  border-color: rgba(112, 82, 34, 0.2);
  background: rgba(255, 251, 243, 0.9);
  box-shadow: 0 22px 55px rgba(83, 60, 24, 0.13);
}

.program-card:not(.featured) .level,
.program-card:not(.featured) .program-copy,
.program-card:not(.featured) .program-meta span:last-child {
  color: var(--muted);
}

.about {
  margin-block: 64px;
  padding-inline: clamp(24px, 4vw, 58px);
  border: 1px solid rgba(151, 108, 37, 0.16);
  border-radius: 38px;
  background: rgba(255, 251, 243, 0.76);
  box-shadow: var(--shadow);
}

.booking {
  width: min(calc(100% - 48px), var(--max));
  margin-block: 64px;
  padding-inline: clamp(24px, 4vw, 58px);
  border: 1px solid rgba(151, 108, 37, 0.19);
  border-radius: 38px;
  background:
    radial-gradient(circle at 12% 15%, rgba(255, 255, 255, 0.82), transparent 20rem),
    linear-gradient(135deg, #ead8b6, #f7efe2 58%, #e4c995);
}

.faq-list details {
  border-color: rgba(48, 39, 27, 0.16);
}

.closing-cta {
  min-height: 500px;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 250, 225, 0.82), transparent 25rem),
    linear-gradient(135deg, #c79a45, #efd38f 50%, #b98532);
}

.site-footer {
  border-top-color: rgba(217, 183, 102, 0.28);
  background: linear-gradient(135deg, #17140f, #251e13);
}

@media (max-width: 640px) {
  .hero {
    padding: 60px 20px 28px;
  }

  .hero h1 {
    font-size: clamp(2.45rem, 12.5vw, 3.65rem);
    line-height: 1.14;
    letter-spacing: -0.035em;
  }

  :lang(ja) .hero h1 {
    font-size: clamp(2rem, 10.8vw, 2.65rem);
  }

  :lang(ja) .hero h1 span {
    white-space: nowrap;
  }

  .hero-lede {
    margin-top: 26px;
    font-size: 0.98rem;
    line-height: 1.9;
  }

  .hero-facts {
    margin-top: 44px;
  }

  .hero-visual {
    min-height: 350px;
  }

  .section {
    width: min(calc(100% - 32px), var(--max));
    padding-block: 76px;
  }

  .section h2,
  .closing-cta h2 {
    font-size: clamp(2.1rem, 10.2vw, 3.15rem);
    line-height: 1.18;
    letter-spacing: -0.035em;
  }

  .balanced-title span {
    display: block;
  }

  :lang(ja) .balanced-title span,
  :lang(ja) .phrase-title span,
  :lang(zh) .phrase-title span {
    white-space: nowrap;
  }

  :lang(ja) #programs-title {
    font-size: clamp(1.85rem, 9vw, 2.4rem);
  }

  :lang(ja) .feature-card h3 {
    font-size: clamp(1.45rem, 7.4vw, 1.85rem);
    line-height: 1.3;
    overflow-wrap: normal;
    word-break: keep-all;
  }

  .feature-card,
  .program-card,
  .booking-panel {
    min-width: 0;
    padding: 26px 20px;
  }

  .programs {
    width: 100%;
    padding-inline: 16px;
  }

  .about,
  .booking {
    width: min(calc(100% - 24px), var(--max));
    margin-block: 32px;
    padding: 68px 20px;
    border-radius: 28px;
  }

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

  .faq-list summary {
    padding-right: 42px;
    font-size: 1rem;
    line-height: 1.65;
  }

  .closing-cta {
    min-height: 440px;
    padding-inline: 20px;
  }
}

/* Mobile instructor portrait: compact, colorful and aligned with the heading. */
@media (max-width: 640px) {
  .about {
    position: relative;
    display: block;
    padding-top: 132px;
  }

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

  .about-copy .eyebrow {
    max-width: calc(100% - 132px);
  }

  .about-photo {
    position: absolute;
    top: 24px;
    right: 20px;
    width: 118px;
    height: 132px;
    min-height: 0;
    margin: 0;
    border-color: rgba(182, 138, 59, 0.5);
    border-radius: 22px;
    box-shadow: 0 14px 34px rgba(73, 52, 20, 0.2);
  }

  .about-photo::after,
  .about-photo figcaption {
    display: none;
  }

  .about-photo img {
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: cover;
    object-position: 50% 31%;
    filter: saturate(0.9) contrast(1.03) brightness(1.02);
    transform: none;
  }
}
