/* US TaeKwonDo Center — Home */
@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Outfit:wght@300;400;500;600;700&display=swap");

:root {
  --ink: #0c1524;
  --ink-soft: #1a2740;
  --navy: #14315a;
  --red: #c8102e;
  --red-deep: #9e0c24;
  --paper: #f4f6f9;
  --mist: #e8edf4;
  --muted: #5a6a7e;
  --white: #ffffff;
  --line: rgba(20, 49, 90, 0.12);
  --max: 1120px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --font-display: "Bebas Neue", Impact, sans-serif;
  --font-body: "Outfit", "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(1200px 600px at 10% -10%, rgba(200, 16, 46, 0.06), transparent 55%),
    radial-gradient(900px 500px at 100% 0%, rgba(20, 49, 90, 0.08), transparent 50%),
    linear-gradient(180deg, #f7f9fc 0%, var(--paper) 40%, #eef2f7 100%);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

.container {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

/* —— Header —— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.site-header > .container {
  width: min(100% - 2rem, 1200px);
}

.header-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.45rem 1rem;
  padding-top: 0.85rem;
  padding-bottom: 0.65rem;
  min-height: 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: 0;
}

.brand-mark {
  width: 4.25rem;
  height: 4.25rem;
  border-radius: 50%;
  object-fit: contain;
  object-position: center;
  flex-shrink: 0;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  image-rendering: auto;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
}

.brand-text {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.4vw, 2.35rem);
  letter-spacing: 0.07em;
  line-height: 0.95;
  color: var(--ink);
  white-space: nowrap;
  font-weight: 400;
}

.brand-text span {
  color: var(--red);
}

.nav-toggle {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 0.5rem;
  cursor: pointer;
  place-items: center;
  gap: 5px;
  flex-direction: column;
}

.nav-toggle span {
  display: block;
  width: 1.15rem;
  height: 2px;
  background: var(--ink);
  transition: transform 0.3s var(--ease), opacity 0.2s;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  flex: 1 1 100%;
  gap: 0.2rem;
  min-width: 0;
  margin-top: 0.15rem;
  padding-top: 0.45rem;
  border-top: 1px solid var(--line);
}

.site-nav a {
  position: relative;
  flex: 0 0 auto;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
  padding: 0.7rem 0.85rem;
  color: var(--ink-soft);
  border-radius: 0.35rem;
  transition: color 0.2s, background 0.2s;
}

.site-nav a:hover {
  color: var(--red);
  background: rgba(200, 16, 46, 0.05);
}

.site-nav a.is-active {
  color: var(--red);
  background: transparent;
}

.site-nav a.is-active::after {
  content: "";
  position: absolute;
  left: 0.85rem;
  right: 0.85rem;
  bottom: 0.35rem;
  height: 2px;
  background: var(--red);
  border-radius: 1px;
}

html.hide-summercamp .nav-summercamp {
  display: none !important;
}


.nav-social {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: 0.4rem;
  margin-left: 0.65rem;
  padding-left: 0.75rem;
  border-left: 1px solid var(--line);
}

.nav-social a {
  display: grid;
  place-items: center;
  width: 2.15rem;
  height: 2.15rem;
  padding: 0;
  border-radius: 0.4rem;
  background: var(--paper);
}

.nav-social a:hover {
  background: rgba(200, 16, 46, 0.08);
}

.nav-social a.is-active::after {
  display: none;
}

.nav-social img {
  width: 1rem;
  height: 1rem;
}

/* —— Hero —— */
.hero {
  position: relative;
  min-height: min(92vh, 820px);
  display: grid;
  align-items: end;
  color: var(--white);
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transform: scale(1.04);
  animation: hero-ken 18s var(--ease) forwards;
}

@keyframes hero-ken {
  to {
    transform: scale(1);
  }
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(8, 14, 28, 0.88) 0%, rgba(8, 14, 28, 0.55) 48%, rgba(8, 14, 28, 0.28) 100%),
    linear-gradient(0deg, rgba(8, 14, 28, 0.75) 0%, transparent 45%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: clamp(4rem, 12vh, 7rem) 0 clamp(3rem, 8vh, 5rem);
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
  max-width: 38rem;
}

.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 8vw, 5.2rem);
  letter-spacing: 0.03em;
  line-height: 0.92;
  margin-bottom: 1rem;
  opacity: 1;
  animation: rise 0.9s var(--ease) 0.15s both;
}

.hero-brand span {
  display: block;
  color: #ff6b7a;
}

.hero-lead {
  font-size: clamp(1.05rem, 2.2vw, 1.25rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 0.85rem;
  max-width: 28rem;
  opacity: 1;
  animation: rise 0.9s var(--ease) 0.35s both;
}

.hero-copy {
  font-size: 0.98rem;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 1.75rem;
  max-width: 26rem;
  opacity: 1;
  animation: rise 0.9s var(--ease) 0.5s both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  opacity: 1;
  animation: rise 0.9s var(--ease) 0.65s both;
}

@keyframes rise {
  from {
    opacity: 0.01;
    transform: translateY(1.25rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 3rem;
  padding: 0.7rem 1.35rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: 0.4rem;
  border: 1.5px solid transparent;
  transition: transform 0.25s var(--ease), background 0.2s, color 0.2s, border-color 0.2s;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--red);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--red-deep);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}

.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}

/* —— Sections —— */
.section {
  padding: clamp(3.5rem, 8vw, 5.5rem) 0;
}

.section-head {
  margin-bottom: clamp(1.75rem, 4vw, 2.5rem);
  max-width: 36rem;
}

.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.5rem;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  letter-spacing: 0.03em;
  line-height: 1;
  color: var(--ink);
  margin-bottom: 0.75rem;
}

.section-head p {
  color: var(--muted);
  font-size: 1.02rem;
}

/* Programs — interaction tiles */
.programs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.program {
  position: relative;
  display: block;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 0.35rem;
  background: var(--ink);
  isolation: isolate;
}

.program img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.program::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(8, 14, 28, 0.88) 100%);
  z-index: 1;
}

.program-label {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 2;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 1.7rem);
  letter-spacing: 0.06em;
  color: var(--white);
  line-height: 1;
}

.program-label small {
  display: block;
  margin-top: 0.35rem;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  opacity: 0;
  transform: translateY(0.4rem);
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
}

.program:hover img,
.program:focus-visible img {
  transform: scale(1.08);
}

.program:hover .program-label small,
.program:focus-visible .program-label small {
  opacity: 1;
  transform: translateY(0);
}

/* About */
.about {
  background: var(--white);
  border-block: 1px solid var(--line);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
}

.about-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  letter-spacing: 0.03em;
  line-height: 1;
  margin-bottom: 1rem;
}

.about-intro {
  color: var(--muted);
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

.values {
  display: grid;
  gap: 0.85rem;
}

.values li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  align-items: start;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--line);
  font-size: 0.95rem;
  color: var(--ink-soft);
}

.values li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.values strong {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.04em;
  color: var(--red);
  line-height: 1;
  min-width: 1.5rem;
}

.about-visual {
  position: relative;
}

.about-visual img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 0.35rem;
}

.about-visual::before {
  content: "";
  position: absolute;
  inset: 1rem -1rem -1rem 1rem;
  border: 1.5px solid var(--red);
  border-radius: 0.35rem;
  z-index: -1;
  opacity: 0.55;
}

/* Curriculum */
.curriculum-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
}

.curriculum-visual img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 0.35rem;
}

.skill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.skill-list li {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--navy);
  background: var(--mist);
  padding: 0.45rem 0.8rem;
  border-radius: 0.3rem;
}

/* CTA band */
.cta-band {
  background:
    linear-gradient(120deg, var(--ink) 0%, var(--navy) 55%, #1a3a66 100%);
  color: var(--white);
  padding: clamp(3rem, 7vw, 4.5rem) 0;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: "";
  position: absolute;
  width: 40rem;
  height: 40rem;
  right: -12rem;
  top: -18rem;
  background: radial-gradient(circle, rgba(200, 16, 46, 0.35), transparent 65%);
  pointer-events: none;
}

.cta-inner {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.cta-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3rem);
  letter-spacing: 0.03em;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.cta-inner p {
  color: rgba(255, 255, 255, 0.72);
  max-width: 28rem;
}

/* Footer */
.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.78);
  padding: 2.5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 1.25rem;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 0.6rem;
}

.footer-brand span {
  color: #ff6b7a;
}

.footer-grid h3 {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 0.85rem;
}

.footer-grid a,
.footer-grid p {
  font-size: 0.92rem;
  display: block;
  margin-bottom: 0.4rem;
}

.footer-grid a:hover {
  color: #ff6b7a;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
}

/* Reveal on scroll — visible by default so content never stays hidden */
.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* —— Responsive —— */
@media (max-width: 960px) {
  .programs-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-grid,
  .curriculum-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .about-visual {
    order: -1;
    max-width: 28rem;
  }

  .about-visual::before {
    inset: 0.75rem -0.75rem -0.75rem 0.75rem;
  }

  .curriculum-visual {
    max-width: 22rem;
  }
}

@media (max-width: 1050px) and (min-width: 821px) {
  .site-nav {
    gap: 0;
  }

  .site-nav a {
    font-size: 0.84rem;
    padding: 0.65rem 0.55rem;
  }

  .site-nav a.is-active::after {
    left: 0.55rem;
    right: 0.55rem;
  }

  .nav-social {
    margin-left: 0.35rem;
    padding-left: 0.5rem;
  }
}

@media (max-width: 820px) {
  .nav-toggle {
    display: grid;
  }

  .header-inner {
    flex-wrap: nowrap;
    min-height: 5rem;
    padding-top: 0.35rem;
    padding-bottom: 0.35rem;
  }

  .brand-mark {
    width: 3.5rem;
    height: 3.5rem;
  }

  .site-nav {
    position: fixed;
    inset: 5rem 0 auto 0;
    flex: none;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    margin-top: 0;
    padding: 0.75rem 1.25rem 1.25rem;
    border-top: 0;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s var(--ease), opacity 0.25s;
  }

  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    padding: 0.9rem 0.5rem;
    border-bottom: 1px solid var(--line);
    font-size: 1rem;
    white-space: nowrap;
  }

  .site-nav a.is-active::after {
    display: none;
  }

  .site-nav a.is-active {
    background: rgba(200, 16, 46, 0.06);
  }

  .nav-social {
    margin: 0.75rem 0 0;
    padding: 0.75rem 0 0;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .hero {
    min-height: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }

  .hero-media {
    position: relative;
    inset: auto;
    height: min(52vh, 420px);
    min-height: 240px;
    flex-shrink: 0;
  }

  .hero-media img {
    object-position: center 25%;
    transform: none;
    animation: none;
  }

  .hero-media::after {
    background: linear-gradient(
      180deg,
      rgba(8, 14, 28, 0.15) 0%,
      rgba(8, 14, 28, 0.35) 55%,
      rgba(8, 14, 28, 0.88) 100%
    );
  }

  .hero-content {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 1.6rem 1.25rem 2.1rem;
    background: linear-gradient(180deg, #101a2c 0%, #0c1524 100%);
    box-sizing: border-box;
  }

  .hero-brand {
    font-size: clamp(2.35rem, 11vw, 3.1rem);
    animation: none;
    opacity: 1;
    transform: none;
  }

  .hero-lead,
  .hero-copy,
  .hero-actions {
    animation: none;
    opacity: 1;
    transform: none;
  }

  .hero-lead {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.92);
  }

  .hero-copy {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.78);
    margin-bottom: 1.35rem;
  }

  .hero-actions .btn {
    flex: 1 1 auto;
    min-width: calc(50% - 0.4rem);
  }

  .program-nav {
    top: 5rem;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 1.75rem, var(--max));
  }

  .hero-content {
    width: 100%;
    padding: 1.5rem 1.1rem 2rem;
  }

  .programs-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.65rem;
  }

  .program {
    aspect-ratio: 3 / 3.6;
  }

  .brand-text {
    font-size: 1.45rem;
    letter-spacing: 0.05em;
  }

  .brand-mark {
    width: 3.35rem;
    height: 3.35rem;
  }

  .cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* —— Inner page hero —— */
.page-hero {
  position: relative;
  min-height: clamp(220px, 36vh, 340px);
  display: grid;
  align-items: end;
  color: var(--white);
  overflow: hidden;
}

.page-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  image-rendering: auto;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0) scale(1.01);
}

.page-hero--locations .page-hero-media img {
  object-position: center 40%;
}

.page-hero--trial .page-hero-media img {
  object-position: center 28%;
}

.page-hero--master .page-hero-media img {
  object-position: center 35%;
}

.page-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(8, 14, 28, 0.82) 0%, rgba(8, 14, 28, 0.45) 55%, rgba(8, 14, 28, 0.3) 100%),
    linear-gradient(0deg, rgba(8, 14, 28, 0.5) 0%, transparent 55%);
}

.page-hero-content {
  position: relative;
  z-index: 1;
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
  padding: 3.5rem 0 2.25rem;
}

.page-hero-content .section-label {
  color: #ff6b7a;
}

.page-hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 3.8rem);
  letter-spacing: 0.03em;
  line-height: 0.95;
  margin-bottom: 0.55rem;
}

.page-hero-content p {
  max-width: 32rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.02rem;
}

/* Program subnav */
.program-nav {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 7.75rem;
  z-index: 90;
}

.program-nav-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
  padding: 0.65rem 0;
  overflow-x: auto;
}

.program-nav a {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.5rem 0.85rem;
  color: var(--muted);
  border-radius: 0.35rem;
  white-space: nowrap;
  transition: color 0.2s, background 0.2s;
}

.program-nav a:hover,
.program-nav a.is-active {
  color: var(--red);
  background: rgba(200, 16, 46, 0.06);
}

/* Content layouts */
.page-section {
  padding: clamp(2.5rem, 6vw, 4rem) 0;
}

.prose {
  max-width: 42rem;
  color: var(--ink-soft);
  font-size: 1.02rem;
}

.prose p {
  margin-bottom: 1.1rem;
}

.prose h2,
.prose h3 {
  font-family: var(--font-display);
  letter-spacing: 0.03em;
  color: var(--ink);
  line-height: 1;
  margin: 1.75rem 0 0.85rem;
}

.prose h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
}

.prose h3 {
  font-size: clamp(1.4rem, 2.8vw, 1.8rem);
}

.check-list {
  display: grid;
  gap: 0.65rem;
  margin: 1.25rem 0 1.75rem;
}

.check-list li {
  position: relative;
  padding-left: 1.5rem;
  color: var(--ink-soft);
  font-size: 0.98rem;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.55rem;
  height: 0.55rem;
  background: var(--red);
  border-radius: 0.1rem;
}

.split {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(1.75rem, 4vw, 3rem);
  align-items: start;
}

.split-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 0.35rem;
}

.poster-frame {
  max-width: 720px;
  margin: 0 auto;
}

.poster-frame img {
  width: 100%;
  height: auto;
  border-radius: 0.35rem;
  box-shadow: 0 18px 50px rgba(12, 21, 36, 0.12);
}

.schedule-frame {
  max-width: 960px;
  margin: 0 auto;
}

.schedule-frame img {
  width: 100%;
  height: auto;
  border-radius: 0.35rem;
  border: 1px solid var(--line);
  background: var(--white);
}

.master-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: clamp(1.75rem, 4vw, 3rem);
  align-items: start;
}

.master-photo {
  position: sticky;
  top: 6rem;
}

.master-photo img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 0.35rem;
}

.master-meta {
  margin-top: 1rem;
  font-size: 0.92rem;
  color: var(--muted);
}

.master-meta a {
  color: var(--red);
  font-weight: 600;
}

.master-meta a:hover {
  text-decoration: underline;
}

.accomplish-list {
  display: grid;
  gap: 0.7rem;
  margin: 1rem 0 2rem;
}

.accomplish-list li {
  padding: 0.85rem 1rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 0.35rem;
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.45;
}

.leadership-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.leadership-grid img {
  width: 100%;
  height: auto;
  border-radius: 0.35rem;
  border: 1px solid var(--line);
  background: var(--white);
}

.map-frame {
  width: 100%;
  min-height: 420px;
  border: 0;
  border-radius: 0.35rem;
  border: 1px solid var(--line);
  background: var(--mist);
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 2.5rem);
  margin-top: 2rem;
}

.info-block h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.03em;
  margin-bottom: 0.65rem;
}

.info-block p,
.info-block a {
  color: var(--muted);
  font-size: 0.98rem;
  display: block;
  margin-bottom: 0.35rem;
}

.info-block a:hover {
  color: var(--red);
}

.price-panel {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin: 1.75rem 0;
}

.price-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 0.35rem;
  padding: 1.35rem 1.25rem;
}

.price-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2.4rem;
  letter-spacing: 0.02em;
  color: var(--red);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.price-item span {
  color: var(--muted);
  font-size: 0.92rem;
}

.quote {
  margin-top: 1.5rem;
  padding: 1.25rem 1.35rem;
  border-left: 3px solid var(--red);
  background: var(--mist);
  color: var(--ink-soft);
  font-style: italic;
  border-radius: 0 0.35rem 0.35rem 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.65rem;
}

.gallery-grid a {
  display: block;
  overflow: hidden;
  border-radius: 0.3rem;
  aspect-ratio: 1;
  background: var(--mist);
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.gallery-grid a:hover img {
  transform: scale(1.06);
}

@media (max-width: 960px) {
  .split,
  .master-layout,
  .location-grid {
    grid-template-columns: 1fr;
  }

  .master-photo {
    position: static;
    max-width: 280px;
  }

  .leadership-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 560px) {
  .page-hero-content {
    width: min(100% - 1.75rem, var(--max));
  }

  .price-panel {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .program-nav {
    top: 5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .hero-media img {
    transform: none;
  }

  .hero-brand,
  .hero-lead,
  .hero-copy,
  .hero-actions,
  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}
