:root {
  --color-bg: #faf8f3;
  --color-bg-alt: #f0ebe2;
  --color-surface: #ffffff;
  --color-text: #2c2a26;
  --color-muted: #6b6560;
  --color-gold: #b8954a;
  --color-gold-dark: #8a6f35;
  --color-green: #3d5c4a;
  --color-green-dark: #2a4034;
  --font-sans: "Noto Sans KR", system-ui, sans-serif;
  --font-en: "Cormorant Garamond", Georgia, serif;
  --shadow-soft: 0 12px 40px rgba(44, 42, 38, 0.08);
  --radius: 12px;
  --header-h: 92px;
  --hero-gold-soft: rgba(212, 181, 120, 0.22);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--color-text);
  background: var(--color-bg);
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--color-green);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--color-gold-dark);
}

.container {
  width: min(1120px, 100% - 2rem);
  margin-inline: auto;
}

.container.narrow {
  width: min(720px, 100% - 2rem);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 248, 243, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(184, 149, 74, 0.2);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1120px, 100% - 2rem);
  margin-inline: auto;
  min-height: var(--header-h);
  padding-block: 0.5rem;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
}

.logo:hover .logo-img {
  opacity: 0.92;
}

.logo-img {
  display: block;
  height: clamp(64px, 18vw, 102px);
  width: auto;
  max-width: min(640px, 92vw);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.site-nav a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-text);
  text-decoration: none;
}

.site-nav a:hover {
  color: var(--color-gold-dark);
}

.nav-cta {
  padding: 0.5rem 1rem;
  background: var(--color-green);
  color: #fff !important;
  border-radius: 999px;
}

.nav-cta:hover {
  background: var(--color-green-dark);
  color: #fff !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-text);
  margin-inline: auto;
  transition: transform 0.2s, opacity 0.2s;
}

@media (max-width: 880px) {
  .nav-toggle {
    display: flex;
  }

  .site-nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1rem;
    background: var(--color-surface);
    border-bottom: 1px solid rgba(184, 149, 74, 0.25);
    box-shadow: var(--shadow-soft);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }

  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    padding: 0.85rem 1rem;
    border-radius: var(--radius);
  }

  .site-nav a:hover {
    background: var(--color-bg-alt);
  }

  .nav-cta {
    text-align: center;
    margin-top: 0.5rem;
  }
}

/* Hero */
@keyframes hero-rise {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero {
  position: relative;
  min-height: min(84vh, 720px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(3.5rem, 8vw, 5.5rem) 1.5rem clamp(4.5rem, 10vw, 6.5rem);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(145deg, rgba(34, 48, 42, 0.94) 0%, rgba(22, 32, 28, 0.96) 42%, rgba(14, 18, 16, 0.98) 100%),
    radial-gradient(ellipse 90% 70% at 50% 0%, rgba(184, 149, 74, 0.18), transparent 55%),
    radial-gradient(ellipse 60% 50% at 85% 75%, rgba(61, 92, 74, 0.35), transparent 50%);
}

.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.hero-slides img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.25s cubic-bezier(0.45, 0, 0.15, 1);
}

.hero-slides img.is-active {
  opacity: 1;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.6s ease;
  background:
    radial-gradient(ellipse 120% 80% at 50% 100%, rgba(4, 6, 5, 0.82) 0%, transparent 58%),
    radial-gradient(ellipse 70% 55% at 0% 50%, rgba(8, 12, 10, 0.45) 0%, transparent 45%),
    radial-gradient(ellipse 70% 55% at 100% 40%, rgba(8, 12, 10, 0.4) 0%, transparent 45%),
    linear-gradient(168deg, rgba(18, 24, 22, 0.35) 0%, rgba(12, 16, 14, 0.25) 38%, rgba(6, 8, 7, 0.72) 100%),
    linear-gradient(to top, rgba(0, 0, 0, 0.5) 0%, transparent 42%);
}

.hero.hero--slideshow .hero-scrim {
  opacity: 1;
}

.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 52rem;
  margin-inline: auto;
  padding-inline: 1rem;
  color: #faf7f0;
}

.hero-content-inner {
  text-align: center;
}

.hero-content-inner > * {
  animation: hero-rise 0.85s ease-out both;
}

.hero-content-inner > *:nth-child(1) {
  animation-delay: 0.05s;
}
.hero-content-inner > *:nth-child(2) {
  animation-delay: 0.12s;
}
.hero-content-inner > *:nth-child(3) {
  animation-delay: 0.2s;
}

.hero h1 {
  margin: 0;
  font-size: clamp(2.55rem, 6.2vw, 3.85rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.14;
  color: #fffcf5;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.06),
    0 2px 24px rgba(0, 0, 0, 0.45),
    0 12px 48px rgba(0, 0, 0, 0.35);
}

.hero-sub {
  margin: 0.65rem 0 1.65rem;
  font-family: var(--font-en);
  font-size: clamp(1.35rem, 2.8vw, 1.85rem);
  font-weight: 500;
  font-style: italic;
  color: rgba(255, 250, 240, 0.92);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.35), 0 0 40px var(--hero-gold-soft);
}

.hero-lead {
  margin: 0 auto 0;
  max-width: 36em;
  font-size: clamp(1rem, 1.9vw, 1.14rem);
  font-weight: 300;
  line-height: 1.82;
  letter-spacing: -0.01em;
  color: rgba(248, 244, 236, 0.94);
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.35);
}

@media (prefers-reduced-motion: reduce) {
  .hero-content-inner > * {
    animation: none;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.35rem;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 999px;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: var(--color-gold);
  color: #1a1816;
  border-color: var(--color-gold);
}

.btn-primary:hover {
  background: #c9a55a;
  color: #1a1816;
}

.btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.45);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.btn-outline {
  background: transparent;
  color: var(--color-green);
  border-color: var(--color-green);
}

.btn-outline:hover {
  background: var(--color-green);
  color: #fff;
}

/* Contact bar */
.contact-bar {
  background: var(--color-surface);
  border-block: 1px solid rgba(184, 149, 74, 0.2);
  box-shadow: var(--shadow-soft);
}

.contact-bar-inner {
  display: grid;
  gap: 1.25rem;
  padding-block: 1.5rem;
}

@media (min-width: 768px) {
  .contact-bar-inner {
    grid-template-columns: 1fr 1fr 1.4fr;
    align-items: start;
  }
}

.contact-bar strong {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 0.25rem;
}

.contact-bar a {
  font-weight: 600;
  font-size: 1.1rem;
}

/* Sections */
.section {
  padding-block: 4rem;
}

.section-alt {
  background: var(--color-bg-alt);
}

.section-title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.5rem, 3vw, 1.85rem);
  font-weight: 700;
  text-align: center;
  letter-spacing: -0.02em;
}

.section-lead,
.section-intro {
  margin: 0 auto;
  text-align: center;
  color: var(--color-muted);
  max-width: 52ch;
}

.section-intro {
  margin-bottom: 2.5rem;
}

/* Cards */
.cards {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 900px) {
  .cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

.card {
  background: var(--color-surface);
  padding: 1.75rem;
  border-radius: var(--radius);
  border: 1px solid rgba(184, 149, 74, 0.15);
  box-shadow: var(--shadow-soft);
}

.card h3 {
  margin: 0 0 1rem;
  font-size: 1.1rem;
  color: var(--color-green-dark);
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--color-gold);
}

.card ul {
  margin: 0;
  padding-left: 1.15rem;
}

.card li {
  margin-bottom: 0.5rem;
}

.card li:last-child {
  margin-bottom: 0;
}

/* Admission */
.admission-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 960px) {
  .admission-grid {
    grid-template-columns: 1.2fr 1fr 0.9fr;
    align-items: start;
  }
}

.admission-block {
  background: var(--color-surface);
  padding: 1.75rem;
  border-radius: var(--radius);
  border: 1px solid rgba(61, 92, 74, 0.12);
}

.admission-block h3 {
  margin: 0 0 1rem;
  font-size: 1.05rem;
  color: var(--color-green-dark);
}

.admission-block > p:first-of-type {
  margin-top: 0;
  color: var(--color-muted);
  font-size: 0.95rem;
}

.check-list,
.doc-list {
  margin: 0;
  padding-left: 1.15rem;
}

.check-list li,
.doc-list li {
  margin-bottom: 0.45rem;
}

.flow {
  margin: 1.25rem 0 0;
  padding: 1rem;
  font-size: 0.9rem;
  background: var(--color-bg-alt);
  border-radius: 8px;
  border-left: 4px solid var(--color-gold);
  color: var(--color-text);
}

/* Location — 오시는 길 */
.section-location {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--color-bg-alt) 0%, #e8e1d4 48%, var(--color-bg-alt) 100%);
}

.section-location::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image: radial-gradient(rgba(61, 92, 74, 0.07) 1px, transparent 1px);
  background-size: 16px 16px;
  pointer-events: none;
}

.location-wrap {
  position: relative;
  z-index: 1;
  max-width: 36rem;
  margin-inline: auto;
}

.location-head {
  text-align: center;
  margin-bottom: 2rem;
}

.location-title {
  margin: 0 0 0.35rem;
  font-size: clamp(1.55rem, 3.2vw, 1.95rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--color-text);
}

.location-eyebrow {
  margin: 0 0 0.85rem;
  font-family: var(--font-en);
  font-size: 1.05rem;
  font-weight: 500;
  font-style: italic;
  color: var(--color-gold-dark);
  letter-spacing: 0.04em;
}

.location-lead {
  margin: 0 auto;
  max-width: 34ch;
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--color-muted);
}

.location-panel {
  background: var(--color-surface);
  border-radius: 20px;
  padding: clamp(1.35rem, 4vw, 2rem);
  border: 1px solid rgba(184, 149, 74, 0.22);
  box-shadow:
    0 4px 24px rgba(44, 42, 38, 0.06),
    0 18px 48px rgba(61, 92, 74, 0.07);
}

.location-address-list {
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid rgba(184, 149, 74, 0.18);
}

.location-row {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  text-align: left;
}

.location-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  color: var(--color-green-dark);
  background: linear-gradient(145deg, rgba(61, 92, 74, 0.08), rgba(184, 149, 74, 0.12));
  border: 1px solid rgba(61, 92, 74, 0.12);
}

.location-icon svg {
  display: block;
}

.location-row-text {
  min-width: 0;
  flex: 1;
}

.location-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 0.25rem;
}

.location-value {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.5;
  color: var(--color-text);
  letter-spacing: -0.02em;
}

.location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.location-map-btn {
  flex: 1 1 auto;
  min-width: min(100%, 8.5rem);
  padding: 0.65rem 1.15rem;
  font-weight: 600;
  font-size: 0.92rem;
  text-align: center;
  border-radius: 999px;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.location-map-btn:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 3px;
}

.location-map-btn--kakao {
  color: #3c1e1e;
  background: #fee500;
  border: 1px solid rgba(60, 30, 30, 0.12);
  box-shadow: 0 2px 10px rgba(254, 229, 0, 0.35);
}

.location-map-btn--kakao:hover {
  color: #3c1e1e;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(254, 229, 0, 0.45);
}

.location-map-btn--naver {
  color: #fff;
  background: var(--color-green);
  border: 1px solid rgba(42, 64, 52, 0.35);
  box-shadow: 0 2px 12px rgba(61, 92, 74, 0.25);
}

.location-map-btn--naver:hover {
  color: #fff;
  background: var(--color-green-dark);
  transform: translateY(-1px);
}

@media (max-width: 480px) {
  .location-actions {
    flex-direction: column;
  }

  .location-map-btn {
    min-width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .location-map-btn:hover {
    transform: none;
  }
}

/* Footer */
.site-footer {
  background: var(--color-green-dark);
  color: #e8e4dc;
  padding: 2.5rem 0 2rem;
  margin-top: 0;
}

.footer-inner {
  text-align: center;
}

.footer-brand {
  margin-bottom: 1rem;
}

.footer-brand strong {
  display: block;
  font-size: 1.1rem;
  color: #fff;
}

.footer-brand span {
  font-family: var(--font-en);
  font-style: italic;
  color: var(--color-gold);
  letter-spacing: 0.06em;
}

.footer-contact p {
  margin: 0.35rem 0;
  font-size: 0.9rem;
}

.footer-contact a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-contact a:hover {
  color: var(--color-gold);
}

.copyright {
  margin: 1.5rem 0 0;
  font-size: 0.8rem;
  opacity: 0.7;
}

/* Home — facilities preview */
.preview-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
  margin-top: 0.5rem;
}

/* Subpages */
.subpage-main {
  padding-block: 2rem 3.5rem;
}

.breadcrumb {
  font-size: 0.9rem;
  color: var(--color-muted);
  margin-bottom: 1rem;
}

.breadcrumb a {
  color: var(--color-muted);
}

.breadcrumb a:hover {
  color: var(--color-green);
}

.subpage-title {
  margin: 0 0 0.5rem;
  font-size: clamp(1.45rem, 3vw, 1.85rem);
  letter-spacing: -0.02em;
}

.subpage-lead {
  margin: 0 0 0.75rem;
  color: var(--color-muted);
  max-width: 60ch;
}

.subpage-meta {
  margin: 0 0 0.35rem;
  font-size: 0.95rem;
}

.subpage-meta code,
.subpage-note code {
  font-size: 0.85em;
  padding: 0.1rem 0.35rem;
  background: var(--color-bg-alt);
  border-radius: 4px;
}

.subpage-note {
  margin: 0.75rem 0 0;
  font-size: 0.9rem;
  color: var(--color-muted);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Facility hub */
.hub-grid {
  display: grid;
  gap: 1.25rem;
  margin-top: 1rem;
  padding-bottom: 2rem;
}

@media (min-width: 640px) {
  .hub-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .hub-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.hub-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  background: var(--color-surface);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(184, 149, 74, 0.18);
  box-shadow: var(--shadow-soft);
  transition: transform 0.15s ease, box-shadow 0.2s ease;
}

.hub-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(44, 42, 38, 0.12);
}

.hub-card-thumb {
  aspect-ratio: 4 / 3;
  background: var(--color-bg-alt);
  overflow: hidden;
}

.hub-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hub-card-thumb--empty {
  min-height: 140px;
  background: linear-gradient(135deg, var(--color-bg-alt), #e4ddd2);
}

.hub-card-body {
  padding: 1.1rem 1.25rem 1.25rem;
}

.hub-card-body h2 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
  color: var(--color-green-dark);
}

.hub-card-body p {
  margin: 0 0 0.65rem;
  font-size: 0.88rem;
  color: var(--color-muted);
  line-height: 1.55;
}

.hub-card-count {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-gold-dark);
}

/* Gallery grid */
.gallery-wrap {
  margin-top: 1.5rem;
}

.gallery-grid {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 240px), 1fr));
}

.gallery-item {
  margin: 0;
  border-radius: 10px;
  overflow: hidden;
  background: var(--color-surface);
  border: 1px solid rgba(61, 92, 74, 0.1);
}

.gallery-link {
  display: block;
  line-height: 0;
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.25s ease;
}

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

.gallery-link:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 2px;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(20, 18, 16, 0.88);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 1rem;
  cursor: zoom-out;
}

.lightbox[hidden] {
  display: none;
}

.lightbox img {
  max-width: min(96vw, 1200px);
  max-height: 88vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 6px;
  cursor: default;
}

.lightbox-close {
  position: fixed;
  top: 1rem;
  right: 1rem;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.28);
}

/* Nav — current page */
.site-nav a.nav-active {
  color: var(--color-gold-dark);
  font-weight: 600;
}

/* Admission page */
/* 입소 안내 — 헤더와 본문 사이 배너 */
.admission-banner {
  position: relative;
  margin: 0;
  width: 100%;
  aspect-ratio: 21 / 8;
  max-height: min(42vh, 420px);
  min-height: 160px;
  overflow: hidden;
  background: linear-gradient(135deg, #e4dfd6 0%, #cec6b8 50%, #c5bda8 100%);
}

.admission-banner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 640px) {
  .admission-banner {
    aspect-ratio: 16 / 9;
    max-height: none;
    min-height: 140px;
  }
}

.admission-page-hero {
  padding: 2rem 0 2.5rem;
  background: linear-gradient(160deg, var(--color-green-dark) 0%, #1e2d26 55%, #162018 100%);
  color: #f0ebe4;
  border-bottom: 1px solid rgba(184, 149, 74, 0.2);
}

.admission-page-hero .breadcrumb {
  color: rgba(240, 235, 228, 0.65);
}

.admission-page-hero .breadcrumb a {
  color: rgba(240, 235, 228, 0.75);
}

.admission-page-hero .breadcrumb a:hover {
  color: var(--color-gold);
}

.admission-page-title {
  margin: 0.35rem 0 0.65rem;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
}

.admission-page-lead {
  margin: 0;
  max-width: 46ch;
  font-size: 1.02rem;
  line-height: 1.7;
  color: rgba(240, 235, 228, 0.88);
}

.admission-detail-section .admission-block h2 {
  margin: 0 0 1rem;
  font-size: 1.12rem;
  color: var(--color-green-dark);
}

.admission-grid--page .admission-block--accent {
  border-color: rgba(184, 149, 74, 0.28);
  box-shadow: 0 8px 32px rgba(44, 42, 38, 0.06);
}

.inquiry-section .section-title {
  margin-bottom: 0.5rem;
}

.inquiry-intro {
  margin-bottom: 1.75rem;
}

.inquiry-inner {
  max-width: 560px;
}

.inquiry-form {
  background: var(--color-surface);
  padding: 1.75rem 1.5rem;
  border-radius: var(--radius);
  border: 1px solid rgba(61, 92, 74, 0.12);
  box-shadow: var(--shadow-soft);
}

.form-row {
  display: grid;
  gap: 1rem;
}

@media (min-width: 520px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.form-field--full {
  width: 100%;
}

.form-label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-text);
}

.form-label .req {
  color: #b45309;
}

.inquiry-form input[type="text"],
.inquiry-form input[type="tel"],
.inquiry-form input[type="email"],
.inquiry-form textarea {
  width: 100%;
  padding: 0.65rem 0.85rem;
  font-family: inherit;
  font-size: 1rem;
  border: 1px solid rgba(61, 92, 74, 0.2);
  border-radius: 8px;
  background: #fff;
  color: var(--color-text);
}

.inquiry-form input[type="text"]:focus,
.inquiry-form input[type="tel"]:focus,
.inquiry-form input[type="email"]:focus,
.inquiry-form textarea:focus {
  outline: 2px solid rgba(184, 149, 74, 0.45);
  outline-offset: 1px;
  border-color: rgba(184, 149, 74, 0.5);
}

.inquiry-form textarea {
  resize: vertical;
  min-height: 8rem;
}

.form-consent {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: flex-start;
  gap: 0.65rem;
  margin: 0.5rem 0 1rem;
  max-width: 100%;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--color-muted);
  cursor: pointer;
}

.form-consent input[type="checkbox"] {
  width: 1.05rem;
  height: 1.05rem;
  margin: 0.2rem 0 0;
  flex-shrink: 0;
  accent-color: var(--color-green);
}

.form-consent > span {
  flex: 1;
  min-width: 0;
  text-align: left;
}

.inquiry-submit {
  display: block;
  width: 100%;
  max-width: 16rem;
  margin: 0.25rem auto 0;
  text-align: center;
}

.contact-strip-section {
  padding-bottom: 3rem;
}

.contact-strip {
  display: grid;
  gap: 1.15rem;
  padding: 1.75rem;
  background: var(--color-surface);
  border-radius: var(--radius);
  border: 1px solid rgba(184, 149, 74, 0.2);
  box-shadow: var(--shadow-soft);
}

@media (min-width: 640px) {
  .contact-strip {
    grid-template-columns: 1fr 1fr;
  }

  .contact-strip-item--wide {
    grid-column: 1 / -1;
  }
}

.contact-strip-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.contact-strip-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-muted);
}

.contact-strip-item a,
.contact-strip-item span:last-child {
  font-size: 1.02rem;
  font-weight: 500;
  color: var(--color-text);
  text-decoration: none;
}

.contact-strip-item a:hover {
  color: var(--color-gold-dark);
  text-decoration: underline;
}

/* —— Program page (slideshow + hero) —— */
.page-program-main {
  padding-top: 0;
  padding-bottom: 4rem;
}

.program-hero {
  position: relative;
  padding: 2.25rem 0 2.75rem;
  margin-bottom: 0;
  overflow: hidden;
  background: linear-gradient(
    165deg,
    #f7f3eb 0%,
    #ebe4d6 45%,
    #e2d8c8 100%
  );
  border-bottom: 1px solid rgba(138, 111, 53, 0.18);
}

.program-hero__texture {
  position: absolute;
  inset: 0;
  opacity: 0.45;
  background-image: radial-gradient(rgba(61, 92, 74, 0.06) 1px, transparent 1px);
  background-size: 14px 14px;
  pointer-events: none;
}

.program-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 52rem;
}

.program-hero__breadcrumb {
  margin-bottom: 1.25rem;
}

.program-hero__eyebrow {
  margin: 0 0 0.35rem;
  font-family: var(--font-en);
  font-size: clamp(0.95rem, 2vw, 1.05rem);
  font-weight: 500;
  font-style: italic;
  letter-spacing: 0.06em;
  color: var(--color-green-dark);
  opacity: 0.9;
}

.program-hero__title {
  margin: 0 0 0.25rem;
  font-size: clamp(2rem, 5vw, 2.65rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--color-text);
}

.program-hero__en {
  margin: 0 0 1rem;
  font-family: var(--font-en);
  font-size: clamp(1.35rem, 3.5vw, 1.85rem);
  font-weight: 500;
  font-style: italic;
  color: var(--color-gold-dark);
  letter-spacing: 0.02em;
}

.program-hero__lead {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--color-muted);
  max-width: 42rem;
}

.program-hero__stats {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1.25rem;
  margin-top: 1.65rem;
  padding-top: 1.35rem;
  border-top: 1px solid rgba(184, 149, 74, 0.28);
}

.program-hero__stat {
  font-size: 0.95rem;
  color: var(--color-muted);
}

.program-hero__stat strong {
  color: var(--color-green-dark);
  font-weight: 700;
}

.program-hero__stat-div {
  width: 1px;
  height: 1rem;
  background: rgba(184, 149, 74, 0.35);
}

.program-hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem 1rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  background: var(--color-green);
  border-radius: 999px;
  box-shadow: 0 4px 14px rgba(61, 92, 74, 0.25);
  transition: background 0.2s ease, transform 0.15s ease;
}

.program-hero__cta:hover {
  background: var(--color-green-dark);
  color: #fff;
  transform: translateY(-1px);
}

.program-hero__cta--outline {
  background: rgba(255, 255, 255, 0.55);
  color: var(--color-green-dark);
  border: 1.5px solid rgba(61, 92, 74, 0.42);
  box-shadow: 0 2px 12px rgba(44, 42, 38, 0.06);
}

.program-hero__cta--outline:hover {
  background: #fff;
  color: var(--color-green-dark);
  border-color: var(--color-green);
}

.page-facilities-hub-main {
  padding-top: 0;
  padding-bottom: 3.5rem;
}

.facilities-hero--hub .program-hero__inner {
  text-align: center;
  margin-inline: auto;
  max-width: 46rem;
}

.facilities-hero--hub .program-hero__stats {
  justify-content: center;
}

.facilities-hub-spaces {
  padding: 2.25rem 0 0;
}

.hub-grid--facilities {
  gap: 1.25rem;
  margin-top: 0.35rem;
  padding-bottom: 0.5rem;
}

@media (min-width: 960px) {
  .hub-grid--facilities {
    gap: 1.5rem;
  }
}

.hub-grid--facilities .hub-card {
  border-radius: 16px;
  border: 1px solid rgba(184, 149, 74, 0.22);
  box-shadow:
    0 4px 22px rgba(44, 42, 38, 0.07),
    0 14px 36px rgba(61, 92, 74, 0.06);
}

.hub-grid--facilities .hub-card:hover {
  box-shadow: 0 14px 44px rgba(44, 42, 38, 0.11);
}

.hub-grid--facilities .hub-card-thumb {
  border-radius: 15px 15px 0 0;
}

@media (max-width: 600px) {
  .facilities-hero--hub .program-hero__stat-div {
    display: none;
  }
}

.program-gallery-section {
  padding: 2.5rem 0 0;
}

.program-gallery-section__head {
  text-align: center;
  margin-bottom: 1.75rem;
}

.program-gallery-section__title {
  margin: 0 0 0.35rem;
  font-size: clamp(1.2rem, 2.5vw, 1.45rem);
  font-weight: 700;
  color: var(--color-green-dark);
  letter-spacing: -0.02em;
}

.program-gallery-section__sub {
  margin: 0;
  font-family: var(--font-en);
  font-size: 1rem;
  font-style: italic;
  color: var(--color-gold-dark);
  letter-spacing: 0.04em;
}

.program-showcase {
  background: var(--color-surface);
  border-radius: 20px;
  padding: clamp(0.85rem, 2vw, 1.35rem);
  border: 1px solid rgba(184, 149, 74, 0.22);
  box-shadow:
    0 4px 24px rgba(44, 42, 38, 0.06),
    0 24px 56px rgba(61, 92, 74, 0.08);
}

.program-slideshow__viewport {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background: #1a1816;
  outline: none;
  aspect-ratio: 16 / 10;
  max-height: min(72vh, 640px);
  margin-inline: auto;
}

.program-slideshow__viewport:focus-visible {
  box-shadow: 0 0 0 3px var(--color-gold), 0 0 0 5px var(--color-surface);
}

.program-slideshow__slides {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 200px;
}

.program-slideshow__slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.65s ease;
}

.program-slideshow__slide.is-active {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}

.program-slideshow__link {
  display: block;
  width: 100%;
  height: 100%;
  line-height: 0;
  cursor: zoom-in;
}

.program-slideshow__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.program-slideshow__nav {
  position: absolute;
  top: 50%;
  z-index: 3;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--color-green-dark);
  font-size: 1.65rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.18);
  transition: background 0.2s ease, transform 0.15s ease;
}

.program-slideshow__nav:hover {
  background: #fff;
  transform: translateY(-50%) scale(1.05);
}

.program-slideshow__nav:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 2px;
}

.program-slideshow__nav--prev {
  left: clamp(0.5rem, 2vw, 1rem);
}

.program-slideshow__nav--next {
  right: clamp(0.5rem, 2vw, 1rem);
}

.program-slideshow__toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem 1rem;
  margin-top: 1rem;
  padding-inline: 0.15rem;
}

.program-slideshow__counter {
  margin: 0;
  font-family: var(--font-en);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--color-green-dark);
  letter-spacing: 0.04em;
}

.program-slideshow__counter-sep {
  margin: 0 0.35rem;
  opacity: 0.45;
}

.program-slideshow__hint {
  margin: 0;
  font-size: 0.82rem;
  color: var(--color-muted);
}

.program-slideshow__thumbs-wrap {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(184, 149, 74, 0.15);
}

.program-slideshow__thumbs {
  display: flex;
  gap: 0.55rem;
  overflow-x: auto;
  padding: 0.25rem 0.15rem 0.5rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.program-slideshow__thumbs::-webkit-scrollbar {
  height: 6px;
}

.program-slideshow__thumbs::-webkit-scrollbar-thumb {
  background: rgba(184, 149, 74, 0.35);
  border-radius: 999px;
}

.program-slideshow__thumb {
  flex: 0 0 clamp(68px, 16vw, 92px);
  height: clamp(52px, 12vw, 70px);
  padding: 0;
  border: 2px solid transparent;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  scroll-snap-align: start;
  background: var(--color-bg-alt);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
}

.program-slideshow__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.78;
  transition: opacity 0.2s ease;
}

.program-slideshow__thumb:hover img,
.program-slideshow__thumb.is-current img {
  opacity: 1;
}

.program-slideshow__thumb.is-current {
  border-color: var(--color-gold);
  box-shadow: 0 0 0 1px rgba(184, 149, 74, 0.35);
}

.program-slideshow__thumb:focus-visible {
  outline: 2px solid var(--color-green);
  outline-offset: 2px;
}

.program-empty {
  padding: 2rem 1.5rem;
  text-align: center;
  background: var(--color-surface);
  border-radius: var(--radius);
  border: 1px dashed rgba(184, 149, 74, 0.35);
  color: var(--color-muted);
}

.program-empty code {
  font-size: 0.85em;
}

@media (max-width: 600px) {
  .program-slideshow__nav {
    width: 40px;
    height: 40px;
    font-size: 1.4rem;
  }

  .program-slideshow__viewport {
    aspect-ratio: 4 / 3;
    max-height: none;
  }

  .program-hero__stat-div {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .program-slideshow__slide {
    transition-duration: 0.01ms;
  }

  .program-slideshow__nav:hover {
    transform: translateY(-50%);
  }
}
