@media (max-width: 768px) {
  .brand-title {
    top: 12px;
    left: 16px;
    padding: var(--header-padding-block) var(--header-padding-inline);
  }

  .brand-logo {
    height: 28px;
  }

  .site-header {
    padding-block: var(--header-padding-block);
    padding-right: var(--header-padding-inline);
    padding-left: calc(var(--brand-width) + var(--header-padding-inline) + 16px);
  }
}

.site-header {
  position: fixed;
  left: 0; right: 0;
  top: 0;
  z-index: 1000;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: var(--header-padding-block) var(--header-padding-inline);
  min-height: calc(var(--header-padding-block) * 2 + 32px);
  background: transparent;
  color: #fff;
  transition:
    transform var(--hdr-transform-duration) var(--hdr-transform-ease),
    opacity   var(--hdr-transform-duration) var(--hdr-transform-ease),
    color     var(--hdr-color-duration) var(--hdr-color-ease);
  will-change: transform, opacity, color;
  isolation: isolate;
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  opacity: 0;
  transition: opacity var(--hdr-color-duration) var(--hdr-color-ease);
  background-image: linear-gradient(
    var(--gradient-direction),
    hsla(var(--gradient-hsl-values), .80)   0%,
    hsla(var(--gradient-hsl-values), .79)   8.3%,
    hsla(var(--gradient-hsl-values), .761) 16.2%,
    hsla(var(--gradient-hsl-values), .717) 23.9%,
    hsla(var(--gradient-hsl-values), .66)  31.4%,
    hsla(var(--gradient-hsl-values), .593) 38.6%,
    hsla(var(--gradient-hsl-values), .518) 45.6%,
    hsla(var(--gradient-hsl-values), .44)  52.3%,
    hsla(var(--gradient-hsl-values), .36)  58.9%,
    hsla(var(--gradient-hsl-values), .282) 65.2%,
    hsla(var(--gradient-hsl-values), .207) 71.3%,
    hsla(var(--gradient-hsl-values), .140) 77.4%,
    hsla(var(--gradient-hsl-values), .083) 83.3%,
    hsla(var(--gradient-hsl-values), .039) 89%,
    hsla(var(--gradient-hsl-values), .010) 94.5%,
    hsla(var(--gradient-hsl-values), 0)   100%
  );
}

.site-header::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  opacity: 0;
  transition: opacity var(--hdr-color-duration) var(--hdr-color-ease);
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(8px);
  box-shadow: var(--hdr-shadow);
}

.site-header.is-hidden   { transform: translate3d(0,-100%,0); opacity: 0; }

.site-header.is-gradient::before { opacity: 1; }
.site-header.is-scrolled::after { opacity: 1; }

.site-header.is-scrolled .brand-title { color: #111; mix-blend-mode: normal; }
.site-header.is-gradient .brand-title { color: #fff; }
.site-header.is-gradient .nav-item { color: #fff; }

.brand-title {
  position: fixed;
  padding: var(--header-padding-block) var(--header-padding-inline);
  z-index: 2000;
  display: flex;
  align-items: center;
  font-weight: 400;
  font-size: clamp(20px, 2.6vw, 20px);
  line-height: 1;
  letter-spacing: 0.02em;
  color: #fff;
  mix-blend-mode: difference;
  text-decoration: none;
  transition: color var(--hdr-color-duration) var(--hdr-color-ease);
}

.brand-logo {
  height: 32px;
  width: auto;
  transition: filter var(--hdr-color-duration) var(--hdr-color-ease);
}

.site-header .navbar {
  position: static;
  top: auto;
  right: auto;
  width: auto;
  max-width: none;
  min-height: auto;
  background: transparent;
  box-shadow: none;
  padding: 0;
}

.site-header nav .nav-item {
  margin: 0 12px;
  position: relative;
  text-decoration: none;
  cursor: pointer;
}

.site-header nav .nav-item > a {
  text-decoration: none;
  color: inherit;
}

.site-header nav .nav-item::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s;
}

.site-header nav .nav-item:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

@media (prefers-reduced-motion: reduce) {
  .site-header,
  .site-header::before,
  .site-header::after,
  .brand-title {
    transition: none !important;
  }
}

/* ===== Hero slideshow (Embla) ===== */
.hero-slideshow {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.embla {
  position: relative;
  height: 100%;
}

.embla__viewport {
  overflow: hidden;
  height: 100%;
}

.embla__container {
  display: flex;
  height: 100%;
}

/* ===== Static page hero ===== */
.page-hero {
  position: relative;
  width: 100%;
  height: min(50vh, 520px);
  min-height: clamp(200px, 100vh, 420px);
  margin: 0;
  overflow: hidden;
  border-radius: 0;
  background: #111;
}

.page-hero__media {
  position: absolute;
  inset: 0;
}

.page-hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(32px, 8vw, 96px) clamp(20px, 8vw, 160px);
  color: #fff;
  background: linear-gradient(135deg, rgba(0,0,0,0.58) 0%, rgba(0,0,0,0.28) 50%, rgba(0,0,0,0.58) 100%);
  z-index: 1;
}

.page-hero__title {
  position: relative;
  z-index: 1;
  margin: 0;
  font-weight: 400;
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  letter-spacing: 0.25em;
  text-shadow: 0 12px 32px rgba(0,0,0,0.45);
}

.page-hero__eyebrow {
  font-size: 0.8rem;
  color: rgb(214, 212, 212);
  letter-spacing: 0.28em;
  font-weight: 500;
  text-shadow: 0 12px 32px rgba(0,0,0,0.45);
}

@media (max-width: 640px) {
  .page-hero__overlay {
    padding: clamp(28px, 12vw, 72px) clamp(20px, 8vw, 64px);
  }
}

.embla__slide {
  flex: 0 0 100%;
  position: relative;
}

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

.embla__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 2rem;
  padding-top: clamp(20px, 15vh, 190px);
  padding-bottom: clamp(20px, 15vh, 190px);
  padding-right: clamp(20px, 8vw, 350px);
  padding-left: clamp(250px, 8vw, 350px);
  color: #fff;
  background: linear-gradient(to top, rgba(0,0,0,.8) 0%, rgba(0,0,0,0) 60%);
}

.embla__copy {
  max-width: 58ch;
}

.embla__copy h1 {
  margin: 0;
  font-size: clamp(12px, 1.8vw, 18px);
  font-weight: 300;
  font-family: var(--font-myeongjo);
  line-height: 2;
  text-shadow: 0px 0px 7px black;
  animation: emblaHeadline 1400ms ease both;
}

.embla__copy h1 span {
  display: inline-block;
  font-weight: 400;
}

@keyframes emblaHeadline {
  from {
    opacity: 0;
    transform: translate3d(0, 40px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.embla__asset-text {
  position: relative;
  display: grid;
  font-size: .875rem;
  margin-left: auto;
}

.embla__asset-text a {
  color: #fff;
  text-decoration: none;
  transition: opacity .2s ease;
  opacity: .5;
}

.embla__asset-text a:hover {
  opacity: .8;
}

.asset-text {
  grid-area: 1/1;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
  display: flex;
  justify-content: flex-end;
}

.asset-text.is-active {
  opacity: 1;
  pointer-events: auto;
}

.embla__controls {
  display: flex;
  gap: 1rem;
}

.embla__prev,
.embla__next {
  box-sizing: content-box;
  width: .75rem;
  height: .75rem;
  padding: .75rem;
  border-radius: 50%;
  border: 1.5px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: #ffffff;
  opacity: .5;
  cursor: pointer;
  transition: opacity .2s, transform .2s;
}

.embla__prev svg,
.embla__next svg {
  width: 100%;
  height: 100%;
}

.embla__prev svg { margin-left: -0.125rem; }
.embla__next svg { margin-right: -0.125rem; }

.embla__prev:hover,
.embla__next:hover {
  opacity: .8;
}

.embla__prev:active,
.embla__next:active {
  transform: scale(.9);
}

.embla__prev:disabled,
.embla__next:disabled {
  opacity: .1;
}

@media (max-width: 768px) {
  .embla__overlay {
    padding-top: 0;
    padding-right: 2rem;
    padding-bottom: 2rem;
    padding-left: 2rem;
  }
  .embla__controls { gap: .5rem; }
}

/* ===== Navigation Bar (responsive + Hamburger) ===== */
.navbar {
  position: absolute;
  top: 33px;
  right: 0;
  width: 35%;
  max-width: max-content;
  min-height: max-content;
  background: white;
  box-shadow: var(--shadow-sm);
  z-index: 2;
  display: flex;
  align-items: center; 
  justify-content: center;
  padding: 28px 80px; 
}
.nav-main {
  list-style: none;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  padding: 0;
  margin: 0;
  gap: clamp(14px, 4vw, 48px);
  position: static;     /* was absolute */
  width: auto;          /* was 68% */
  max-width: none;      /* was 342px */
  min-height: 30px;     /* optional: keep or remove */
  white-space: nowrap;  /* Prevent pre-hamburger wrapping just-in-case */
}

.nav-item {
  position: relative;
  font-weight: 400;
  font-size: clamp(14px, 1.6vw, 16px);
  color: #000;
  cursor: pointer;
  transition: color 220ms ease;
}

.nav-item::after {
  content: "";
  position: absolute;
  left: 0; right: 0; top: 100%;
  height: 12px; /* focus gap */
}

.nav-item:hover { color: #333; }

.nav-sub {
  position: absolute;
  top: calc(100% + 14px);
  left: 0;
  background: #fff;
  color: #111;
  list-style: none;
  margin: 0;
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-radius: 10px;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(0, 0, 0, 0.06);
  z-index: 3;
  opacity: 0;
  transform: translateY(8px);
  visibility: hidden;
  pointer-events: none;
  transition: opacity 240ms ease, transform 240ms ease;
}

.nav-sub li {
  font-size: 14px;
  line-height: 1.6;
  white-space: nowrap;
  padding: 6px 10px;
  border-radius: 6px;
  cursor: pointer;
  color: #343433;
  transition: background-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.nav-sub li:hover {
  background: #f7f9f6;
  color: #000000;
  transform: translateX(4px);
  font-weight: 600;
}

.nav-item:hover .nav-sub,
.nav-item:focus-within .nav-sub,
.nav-sub.is-active {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
  pointer-events: auto;
}

/* === Mobile hamburger breakpoint === */
.nav-toggle {
  position: absolute;
  top: clamp(12px, 3vh, 28px);
  right: clamp(18px, 6vw, 80px);
  z-index: 3;
  display: none;
  width: 48px;
  height: 48px;
  border: 0;
  background: rgba(17, 17, 17, 0.12);
  border-radius: 999px;
  color: #fff;
  align-items: center;
  justify-content: center;
  transition: background-color .18s ease, color .18s ease;
}

.nav-toggle:hover {
  background: rgba(17, 17, 17, 0.2);
}

.nav-toggle:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 3px;
}

.nav-toggle__box {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 22px;
  gap: 5px;
}

.nav-toggle__line {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform .24s ease, opacity .18s ease;
}

.nav-toggle.is-active .nav-toggle__line--top {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-active .nav-toggle__line--middle {
  opacity: 0;
}

.nav-toggle.is-active .nav-toggle__line--bottom {
  transform: translateY(-7px) rotate(-45deg);
}

.site-header.is-scrolled .nav-toggle {
  color: #111;
  background: rgba(255, 255, 255, 0.82);
}

.site-header.is-gradient .nav-toggle {
  color: #fff;
  background: rgba(17, 17, 17, 0.18);
}

/* --- Mobile nav (≤992px) --- */
@media (max-width: 992px) {
  /* show the icon on mobile */
  .nav-toggle { display: inline-flex; }

  /* popover panel (hidden by default) */
  .navbar{
    position: absolute;
    top: 56px;          /* just below the button */
    right: 16px;
    left: auto;
    bottom: auto;
    display: none;      /* hidden until .is-open */
    width: min(82vw, 320px);
    padding: 10px 12px;
    background: rgba(255,255,255,.98);
    border-radius: 12px;
    box-shadow: 0 12px 28px rgba(0,0,0,.22);
    opacity: 0;
    transform: translateY(8px) scale(.98);
    pointer-events: none;
    transition: opacity .18s ease, transform .22s ease;
    z-index: 2;
  }
  .navbar.is-open{
    display: block;
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }

  /* hamburger's vertical list */
  .nav-main{
    position: static;
    display: flex;              /* visibility handled by parent */
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding: 4px 0;
    width: 100%;
    max-width: none;
  }

  .nav-item {
    width: 100%;
  }

  .site-header nav .nav-item::before {
    bottom: 0;
  }

  .site-header nav .nav-item > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 10px 0;
  }

  .nav-sub {
    position: static;
    margin: 0;
    padding: 0;
    background: #fff;
    color: #111;
    border-radius: 0;
    box-shadow: none;
    gap: 0;
    max-height: 0;
    opacity: 0;
    visibility: hidden;
    transform: none;
    pointer-events: none;
    overflow: hidden;
    transition: max-height .28s ease, opacity .22s ease, margin-top .22s ease, padding .22s ease;
  }

  .nav-sub li {
    padding: 0;
  }

  .nav-sub li a {
    display: block;
    padding: 8px 0 8px 16px;
    color: inherit;
    text-decoration: none;
  }

  .nav-sub li + li a {
    border-top: 1px solid rgba(17,17,17,0.06);
  }

  .nav-sub li:hover {
    background: rgba(17,17,17,0.06);
    color: inherit;
    transform: none;
    font-weight: 600;
  }

  .nav-item:hover > .nav-sub,
  .nav-item:focus-within > .nav-sub,
  .nav-sub.is-active {
    max-height: 320px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    margin-top: 4px;
    padding: 6px 0 10px;
  }

  /* touch: remove hover spacer */
  .nav-item::after { height: 0; }
}


/* ===== Body Contents: Text ===== */
.body-container {
  padding: clamp(72px, 10vw, 120px) var(--page-pad) clamp(120px, 14vw, 160px);
  background: transparent;
  box-sizing: border-box;
  display: flex;
  row-gap: 200px;
}

.article-container {
  position: relative;
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  justify-content: center;
  align-items: center;
  gap: 44px;
}

.body-container--stacked {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.body-container--stacked > * {
  margin: 0;
}

.body-container--intro {
  padding-left: 0;
  padding-right: 0;
}

.body-container--intro .article-container,
.body-container--intro .facility-grid {
  padding-left: var(--page-pad);
  padding-right: var(--page-pad);
}

.intro-button {
  align-items: center;
  margin-top: 30px;
  padding: 1rem 1.5rem;
  border: 1.35px solid #4b4b4a;
  background: var(--color-bg);
  color: #000000;
  font-size: 1rem;
  text-decoration: none;
  transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.intro-button::after {
  content: " →";
  font-size: 1rem;
}

.intro-button:hover {
  border-color: #343433;
  background-color: #343433;
  box-shadow: 0 10px 20px rgba(46, 55, 49, 0.274);
  color: var(--color-bg);
}

.intro-button:focus-visible {
  outline: 2px solid #1f6d4a;
  outline-offset: 2px;
}

.intro-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 32px);
  width: 100%;
  justify-items: stretch;
  align-items: start;
}

.intro-feature-grid--60-40 {
  grid-template-columns: 3fr 2fr;
}

.intro-feature-grid--40-60 {
  grid-template-columns: 2fr 3fr;
}

.intro-feature-grid--media-stack {
  align-items: center;
}

.intro-feature-grid--media-stack .intro-feature-grid__article {
  align-self: center;
}

.intro-feature-grid__media {
  width: 100%;
}

.body-container--stacked .intro-feature-grid {
  margin-left: calc(-1 * var(--page-pad));
  margin-right: calc(-1 * var(--page-pad));
}

.body-container--stacked .intro-feature-grid .intro-hero,
.body-container--stacked .intro-feature-grid .article-container {
  width: 100%;
  max-width: none;
  margin: 0;
  align-self: stretch;
}

.body-container--stacked .intro-feature-grid .intro-hero {
  margin: 0;
  justify-self: stretch;
  align-items: stretch;
}

.intro-feature-grid__article {
  padding: clamp(56px, 8vw, 112px);
}

.intro-feature-grid__article .h {
  font-size: clamp(55px, 3vw, 75px);
}

.intro-feature-grid__article .p {
  font-size: clamp(15px, 1.9vw, 20px);
  line-height: 1.7;
}

.home-programs__eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.28em;
  font-weight: 500;
}

.home-programs__item {
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-md);
  padding: clamp(18px, 3vw, 28px);
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: rgba(247, 249, 246, 0.7);
}

.home-programs__title {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1.05rem;
  margin: 0;
}

.home-programs__subtitle {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.6;
  color: #000;
}

.home-programs__link {
  margin-top: auto;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-thickness: 1px;
}

@media (max-width: 960px) {
  .intro-feature-grid {
    grid-template-columns: 1fr;
  }

  .intro-feature-grid--media-stack .intro-feature-grid__media {
    order: 1;
  }

  .intro-feature-grid--media-stack .intro-feature-grid__article {
    order: 2;
    margin-top: clamp(18px, 6vw, 32px);
  }

  .body-container--intro {
    padding-left: var(--page-pad);
    padding-right: var(--page-pad);
  }

  .body-container--stacked .intro-feature-grid {
    margin-left: 0;
    margin-right: 0;
  }

  .intro-feature-grid__article {
    padding: clamp(40px, 9vw, 80px);
  }
}

@media (max-width: 720px) {
  .intro-feature-grid__article {
    padding: clamp(28px, 10vw, 52px);
  }

  .intro-feature-grid__article .h {
    font-size: clamp(32px, 8vw, 42px);
  }

  .intro-feature-grid__article .p {
    font-size: clamp(14px, 4.5vw, 17px);
  }
}

.body-container--stacked .article-container,
.body-container--stacked .intro-hero,
.body-container--stacked .facility-grid {
  width: min(1080px, 100%);
  margin-left: 0;
  margin-right: 0;
}

.body-container--stacked .intro-hero {
  margin-bottom: 100px;
}


.article {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.article .h {
  font-size: clamp(45px, 4vw, 55px);
}

.article .p {
  font-size: clamp(12px, 2vw, 15px);
  line-height: 1.75;
  color: #000000;
}

.h {
  font-weight: 500;
  font-size: clamp(24px, 3.4vw, 44px);
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: #000000;
  margin: 0;
}

.p {
  font-weight: 400;
  font-size: clamp(14px, 2.1vw, 24px);   /* responsive paragraph */
  line-height: 1.75;
  color: #000000;
  margin: 0;
}

.center { text-align: center; align-self: stretch; }
.right { text-align: right; align-self: stretch; }
.left { text-align: left; align-self: stretch; }


/* ===== Body Contents: Image ===== */
.intro-hero {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: clamp(260px, 60vw, 720px);
  margin: var(--section-gap) auto;
  background: none;
  align-self: flex-start;
}

.intro-video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0 !important;
}

.intro-video__controls {
  position: absolute;
  right: clamp(12px, 2vw, 20px);
  bottom: clamp(12px, 2vw, 20px);
  display: flex;
  gap: 12px;
  align-items: center;
}

.intro-video__toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border: none;
  border-radius: 999px;
  background: rgba(16, 39, 27, 0.82);
  color: #f4f7f4;
  font-size: 0.92rem;
  font-weight: 500;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.intro-video__toggle:hover,
.intro-video__toggle:focus-visible {
  transform: translateY(-1px);
  background: rgba(16, 39, 27, 0.92);
  box-shadow: 0 12px 28px rgba(16, 39, 27, 0.25);
}

.intro-video__toggle:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.6);
  outline-offset: 2px;
}

.intro-video__toggle-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
}

.intro-video__toggle-icon svg {
  width: 16px;
  height: 16px;
  display: none;
}

.intro-video__toggle-icon .icon--pause {
  display: block;
}

.intro-video__toggle.is-paused .icon--pause {
  display: none;
}

.intro-video__toggle.is-paused .icon--play {
  display: block;
}

@media (max-width: 520px) {
  .intro-video__toggle {
    padding: 8px 14px;
    font-size: 0.85rem;
  }

  .intro-video__toggle-icon {
    width: 14px;
    height: 14px;
  }

  .intro-video__toggle-icon svg {
    width: 14px;
    height: 14px;
  }
}

.intro-gallery {
  --intro-gallery-transition: 400ms;
  position: relative;
  width: 100%;
  align-self: stretch;
}

.intro-gallery-viewport {
  position: relative;
  overflow: inherit;
  width: 100%;
  margin: 0;
}

.intro-gallery-track {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0;
  transform: translate3d(0, 0, 0);
  transition: none;
  will-change: transform;
}

.intro-gallery-track.is-animating {
  transition: transform var(--intro-gallery-transition) ease;
}

.intro-gallery__slide {
  flex: 0 0 30%;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.intro-gallery__slide img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}


.intro-gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.intro-gallery-nav--prev { left: clamp(12px, 3vw, 36px); }
.intro-gallery-nav--next { right: clamp(12px, 3vw, 36px); }

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 1000ms ease, transform 1000ms ease;
  will-change: opacity, transform;
}
.reveal.from-left  { transform: translateX(-32px); }
.reveal.from-right { transform: translateX(32px); }
.reveal.from-up    { transform: translateY(24px); }
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { transition: none; opacity: 1; transform: none; }
}
.parallax { will-change: transform; }

/* ===== Program page ===== */
.program-main {
  display: flex;
  flex-direction: column;
  gap: clamp(60px, 12vw, 80px);
  padding: clamp(72px, 20vw, 120px) var(--page-pad) clamp(110px, 22vw, 160px);
}

.program-hero__eyebrow {
  font-size: 0.85rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.program-summary {
  width: min(1200px, 100%);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: clamp(24px, 4vw, 36px);
}

.program-summary__grid {
  display: grid;
  gap: clamp(20px, 3vw, 32px);
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.program-summary__card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: clamp(24px, 4vw, 32px);
  border-radius: 28px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
  text-decoration: none;
  color: inherit;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.program-summary__card:is(:hover, :focus-visible) {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.12);
}

.program-summary__badge {
  font-size: 0.8rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.46);
}

.program-summary__excerpt {
  font-size: 0.98rem;
  line-height: 1.6;
  color: rgba(0, 0, 0, 0.68);
}

.program-summary__cta {
  margin-top: auto;
  font-size: 0.9rem;
  font-weight: 500;
  color: #205541;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.program-summary__cta::after {
  content: "→";
  font-size: 1rem;
}

.program-catalog {
  display: flex;
  justify-content: center;
  width: 100%;
  padding: clamp(32px, 6vw, 72px) clamp(20px, 6vw, 48px);
  box-sizing: border-box;
}

.program-grid {
  width: min(1100px, 100%);
  display: grid;
  gap: clamp(28px, 5vw, 48px);
}

.program-card {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 28px 50px rgba(0, 0, 0, 0.12);
  cursor: pointer;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.program-card__media {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  background: #f5f5f5;
}

.program-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 320ms ease;
}

.program-card__body {
  display: flex;
  flex-direction: column;
  gap: clamp(14px, 2.4vw, 24px);
  padding: clamp(24px, 3vw, 36px);
}

.program-card__meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.program-card__category {
  font-size: clamp(22px, 3.6vw, 26px);
  font-weight: 500;
  line-height: 1.4;
}

.program-card__subtitle {
  font-size: 0.95rem;
  color: #6f6f6f;
  line-height: 1.4;
}

.program-card__description {
  font-size: clamp(16px, 2.6vw, 18px);
  line-height: 1.65;
  color: #4f4f4f;
}

.program-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  gap: 12px;
}

.program-card__duration {
  font-size: 0.95rem;
  color: #828282;
}

.program-card__price {
  font-size: clamp(18px, 2.8vw, 20px);
  font-weight: 500;
}

.program-card:is(:hover, :focus-visible) {
  transform: translateY(-6px);
  box-shadow: 0 36px 70px rgba(0, 0, 0, 0.16);
}

.program-card:is(:hover, :focus-visible) .program-card__media img {
  transform: scale(1.04);
}

.program-card:focus-visible {
  outline: 3px solid rgba(27, 94, 55, 0.4);
  outline-offset: 0;
}

.program-card:active {
  transform: translateY(-2px);
  box-shadow: 0 24px 46px rgba(0, 0, 0, 0.14);
}

.program-modal {
  position: fixed;
  inset: 0;
  z-index: 4000;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(40px, 6vh, 80px) clamp(16px, 6vw, 48px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 260ms ease;
}

.program-modal[hidden] {
  display: none;
}

.program-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.program-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.54);
  backdrop-filter: blur(3px);
}

.program-modal__dialog {
  position: relative;
  width: min(960px, 100%);
  max-height: min(880px, calc(100vh - clamp(40px, 6vh, 80px) * 2));
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), #fff);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 48px 100px rgba(0, 0, 0, 0.22);
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(52, 52, 51, 0.1);
  transform: translateY(18px) scale(0.985);
  transition: transform 320ms cubic-bezier(0.16, 1, 0.3, 1);
}

.program-modal.is-open .program-modal__dialog {
  transform: translateY(0) scale(1);
}

.program-modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2rem;
  height: 2rem;
  border: 0px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  color: rgba(0,0,0,0.5);
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  line-height: 1.5;
  cursor: pointer;
  transition: transform 200ms ease, border-color 200ms ease, background 200ms ease;
}

.program-modal__close:is(:hover, :focus-visible) {
  transform: scale(1.05);
  border-color: #000;
  background: #000;
  color: #fff;
}

.program-modal__content {
  position: relative;
  overflow-y: auto;
  padding: clamp(52px, 7vw, 68px);
  display: flex;
  flex-direction: column;
  gap: clamp(32px, 6vw, 60px);
  overscroll-behavior: contain;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.program-modal__content::-webkit-scrollbar {
  display: none;
}

.program-modal__content::before,
.program-modal__content::after {
  content: '';
  position: sticky;
  left: 0;
  right: 0;
  height: 42px;
  pointer-events: none;
  z-index: 1;
}

.program-modal__content::before {
  top: 0;
  margin-top: -20px;
  background: linear-gradient(#fff, rgba(255, 255, 255, 0));
}

.program-modal__content::after {
  bottom: 0;
  margin-bottom: -20px;
  background: linear-gradient(rgba(255, 255, 255, 0), #fff);
}

.program-modal__header {
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 2.6vw, 24px);
}

.program-modal__header-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  flex-wrap: wrap;
}

.program-modal__title {
  margin: 0;
  font-size: clamp(2rem, 4vw, 2.6rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #343433;
  line-height: 1.18;
}

.program-modal__subtitle {
  margin: 0;
  font-size: clamp(1rem, 2.7vw, 1.1rem);
  line-height: 1.7;
  color: rgba(52, 52, 51, 0.8);
  max-width: 60ch;
}

.program-modal__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 32px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: #000;
  color: #fff;
  gap: 10px;
  font-size: 0.95rem;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 200ms ease, box-shadow 200ms ease, background 200ms ease, color 200ms ease;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.22);
}

.program-modal__cta::after {
  content: '→';
  font-size: 1rem;
  transition: transform 180ms ease;
}

.program-modal__cta:is(:hover, :focus-visible) {
  background: #fff;
  color: #000;
  box-shadow: 0 0 0 2px #000 inset, 0 18px 32px rgba(0, 0, 0, 0.18);
  transform: translateY(-1px) scale(1.01);
}

.program-modal__cta:is(:hover, :focus-visible)::after {
  transform: translateX(2px);
}

.program-modal__gallery {
  display: grid;
  gap: clamp(16px, 2.6vw, 24px);
  position: relative;
}

.program-modal__stage {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 3 / 2;
  background: #000;
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.25);
  isolation: isolate;
}

.program-modal__stage::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 60%, rgba(0, 0, 0, 0.22));
  pointer-events: none;
}

.program-modal__stage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.program-modal__thumbs {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
}

.program-modal__thumb-track {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
  padding-bottom: 4px;
}

.program-modal__thumb-track::-webkit-scrollbar {
  display: none;
}

.program-modal__thumb {
  flex: 0 0 96px;
  aspect-ratio: 1;
  border: none;
  border-radius: 18px;
  overflow: hidden;
  padding: 0;
  cursor: pointer;
  background: #E6E6E6;
  position: relative;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
  scroll-snap-align: start;
}

.program-modal__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.program-modal__thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 2px solid transparent;
  transition: border-color 180ms ease;
}

.program-modal__thumb:is(:hover, :focus-visible) {
  transform: translateY(-4px);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.14);
}

.program-modal__thumb.is-active {
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.18);
}

.program-modal__thumb.is-active::after {
  border-color: rgba(52, 52, 51, 0.9);
}

.program-modal__thumb-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(52, 52, 51, 0.78);
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 180ms ease, transform 180ms ease;
  backdrop-filter: blur(6px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.22);
}

.program-modal__thumb-arrow:is(:hover, :focus-visible) {
  background: rgba(52, 52, 51, 0.95);
  transform: scale(1.05) translateY(-1px);
}

.program-modal__article {
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 3vw, 28px);
}

.program-modal__section {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.program-modal__section-title {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #1d4932;
  font-weight: 600;
}

.program-modal__section-title::before {
  content: '';
  width: 32px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(52, 52, 51, 0.15), #343433);
}


.program-modal__paragraph {
  font-size: 1.08rem;
  line-height: 1.85;
  color: #343433;
  margin: 0;
}

.program-modal__facts {
  display: grid;
  gap: 12px;
  background: #f7f9f6;
  border-radius: 22px;
  padding: 28px 32px;
  border: 1px solid #E6E6E6;
  position: relative;
  overflow: hidden;
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.06);
}

.program-modal__fact {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 12px;
  font-size: 0.98rem;
  line-height: 1.6;
  padding: 6px 0;
  border-bottom: 1px dashed rgba(52, 52, 51, 0.12);
}

.program-modal__fact:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.program-modal__fact dt {
  color: rgba(52, 52, 51, 0.75);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  font-weight: 600;
}

.program-modal__fact dd {
  margin: 0;
  color: #343433;
  font-weight: 500;
}

.program-modal__notice {
  margin-top: clamp(12px, 2vw, 20px);
  padding: 24px 28px;
  border-radius: 22px;
  background: #f7f9f6;
  border: 1px solid rgba(52, 52, 51, 0.08);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.45), 0 12px 24px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  overflow: hidden;
}

.program-modal__notice .program-modal__list {
  color: rgba(52, 52, 51, 0.82);
}

.program-modal__notice .program-modal__note {
  color: rgba(52, 52, 51, 0.9);
  font-weight: 500;
}

.program-modal__list {
  margin: 0;
  padding-left: 20px;
  display: grid;
  gap: 6px;
  font-size: 0.98rem;
  line-height: 1.65;
  color: #343433;
}

.program-modal__list > li::marker {
  color: #343433;
  font-weight: 600;
}

.program-modal__note {
  font-size: 0.92rem;
  color: rgba(52, 52, 51, 0.65);
  line-height: 1.6;
}

body.modal-open {
  overflow: hidden;
}

@media (prefers-reduced-motion: reduce) {
  .program-modal,
  .program-modal__dialog,
  .program-modal__cta,
  .program-modal__thumb,
  .program-modal__thumb-arrow,
  .program-modal__facts {
    transition: none !important;
  }
}

@media (max-width: 860px) {
  .program-modal__dialog {
    border-radius: 28px;
  }

  .program-modal__stage {
    aspect-ratio: 4 / 3;
  }

  .program-modal__thumb {
    flex-basis: 80px;
  }

  .program-modal__facts {
    gap: 10px;
  }

  .program-modal__fact {
    grid-template-columns: 100px minmax(0, 1fr);
  }
}

@media (max-width: 600px) {
  .program-modal {
    padding: clamp(28px, 6vh, 48px) clamp(14px, 5vw, 24px);
  }

  .program-modal__dialog {
    max-height: calc(100vh - clamp(28px, 6vh, 48px) * 2);
  }

  .program-modal__content {
    padding: clamp(28px, 6vw, 40px);
  }

  .program-modal__header-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .program-modal__thumbs {
    grid-template-columns: 1fr;
  }

  .program-modal__thumb-track {
    order: 1;
    overflow-x: auto;
    padding-bottom: 6px;
  }

  .program-modal__thumb-arrow {
    order: 0;
    width: 40px;
    height: 40px;
  }

  .program-modal__thumbs {
    gap: 12px;
  }

  .program-modal__thumb-track::-webkit-scrollbar {
    height: 4px;
  }

  .program-modal__thumb-track::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 999px;
  }

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

@media (min-width: 720px) {
  .program-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1140px) {
  .program-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .program-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 720px) {
  .program-catalog {
    padding: clamp(24px, 8vw, 40px) var(--page-pad);
  }

  .program-grid {
    gap: clamp(18px, 7vw, 32px);
  }
}

@media (max-width: 720px) {
  .program-card {
    border-radius: 28px;
  }

  .program-modal__facts {
    padding: 20px;
  }

  .program-modal__fact {
    grid-template-columns: 1fr;
  }
}

/* ===== Shop page ===== */
.shop-main {
  padding: clamp(72px, 10vw, 120px) var(--page-pad) clamp(120px, 14vw, 160px);
  display: flex;
  flex-direction: column;
  gap: clamp(56px, 9vw, 88px);
  background: #f7f9f6;
}

.shop-catalog {
  display: flex;
  flex-direction: column;
  gap: clamp(32px, 6vw, 60px);
  width: min(1080px, 100%);
  margin: 0 auto;
}

.shop-catalog__header {
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 2vw, 24px);
  align-items: flex-start;
}

.shop-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.shop-filter {
  padding: 10px 28px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: #fff;
  color: #343433;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}
 
.shop-filter:is(:hover, :focus-visible) {
  background: #343433;
  color: var(--color-bg);
  border-color: #343433;
}

.shop-filter.is-active {
  background: #343433;
  color: #fff;
  border-color: #343433;
}

.shop-note {
  font-size: 0.95rem;
  color: #828282;
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(28px, 5vw, 48px);
}

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

.facility-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(15px, 5vw, 20px);
}

@media (max-width: 768px) {
  .facility-grid {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 1024px) {
  .facility-grid {
    grid-template-columns: repeat(2, minmax(280px, 1fr));
  }
}

.product-card {
  display: flex;
  flex-direction: column;
  gap: 24px;
  color: inherit;
  text-decoration: none;
}

.facility-card {
  position: relative;
  aspect-ratio: 1/1;
  display: block;
  overflow: hidden;
  background: #f7f9f6;
  color: #000;
  text-decoration: none;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.08);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease;
}

.facility-card:focus-visible {
  outline: 2px solid #111;
  outline-offset: 4px;
}

.facility-card__media {
  position: relative;
  aspect-ratio: 1/1;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.facility-card__media img {
  object-fit: cover;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%; 
  transition: transform 320ms ease;
}

.facility-card__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(20px, 4vw, 32px);
  background: rgba(0, 0, 0, 0.096);
}

.facility-card__title {
  margin: 0;
  color: white;
  font-weight: 400;
  text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.573);
  font-size: clamp(28px, 3vw, 36px);
  text-align: center;
  letter-spacing: 0.2em;
}

.product-card__copy {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.product-card__media--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px dashed rgba(19, 41, 28, 0.28);
  background: rgba(255, 255, 255, 0.92);
  color: rgba(19, 41, 28, 0.62);
  font-weight: 500;
  text-align: center;
  aspect-ratio: 1 / 1;
  border-radius: 24px;
}

.product-card__media--placeholder span {
  padding: 12px 16px;
  line-height: 1.4;
}

.product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 320ms ease;
}

.product-card__copy {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.facility-card:is(:hover, :focus-visible) {
  transform: translateY(-2px);
  box-shadow: 0 22px 42px rgba(0, 0, 0, 0.16);
}

.facility-card:is(:hover, :focus-visible) .facility-card__media img {
  transform: scale(1.03);
}

.facility-card:is(:hover, :focus-visible) .facility-card__overlay {
  background: rgba(0, 0, 0, 0.54);
}

.facility-card:is(:hover, :focus-visible) .facility-card__title {
  text-shadow: none;
}


.facility-card:active {
  transform: translateY(-2px) scale(0.99);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
}

.product-card__description {
  font-size: clamp(17px, 2.5vw, 19px);
  color: #000000;
  line-height: 1.5;
}

.product-card__price {
  margin: 0;
  font-size: clamp(16px, 2.3vw, 18px);
  font-weight: 600;
  text-align: left;
  color: #000000;
}

.product-card__purchase {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.product-card__purchase .product-card__price {
  flex: 1 1 auto;
}

.product-card__purchase .product-card__cta {
  margin-top: 0;
}

.product-card__cta {
  align-self: flex-start;
  margin-top: 12px;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid rgba(17, 17, 17, 0.18);
  background: #fff;
  color: #111;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease, border-color 160ms ease;
}

.product-card__cta::after {
  content: '\2192';
  font-size: 0.9em;
}

.product-card__cta:hover,
.product-card__cta:focus-visible {
  background: #111;
  color: #fff;
  border-color: #111;
  transform: translateY(-1px);
}

.product-card.is-hidden {
  display: none;
}

.product-card:hover .product-card__media img,
.product-card:focus-visible .product-card__media img {
  transform: scale(1.04);
}

@media (min-width: 1100px) {
  .shop-main {
    padding-top: clamp(96px, 14vw, 180px);
  }

  .shop-catalog__header {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .shop-note {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .shop-main {
    padding: clamp(64px, 10vw, 96px) clamp(18px, 5vw, 28px) clamp(100px, 18vw, 140px);
  }

  .shop-catalog__header {
    align-items: stretch;
  }

  .shop-note {
    font-size: 0.9rem;
    line-height: 1.5;
  }
}

@media (max-width: 600px) {
  .nav-toggle {
    width: 44px;
    height: 44px;
    right: 16px;
    top: 12px;
  }

  .nav-toggle__box {
    width: 20px;
    gap: 4px;
  }

  .nav-toggle.is-active .nav-toggle__line--top {
    transform: translateY(6px) rotate(45deg);
  }

  .nav-toggle.is-active .nav-toggle__line--bottom {
    transform: translateY(-6px) rotate(-45deg);
  }

  .shop-filters {
    width: 100%;
    justify-content: flex-start;
  }

  .shop-filter {
    flex: 1 1 auto;
    text-align: center;
    padding: 10px 16px;
  }

  .shop-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .product-card__media--placeholder {
    border-radius: 18px;
  }
}

@media (max-width: 900px) {
  .body-container {
    padding: clamp(56px, 14vw, 96px) var(--page-pad) clamp(96px, 18vw, 160px);
    flex-direction: column;
    align-items: center;
    row-gap: 100px;
  }

  .article-container {
    padding: 0 var(--page-pad);
    min-height: auto;
    width: 100%;
    margin-bottom: 100px;
  }

  .body-container--stacked .article-container,
  .body-container--stacked .intro-hero,
  .body-container--stacked .facility-grid {
    width: min(1080px, 100%);
  }

  .gallery-cards {
    width: 100%;
    margin: clamp(40px, 11vw, 64px) auto;
    padding: 0 var(--page-pad);
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

}

@media (max-width: 720px) {
  .article {
    gap: 18px;
    align-items: flex-start;
  }

  .intro-hero {
    width: 100%;
    margin: clamp(32px, 9vw, 48px) var(--page-pad);
    padding: 0;
  }

  .intro-video__controls {
    right: clamp(12px, 4vw, 20px);
    bottom: clamp(12px, 4vw, 20px);
  }

  .intro-gallery {
    margin: clamp(32px, 9vw, 48px) 0;
  }

  .facility-card {
    border-radius: 22px;
  }

  .facility-grid {
    width: 100%;
    padding: 0 var(--page-pad);
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
  }

  .intro-tabs {
    flex-wrap: wrap;
    gap: 10px;
    height: auto;
    padding: 0 var(--page-pad);
  }

  .intro-tabs .tab-button {
    flex: 1 1 calc(50% - 10px);
    min-width: calc(50% - 10px);
    height: 52px;
    font-size: 0.95rem;
  }

  .tab-panel {
    padding: 32px var(--page-pad) 0;
  }

  .tab-panel--section {
    padding: clamp(36px, 8vw, 56px) 0 clamp(56px, 12vw, 90px);
  }

  .visit-main .tab-panel--section {
    padding: clamp(24px, 7vw, 40px) 0 clamp(44px, 12vw, 72px);
  }

  .space-filters {
    width: 100%;
    justify-content: flex-start;
    padding: 0 var(--page-pad);
    gap: 10px;
  }

  .space-gallery {
    grid-template-columns: minmax(0, 1fr);
    gap: clamp(18px, 5vw, 28px);
  }

  .intro-tabs--section {
    padding: clamp(24px, 6vw, 32px) var(--page-pad) 0;
    gap: clamp(14px, 4vw, 28px);
    overflow-x: auto;
  }

  .intro-tabs--section .tab-button {
    flex: 0 0 auto;
    padding-bottom: 12px;
    letter-spacing: 0.06em;
  }

  .space-card__body {
    padding: 20px 18px 24px;
  }

  .tab-section__header {
    gap: 8px;
  }

  .gallery-cards {
    grid-template-columns: minmax(0, 1fr);
    gap: clamp(16px, 6vw, 28px);
  }

  .shop-main {
    padding: clamp(72px, 20vw, 120px) var(--page-pad) clamp(110px, 22vw, 160px);
    gap: clamp(40px, 12vw, 64px);
  }

  .visit-main {
    margin-top: clamp(12px, 4vw, 20px);
    padding: 0 var(--page-pad) clamp(96px, 24vw, 140px);
    gap: clamp(32px, 10vw, 56px);
  }

  .visit-hours-list__item {
    grid-template-columns: minmax(0, 1fr);
  }

  .visit-hours-list__item dt {
    letter-spacing: 0.18em;
  }

  .visit-section,
  .shop-catalog,
  .program-summary,
  .program-catalog {
    width: 100%;
    padding-left: var(--page-pad);
    padding-right: var(--page-pad);
  }

  .운영시간__grid {
    gap: clamp(20px, 6vw, 32px);
  }

  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .contact-card {
    text-align: left;
  }
}

@media (max-width: 540px) {
  .intro-tabs .tab-button {
    flex: 1 1 100%;
    min-width: 100%;
  }

  .intro-tabs--section {
    padding: clamp(20px, 6vw, 28px) var(--page-pad) 0;
  }

  .intro-tabs--section .tab-button {
    flex: 0 0 auto;
    min-width: max-content;
    font-size: 0.9rem;
  }

  .tab-panel--section {
    padding: clamp(32px, 10vw, 52px) 0 clamp(48px, 12vw, 80px);
  }

  .visit-main .tab-panel--section {
    padding: clamp(20px, 8vw, 36px) 0 clamp(36px, 14vw, 64px);
  }

  .intro-video {
    border-radius: 18px;
  }

  .facility-card {
    border-radius: 18px;
  }

  .space-filters {
    gap: 8px;
  }

  .space-gallery {
    gap: 20px;
  }
}

/* ===== for 둘러보기 page ===== */
.gallery-cards {
  position: relative;
  width: 89%;
  max-width: 1280px;
  min-height: auto;    
  margin: var(--section-gap) auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(7, auto);
  gap: clamp(16px, 3vw, 40px) 2%;
}

@media (max-width: 1024px) {
  .gallery-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.card {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  text-decoration: none;
  transition: transform 400ms cubic-bezier(.2,.7,.2,1), box-shadow 400ms ease;
}

.card-img {
  position: absolute;
  inset: 0;
  background-image: var(--bg);
  background-size: cover;
  background-position: center;
  transition: transform 500ms cubic-bezier(.2,.7,.2,1), filter 500ms ease;
}

.card:hover    { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card:hover .card-img     { transform: scale(1.06); filter: saturate(1.1) contrast(1.05); }
.card:focus-visible        { outline: 3px solid #222; outline-offset: 3px; }

/* ===== 공간 소개 ===== */
.space-filters {
  justify-content: center;
  margin: 0 auto clamp(32px, 6vw, 48px);
  width: min(1200px, 100%);
  padding: 0 var(--page-pad);
  box-sizing: border-box;
}

.space-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(24px, 4vw, 40px);
  width: min(1200px, 100%);
  margin: 0 auto;
  padding: 0 var(--page-pad);
  box-sizing: border-box;
}

@media (min-width: 1024px) {
  .space-gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.garden-map {
  width: min(1000px, 100%);
  margin: 0 auto;
  padding: 0 var(--page-pad);
  box-sizing: border-box;
}

.garden-map img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0;
  box-shadow: none;
}

.space-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 6px;
  box-shadow: 0 22px 60px rgba(0,0,0,0.10);
  transition: transform 300ms ease, box-shadow 300ms ease;
}

.space-card.is-hidden {
  display: none;
}

.space-card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.space-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}

.space-card__body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px 24px;
}

.space-section__title {
  margin: 0 auto 32px;
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 500;
  letter-spacing: -0.01em;
  text-align: center;
  color: #111;
  display: block;
  max-width: 20ch;
}

.space-card__title {
  font-size: clamp(22px, 3.6vw, 26px);
  font-weight: 500;
  line-height: 1.4;
}

.space-card__summary {
  font-size: clamp(14px, 2.6vw, 16px);
  line-height: 1.65;
  color: #4f4f4f;
}

.space-card:is(:hover, :focus-within) {
  transform: translateY(-8px);
  box-shadow: 0 28px 68px rgba(0,0,0,0.14);
}

.space-card:is(:hover, :focus-within) .space-card__media img {
  transform: scale(1.05);
}

/* ===== Footer ===== */
.site-footer {
  display: grid;
  grid-template-columns: 1fr repeat(4, 150px); /* left flexible, 4 fixed columns */
  column-gap: clamp(16px, 3.5vw, 48px);
  align-items: start;
  position: relative;
  padding: 100px 100px; /* top/bottom + left/right padding */
  background: transparent;
}

/* Divider spans full width inside footer padding */
.footer-divider {
  grid-column: 1 / -1;
  width: 100%;
  height: 0;
  border-top: 1px solid var(--color-border);
  margin-bottom: 48px; /* space below line */
}

/* Left block: logo, contact, social */
.footer-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 48px;
}

.footer-logo {
  width: 160px;
  height: auto;
  object-fit: contain;
  margin-right: 12px;
  margin-bottom: 12px;
}

.footer-contact {
  font: 400 0.9rem/1.6 var(--font-sans);
  color: #111;
  margin-right: 12px;
  margin-bottom: 16px;
}

.footer-contact__item {
  display: block;
  margin-bottom: 6px;
}

.footer-contact__item:last-child {
  margin-bottom: 0;
}
.footer-contact a { color: inherit; text-decoration: none; }
.footer-contact a:hover { text-decoration: underline; }

/* Social icons row */
.footer-social {
  display: flex;
  flex-direction: row;
  gap: 12px;
  justify-content: flex-start;
}

.social-btn {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(0,0,0,0.08);
  color: #111;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease;
}
.social-btn:hover { background: rgba(0,0,0,0.18); transform: translateY(-2px); }
.social-btn:focus-visible {
  outline: 2px solid #222;
  outline-offset: 2px;
}
.social-btn .icon {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

/* Link columns */
.footer-col {
  width: 150px;
  max-width: 150px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  margin-top: 48px;
}

.footer-topic {
  margin: 0 0 4px 0;
  font: 500 16px/24px Inter, sans-serif;
  color: #000;
}

.footer-link {
  font: 400 0.9rem/1.6 var(--font-sans);
  color: #454545;
  text-decoration: none;
}
.footer-link:hover { text-decoration: underline; }

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .site-footer {
    grid-template-columns: 1fr;
    row-gap: 24px;
    padding: 60px 24px; /* tighter padding on small screens */
  }

  .footer-left,
  .footer-col {
    width: 100%;
    max-width: none;
    align-items: center;
    text-align: center;
  }

  .footer-social { justify-content: center; }
}

/* ===== 소개 Page Tabs ===== */
.intro-tabs {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 0;
  height: 81px;
  background: #fff;
  padding: 0;
}

.intro-tabs .tab-button {
  flex: 1 1 0;
  width: auto;
  height: 100%;
  border: none;
  background: #fff;
  color: #454545;
}

.intro-tabs .tab-button.active {
  background: var(--color-bg);
  color: #454545;
}

.intro-tabs--section {
  height: auto;
  background: transparent;
  padding: clamp(32px, 6vw, 48px) var(--page-pad) 0;
  border-bottom: 1px solid rgba(17, 17, 17, 0.1);
  justify-content: flex-start;
  gap: clamp(18px, 4vw, 48px);
}

.intro-tabs--section .tab-button {
  width: auto;
  min-width: 0;
  height: auto;
  padding: 0 0 18px;
  border: none;
  border-radius: 0;
  border-bottom: 2px solid transparent;
  background: transparent;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: rgba(17, 17, 17, 0.5);
}

.intro-tabs--section .tab-button.active {
  color: #111;
  border-bottom-color: #111;
  background: transparent;
}

.intro-tabs--section .tab-button:not(.active):is(:hover, :focus-visible) {
  color: #111;
  border-bottom-color: rgba(17, 17, 17, 0.35);
}

.tab-button {
  box-sizing: border-box;
  width: 133px;
  height: 60px;
  border: 1px solid #454545;
  background: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #454545;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}

.tab-button:not(.active):hover,
.tab-button:not(.active):focus {
  background: var(--color-bg);
}

.tab-button.active {
  background: #454545;
  color: #fff;
}

.tab-panel {
  padding-top: 40px;
}

.tab-panel--section {
  padding: clamp(48px, 7vw, 96px) 0 clamp(80px, 10vw, 120px);
}

.visit-main .tab-panel--section {
  padding: clamp(32px, 5vw, 56px) 0 clamp(60px, 8vw, 96px);
}

.tab-section__header {
  width: min(1200px, 100%);
  margin: 0 auto clamp(28px, 5vw, 48px);
  padding: 0 var(--page-pad);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.tab-section__eyebrow {
  color: rgba(17, 17, 17, 0.5);
}

.tab-section__title {
  margin: 0;
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 500;
  color: #111;
}

/* ===== Space card modal ===== */
.space-modal[hidden] {
  display: none;
}

.space-modal {
  position: fixed;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0,0,0,.8);
  z-index: 3000;
  padding: clamp(24px, 6vh, 48px);
  overflow-y: auto;
}

.space-modal-content {
  position: relative;
  background: #fff;
  color: #111;
  max-width: 960px;
  width: min(960px, 92%);
  max-height: 90vh;
  padding: 4rem;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.25);
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  overflow-y: auto;
}

.space-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2rem;
  height: 2rem;
  border: 0px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  color: rgba(0,0,0,0.5);
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  line-height: 1.5;
  cursor: pointer;
  transition: transform 200ms ease, border-color 200ms ease, background 200ms ease;
}

.space-modal-close:is(:hover, :focus-visible) {
  transform: scale(1.05);
  border-color: #111;
  background: #111;
  color: #fff;
}

.space-modal-embla {
  width: 100%;
  height: min(420px, 50vh);
}

.space-modal-content > *:not(.space-modal-close) {
  position: relative;
}

.space-modal-embla .embla__viewport {
  height: 100%;
  border-radius: 10px;
}

.space-modal-embla .embla__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.space-modal-embla .embla__controls {
  justify-content: center;
  margin-top: .75rem;
}

.space-modal-embla .embla__prev,
.space-modal-embla .embla__next {
  border-color: #111;
  color: #111;
}

.space-modal-title {
  margin: 30px 0 0 0;
  font-size: clamp(2rem, 4vw, 2.5rem);
}

.space-modal-desc {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(0,0,0,0.72);
}
/* ===== Visit page ===== */
.visit-main {
  padding: 0 var(--page-pad) clamp(120px, 14vw, 160px);
  margin: clamp(8px, 2vw, 20px) auto 0;
  display: flex;
  flex-direction: column;
  gap: clamp(36px, 5vw, 64px);
  width: min(1080px, 100%);
}

.visit-tabs {
  margin-top: 0;
  padding-top: clamp(20px, 4vw, 32px);
}

.visit-section {
  width: 100%;
  margin: 0 auto;
  display: grid;
  gap: clamp(24px, 4vw, 40px);
  padding-top: clamp(16px, 3vw, 28px);
  border-top: none;
}

.visit-section--운영시간 {
  padding-top: 0;
  border-top: none;
}

.visit-section__header {
  display: grid;
  gap: 0.85rem;
}

.visit-section__grid {
  display: grid;
  gap: clamp(20px, 3vw, 32px);
}

.visit-section__label {
  font-size: 0.78rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(17, 17, 17, 0.45);
}

.visit-section__title {
  margin: 0;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 500;
  color: #111;
}

.visit-section__lead {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(17, 17, 17, 0.68);
  max-width: 760px;
}

.운영시간__grid {
  display: grid;
  gap: clamp(28px, 4vw, 48px);
  grid-template-columns: minmax(320px, 1.1fr) minmax(280px, 0.9fr);
  align-items: stretch;
}

.운영시간__image {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border-radius: 6px;
  min-height: 380px;
  box-shadow: none;
}

.운영시간__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  flex: 1;
}

.운영시간__caption {
  margin: 0;
  background-color: rgba(17, 24, 20, 0.82);
  padding: 0.85rem 1rem;
  color: #f5f3ed;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.visit-hours-card {
  background: transparent;
  border: none;
  border-left: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 0;
  padding: 0 0 0 clamp(24px, 4vw, 32px);
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 3vw, 24px);
  box-shadow: none;
}

.visit-hours-list {
  margin: 0;
  display: grid;
  gap: clamp(14px, 2.5vw, 20px);
}

.visit-hours-list__item {
  display: grid;
  grid-template-columns: minmax(90px, 140px) minmax(0, 1fr);
  column-gap: clamp(12px, 3vw, 24px);
  row-gap: 0.35rem;
  padding-bottom: 0;
  border-bottom: none;
  align-items: baseline;
}

.visit-hours-list__item dt {
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(15, 31, 25, 0.65);
}

.visit-hours-list__item dd {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(15, 31, 25, 0.82);
}

.visit-hours-note {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.6;
  color: rgba(19, 41, 28, 0.68);
}

.visit-hours-alerts {
  margin-top: clamp(16px, 3vw, 28px);
  padding-top: clamp(12px, 2vw, 20px);
  display: grid;
  gap: clamp(12px, 2vw, 18px);
}

.visit-hours-alert {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}

.visit-hours-alert__icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(31, 109, 74, 0.4);
  color: #1f6d4a;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.visit-hours-alert__icon svg {
  width: 20px;
  height: 20px;
}

.visit-hours-note span[lang="en"] {
  font-family: "Inter", sans-serif;
  letter-spacing: 0.01em;
}

.visit-rate-table {
  border: none;
  border-radius: 0;
  overflow: visible;
  background: transparent;
}

.rate-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.96rem;
}

.rate-table thead {
  background: transparent;
  color: #1b3828;
  font-weight: 600;
  border-bottom: 1px solid rgba(17, 17, 17, 0.12);
}

.rate-table th,
.rate-table td {
  padding: 0.75rem 0.5rem;
  text-align: left;
  border-bottom: 1px solid rgba(24, 66, 47, 0.12);
}

.rate-table tbody th {
  font-weight: 600;
  color: rgba(19, 41, 28, 0.8);
}

.rate-table tbody td {
  color: rgba(19, 41, 28, 0.7);
}

.rate-table tbody tr:last-child th,
.rate-table tbody tr:last-child td {
  border-bottom: none;
}

.visit-guideline-list {
  display: grid;
  gap: 0.75rem;
}

.visit-guideline {
  border: none;
  border-radius: 0;
  background: transparent;
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
  padding-bottom: 0.5rem;
}

.visit-guideline summary {
  margin: 0;
  padding: 0.75rem 0;
  font-weight: 500;
  font-size: 1rem;
  color: #1c3828;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  list-style: none;
}

.visit-guideline summary::-webkit-details-marker {
  display: none;
}

.visit-guideline summary::after {
  content: "›";
  transform: rotate(90deg);
  transition: transform 0.2s ease;
  font-size: 1.2rem;
  color: rgba(28, 56, 40, 0.4);
}

.visit-guideline[open] summary::after {
  transform: rotate(-90deg);
}

.visit-guideline__body {
  padding: 0 0 0.75rem;
  display: grid;
  gap: 0.75rem;
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(19, 41, 28, 0.68);
}

.visit-guideline__body a {
  color: #1f6d4a;
  font-weight: 600;
  text-decoration: none;
}

.visit-guideline__body a:hover {
  text-decoration: underline;
}

.amenity-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.1rem;
  grid-template-columns: minmax(0, 1fr);
}

.amenity-list__item {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 0.9rem;
  padding: 0.4rem 0 1.1rem;
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
}

.amenity-list__item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.amenity-list__icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid rgba(31, 109, 74, 0.35);
  color: #1f6d4a;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
}

.amenity-list__icon svg {
  width: 22px;
  height: 22px;
}

.amenity-list__text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(19, 41, 28, 0.75);
}

.오시는길 {
  display: grid;
  gap: 0.8rem;
}

.오시는길__row {
  display: grid;
  gap: 0.3rem;
}

.오시는길__row dt {
  font-weight: 600;
  font-size: 0.95rem;
  color: rgba(19, 41, 28, 0.75);
}

.오시는길__row dd {
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.6;
  color: rgba(19, 41, 28, 0.7);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(12px, 2vw, 20px);
  width: 100%;
  max-width: none;
  margin: 0;
}

.contact-card {
  padding: clamp(16px, 3vw, 22px) 0;
  border-radius: 0;
  border: none;
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
  background: transparent;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  text-align: left;
  box-shadow: none;
}

.contact-card:first-child {
  border-top: 1px solid rgba(17, 17, 17, 0.08);
}

.contact-card__icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid rgba(31, 109, 74, 0.34);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: #1f6d4a;
}

.contact-card__icon svg {
  width: 24px;
  height: 24px;
}

.contact-card__content {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  flex: 1;
}

.contact-card__label {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(19, 41, 28, 0.5);
  font-weight: 600;
}

.contact-card a {
  color: #1f6d4a;
  font-weight: 600;
  text-decoration: none;
}

.contact-card a:hover {
  text-decoration: underline;
}

.contact-card__note {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(19, 41, 28, 0.68);
}

@media (max-width: 960px) {
  .운영시간__grid {
    grid-template-columns: 1fr;
  }

  .운영시간__image {
    min-height: 280px;
  }
}

@media (max-width: 720px) {
  .visit-main {
    gap: clamp(48px, 12vw, 72px);
  }

  .visit-tabs {
    overflow-x: auto;
  }

}

@media (max-width: 540px) {
  .운영시간__caption {
    font-size: 0.78rem;
  }
}
