:root {
  --obsidian: #1f252a;
  --ink: #222222;
  --gold: #b89b68;
  --paper: #f6f1e8;
  --paper-soft: #fbfaf7;
  --pine: #6f7d6b;
  --wood: #8a6a4f;
  --red: #a84e3f;
  --line: rgba(31, 37, 42, 0.12);
  --line-strong: rgba(31, 37, 42, 0.22);
  --shadow: 0 28px 80px rgba(31, 37, 42, 0.13);
  --font-sans: -apple-system, BlinkMacSystemFont, "SF Pro Text", "PingFang TC",
    "Noto Sans TC", "Helvetica Neue", Arial, sans-serif;
  --font-serif: "Songti TC", "Noto Serif TC", "Source Han Serif TC", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 8%, rgba(184, 155, 104, 0.18), transparent 28rem),
    linear-gradient(180deg, #fffaf2 0%, #fbfaf7 36%, #f5f2ec 100%);
  font-family: var(--font-sans);
  letter-spacing: 0;
  overflow-x: clip;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: 0.27;
  background-image:
    linear-gradient(rgba(31, 37, 42, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(31, 37, 42, 0.025) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, black, transparent 78%);
}

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

img,
svg {
  display: block;
}

button {
  font: inherit;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 20;
  padding: 10px 14px;
  color: white;
  background: var(--obsidian);
  border-radius: 999px;
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  padding: 14px 20px 0;
  transition: padding 220ms ease;
}

.nav-shell {
  width: min(1120px, 100%);
  min-height: 58px;
  margin: 0 auto;
  padding: 8px 10px 8px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  background: rgba(255, 252, 246, 0.76);
  backdrop-filter: blur(22px) saturate(140%);
  box-shadow: 0 8px 28px rgba(31, 37, 42, 0.06);
}

.site-header.is-scrolled {
  padding-top: 8px;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15.5px;
  font-weight: 650;
  white-space: nowrap;
}

.brand-lockup img {
  width: 34px;
  height: 34px;
  border-radius: 50%;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(31, 37, 42, 0.72);
  font-size: 14.5px;
  font-weight: 560;
}

.nav-links a {
  min-height: 38px;
  padding: 11px 14px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  transition:
    color 180ms ease,
    background 180ms ease;
}

.nav-links a:hover {
  color: var(--obsidian);
  background: rgba(31, 37, 42, 0.06);
}

.nav-links .nav-cta {
  color: white;
  background: var(--obsidian);
}

.nav-links .nav-cta:hover {
  color: white;
  background: #11161a;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(31, 37, 42, 0.06);
}

.nav-toggle span {
  display: block;
  width: 17px;
  height: 1.5px;
  margin: 4px auto;
  background: var(--obsidian);
  transition: transform 200ms ease, opacity 200ms ease;
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: rotate(45deg) translate(4.2px, 4.2px);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: rotate(-45deg) translate(4.2px, -4.2px);
}

.section-inner {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.hero-section {
  position: relative;
  min-height: 100svh;
  padding: 132px 0 72px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(115deg, transparent 0 62%, rgba(31, 37, 42, 0.06) 62% 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), transparent 68%);
}

.hero-grid {
  min-height: calc(100svh - 204px);
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(340px, 1fr);
  align-items: center;
  gap: 54px;
}

.hero-copy {
  max-width: 680px;
  min-width: 0;
}

.hero-kicker {
  margin: 0 0 24px;
  color: var(--gold);
  font-size: 14.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 26px;
  color: var(--obsidian);
  font-family: var(--font-serif);
  font-size: clamp(64px, 8.2vw, 110px);
  font-weight: 650;
  line-height: 0.94;
  letter-spacing: 0;
  word-break: keep-all;
  overflow-wrap: break-word;
}

h1 span {
  display: block;
}

.hero-lede {
  max-width: 590px;
  margin-bottom: 34px;
  color: rgba(31, 37, 42, 0.74);
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.62;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-socials {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-socials a {
  min-height: 34px;
  padding: 8px 12px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(31, 37, 42, 0.1);
  border-radius: 999px;
  color: rgba(31, 37, 42, 0.68);
  background: rgba(255, 255, 255, 0.48);
  font-size: 14.5px;
  font-weight: 650;
  transition:
    color 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.hero-socials a:hover {
  color: var(--obsidian);
  border-color: rgba(184, 155, 104, 0.5);
  background: rgba(255, 255, 255, 0.78);
  transform: translateY(-1px);
}

.button {
  min-height: 50px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 680;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    opacity 180ms ease;
}

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

.button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button-primary {
  color: white;
  background: var(--obsidian);
}

.button-secondary {
  color: var(--obsidian);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.54);
}

.button.is-disabled {
  cursor: not-allowed;
  opacity: 0.62;
}

.hero-visual {
  position: relative;
  min-height: 580px;
}

.visual-panel {
  position: absolute;
  top: 12px;
  right: 0;
  width: min(100%, 460px);
  min-height: 320px;
  padding: 42px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 26px;
  border: 1px solid rgba(184, 155, 104, 0.4);
  border-radius: 8px;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.86), rgba(246, 241, 232, 0.7)),
    var(--paper);
  box-shadow: var(--shadow);
}

.visual-corner {
  position: absolute;
  top: 0;
  left: 0;
  width: 130px;
  height: 130px;
  pointer-events: none;
  user-select: none;
}

.visual-logo {
  width: 148px;
  height: 148px;
  border-radius: 50%;
}

.visual-copy {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: rgba(31, 37, 42, 0.7);
}

.visual-copy span {
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.visual-copy strong {
  display: block;
  max-width: 240px;
  color: var(--obsidian);
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 600;
  line-height: 1.32;
}

.portrait-stage {
  position: absolute;
  right: -58px;
  bottom: -70px;
  width: min(98%, 610px);
  height: 660px;
  display: grid;
  place-items: end center;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  z-index: 1;
}

.portrait-stage::before {
  position: absolute;
  inset: auto 72px 52px 102px;
  height: 56%;
  content: "";
  z-index: -1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184, 155, 104, 0.2), transparent 68%);
  filter: blur(10px);
}

.portrait-stage img {
  position: relative;
  width: 112%;
  height: auto;
  max-width: none;
  object-fit: contain;
  transform: translate(2%, 6%);
}

.intro-strip {
  margin-top: -16px;
  padding: 34px 0;
}

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

.intro-grid > div {
  min-height: 152px;
  padding: 28px 28px 26px 0;
  border-right: 1px solid var(--line);
}

.intro-grid > div:last-child {
  border-right: 0;
  padding-left: 28px;
}

.intro-grid > div:nth-child(2) {
  padding-left: 28px;
}

.intro-icon-container {
  width: 72px;
  height: 72px;
  margin-bottom: 14px;
}

.intro-icon {
  width: 100%;
  height: 100%;
}

.intro-grid span,
.section-heading p,
.content-card span {
  color: var(--gold);
  font-size: 13.5px;
  font-weight: 750;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.intro-grid strong {
  display: block;
  margin: 18px 0 8px;
  color: var(--obsidian);
  font-size: 22px;
}

.intro-grid p {
  margin-bottom: 0;
  color: rgba(31, 37, 42, 0.68);
  font-size: 16.5px;
  line-height: 1.72;
}

.section-block {
  padding: 108px 0;
}

.split-layout,
.schedule-grid,
.social-grid,
.character-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 68px;
  align-items: start;
}

.section-heading {
  position: sticky;
  top: 108px;
}

.section-heading h2 {
  margin-bottom: 18px;
  color: var(--obsidian);
  font-family: var(--font-serif);
  font-size: clamp(36px, 5vw, 66px);
  font-weight: 620;
  line-height: 1.08;
}

.section-note,
.content-heading-row > p,
.booking-footnote {
  display: block;
  color: rgba(31, 37, 42, 0.64);
  font-size: 17.5px;
  line-height: 1.78;
}

.practice-list,
.pillar-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.practice-item {
  min-height: 154px;
  padding: 30px 0;
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 24px;
  border-bottom: 1px solid var(--line);
}

.icon-shell {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  color: var(--gold);
  border: 1px solid rgba(184, 155, 104, 0.36);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.42);
}

.icon-shell svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.practice-item h3,
.pillar-item h3,
.content-card h3 {
  margin-bottom: 10px;
  color: var(--obsidian);
  font-size: 24px;
  line-height: 1.22;
}

.practice-item p,
.pillar-item p,
.content-card p {
  margin: 0;
  color: rgba(31, 37, 42, 0.68);
  font-size: 17.5px;
  line-height: 1.8;
}

.practice-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.practice-tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  background: rgba(184, 155, 104, 0.08);
  border: 1px solid rgba(184, 155, 104, 0.22);
  border-radius: 6px;
  color: #8a6a4f;
  font-size: 13.5px;
  font-weight: 550;
  letter-spacing: 0.2px;
}

.pillar-item {
  min-height: 154px;
  padding: 30px 0;
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 24px;
  border-bottom: 1px solid var(--line);
}

.pillar-item .pillar-hook {
  margin: 0 0 10px;
  color: var(--wood);
  font-weight: 600;
  font-size: 17.5px;
  line-height: 1.6;
}

.pillar-formula {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
}

.pillar-formula span:not(.pillar-arrow) {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  background: rgba(31, 37, 42, 0.04);
  border: 1px solid var(--line);
  border-radius: 6px;
  color: rgba(31, 37, 42, 0.72);
  font-size: 13.5px;
  font-weight: 550;
  letter-spacing: 0.2px;
}

.pillar-arrow {
  color: var(--gold);
  font-weight: 700;
}

.schedule-section {
  color: white;
  background:
    linear-gradient(135deg, rgba(184, 155, 104, 0.14), transparent 42%),
    var(--obsidian);
}

.schedule-section .section-heading h2,
.schedule-section .section-heading p,
.schedule-section .section-note {
  color: white;
}

.schedule-section .section-heading h2 {
  font-size: clamp(28px, 3.8vw, 58px);
  word-break: keep-all;
}

.schedule-section .section-note {
  color: rgba(255, 255, 255, 0.66);
}

.booking-panel {
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 30px 88px rgba(0, 0, 0, 0.22);
}

.booking-topline {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 26px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.booking-topline img {
  width: 54px;
  height: 54px;
  border-radius: 50%;
}

.booking-topline strong,
.booking-topline span {
  display: block;
}

.booking-topline strong {
  font-size: 20px;
}

.booking-topline span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 15.5px;
}

.schedule-table {
  margin: 18px 0 22px;
}

/* ── Weekly grid table ── */
.week-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  font-family: var(--font-sans);
}

.week-table thead th {
  padding: 0 4px 10px;
  text-align: center;
  font-size: 14.5px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: .04em;
}

.week-table tbody tr {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.week-table td,
.week-table tbody th {
  padding: 10px 4px;
  text-align: center;
  font-size: 14.5px;
  line-height: 1.3;
  white-space: nowrap;
}

.wt-slot-head {
  width: 28px;
}

.wt-slot-label {
  text-align: left !important;
  padding-left: 0 !important;
  width: 28px;
}

.wt-slot-label b {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.38);
  letter-spacing: .06em;
}

.wc-empty { color: transparent; }

.wc-renren {
  color: var(--gold);
  font-weight: 700;
  font-size: 13.5px;
}

.wc-renwen {
  color: #7ecba0;
  font-weight: 700;
  font-size: 13.5px;
}

.wc-biweekly {
  font-size: 12.5px;
  font-weight: 600;
  color: rgba(184, 155, 104, 0.6);
  line-height: 1.4;
}

.wc-biweekly span {
  display: block;
  font-size: 9px;
  font-weight: 500;
  opacity: .75;
  letter-spacing: .04em;
}

.wt-legend {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 10px;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.42);
}

.wl-renren,
.wl-renwen {
  display: inline-block;
  padding: 1px 7px;
  border-radius: 3px;
  font-size: 12.5px;
  font-weight: 700;
  margin-right: 4px;
}

.wl-renren { color: var(--gold); border: 1px solid rgba(184,155,104,.5); }
.wl-renwen { color: #7ecba0;     border: 1px solid rgba(126,203,160,.5); }

/* ── Schedule notices ── */
.schedule-notices {
  margin: 14px 0 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 14px 16px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.sn-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14.5px;
  line-height: 1.5;
}

.sn-dot {
  flex-shrink: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  margin-top: 5px;
}

.sn-open .sn-dot  { background: var(--gold); }
.sn-closure .sn-dot { background: #e07b5a; }

.sn-body {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 4px 8px;
}

.sn-body strong {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
  white-space: nowrap;
}

.sn-dates {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.sn-date {
  display: inline-block;
  padding: 1px 7px;
  border-radius: 4px;
  font-size: 13.5px;
  font-weight: 600;
}

.sn-open .sn-date {
  background: rgba(184, 155, 104, 0.18);
  color: var(--gold);
}

.sn-closure .sn-date {
  background: rgba(224, 123, 90, 0.15);
  color: #e07b5a;
}

.sn-body em {
  font-style: normal;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.42);
  white-space: nowrap;
}

/* ── Clinic action rows (booking + map) ── */
.clinic-action-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.clinic-action-row .booking-button {
  flex: 1;
}

.map-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 8px 12px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.65);
  font-size: 13.5px;
  font-weight: 600;
  white-space: nowrap;
  transition: border-color .2s, color .2s;
  flex-shrink: 0;
}

.map-link:hover {
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}

.booking-footnote {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 15.5px;
}

.booking-actions {
  display: grid;
  gap: 12px;
}

.booking-button {
  width: 100%;
  min-height: 58px;
}

.booking-button > span:last-child {
  display: grid;
  gap: 3px;
  text-align: left;
}

.booking-button em {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-style: normal;
  font-weight: 560;
}

.content-heading-row {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(260px, 0.72fr);
  gap: 70px;
  align-items: end;
  margin-bottom: 46px;
}

.content-heading-row .section-heading {
  position: static;
}

.content-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(238px, 1fr));
  gap: 18px;
}

.content-card {
  min-height: 310px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.56);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

a.content-card {
  cursor: pointer;
}

.content-card:hover {
  border-color: rgba(184, 155, 104, 0.45);
  box-shadow: 0 24px 60px rgba(31, 37, 42, 0.08);
  transform: translateY(-3px);
}

.content-card-icon {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
}

.content-card h3 {
  margin-top: 18px;
}

.content-card strong {
  margin-top: auto;
  color: var(--pine);
  font-size: 15.5px;
}

.character-section {
  padding-top: 28px;
}

.character-grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: center;
}

.character-media {
  overflow: hidden;
  border: 1px solid rgba(184, 155, 104, 0.24);
  border-radius: 8px;
  background: white;
  box-shadow: var(--shadow);
}

.character-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.character-section .section-heading {
  position: static;
}

.section-button {
  margin-top: 26px;
}

/* ── Section divider (meridian ornament) ── */
.section-divider {
  padding: 0;
  overflow: hidden;
}

.section-divider img {
  width: 100%;
  height: auto;
  display: block;
  opacity: 0.68;
}

/* ── Social section ── */
.social-section {
  position: relative;
  padding-top: 44px;
  background-image: url("./design-elements/images/soft-meridian-background.png");
  background-size: cover;
  background-position: center;
}

.social-links {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.social-link {
  min-height: 92px;
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--line);
  transition: color 180ms ease;
}

.social-link:hover {
  color: var(--gold);
}

.social-left {
  display: flex;
  align-items: center;
  gap: 18px;
}

.social-badge {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.44);
  color: var(--obsidian);
  font-size: 12.5px;
  font-weight: 760;
  letter-spacing: 0.04em;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.social-link:hover .social-badge {
  border-color: rgba(184, 155, 104, 0.55);
  background: rgba(255, 255, 255, 0.82);
  color: var(--gold);
}

.social-name-block {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.social-name-block span {
  color: var(--obsidian);
  font-size: 24px;
  font-weight: 700;
}

.social-name-block em {
  color: rgba(31, 37, 42, 0.52);
  font-size: 14.5px;
  font-style: normal;
}

.social-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.social-right strong {
  color: rgba(31, 37, 42, 0.52);
  font-size: 15.5px;
}

.social-arrow {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  opacity: 0;
  transform: translateX(-6px);
  transition:
    opacity 180ms ease,
    transform 180ms ease,
    border-color 180ms ease;
}

.social-arrow svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.social-link:hover .social-arrow {
  opacity: 1;
  transform: translateX(0);
  border-color: rgba(184, 155, 104, 0.45);
}

.site-footer {
  padding: 34px 0;
  color: rgba(255, 255, 255, 0.64);
  background: var(--obsidian);
}

.footer-grid {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 48px;
  align-items: center;
}

.footer-grid div {
  display: flex;
  align-items: center;
  gap: 14px;
  color: white;
}

.footer-grid img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
}

.footer-grid p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.8;
}

/* ── About section ── */
.about-section {
  position: relative;
  overflow: hidden;
  padding-bottom: 80px;
}

.seal-dots-ornament {
  position: absolute;
  bottom: 18px;
  right: -24px;
  width: 240px;
  opacity: 0.38;
  pointer-events: none;
  user-select: none;
}

.about-intro {
  margin-bottom: 28px;
  color: rgba(31, 37, 42, 0.72);
  font-size: clamp(20px, 2vw, 24px);
  line-height: 1.82;
}

.about-chips {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.about-chips li {
  padding: 9px 20px;
  border: 1px solid rgba(184, 155, 104, 0.38);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.54);
  color: var(--obsidian);
  font-size: 15.5px;
  font-weight: 650;
  transition:
    border-color 180ms ease,
    background 180ms ease;
}

.about-chips li:hover {
  border-color: rgba(184, 155, 104, 0.65);
  background: rgba(255, 255, 255, 0.82);
}

/* ── Footer bottom ── */
.footer-bottom {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.36);
}

.footer-social-row {
  display: flex;
  gap: 20px;
}

.footer-social-row a {
  color: rgba(255, 255, 255, 0.36);
  font-size: 13.5px;
  transition: color 180ms ease;
}

.footer-social-row a:hover {
  color: rgba(255, 255, 255, 0.82);
}

@media (prefers-reduced-motion: no-preference) {
  .hero-copy,
  .hero-visual,
  .intro-grid,
  .practice-item,
  .booking-panel,
  .content-card,
  .character-media,
  .social-link {
    animation: fade-up 700ms ease both;
  }

  .hero-visual {
    animation-delay: 120ms;
  }

  .visual-panel {
    animation: float-panel 7s ease-in-out infinite;
  }
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float-panel {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@media (max-width: 900px) {
  .site-header {
    padding-inline: 12px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 72px;
    left: 12px;
    right: 12px;
    padding: 10px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 252, 246, 0.96);
    box-shadow: var(--shadow);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    justify-content: center;
  }

  .section-inner {
    width: min(720px, calc(100% - 28px));
  }

  .hero-section {
    padding-top: 108px;
  }

  .hero-grid,
  .split-layout,
  .schedule-grid,
  .social-grid,
  .character-grid,
  .content-heading-row,
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 38px;
    min-width: 0;
  }

  .hero-grid {
    min-height: auto;
  }

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

  .visual-panel {
    width: 88%;
    min-height: 300px;
    padding: 30px;
  }

  .portrait-stage {
    right: 18px;
    width: min(96%, 440px);
    height: 500px;
  }

  .intro-grid,
  .content-cards {
    grid-template-columns: 1fr;
  }

  .intro-grid > div,
  .intro-grid > div:nth-child(2),
  .intro-grid > div:last-child {
    padding: 24px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .intro-grid > div:last-child {
    border-bottom: 0;
  }

  .section-heading {
    position: static;
  }

  .section-block {
    padding: 78px 0;
  }

  .content-card {
    min-height: 260px;
  }

  .social-link {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .social-arrow {
    display: none;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}

@media (max-width: 560px) {
  .brand-lockup span {
    max-width: 10.5em;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  h1 {
    font-size: 40px;
    line-height: 1.03;
  }

  .hero-lede {
    font-size: 19px;
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

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

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

  .hero-socials a {
    justify-content: center;
  }

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

  .visual-panel {
    width: 100%;
    min-height: 270px;
  }

  .visual-logo {
    width: 118px;
    height: 118px;
  }

  .visual-copy strong {
    font-size: 24px;
  }

  .portrait-stage {
    width: 350px;
    height: 450px;
    right: 50%;
    transform: translateX(50%);
  }

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

  .booking-panel,
  .content-card {
    padding: 24px;
  }
}
