:root {
  --ink: #171511;
  --muted: #72695f;
  --paper: #fbf7ef;
  --soft: #f0e8db;
  --line: rgba(23, 21, 17, 0.12);
  --green: #8a7357;
  --blue: #5f4f3d;
  --clay: #a86f52;
  --gold: #c8ad7f;
  --shadow: 0 18px 45px rgba(70, 54, 38, 0.13);
  --shell: min(1160px, calc(100% - 40px));
  --ease: 220ms ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Noto Sans KR", sans-serif;
  word-break: keep-all;
  overflow-wrap: break-word;
  background: var(--paper);
}

body.intro-lock {
  overflow: hidden;
}

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

a {
  color: inherit;
}

code {
  padding: 0.08em 0.34em;
  border-radius: 5px;
  color: var(--blue);
  font-family: inherit;
  font-weight: 800;
  background: rgba(138, 115, 87, 0.13);
}

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

h1,
h2,
h3 {
  letter-spacing: 0;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 253, 248, 0.86);
  backdrop-filter: blur(14px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 700;
  text-decoration: none;
}

.brand img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

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

.site-nav a {
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 800;
  text-decoration: none;
  transition: color var(--ease);
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--ink);
}

.site-nav .nav-cta {
  padding: 10px 16px;
  border-radius: 6px;
  color: #fff;
  background: var(--green);
}

.nav-toggle {
  display: none;
  border: 0;
  padding: 0;
  background: transparent;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 6px 0;
  background: var(--ink);
  transition: transform var(--ease);
}

.intro-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 44%, rgba(200, 173, 127, 0.08), transparent 20%),
    linear-gradient(135deg, #171511 0%, #211912 46%, #3a2d21 100%);
  transition: opacity 600ms ease, visibility 600ms ease;
}

.intro-overlay.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.intro-mark {
  display: grid;
  justify-items: center;
  gap: 10px;
  animation: introFloat 1500ms ease forwards;
}

.intro-mark span {
  color: #fff;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(4.8rem, 14vw, 9rem);
  font-weight: 700;
  line-height: 0.9;
}

.intro-mark small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.home-hero,
.page-hero {
  position: relative;
  min-height: 68svh;
  overflow: hidden;
  display: grid;
  align-items: end;
  color: #fff;
}

.brand-hero {
  position: relative;
  overflow: hidden;
  min-height: 72svh;
  display: grid;
  align-items: center;
  color: #fff;
  background:
    radial-gradient(circle at 52% 36%, rgba(214, 186, 146, 0.12), transparent 18%),
    linear-gradient(135deg, rgba(86, 61, 44, 0.98), rgba(122, 90, 64, 0.96) 58%, rgba(162, 127, 94, 0.93));
}

.brand-hero__texture {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background:
    repeating-linear-gradient(90deg, transparent 0 38px, rgba(255, 255, 255, 0.14) 38px 39px),
    repeating-linear-gradient(0deg, transparent 0 38px, rgba(255, 255, 255, 0.12) 38px 39px),
    linear-gradient(120deg, transparent, rgba(200, 173, 127, 0.22));
}

.brand-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 860px;
  padding: 92px 0 70px;
}

.brand-hero__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 170px;
  min-height: 96px;
  margin-bottom: 28px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
}

.brand-hero__mark span {
  color: #f6f0e7;
  font-family: "Cormorant Garamond", serif;
  font-size: 4.2rem;
  font-weight: 700;
  line-height: 1;
}

.brand-hero h1 {
  margin-bottom: 14px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(5rem, 16vw, 12rem);
  line-height: 0.8;
}

.brand-hero p {
  max-width: 680px;
  color: rgba(246, 240, 231, 0.82);
  font-size: 1.12rem;
  line-height: 1.78;
}

.brand-hero .eyebrow {
  color: rgba(200, 173, 127, 0.92);
}

.home-hero img,
.image-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
}

.home-hero__overlay,
.page-hero__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(12, 16, 20, 0.76), rgba(12, 16, 20, 0.38) 48%, rgba(12, 16, 20, 0.1));
}

.home-hero__copy,
.page-hero__copy {
  position: relative;
  z-index: 1;
  max-width: 760px;
  padding: 92px 0 74px;
}

.home-hero h1 {
  margin-bottom: 14px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(5rem, 15vw, 12rem);
  line-height: 0.8;
}

.page-hero h1 {
  margin-bottom: 18px;
  font-size: clamp(2.5rem, 7vw, 5.6rem);
  line-height: 1.08;
}

.home-hero p,
.page-hero p {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.1rem;
  line-height: 1.78;
}

.compact-hero {
  min-height: 420px;
  color: var(--ink);
  background: linear-gradient(135deg, #f8f2e8, #efe4d4 52%, #f4eadb);
}

.about-hero,
.ltad-hero {
  overflow: hidden;
}

.about-hero::before,
.ltad-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.55;
  background:
    repeating-linear-gradient(90deg, transparent 0 42px, rgba(21, 26, 31, 0.06) 42px 43px),
    repeating-linear-gradient(0deg, transparent 0 42px, rgba(21, 26, 31, 0.05) 42px 43px);
}

.about-hero::after,
.ltad-hero::after {
  content: "PLIÉ";
  position: absolute;
  right: max(24px, calc((100vw - 1160px) / 2));
  bottom: -0.18em;
  color: rgba(138, 115, 87, 0.14);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(7rem, 22vw, 18rem);
  font-weight: 700;
  line-height: 1;
}

.ltad-hero {
  background: linear-gradient(135deg, #f8f2e8, #efe4d4 48%, #f4eadb);
}

.compact-hero .page-hero__copy {
  padding-top: 84px;
  padding-bottom: 56px;
}

.compact-hero p {
  color: var(--muted);
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border: 0;
  border-radius: 6px;
  font: inherit;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
}

.button.primary {
  color: #fff;
  background: var(--green);
}

.button.secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.82);
}

.section {
  padding: 86px 0;
}

.band {
  background: var(--soft);
}

.home-links {
  padding: 28px 0 86px;
  background: var(--paper);
}

.link-grid,
.value-grid,
.stage-table,
.video-grid,
.contact-grid,
.news-grid,
.branch-grid,
.home-program-grid,
.name-board {
  display: grid;
  gap: 16px;
}

.link-grid {
  grid-template-columns: repeat(4, 1fr);
}

.link-panel,
.value-grid article,
.stage-table article,
.video-card,
.contact-grid a,
.contact-grid button,
.news-card,
.branch-card,
.home-program-grid article,
.name-board article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fcf9f2;
  box-shadow: var(--shadow);
}

.link-panel {
  min-height: 210px;
  padding: 24px;
  text-decoration: none;
}

.link-panel span,
.stage-table span,
.instructor-profile span,
.contact-grid span,
.home-program-grid span,
.name-board span {
  display: block;
  margin-bottom: 12px;
  color: var(--clay);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  white-space: nowrap;
  text-transform: uppercase;
}

.link-panel strong {
  display: block;
  margin-bottom: 12px;
  font-size: 1.7rem;
}

.link-panel p,
.value-grid p,
.stage-table p,
.text-stack p,
.program-row p,
.instructor-profile p,
.video-card p,
.contact-copy p,
.home-program-grid p,
.name-board p,
.home-instructor-preview p {
  color: var(--muted);
  line-height: 1.76;
}

.link-panel.accent {
  color: #fff;
  background: var(--green);
}

.link-panel.accent p,
.link-panel.accent span {
  color: rgba(255, 255, 255, 0.82);
}

.two-column,
.ltad-grid,
.report-strip,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 42px;
  align-items: center;
}

.section-heading h2,
.contact-copy h2,
.text-stack h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 5vw, 4.3rem);
  line-height: 1.15;
}

.section-heading.wide {
  max-width: 920px;
  margin-bottom: 34px;
}

.evidence-section {
  background: #fff;
}

.evidence-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.evidence-grid article {
  min-height: 270px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
  box-shadow: var(--shadow);
}

.evidence-grid span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 6px;
  color: #fff;
  font-weight: 900;
  background: var(--green);
}

.evidence-grid h3 {
  margin-bottom: 12px;
  font-size: 1.35rem;
}

.evidence-grid p {
  color: var(--muted);
  line-height: 1.72;
}

.figure-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 36px;
  align-items: center;
}

.development-figure {
  display: grid;
  gap: 14px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.figure-axis {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  text-align: center;
}

.figure-row {
  display: grid;
  grid-template-columns: 78px 1fr minmax(120px, 0.58fr);
  gap: 14px;
  align-items: center;
}

.figure-row b {
  color: var(--green);
}

.figure-row i {
  position: relative;
  display: block;
  height: 18px;
  overflow: hidden;
  border-radius: 999px;
  background: var(--soft);
}

.figure-row i::after {
  content: "";
  display: block;
  width: var(--w);
  height: 100%;
  border-radius: inherit;
  background: var(--green);
}

.figure-row.skill i::after {
  background: var(--blue);
}

.figure-row.load i::after {
  background: var(--clay);
}

.figure-row.mind i::after {
  background: var(--gold);
}

.figure-row em {
  color: var(--muted);
  font-style: normal;
  line-height: 1.45;
}

.research-band {
  background:
    linear-gradient(135deg, rgba(138, 115, 87, 0.1), rgba(200, 173, 127, 0.14)),
    #fff;
}

.research-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 36px;
  align-items: center;
}

.research-layout h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 5vw, 4.1rem);
  line-height: 1.15;
}

.research-layout p {
  color: var(--muted);
  line-height: 1.76;
}

.research-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.research-list article {
  min-height: 138px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.research-list strong,
.research-list span {
  display: block;
}

.research-list strong {
  margin-bottom: 8px;
  color: var(--green);
  font-size: 1.12rem;
}

.research-list span {
  color: var(--muted);
  line-height: 1.6;
}

.research-list.compact article {
  min-height: 116px;
}

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

.home-program-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.home-program-grid article {
  min-height: 230px;
  padding: 24px;
}

.home-program-grid h3 {
  margin-bottom: 12px;
  font-size: 1.55rem;
}

.home-instructor-preview {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 42px;
  align-items: center;
}

.home-instructor-preview h2,
.final-cta h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 5vw, 4.3rem);
  line-height: 1.15;
}

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

.name-board article {
  min-height: 152px;
  padding: 22px;
}

.name-board strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.3rem;
}

.name-board article:first-child {
  grid-column: 1 / -1;
  color: #fff;
  background: var(--green);
}

.name-board article:first-child span,
.name-board article:first-child p {
  color: rgba(255, 255, 255, 0.8);
}

.final-cta {
  color: #fff;
  background: var(--green);
}

.final-cta p {
  color: rgba(255, 255, 255, 0.82);
}

.value-grid article,
.stage-table article {
  padding: 26px;
}

.value-grid span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  color: #fff;
  border-radius: 6px;
  font-weight: 900;
  background: var(--blue);
}

.program-list,
.instructor-stack {
  display: grid;
  gap: 18px;
}

.program-row {
  display: grid;
  grid-template-columns: 70px 1fr auto;
  gap: 22px;
  align-items: center;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.program-row > span {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  color: #fff;
  border-radius: 6px;
  font-weight: 900;
  background: var(--green);
}

.program-row h2 {
  margin-bottom: 8px;
  font-size: 2rem;
}

.program-row strong {
  color: var(--blue);
  font-size: 0.9rem;
  text-transform: uppercase;
}

.report-strip {
  grid-template-columns: 1fr 0.7fr 0.7fr;
}

.report-strip img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  object-position: top center;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.report-image-button {
  display: block;
  width: 100%;
  border: 0;
  padding: 0;
  border-radius: 8px;
  cursor: zoom-in;
  background: transparent;
}

.report-image-button img {
  width: 100%;
  max-height: 420px;
  object-fit: contain;
  object-position: center;
  border-radius: 8px;
  background: #f7f3e9;
  box-shadow: var(--shadow);
}

.curve-panel {
  position: relative;
  min-height: 430px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.92)),
    repeating-linear-gradient(90deg, transparent 0 90px, rgba(21, 26, 31, 0.05) 90px 91px);
  box-shadow: var(--shadow);
}

.system-panel {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(23, 21, 17, 0.96), rgba(95, 79, 61, 0.96)),
    var(--green);
  box-shadow: var(--shadow);
}

.system-panel span {
  display: block;
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.system-panel strong {
  display: block;
  margin-bottom: 22px;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.05;
}

.system-panel ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.system-panel li {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.curve-line {
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: 18%;
  height: 58%;
  border-left: 4px solid var(--green);
  border-bottom: 4px solid var(--green);
  border-radius: 0 0 0 8px;
}

.curve-line::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  border-top: 5px solid var(--clay);
  border-radius: 60% 42% 0 0;
  transform: skewY(-16deg);
  transform-origin: left bottom;
}

.curve-stage {
  position: absolute;
  width: 118px;
  padding: 12px;
  border-radius: 8px;
  color: #fff;
  background: var(--green);
  box-shadow: var(--shadow);
}

.curve-stage b,
.curve-stage span {
  display: block;
}

.curve-stage span {
  margin-top: 4px;
  font-size: 0.82rem;
  opacity: 0.86;
}

.stage-a { left: 8%; bottom: 10%; }
.stage-b { left: 24%; bottom: 28%; background: var(--blue); }
.stage-c { left: 43%; bottom: 44%; background: var(--clay); }
.stage-d { left: 62%; bottom: 58%; background: var(--gold); color: var(--ink); }
.stage-e { right: 8%; top: 12%; }

.stage-table {
  grid-template-columns: repeat(5, 1fr);
}

.photo-block img {
  width: 100%;
  max-height: 620px;
  object-fit: cover;
  object-position: center 18%;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.instructor-profile {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 30px;
  align-items: start;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.profile-photo {
  display: block;
  width: 100%;
  border: 0;
  padding: 0;
  border-radius: 6px;
  cursor: zoom-in;
  background: #f7f3e9;
}

.instructor-profile img {
  width: 100%;
  height: 320px;
  object-fit: contain;
  object-position: center;
  border-radius: 6px;
  background: #f7f3e9;
}

.instructor-profile > div {
  align-self: center;
  padding: 12px 8px;
}

.instructor-profile h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 4vw, 3.7rem);
}

.resume-block {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.resume-block h3 {
  margin-bottom: 12px;
  color: var(--green);
  font-size: 1.05rem;
}

.resume-block ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 1.15rem;
  color: var(--muted);
  line-height: 1.68;
}

.resume-block .resume-divider {
  margin-top: 8px;
  margin-left: -1.15rem;
  list-style: none;
  color: var(--ink);
  font-weight: 900;
}

.instructor-profile dl {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
}

.instructor-profile dl div {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.instructor-profile dt {
  color: var(--green);
  font-weight: 900;
}

.instructor-profile dd {
  margin: 0;
  color: var(--muted);
}

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

.video-card {
  overflow: hidden;
}

.video-thumb {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 360px;
  background: var(--green);
}

.video-thumb.warm {
  background: var(--clay);
}

.video-thumb img {
  width: 128px;
  height: 128px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.9);
}

.video-thumb button {
  position: absolute;
  right: 20px;
  bottom: 20px;
  left: 20px;
  min-height: 50px;
  border: 0;
  border-radius: 6px;
  color: var(--ink);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  background: #fff;
}

.video-card h2,
.video-card p {
  margin-right: 24px;
  margin-left: 24px;
}

.video-card h2 {
  margin-top: 24px;
}

.video-card p {
  margin-bottom: 24px;
}

.news-hero {
  background: linear-gradient(135deg, #f8f2e8, #efe4d4 46%, #f4eadb);
}

.news-hero .page-hero__copy {
  max-width: 980px;
}

.news-hero h1 {
  max-width: 940px;
  font-size: clamp(2.7rem, 6vw, 5rem);
  line-height: 1.08;
}

.news-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.news-card {
  overflow: hidden;
}

.news-card.featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
}

.news-visual {
  min-height: 320px;
  width: 100%;
  border: 0;
  padding: 0;
  background: var(--soft);
  cursor: zoom-in;
}

.logo-visual {
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--green));
}

.logo-visual span {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(4rem, 12vw, 8rem);
  font-weight: 700;
}

.report-visual img {
  width: 100%;
  height: 360px;
  object-fit: contain;
  object-position: center;
  background: #f7f3e9;
}

.news-copy {
  padding: 26px;
}

.news-copy span {
  display: block;
  margin-bottom: 12px;
  color: var(--clay);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.news-copy h2 {
  margin-bottom: 12px;
  font-size: 1.6rem;
}

.news-copy p {
  color: var(--muted);
  line-height: 1.72;
}

.event-section {
  padding-top: 0;
}

.event-section--soft {
  background: linear-gradient(180deg, rgba(247, 243, 233, 0.48), rgba(247, 243, 233, 0.88));
}

.event-section__intro {
  max-width: 760px;
  margin-bottom: 28px;
}

.event-section__intro h2 {
  margin-bottom: 12px;
}

.event-section__intro p:last-child {
  color: var(--muted);
  line-height: 1.72;
}

.event-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
}

.event-gallery__item {
  overflow: hidden;
  aspect-ratio: 3 / 4;
  border: 0;
  border-radius: 8px;
  padding: 0;
  cursor: zoom-in;
  background: #f7f3e9;
  box-shadow: var(--shadow);
}

.event-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.event-gallery__item:hover img,
.event-gallery__item:focus-visible img {
  transform: scale(1.03);
}

.upload-guide {
  display: grid;
  align-content: center;
  min-height: 360px;
  background: var(--soft);
}

.image-modal {
  position: fixed;
  inset: 0;
  z-index: 170;
  display: none;
  place-items: center;
  padding: 24px;
}

.image-modal.is-open {
  display: grid;
}

.image-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(12, 16, 20, 0.76);
}

.image-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(1080px, 100%);
  max-height: calc(100vh - 48px);
  padding: 16px;
  border-radius: 8px;
  background: #fff;
}

.image-modal-dialog button {
  display: block;
  margin: 0 0 12px auto;
  border: 0;
  color: var(--green);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  background: transparent;
}

.image-modal-dialog img {
  width: 100%;
  max-height: calc(100vh - 116px);
  object-fit: contain;
  background: #f7f3e9;
}

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

.contact-grid a {
  min-height: 132px;
  padding: 24px;
  text-decoration: none;
}

.contact-grid button {
  min-height: 132px;
  padding: 24px;
  text-align: left;
  font: inherit;
  cursor: pointer;
}

.contact-grid strong {
  display: block;
  font-size: 1.18rem;
  overflow-wrap: anywhere;
}

.copy-status {
  min-height: 1.4em;
  margin: 12px 0 0;
  color: var(--green);
  font-weight: 800;
}

.branch-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.branch-card {
  overflow: hidden;
}

.branch-info {
  padding: 26px;
}

.branch-info span {
  display: block;
  margin-bottom: 12px;
  color: var(--clay);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.branch-info h3 {
  margin-bottom: 10px;
  font-size: 1.45rem;
}

.branch-info p {
  color: var(--muted);
  line-height: 1.7;
}

.branch-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.branch-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 6px;
  color: #fff;
  font-weight: 900;
  text-decoration: none;
  background: var(--green);
}

.branch-actions a + a {
  color: var(--ink);
  background: var(--soft);
}

.branch-card iframe {
  display: block;
  width: 100%;
  height: 320px;
  border: 0;
  background: var(--soft);
}

.welcome-popup {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 130;
  width: min(390px, calc(100% - 32px));
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
  transform: translateY(18px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 360ms ease, transform 360ms ease;
}

.welcome-popup.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.popup-close {
  position: absolute;
  top: 12px;
  right: 12px;
  border: 0;
  color: var(--muted);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  background: transparent;
}

.popup-actions {
  display: flex;
  gap: 10px;
}

.popup-actions a {
  flex: 1;
  padding: 12px;
  border-radius: 6px;
  color: #fff;
  font-weight: 900;
  text-align: center;
  text-decoration: none;
  background: var(--green);
}

.popup-actions a + a {
  color: var(--ink);
  background: var(--soft);
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 160;
  display: none;
  place-items: center;
  padding: 24px;
}

.video-modal.is-open {
  display: grid;
}

.video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(12, 16, 20, 0.72);
}

.video-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(920px, 100%);
  padding: 18px;
  border-radius: 8px;
  background: #fff;
}

.video-modal-dialog button {
  display: block;
  margin: 0 0 12px auto;
  border: 0;
  color: var(--green);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  background: transparent;
}

.video-modal video {
  width: 100%;
  max-height: 70vh;
  border-radius: 6px;
  background: #111;
}

.site-footer {
  padding: 28px 0 42px;
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 620ms ease, transform 620ms ease;
}

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

@keyframes introFloat {
  0% { opacity: 0; transform: translateY(18px) scale(0.9); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 980px) {
  .link-grid,
  .value-grid,
  .stage-table,
  .video-grid,
  .news-grid,
  .contact-grid,
  .branch-grid,
  .home-program-grid,
  .home-instructor-preview,
  .name-board,
  .evidence-grid,
  .figure-layout,
  .research-layout,
  .research-list,
  .two-column,
  .ltad-grid,
  .report-strip,
  .contact-layout,
  .instructor-profile {
    grid-template-columns: 1fr;
  }

  .program-row {
    grid-template-columns: 54px 1fr;
  }

  .program-row strong {
    grid-column: 2;
  }

  .stage-table {
    gap: 12px;
  }

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

}

@media (max-width: 760px) {
  :root {
    --shell: min(100% - 22px, 1160px);
  }

  .header-inner {
    min-height: 68px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 68px;
    right: 11px;
    left: 11px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: var(--shadow);
  }

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

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

  .site-header.menu-open .nav-toggle span:first-child {
    transform: translateY(8px) rotate(45deg);
  }

  .site-header.menu-open .nav-toggle span:last-child {
    transform: translateY(-8px) rotate(-45deg);
  }

  .home-hero,
  .page-hero {
    min-height: 620px;
  }

  .home-hero__copy,
  .page-hero__copy {
    padding-top: 72px;
    padding-bottom: 48px;
  }

  .section {
    padding: 62px 0;
  }

  .program-row,
  .instructor-profile {
    padding: 16px;
  }

  .program-row {
    align-items: start;
  }

  .instructor-profile img {
    height: 360px;
  }

  .news-card.featured {
    grid-template-columns: 1fr;
  }

  .event-gallery {
    grid-template-columns: 1fr;
  }

  .event-gallery__item {
    aspect-ratio: 3 / 4;
  }

  .curve-panel {
    min-height: 560px;
  }

  .curve-stage {
    position: static;
    width: auto;
    margin: 12px;
  }

  .curve-line {
    display: none;
  }

  .button,
  .button-row {
    width: 100%;
  }

  .footer-inner {
    flex-direction: column;
  }
}
