@font-face {
  font-family: "Noto Sans KR Hero";
  src: url("assets/fonts/NotoSansKR-Bold.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  --paper: #f7f4ed;
  --paper-2: #eee9de;
  --white: #fffdf9;
  --ink: #24231f;
  --muted: #6d6a62;
  --line: #cfc8ba;
  --olive: #7c8269;
  --olive-dark: #535a47;
  --brick: #9e2117;
  --brick-dark: #79150f;
  --yellow: #ffd22e;
  --max: 1320px;
  --serif: "Noto Serif KR", "Nanum Myeongjo", "Batang", serif;
  --sans: "Pretendard", "Noto Sans KR", "Apple SD Gothic Neo", "Malgun Gothic", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  word-break: keep-all;
}
body.menu-open { overflow: hidden; }
body.booking-open { overflow: hidden; }
img { display: block; width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
:focus-visible { outline: 3px solid #1d65a6; outline-offset: 3px; }
.skip-link { position: fixed; left: 12px; top: -60px; z-index: 200; background: var(--ink); color: white; padding: 10px 16px; }
.skip-link:focus { top: 12px; }

.demo-bar {
  min-height: 34px;
  padding: 7px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--brick-dark);
  color: #fff;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .02em;
  text-align: center;
}
.demo-bar span { opacity: .76; font-weight: 500; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  min-height: 86px;
  display: flex;
  align-items: center;
  background: rgba(247, 244, 237, .95);
  border-bottom: 1px solid rgba(57, 54, 48, .16);
  backdrop-filter: blur(12px);
}
.header-inner {
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 30px;
}
.brand { display: inline-flex; align-items: center; gap: 12px; min-width: max-content; }
.brand-mark { width: 27px; height: 34px; position: relative; flex: 0 0 auto; }
.brand-mark::before, .brand-mark::after {
  content: "";
  position: absolute;
  width: 17px;
  height: 9px;
  border: 1.5px solid var(--olive-dark);
  border-radius: 100% 0 100% 0;
  transform: rotate(-34deg);
}
.brand-mark::before { top: 5px; left: 3px; }
.brand-mark::after { top: 17px; left: 9px; transform: rotate(25deg) scale(.8); }
.brand strong { display: block; font-family: var(--serif); font-size: 1.26rem; letter-spacing: -.05em; line-height: 1.2; }
.brand small { display: block; margin-top: 3px; font-size: .57rem; letter-spacing: .22em; color: var(--muted); }
.desktop-nav { justify-self: center; display: flex; gap: clamp(16px, 2vw, 34px); font-size: .86rem; font-weight: 700; }
.desktop-nav a { position: relative; padding: 31px 0 28px; }
.desktop-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 22px; height: 2px; background: var(--brick); transition: right .25s ease; }
.desktop-nav a:hover::after, .desktop-nav a[aria-current="page"]::after { right: 0; }
.header-actions { display: flex; align-items: center; gap: 10px; }
.phone-label { border: 0; background: transparent; color: inherit; cursor: pointer; font-size: .77rem; font-weight: 700; letter-spacing: .05em; }
.menu-toggle { display: none; width: 44px; height: 44px; background: transparent; border: 1px solid var(--ink); align-items: center; justify-content: center; }
.menu-toggle span, .menu-toggle::before, .menu-toggle::after { content: ""; width: 20px; height: 1px; background: currentColor; position: absolute; transition: .2s ease; }
.menu-toggle::before { transform: translateY(-6px); }
.menu-toggle::after { transform: translateY(6px); }
.menu-toggle[aria-expanded="true"] span { opacity: 0; }
.menu-toggle[aria-expanded="true"]::before { transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"]::after { transform: rotate(-45deg); }
.mobile-menu { display: none; }

.btn {
  min-height: 48px;
  padding: 12px 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-weight: 800;
  font-size: .9rem;
  transition: transform .18s ease, background .18s ease, color .18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn::after { content: "↗"; font-size: 1rem; }
.btn-primary { background: var(--brick); border-color: var(--brick); color: #fff; }
.btn-primary:hover { background: var(--brick-dark); }
.btn-light { border-color: rgba(255,255,255,.7); color: #fff; }
.btn-compact { min-height: 40px; padding: 8px 14px; font-size: .78rem; }
.link-arrow { display: inline-flex; align-items: center; gap: 10px; font-weight: 800; border-bottom: 1px solid currentColor; padding-bottom: 4px; }
.link-arrow::after { content: "↗"; }

.hero { min-height: min(760px, calc(100vh - 120px)); position: relative; isolation: isolate; overflow: hidden; border-bottom: 1px solid var(--line); }
.hero::after { content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none; background: linear-gradient(90deg, rgba(247, 244, 237, .98) 0%, rgba(247, 244, 237, .94) 31%, rgba(247, 244, 237, .7) 45%, rgba(247, 244, 237, .12) 66%, rgba(247, 244, 237, 0) 78%); }
.hero-copy { position: relative; z-index: 2; width: min(58%, 860px); min-height: inherit; padding: clamp(72px, 8vw, 126px) clamp(30px, 6vw, 96px); display: flex; flex-direction: column; justify-content: center; }
.eyebrow { margin: 0 0 24px; font-size: .72rem; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; color: var(--brick); }
.hero h1, .detail-hero h1 { margin: 0; font-family: "Noto Sans KR Hero", var(--sans); font-weight: 700; letter-spacing: -.07em; line-height: 1.12; text-wrap: balance; }
.hero h1 { max-width: 660px; font-size: clamp(3rem, 4.7vw, 5.2rem); }
.hero-copy > p:not(.eyebrow) { max-width: 590px; margin: 34px 0 0; color: var(--muted); font-size: clamp(1rem, 1.2vw, 1.14rem); }
.hero-actions { margin-top: 38px; display: flex; flex-wrap: wrap; gap: 10px; }
.hero-facts { margin-top: 54px; padding-top: 18px; border-top: 1px solid var(--line); display: flex; flex-wrap: wrap; gap: 16px 32px; font-size: .78rem; color: var(--muted); }
.hero-facts strong { color: var(--ink); }
.hero-media { position: absolute; inset: 0; z-index: 0; overflow: hidden; background: var(--paper-2); }
.hero-media picture { display: block; width: 100%; height: 100%; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-media .media-caption { left: auto; right: 18px; z-index: 3; }
.detail-hero-media { position: relative; min-height: 520px; overflow: hidden; background: var(--paper-2); }
.detail-hero-media img { height: 100%; object-fit: cover; }
.media-caption { position: absolute; left: 18px; bottom: 18px; padding: 7px 10px; color: #fff; background: rgba(35, 32, 27, .72); font-size: .7rem; }

.section { padding: clamp(76px, 10vw, 150px) 0; border-bottom: 1px solid var(--line); scroll-margin-top: 115px; }
.section-alt { background: #eeebe4; }
.container { width: min(calc(100% - 48px), var(--max)); margin: 0 auto; }
.section-head { display: grid; grid-template-columns: minmax(230px, 30%) 1fr; gap: 50px; align-items: start; margin-bottom: clamp(42px, 6vw, 82px); }
.section-no { display: inline-block; margin-bottom: 14px; color: var(--brick); font-size: .68rem; font-weight: 900; letter-spacing: .18em; }
.section h2, .section-title { margin: 0; font-family: var(--serif); font-weight: 400; font-size: clamp(2.4rem, 4.2vw, 4.3rem); line-height: 1.12; letter-spacing: -.06em; }
.section-intro { max-width: 780px; margin: 8px 0 0; color: var(--muted); font-size: 1.05rem; }
.section-kicker { display: inline-flex; padding: 5px 9px; margin-bottom: 18px; background: var(--brick); color: #fff; font-size: .68rem; font-weight: 800; letter-spacing: .08em; }

.concern-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--ink); border-left: 1px solid var(--line); }
.concern-card { min-height: 250px; padding: 28px; position: relative; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); display: flex; flex-direction: column; background: rgba(255,255,255,.22); transition: background .2s ease, transform .2s ease; }
.concern-card:hover { background: var(--white); transform: translateY(-3px); }
.card-index { color: var(--olive-dark); font-size: .69rem; font-weight: 800; letter-spacing: .12em; }
.concern-icon { width: 58px; height: 58px; margin: 24px 0 20px; color: var(--brick); }
.concern-icon svg { width: 100%; height: 100%; display: block; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.concern-icon .icon-fill { fill: currentColor; stroke: none; }
.concern-card h3 { margin: auto 0 10px; font-size: 1.18rem; }
.concern-card p { margin: 0; color: var(--muted); font-size: .9rem; }
.section-actions { display: flex; flex-wrap: wrap; gap: 10px; justify-content: flex-end; margin-top: 34px; }
.notice-strip { margin-top: 24px; padding: 22px 26px; display: flex; justify-content: space-between; gap: 30px; align-items: center; background: var(--paper-2); font-size: .88rem; }

.doctor-teaser { margin-top: 70px; display: grid; grid-template-columns: 34% 1fr; border-top: 1px solid var(--ink); border-bottom: 1px solid var(--line); background: var(--white); }
.doctor-visual { min-height: 420px; background: var(--olive-dark); position: relative; overflow: hidden; }
.doctor-visual img { height: 100%; object-fit: cover; object-position: center 24%; }
.doctor-monogram { position: absolute; inset: 0; display: grid; place-items: center; color: #fff; font-family: var(--serif); font-size: 5rem; letter-spacing: -.08em; }
.doctor-copy { padding: clamp(34px, 6vw, 78px); display: flex; flex-direction: column; justify-content: center; }
.doctor-copy h3 { margin: 0 0 24px; font-family: var(--serif); font-size: clamp(2rem, 3.2vw, 3.4rem); font-weight: 400; letter-spacing: -.05em; }
.doctor-copy blockquote { margin: 0 0 34px; font-family: var(--serif); font-size: 1.2rem; line-height: 1.9; }
.doctor-meta { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); margin-bottom: 28px; }
.doctor-meta div { padding: 16px 12px 0 0; }
.doctor-meta small { display: block; color: var(--muted); font-size: .65rem; letter-spacing: .12em; }

.equipment-feature { display: grid; grid-template-columns: 48% 1fr; background: var(--white); }
.equipment-feature > img { height: 100%; min-height: 540px; object-fit: cover; }
.equipment-list { padding: 24px 40px; display: grid; }
.equipment-row { padding: 28px 0; display: grid; grid-template-columns: 44px 1fr auto; gap: 16px; align-items: center; border-bottom: 1px solid var(--line); }
.equipment-row:last-child { border-bottom: 0; }
.equipment-row span:first-child { color: var(--olive-dark); font-size: .72rem; }
.equipment-row h3 { margin: 0 0 5px; font-size: 1.2rem; }
.equipment-row p { margin: 0; font-size: .84rem; color: var(--muted); }
.equipment-row b { font-weight: 500; font-size: 1.25rem; }

.fees-layout { display: grid; grid-template-columns: 1.03fr .97fr; gap: 28px; }
.price-table { width: 100%; border-collapse: collapse; border-top: 1px solid var(--ink); }
.price-table th, .price-table td { padding: 20px 6px; border-bottom: 1px solid var(--line); text-align: left; }
.price-table th { font-size: .9rem; font-weight: 650; }
.price-table td { text-align: right; font-size: 1.05rem; font-weight: 800; }
.table-note { margin-top: 14px; font-size: .78rem; color: var(--muted); }
.info-card-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 4px; }
.info-card { min-height: 168px; padding: 26px; background: var(--paper-2); border-top: 1px solid var(--ink); }
.info-card small { color: var(--brick); font-size: .66rem; font-weight: 800; letter-spacing: .1em; }
.info-card h3 { margin: 14px 0 8px; font-family: var(--serif); font-size: 1.4rem; font-weight: 400; }
.info-card p { margin: 0; color: var(--muted); font-size: .85rem; }
.reservation-banner { margin-top: 40px; padding: 28px 30px; display: grid; grid-template-columns: 1fr auto; gap: 28px; align-items: center; background: var(--brick); color: white; }
#reservation { scroll-margin-top: 130px; }
.reservation-banner h3 { margin: 0 0 4px; font-size: 1.2rem; }
.reservation-banner p { margin: 0; opacity: .8; font-size: .84rem; }
.reservation-actions, .wide-callout-actions { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 10px; }
.reservation-actions { display: grid; grid-template-columns: repeat(2, minmax(140px, 1fr)); }
.reservation-actions .btn { min-width: 0; }

.process-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 5px; }
.process-step { min-height: 260px; padding: 24px 18px; background: var(--white); border-top: 1px solid var(--ink); display: flex; flex-direction: column; }
.step-number { width: 40px; height: 40px; border: 1px solid var(--olive); border-radius: 50%; display: grid; place-items: center; color: var(--olive-dark); font-size: .72rem; font-weight: 800; }
.process-step h3 { margin: auto 0 12px; font-size: 1rem; }
.process-step p { margin: 0; color: var(--muted); font-size: .78rem; }
.quick-facts { margin-top: 36px; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); }
.quick-facts div { padding: 22px 18px 0 0; }
.quick-facts strong { display: block; font-family: var(--serif); font-size: 1.3rem; }
.quick-facts span { color: var(--muted); font-size: .84rem; }

.faq-section { background: var(--paper); }
.faq-list { border-top: 1px solid var(--ink); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary { position: relative; padding: 26px 64px 26px 0; display: grid; grid-template-columns: 52px 1fr; align-items: center; gap: 10px; list-style: none; cursor: pointer; font-size: clamp(1.05rem, 1.5vw, 1.28rem); font-weight: 800; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary span { color: var(--brick); font-size: .72rem; letter-spacing: .12em; }
.faq-item summary::after { content: "+"; position: absolute; right: 6px; top: 50%; translate: 0 -50%; width: 34px; height: 34px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; font-size: 1.3rem; font-weight: 400; transition: background .2s ease, color .2s ease; }
.faq-item[open] summary::after { content: "−"; background: var(--brick); border-color: var(--brick); color: #fff; }
.faq-answer { padding: 0 64px 28px 62px; }
.faq-answer p { max-width: 860px; margin: 0; color: var(--muted); line-height: 1.8; }
.faq-item summary:hover::after { border-color: var(--brick); }

.visit-layout { display: grid; grid-template-columns: 52% 1fr; gap: 28px; }
.visit-collage { display: grid; grid-template-columns: 1.35fr .85fr; grid-template-rows: repeat(2, 250px); gap: 7px; }
.visit-collage figure { margin: 0; position: relative; overflow: hidden; }
.visit-collage figure:first-child { grid-row: span 2; }
.visit-collage img { height: 100%; object-fit: cover; transition: transform .6s ease; }
.visit-collage figure:hover img { transform: scale(1.025); }
.visit-collage figcaption { position: absolute; left: 10px; bottom: 10px; padding: 5px 8px; background: rgba(35,32,27,.76); color: #fff; font-size: .66rem; }
.visit-info { padding: 34px; background: var(--paper-2); }
.visit-info h3 { margin: 0 0 12px; font-family: var(--serif); font-weight: 400; font-size: 2rem; line-height: 1.3; }
.visit-info > p { margin: 0 0 28px; color: var(--muted); }
.hours-list { border-top: 1px solid var(--ink); }
.hours-row { padding: 13px 0; display: grid; grid-template-columns: 1fr auto auto; gap: 20px; border-bottom: 1px solid var(--line); font-size: .82rem; }
.hours-row strong { min-width: 100px; text-align: right; }
.hours-row span:last-child { min-width: 44px; text-align: right; color: var(--muted); }
.parking-bar { margin-top: 26px; padding: 20px 24px; background: var(--brick); color: white; font-size: .84rem; }

.readiness { background: #2e302a; color: #fff; }
.readiness .section-head { margin-bottom: 36px; }
.readiness .section-no { color: #d3d6c4; }
.readiness .section-intro { color: rgba(255,255,255,.68); }
.readiness-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(255,255,255,.2); }
.readiness-item { padding: 30px; background: #2e302a; }
.readiness-item .status { display: inline-block; padding: 3px 8px; border: 1px solid rgba(255,255,255,.45); color: #e4e6da; font-size: .66rem; font-weight: 800; letter-spacing: .1em; }
.readiness-item h3 { margin: 18px 0 8px; font-size: 1.05rem; }
.readiness-item p { margin: 0; color: rgba(255,255,255,.65); font-size: .84rem; }

.detail-hero { display: grid; grid-template-columns: 48% 52%; min-height: 590px; border-bottom: 1px solid var(--line); }
.detail-hero-copy { padding: clamp(70px, 8vw, 120px) clamp(32px, 6vw, 86px); display: flex; flex-direction: column; justify-content: center; }
.detail-hero h1 { font-size: clamp(3.2rem, 5vw, 5.4rem); }
.detail-hero-copy > p:not(.eyebrow) { margin: 30px 0 0; max-width: 580px; color: var(--muted); font-size: 1.05rem; }
.trust-line { margin-top: 42px; font-size: .76rem; color: var(--muted); }

.detail-section { padding: clamp(70px, 8vw, 118px) 0; border-bottom: 1px solid var(--line); }
.detail-title-row { display: grid; grid-template-columns: 30% 1fr; gap: 50px; margin-bottom: 48px; }
.detail-title-row h2 { margin: 0; font-family: var(--serif); font-size: clamp(2.35rem, 3.7vw, 3.9rem); font-weight: 400; line-height: 1.18; letter-spacing: -.05em; }
.detail-title-row p { margin: 10px 0 0; color: var(--muted); }
.detail-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.detail-card { padding: 28px; background: var(--white); border-top: 1px solid var(--ink); }
.detail-card h3 { margin: 14px 0 10px; font-size: 1.15rem; }
.detail-card p, .detail-card li { color: var(--muted); font-size: .9rem; }
.detail-card ul { padding-left: 18px; margin: 15px 0 0; }
.detail-card li + li { margin-top: 6px; }
.detail-card .label { font-size: .68rem; color: var(--brick); font-weight: 800; letter-spacing: .1em; }
.wide-callout { margin-top: 28px; padding: 28px 32px; background: var(--brick); color: white; display: flex; align-items: center; justify-content: space-between; gap: 26px; }
.wide-callout p { margin: 0; max-width: 900px; }
.equipment-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.equipment-card { display: grid; grid-template-columns: 42% 1fr; min-height: 280px; background: var(--white); border-top: 1px solid var(--ink); }
.equipment-card .equipment-image { min-height: 280px; margin: 0; position: relative; overflow: hidden; background: var(--paper-2); }
.equipment-card .equipment-image img { height: 100%; object-fit: cover; }
.equipment-card .equipment-image figcaption { position: absolute; left: 10px; bottom: 10px; padding: 5px 8px; background: rgba(35,32,27,.78); color: #fff; font-size: .66rem; }
.equipment-card .equipment-copy { padding: 30px; }
.equipment-card h3 { margin: 8px 0 10px; font-family: var(--serif); font-size: 1.7rem; font-weight: 400; }
.equipment-card ul { padding-left: 18px; color: var(--muted); font-size: .86rem; }
.missing-badge { display: inline-block; padding: 4px 8px; background: #e5dfd1; color: #615d54; font-size: .66rem; font-weight: 800; }
.policy-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.policy-item { padding: 26px; background: var(--paper); }
.policy-item h3 { margin: 0 0 9px; font-size: 1rem; }
.policy-item p { margin: 0; color: var(--muted); font-size: .88rem; }
.timeline { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0 22px; }
.timeline .process-step { min-height: 220px; margin-bottom: 24px; background: transparent; border-bottom: 1px solid var(--line); }
.check-faq { display: grid; grid-template-columns: .9fr 1.1fr; gap: 24px; }
.checklist, .faq-panel { padding: 34px; border: 1px solid var(--line); background: var(--white); }
.checklist h2, .faq-panel h2 { margin: 0 0 24px; font-family: var(--serif); font-size: 2rem; font-weight: 400; }
.check-item { padding: 14px 0; border-bottom: 1px solid var(--line); display: flex; gap: 12px; align-items: flex-start; font-size: .9rem; }
.check-box { width: 16px; height: 16px; margin-top: 5px; border: 1px solid var(--olive-dark); flex: 0 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-question { width: 100%; padding: 17px 0; border: 0; background: transparent; display: flex; justify-content: space-between; gap: 20px; text-align: left; cursor: pointer; font-weight: 800; }
.faq-question::after { content: "+"; font-size: 1.2rem; font-weight: 400; }
.faq-question[aria-expanded="true"]::after { content: "−"; }
.faq-answer { display: none; padding: 0 0 18px; color: var(--muted); font-size: .88rem; }
.faq-question[aria-expanded="true"] + .faq-answer { display: block; }
.gallery { display: grid; grid-template-columns: 1.2fr .8fr .8fr; grid-template-rows: 260px 260px; gap: 8px; }
.gallery figure { margin: 0; overflow: hidden; position: relative; }
.gallery figure:first-child { grid-row: span 2; }
.gallery figure:last-child { grid-column: span 2; }
.gallery img { height: 100%; object-fit: cover; }
.gallery figcaption { position: absolute; left: 10px; bottom: 10px; background: rgba(35,32,27,.78); color: #fff; padding: 6px 9px; font-size: .68rem; }
.google-map { min-height: 560px; display: flex; flex-direction: column; overflow: hidden; border: 1px solid var(--line); background: var(--white); }
.google-map iframe { width: 100%; min-height: 480px; flex: 1; border: 0; }
.google-map-footer { min-height: 78px; padding: 16px 20px; display: flex; align-items: center; justify-content: space-between; gap: 24px; background: var(--white); border-top: 1px solid var(--line); }
.google-map-footer small { display: block; margin-bottom: 3px; color: var(--brick); font-size: .66rem; font-weight: 800; letter-spacing: .12em; }
.google-map-footer strong { display: block; font-size: .92rem; }
.google-map-footer .link-arrow { flex: 0 0 auto; font-size: .82rem; }

.site-footer { padding: 46px 0 100px; background: var(--white); }
.footer-grid { display: grid; grid-template-columns: 1.2fr repeat(3, 1fr); gap: 34px; }
.footer-grid h2 { margin: 0 0 12px; font-family: var(--serif); font-size: 1.1rem; }
.footer-grid h3 { margin: 0 0 10px; font-size: .72rem; letter-spacing: .08em; }
.footer-grid p { margin: 0; color: var(--muted); font-size: .78rem; }
.footer-grid strong { color: var(--ink); }
.footer-demo { display: inline-block; margin-top: 14px; padding: 6px 9px; background: var(--paper-2); color: var(--ink); font-size: .7rem; font-weight: 800; }
.footer-bottom { margin-top: 38px; padding-top: 20px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; gap: 20px; color: var(--muted); font-size: .72rem; }

.kakao-fab { position: fixed; right: 24px; bottom: 24px; z-index: 70; width: 72px; height: 72px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1px; border: 0; border-radius: 50%; background: var(--yellow); color: #2b241b; box-shadow: 0 14px 30px rgba(35,30,17,.18); cursor: pointer; font-weight: 900; font-size: .7rem; line-height: 1.08; }
.kakao-fab .kakao-icon { width: 27px; height: 27px; flex: 0 0 auto; }
.kakao-fab span { display: block; }
.kakao-fab small { display: block; margin-top: 1px; font-size: .54rem; font-weight: 700; }
.mobile-cta { display: none; }
.toast { position: fixed; left: 50%; bottom: 34px; z-index: 120; transform: translate(-50%, 24px); min-width: min(420px, calc(100% - 32px)); padding: 15px 18px; background: var(--ink); color: #fff; opacity: 0; pointer-events: none; transition: .24s ease; text-align: center; font-size: .86rem; }
.toast.show { opacity: 1; transform: translate(-50%, 0); }

.booking-dialog {
  width: min(1120px, calc(100% - 32px));
  max-width: none;
  max-height: calc(100dvh - 32px);
  margin: auto;
  padding: 0;
  overflow: auto;
  border: 1px solid var(--ink);
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 30px 90px rgba(20, 18, 14, .28);
}
.booking-dialog::backdrop { background: rgba(20, 18, 14, .72); backdrop-filter: blur(5px); }
.booking-dialog[open] { animation: booking-in .24s ease both; }
@keyframes booking-in { from { opacity: 0; transform: translateY(18px) scale(.985); } to { opacity: 1; transform: none; } }
.booking-shell { min-height: 100%; background: var(--paper); }
.booking-header {
  position: sticky;
  top: 0;
  z-index: 3;
  min-height: 128px;
  padding: 24px 30px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
  border-bottom: 1px solid var(--line);
  background: rgba(247, 244, 237, .97);
  backdrop-filter: blur(10px);
}
.booking-header h2 { margin: 2px 0 3px; font-family: var(--serif); font-size: clamp(1.8rem, 3vw, 2.55rem); line-height: 1.25; }
.booking-header p { margin: 0; color: var(--muted); font-size: .88rem; }
.booking-kicker { display: block; color: var(--brick); font-size: .69rem; font-weight: 900; letter-spacing: .15em; }
.booking-close {
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  border: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-size: 1.65rem;
  line-height: 1;
}
.booking-close:hover { background: var(--ink); color: white; }
.booking-grid { display: grid; grid-template-columns: .95fr 1.05fr; }
.booking-calendar-panel, .booking-detail-panel { padding: 32px 30px 34px; }
.booking-calendar-panel { border-right: 1px solid var(--line); background: var(--white); }
.booking-step { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 26px; }
.booking-step > span {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  background: var(--brick);
  color: white;
  font-size: .7rem;
  font-weight: 900;
}
.booking-step h3 { margin: -4px 0 1px; font-size: 1.08rem; }
.booking-step p { margin: 0; color: var(--muted); font-size: .78rem; }
.calendar-toolbar { min-height: 48px; display: grid; grid-template-columns: 42px 1fr 42px; align-items: center; border-block: 1px solid var(--line); }
.calendar-toolbar strong { text-align: center; font-size: .98rem; }
.calendar-nav { height: 42px; border: 0; background: transparent; color: var(--ink); cursor: pointer; font-size: 1rem; }
.calendar-nav:hover:not(:disabled) { background: var(--paper-2); }
.calendar-nav:disabled { color: var(--line); cursor: not-allowed; }
.calendar-weekdays, .calendar-days { display: grid; grid-template-columns: repeat(7, 1fr); }
.calendar-weekdays { padding: 12px 0 6px; color: var(--muted); font-size: .69rem; font-weight: 800; text-align: center; }
.calendar-weekdays span:first-child { color: var(--brick); }
.calendar-day, .calendar-blank { min-height: 46px; }
.calendar-day {
  margin: 2px;
  border: 1px solid transparent;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-size: .82rem;
  font-weight: 700;
}
.calendar-day:hover:not(:disabled) { border-color: var(--ink); background: var(--paper); }
.calendar-day.today:not(.selected) { border-color: var(--olive); color: var(--olive-dark); }
.calendar-day.selected { background: var(--brick); color: white; border-color: var(--brick); }
.calendar-day:disabled { color: #bbb4a7; cursor: not-allowed; text-decoration: line-through; }
.calendar-note { margin: 12px 0 0; padding-top: 12px; border-top: 1px solid var(--line); color: var(--muted); font-size: .72rem; line-height: 1.55; }
.booking-error { min-height: 21px; margin: 5px 0 0; color: var(--brick); font-size: .74rem; font-weight: 700; }
.procedure-fieldset { margin: 0 0 24px; padding: 0; border: 0; }
.procedure-fieldset legend, .booking-fields label > span { display: block; margin-bottom: 8px; font-size: .78rem; font-weight: 900; }
.procedure-fieldset em, .booking-fields em { color: var(--brick); font-style: normal; font-size: .68rem; }
.booking-fields small { color: var(--muted); font-weight: 600; }
.procedure-options { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
.procedure-options label { position: relative; cursor: pointer; }
.procedure-options input { position: absolute; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.procedure-options span {
  min-height: 46px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  background: var(--white);
  text-align: center;
  font-size: .78rem;
  font-weight: 800;
  transition: .16s ease;
}
.procedure-options label:hover span { border-color: var(--ink); }
.procedure-options input:checked + span { border-color: var(--brick); background: var(--brick); color: white; }
.procedure-options input:focus-visible + span { outline: 3px solid #1d65a6; outline-offset: 2px; }
.booking-fields { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 15px 12px; }
.booking-fields label { display: block; }
.booking-field-wide { grid-column: 1 / -1; }
.booking-fields .booking-consent { display: flex; align-items: flex-start; gap: 9px; cursor: pointer; }
.booking-fields .booking-consent input { width: 18px; min-height: 18px; margin: 2px 0 0; padding: 0; flex: 0 0 auto; }
.booking-fields .booking-consent > span { margin: 0; color: var(--muted); line-height: 1.55; }
.booking-fields input, .booking-fields select, .booking-fields textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 13px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--white);
  color: var(--ink);
  font: inherit;
  font-size: 1rem;
}
.booking-fields select:disabled { color: var(--muted); background: var(--paper-2); }
.booking-fields textarea { min-height: 92px; resize: vertical; line-height: 1.55; }
.booking-form-footer {
  padding: 20px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--line);
  background: var(--paper-2);
}
.booking-form-footer p { margin: 0; color: var(--muted); font-size: .74rem; }
.booking-form-footer .booking-submit-message { display: block; flex: 1 1 auto; }
.booking-form-footer .booking-submit-message .booking-error { margin-top: 5px; color: var(--brick); }
.booking-form-footer > div { display: flex; flex: 0 0 auto; gap: 8px; }
.booking-form-footer .btn:disabled { opacity: .58; cursor: wait; }
.booking-form-footer .btn, .booking-success-actions .btn { min-width: 132px; }
.booking-success { max-width: 830px; margin: 0 auto; padding: 54px 36px 48px; text-align: center; }
.booking-success-mark {
  width: 62px;
  height: 62px;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--brick);
  color: white;
  font-size: 1.8rem;
  font-weight: 900;
}
.booking-success h3 { margin: 6px 0 8px; font-family: var(--serif); font-size: clamp(1.8rem, 4vw, 2.6rem); line-height: 1.3; }
.booking-success > p { margin: 0; color: var(--muted); font-size: .88rem; }
.booking-summary { margin: 32px 0 20px; display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--ink); text-align: left; }
.booking-summary > div { min-height: 82px; padding: 16px 18px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.booking-summary > div:nth-child(even), .booking-summary .summary-wide { border-right: 0; }
.booking-summary .summary-wide { grid-column: 1 / -1; }
.booking-summary dt { color: var(--muted); font-size: .7rem; font-weight: 800; letter-spacing: .06em; }
.booking-summary dd { margin: 4px 0 0; font-size: .93rem; font-weight: 800; white-space: pre-wrap; }
.booking-demo-notice { padding: 14px 18px; display: flex; align-items: center; justify-content: center; gap: 9px; background: var(--paper-2); font-size: .77rem; }
.booking-demo-notice strong { color: var(--brick); }
.booking-success-actions { margin-top: 24px; display: flex; justify-content: center; gap: 8px; }
.booking-form-view[hidden], .booking-success[hidden] { display: none !important; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 1080px) {
  .desktop-nav, .header-actions { display: none; }
  .header-inner { grid-template-columns: 1fr auto; }
  .menu-toggle { display: inline-flex; position: relative; }
  .mobile-menu { position: fixed; inset: 120px 0 auto; max-height: calc(100vh - 120px); overflow: auto; background: var(--paper); border-bottom: 1px solid var(--line); padding: 18px 24px 28px; z-index: 79; }
  .mobile-menu.open { display: block; }
  .mobile-menu a { display: flex; justify-content: space-between; padding: 17px 0; border-bottom: 1px solid var(--line); font-weight: 800; }
  .mobile-menu a::after { content: "↗"; }
  .mobile-menu-actions { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; margin-top: 22px; }
  .hero h1 { font-size: clamp(3rem, 6.4vw, 4.6rem); }
  .process-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 820px) {
  body { padding-bottom: 68px; }
  .demo-bar { padding-inline: 12px; }
  .demo-bar span { display: none; }
  .site-header { min-height: 72px; }
  .mobile-menu { inset: 106px 0 auto; max-height: calc(100vh - 106px); }
  .header-inner { width: min(calc(100% - 32px), var(--max)); }
  .brand strong { font-size: 1.07rem; }
  .brand small { font-size: .5rem; }
  .hero { min-height: 820px; }
  .detail-hero { grid-template-columns: 1fr; min-height: 0; }
  .hero::after { background: linear-gradient(90deg, rgba(247, 244, 237, .96) 0%, rgba(247, 244, 237, .82) 43%, rgba(247, 244, 237, .15) 72%, rgba(247, 244, 237, 0) 100%), linear-gradient(180deg, rgba(247, 244, 237, .86) 0%, rgba(247, 244, 237, .25) 36%, rgba(247, 244, 237, 0) 56%); }
  .hero-copy { width: 100%; min-height: 820px; padding: 52px 24px 120px; justify-content: flex-start; }
  .hero-copy > * { max-width: 310px; }
  .detail-hero-copy { padding: 62px 24px 54px; }
  .hero h1, .detail-hero h1 { font-size: clamp(2.8rem, 12vw, 4.6rem); }
  .hero-media img { object-position: center; }
  .detail-hero-media { min-height: 430px; }
  .hero-facts { margin-top: 38px; }
  .container { width: min(calc(100% - 32px), var(--max)); }
  .section, .detail-section { padding: 72px 0; }
  .section-head, .detail-title-row { grid-template-columns: 1fr; gap: 24px; }
  .concern-grid { grid-template-columns: repeat(2, 1fr); }
  .concern-card { min-height: 210px; }
  .doctor-teaser, .equipment-feature, .fees-layout, .visit-layout, .check-faq { grid-template-columns: 1fr; }
  .google-map { min-height: 500px; }
  .google-map iframe { min-height: 420px; }
  .doctor-visual { min-height: 350px; }
  .equipment-feature > img { min-height: 380px; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-step { min-height: 220px; }
  .visit-collage { grid-template-rows: repeat(2, 210px); }
  .readiness-grid, .detail-grid { grid-template-columns: repeat(2, 1fr); }
  .equipment-cards { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: repeat(2, 1fr); }
  .gallery { grid-template-columns: 1fr 1fr; grid-template-rows: 280px 220px 220px; }
  .gallery figure:first-child { grid-column: span 2; grid-row: auto; }
  .gallery figure:last-child { grid-column: auto; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .kakao-fab { width: 58px; height: 58px; right: 16px; bottom: 82px; font-size: .62rem; }
  .kakao-fab .kakao-icon { width: 22px; height: 22px; }
  .mobile-cta { display: grid; grid-template-columns: 1fr 1.25fr; position: fixed; left: 0; right: 0; bottom: 0; z-index: 75; height: 68px; background: var(--ink); }
  .mobile-cta button, .mobile-cta a { border: 0; display: flex; align-items: center; justify-content: center; font-weight: 900; cursor: pointer; }
  .mobile-cta button { background: var(--white); color: var(--ink); }
  .mobile-cta a { background: var(--brick); color: white; }
  .mobile-cta > :last-child { background: var(--brick); color: white; }
  .site-footer { padding-bottom: 44px; }
  .toast { bottom: 84px; }
  .booking-dialog { width: min(760px, calc(100% - 20px)); max-height: calc(100dvh - 20px); }
  .booking-header { min-height: 110px; padding: 20px 22px; }
  .booking-grid { grid-template-columns: 1fr; }
  .booking-calendar-panel { border-right: 0; border-bottom: 1px solid var(--line); }
  .booking-calendar-panel, .booking-detail-panel { padding: 28px 22px; }
  .booking-form-footer { align-items: flex-start; flex-direction: column; padding: 20px 22px; }
  .booking-form-footer > div { width: 100%; }
  .booking-form-footer .btn { flex: 1; }
}

@media (max-width: 560px) {
  .hero { min-height: 800px; }
  .hero-copy { min-height: 800px; padding: 42px 18px 105px; }
  .hero-copy > * { max-width: 235px; }
  .hero h1 { font-size: clamp(2.45rem, 11vw, 3.2rem); }
  .hero-copy > p:not(.eyebrow) { margin-top: 24px; }
  .hero-actions { margin-top: 28px; }
  .hero-facts { margin-top: 30px; }
  .hero-media .media-caption { display: none; }
  .detail-hero-media { min-height: 340px; }
  .hero-actions .btn { width: 100%; }
  .section h2, .section-title { font-size: 2.55rem; }
  .concern-grid, .readiness-grid, .detail-grid, .info-card-grid, .policy-list { grid-template-columns: 1fr; }
  .concern-card { min-height: 180px; }
  .faq-item summary { grid-template-columns: 38px 1fr; padding: 22px 48px 22px 0; }
  .faq-answer { padding: 0 8px 24px 48px; }
  .notice-strip, .wide-callout { align-items: flex-start; flex-direction: column; }
  .doctor-meta { grid-template-columns: 1fr; }
  .doctor-meta div { padding-bottom: 12px; border-bottom: 1px solid var(--line); }
  .equipment-list { padding: 18px 22px; }
  .equipment-row { grid-template-columns: 35px 1fr auto; padding: 22px 0; }
  .reservation-banner { grid-template-columns: 1fr; }
  .reservation-banner .btn { width: 100%; }
  .reservation-actions { grid-template-columns: 1fr; width: 100%; }
  .wide-callout-actions { width: 100%; justify-content: flex-start; }
  .wide-callout-actions .btn { width: 100%; }
  .process-grid, .timeline { grid-template-columns: 1fr; }
  .process-step { min-height: 190px; }
  .quick-facts { grid-template-columns: 1fr; }
  .quick-facts div { padding-bottom: 18px; }
  .visit-collage { grid-template-columns: 1fr; grid-template-rows: repeat(3, 240px); }
  .visit-collage figure:first-child { grid-row: auto; }
  .hours-row { grid-template-columns: 1fr auto; }
  .hours-row span:last-child { display: none; }
  .google-map-footer { align-items: flex-start; flex-direction: column; gap: 12px; }
  .equipment-card { grid-template-columns: 1fr; }
  .equipment-card .equipment-image { min-height: 220px; }
  .gallery { grid-template-columns: 1fr; grid-template-rows: repeat(5, 240px); }
  .gallery figure:first-child, .gallery figure:last-child { grid-column: auto; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .booking-dialog { width: calc(100% - 10px); max-height: calc(100dvh - 10px); }
  .booking-header { min-height: 96px; padding: 16px; }
  .booking-header p { display: none; }
  .booking-close { width: 40px; height: 40px; }
  .booking-calendar-panel, .booking-detail-panel { padding: 24px 16px; }
  .calendar-day, .calendar-blank { min-height: 42px; }
  .procedure-options, .booking-fields { grid-template-columns: 1fr; }
  .booking-field-wide { grid-column: auto; }
  .booking-form-footer { padding: 16px; }
  .booking-form-footer > div, .booking-success-actions { flex-direction: column; }
  .booking-success { padding: 42px 16px 30px; }
  .booking-summary { grid-template-columns: 1fr; }
  .booking-summary > div, .booking-summary > div:nth-child(even), .booking-summary .summary-wide { grid-column: auto; border-right: 0; }
  .booking-demo-notice { align-items: flex-start; flex-direction: column; text-align: left; }
  .booking-success-actions .btn { width: 100%; }
}
