*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: #f7eff0;
  color: #3f3030;
  font-family: "Noto Serif KR", serif;
  font-weight: 300;
  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-size: 20px;
  font-weight: 500;
  line-height: 1.08;
}
.brand-text small {
  display: block;
  margin-top: 5px;
  color: rgba(255,255,255,.82);
  font-size: 8px;
  letter-spacing: .16em;
  font-weight: 500;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  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(46px, 6.5vw, 92px);
  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; }
.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.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-size: clamp(34px, 4.2vw, 58px);
  line-height: 1.45;
  font-weight: 300;
}
h3 {
  font-size: 24px;
  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: 194px;
}
.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: 28px;
  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: 36px;
  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;
}
.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; }
@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-size: 15px;
  }
  .mobile-menu a:last-child { border-bottom: 0; }
  .mobile-menu a.is-active { color: #f3d9d8; }
  .home-info,
  .promo-grid,
  .home-program-grid,
  .why-grid,
  .split,
  .grid-3,
  .grid-4,
  .equipment-grid,
  .doctor-grid,
  .faq-grid,
  .tour-grid,
  .location-layout,
  .bottom-cta {
    grid-template-columns: 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) {
  .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: 40px;
    line-height: 1.34;
  }
  .hero-copy p:not(.hero-kicker) {
    max-width: 310px;
    margin-top: 22px;
    font-size: 15px;
    line-height: 1.8;
  }
  .hero-copy p br { display: none; }
  .hero-kicker {
    margin-bottom: 18px;
    font-size: 10px;
    letter-spacing: .28em;
  }
  .scroll-cue { display: none; }
  .home-info article,
  .section,
  .location-copy { padding: 74px 24px; }
  .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: 24px; }
  .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; }
  .card, .faq-item { padding: 26px; }
  .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;
  }
}
