@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/static/pretendard.css");

*, *::before, *::after { box-sizing: border-box; }
@font-face {
  font-family: "Gowun Batang";
  src: url("assets/fonts/GowunBatang-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gowun Batang";
  src: url("assets/fonts/GowunBatang-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: #f7eff0;
  color: #3f3030;
  font-family: "Pretendard", -apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo", "Noto Sans KR", sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  word-break: keep-all;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 86px;
  padding: 0 6.5vw;
  color: #fff;
  background: linear-gradient(to bottom, rgba(40, 31, 25, .36), rgba(40, 31, 25, 0));
}
.subpage .site-header {
  background: linear-gradient(to bottom, rgba(40, 31, 25, .46), rgba(40, 31, 25, .12));
  backdrop-filter: blur(8px);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 214px;
}
.brand-symbol {
  width: 42px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 10px rgba(0,0,0,.18));
}
.brand-text strong {
  display: block;
  color: #fff;
  font-family: "Gowun Batang", "Noto Serif KR", serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.08;
}
.brand-text small {
  display: block;
  margin-top: 5px;
  color: rgba(255,255,255,.82);
  font-family: "Gowun Batang", "Noto Serif KR", serif;
  font-size: 8px;
  letter-spacing: .16em;
  font-weight: 500;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  font-family: "Gowun Batang", "Noto Serif KR", serif;
  font-size: 14px;
  font-weight: 400;
}
.main-nav a {
  opacity: .86;
  transition: opacity .2s ease;
}
.main-nav a:hover,
.main-nav a.is-active { opacity: 1; }
.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}
.reserve-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 28px;
  border-radius: 999px;
  background: rgba(38, 30, 24, .84);
  color: #fff;
  font-size: 14px;
  font-weight: 500;
}
.menu-button,
.mobile-menu {
  display: none;
}
.menu-button {
  width: 54px;
  height: 42px;
  border: 1px solid rgba(255,255,255,.62);
  border-radius: 4px;
  background: rgba(255,255,255,.08);
  color: #fff;
  font: inherit;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .12em;
}
.hero {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  margin-bottom: -84px;
  overflow: hidden;
  border-radius: 0 0 50% 50% / 0 0 8% 8%;
  color: #fff;
}
.hero-slides {
  position: absolute;
  inset: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.04);
  animation: heroFade 24s infinite;
}
.hero-slide:nth-child(1) { background-image: url("assets/hero-01.png"); animation-delay: 0s; }
.hero-slide:nth-child(2) { background-image: url("assets/hero-02.png"); animation-delay: 6s; }
.hero-slide:nth-child(3) { background-image: url("assets/hero-03.png"); animation-delay: 12s; }
.hero-slide:nth-child(4) { background-image: url("assets/hero-04.png"); animation-delay: 18s; }
@keyframes heroFade {
  0%, 22% { opacity: 1; transform: scale(1); }
  30%, 100% { opacity: 0; transform: scale(1.04); }
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(43, 34, 28, .76) 0%, rgba(43, 34, 28, .42) 42%, rgba(43, 34, 28, .08) 76%),
    linear-gradient(180deg, rgba(24, 18, 14, .12), rgba(24, 18, 14, .24));
}
.hero-copy {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(720px, 86vw);
  padding: 112px 0 112px 8.5vw;
}
.hero-kicker {
  margin: 0 0 28px;
  color: rgba(255,255,255,.86);
  font-size: clamp(11px, 1vw, 14px);
  letter-spacing: .42em;
  font-weight: 500;
}
.hero-copy h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(41.4px, 5.85vw, 82.8px);
  line-height: 1.22;
  font-weight: 300;
}
.hero-copy p:not(.hero-kicker) {
  margin: 38px 0 0;
  color: rgba(255,255,255,.9);
  font-size: clamp(16px, 1.45vw, 21px);
  line-height: 1.9;
}
.scroll-cue {
  position: absolute;
  left: 8.5vw;
  bottom: 72px;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: #fff;
  font-size: 12px;
  letter-spacing: .08em;
}
.scroll-cue span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.8);
  border-radius: 50%;
  font-size: 20px;
}
.home-info {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  background: #fff9f7;
  border-top: 1px solid #ead8d6;
}
.home-info article {
  padding: 90px 7.5vw;
  border-right: 1px solid #ead8d6;
}
.home-info article:last-child { border-right: 0; }
.visit-guide {
  position: relative;
  display: grid;
  grid-template-columns: minmax(190px, .8fr) minmax(360px, 1.4fr) minmax(260px, .8fr);
  align-items: center;
  gap: 34px;
  padding: 92px 7.5vw 42px;
  background: #f7eeee;
  border-bottom: 1px solid #ead8d6;
}
.visit-guide .section-kicker {
  margin-bottom: 12px;
}
.visit-guide h2 {
  font-size: clamp(25.2px, 2.7vw, 37.8px);
}
.visit-hours {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 0;
}
.visit-hours div {
  min-height: 82px;
  padding: 18px 20px;
  background: rgba(255,255,255,.56);
  border: 1px solid #ead8d6;
  border-radius: 8px;
}
.visit-hours dt {
  color: #a17e7b;
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.visit-hours dd {
  margin: 9px 0 0;
  color: #493838;
  font-size: 18px;
  font-weight: 400;
}
.visit-actions {
  display: grid;
  gap: 10px;
}
.visit-actions a {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 20px;
  border: 1px solid #a47d78;
  border-radius: 4px;
  color: #5b4443;
  font-size: 15px;
  font-weight: 400;
}
.visit-actions .visit-call {
  background: #9b7774;
  border-color: #9b7774;
  color: #fff;
}
.section {
  padding: 130px 7.5vw 110px;
  background: #fff9f7;
}
.section-heading {
  max-width: 760px;
}
.sub-hero {
  min-height: 430px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 150px 7.5vw 70px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(45,36,30,.76), rgba(45,36,30,.22)),
    url("assets/hero-03.png") center / cover;
}
.sub-hero.doctors { background-image: linear-gradient(90deg, rgba(45,36,30,.76), rgba(45,36,30,.22)), url("assets/space-lounge.png"); }
.sub-hero.programs { background-image: linear-gradient(90deg, rgba(45,36,30,.76), rgba(45,36,30,.22)), url("assets/hero-01.png"); }
.sub-hero.tour { background-image: linear-gradient(90deg, rgba(45,36,30,.7), rgba(45,36,30,.18)), url("assets/space-hallway.png"); }
.sub-hero.notice { background-image: linear-gradient(90deg, rgba(45,36,30,.76), rgba(45,36,30,.22)), url("assets/space-lounge.png"); }
.sub-hero.location { background-image: linear-gradient(90deg, rgba(45,36,30,.76), rgba(45,36,30,.22)), url("assets/space-hallway.png"); }
.section-kicker {
  margin: 0 0 20px;
  color: #a17e7b;
  font-size: 12px;
  letter-spacing: .34em;
  font-weight: 500;
  text-transform: uppercase;
}
.sub-hero .section-kicker { color: rgba(255,255,255,.78); }
h1, h2, h3, p { margin-top: 0; }
h1, h2 {
  margin-bottom: 0;
  font-family: "Gowun Batang", "Noto Serif KR", serif;
  font-size: clamp(30.6px, 3.78vw, 52.2px);
  line-height: 1.45;
  font-weight: 300;
}
h3 {
  font-family: "Gowun Batang", "Noto Serif KR", serif;
  font-size: 21.6px;
  line-height: 1.55;
  font-weight: 400;
}
.section-lead {
  max-width: 720px;
  margin: 28px 0 0;
  color: #665150;
  font-size: 18px;
  line-height: 2;
}
.sub-hero .section-lead { color: rgba(255,255,255,.84); }
.info-list,
.detail-list {
  list-style: none;
  margin: 34px 0 0;
  padding: 0;
  border-top: 1px solid #ead8d6;
}
.info-list li,
.detail-list li {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 19px 0;
  border-bottom: 1px solid #ead8d6;
}
.info-list span,
.detail-list span {
  color: #a17e7b;
}
.info-list b,
.detail-list b {
  text-align: right;
  font-weight: 400;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 38px;
  min-width: 170px;
  min-height: 48px;
  margin-top: 32px;
  padding: 0 22px;
  border: 1px solid #a47d78;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 400;
}
.home-promo {
  background: #f7eeee;
  padding-top: 104px;
}
.promo-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: 22px;
  margin-top: 54px;
}
.promo-card {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  padding: 34px;
  background: #fff;
  border: 1px solid #ead8d6;
  border-radius: 8px;
  box-shadow: 0 18px 50px rgba(77, 61, 48, .06);
}
.promo-card.is-featured {
  background: #9b7774;
  color: #fff;
}
.promo-card small,
.home-program-card span,
.why-grid span {
  display: block;
  margin-bottom: 18px;
  color: #a98682;
  font-size: 11px;
  letter-spacing: .24em;
  text-transform: uppercase;
}
.promo-card.is-featured small { color: rgba(255,255,255,.72); }
.promo-card h3 {
  margin-bottom: 18px;
  font-size: 25.2px;
  font-weight: 300;
}
.promo-card p {
  color: #6d5654;
  font-size: 16px;
  line-height: 1.85;
}
.promo-card.is-featured p { color: rgba(255,255,255,.82); }
.promo-card b {
  margin-top: auto;
  padding-top: 28px;
  font-size: 18px;
  font-weight: 400;
}
.home-program-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 54px;
}
.home-program-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid #ead8d6;
  border-radius: 8px;
}
.home-program-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}
.home-program-card span,
.home-program-card h3,
.home-program-card p {
  margin-left: 28px;
  margin-right: 28px;
}
.home-program-card span { margin-top: 28px; }
.home-program-card h3 {
  margin-bottom: 12px;
  font-weight: 300;
}
.home-program-card p {
  margin-bottom: 30px;
  color: #6d5654;
  font-size: 16px;
  line-height: 1.75;
}
.home-why {
  background: #fff9f7;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 54px;
  background: #ead8d6;
  border: 1px solid #ead8d6;
}
.why-grid article {
  min-height: 260px;
  padding: 34px;
  background: #fff9f7;
}
.why-grid h3 {
  margin-bottom: 18px;
  font-weight: 300;
}
.why-grid p {
  color: #6d5654;
  font-size: 16px;
  line-height: 1.85;
}
.split {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 72px;
  align-items: center;
}
.split img {
  width: 100%;
  min-height: 470px;
  object-fit: cover;
}
.grid-3,
.grid-4,
.faq-grid,
.tour-grid {
  display: grid;
  gap: 22px;
  margin-top: 54px;
}
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.faq-grid { grid-template-columns: repeat(2, 1fr); }
.tour-grid { grid-template-columns: repeat(2, 1fr); }
.card,
.faq-item {
  background: #fff;
  border: 1px solid #eadedc;
  border-radius: 8px;
  padding: 34px;
  box-shadow: 0 18px 50px rgba(77, 61, 48, .06);
}
.card small {
  display: block;
  margin-bottom: 14px;
  color: #a98682;
  font-size: 11px;
  letter-spacing: .24em;
  text-transform: uppercase;
}
.card p,
.faq-item p {
  color: #6d5654;
  font-size: 16px;
  line-height: 1.85;
}
.program-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid #ead8d6;
  border-radius: 8px;
}
.program-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}
.program-card div { padding: 24px; }
.program-card small {
  color: #a98682;
  font-size: 11px;
  letter-spacing: .28em;
  text-transform: uppercase;
}
.equipment-section {
  background: #f7eeee;
}
.equipment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 54px;
}
.equipment-grid article {
  overflow: hidden;
  background: #fff;
  border: 1px solid #ead8d6;
  border-radius: 8px;
}
.equipment-grid img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}
.equipment-grid div {
  padding: 28px;
}
.equipment-grid span {
  display: block;
  margin-bottom: 16px;
  color: #a98682;
  font-size: 12px;
  letter-spacing: .24em;
}
.equipment-grid p {
  color: #6d5654;
  font-size: 16px;
  line-height: 1.8;
}
.doctor-profiles {
  background: #f7eeee;
}
.doctor-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.doctor-card {
  min-height: 520px;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #ead8d6;
  border-radius: 8px;
  padding: 38px 34px;
  box-shadow: 0 18px 50px rgba(77, 61, 48, .06);
}
.doctor-head {
  padding-bottom: 28px;
  border-bottom: 1px solid #ead8d6;
}
.doctor-head span {
  display: block;
  margin-bottom: 18px;
  color: #a98682;
  font-size: 12px;
  letter-spacing: .24em;
}
.doctor-head h3 {
  margin-bottom: 8px;
  font-size: 32.4px;
  font-weight: 300;
}
.doctor-head p {
  color: #6d5654;
  font-size: 16px;
}
.doctor-message {
  margin: 28px 0;
  color: #4f3c3c;
  font-size: 18px;
  line-height: 1.85;
}
.doctor-card ul {
  list-style: none;
  margin: auto 0 0;
  padding: 0;
  border-top: 1px solid #ead8d6;
}
.doctor-card li {
  padding: 14px 0;
  border-bottom: 1px solid #ead8d6;
  color: #6d5654;
  font-size: 15px;
  line-height: 1.65;
}
.tour-card {
  min-height: 430px;
  display: flex;
  align-items: flex-end;
  padding: 34px;
  color: #fff;
  background-position: center;
  background-size: cover;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}
.tour-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(35,27,22,0), rgba(35,27,22,.72));
}
.tour-card div {
  position: relative;
  z-index: 1;
}
.notice-section {
  background: #fff9f7;
}
.notice-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 46px;
}
.notice-heading > p {
  max-width: 440px;
  margin: 0;
  color: #6d5654;
  font-size: 17px;
  line-height: 1.85;
}
.notice-list {
  display: grid;
  gap: 16px;
}
.notice-item {
  display: grid;
  grid-template-columns: 128px minmax(0, 1fr) 116px;
  align-items: center;
  gap: 28px;
  min-height: 132px;
  padding: 28px 32px;
  background: #fff;
  border: 1px solid #ead8d6;
  border-radius: 8px;
  box-shadow: 0 18px 50px rgba(77, 61, 48, .06);
}
.notice-item.pinned {
  background: #f7eeee;
}
.notice-item > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid #d9c0bd;
  border-radius: 999px;
  color: #8d6b68;
  font-size: 13px;
  font-weight: 700;
}
.notice-item h3 {
  margin-bottom: 10px;
  color: #4f3c3c;
  font-size: 21px;
  line-height: 1.5;
}
.notice-item p {
  margin: 0;
  color: #6d5654;
  font-size: 16px;
  line-height: 1.8;
}
.notice-item time {
  color: #a17e7b;
  font-size: 14px;
  text-align: right;
}
.location-layout {
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  min-height: 560px;
  background: #fff9f7;
}
.location-copy { padding: 90px 7.5vw; }
.location-map {
  display: grid;
  place-items: center;
  min-height: 560px;
  padding: 42px;
  background: #9b7774;
  color: #fff;
}
.map-box {
  width: min(520px, 100%);
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 42px;
  border: 1px solid rgba(255,255,255,.38);
  background: rgba(255,255,255,.06);
}
.bottom-cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 104px;
  background: #9b7774;
  color: #fff;
}
.bottom-cta a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 7.5vw;
  border-right: 1px solid rgba(255,255,255,.26);
  font-size: 24px;
  font-weight: 400;
}
.bottom-cta a:last-child { border-right: 0; }
.mobile-action-bar {
  display: none;
}
.floating-contact {
  position: fixed;
  right: 22px;
  top: 50%;
  z-index: 30;
  display: grid;
  gap: 10px;
  transform: translateY(-50%);
}
.floating-contact a {
  width: 78px;
  min-height: 76px;
  display: grid;
  place-items: center;
  gap: 7px;
  padding: 12px 8px;
  border: 1px solid rgba(234, 216, 214, .86);
  border-radius: 8px;
  background: rgba(255, 249, 247, .94);
  color: #5b4443;
  box-shadow: 0 16px 42px rgba(77, 61, 48, .12);
  backdrop-filter: blur(12px);
}
.floating-contact img,
.floating-phone {
  width: 26px;
  height: 26px;
  object-fit: contain;
}
.floating-phone {
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #9b7774;
  color: #fff;
  font-size: 15px;
}
.floating-contact b {
  font-size: 12px;
  font-weight: 700;
}
@media (max-width: 1100px) {
  .main-nav { display: none; }
  .site-header { padding: 0 26px; }
  .menu-button {
    display: inline-grid;
    place-items: center;
  }
  .mobile-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 26px;
    right: 26px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 8px;
    border: 1px solid rgba(255,255,255,.28);
    border-radius: 8px;
    background: rgba(72, 51, 49, .9);
    color: #fff;
    box-shadow: 0 18px 48px rgba(38, 25, 24, .22);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity .22s ease, transform .22s ease;
  }
  .mobile-menu.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
.mobile-menu a {
    min-height: 46px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 14px;
    border-bottom: 1px solid rgba(255,255,255,.13);
    font-family: "Gowun Batang", "Noto Serif KR", serif;
    font-size: 15px;
  }
  .mobile-menu a:last-child { border-bottom: 0; }
  .mobile-menu a.is-active { color: #f3d9d8; }
  .home-info,
  .visit-guide,
  .promo-grid,
  .home-program-grid,
  .why-grid,
  .split,
  .grid-3,
  .grid-4,
  .equipment-grid,
  .doctor-grid,
  .faq-grid,
  .tour-grid,
  .notice-heading,
  .location-layout,
  .bottom-cta {
    grid-template-columns: 1fr;
  }
  .notice-heading {
    display: grid;
    gap: 18px;
  }
  .notice-item {
    grid-template-columns: 118px minmax(0, 1fr);
  }
  .notice-item time {
    grid-column: 2;
    text-align: left;
  }
  .visit-guide {
    gap: 24px;
    padding-top: 92px;
  }
  .visit-hours {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .home-info article { border-right: 0; border-bottom: 1px solid #ead8d6; }
  .promo-card { min-height: auto; }
  .program-card img { height: 230px; }
  .home-program-card img { height: 240px; }
  .equipment-grid img { height: 260px; }
  .bottom-cta a { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.26); }
}
@media (max-width: 640px) {
  html,
  body {
    overflow-x: hidden;
  }
  body { padding-bottom: 74px; }
  .site-header { height: 76px; }
  .brand { min-width: 0; gap: 9px; }
  .brand-symbol { width: 34px; }
  .brand-text strong { font-size: 16px; }
  .brand-text small { display: none; }
  .reserve-pill { display: none; }
  .menu-button {
    width: 50px;
    height: 38px;
    font-size: 9px;
  }
  .hero {
    min-height: 76vh;
    margin-bottom: -44px;
    border-radius: 0 0 50% 50% / 0 0 5% 5%;
  }
  .hero-slide { background-position: center; }
  .hero-copy {
    min-height: 76vh;
    width: 100%;
    padding: 116px 24px 108px;
    justify-content: flex-end;
  }
  .hero-copy h1 {
    font-size: 36px;
    line-height: 1.34;
  }
  .hero-copy p:not(.hero-kicker) {
    max-width: 310px;
    margin-top: 22px;
    font-size: 15px;
    line-height: 1.8;
  }
  .hero-kicker {
    margin-bottom: 18px;
    font-size: 10px;
    letter-spacing: .28em;
  }
  .scroll-cue { display: none; }
  .home-info article,
  .visit-guide,
  .section,
  .location-copy { padding: 74px 24px; }
  .visit-guide {
    padding-top: 92px;
    gap: 22px;
  }
  .visit-hours {
    grid-template-columns: 1fr;
  }
  .visit-hours div {
    min-height: 0;
    padding: 16px 18px;
  }
  .visit-hours dd {
    font-size: 17px;
  }
  .visit-actions a {
    min-height: 50px;
  }
  .promo-grid,
  .home-program-grid,
  .why-grid {
    margin-top: 38px;
  }
  .home-promo { padding-top: 118px; }
  .promo-card,
  .why-grid article {
    padding: 28px;
  }
  .promo-card h3 { font-size: 21.6px; }
  .home-program-card img { height: 210px; }
  .home-program-card span,
  .home-program-card h3,
  .home-program-card p {
    margin-left: 24px;
    margin-right: 24px;
  }
  .sub-hero { min-height: 360px; padding: 130px 24px 54px; }
  .sub-hero .section-lead,
  .notice-heading > p,
  .notice-item p {
    max-width: 100%;
    overflow-wrap: anywhere;
  }
  .notice-heading { margin-bottom: 32px; }
  .notice-item {
    grid-template-columns: 1fr;
    gap: 16px;
    min-height: 0;
    padding: 26px;
  }
  .notice-item > span {
    justify-self: start;
  }
  .notice-item time {
    grid-column: auto;
  }
  .card, .faq-item { padding: 26px; }
  .location-map {
    min-height: 360px;
    padding: 24px;
  }
  .map-box {
    width: 100%;
    min-height: 230px;
    padding: 28px;
  }
  .map-box h2 {
    font-size: 28px;
    line-height: 1.45;
  }
  .map-box .section-lead {
    margin-top: 20px;
    font-size: 15px;
    line-height: 1.85;
  }
  .info-list li,
  .detail-list li { display: block; }
  .info-list b,
  .detail-list b {
    display: block;
    margin-top: 8px;
    text-align: left;
  }
  .bottom-cta a {
    min-height: 82px;
    padding: 0 28px;
    font-size: 20px;
  }
  .floating-contact {
    display: none;
  }
  .mobile-action-bar {
    position: fixed;
    left: 0;
    right: auto;
    bottom: 0;
    z-index: 40;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 100dvw;
    max-width: 100dvw;
    min-height: 68px;
    padding-bottom: env(safe-area-inset-bottom);
    background: rgba(255, 249, 247, .96);
    border-top: 1px solid #ead8d6;
    box-shadow: 0 -14px 32px rgba(77, 61, 48, .12);
    backdrop-filter: blur(14px);
  }
  .mobile-action-bar a {
    display: grid;
    align-content: center;
    justify-items: center;
    gap: 3px;
    min-height: 68px;
    border-right: 1px solid #ead8d6;
    color: #5b4443;
    font-size: 12px;
    font-weight: 700;
    min-width: 0;
  }
  .mobile-action-bar a:last-child {
    border-right: 0;
  }
  .mobile-action-bar img {
    width: 24px;
    height: 24px;
    object-fit: contain;
  }
  .mobile-phone-icon {
    width: 24px;
    height: 24px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #9b7774;
    color: #fff;
  }
  .mobile-phone-icon svg {
    width: 15px;
    height: 15px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
  }
  .mobile-action-bar b {
    max-width: 100%;
    white-space: nowrap;
  }
}
