:root {
  --brand-blue: #73c2e3;
  --brand-blue-mid: #8bcde8;
  --brand-blue-soft: #a9dcee;
  --brand-blue-pale: #e7f6fb;
  --brand-blue-deep: #73c2e3;
  --brand-warm: #fff9e5;
  --sky-050: #f7fcfe;
  --sky-100: #edf8fc;
  --sky-150: #e2f4fb;
  --sky-200: #d4eff9;
  --sky-300: #b9e5f5;
  --sky-400: var(--brand-blue-soft);
  --sky-500: var(--brand-blue);
  --sky-600: var(--brand-blue-deep);
  --blue-700: var(--brand-blue-deep);
  --blue-800: #4b555a;
  --ink: #30363a;
  --muted: #68747a;
  --line: rgba(115, 194, 227, .15);
  --cream: #fff8e7;
  --cream-strong: #ffedbf;
  --coral: #ee7277;
  --white: #fff;
  --shadow-soft: 0 22px 65px rgba(115, 194, 227, .11);
  --shadow-card: 0 16px 42px rgba(115, 194, 227, .09);
  --radius-lg: 32px;
  --radius-md: 22px;
  --header-h: 104px;
  --shell: min(1240px, calc(100vw - 64px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--sky-050);
  font-family: "Noto Sans KR", "Pretendard", "Apple SD Gothic Neo", "Malgun Gothic", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  word-break: keep-all;
  -webkit-font-smoothing: antialiased;
}
html.modal-open,
body.modal-open { overflow: hidden; overscroll-behavior: none; }
body.modal-open { position: fixed; inset-inline: 0; width: 100%; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { color: inherit; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
[hidden] { display: none !important; }
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible { outline: 3px solid var(--blue-700); outline-offset: 3px; }
.shell { width: var(--shell); margin-inline: auto; }
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.skip-link {
  position: fixed;
  z-index: 9999;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  color: var(--white);
  background: var(--blue-700);
  border-radius: 10px;
  transform: translateY(-150%);
}
.skip-link:focus { transform: none; }

/* Header — the legacy sky-to-warm indirect light, with real scroll shrink. */
.site-header {
  position: fixed;
  z-index: 900;
  inset: 0 0 auto;
  height: var(--header-h);
  display: flex;
  align-items: center;
  color: var(--white);
  background:
    radial-gradient(60% 130% at 72% 115%, rgba(255, 247, 211, .92), transparent 58%),
    linear-gradient(180deg, rgba(34, 163, 211, .96) 0%, rgba(134, 210, 235, .92) 46%, rgba(255, 249, 229, .94) 100%);
  box-shadow: inset 0 -16px 28px rgba(255, 250, 228, .44), 0 1px 0 rgba(255,255,255,.55);
  transition: height .42s cubic-bezier(.2,.75,.25,1), background .42s ease, box-shadow .42s ease, color .35s ease;
}
.site-header::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 18px;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(255, 248, 220, .4));
}
.site-header.is-scrolled {
  height: 68px;
  color: var(--ink);
  background: rgba(247, 252, 254, .91);
  border-bottom: 1px solid rgba(34, 163, 211, .12);
  box-shadow: 0 10px 34px rgba(34, 163, 211, .1);
  -webkit-backdrop-filter: blur(18px) saturate(125%);
  backdrop-filter: blur(18px) saturate(125%);
}
.site-header.is-scrolled::after { opacity: 0; }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.brand { position: relative; flex: 0 0 auto; width: 235px; height: 46px; }
.brand-logo { position: absolute; inset: 0 auto auto 0; width: 100%; height: 100%; object-fit: contain; object-position: left center; transition: opacity .3s ease; }
.brand-logo--color { opacity: 0; }
.site-header.is-scrolled .brand-logo--white { opacity: 0; }
.site-header.is-scrolled .brand-logo--color { opacity: 1; }
.desktop-nav { display: flex; align-items: center; justify-content: center; gap: clamp(18px, 2vw, 34px); margin-left: auto; }
.desktop-nav a,
.desktop-nav button {
  position: relative;
  padding: 8px 0;
  border: 0;
  color: inherit;
  background: transparent;
  font-size: 14px;
  font-weight: 650;
  cursor: pointer;
}
.desktop-nav a::after,
.desktop-nav button::after {
  content: "";
  position: absolute;
  inset: auto 50% 2px;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width .25s ease, left .25s ease;
}
.desktop-nav a:hover::after,
.desktop-nav button:hover::after { left: 0; width: 100%; }
.header-actions { display: flex; align-items: center; gap: 12px; }
.header-search {
  padding: 10px 15px;
  border: 1px solid rgba(255,255,255,.5);
  border-radius: 999px;
  background: rgba(255,255,255,.16);
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
  transition: background .25s ease, border-color .25s ease;
}
.site-header.is-scrolled .header-search { border-color: rgba(34,163,211,.15); background: rgba(255,255,255,.72); }
.header-search:hover { background: rgba(255,255,255,.32); }
.menu-toggle { display: none; width: 42px; height: 42px; padding: 10px; border: 0; background: transparent; cursor: pointer; }
.menu-toggle > span:not(.sr-only) { display: block; width: 22px; height: 1px; margin: 5px 0; background: currentColor; transition: transform .25s ease, opacity .25s ease; }
.menu-toggle[aria-expanded="true"] > span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] > span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] > span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.mobile-menu {
  position: fixed;
  z-index: 1900;
  inset: 0;
  width: 100%;
  height: 100svh;
  height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding:
    max(12px, env(safe-area-inset-top))
    max(12px, env(safe-area-inset-right))
    max(12px, env(safe-area-inset-bottom))
    max(12px, env(safe-area-inset-left));
  color: var(--ink);
}
.mobile-menu-backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: rgba(239, 247, 250, .78);
  -webkit-backdrop-filter: blur(18px) saturate(105%);
  backdrop-filter: blur(18px) saturate(105%);
  cursor: default;
}
.mobile-menu-panel {
  position: relative;
  z-index: 1;
  width: min(100%, 700px);
  max-height: 100%;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid rgba(255,255,255,.8);
  border-radius: 28px;
  background: rgba(255,255,255,.88);
  box-shadow: 0 28px 84px rgba(115,194,227,.18);
  -webkit-backdrop-filter: blur(28px) saturate(108%);
  backdrop-filter: blur(28px) saturate(108%);
}
.mobile-menu-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 24px; }
.mobile-menu-head p { margin: 0; color: var(--brand-blue); font-size: 10px; font-weight: 800; letter-spacing: .17em; }
.mobile-menu-close { display: grid; place-items: center; width: 42px; height: 42px; padding: 0; border: 1px solid var(--line); border-radius: 50%; color: var(--brand-blue); background: rgba(255,255,255,.78); font-size: 26px; line-height: 1; cursor: pointer; }
.mobile-menu nav { display: grid; gap: 2px; padding: clamp(28px, 6vh, 54px) 0; text-align: center; }
.mobile-menu nav a,
.mobile-menu nav button { padding: 8px; border: 0; color: var(--muted); background: none; font-size: clamp(25px, 4.2vw, 44px); font-weight: 400; line-height: 1.2; letter-spacing: -.04em; text-align: center; cursor: pointer; transition: color .2s ease, transform .2s ease; }
.mobile-menu nav a:hover,
.mobile-menu nav button:hover { color: var(--ink); transform: translateX(4px); }
.mobile-menu-contact { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 22px; padding-top: 20px; border-top: 1px solid var(--line); color: var(--muted); font-size: 12px; }
.mobile-menu-contact a { padding: 7px 0; }
.scroll-progress { position: fixed; z-index: 950; top: 0; left: 0; right: 0; height: 2px; pointer-events: none; }
.scroll-progress span { display: block; width: 100%; height: 100%; background: linear-gradient(90deg, var(--cream-strong), var(--sky-500)); transform: scaleX(0); transform-origin: left center; }

/* Shared headings and controls */
.section { position: relative; padding: clamp(94px, 10vw, 148px) 0; }
.section-heading { max-width: 760px; margin-bottom: 54px; }
.section-heading--row { max-width: none; display: grid; grid-template-columns: minmax(0, .9fr) minmax(320px, .7fr); align-items: end; gap: 72px; }
.section-heading h2,
.care-intro h2,
.visit h2,
.inquiry h2 {
  margin: 10px 0 18px;
  color: var(--ink);
  font-size: clamp(38px, 5vw, 72px);
  line-height: 1.1;
  letter-spacing: -.055em;
  font-weight: 300;
}
.section-heading p,
.care-intro > p,
.inquiry-intro > p { color: var(--muted); }
.eyebrow { margin: 0; font-size: 11px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.eyebrow span { display: inline-block; width: 28px; height: 1px; margin-right: 10px; background: currentColor; vertical-align: middle; }
.eyebrow--dark { color: var(--sky-600); }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 48px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  transition: transform .25s ease, background .25s ease, box-shadow .25s ease, color .25s ease;
}
.button:hover { transform: translateY(-2px); }
.button--primary { color: #fff; background: linear-gradient(135deg, var(--brand-blue), var(--brand-blue-mid)); box-shadow: 0 12px 28px rgba(115,194,227,.24); }
.button--primary:hover { box-shadow: 0 16px 34px rgba(115,194,227,.32); }
.button--glass { color: var(--ink); border-color: rgba(115,194,227,.2); background: rgba(255,255,255,.45); -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px); }
.button--light { color: var(--blue-700); background: rgba(255,255,255,.95); }
.button--outline { color: var(--blue-700); border-color: rgba(115,194,227,.3); background: transparent; }
.text-link, .text-button { display: inline-flex; align-items: center; gap: 9px; padding: 8px 0; border: 0; color: var(--blue-700); background: none; font-weight: 700; cursor: pointer; }
.glow-card { border: 1px solid rgba(115, 194, 227, .13); box-shadow: var(--shadow-card); }

/* Hero */
.hero {
  position: relative;
  isolation: isolate;
  min-height: max(780px, 100svh);
  overflow: hidden;
  padding-top: var(--header-h);
  color: var(--white);
  background:
    radial-gradient(820px 620px at 84% 18%, rgba(255, 244, 204, .62), transparent 60%),
    radial-gradient(760px 660px at 22% 76%, rgba(125, 220, 244, .52), transparent 66%),
    linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-blue-mid) 44%, var(--brand-blue-soft) 72%, var(--brand-warm) 100%);
}
.hero::before {
  display: none;
}
.hero::after { content: ""; position: absolute; z-index: 0; inset: 0; pointer-events: none; background: linear-gradient(90deg, rgba(255,255,255,.02), transparent 72%); }
.hero-texture { position: absolute; inset: 0; background: linear-gradient(105deg, rgba(115,194,227,.1), transparent 42%, rgba(255,248,221,.18)); }
.pointer-light { position: absolute; z-index: 1; left: var(--pointer-x, 76%); top: var(--pointer-y, 30%); width: 540px; height: 540px; border-radius: 50%; opacity: .8; pointer-events: none; background: radial-gradient(circle, rgba(255,242,198,.32), rgba(134,217,244,.14) 45%, transparent 72%); transform: translate(-50%,-50%); transition: left .2s ease-out, top .2s ease-out; }
.hero-ambient { position: absolute; inset: 0; pointer-events: none; }
.hero-particles { display: none; }
.hero-particles-glow { position: absolute; width: 780px; height: 780px; top: -260px; right: -160px; border-radius: 50%; background: radial-gradient(circle, rgba(255,242,194,.38), transparent 68%); }
.hero-grid { position: relative; z-index: 3; min-height: calc(max(780px, 100svh) - var(--header-h)); display: grid; grid-template-columns: minmax(0, .82fr) minmax(420px, 1.18fr); align-items: center; gap: 30px; }
.hero-copy { max-width: 660px; padding: 72px 0 110px; }
.hero-copy .eyebrow { color: rgba(255,255,255,.9); }
.hero-copy h1 { margin: 22px 0 24px; line-height: 1; letter-spacing: -.07em; }
.hero-copy h1 > span { display: block; color: #fff; font-size: clamp(55px, 6.7vw, 100px); font-weight: 260; text-shadow: 0 2px 28px rgba(20,20,20,.14); }
.hero-copy h1 > small { display: block; margin-top: 20px; color: rgba(255,255,255,.94); font-family: ui-serif, Georgia, serif; font-size: clamp(18px, 2vw, 28px); font-weight: 400; letter-spacing: .015em; }
.hero-lead { margin: 0 0 34px; color: rgba(255,255,255,.84); font-size: clamp(17px, 1.7vw, 23px); line-height: 1.72; text-shadow: 0 1px 18px rgba(20,20,20,.12); }
.hero-lead strong { color: #fff; font-weight: 650; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero .button--primary { color: var(--blue-700); background: rgba(255,255,255,.96); box-shadow: 0 14px 34px rgba(115,194,227,.18); }
.hero .button--primary:hover { background: #fff; box-shadow: 0 18px 40px rgba(115,194,227,.24); }
.hero .button--glass { color: #fff; border-color: rgba(255,255,255,.5); background: rgba(255,255,255,.14); }
.hero .button--glass:hover { background: rgba(255,255,255,.24); }
.hero a:focus-visible,
.site-footer a:focus-visible,
.site-footer button:focus-visible { outline-color: #fff; }
.hero-facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; max-width: 620px; margin: 56px 0 0; border-top: 1px solid rgba(115,194,227,.17); }
.hero-facts div { padding: 18px 20px 0 0; }
.hero-facts { border-top-color: rgba(255,255,255,.32); }
.hero-facts dt { color: rgba(255,255,255,.74); font-size: 10px; font-weight: 800; letter-spacing: .12em; }
.hero-facts dd { margin: 3px 0 0; color: #fff; font-size: 14px; font-weight: 650; }
.hero-crystal { position: relative; align-self: stretch; min-height: 560px; }
.hero-crystal img { position: absolute; width: min(760px, 60vw); max-width: none; right: -7vw; top: 46%; transform: translateY(-50%); opacity: .9; filter: drop-shadow(0 34px 36px rgba(115,194,227,.16)); }
.hero-crystal span { position: absolute; width: 260px; height: 40px; right: 5%; top: 69%; border-radius: 50%; background: radial-gradient(ellipse, rgba(115,194,227,.22), transparent 70%); filter: blur(9px); }
@media (min-width: 861px) {
  .hero-crystal { position: static; }
  .hero-crystal img { width: min(1000px, 72vw); left: calc(50% + 22vw); right: auto; top: 55%; transform: translate(-84.333%, -50%); }
  .hero-crystal span { width: min(320px, 24vw); left: calc(50% + 22vw); right: auto; top: 65%; transform: translateX(-50%); }
}
.scroll-cue { position: absolute; z-index: 4; left: 50%; bottom: 28px; display: flex; align-items: center; gap: 12px; color: rgba(255,255,255,.86); font-size: 9px; font-weight: 800; letter-spacing: .15em; transform: translateX(-50%); }
.scroll-cue span { width: 1px; height: 28px; background: currentColor; animation: cue 1.8s ease-in-out infinite; }
@keyframes cue { 0%,100% { transform: scaleY(.45); transform-origin: top; opacity: .45; } 50% { transform: scaleY(1); opacity: 1; } }

/* Full-screen text notice */
.visit-notice {
  position: fixed;
  z-index: 2000;
  inset: 0;
  display: grid;
  place-items: center;
  align-items: safe center;
  padding: 24px;
  overflow-y: auto;
  cursor: pointer;
  color: var(--ink);
  background: rgba(238, 248, 252, .76);
  -webkit-backdrop-filter: blur(18px) saturate(118%);
  backdrop-filter: blur(18px) saturate(118%);
  animation: notice-in .45s ease both;
}
.visit-notice-light { position: absolute; inset: 0; pointer-events: none; background: radial-gradient(640px 480px at 50% 36%, rgba(255,237,176,.66), transparent 72%), radial-gradient(780px 580px at 50% 70%, rgba(102,204,239,.3), transparent 74%); }
.visit-notice-card {
  position: relative;
  width: min(780px, calc(100vw - 40px));
  padding: clamp(44px, 5.5vw, 64px) clamp(24px, 6vw, 70px) 34px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.76);
  border-radius: 36px;
  background: linear-gradient(145deg, rgba(255,255,255,.93), rgba(229,247,253,.88));
  box-shadow: 0 35px 100px rgba(115,194,227,.22);
  text-align: center;
}
.visit-notice-card::after { content: ""; position: absolute; inset: auto -10% -30% 35%; height: 48%; border-radius: 50%; background: rgba(255,240,195,.28); filter: blur(38px); }
.visit-notice-close { position: absolute !important; z-index: 3 !important; top: 18px; right: 18px; display: grid; place-items: center; width: 40px; height: 40px; padding: 0; border: 1px solid rgba(115,194,227,.16); border-radius: 50%; color: var(--blue-700); background: rgba(255,255,255,.68); font-size: 25px; line-height: 1; cursor: pointer; }
.visit-notice-card > * { position: relative; z-index: 1; }
.visit-notice-card > p { margin: 0; color: var(--sky-600); font-size: 10px; font-weight: 800; letter-spacing: .18em; }
.visit-notice-card h2 { margin: 13px 0 30px; font-size: clamp(34px, 4.5vw, 50px); line-height: 1.23; letter-spacing: -.045em; font-weight: 430; }
.visit-notice-schedule { display: grid; gap: 10px; width: min(100%, 570px); margin: 0 auto; }
.visit-notice-row { display: grid; grid-template-columns: 64px minmax(0, 1fr); align-items: center; gap: 18px; padding: 17px 20px; border: 1px solid rgba(115,194,227,.13); border-radius: 18px; text-align: left; }
.visit-notice-row--closed { background: rgba(255,255,255,.52); }
.visit-notice-row--open { background: rgba(218,244,252,.72); }
.visit-notice-status { display: grid; place-items: center; min-height: 32px; border-radius: 999px; color: #fff; background: var(--coral); font-size: 10px; font-weight: 800; letter-spacing: .08em; }
.visit-notice-row--open .visit-notice-status { background: var(--sky-600); }
.visit-notice-dates { display: grid; gap: 2px; }
.visit-notice-row strong,
.visit-notice-row b { display: block; color: var(--ink); font-size: clamp(19px, 2.4vw, 27px); line-height: 1.4; font-weight: 680; }
.visit-notice-row b { color: var(--blue-700); }
.visit-notice-card > span { display: block; margin-top: 24px; color: var(--muted); font-size: 11px; }
@keyframes notice-in { from { opacity: 0; } to { opacity: 1; } }

/* Care principles — typography and spacing carry the section without decorative imagery. */
.standard { background: linear-gradient(180deg, #fff, var(--sky-050)); }
.standard-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.standard-card { position: relative; min-height: 332px; overflow: hidden; border-radius: var(--radius-lg); background: linear-gradient(150deg, rgba(255,255,255,.98), rgba(232,247,252,.9)); }
.standard-card::before { content: ""; position: absolute; inset: 0 0 auto; height: 3px; background: linear-gradient(90deg, var(--sky-500), rgba(255,236,177,.9)); }
.standard-copy { min-height: 332px; display: flex; flex-direction: column; padding: 38px 36px 40px; }
.card-index { color: var(--sky-600); font-size: 44px; line-height: 1; font-weight: 230; letter-spacing: -.05em; }
.standard-copy h3 { margin: auto 0 14px; font-size: 25px; line-height: 1.4; letter-spacing: -.035em; font-weight: 480; }
.standard-copy p { margin: 0; max-width: 31em; color: var(--muted); font-size: 14px; }

/* Full clinical content kept in static HTML for search and AI crawlers. */
.care { background: linear-gradient(155deg, var(--sky-100), #fffdf6); }
.care-shell { display: grid; grid-template-columns: 320px minmax(0, 1fr); gap: 62px; align-items: start; }
.care-intro { position: sticky; top: 110px; }
.care-intro h2 { margin-top: 12px; }
.care-intro .text-link { margin-top: 18px; }
.care-interface { min-width: 0; }
.care-list { display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px; margin-bottom: 16px; }
.care-tab {
  min-height: 126px;
  padding: 16px 14px;
  border: 1px solid rgba(115,194,227,.12);
  border-radius: 18px;
  color: #626d72;
  background: rgba(255,255,255,.62);
  text-align: left;
  cursor: pointer;
  transition: background .25s ease, border-color .25s ease, transform .25s ease, box-shadow .25s ease;
}
.care-tab:hover { transform: translateY(-2px); border-color: rgba(115,194,227,.28); }
.care-tab.is-active {
  color: #fff;
  border-color: rgba(115, 194, 227, .48);
  background: radial-gradient(circle at 82% 10%, rgba(255,249,229,.32), transparent 39%), linear-gradient(145deg, var(--brand-blue) 0%, var(--brand-blue-mid) 64%, var(--brand-blue-soft) 100%);
  box-shadow: 0 14px 32px rgba(115,194,227,.24);
}
.care-tab span { display: block; color: var(--sky-600); font-size: 10px; font-weight: 800; }
.care-tab strong { display: block; margin: 12px 0 5px; font-size: 14px; line-height: 1.4; font-weight: 700; }
.care-tab em { display: block; color: var(--muted); font-size: 10px; font-style: normal; }
.care-tab.is-active span,
.care-tab.is-active em { color: rgba(255,255,255,.82); }
.care-panel {
  position: relative;
  display: block;
  min-height: 0;
  overflow: hidden;
  border-radius: 30px;
  background: rgba(255,255,255,.92);
}
.care-panel::before { content: ""; position: absolute; inset: 0 0 auto; height: 3px; background: linear-gradient(90deg, rgba(115,194,227,.9), rgba(255,237,184,.86)); }
.care-copy { padding: 50px 54px 54px; }
.care-copy > p { margin: 0; color: var(--sky-600); font-size: 11px; font-weight: 800; letter-spacing: .13em; }
.care-copy h3 { margin: 8px 0 26px; color: var(--ink); font-size: clamp(30px, 3vw, 45px); line-height: 1.2; letter-spacing: -.04em; font-weight: 350; }
.care-copy ul { display: grid; gap: 0; margin: 0; padding: 0; list-style: none; }
.care-copy li { display: grid; grid-template-columns: minmax(150px, .42fr) 1fr; gap: 22px; padding: 14px 0; border-top: 1px solid var(--line); color: var(--muted); font-size: 13px; }
.care-copy li strong { color: var(--ink); font-weight: 700; }
.care-copy .care-list-compact { grid-template-columns: repeat(2, 1fr); gap: 0 22px; }
.care-copy .care-list-compact li { display: block; padding: 11px 0; color: var(--ink); }
.care-global-note { grid-column: 2; margin: -38px 0 0; color: var(--muted); font-size: 11px; }

/* Doctors — the only section using physician photography. */
.doctors { background: #fff; }
.doctor-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.doctor-card { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--white); box-shadow: var(--shadow-card); }
.doctor-visual { position: relative; aspect-ratio: 1.42 / 1; overflow: hidden; background: var(--sky-100); }
.doctor-visual img { width: 100%; height: 100%; object-fit: cover; object-position: center 22%; }
.doctor-badge { position: absolute; left: 22px; bottom: 18px; padding: 8px 12px; border-radius: 999px; color: var(--ink); background: rgba(255,255,255,.82); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); font-size: 9px; font-weight: 800; letter-spacing: .13em; }
.doctor-content { padding: 34px; }
.doctor-name p { margin: 0 0 5px; color: var(--sky-600); font-size: 11px; font-weight: 800; letter-spacing: .12em; }
.doctor-name h3 { margin: 0; font-size: 34px; letter-spacing: -.04em; font-weight: 450; }
.doctor-name h3 span { color: var(--muted); font-size: 15px; font-weight: 500; }
.doctor-content ul { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 7px 20px; margin: 26px 0; padding: 22px 0; border-block: 1px solid var(--line); list-style: none; }
.doctor-content li { position: relative; padding-left: 12px; color: var(--muted); font-size: 12px; }
.doctor-content li::before { content: ""; position: absolute; left: 0; top: .7em; width: 3px; height: 3px; border-radius: 50%; background: var(--sky-500); }
.doctor-highlight { display: grid; grid-template-columns: .3fr 1fr; gap: 30px; align-items: center; margin-top: 26px; padding: 30px 36px; border: 1px solid var(--line); border-radius: 24px; background: radial-gradient(circle at 78% 20%, rgba(255,238,185,.66), transparent 38%), linear-gradient(135deg, var(--sky-100), #fff); }
.doctor-highlight p { margin: 0; color: var(--sky-600); font-size: 11px; font-weight: 800; letter-spacing: .13em; }
.doctor-highlight strong { color: #555f64; font-size: 17px; font-weight: 480; }

/* Schedule */
.schedule-band { position: relative; overflow: hidden; padding: 86px 0; color: #fff; background: radial-gradient(760px 450px at 78% 20%, rgba(255,249,229,.3), transparent 65%), linear-gradient(125deg, var(--brand-blue) 0%, var(--brand-blue-mid) 58%, var(--brand-blue-soft) 100%); }
.schedule-band::before { content: ""; position: absolute; inset: 0; opacity: .32; background-image: linear-gradient(rgba(255,255,255,.1) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px); background-size: 52px 52px; }
.schedule-band-inner { position: relative; display: grid; grid-template-columns: 1fr 1.15fr auto; align-items: center; gap: 42px; }
.schedule-band h2 { margin: 10px 0 0; font-size: clamp(34px, 4vw, 54px); line-height: 1.2; letter-spacing: -.045em; font-weight: 300; }
.schedule-preview { display: flex; align-items: center; gap: 24px; }
.schedule-date { display: flex; align-items: center; gap: 14px; }
.schedule-date > span { font-size: 58px; line-height: 1; font-weight: 250; }
.schedule-date small { font-size: 9px; line-height: 1.4; letter-spacing: .14em; }
.schedule-preview strong { display: block; margin-bottom: 8px; font-size: 17px; font-weight: 700; }
.schedule-preview p { margin: 0; color: rgba(255,255,255,.78); font-size: 12px; }
.schedule-band-glow { position: absolute; width: 520px; height: 520px; right: -100px; top: -220px; border-radius: 50%; background: radial-gradient(circle, rgba(255,243,201,.34), transparent 68%); }

/* Legacy gallery layout: four across desktop, three across mobile. */
.space-gallery { background: linear-gradient(180deg, #fff, var(--sky-050)); }
.space-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 9px; }
.gallery-thumb { position: relative; aspect-ratio: 1; overflow: hidden; padding: 0; border: 0; border-radius: 12px; background: var(--sky-100); cursor: zoom-in; }
.gallery-thumb::after { content: "+"; position: absolute; right: 12px; bottom: 10px; display: grid; place-items: center; width: 30px; height: 30px; border-radius: 50%; color: var(--ink); background: rgba(255,255,255,.78); opacity: 0; transform: translateY(6px); transition: opacity .25s ease, transform .25s ease; }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s cubic-bezier(.2,.75,.25,1), filter .35s ease; }
.gallery-thumb:hover img { transform: scale(1.045); filter: saturate(1.05); }
.gallery-thumb:hover::after,
.gallery-thumb:focus-visible::after { opacity: 1; transform: none; }
.gallery-modal { position: fixed; z-index: 2300; inset: 0; display: grid; place-items: center; padding: 54px; color: #fff; background: rgba(28,28,28,.88); -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px); cursor: zoom-out; }
.gallery-modal > img { max-width: min(88vw, 1080px); max-height: 86vh; object-fit: contain; border-radius: 12px; box-shadow: 0 30px 90px rgba(0,0,0,.35); cursor: zoom-out; }
.gallery-close,
.gallery-nav { position: absolute; z-index: 2; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.25); border-radius: 50%; color: #fff; background: rgba(255,255,255,.08); cursor: pointer; }
.gallery-close { top: 22px; right: 24px; width: 46px; height: 46px; font-size: 28px; }
.gallery-nav { top: 50%; width: 54px; height: 54px; font-size: 42px; line-height: 1; transform: translateY(-50%); }
.gallery-nav--prev { left: 24px; }
.gallery-nav--next { right: 24px; }
.gallery-modal > span { position: absolute; bottom: 22px; left: 50%; font-size: 11px; letter-spacing: .12em; transform: translateX(-50%); }

/* Visit */
.visit { background: #fff; }
.visit-grid { display: grid; grid-template-columns: 1.22fr .78fr; gap: 22px; }
.location-card,
.info-card { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-lg); background: #fff; }
.location-map-art { height: 420px; background: var(--sky-100); }
.location-map-art iframe { width: 100%; height: 100%; border: 0; }
.location-content { padding: 34px; }
.location-content > p,
.info-label { margin: 0; color: var(--sky-600); font-size: 10px; font-weight: 800; letter-spacing: .14em; }
.location-content h3 { margin: 12px 0 24px; font-size: clamp(26px, 3vw, 40px); line-height: 1.38; letter-spacing: -.04em; font-weight: 350; }
.visit-details { display: grid; gap: 22px; }
.info-card { padding: 34px; }
.hours-list { margin: 20px 0; }
.hours-list div { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.hours-list dt { color: var(--muted); }
.hours-list dd { margin: 0; color: var(--ink); font-weight: 700; }
.small-note { margin: 18px 0 0; color: var(--muted); font-size: 11px; }
.small-note--alert { padding-top: 16px; border-top: 1px solid var(--line); }
.info-card--contact { color: #fff; background: radial-gradient(circle at 90% 5%, rgba(255,249,229,.34), transparent 40%), linear-gradient(145deg, var(--brand-blue), var(--brand-blue-mid)); }
.info-card--contact .info-label { color: rgba(255,255,255,.7); }
.big-phone { display: block; margin: 16px 0 28px; font-family: ui-serif, Georgia, serif; font-size: clamp(30px, 4vw, 46px); line-height: 1; }
.contact-row { display: grid; grid-template-columns: 76px 1fr; gap: 14px; padding: 16px 0; border-top: 1px solid rgba(255,255,255,.22); }
.contact-row span { font-size: 9px; font-weight: 800; letter-spacing: .13em; }
.contact-row strong { font-size: 12px; font-weight: 600; }

/* Inquiry */
.inquiry { background: linear-gradient(150deg, var(--sky-100), #fffaf0); }
.inquiry-grid { display: grid; grid-template-columns: .76fr 1.24fr; gap: 80px; align-items: start; }
.inquiry-intro { position: sticky; top: 110px; }
.inquiry-shortcuts { display: grid; gap: 10px; margin-top: 34px; }
.inquiry-shortcuts a { display: grid; grid-template-columns: 38px 1fr auto; align-items: center; gap: 12px; padding: 16px 0; border-top: 1px solid var(--line); }
.inquiry-shortcuts span { color: var(--sky-600); font-size: 10px; font-weight: 800; }
.inquiry-shortcuts strong { font-size: 13px; }
.inquiry-shortcuts em { color: var(--muted); font-size: 11px; font-style: normal; }
.inquiry-form { padding: 38px; border: 1px solid rgba(115,194,227,.13); border-radius: var(--radius-lg); background: rgba(255,255,255,.82); box-shadow: var(--shadow-card); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.inquiry-form > label,
.form-row label { display: grid; gap: 7px; margin-bottom: 16px; }
.inquiry-form label > span { color: var(--muted); font-size: 11px; font-weight: 700; }
.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea { width: 100%; border: 1px solid var(--line); border-radius: 14px; outline: none; color: var(--ink); background: rgba(247,252,254,.92); transition: border-color .2s ease, box-shadow .2s ease; }
.inquiry-form input,
.inquiry-form select { height: 50px; padding: 0 14px; }
.inquiry-form textarea { min-height: 130px; padding: 14px; resize: vertical; }
.inquiry-form input:focus,
.inquiry-form select:focus,
.inquiry-form textarea:focus { border-color: var(--sky-500); box-shadow: 0 0 0 4px rgba(115,194,227,.13); }
.consent { grid-template-columns: 18px 1fr !important; align-items: start; gap: 10px !important; margin: 14px 0 !important; }
.consent input { width: 16px; height: 16px; margin: 3px 0 0; accent-color: var(--sky-600); }
.consent span { font-weight: 400 !important; line-height: 1.55; }
.consent a { text-decoration: underline; }
.form-submit { width: 100%; margin-top: 18px; }
.form-status { min-height: 20px; margin-top: 12px; color: var(--muted); font-size: 12px; text-align: center; }
.honeypot { position: absolute; width: 1px; height: 1px; overflow: hidden; opacity: 0; pointer-events: none; }

/* Footer and floating actions */
.site-footer { position: relative; overflow: hidden; padding: 80px 0 34px; color: #fff; background: radial-gradient(760px 520px at 86% 0%, rgba(255,255,255,.2), transparent 62%), linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-blue-mid) 58%, var(--brand-blue-soft) 100%); }
.footer-glow { position: absolute; width: 720px; height: 720px; right: -160px; top: -320px; border-radius: 50%; background: radial-gradient(circle, rgba(255,239,190,.2), rgba(255,255,255,.05) 38%, transparent 70%); }
.footer-grid { position: relative; display: grid; grid-template-columns: .8fr 1.2fr; gap: 100px; }
.footer-brand img { width: 230px; filter: brightness(0) invert(1); opacity: .94; }
.footer-brand p { margin-top: 26px; color: rgba(255,255,255,.92); }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.footer-links > div { display: grid; align-content: start; gap: 10px; }
.footer-links p { margin: 0 0 8px; color: rgba(255,255,255,.9); font-size: 10px; font-weight: 800; letter-spacing: .14em; }
.footer-links a,
.footer-links button { padding: 0; border: 0; color: #fff; background: none; font-size: 12px; text-align: left; cursor: pointer; }
.footer-links a:hover,
.footer-links button:hover { color: #fff; }
.footer-bottom { position: relative; display: flex; justify-content: space-between; gap: 24px; margin-top: 58px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.3); color: rgba(255,255,255,.84); font-size: 10px; }
.medical-disclaimer { position: relative; margin-top: 14px; color: rgba(255,255,255,.84); font-size: 10px; line-height: 1.65; }
.floating-tools { position: fixed; z-index: 850; right: 20px; bottom: 24px; display: grid; gap: 8px; }
.floating-tools a { position: relative; display: grid; place-items: center; width: 46px; height: 46px; border: 1px solid rgba(255,255,255,.68); border-radius: 50%; color: var(--blue-700); background: rgba(245,252,254,.84); box-shadow: 0 12px 30px rgba(115,194,227,.14); -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px); }
.floating-tools svg { width: 18px; fill: none; stroke: currentColor; stroke-width: 1.7; }
.floating-tools strong { font-size: 13px; }
.floating-tools span { position: absolute; right: calc(100% + 8px); padding: 5px 8px; border-radius: 7px; color: #fff; background: var(--ink); font-size: 9px; white-space: nowrap; opacity: 0; transform: translateX(6px); pointer-events: none; transition: .2s ease; }
.floating-tools a:hover span { opacity: 1; transform: none; }

/* Dialogs */
.modal { position: fixed; z-index: 2200; inset: 0; display: grid; place-items: center; padding: 24px; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(28,28,28,.64); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); }
.modal-panel { position: relative; width: min(980px, calc(100vw - 40px)); max-height: calc(100svh - 40px); overflow: auto; padding: 42px; border-radius: 30px; background: #f8fcfe; box-shadow: 0 36px 100px rgba(28,28,28,.24); }
.modal-panel--schedule { width: min(1120px, calc(100vw - 40px)); }
.modal-close { position: sticky; z-index: 3; float: right; top: 0; display: grid; place-items: center; width: 42px; height: 42px; margin: -20px -20px 0 0; border: 1px solid var(--line); border-radius: 50%; background: rgba(255,255,255,.9); cursor: pointer; }
.modal-heading { margin: 0 70px 28px 0; }
.modal-heading > p { margin: 0 0 6px; color: var(--sky-600); font-size: 9px; font-weight: 800; letter-spacing: .14em; }
.modal-heading h2 { margin: 0 0 10px; font-size: clamp(28px, 4vw, 46px); line-height: 1.2; letter-spacing: -.04em; font-weight: 350; }
.modal-heading > span { color: var(--muted); font-size: 12px; }
.modal-actions { display: flex; justify-content: center; gap: 10px; margin-top: 24px; }
.modal-footnote { color: var(--muted); font-size: 10px; text-align: center; }
.schedule-structured { overflow-x: auto; border: 1px solid var(--line); border-radius: 20px; background: #fff; }
.schedule-calendar { min-width: 780px; }
.schedule-calendar-head,
.schedule-calendar-grid { display: grid; grid-template-columns: repeat(7, 1fr); }
.schedule-calendar-head span { padding: 11px; color: var(--blue-700); background: var(--sky-100); font-size: 11px; font-weight: 800; text-align: center; }
.schedule-day { min-height: 126px; padding: 10px; border-top: 1px solid var(--line); border-left: 1px solid var(--line); background: #fff; }
.schedule-day:nth-child(7n+1) { border-left: 0; }
.schedule-day.is-empty { background: #f7fafb; }
.schedule-day.is-weekend b { color: #bc7178; }
.schedule-day > b { display: block; margin-bottom: 8px; font-size: 14px; font-weight: 600; }
.schedule-doctors { display: grid; gap: 5px; }
.doctor-label { display: inline-flex; width: fit-content; max-width: 100%; padding: 3px 7px; border-radius: 999px; font-size: 9px; line-height: 1.35; }
.doctor-label--choi { color: var(--brand-blue); background: rgba(115,194,227,.14); }
.doctor-label--on { color: #a36e25; background: rgba(255,219,158,.38); }
.doctor-label--closed { color: #b95562; background: rgba(244,193,204,.35); }
.schedule-legend { display: flex; flex-wrap: wrap; gap: 14px; padding: 14px 16px; border-top: 1px solid var(--line); color: var(--muted); font-size: 10px; }
.schedule-legend span { display: inline-flex; align-items: center; gap: 6px; }
.schedule-legend i { width: 8px; height: 8px; border-radius: 50%; }
.legend-choi { background: #73c2e3; }
.legend-on { background: #f0bd6f; }
.legend-closed { background: #df7f8b; }
.schedule-memo-list { margin: 14px 0 0; padding: 16px 32px; border-top: 1px solid var(--line); color: var(--muted); font-size: 11px; }
.fee-tabs { display: flex; gap: 8px; margin-bottom: 20px; }
.fee-tabs button { padding: 10px 16px; border: 1px solid var(--line); border-radius: 999px; background: #fff; cursor: pointer; }
.fee-tabs button.is-active { color: var(--blue-700); border-color: var(--sky-400); background: var(--sky-100); }
.fee-panel { display: none; }
.fee-panel.is-active { display: block; }
.table-scroll { overflow-x: auto; border: 1px solid var(--line); border-radius: 16px; background: #fff; }
.table-scroll table { width: 100%; min-width: 660px; border-collapse: collapse; font-size: 12px; }
.table-scroll caption { padding: 14px; color: var(--ink); font-weight: 700; text-align: left; }
.table-scroll th,
.table-scroll td { padding: 12px 14px; border-top: 1px solid var(--line); text-align: left; }
.table-scroll th { color: var(--blue-700); background: var(--sky-100); }
.fee-source-note { color: var(--muted); font-size: 11px; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.75,.25,1); }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1120px) {
  :root { --shell: min(100% - 44px, 1100px); }
  .desktop-nav { gap: 16px; }
  .desktop-nav a, .desktop-nav button { font-size: 12px; }
  .header-search { display: none; }
  .hero-grid { grid-template-columns: minmax(0, .96fr) minmax(350px, 1.04fr); }
  .care-shell { grid-template-columns: 250px 1fr; gap: 36px; }
  .care-list { grid-template-columns: repeat(3, 1fr); }
  .schedule-band-inner { grid-template-columns: .9fr 1.1fr; }
  .schedule-band-inner > .button { grid-column: 2; justify-self: start; }
}

@media (max-width: 860px) {
  :root { --header-h: 82px; --shell: min(100% - 34px, 780px); }
  .desktop-nav, .header-search { display: none; }
  .menu-toggle { display: block; }
  .brand { width: 205px; height: 40px; }
  .site-header.is-scrolled { height: 62px; }
  .section-heading--row { grid-template-columns: 1fr; gap: 14px; }
  .hero-grid { grid-template-columns: 1fr; align-content: center; }
  .hero-copy { max-width: 650px; padding: 96px 0 36px; }
  .hero-crystal { min-height: 260px; }
  .hero-crystal img { width: 720px; right: -180px; top: 42%; }
  .standard-grid { grid-template-columns: 1fr; }
  .standard-card, .standard-copy { min-height: 280px; }
  .care-shell { grid-template-columns: 1fr; }
  .care-intro, .inquiry-intro { position: static; }
  .care-global-note { grid-column: 1; margin-top: -38px; }
  .doctor-grid { grid-template-columns: 1fr; }
  .schedule-band-inner { grid-template-columns: 1fr; }
  .schedule-band-inner > .button { grid-column: 1; }
  .visit-grid { grid-template-columns: 1fr; }
  .visit-details { grid-template-columns: repeat(2, 1fr); }
  .inquiry-grid { grid-template-columns: 1fr; gap: 42px; }
  .footer-grid { grid-template-columns: 1fr; gap: 56px; }
}

@media (max-width: 600px) {
  :root { --shell: calc(100% - 28px); }
  body { font-size: 15px; }
  .section { padding: 80px 0; }
  .section-heading { margin-bottom: 34px; }
  .site-header { height: 74px; }
  .site-header.is-scrolled { height: 58px; }
  .brand { width: 176px; height: 34px; }
  .hero { min-height: 760px; padding-top: 74px; }
  .hero-grid { min-height: 686px; }
  .hero-copy { padding: 70px 0 16px; }
  .hero-copy h1 { margin-top: 18px; }
  .hero-copy h1 > span { font-size: clamp(43px, 13vw, 62px); }
  .hero-copy h1 > small { margin-top: 14px; font-size: 16px; }
  .hero-lead { font-size: 16px; }
  .hero-facts { margin-top: 36px; }
  .hero-facts div { padding-right: 10px; }
  .hero-facts dd { font-size: 11px; }
  .hero-crystal { min-height: 190px; }
  .hero-crystal img { width: 590px; right: -170px; }
  .scroll-cue { display: none; }
  .visit-notice { padding: 12px; }
  .visit-notice-card { width: calc(100vw - 24px); padding: 42px 18px 28px; border-radius: 26px; }
  .visit-notice-close { top: 12px; right: 12px; }
  .visit-notice-card h2 { margin: 10px 28px 24px; font-size: 29px; }
  .visit-notice-row { grid-template-columns: 52px minmax(0, 1fr); gap: 12px; padding: 14px; border-radius: 15px; }
  .visit-notice-status { min-height: 29px; font-size: 9px; }
  .visit-notice-row strong, .visit-notice-row b { font-size: clamp(16px, 5vw, 20px); }
  .visit-notice-card > span { margin-top: 20px; font-size: 10px; }
  .standard-card, .standard-copy { min-height: 260px; }
  .standard-copy { padding: 30px 26px; }
  .card-index { font-size: 36px; }
  .care-list { display: flex; gap: 7px; overflow-x: auto; padding-bottom: 5px; scrollbar-width: none; }
  .care-list::-webkit-scrollbar { display: none; }
  .care-tab { flex: 0 0 156px; min-height: 110px; }
  .care-copy { padding: 28px 22px 34px; }
  .care-copy li { grid-template-columns: 1fr; gap: 3px; }
  .care-copy .care-list-compact { grid-template-columns: 1fr; }
  .care-global-note { margin-top: -24px; }
  .doctor-content { padding: 26px 22px; }
  .doctor-content ul { grid-template-columns: 1fr; }
  .doctor-highlight { grid-template-columns: 1fr; gap: 8px; padding: 24px; }
  .schedule-preview { align-items: flex-start; }
  .schedule-date > span { font-size: 46px; }
  .space-grid { grid-template-columns: repeat(3, 1fr); gap: 5px; }
  .gallery-thumb { border-radius: 7px; }
  .gallery-thumb::after { display: none; }
  .gallery-modal { padding: 52px 8px; }
  .gallery-nav { width: 42px; height: 42px; font-size: 32px; background: rgba(28,28,28,.38); }
  .gallery-nav--prev { left: 10px; }
  .gallery-nav--next { right: 10px; }
  .gallery-close { top: 10px; right: 10px; }
  .visit-details { grid-template-columns: 1fr; }
  .location-map-art { height: 310px; }
  .location-content, .info-card { padding: 26px 22px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .inquiry-form { padding: 24px 18px; }
  .inquiry-shortcuts a { grid-template-columns: 30px 1fr; }
  .inquiry-shortcuts em { grid-column: 2; }
  .footer-links { grid-template-columns: 1fr 1fr; gap: 34px 22px; }
  .footer-links > div:last-child { grid-column: 1 / -1; }
  .footer-bottom { display: grid; }
  .floating-tools { right: 12px; bottom: 14px; }
  .floating-tools a { width: 42px; height: 42px; }
  .floating-tools span { display: none; }
  .modal { padding: 10px; }
  .modal-panel, .modal-panel--schedule { width: calc(100vw - 20px); max-height: calc(100svh - 20px); padding: 26px 14px; border-radius: 22px; }
  .modal-close { margin: -8px -2px 0 0; }
  .modal-heading { margin-right: 50px; }
  .modal-actions { flex-wrap: wrap; }
}

@media (max-height: 620px) {
  .visit-notice { align-items: start; }
}

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