:root {
  --ink: #071b29;
  --ink-soft: #24485f;
  --blue-950: #032a46;
  --blue-900: #07456e;
  --blue-800: #075f96;
  --blue-700: #087abc;
  --blue-600: #1595d5;
  --blue-500: #38afe4;
  --blue-300: #9bd9f5;
  --blue-200: #ccecff;
  --blue-100: #eaf7ff;
  --ice: #f5fbff;
  --paper: #ffffff;
  --line: rgba(8, 81, 124, .15);
  --shadow: 0 30px 80px rgba(7, 69, 110, .12);
  --shell: min(1240px, calc(100vw - 80px));
  --header-h: 86px;
  --ease: cubic-bezier(.22, 1, .36, 1);
  --mx: 50vw;
  --my: 45vh;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 100px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--ice);
  font-family: "Pretendard", "SUIT", "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  word-break: keep-all;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}
body.is-locked { overflow: hidden; }
button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { color: inherit; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
svg { display: block; }
[hidden] { display: none !important; }
::selection { color: #fff; background: var(--blue-700); }
:focus-visible { outline: 3px solid rgba(21, 149, 213, .55); outline-offset: 4px; }

.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;
  left: 20px;
  top: -80px;
  z-index: 9999;
  padding: 12px 18px;
  border-radius: 8px;
  color: #fff;
  background: var(--blue-900);
  transition: top .2s;
}
.skip-link:focus { top: 20px; }
.shell { width: var(--shell); margin-inline: auto; }
.section { position: relative; padding: 150px 0; }

.scroll-progress {
  position: fixed;
  inset: 0 0 auto;
  height: 2px;
  z-index: 1200;
  background: transparent;
}
.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--blue-300), var(--blue-600), #fff);
  transform: scaleX(0);
  transform-origin: left center;
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  color: #fff;
  transition: color .4s, background .4s, box-shadow .4s, backdrop-filter .4s;
}
.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: rgba(255,255,255,.16);
}
.site-header.is-scrolled,
.site-header.is-open {
  color: var(--ink);
  background: rgba(248, 252, 255, .88);
  box-shadow: 0 12px 40px rgba(1, 45, 75, .08);
  backdrop-filter: blur(22px) saturate(150%);
}
.site-header.is-scrolled::after,
.site-header.is-open::after { background: rgba(7, 88, 137, .1); }
.header-inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 42px;
}
.brand { position: relative; width: 208px; height: 46px; flex: 0 0 auto; }
.brand-logo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; object-position: left center; transition: opacity .35s; }
.brand-logo--white { filter: brightness(0) invert(1); }
.brand-logo--color { opacity: 0; }
.site-header.is-scrolled .brand-logo--white,
.site-header.is-open .brand-logo--white { opacity: 0; }
.site-header.is-scrolled .brand-logo--color,
.site-header.is-open .brand-logo--color { opacity: 1; }
.desktop-nav { margin-left: auto; display: flex; align-items: center; gap: 35px; }
.desktop-nav a,
.desktop-nav button {
  position: relative;
  border: 0;
  padding: 10px 0;
  color: currentColor;
  background: none;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}
.desktop-nav a::after,
.desktop-nav button::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 4px;
  height: 1px;
  background: currentColor;
  transition: right .35s var(--ease);
}
.desktop-nav a:hover::after,
.desktop-nav button:hover::after { right: 0; }
.header-actions { display: flex; align-items: center; gap: 18px; }
.header-search {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 8px 13px;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
  transition: background .25s, border-color .25s, transform .25s;
}
.site-header.is-scrolled .header-search,
.site-header.is-open .header-search { border-color: rgba(7, 88, 137, .2); background: #fff; }
.header-search:hover { transform: translateY(-2px); background: rgba(255,255,255,.13); }
.naver-n {
  display: inline-grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border-radius: 4px;
  color: #fff;
  background: #03c75a;
  font: 800 12px/1 Arial, sans-serif;
  flex: 0 0 auto;
}
.menu-toggle { display: none; width: 42px; height: 42px; border: 0; padding: 9px; background: none; cursor: pointer; }
.menu-toggle span:not(.sr-only) { display: block; height: 1px; margin: 6px 0; background: currentColor; transition: transform .3s, opacity .3s; }
.site-header.is-open .menu-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.site-header.is-open .menu-toggle span:nth-child(2) { opacity: 0; }
.site-header.is-open .menu-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu {
  position: absolute;
  inset: var(--header-h) 0 auto;
  padding: 26px max(24px, calc((100vw - var(--shell)) / 2)) 34px;
  background: rgba(248, 252, 255, .97);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 28px 60px rgba(4, 53, 84, .1);
}
.mobile-menu nav { display: grid; }
.mobile-menu nav a,
.mobile-menu nav button { border: 0; border-bottom: 1px solid var(--line); padding: 16px 0; text-align: left; background: none; font-weight: 700; cursor: pointer; }
.mobile-menu-contact { display: flex; gap: 10px; margin-top: 22px; }
.mobile-menu-contact a { flex: 1; padding: 12px; border-radius: 9px; text-align: center; color: #fff; background: var(--blue-800); font-size: 14px; font-weight: 700; }

/* Shared */
.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 24px;
  color: rgba(255,255,255,.76);
  font-size: 11px;
  line-height: 1;
  letter-spacing: .2em;
  font-weight: 700;
}
.eyebrow span { width: 34px; height: 1px; background: currentColor; }
.eyebrow--dark { color: var(--blue-700); }
.section-heading { max-width: 770px; margin-bottom: 76px; }
.section-heading h2,
.care-intro h2,
.inquiry-intro h2 {
  margin: 0;
  font-size: clamp(42px, 5vw, 72px);
  line-height: 1.08;
  letter-spacing: -.055em;
  font-weight: 620;
}
.section-heading > p:last-child,
.care-intro > p,
.inquiry-intro > p { margin: 28px 0 0; max-width: 580px; color: var(--ink-soft); font-size: 18px; }
.section-heading--row { max-width: none; display: flex; align-items: flex-end; justify-content: space-between; gap: 60px; }
.section-heading--row > p { max-width: 430px; margin-bottom: 8px; }
.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 56px;
  padding: 0 25px;
  border: 1px solid transparent;
  border-radius: 100px;
  overflow: hidden;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: transform .35s var(--ease), box-shadow .35s, background .35s, border-color .35s;
}
.button:hover { transform: translateY(-3px); }
.button--primary { color: #fff; background: linear-gradient(135deg, var(--blue-600), var(--blue-800)); box-shadow: 0 14px 32px rgba(6, 121, 186, .24); }
.button--primary:hover { box-shadow: 0 20px 42px rgba(6, 121, 186, .3); }
.button--glass { color: #fff; border-color: rgba(255,255,255,.32); background: rgba(255,255,255,.08); backdrop-filter: blur(12px); }
.button--glass:hover { background: rgba(255,255,255,.15); }
.button--light { color: var(--blue-900); background: #fff; box-shadow: 0 18px 45px rgba(0, 38, 65, .2); }
.button--outline { color: var(--blue-800); border-color: rgba(7, 95, 150, .28); background: transparent; }
.text-link,
.text-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 0;
  padding: 4px 0 7px;
  border-bottom: 1px solid rgba(7,95,150,.28);
  color: var(--blue-800);
  background: none;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .85s var(--ease), transform .85s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
.glow-card { --gx: 50%; --gy: 50%; position: relative; }
.glow-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: 0;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(380px circle at var(--gx) var(--gy), rgba(69, 184, 238, .22), transparent 52%);
  transition: opacity .35s;
}
.glow-card:hover::before { opacity: 1; }
.glow-card > * { position: relative; z-index: 1; }

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 82% 42%, rgba(32, 165, 224, .34), transparent 28%),
    linear-gradient(120deg, #02263e 0%, #044f7b 43%, #0879b7 71%, #0c95ce 100%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 84px 84px;
  mask-image: linear-gradient(to right, #000, transparent 78%);
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto -8vw -24vw 35vw;
  height: 54vw;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 0, rgba(255,255,255,.2), rgba(113,215,255,.1) 30%, transparent 65%);
  filter: blur(18px);
}
.hero-texture {
  position: absolute;
  inset: 0 0 0 52%;
  opacity: .12;
  background: url('/assets/space/legacy-blue-light.jpg') center/cover no-repeat;
  mix-blend-mode: screen;
  filter: blur(1px) saturate(.8);
  mask-image: linear-gradient(to right, transparent, #000 28%, #000);
}
.pointer-light {
  position: fixed;
  left: var(--mx);
  top: var(--my);
  z-index: 0;
  width: 52vw;
  height: 52vw;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  background: radial-gradient(circle, rgba(180, 231, 255, .16), rgba(112,205,246,.05) 34%, transparent 68%);
  filter: blur(12px);
}
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 70px; padding-top: 120px; padding-bottom: 90px; }
.hero-copy { max-width: 690px; }
.hero-copy h1 { margin: 0; font-size: clamp(62px, 7.2vw, 106px); line-height: .98; letter-spacing: -.07em; font-weight: 260; }
.hero-copy h1 em { font-style: normal; font-weight: 680; color: #daf3ff; text-shadow: 0 0 40px rgba(187, 235, 255, .2); }
.hero-lead { max-width: 600px; margin: 35px 0 0; color: rgba(255,255,255,.77); font-size: clamp(17px, 1.4vw, 21px); line-height: 1.8; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 42px; }
.hero-facts { display: flex; flex-wrap: wrap; gap: 0; margin: 54px 0 0; padding: 0; }
.hero-facts div { min-width: 150px; padding: 0 28px; border-left: 1px solid rgba(255,255,255,.19); }
.hero-facts div:first-child { padding-left: 0; border-left: 0; }
.hero-facts dt { color: rgba(255,255,255,.5); font-size: 10px; letter-spacing: .18em; }
.hero-facts dd { margin: 4px 0 0; font-size: 14px; font-weight: 600; }
.hero-system { position: relative; aspect-ratio: 1; width: min(100%, 570px); justify-self: end; }
.orbit { position: absolute; inset: 50%; border: 1px solid rgba(223, 247, 255, .22); border-radius: 50%; transform: translate(-50%, -50%); }
.orbit::after { content: ""; position: absolute; top: -4px; left: 50%; width: 8px; height: 8px; border-radius: 50%; background: #dff7ff; box-shadow: 0 0 20px #fff; }
.orbit--outer { width: 100%; height: 100%; animation: orbit 36s linear infinite; }
.orbit--middle { width: 74%; height: 74%; border-style: dashed; animation: orbitReverse 28s linear infinite; }
.orbit--inner { width: 43%; height: 43%; animation: orbit 22s linear infinite; }
.snow-core {
  position: absolute;
  inset: 50%;
  width: 148px;
  height: 148px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 50%;
  color: #dff7ff;
  background: radial-gradient(circle, rgba(255,255,255,.2), rgba(89,193,238,.14) 45%, rgba(0,60,99,.18));
  box-shadow: inset 0 0 40px rgba(255,255,255,.08), 0 0 80px rgba(109,214,255,.18);
  transform: translate(-50%, -50%);
  backdrop-filter: blur(12px);
}
.snow-core svg { width: 76px; height: 76px; }
.process-node {
  position: absolute;
  min-width: 158px;
  padding: 15px 17px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 15px;
  background: rgba(2, 49, 78, .34);
  box-shadow: 0 20px 45px rgba(0,28,48,.16);
  backdrop-filter: blur(14px);
  transition: transform .25s ease-out;
}
.process-node span { float: left; margin-right: 11px; color: #8ed9fa; font-size: 10px; letter-spacing: .1em; }
.process-node strong { display: block; font-size: 14px; line-height: 1.2; }
.process-node small { display: block; margin-top: 6px; color: rgba(255,255,255,.54); font-size: 11px; }
.process-node--one { left: 0; top: 20%; }
.process-node--two { right: -2%; top: 30%; }
.process-node--three { left: 9%; bottom: 13%; }
.hero-system-caption { position: absolute; right: 4%; bottom: 2%; color: rgba(255,255,255,.38); font-size: 8px; letter-spacing: .18em; }
.scroll-cue { position: absolute; z-index: 3; left: 50%; bottom: 28px; display: flex; align-items: center; gap: 14px; transform: translateX(-50%); color: rgba(255,255,255,.52); font-size: 8px; letter-spacing: .18em; }
.scroll-cue span { position: relative; width: 1px; height: 40px; overflow: hidden; background: rgba(255,255,255,.2); }
.scroll-cue span::after { content: ""; position: absolute; inset: -100% 0 100%; background: #fff; animation: scrollLine 2.2s ease-in-out infinite; }
@keyframes orbit { to { transform: translate(-50%, -50%) rotate(360deg); } }
@keyframes orbitReverse { to { transform: translate(-50%, -50%) rotate(-360deg); } }
@keyframes scrollLine { 0% { transform: translateY(0); } 100% { transform: translateY(200%); } }

/* Notice */
.notice-dock {
  position: fixed;
  z-index: 850;
  right: 24px;
  top: 108px;
  width: min(390px, calc(100vw - 48px));
  overflow: hidden;
  border: 1px solid rgba(146,215,248,.35);
  border-radius: 18px;
  color: #fff;
  background: rgba(2, 43, 69, .88);
  box-shadow: 0 28px 70px rgba(0,38,63,.3);
  backdrop-filter: blur(20px) saturate(130%);
  animation: noticeIn .65s var(--ease) both;
  transition: opacity .3s ease, transform .3s ease, width .3s var(--ease), top .3s var(--ease);
}
.notice-dock.is-offscreen { opacity: 0; transform: translateY(-14px); pointer-events: none; }
.notice-close { position: absolute; z-index: 2; right: 10px; top: 8px; width: 32px; height: 32px; border: 0; border-radius: 50%; color: #fff; background: rgba(255,255,255,.1); font-size: 22px; cursor: pointer; }
.notice-media { aspect-ratio: 2.3 / 1; background-position: center; background-size: cover; }
.notice-content { padding: 22px 24px 24px; }
.notice-content p { margin: 0 0 8px; color: #8bdcff; font-size: 9px; font-weight: 700; letter-spacing: .18em; }
.notice-content strong { display: block; padding-right: 22px; font-size: 17px; line-height: 1.45; }
.notice-content > span { display: block; margin-top: 8px; color: rgba(255,255,255,.64); font-size: 13px; }
.notice-content a { display: inline-flex; gap: 15px; margin-top: 17px; padding-bottom: 2px; border-bottom: 1px solid rgba(255,255,255,.35); font-size: 12px; font-weight: 700; }
@keyframes noticeIn { from { opacity: 0; transform: translateY(-12px) scale(.97); } }
.notice-dock.is-compact {
  top: 88px;
  width: min(310px, calc(100vw - 48px));
  border-radius: 14px;
}
.notice-dock.is-compact .notice-media,
.notice-dock.is-compact .notice-content p,
.notice-dock.is-compact .notice-content > span { display: none !important; }
.notice-dock.is-compact .notice-content { padding: 14px 48px 15px 18px; }
.notice-dock.is-compact .notice-content strong { font-size: 13px; line-height: 1.4; }
.notice-dock.is-compact .notice-content a { margin-top: 7px; font-size: 10px; }

/* Standards */
.standard { background: linear-gradient(180deg, #fff, #f3faff); }
.standard-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.standard-card { min-height: 360px; padding: 34px 34px 40px; border: 1px solid var(--line); border-radius: 24px; overflow: hidden; background: rgba(255,255,255,.75); box-shadow: 0 15px 45px rgba(5,75,116,.05); transition: transform .4s var(--ease), box-shadow .4s; }
.standard-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.card-index { color: var(--blue-600); font-size: 10px; font-weight: 700; letter-spacing: .16em; }
.line-icon { width: 72px; height: 72px; margin-top: 55px; padding: 18px; border-radius: 50%; color: var(--blue-700); background: var(--blue-100); transition: transform .5s var(--ease); }
.standard-card:hover .line-icon { transform: rotate(8deg) scale(1.05); }
.line-icon svg { width: 100%; height: 100%; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.standard-card h3 { margin: 30px 0 12px; font-size: 24px; letter-spacing: -.03em; }
.standard-card p { margin: 0; color: var(--ink-soft); font-size: 15px; }

/* Care */
.care { overflow: hidden; background: #eef8fe; }
.care::before { content: ""; position: absolute; right: -20vw; top: 18%; width: 48vw; height: 48vw; border-radius: 50%; background: radial-gradient(circle, rgba(48,174,229,.15), transparent 70%); }
.care-shell { display: grid; grid-template-columns: .72fr 1.28fr; gap: 100px; align-items: start; }
.care-intro { position: sticky; top: 145px; }
.care-intro .text-link { margin-top: 36px; }
.care-interface { display: grid; grid-template-columns: .9fr 1.1fr; gap: 18px; }
.care-list { display: grid; gap: 8px; }
.care-tab {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 3px 14px;
  min-height: 98px;
  padding: 20px 18px;
  border: 1px solid transparent;
  border-radius: 15px;
  text-align: left;
  background: transparent;
  cursor: pointer;
  transition: background .3s, border-color .3s, transform .3s;
}
.care-tab:hover { transform: translateX(5px); }
.care-tab.is-active { border-color: rgba(7,119,183,.15); background: #fff; box-shadow: 0 18px 45px rgba(5,78,118,.07); }
.care-tab > span { grid-row: 1 / span 2; color: var(--blue-600); font-size: 10px; font-weight: 700; }
.care-tab strong { font-size: 17px; letter-spacing: -.02em; }
.care-tab em { color: #7893a4; font-size: 10px; font-style: normal; letter-spacing: .08em; text-transform: uppercase; }
.care-panel { min-height: 620px; overflow: hidden; border: 1px solid rgba(8,91,143,.14); border-radius: 24px; background: #fff; box-shadow: var(--shadow); }
.care-visual { position: relative; height: 230px; display: grid; place-items: center; overflow: hidden; color: #fff; background: linear-gradient(145deg, #084b77, #087ab8 50%, #51bde9); }
.care-visual::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px); background-size: 34px 34px; }
.care-ring { position: absolute; width: 180px; height: 180px; border: 1px solid rgba(255,255,255,.28); border-radius: 50%; animation: orbit 18s linear infinite; }
.care-ring::before, .care-ring::after { content: ""; position: absolute; border: 1px dashed rgba(255,255,255,.15); border-radius: 50%; }
.care-ring::before { inset: 25px; }
.care-ring::after { inset: 52px; }
.care-pulse { position: absolute; width: 100px; height: 100px; border-radius: 50%; background: radial-gradient(circle, rgba(255,255,255,.38), transparent 68%); animation: pulse 3s ease-in-out infinite; }
.care-visual > span { position: relative; z-index: 2; font-size: 54px; font-weight: 200; letter-spacing: -.06em; }
@keyframes pulse { 50% { transform: scale(1.35); opacity: .5; } }
.care-copy { padding: 38px 36px 42px; }
.care-copy > p:first-child { margin: 0 0 8px; color: var(--blue-600); font-size: 9px; font-weight: 800; letter-spacing: .15em; }
.care-copy h3 { margin: 0; font-size: 34px; letter-spacing: -.045em; }
.care-copy > p:nth-of-type(2) { margin: 17px 0 24px; color: var(--ink-soft); font-size: 15px; }
.care-copy ul { margin: 0; padding: 0; list-style: none; }
.care-copy li { position: relative; padding: 11px 0 11px 18px; border-top: 1px solid var(--line); color: #31566c; font-size: 14px; }
.care-copy li::before { content: ""; position: absolute; left: 0; top: 50%; width: 5px; height: 5px; border-radius: 50%; background: var(--blue-500); }
.care-note { margin: 22px 0 0 !important; color: #7c929f !important; font-size: 11px !important; }

/* Doctors */
.doctors { background: #fff; }
.doctor-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.doctor-card { display: grid; grid-template-columns: .9fr 1.1fr; min-height: 540px; overflow: hidden; border: 1px solid var(--line); border-radius: 25px; background: #f8fcff; transition: transform .45s var(--ease), box-shadow .45s; }
.doctor-card:hover { transform: translateY(-7px); box-shadow: var(--shadow); }
.doctor-visual { position: relative; min-height: 100%; overflow: hidden; background: #e4f3fb; }
.doctor-visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(2,47,75,.22)); pointer-events: none; }
.doctor-visual img { width: 100%; height: 100%; object-fit: cover; object-position: center; filter: saturate(.88); transition: transform .7s var(--ease), filter .7s; }
.doctor-card:hover .doctor-visual img { transform: scale(1.035); filter: saturate(1); }
.doctor-visual.is-placeholder img { object-fit: cover; }
.doctor-badge { position: absolute; z-index: 2; left: 18px; bottom: 18px; padding: 7px 10px; border: 1px solid rgba(255,255,255,.45); border-radius: 100px; color: #fff; background: rgba(2,50,78,.32); backdrop-filter: blur(10px); font-size: 8px; letter-spacing: .14em; }
.doctor-content { padding: 48px 34px 36px; display: flex; flex-direction: column; }
.doctor-name p { margin: 0; color: var(--blue-700); font-size: 12px; font-weight: 700; }
.doctor-name h3 { margin: 5px 0 0; font-size: 34px; line-height: 1.1; letter-spacing: -.04em; }
.doctor-name h3 span { font-size: 17px; font-weight: 500; }
.doctor-content ul { margin: 32px 0; padding: 0; list-style: none; }
.doctor-content li { padding: 9px 0; border-bottom: 1px solid var(--line); color: #49687a; font-size: 13px; }
.doctor-content .text-button { align-self: flex-start; margin-top: auto; }

/* Schedule band */
.schedule-band { position: relative; overflow: hidden; padding: 105px 0; color: #fff; background: linear-gradient(110deg, #022e4d, #075f96 55%, #0a91c9); }
.schedule-band::before { content: ""; position: absolute; inset: 0; opacity: .4; background-image: linear-gradient(105deg, transparent 0 49.85%, rgba(255,255,255,.1) 50%, transparent 50.15%); background-size: 130px 100%; }
.schedule-band-glow { position: absolute; left: var(--mx); top: 50%; width: 520px; height: 520px; transform: translate(-50%, -50%); border-radius: 50%; background: radial-gradient(circle, rgba(128,218,255,.22), transparent 68%); }
.schedule-band-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr auto; align-items: center; gap: 75px; }
.schedule-band h2 { margin: 0; font-size: clamp(36px, 4vw, 57px); line-height: 1.15; letter-spacing: -.05em; }
.schedule-preview { display: flex; align-items: center; gap: 23px; padding-left: 38px; border-left: 1px solid rgba(255,255,255,.2); }
.schedule-date { display: flex; align-items: center; gap: 12px; }
.schedule-date > span { font-size: 58px; line-height: 1; font-weight: 240; letter-spacing: -.06em; }
.schedule-date small { color: rgba(255,255,255,.5); font-size: 7px; line-height: 1.35; letter-spacing: .13em; }
.schedule-preview strong { display: block; font-size: 16px; }
.schedule-preview p { margin: 5px 0 0; color: rgba(255,255,255,.58); font-size: 12px; }

/* Atmosphere */
.atmosphere { min-height: 750px; display: flex; align-items: flex-end; overflow: hidden; color: #fff; background: #043757; }
.atmosphere-photo { position: absolute; inset: 0; background: url('/assets/space/legacy-reception.jpg') center/cover no-repeat; transform: scale(1.04); filter: saturate(.7) contrast(1.05); }
.atmosphere-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(1,34,55,.93), rgba(4,70,109,.68) 48%, rgba(3,77,118,.18)), linear-gradient(0deg, rgba(1,34,55,.6), transparent 55%); }
.atmosphere-overlay::after { content: ""; position: absolute; left: var(--mx); top: var(--my); width: 600px; height: 600px; transform: translate(-50%,-50%); border-radius: 50%; background: radial-gradient(circle, rgba(121,219,255,.2), transparent 63%); }
.atmosphere-content { position: relative; z-index: 2; padding-bottom: 95px; }
.atmosphere-content h2 { margin: 0; max-width: 700px; font-size: clamp(48px, 6vw, 82px); line-height: 1.06; letter-spacing: -.06em; font-weight: 580; }
.atmosphere-content > p { max-width: 540px; margin: 28px 0 0; color: rgba(255,255,255,.72); font-size: 18px; }
.image-context { display: block; max-width: 670px; margin-top: 36px; padding-top: 15px; border-top: 1px solid rgba(255,255,255,.2); color: rgba(255,255,255,.48); font-size: 11px; }
.atmosphere-coordinates { position: absolute; z-index: 2; right: 35px; top: 50%; color: rgba(255,255,255,.35); font-size: 9px; letter-spacing: .18em; writing-mode: vertical-rl; }

/* Visit */
.visit { background: linear-gradient(180deg, #f5fbff, #fff); }
.visit-grid { display: grid; grid-template-columns: 1.18fr .82fr; gap: 22px; }
.location-card { overflow: hidden; border: 1px solid var(--line); border-radius: 25px; background: #fff; box-shadow: 0 20px 60px rgba(4,69,108,.08); }
.location-map-art { position: relative; height: 400px; overflow: hidden; background: #e8f5fc; }
.location-map-art::before { content: ""; position: absolute; inset: 0; background-image: radial-gradient(circle at 30% 20%, rgba(255,255,255,.8), transparent 35%), linear-gradient(rgba(8,103,159,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(8,103,159,.05) 1px, transparent 1px); background-size: auto, 30px 30px, 30px 30px; }
.location-map-art svg { position: absolute; inset: 0; width: 100%; height: 100%; fill: none; stroke: rgba(8,115,177,.22); stroke-width: 15; }
.location-map-art svg .minor { stroke-width: 5; stroke-dasharray: 12 8; }
.map-pin { position: absolute; left: 54%; top: 47%; display: flex; flex-direction: column; align-items: center; transform: translate(-50%, -50%); }
.map-pin i { width: 42px; height: 42px; border: 10px solid #fff; border-radius: 50% 50% 50% 0; background: var(--blue-600); box-shadow: 0 10px 30px rgba(4,76,119,.25); transform: rotate(-45deg); }
.map-pin i::after { content: ""; display: block; width: 8px; height: 8px; border-radius: 50%; background: #fff; transform: translate(7px, 7px); }
.map-pin b { margin-top: 14px; padding: 7px 12px; border-radius: 8px; color: #fff; background: var(--blue-900); font-size: 11px; box-shadow: 0 8px 18px rgba(2,54,86,.2); }
.location-content { padding: 34px 38px 39px; }
.location-content > p { margin: 0; color: var(--blue-600); font-size: 9px; font-weight: 800; letter-spacing: .16em; }
.location-content h3 { margin: 8px 0 28px; font-size: 27px; line-height: 1.45; letter-spacing: -.035em; }
.location-actions { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.visit-details { display: grid; gap: 22px; }
.info-card { padding: 37px 38px; border: 1px solid var(--line); border-radius: 25px; background: #fff; box-shadow: 0 20px 60px rgba(4,69,108,.06); }
.info-label { margin: 0 0 22px; color: var(--blue-600); font-size: 9px; font-weight: 800; letter-spacing: .16em; }
.hours-list { margin: 0; }
.hours-list div { display: flex; align-items: center; justify-content: space-between; gap: 25px; padding: 12px 0; border-bottom: 1px solid var(--line); }
.hours-list dt { color: #557486; font-size: 14px; }
.hours-list dd { margin: 0; font-size: 15px; font-weight: 700; }
.small-note { margin: 20px 0 0; color: #78909e; font-size: 11px; line-height: 1.7; }
.info-card--contact { color: #fff; background: linear-gradient(145deg, #053f66, #0876af); }
.info-card--contact .info-label { color: #9ee2ff; }
.big-phone { display: block; margin-bottom: 25px; font-size: clamp(29px, 3vw, 42px); line-height: 1; letter-spacing: -.045em; font-weight: 550; }
.contact-row { display: flex; align-items: center; justify-content: space-between; gap: 15px; padding: 15px 0; border-top: 1px solid rgba(255,255,255,.14); }
.contact-row span { color: rgba(255,255,255,.45); font-size: 9px; letter-spacing: .12em; }
.contact-row strong { font-size: 13px; }

/* Inquiry */
.inquiry { background: #fff; }
.inquiry-grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: 110px; align-items: start; }
.inquiry-intro { position: sticky; top: 145px; }
.inquiry-shortcuts { display: grid; gap: 9px; margin-top: 50px; }
.inquiry-shortcuts a { display: grid; grid-template-columns: 34px 1fr auto; align-items: center; gap: 10px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.inquiry-shortcuts span { color: var(--blue-600); font-size: 10px; font-weight: 700; }
.inquiry-shortcuts strong { font-size: 14px; }
.inquiry-shortcuts em { color: #7a929f; font-size: 12px; font-style: normal; }
.inquiry-form { padding: 50px; border: 1px solid var(--line); border-radius: 26px; background: #f7fbfe; box-shadow: 0 25px 70px rgba(4,70,109,.07); }
.form-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.inquiry-form > label,
.form-row label { display: grid; gap: 9px; margin-bottom: 22px; }
.inquiry-form label > span:first-child { color: #31566d; font-size: 12px; font-weight: 700; }
.inquiry-form input:not([type="checkbox"]),
.inquiry-form select,
.inquiry-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(8,81,124,.23);
  border-radius: 0;
  padding: 13px 2px;
  outline: none;
  color: var(--ink);
  background: transparent;
  transition: border-color .2s, box-shadow .2s;
}
.inquiry-form textarea { resize: vertical; min-height: 135px; }
.inquiry-form input:focus,
.inquiry-form select:focus,
.inquiry-form textarea:focus { border-color: var(--blue-600); box-shadow: 0 1px 0 var(--blue-600); }
.consent { display: flex !important; grid-template-columns: none !important; align-items: flex-start; gap: 10px !important; margin: 6px 0 0 !important; }
.consent input { margin-top: 4px; accent-color: var(--blue-700); }
.consent span { color: #607b8b !important; font-size: 11px !important; font-weight: 400 !important; }
.consent a { color: var(--blue-700); text-decoration: underline; }
.form-caution { margin: 14px 0 0; color: #8a5e5e; font-size: 10px; }
.form-submit { width: 100%; margin-top: 28px; justify-content: space-between; border-radius: 12px; }
.form-submit i { font-style: normal; font-size: 22px; }
.form-submit:disabled { opacity: .6; cursor: wait; }
.form-status { min-height: 24px; margin-top: 12px; color: var(--blue-800); font-size: 12px; }
.form-status.is-error { color: #b34242; }
.honeypot { position: absolute; left: -9999px; }

/* Footer */
.site-footer { position: relative; overflow: hidden; padding: 90px 0 30px; color: #fff; background: #02273f; }
.footer-glow { position: absolute; right: -10vw; top: -25vw; width: 70vw; height: 70vw; border-radius: 50%; background: radial-gradient(circle, rgba(25,157,211,.22), transparent 66%); }
.footer-grid { position: relative; display: grid; grid-template-columns: .85fr 1.15fr; gap: 100px; padding-bottom: 70px; }
.footer-brand img { width: 230px; filter: brightness(0) invert(1); }
.footer-brand p { margin-top: 26px; color: rgba(255,255,255,.57); font-size: 14px; }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 45px; }
.footer-links div { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.footer-links p { margin: 0 0 13px; color: #78d1f5; font-size: 9px; font-weight: 800; letter-spacing: .16em; }
.footer-links a,
.footer-links button { border: 0; padding: 0; color: rgba(255,255,255,.75); background: none; font-size: 13px; cursor: pointer; }
.footer-links a:hover,
.footer-links button:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; gap: 35px; padding: 23px 0; border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.4); font-size: 10px; }
.footer-bottom p { margin: 0; }
.medical-disclaimer { padding-top: 18px; border-top: 1px solid rgba(255,255,255,.08); color: rgba(255,255,255,.3); font-size: 9px; line-height: 1.7; }

/* Floating tools */
.floating-tools { position: fixed; z-index: 780; right: 20px; bottom: 22px; display: flex; flex-direction: column; gap: 8px; }
.floating-tools a { width: 54px; height: 54px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.7); border-radius: 50%; color: #fff; background: rgba(4,77,119,.86); box-shadow: 0 12px 30px rgba(2,48,77,.2); backdrop-filter: blur(12px); transition: transform .25s, background .25s; }
.floating-tools a:hover { transform: translateY(-3px) scale(1.03); background: var(--blue-700); }
.floating-tools svg { width: 21px; height: 21px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.floating-tools strong { font: 800 17px Arial, sans-serif; }
.floating-tools span { display: none; }

/* Modals */
.modal { position: fixed; inset: 0; z-index: 1400; display: grid; place-items: center; padding: 26px; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(1,26,43,.76); backdrop-filter: blur(10px); animation: fadeIn .25s both; }
.modal-panel { position: relative; z-index: 1; width: min(940px, 100%); max-height: calc(100svh - 52px); overflow: auto; border-radius: 25px; background: #fff; box-shadow: 0 40px 100px rgba(0,20,34,.38); animation: panelIn .45s var(--ease) both; }
.modal-panel--schedule { padding: 44px; }
.modal-panel--fees { width: min(1050px, 100%); padding: 44px; }
.modal-close { position: sticky; z-index: 3; float: right; top: 14px; width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 50%; background: rgba(255,255,255,.9); font-size: 26px; line-height: 1; cursor: pointer; }
.modal-heading { padding-right: 60px; margin-bottom: 28px; }
.modal-heading p { margin: 0; color: var(--blue-600); font-size: 9px; font-weight: 800; letter-spacing: .16em; }
.modal-heading h2 { margin: 7px 0 5px; font-size: clamp(29px, 4vw, 43px); line-height: 1.2; letter-spacing: -.045em; }
.modal-heading span { color: #6a8494; font-size: 13px; }
.schedule-image-wrap { overflow: hidden; border: 1px solid var(--line); border-radius: 16px; background: var(--ice); }
.schedule-image-wrap img { width: 100%; height: auto; }
.modal-actions { display: flex; gap: 10px; margin-top: 22px; }
.modal-footnote { margin: 18px 0 0; color: #7b919d; font-size: 11px; }
.fee-tabs { display: flex; gap: 8px; margin-bottom: 20px; }
.fee-tabs button { min-width: 150px; padding: 12px 18px; border: 1px solid var(--line); border-radius: 100px; background: #fff; font-size: 13px; font-weight: 700; cursor: pointer; }
.fee-tabs button.is-active { color: #fff; border-color: var(--blue-700); background: var(--blue-700); }
.fee-panel { display: none; }
.fee-panel.is-active { display: block; }
.table-scroll { overflow: auto; border: 1px solid var(--line); border-radius: 15px; }
table { width: 100%; min-width: 700px; border-collapse: collapse; text-align: left; font-size: 13px; }
caption { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
th { padding: 14px 16px; color: var(--blue-800); background: var(--blue-100); font-size: 11px; }
td { padding: 12px 16px; border-top: 1px solid var(--line); color: #456579; }
td:nth-child(1) { width: 34%; color: var(--ink); font-weight: 600; }
td:nth-child(2) { width: 22%; white-space: nowrap; font-weight: 700; }
.fee-source-note { margin: 14px 2px 0; color: #607b8b; font-size: 11px; line-height: 1.65; }
.original-notice { margin-top: 15px; border: 1px solid var(--line); border-radius: 12px; background: var(--ice); }
.original-notice summary { padding: 13px 16px; color: var(--blue-800); font-size: 12px; font-weight: 700; cursor: pointer; }
.original-notice img { width: min(620px, 100%); margin: 0 auto; padding: 15px; }
@keyframes fadeIn { from { opacity: 0; } }
@keyframes panelIn { from { opacity: 0; transform: translateY(20px) scale(.98); } }

/* Responsive */
@media (max-width: 1120px) {
  :root { --shell: min(100% - 50px, 1060px); }
  .desktop-nav { gap: 22px; }
  .hero-grid { gap: 20px; }
  .hero-system { width: 480px; }
  .care-shell { gap: 55px; }
  .doctor-card { grid-template-columns: 1fr; }
  .doctor-visual { min-height: 380px; }
  .doctor-content { min-height: 380px; }
  .schedule-band-inner { gap: 35px; }
  .inquiry-grid { gap: 60px; }
}

@media (max-width: 900px) {
  :root { --header-h: 72px; --shell: calc(100vw - 40px); }
  .section { padding: 105px 0; }
  .desktop-nav, .header-search { display: none; }
  .menu-toggle { display: block; }
  .brand { width: 138px; height: 36px; }
  .hero { min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; padding-top: 145px; padding-bottom: 130px; }
  .hero-copy { max-width: 720px; }
  .hero-system { width: min(560px, 86vw); justify-self: center; margin-top: 35px; }
  .hero-texture { inset: 35% 0 0 20%; }
  .standard-grid { grid-template-columns: 1fr; }
  .standard-card { min-height: auto; padding: 30px; }
  .line-icon { margin-top: 35px; }
  .care-shell { grid-template-columns: 1fr; }
  .care-intro, .inquiry-intro { position: static; }
  .care-interface { grid-template-columns: .8fr 1.2fr; }
  .doctor-grid { grid-template-columns: 1fr; }
  .doctor-card { grid-template-columns: .8fr 1.2fr; }
  .doctor-visual { min-height: 480px; }
  .doctor-content { min-height: 480px; }
  .schedule-band-inner { grid-template-columns: 1fr auto; }
  .schedule-preview { grid-column: 1 / -1; grid-row: 2; padding-left: 0; border-left: 0; }
  .atmosphere { min-height: 650px; }
  .visit-grid { grid-template-columns: 1fr; }
  .visit-details { grid-template-columns: 1fr 1fr; }
  .inquiry-grid { grid-template-columns: 1fr; }
  .inquiry-intro > p { max-width: 680px; }
  .inquiry-shortcuts { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 55px; }
}

@media (max-width: 640px) {
  :root { --shell: calc(100vw - 32px); }
  html { scroll-padding-top: 78px; }
  body { padding-bottom: 64px; }
  .section { padding: 82px 0; }
  .section-heading { margin-bottom: 48px; }
  .section-heading h2,
  .care-intro h2,
  .inquiry-intro h2 { font-size: 40px; }
  .section-heading > p:last-child,
  .care-intro > p,
  .inquiry-intro > p { font-size: 15px; }
  .section-heading--row { display: block; }
  .section-heading--row > p { margin-top: 22px; }
  .eyebrow { margin-bottom: 18px; }
  .header-inner { gap: 15px; }
  .hero-grid { padding-top: 125px; padding-bottom: 105px; }
  .hero-copy h1 { font-size: 54px; }
  .hero-lead { font-size: 16px; }
  .hero-actions { display: grid; }
  .hero-actions .button { width: 100%; }
  .hero-facts { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 38px; }
  .hero-facts div { min-width: 0; padding: 0 10px; }
  .hero-facts dd { font-size: 11px; }
  .hero-system { width: 92vw; margin-left: -4vw; }
  .process-node { min-width: 130px; padding: 11px 12px; }
  .process-node small { display: none; }
  .snow-core { width: 116px; height: 116px; }
  .snow-core svg { width: 60px; }
  .scroll-cue { display: none; }
  .notice-dock,
  .notice-dock.is-compact { left: 16px; right: 16px; top: 84px; width: auto; border-radius: 15px; }
  .notice-dock .notice-media { display: none !important; }
  .notice-dock .notice-content,
  .notice-dock.is-compact .notice-content { padding: 13px 48px 14px 18px; }
  .notice-dock .notice-content p { margin-bottom: 5px; font-size: 8px; }
  .notice-dock .notice-content strong,
  .notice-dock.is-compact .notice-content strong { font-size: 14px; line-height: 1.38; }
  .notice-dock .notice-content > span { display: none; }
  .notice-dock .notice-content a,
  .notice-dock.is-compact .notice-content a { margin-top: 8px; font-size: 10px; }
  .notice-active .hero-grid { padding-top: 232px; }
  .standard-grid { gap: 12px; }
  .care-interface { grid-template-columns: 1fr; }
  .care-list { display: flex; overflow-x: auto; margin: 0 -16px; padding: 0 16px 8px; scrollbar-width: none; }
  .care-list::-webkit-scrollbar { display: none; }
  .care-tab { min-width: 210px; min-height: 88px; }
  .care-panel { min-height: 0; }
  .care-visual { height: 190px; }
  .care-copy { padding: 29px 25px 32px; }
  .doctor-card { grid-template-columns: 1fr; }
  .doctor-visual { min-height: 410px; }
  .doctor-content { min-height: 390px; padding: 35px 27px 30px; }
  .schedule-band { padding: 75px 0; }
  .schedule-band-inner { grid-template-columns: 1fr; }
  .schedule-preview { grid-column: auto; grid-row: auto; }
  .schedule-band .button { width: 100%; }
  .atmosphere { min-height: 610px; }
  .atmosphere-content { padding-bottom: 60px; }
  .atmosphere-content h2 { font-size: 48px; }
  .atmosphere-coordinates { display: none; }
  .visit-details { grid-template-columns: 1fr; }
  .location-map-art { height: 300px; }
  .location-content, .info-card { padding: 28px 24px; }
  .location-content h3 { font-size: 22px; }
  .location-actions .button { width: 100%; }
  .inquiry-shortcuts { grid-template-columns: 1fr; }
  .inquiry-shortcuts em { display: none; }
  .inquiry-form { padding: 30px 22px; border-radius: 20px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .footer-links { grid-template-columns: 1fr 1fr; gap: 40px 20px; }
  .footer-bottom { display: block; }
  .footer-bottom p + p { margin-top: 7px; }
  .floating-tools { left: 0; right: 0; bottom: 0; flex-direction: row; gap: 0; border-top: 1px solid rgba(8,81,124,.12); background: rgba(250,253,255,.96); backdrop-filter: blur(15px); }
  .floating-tools a { width: auto; height: 64px; flex: 1; gap: 7px; border: 0; border-radius: 0; color: var(--blue-800); background: transparent; box-shadow: none; }
  .floating-tools span { display: block; font-size: 11px; font-weight: 700; }
  .floating-tools strong { font-size: 15px; }
  .modal { padding: 12px; }
  .modal-panel { max-height: calc(100svh - 24px); border-radius: 18px; }
  .modal-panel--schedule, .modal-panel--fees { padding: 26px 18px; }
  .modal-heading { padding-right: 44px; }
  .modal-actions { display: grid; }
  .fee-tabs button { min-width: 0; flex: 1; padding-inline: 10px; }
}

@media (pointer: coarse) {
  .pointer-light, .schedule-band-glow { display: none; }
  .glow-card::before { display: none; }
}

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

/* v1.0.2 refinements: original symbol, softer blue depth, warm indirect light */
:root {
  --ink: #092333;
  --ink-soft: #41677a;
  --blue-950: #06324f;
  --blue-900: #075277;
  --blue-800: #086b9d;
  --blue-700: #0a82bd;
  --blue-600: #25a8df;
  --blue-500: #57bee8;
  --blue-300: #b6e7f8;
  --blue-200: #dcf4ff;
  --blue-100: #f1fbff;
  --warm: #f6d88b;
  --warm-soft: #fff4d6;
  --line: rgba(8, 99, 149, .12);
  --shadow: 0 32px 92px rgba(15, 97, 142, .105);
}
body { background: linear-gradient(180deg, #f8fdff, #f3fbff); }
.hero {
  background:
    radial-gradient(circle at 74% 14%, rgba(255, 224, 156, .22), transparent 27%),
    radial-gradient(circle at 18% 78%, rgba(199, 238, 255, .22), transparent 30%),
    linear-gradient(126deg, #0d6f9e 0%, #25a8df 48%, #9dddf5 100%);
}
.hero::before {
  background-image:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  opacity: .85;
}
.hero::after {
  inset: auto -10vw -20vw 28vw;
  background: radial-gradient(circle at 46% 0, rgba(255,241,197,.34), rgba(206,239,255,.13) 34%, transparent 68%);
}
.hero-texture { opacity: .17; filter: blur(.3px) saturate(.9) brightness(1.14); }
.pointer-light { background: radial-gradient(circle, rgba(255,234,177,.18), rgba(183,232,255,.14) 34%, transparent 70%); }
.hero-copy h1 em { color: #f4fbff; text-shadow: 0 14px 48px rgba(255,230,171,.18); }
.button--primary { background: linear-gradient(135deg, #37b5e6, #0b73a8); box-shadow: 0 18px 46px rgba(23, 142, 202, .22); }
.button--glass { border-color: rgba(255,255,255,.42); background: rgba(255,255,255,.14); box-shadow: inset 0 1px 0 rgba(255,255,255,.22); }
.header-search { padding-inline: 17px; background: rgba(255,255,255,.08); }
.site-header.is-scrolled .header-search, .site-header.is-open .header-search { background: rgba(255,255,255,.88); }
.orbit { border-color: rgba(255,255,255,.34); }
.orbit--middle { border-style: solid; opacity: .72; }
.snow-core { background: radial-gradient(circle, rgba(255,255,255,.44), rgba(240,251,255,.23) 44%, rgba(13,139,199,.2)); box-shadow: inset 0 0 48px rgba(255,255,255,.22), 0 0 90px rgba(255,228,164,.18), 0 0 120px rgba(182,231,248,.26); }
.snow-core img { width: 88px; height: 88px; object-fit: contain; filter: drop-shadow(0 10px 24px rgba(2,64,102,.12)); }
.line-icon { display: grid; place-items: center; padding: 14px; background: radial-gradient(circle, #fff, var(--blue-100)); box-shadow: inset 0 0 18px rgba(48,174,229,.08), 0 12px 32px rgba(48,174,229,.09); }
.line-icon img { width: 100%; height: 100%; object-fit: contain; opacity: .82; filter: saturate(.95); }
.standard { background: linear-gradient(180deg, #fffdf8 0%, #f7fcff 42%, #eff9ff 100%); }
.standard-card { background: rgba(255,255,255,.82); box-shadow: 0 18px 54px rgba(35,117,158,.055); }
.care { background: linear-gradient(180deg, #f5fcff, #eef9ff 72%, #fffdf8); }
.care::before { background: radial-gradient(circle, rgba(255,226,156,.2), rgba(66,185,233,.13) 42%, transparent 70%); }
.care-tab { color: #16384b; }
.care-tab.is-active { background: rgba(255,255,255,.88); box-shadow: 0 20px 55px rgba(28,113,158,.075); }
.care-panel { background: rgba(255,255,255,.88); box-shadow: 0 32px 92px rgba(17,103,148,.12); }
.care-visual { height: 310px; background: #eff9ff; color: #fff; }
.care-visual img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transform: scale(1.01); transition: opacity .44s var(--ease), transform .8s var(--ease), filter .44s; filter: saturate(.9) contrast(.92) brightness(1.05); }
.care-panel:hover .care-visual img { transform: scale(1.045); }
.care-veil { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(8,102,151,.04), rgba(5,52,80,.52)), radial-gradient(circle at 82% 8%, rgba(255,229,161,.36), transparent 40%), radial-gradient(circle at 12% 88%, rgba(181,232,255,.42), transparent 44%); }
.care-visual::before { opacity: .23; mix-blend-mode: screen; }
.care-ring { right: 34px; top: 32px; width: 172px; height: 172px; transform: none; opacity: .75; }
.care-pulse { right: 74px; top: 72px; background: radial-gradient(circle, rgba(255,240,198,.38), transparent 68%); }
.care-visual > span { position: absolute; left: 32px; bottom: 22px; z-index: 3; font-size: 76px; color: rgba(255,255,255,.72); text-shadow: 0 20px 45px rgba(0,40,66,.24); }
.care-visual > b { position: absolute; left: 0; right: 0; bottom: 0; z-index: 4; height: 3px; background: linear-gradient(90deg, rgba(255,225,151,.95), rgba(169,229,255,.88)); transform-origin: left center; transform: scaleX(0); }
.doctor-card { background: linear-gradient(180deg, #fff, #f5fbff); box-shadow: 0 20px 64px rgba(38,124,167,.05); }
.doctor-visual { background: linear-gradient(180deg, #fff, #edf8ff); }
.doctor-visual::after { background: linear-gradient(180deg, transparent 62%, rgba(5,74,111,.12)); }
.doctor-visual img { filter: saturate(.94) contrast(.98) brightness(1.02); }
.schedule-band { background: linear-gradient(116deg, #0a78ac 0%, #36b5e4 58%, #b7e7f8 100%); }
.schedule-band::before { opacity: .26; background-image: linear-gradient(105deg, transparent 0 49.85%, rgba(255,242,198,.24) 50%, transparent 50.15%); }
.schedule-band-glow { background: radial-gradient(circle, rgba(255,229,157,.28), rgba(180,233,255,.2) 42%, transparent 70%); }
.space-gallery { overflow: hidden; background: linear-gradient(180deg, #fffdf8 0%, #f4fbff 50%, #edf9ff 100%); }
.space-carousel { position: relative; border: 1px solid rgba(8,99,149,.12); border-radius: 32px; overflow: hidden; min-height: min(62vw, 650px); background: #eaf7ff; box-shadow: 0 34px 100px rgba(18,104,149,.13); }
.space-track { position: relative; height: min(62vw, 650px); min-height: 430px; }
.space-slide { position: absolute; inset: 0; margin: 0; opacity: 0; transform: scale(1.018); transition: opacity .72s var(--ease), transform 1.2s var(--ease); pointer-events: none; }
.space-slide.is-active { opacity: 1; transform: none; pointer-events: auto; }
.space-slide img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.86) brightness(1.06) contrast(.9); }
.space-slide::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(3,58,90,.32)), radial-gradient(circle at 76% 14%, rgba(255,227,156,.32), transparent 38%); }
.space-slide figcaption { position: absolute; z-index: 2; left: 34px; bottom: 30px; display: inline-flex; align-items: center; gap: 14px; padding: 12px 16px; border: 1px solid rgba(255,255,255,.36); border-radius: 999px; color: #fff; background: rgba(5,65,100,.28); backdrop-filter: blur(14px); }
.space-slide figcaption span { color: rgba(255,255,255,.62); font-size: 10px; font-weight: 800; letter-spacing: .16em; }
.space-slide figcaption strong { font-size: 14px; }
.space-controls { position: absolute; z-index: 3; right: 28px; bottom: 28px; display: flex; align-items: center; gap: 12px; padding: 9px 12px; border: 1px solid rgba(255,255,255,.35); border-radius: 999px; background: rgba(255,255,255,.18); backdrop-filter: blur(16px); }
.space-controls > button { width: 38px; height: 38px; border: 0; border-radius: 50%; color: #fff; background: rgba(4,72,112,.3); font-size: 28px; line-height: 1; cursor: pointer; }
.space-dots { display: flex; gap: 7px; }
.space-dots button { width: 8px; height: 8px; border: 0; border-radius: 50%; padding: 0; background: rgba(255,255,255,.42); cursor: pointer; }
.space-dots button.is-active { width: 22px; border-radius: 999px; background: #fff; }
.location-map-art { background: linear-gradient(135deg, #f8fdff, #eef9ff 68%, #fff8e6); }
.location-map-art img { width: 100%; height: 100%; object-fit: cover; }
.info-card--contact { background: linear-gradient(145deg, #075c87, #0a8dca 70%, #59c2e8); box-shadow: 0 24px 70px rgba(10,117,177,.16); }
.inquiry { background: linear-gradient(180deg, #fff, #f7fcff); }
.inquiry-form { background: rgba(248,253,255,.9); box-shadow: 0 28px 84px rgba(25,111,156,.08); }
.site-footer { background: linear-gradient(145deg, #06324f, #074e75 64%, #075d89); }
.footer-glow { background: radial-gradient(circle, rgba(255,225,151,.18), rgba(88,191,231,.22) 38%, transparent 66%); }
@media (max-width: 900px) {
  .care-visual { height: 260px; }
  .space-carousel, .space-track { min-height: 360px; }
  .space-controls { left: 20px; right: 20px; justify-content: space-between; }
}
@media (max-width: 640px) {
  .snow-core img { width: 66px; height: 66px; }
  .care-visual { height: 220px; }
  .care-visual > span { left: 22px; bottom: 16px; font-size: 58px; }
  .space-gallery .section-heading--row > p { margin-top: 18px; }
  .space-carousel, .space-track { min-height: 310px; border-radius: 22px; }
  .space-slide figcaption { left: 18px; bottom: 78px; }
  .space-controls { bottom: 18px; }
}


/* --- v1.0.3 refinements --- */
.hero {
  background:
    radial-gradient(circle at 82% 42%, rgba(32, 165, 224, .28), transparent 28%),
    radial-gradient(circle at 68% 18%, rgba(255, 231, 169, .12), transparent 24%),
    linear-gradient(120deg, #063255 0%, #0a5f8d 45%, #1295ca 74%, #3db0df 100%);
}
.hero::after { background: radial-gradient(circle at 56% 0, rgba(255,255,255,.18), rgba(255,226,160,.12) 18%, rgba(113,215,255,.08) 38%, transparent 68%); }
.pointer-light { background: radial-gradient(circle, rgba(255, 232, 170, .14), rgba(180, 231, 255, .08) 34%, transparent 72%); }
.hero-system { width: min(100%, 590px); }
.hero-system-panel {
  position: relative; width: 100%; aspect-ratio: 1; overflow: hidden; border-radius: 38px;
  background:
    radial-gradient(circle at 72% 22%, rgba(255,232,172,.12), transparent 32%),
    linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.14), 0 30px 90px rgba(2,40,68,.18);
  backdrop-filter: blur(14px) saturate(118%);
}
.hero-system-panel::before,
.hero-system-panel::after {
  content: ""; position: absolute; border-radius: 28px; pointer-events: none;
}
.hero-system-panel::before {
  inset: 14px; border: 1px solid rgba(255,255,255,.08);
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,0));
}
.hero-system-panel::after {
  inset: 0;
  background-image: radial-gradient(circle at 20% 16%, rgba(255,255,255,.08) 0 1px, transparent 1px);
  background-size: 18px 18px; opacity: .16; filter: blur(.6px);
}
.hero-particles { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 1; }
.hero-particles-glow {
  --px: 50%; --py: 50%; opacity: 0; position: absolute; inset: 0; z-index: 0; pointer-events: none; transition: opacity .35s ease;
  background: radial-gradient(180px 180px at var(--px) var(--py), rgba(255,229,168,.24), rgba(255,233,190,.08) 28%, rgba(138,213,255,.06) 50%, transparent 72%);
  filter: blur(18px);
}
.hero-system.is-active .hero-particles-glow { opacity: 1; }
.orbit, .snow-core, .process-node, .hero-system-caption { display: none !important; }

.standard-grid { gap: 24px; }
.standard-card--visual { min-height: 0; padding: 0; display: grid; grid-template-rows: 1.3fr auto; background: rgba(255,255,255,.82); }
.standard-media { position: relative; overflow: hidden; aspect-ratio: 4 / 3; background: linear-gradient(180deg, #d9effb, #fdfdfd); }
.standard-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,242,204,.12)); }
.standard-media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .7s var(--ease), filter .6s; }
.standard-card--visual:hover .standard-media img { transform: scale(1.03); filter: saturate(1.02); }
.standard-copy { padding: 28px 28px 30px; }
.standard-copy h3 { margin: 12px 0 10px; font-size: 24px; letter-spacing: -.03em; }
.standard-copy p { margin: 0; color: var(--ink-soft); font-size: 15px; line-height: 1.7; }
.line-icon { display: none; }

.care-global-note { grid-column: 1 / -1; margin: 18px 0 0 0; color: #6f8592; font-size: 11px; }
.care-note { display: none; }
.care-visual { height: 260px; background: linear-gradient(145deg, #dceff9, #eff8fd 60%, #fefbf4); }
.care-visual::before,
.care-ring,
.care-pulse,
.care-veil { display: none !important; }
.care-visual img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: saturate(.92) brightness(1.02); }
.care-visual > span { align-self: end; justify-self: end; margin: 0 24px 18px 0; padding: 7px 11px; border-radius: 999px; color: #fff; background: rgba(7,95,150,.52); backdrop-filter: blur(10px); font-size: 14px; font-weight: 700; letter-spacing: .12em; }
.care-visual b { position: absolute; left: 0; right: 0; bottom: 0; height: 3px; transform-origin: left center; background: linear-gradient(90deg, rgba(255,232,164,.9), rgba(70,181,230,.75)); }

.space-gallery { overflow: hidden; background: linear-gradient(180deg, #fffcf6 0%, #f4fbff 46%, #edf9ff 100%); }
.space-carousel { min-height: min(68vw, 760px); background: linear-gradient(180deg, #f4fbff, #eef8fd); }
.space-track { height: min(68vw, 760px); min-height: 440px; }
.space-slide { display: grid; place-items: center; padding: 26px; background: linear-gradient(180deg, rgba(255,255,255,.72), rgba(239,248,253,.9)); }
.space-slide img { width: 100%; height: 100%; object-fit: contain; filter: saturate(.94) brightness(1.01) contrast(.96); }
.space-slide::after, .space-slide figcaption { display: none !important; }
.space-controls { background: rgba(255,255,255,.34); border-color: rgba(116,174,206,.28); }
.space-controls > button { background: rgba(4,72,112,.48); }
.space-dots button { background: rgba(8,102,154,.18); }
.space-dots button.is-active { background: rgba(8,102,154,.92); }

.location-map-art { height: 460px; background: linear-gradient(180deg, #f7fbfe, #eef6fb); }
.location-map-art::before { display: none; }
.location-map-art img { width: 100%; height: 100%; display: block; object-fit: cover; }

.site-footer {
  color: #174765;
  background: linear-gradient(180deg, #eef8fc 0%, #e7f6fc 44%, #e6f0f7 100%);
}
.footer-glow { right: -4vw; top: -12vw; width: 56vw; height: 56vw; background: radial-gradient(circle, rgba(255,230,162,.22), rgba(122,203,236,.16) 38%, transparent 66%); }
.footer-brand img { filter: none; }
.footer-brand p { color: rgba(23,71,101,.66); }
.footer-links p { color: #3f8eb4; }
.footer-links a,
.footer-links button { color: rgba(23,71,101,.8); }
.footer-links a:hover,
.footer-links button:hover { color: #0e5e8c; }
.footer-bottom { border-top: 1px solid rgba(23,71,101,.12); color: rgba(23,71,101,.52); }
.medical-disclaimer { color: rgba(23,71,101,.62); }

@media (max-width: 980px) {
  .standard-card--visual { grid-template-rows: auto auto; }
  .hero-system { width: min(100%, 520px); justify-self: center; }
}
@media (max-width: 720px) {
  .standard-grid { grid-template-columns: 1fr; }
  .space-carousel { min-height: 0; }
  .space-track { min-height: 300px; height: min(96vw, 540px); }
  .space-slide { padding: 14px; }
  .location-map-art { height: 320px; }
}


/* --- v1.0.4 refinements --- */
.hero {
  background:
    radial-gradient(circle at 80% 18%, rgba(255, 232, 175, .13), transparent 28%),
    radial-gradient(circle at 72% 56%, rgba(91, 184, 230, .16), transparent 34%),
    linear-gradient(135deg, #0b4d74 0%, #10709d 45%, #2a93c3 75%, #62b8dc 100%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.06) 58%, rgba(255,248,228,.06));
}
.hero-grid {
  position: relative;
  z-index: 2;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  min-height: 760px;
  padding-top: 148px;
  padding-bottom: 112px;
}
.hero-copy { max-width: 760px; }
.hero-balance { display: none; }
.hero-ambient {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}
.hero-particles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-particles-glow {
  --px: 50%;
  --py: 50%;
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s ease;
  background: radial-gradient(230px 230px at var(--px) var(--py), rgba(255, 232, 170, .18), rgba(185, 233, 255, .08) 42%, transparent 74%);
  filter: blur(18px);
}
.hero.is-active .hero-particles-glow { opacity: 1; }
.hero-system, .hero-system-panel { display: none !important; }
.pointer-light {
  background: radial-gradient(circle, rgba(255,234,177,.15), rgba(181,232,255,.11) 34%, transparent 70%);
}
.hero-facts div {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(10px);
}
.button--primary {
  background: linear-gradient(135deg, rgba(62,179,223,.95), rgba(18,123,184,.88));
  box-shadow: 0 14px 34px rgba(17, 120, 181, .18);
}
.button--primary:hover { box-shadow: 0 18px 40px rgba(17, 120, 181, .22); }
.button--glass {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.24);
}

.standard-copy h3 { letter-spacing: -.035em; }

.location-map-art { height: 470px; background: linear-gradient(180deg, #f8fcff, #eef7fc); }
.location-map-art img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.info-card--contact {
  color: #114563;
  background: linear-gradient(145deg, rgba(235,247,252,.96), rgba(224,242,251,.98));
  border: 1px solid rgba(76,155,194,.16);
}
.info-card--contact .info-label { color: #4d8eb2; }
.info-card--contact .big-phone { color: #0d5d88; }
.info-card--contact .contact-row { border-top-color: rgba(38,101,133,.12); }
.info-card--contact .contact-row span { color: rgba(17,69,99,.42); }
.info-card--contact .contact-row strong { color: #174765; }
.location-actions .button--primary,
.form-submit {
  background: linear-gradient(135deg, rgba(98,191,227,.96), rgba(39,144,200,.9));
  box-shadow: 0 12px 28px rgba(55, 153, 201, .16);
}

.space-carousel {
  background: linear-gradient(180deg, rgba(255,255,255,.78), rgba(240,248,252,.92));
}
.space-track {
  height: min(68vw, 720px);
}
.space-slide {
  padding: 34px 34px 86px;
}
.space-slide img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.space-controls {
  right: 26px;
  left: auto;
  bottom: 24px;
  transform: none;
  gap: 14px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.42);
  border: 1px solid rgba(148, 195, 219, .34);
  box-shadow: 0 18px 38px rgba(70, 129, 158, .12);
  backdrop-filter: blur(18px) saturate(135%);
}
.space-controls > button {
  width: 44px;
  height: 44px;
  color: #25617f;
  background: rgba(255,255,255,.55);
  border: 1px solid rgba(114, 166, 192, .22);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.5);
}
.space-controls > button:hover { background: rgba(255,255,255,.72); }
.space-dots { gap: 8px; }
.space-dots button {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(47,118,151,.18);
}
.space-dots button.is-active {
  width: 20px;
  background: linear-gradient(90deg, rgba(255,223,157,.96), rgba(80,181,220,.92));
}

.floating-tools {
  gap: 10px;
}
.floating-tools a {
  color: #0c648d;
  background: rgba(247,251,254,.34);
  border-color: rgba(255,255,255,.5);
  box-shadow: 0 16px 36px rgba(12, 71, 103, .12);
  backdrop-filter: blur(18px) saturate(160%);
}
.floating-tools a:hover {
  background: rgba(247,251,254,.48);
  transform: translateY(-3px) scale(1.03);
}

@media (max-width: 980px) {
  .hero-grid { min-height: 0; padding-top: 150px; padding-bottom: 120px; }
}
@media (max-width: 720px) {
  .hero-grid { padding-top: 130px; padding-bottom: 110px; }
  .hero-copy h1 { font-size: 56px; }
  .space-slide { padding: 16px 16px 82px; }
  .space-controls { right: 14px; bottom: 14px; }
  .floating-tools {
    left: 12px;
    right: 12px;
    bottom: 12px;
    gap: 10px;
    padding: 8px;
    border-radius: 26px;
    border: 1px solid rgba(255,255,255,.5);
    background: rgba(248,252,254,.38);
    box-shadow: 0 14px 36px rgba(12, 71, 103, .1);
    backdrop-filter: blur(18px) saturate(155%);
  }
  .floating-tools a {
    height: 56px;
    border-radius: 18px;
    background: rgba(255,255,255,.34);
    border: 1px solid rgba(255,255,255,.34);
    box-shadow: none;
  }
}


/* --- v1.0.5 refinements --- */
:root {
  --ink: #425763;
  --ink-soft: #617683;
}
body { color: var(--ink); }
h1, h2, h3, h4, h5, h6 { color: #3f5561; }
.inquiry-form input:not([type="checkbox"]),
.inquiry-form select,
.inquiry-form textarea,
.location-content h3,
.standard-copy h3,
.care-copy h3,
.hero-copy h1,
.hero-copy p,
.hero-facts dd,
.hours-list dd { color: inherit; }

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 780px;
  margin-top: 46px;
}
.hero-facts div {
  min-width: 0;
  padding: 16px 22px 17px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 0;
  background: rgba(255,255,255,.09);
  backdrop-filter: blur(10px) saturate(120%);
}
.hero-facts div:first-child { padding-left: 22px; border-left: 1px solid rgba(255,255,255,.18); }
.hero-facts dt { color: rgba(255,255,255,.58); font-size: 10px; letter-spacing: .14em; }
.hero-facts dd { margin-top: 6px; color: #f7fbfd; font-size: clamp(17px, 1.65vw, 20px); font-weight: 640; line-height: 1.25; }

.notice-dock {
  border-color: rgba(194,226,241,.45);
  color: #21485e;
  background: rgba(242,249,252,.78);
  box-shadow: 0 26px 60px rgba(80, 122, 148, .16);
  backdrop-filter: blur(20px) saturate(130%);
}
.notice-close { color: #48728a; background: rgba(255,255,255,.45); }
.notice-content p { color: #5b9bbb; }
.notice-content strong { color: #355362; }
.notice-content > span { color: rgba(53,83,98,.72); }
.notice-content a { border-bottom-color: rgba(70,121,148,.28); color: #2f6581; }

.hero-particles-glow {
  background: radial-gradient(240px 240px at var(--px) var(--py), rgba(255, 233, 177, .16), rgba(187, 233, 254, .08) 45%, transparent 74%);
}

.location-map-art {
  height: 470px;
  background: linear-gradient(180deg, #f6fbfe, #edf6fb);
}
.location-map-art iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: saturate(.94) hue-rotate(-4deg) brightness(1.01);
}

.info-card--contact {
  color: #f4fbff;
  background: linear-gradient(145deg, rgba(11,88,132,.94), rgba(24,127,181,.9));
  border: 1px solid rgba(139, 212, 244, .18);
}
.info-card--contact .info-label { color: #b6e8ff; }
.info-card--contact .big-phone,
.info-card--contact .contact-row strong { color: #fff; }
.info-card--contact .contact-row { border-top-color: rgba(255,255,255,.14); }
.info-card--contact .contact-row span { color: rgba(255,255,255,.5); }

.space-controls {
  gap: 12px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.44);
  border: 1px solid rgba(156, 198, 219, .34);
  box-shadow: 0 18px 42px rgba(87, 136, 162, .12);
  backdrop-filter: blur(18px) saturate(150%);
}
.space-controls > button {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  background: rgba(255,255,255,.66);
  border: 1px solid rgba(128, 175, 199, .22);
  color: #2f6d8f;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.75), 0 4px 12px rgba(89, 143, 173, .08);
}
.space-controls > button svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  stroke-width: 2.1;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.space-controls > button:hover { background: rgba(255,255,255,.82); }

.site-footer {
  --fx: 84%;
  --fy: 8%;
}
.footer-glow {
  right: auto;
  left: calc(var(--fx) - 28vw);
  top: calc(var(--fy) - 28vw);
  transition: left .18s ease-out, top .18s ease-out;
}

@media (max-width: 760px) {
  .hero-facts {
    grid-template-columns: 1fr;
    gap: 8px;
    max-width: 100%;
  }
  .hero-facts div,
  .hero-facts div:first-child { padding: 14px 16px; }
  .hero-facts dd { font-size: 18px; }
}


/* --- v1.0.6 refinements --- */
.notice-dock {
  background: linear-gradient(145deg, rgba(237,246,251,.72), rgba(229,243,250,.78));
  border: 1px solid rgba(191,223,237,.5);
  box-shadow: 0 26px 56px rgba(67, 111, 137, .14);
  overflow: hidden;
}
.notice-dock::before {
  content: "";
  position: absolute;
  inset: -1px;
  pointer-events: none;
  background: radial-gradient(260px 260px at calc(var(--mx, 50vw) - 100vw + 100%) calc(var(--my, 50vh) - 0px), rgba(255,232,176,.22), rgba(186,233,255,.14) 38%, transparent 72%);
  mix-blend-mode: screen;
}
.notice-dock::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255,255,255,.18), rgba(255,255,255,.04));
}
.notice-content,
.notice-close { position: relative; z-index: 1; }
.notice-content strong { color: #405964; }
.notice-content > span { color: #5d7380; }
.notice-content a { color: #2d6784; }

.hero-particles-glow {
  background: radial-gradient(260px 260px at var(--px) var(--py), rgba(255,233,177,.18), rgba(187,233,254,.1) 40%, transparent 74%);
}
.hero-facts {
  gap: 10px;
}
.hero-facts div {
  padding: 13px 18px 14px;
  background: rgba(255,255,255,.11);
  border-color: rgba(255,255,255,.16);
}
.hero-facts dd { color: #f8fbfd; }

.schedule-band {
  --sbx: 50%;
  --sby: 50%;
  background: linear-gradient(116deg, #1990c0 0%, #57c4ea 56%, #cfeffc 100%);
}
.schedule-band::before { opacity: .22; }
.schedule-band-glow {
  left: var(--sbx);
  top: var(--sby);
  width: 560px;
  height: 560px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(255,229,157,.3), rgba(182,233,255,.22) 40%, transparent 72%);
  transition: left .12s ease-out, top .12s ease-out;
}
.schedule-band h2,
.schedule-band .eyebrow,
.schedule-band .schedule-preview strong,
.schedule-band .schedule-date > span,
.schedule-band .button--light {
  color: #fff !important;
}
.schedule-band .schedule-preview p,
.schedule-band .schedule-date small {
  color: rgba(255,255,255,.72) !important;
}

.info-card--contact {
  position: relative;
  overflow: hidden;
  color: #f6fbfe;
  background: linear-gradient(145deg, #0f7fb5, #24a4db 72%, #69c7ea 100%);
  border: 1px solid rgba(174, 231, 255, .2);
  box-shadow: 0 26px 70px rgba(22, 126, 182, .2);
}
.info-card--contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,.14), rgba(255,255,255,0) 36%, rgba(255,241,204,.08));
  pointer-events: none;
}
.info-card--contact .info-label,
.info-card--contact .big-phone,
.info-card--contact .contact-row,
.info-card--contact .contact-row strong,
.info-card--contact .contact-row span { position: relative; z-index: 1; }
.info-card--contact .big-phone { text-shadow: 0 8px 18px rgba(4, 68, 104, .16); }
.info-card--contact .contact-row { border-top-color: rgba(255,255,255,.18); }
.info-card--contact .contact-row span { color: rgba(255,255,255,.6); }

.site-footer { --fx: 84%; --fy: 8%; }
.footer-glow {
  transition: left .12s ease-out, top .12s ease-out;
}


/* --- v1.0.8 routing/admin/mobile refinements --- */
.notice-dock { transform: translateY(calc(var(--notice-index, 0) * 118px)); }
.notice-dock.is-compact { transform: translateY(calc(var(--notice-index, 0) * 74px)); }
.notice-dock.is-offscreen { transform: translateY(-14px); }
.notice-close { top: 12px; right: 12px; display: grid; place-items: center; line-height: 1; }

.schedule-structured { overflow-x: auto; border: 1px solid rgba(8,81,124,.13); border-radius: 18px; background: linear-gradient(180deg, #f9fdff, #f1f8fc); }
.schedule-table { width: 100%; min-width: 760px; border-collapse: collapse; font-size: 13px; }
.schedule-table caption { height: 1px; overflow: hidden; clip-path: inset(50%); }
.schedule-table th, .schedule-table td { padding: 15px 12px; border-bottom: 1px solid rgba(8,81,124,.11); text-align: center; color: #4b6370; }
.schedule-table thead th { color: #317da5; background: rgba(232,247,254,.78); font-size: 11px; font-weight: 800; letter-spacing: .08em; }
.schedule-table tbody th { text-align: left; white-space: nowrap; background: rgba(255,255,255,.62); }
.schedule-table tbody th strong { display: block; color: #2f4f5e; font-size: 15px; }
.schedule-table tbody th span { display: block; margin-top: 3px; color: #7a929f; font-size: 11px; font-weight: 500; }
.schedule-table td.is-off { color: #a5b2ba; background: rgba(242,247,250,.6); }
.schedule-memo-list { margin: 0; padding: 18px 22px 20px; list-style: none; }
.schedule-memo-list li { position: relative; padding-left: 14px; color: #637985; font-size: 12px; }
.schedule-memo-list li + li { margin-top: 6px; }
.schedule-memo-list li::before { content: ""; position: absolute; left: 0; top: .75em; width: 4px; height: 4px; border-radius: 50%; background: #65bfe3; }
.schedule-image-wrap[hidden] { display: none !important; }

.schedule-band .button--light {
  color: #1d6f94 !important;
  background: rgba(255,255,255,.92) !important;
  border-color: rgba(255,255,255,.68);
  box-shadow: 0 16px 38px rgba(31,120,164,.16);
}
.schedule-band .button--light:hover { background: rgba(255,255,255,.98) !important; }

@media (max-width: 720px) {
  .space-carousel { overflow: visible; padding-bottom: 0; }
  .space-track { height: min(96vw, 520px); min-height: 280px; }
  .space-slide { padding: 14px; }
  .space-controls {
    position: relative !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    width: fit-content;
    max-width: calc(100% - 28px);
    margin: 14px auto 0;
    justify-content: center;
    background: rgba(255,255,255,.56);
  }
  .space-controls > button { width: 42px; height: 42px; }
  .inquiry-form {
    background:
      radial-gradient(circle at 82% 8%, rgba(255,228,166,.34), transparent 34%),
      linear-gradient(180deg, #fffdf6 0%, #f7fbfe 68%, #eef8fe 100%);
    border-color: rgba(219,185,105,.28);
    box-shadow: 0 22px 60px rgba(151,120,45,.08);
  }
  .notice-dock { transform: none; }
  .schedule-table { min-width: 680px; }
}


/* --- v1.0.9 typography, hero, notice, and schedule refinements --- */
:root {
  --ink: #4a5d67;
  --ink-soft: #6b7e89;
}
body { color: var(--ink); }
h1, h2, h3, .section-heading h2, .care-intro h2, .inquiry-intro h2 {
  color: #435762;
  font-weight: 300;
  letter-spacing: -.062em;
}
.hero-copy h1 {
  color: #f5fbff;
  font-weight: 160;
  letter-spacing: -.078em;
}
.hero-copy h1 em {
  color: #ffffff;
  font-weight: 360;
}
.standard-copy h3,
.care-copy h3,
.doctor-name h3,
.location-content h3,
.info-card h2,
.footer-brand p { font-weight: 330; }
.care .eyebrow,
.inquiry .eyebrow {
  width: fit-content;
  gap: 10px;
  margin-bottom: 22px;
  padding: 8px 12px;
  border: 1px solid rgba(104, 178, 213, .18);
  border-radius: 999px;
  color: #6ea7c0;
  background: rgba(255,255,255,.58);
  letter-spacing: .095em;
  font-size: 10px;
}
.care .eyebrow span,
.inquiry .eyebrow span { width: 18px; opacity: .62; }
.hero-ambient { pointer-events: none; }
.hero-particles-glow {
  background: radial-gradient(520px 520px at var(--px) var(--py), rgba(255,233,177,.18), rgba(187,233,254,.1) 42%, transparent 75%);
}
.notice-dock {
  overflow: visible;
  color: #36515d;
  background: rgba(239, 248, 252, .38);
  border-color: rgba(214, 237, 247, .48);
  box-shadow: 0 22px 44px rgba(54, 101, 128, .12);
  backdrop-filter: blur(18px) saturate(150%);
}
.notice-dock::before {
  inset: -58px;
  border-radius: 38px;
  background: radial-gradient(280px 280px at 50% 50%, rgba(255,232,176,.2), rgba(186,233,255,.13) 38%, transparent 72%);
}
.notice-dock::after {
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(145deg, rgba(255,255,255,.36), rgba(255,255,255,.08));
}
.notice-close {
  top: 14px !important;
  right: 14px !important;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(79, 127, 152, .13);
  color: #527789;
  background: rgba(255,255,255,.52);
  line-height: 1;
  transform: none;
}
.notice-content { padding: 31px 32px 28px; }
.notice-content strong { padding-right: 46px; color: #39515d; font-weight: 520; }
.schedule-band .button--light {
  color: #17698d !important;
  background: rgba(255,255,255,.94) !important;
}
.schedule-band h2 { color: #fff !important; font-weight: 300; }
.schedule-band .schedule-preview p { color: rgba(255,255,255,.78) !important; }
.schedule-structured { overflow-x: visible; }
.schedule-table { min-width: 0; table-layout: fixed; }
.schedule-table th, .schedule-table td { word-break: keep-all; }
@media (max-width: 720px) {
  .modal-panel--schedule { max-width: calc(100vw - 18px); padding: 24px 12px; }
  .schedule-structured { overflow: visible; border: 0; background: transparent; }
  .schedule-table, .schedule-table thead, .schedule-table tbody, .schedule-table tr, .schedule-table th, .schedule-table td { display: block; width: 100%; }
  .schedule-table { min-width: 0; border-collapse: separate; border-spacing: 0; font-size: 12px; }
  .schedule-table thead { display: none; }
  .schedule-table tbody tr {
    margin-bottom: 14px;
    overflow: hidden;
    border: 1px solid rgba(8,81,124,.12);
    border-radius: 16px;
    background: linear-gradient(180deg, #fafdff, #f1f8fc);
  }
  .schedule-table tbody th { padding: 16px 16px 12px; background: rgba(255,255,255,.66); text-align: left; }
  .schedule-table tbody td {
    display: grid;
    grid-template-columns: 74px 1fr;
    align-items: center;
    min-height: 42px;
    padding: 10px 14px;
    border-bottom: 1px solid rgba(8,81,124,.08);
    text-align: left;
  }
  .schedule-table tbody td::before {
    content: attr(data-label);
    color: #4b8aab;
    font-size: 11px;
    font-weight: 700;
  }
  .schedule-table tbody td:last-child { border-bottom: 0; }
  .schedule-memo-list { padding: 12px 4px 0; }
}


/* --- v1.0.9 typography, routing and interaction refinements --- */
body { font-weight: 300; }
h1, h2, h3,
.section-heading h2,
.care-intro h2,
.inquiry-intro h2,
.location-content h3,
.doctor-name h3,
.modal-heading h2,
.editor-topline h1 { font-weight: 240 !important; }
.hero-copy h1 { font-weight: 120 !important; letter-spacing: -.075em; }
.hero-copy h1 em { font-weight: 310 !important; }
.section-heading h2,
.care-intro h2,
.inquiry-intro h2 { letter-spacing: -.06em; }
.standard-copy h3,
.care-copy h3 { font-weight: 280 !important; }

.care-intro .eyebrow,
.inquiry-intro .eyebrow {
  display: inline-flex;
  width: auto;
  padding: 8px 13px;
  border: 1px solid rgba(61, 151, 192, .18);
  border-radius: 999px;
  color: #4f91b3;
  background: rgba(255,255,255,.54);
  font-size: 10px;
  font-weight: 520;
  letter-spacing: .08em;
  backdrop-filter: blur(10px);
}
.care-intro .eyebrow span,
.inquiry-intro .eyebrow span { width: 18px; opacity: .6; }

.notice-dock {
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(237,247,252,.46), rgba(225,244,252,.5));
  border-color: rgba(205,232,243,.52);
  box-shadow: 0 22px 50px rgba(70, 119, 145, .12);
  backdrop-filter: blur(18px) saturate(145%);
}
.notice-dock::before {
  inset: -30%;
  background: radial-gradient(circle at 74% 18%, rgba(255,236,188,.24), transparent 30%), radial-gradient(circle at 18% 92%, rgba(159,223,250,.2), transparent 34%);
  mix-blend-mode: screen;
}
.notice-dock::after { display: none; }
.notice-close {
  top: 16px !important;
  right: 16px !important;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  line-height: 1;
  padding: 0;
  color: #4c7488;
  background: rgba(255,255,255,.58);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.65);
}
.notice-content { padding: 30px 76px 28px 30px; }
.notice-content p { font-weight: 560; letter-spacing: .1em; }
.notice-content strong { font-weight: 430; }
.notice-content a { font-weight: 520; }

.schedule-band .button--light {
  color: #1b6d91 !important;
  background: rgba(255,255,255,.94) !important;
}

.schedule-structured { overflow-x: visible; }
@media (max-width: 720px) {
  .schedule-structured { overflow: visible; border: 0; background: transparent; }
  .schedule-table { min-width: 0 !important; display: block; width: 100%; font-size: 13px; }
  .schedule-table thead { display: none; }
  .schedule-table tbody { display: grid; gap: 14px; }
  .schedule-table tr {
    display: block;
    padding: 16px;
    border: 1px solid rgba(8,81,124,.12);
    border-radius: 16px;
    background: linear-gradient(180deg, #ffffff, #f5fbff);
    box-shadow: 0 14px 32px rgba(32, 104, 142, .08);
  }
  .schedule-table tbody th {
    display: block;
    padding: 0 0 12px;
    margin-bottom: 6px;
    border-bottom: 1px solid rgba(8,81,124,.1);
    white-space: normal;
    background: transparent;
  }
  .schedule-table td {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 9px 0;
    border-bottom: 1px solid rgba(8,81,124,.08);
    text-align: right;
  }
  .schedule-table td::before {
    content: attr(data-label);
    flex: 0 0 auto;
    color: #4f91b3;
    font-weight: 520;
  }
  .schedule-table td:last-child { border-bottom: 0; }
  .schedule-memo-list { padding: 16px 6px 0; }
}


/* --- v1.0.9 refinements --- */
:root { --ink: #465b66; --ink-soft: #6a7d87; }
body { color: var(--ink); }
h1, h2, h3, h4, h5, h6 { color: #425762; font-weight: 280; }
.section-heading h2,
.care-intro h2,
.inquiry-intro h2,
.location-content h3,
.doctor-name h3,
.care-copy h3,
.standard-copy h3,
.schedule-band h2,
.modal-heading h2,
.footer-brand p { font-weight: 280 !important; }
.hero-copy h1 { font-weight: 180 !important; letter-spacing: -.075em; }
.hero-copy h1 em { font-weight: 360 !important; }
.hero-lead, .section-heading > p:last-child, .care-intro > p, .inquiry-intro > p { font-weight: 320; }
.eyebrow { font-weight: 520; letter-spacing: .14em; opacity: .9; }
.care-intro .eyebrow,
.inquiry-intro .eyebrow { display: inline-flex; gap: 10px; padding: 7px 12px; border: 1px solid rgba(25,142,197,.14); border-radius: 999px; background: rgba(255,255,255,.48); letter-spacing: .12em; }
.care-intro .eyebrow span,
.inquiry-intro .eyebrow span { width: 18px; opacity: .75; }

.notice-dock { overflow: visible; background: transparent !important; box-shadow: none !important; border: 0 !important; backdrop-filter: none !important; }
.notice-dock::before,
.notice-dock::after { display: none !important; }
.notice-content { position: relative; overflow: hidden; border: 1px solid rgba(191,223,237,.52); border-radius: 18px; background: linear-gradient(145deg, rgba(237,246,251,.72), rgba(229,243,250,.78)); box-shadow: 0 26px 56px rgba(67, 111, 137, .14); backdrop-filter: blur(20px) saturate(130%); }
.notice-content::before { content: ""; position: absolute; inset: -1px; pointer-events: none; background: radial-gradient(280px 280px at var(--mx) var(--my), rgba(255,232,176,.2), rgba(186,233,255,.13) 38%, transparent 72%); mix-blend-mode: screen; }
.notice-content > * { position: relative; z-index: 1; }
.notice-close { top: 14px !important; right: 14px !important; width: 38px; height: 38px; z-index: 4; display: grid; place-items: center; padding: 0; color: #51758a; background: rgba(255,255,255,.56); border: 1px solid rgba(112,160,184,.16); line-height: 1; font-size: 22px; }
.notice-content { padding: 26px 62px 26px 26px; }
.notice-content p { color: #5b9bbb; }
.notice-content strong { color: #405964; font-weight: 520; }
.notice-content > span { color: #5d7380; }
.notice-content a { color: #2d6784; }

.hero-particles { pointer-events: none; }
.hero-particles-glow { background: radial-gradient(300px 300px at var(--px) var(--py), rgba(255,233,177,.18), rgba(187,233,254,.1) 40%, transparent 74%); }

.schedule-band .button--light { color: #1d6f94 !important; }
.schedule-band h2 { color: #fff !important; }
.schedule-structured { overflow-x: auto; }
.schedule-table { min-width: 0; }
@media (max-width: 720px) {
  .modal { padding: 10px; }
  .modal-panel--schedule { width: min(100%, calc(100vw - 20px)); padding: 24px 14px; }
  .schedule-structured { overflow: visible; border: 0; background: transparent; }
  .schedule-table { width: 100%; min-width: 0 !important; border-collapse: separate; border-spacing: 0 12px; font-size: 12px; }
  .schedule-table thead { display: none; }
  .schedule-table tbody { display: grid; gap: 12px; }
  .schedule-table tr { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0; overflow: hidden; border: 1px solid rgba(8,81,124,.12); border-radius: 16px; background: rgba(255,255,255,.78); box-shadow: 0 12px 34px rgba(38,102,135,.08); }
  .schedule-table tbody th { grid-column: 1 / -1; display: block; padding: 15px 16px 12px; background: rgba(235,248,254,.84); text-align: left; }
  .schedule-table th, .schedule-table td { border: 0; padding: 11px 13px; }
  .schedule-table td { display: flex; align-items: center; justify-content: space-between; gap: 10px; min-height: 42px; border-top: 1px solid rgba(8,81,124,.08); text-align: right; }
  .schedule-table td::before { content: attr(data-label); color: #6f8793; font-size: 11px; font-weight: 650; }
  .schedule-table td:last-child { grid-column: 1 / -1; }
  .schedule-memo-list { padding: 8px 2px 0; }
  .notice-dock .notice-content,
  .notice-dock.is-compact .notice-content { padding: 18px 58px 18px 20px; }
  .notice-close { top: 10px !important; right: 10px !important; width: 36px; height: 36px; }
}


/* --- v1.0.9 typography / interaction refinements --- */
:root {
  --ink: #4a5c66;
  --ink-soft: #657985;
}
body { color: var(--ink); }
body, button, input, textarea, select { font-weight: 320; }
.hero-copy h1 {
  font-weight: 120 !important;
  letter-spacing: -.075em;
}
.hero-copy h1 em {
  font-weight: 360 !important;
  color: #f7fbfd;
}
.section-heading h2,
.care-intro h2,
.inquiry-intro h2,
.schedule-band h2,
.modal-heading h2,
.doctor-name h3,
.care-copy h3,
.standard-copy h3,
.location-content h3,
.inquiry-intro h2,
.editor-topline h1 {
  font-weight: 260 !important;
}
.standard-copy h3,
.care-copy h3,
.doctor-name h3,
.location-content h3 { color: #465b66; }
.section-heading h2,
.care-intro h2,
.inquiry-intro h2 { color: #415865; }
.hero-lead { font-weight: 300; }
.hero-actions .button { font-weight: 560; }
.eyebrow {
  font-weight: 560;
  letter-spacing: .145em;
}
.care-intro .eyebrow,
.inquiry-intro .eyebrow {
  display: inline-flex;
  gap: 9px;
  min-height: 28px;
  padding: 8px 13px;
  border: 1px solid rgba(77,153,190,.16);
  border-radius: 999px;
  background: rgba(255,255,255,.55);
  color: #4d8fb0;
  font-size: 10px;
  letter-spacing: .08em;
  backdrop-filter: blur(10px);
}
.care-intro .eyebrow span,
.inquiry-intro .eyebrow span { width: 14px; opacity: .58; }

.notice-dock {
  background: rgba(229, 244, 250, .48) !important;
  border-color: rgba(219, 241, 250, .56) !important;
  box-shadow: 0 22px 58px rgba(74, 118, 144, .13) !important;
  backdrop-filter: blur(18px) saturate(148%);
}
.notice-dock::before {
  inset: -70px !important;
  background: radial-gradient(330px 330px at var(--mx, 50vw) var(--my, 50vh), rgba(255,234,183,.24), rgba(184,234,255,.16) 38%, transparent 74%) !important;
  opacity: .86;
}
.notice-dock::after { display: none !important; }
.notice-close {
  top: 18px !important;
  right: 18px !important;
  width: 34px !important;
  height: 34px !important;
  display: grid !important;
  place-items: center !important;
  line-height: 1 !important;
  padding: 0 !important;
  color: #557789 !important;
  background: rgba(255,255,255,.52) !important;
  border: 1px solid rgba(132,182,207,.14) !important;
}
.notice-content { padding: 48px 34px 34px 34px !important; }
.notice-dock.is-compact .notice-content { padding: 18px 58px 18px 22px !important; }
.notice-dock.is-compact .notice-close { top: 11px !important; right: 12px !important; }

.schedule-band .button--light {
  color: #217194 !important;
  background: rgba(255,255,255,.96) !important;
}
.schedule-band h2 { font-weight: 260 !important; color: #fff !important; }

.schedule-structured { overflow-x: visible; }
.schedule-table { min-width: 0; table-layout: fixed; }
@media (max-width: 720px) {
  .modal-panel--schedule {
    width: calc(100vw - 18px);
    max-height: calc(100dvh - 18px);
    padding: 23px 10px 20px;
  }
  .modal-panel--schedule .modal-heading { padding-right: 34px; }
  .schedule-structured {
    overflow-x: visible !important;
    border-radius: 14px;
  }
  .schedule-table {
    width: 100%;
    min-width: 0 !important;
    table-layout: fixed;
    font-size: clamp(8px, 2.05vw, 10px);
  }
  .schedule-table th,
  .schedule-table td {
    padding: 8px 3px;
    word-break: keep-all;
    line-height: 1.25;
  }
  .schedule-table thead th {
    font-size: clamp(7px, 1.8vw, 9px);
    letter-spacing: 0;
  }
  .schedule-table tbody th { white-space: normal; }
  .schedule-table tbody th strong { font-size: clamp(9px, 2.15vw, 11px); }
  .schedule-table tbody th span { font-size: clamp(7px, 1.75vw, 9px); }
  .schedule-memo-list { padding: 12px 12px 14px; }
  .schedule-memo-list li { font-size: 10px; }
}


/* --- v1.0.9 refinements --- */
:root {
  --ink: #4d616b;
  --ink-soft: #6a7d88;
}
body { color: var(--ink); }
.section-heading h2,
.care-intro h2,
.inquiry-intro h2,
.doctor-name h3,
.location-content h3,
.schedule-band h2,
.modal-heading h2,
.footer-brand p,
.standard-copy h3,
.care-copy h3,
.inquiry-intro h2 {
  font-weight: 240 !important;
  letter-spacing: -.052em;
}
.hero-copy h1 {
  font-weight: 100 !important;
  letter-spacing: -.075em;
}
.hero-copy h1 em {
  font-weight: 300 !important;
  letter-spacing: -.072em;
}
.hero-lead,
.section-heading > p:last-child,
.care-intro > p,
.inquiry-intro > p { font-weight: 330; }

.care-intro .eyebrow,
.inquiry-intro .eyebrow {
  display: inline-flex;
  width: auto;
  margin-bottom: 20px;
  padding: 8px 12px;
  border: 1px solid rgba(56,154,199,.18);
  border-radius: 999px;
  color: #3d8fb8;
  background: rgba(238,249,254,.66);
  letter-spacing: .075em;
  font-size: 10px;
  line-height: 1;
}
.care-intro .eyebrow span,
.inquiry-intro .eyebrow span { width: 12px; opacity: .55; }

.notice-dock {
  width: min(390px, calc(100vw - 48px));
  border-color: rgba(255,255,255,.48) !important;
  background: rgba(235,248,253,.38) !important;
  box-shadow: 0 24px 58px rgba(44,104,135,.12), inset 0 1px 0 rgba(255,255,255,.48) !important;
  backdrop-filter: blur(24px) saturate(155%);
  -webkit-backdrop-filter: blur(24px) saturate(155%);
}
.notice-dock::before {
  background: radial-gradient(320px 320px at var(--notice-x, 72%) var(--notice-y, 20%), rgba(255,233,178,.24), rgba(185,232,255,.18) 42%, transparent 72%) !important;
  mix-blend-mode: screen;
}
.notice-close {
  top: 14px !important;
  right: 14px !important;
  width: 36px !important;
  height: 36px !important;
  display: grid !important;
  place-items: center !important;
  padding: 0 !important;
  border-radius: 50% !important;
  font-size: 24px !important;
  line-height: 1 !important;
  transform: none !important;
}
.notice-content { padding: 44px 28px 28px !important; }
.notice-content strong { font-weight: 430; }
.notice-content a { font-weight: 520; }

.hero-ambient { z-index: 1; }
.hero-grid { z-index: 3; pointer-events: none; }
.hero-grid a,
.hero-grid button,
.hero-grid input,
.hero-grid textarea,
.hero-grid select { pointer-events: auto; }
.hero-particles { pointer-events: none; }
.hero-particles-glow { opacity: .24; }
.hero.is-active .hero-particles-glow { opacity: 1; }
.hero-facts div { background: rgba(255,255,255,.095); }

.schedule-band .button--light {
  color: #1d6f94 !important;
  background: rgba(255,255,255,.94) !important;
}
.schedule-structured {
  overflow-x: visible;
}
.schedule-table {
  min-width: 0 !important;
  table-layout: fixed;
}
.schedule-table th,
.schedule-table td {
  color: #506771;
}

@media (max-width: 720px) {
  .notice-content { padding: 38px 22px 22px !important; }
  .notice-close { top: 10px !important; right: 10px !important; width: 34px !important; height: 34px !important; }
  .schedule-structured { overflow-x: visible; border-radius: 14px; }
  .schedule-table { width: 100%; min-width: 0 !important; font-size: 10px; table-layout: fixed; }
  .schedule-table th,
  .schedule-table td { padding: 9px 3px; word-break: keep-all; }
  .schedule-table thead th { font-size: 9px; letter-spacing: 0; }
  .schedule-table tbody th { width: 22%; white-space: normal; }
  .schedule-table tbody th strong { font-size: 11px; line-height: 1.25; }
  .schedule-table tbody th span { display: none; }
  .schedule-table th:last-child,
  .schedule-table td:last-child { display: none; }
  .schedule-memo-list { padding: 14px 14px 16px; }
  .schedule-memo-list li { font-size: 10px; }
}


/* --- v1.0.9 refinements --- */
:root { --ink: #3f535f; --ink-soft: #637782; }
body { color: var(--ink); }
.section-heading h2,
.care-intro h2,
.inquiry-intro h2,
.schedule-band h2,
.atmosphere-content h2,
.modal-heading h2,
.editor-topline h1 { font-weight: 220 !important; letter-spacing: -.06em; }
.hero-copy h1 { font-weight: 180 !important; letter-spacing: -.075em; }
.hero-copy h1 em { font-weight: 360 !important; }
.standard-copy h3,
.care-copy h3,
.doctor-name h3,
.location-content h3,
.info-card h3 { font-weight: 280 !important; }
.eyebrow { font-weight: 520; letter-spacing: .08em; }
.eyebrow--dark { letter-spacing: .05em; }
.care-copy > p:first-child { letter-spacing: .04em; font-weight: 620; color: #4d94b7; }
.care-tab em { letter-spacing: .03em; text-transform: none; }

.hero-ambient { z-index: 1; pointer-events: none; }
.hero-grid { z-index: 2; pointer-events: none; }
.hero-grid a,
.hero-grid button,
.hero-grid input,
.hero-grid textarea,
.hero-grid select { pointer-events: auto; }
.hero.is-active .hero-particles-glow { opacity: 1; }
.hero-particles-glow { background: radial-gradient(330px 330px at var(--px) var(--py), rgba(255,233,177,.18), rgba(187,233,254,.12) 40%, transparent 74%); }

.notice-dock {
  overflow: visible;
  padding-right: 0;
  background: rgba(232,246,252,.56) !important;
  border-color: rgba(255,255,255,.48) !important;
  box-shadow: 0 22px 48px rgba(37, 95, 126, .13) !important;
  backdrop-filter: blur(18px) saturate(150%);
}
.notice-dock::before {
  inset: -24px;
  border-radius: 28px;
  background: radial-gradient(300px 300px at 62% 38%, rgba(255,232,176,.18), rgba(187,233,255,.12) 44%, transparent 74%);
  opacity: .95;
}
.notice-dock::after { display: none; }
.notice-close {
  position: absolute;
  right: 16px;
  top: 16px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  padding: 0;
  line-height: 1;
  font-size: 22px;
  color: #547589;
  background: rgba(255,255,255,.52);
  border: 1px solid rgba(86,134,158,.16);
}
.notice-content { padding: 28px 62px 28px 28px; }
.notice-content strong { color: #3f5663; }
.notice-content > span { color: #60747f; }
.notice-content a { color: #306b89; }
.notice-dock.is-compact .notice-content { padding: 16px 56px 17px 20px; }
.notice-dock.is-compact .notice-close { top: 10px; right: 12px; }

.schedule-band .button--light {
  color: #176c96 !important;
  background: rgba(255,255,255,.94) !important;
  border-color: rgba(255,255,255,.55) !important;
  box-shadow: 0 16px 36px rgba(31, 117, 164, .18);
}
.schedule-band .button--light span { color: inherit !important; }
.schedule-band .button--light:hover { background: #fff !important; }

@media (max-width: 680px) {
  .schedule-structured { overflow: visible; border: 0; background: transparent; }
  .schedule-table { min-width: 0 !important; width: 100%; display: block; font-size: 12px; }
  .schedule-table caption,
  .schedule-table thead { display: none; }
  .schedule-table tbody,
  .schedule-table tr,
  .schedule-table th,
  .schedule-table td { display: block; width: 100% !important; }
  .schedule-table tbody tr {
    margin: 0 0 14px;
    overflow: hidden;
    border: 1px solid rgba(8,81,124,.12);
    border-radius: 16px;
    background: rgba(255,255,255,.82);
    box-shadow: 0 12px 30px rgba(28, 103, 147, .07);
  }
  .schedule-table tbody th { padding: 16px 16px 12px; border-bottom: 1px solid rgba(8,81,124,.1); background: rgba(236,248,254,.8); }
  .schedule-table tbody td {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 16px;
    border-bottom: 1px solid rgba(8,81,124,.08);
    text-align: right;
  }
  .schedule-table tbody td::before { color: #5a7a8b; font-size: 11px; font-weight: 700; text-align: left; }
  .schedule-table tbody td:nth-of-type(1)::before { content: "월"; }
  .schedule-table tbody td:nth-of-type(2)::before { content: "화"; }
  .schedule-table tbody td:nth-of-type(3)::before { content: "수"; }
  .schedule-table tbody td:nth-of-type(4)::before { content: "목"; }
  .schedule-table tbody td:nth-of-type(5)::before { content: "금"; }
  .schedule-table tbody td:nth-of-type(6)::before { content: "토"; }
  .schedule-table tbody td:nth-of-type(7)::before { content: "비고"; }
  .schedule-memo-list { margin-top: 8px; border: 1px solid rgba(8,81,124,.1); border-radius: 14px; background: rgba(255,255,255,.72); }
  .modal-panel--schedule { padding: 24px 14px; }
  .modal-heading { padding-right: 46px; }
}


/* --- v1.0.9 hero title color correction --- */
.hero-copy h1 { color: #f7fbff !important; }
.hero-copy h1 em { color: #fff !important; }


/* v1.0.9 mobile schedule label override */
@media (max-width: 680px) { .schedule-table tbody td::before { content: attr(data-label) !important; } }


/* --- v1.0.9 final polish --- */
.hero-copy h1 { font-weight: 100 !important; }
.hero-copy h1 em { font-weight: 300 !important; }
.section-heading h2,
.care-intro h2,
.inquiry-intro h2,
.schedule-band h2,
.modal-heading h2 { font-weight: 220 !important; }
.care-intro .eyebrow,
.inquiry-intro .eyebrow {
  margin-bottom: 22px;
  color: #3d88ad;
  background: rgba(242,250,254,.68);
  border-color: rgba(56,145,188,.16);
  font-weight: 460;
  letter-spacing: .055em;
}
.notice-dock {
  background: rgba(232,246,252,.42) !important;
  border-color: rgba(255,255,255,.54) !important;
  box-shadow: 0 22px 50px rgba(46,103,134,.12), inset 0 1px 0 rgba(255,255,255,.44) !important;
}
.notice-dock::before { display: none !important; }
.notice-content { padding: 30px 70px 30px 30px !important; }
.notice-close {
  top: 16px !important;
  right: 16px !important;
  width: 36px !important;
  height: 36px !important;
  transform: none !important;
}
@media (max-width: 680px) {
  .notice-content { padding: 40px 22px 22px !important; }
  .notice-close { top: 10px !important; right: 10px !important; }
}

/* --- v1.0.9 final overrides --- */
:root { --ink: #4c5e68; --ink-soft: #687b86; }
body { color: var(--ink) !important; }
body, button, input, textarea, select { font-weight: 320; }
.hero-copy h1 { font-weight: 100 !important; letter-spacing: -.078em !important; color: #f7fbff !important; }
.hero-copy h1 em { font-weight: 320 !important; color: #fff !important; }
.section-heading h2,
.care-intro h2,
.inquiry-intro h2,
.schedule-band h2,
.modal-heading h2,
.standard-copy h3,
.care-copy h3,
.doctor-name h3,
.location-content h3,
.editor-topline h1 { font-weight: 230 !important; }
.standard-copy h3,
.care-copy h3,
.doctor-name h3,
.location-content h3 { color: #465a65 !important; }
.care-intro .eyebrow,
.inquiry-intro .eyebrow {
  display: inline-flex !important;
  gap: 9px !important;
  width: auto !important;
  min-height: 28px;
  padding: 8px 13px !important;
  border: 1px solid rgba(76,151,188,.16) !important;
  border-radius: 999px !important;
  color: #4a8dac !important;
  background: rgba(247,252,255,.62) !important;
  letter-spacing: .065em !important;
  font-size: 10px !important;
  line-height: 1 !important;
  backdrop-filter: blur(10px);
}
.care-intro .eyebrow span,
.inquiry-intro .eyebrow span { width: 13px !important; opacity: .55; }

.notice-dock {
  overflow: visible !important;
  background: rgba(232,246,252,.46) !important;
  border-color: rgba(255,255,255,.52) !important;
  box-shadow: 0 22px 52px rgba(37, 95, 126, .12) !important;
  backdrop-filter: blur(20px) saturate(150%) !important;
  -webkit-backdrop-filter: blur(20px) saturate(150%) !important;
}
.notice-dock::before {
  content: "";
  position: absolute;
  inset: -30px !important;
  z-index: 0;
  border-radius: 32px;
  pointer-events: none;
  background: radial-gradient(360px 360px at 72% 24%, rgba(255,233,178,.23), rgba(186,233,255,.16) 42%, transparent 74%) !important;
  opacity: .92;
  mix-blend-mode: screen;
}
.notice-dock::after { display: none !important; }
.notice-content { position: relative; z-index: 1; padding: 30px 66px 30px 30px !important; }
.notice-close {
  position: absolute !important;
  z-index: 2 !important;
  top: 16px !important;
  right: 16px !important;
  width: 34px !important;
  height: 34px !important;
  display: grid !important;
  place-items: center !important;
  padding: 0 !important;
  line-height: 1 !important;
  font-size: 22px !important;
  border-radius: 50% !important;
  color: #58788a !important;
  background: rgba(255,255,255,.58) !important;
  border: 1px solid rgba(111,158,184,.18) !important;
  transform: none !important;
}
.notice-dock.is-compact .notice-content { padding: 17px 58px 17px 21px !important; }
.notice-dock.is-compact .notice-close { top: 10px !important; right: 12px !important; }
@media (max-width: 720px) {
  .notice-content { padding: 39px 20px 22px !important; }
  .notice-close { top: 10px !important; right: 10px !important; }
}
.schedule-band .button--light,
.schedule-band .button--light:visited {
  color: #176c96 !important;
  background: rgba(255,255,255,.96) !important;
  border-color: rgba(255,255,255,.6) !important;
}
.schedule-band .button--light span { color: inherit !important; }
@media (max-width: 680px) {
  .schedule-structured { overflow: visible !important; border: 0 !important; background: transparent !important; }
  .schedule-table { min-width: 0 !important; width: 100% !important; display: block !important; font-size: 12px !important; }
  .schedule-table caption,
  .schedule-table thead { display: none !important; }
  .schedule-table tbody,
  .schedule-table tr,
  .schedule-table th,
  .schedule-table td { display: block !important; width: 100% !important; }
  .schedule-table tbody tr { margin: 0 0 14px; overflow: hidden; border: 1px solid rgba(8,81,124,.12); border-radius: 16px; background: rgba(255,255,255,.84); box-shadow: 0 12px 30px rgba(28,103,147,.07); }
  .schedule-table tbody th { padding: 16px 16px 12px !important; border-bottom: 1px solid rgba(8,81,124,.1); background: rgba(236,248,254,.86); white-space: normal !important; }
  .schedule-table tbody th strong { font-size: 13px !important; }
  .schedule-table tbody th span { display: block !important; font-size: 10px !important; }
  .schedule-table tbody td { display: flex !important; align-items: center; justify-content: space-between; gap: 12px; padding: 10px 16px !important; border-bottom: 1px solid rgba(8,81,124,.08); text-align: right; }
  .schedule-table tbody td::before { content: attr(data-label) !important; color: #5a7a8b; font-size: 11px; font-weight: 700; text-align: left; }
  .schedule-memo-list { margin-top: 8px; border: 1px solid rgba(8,81,124,.1); border-radius: 14px; background: rgba(255,255,255,.74); }
}


/* --- v1.1.0 final visual tuning --- */
:root { --ink: #435762; --ink-soft: #697d88; }
body { color: var(--ink); }
.section-heading h2, .care-intro h2, .inquiry-intro h2, .doctors h2, .visit h2, .modal-heading h2 { font-weight: 220 !important; }
.hero-copy h1 { font-weight: 150 !important; color: #f7fbff !important; }
.hero-copy h1 em { font-weight: 340 !important; color: #fff !important; }
.standard-copy h3, .care-copy h3, .doctor-name h3, .location-content h3 { font-weight: 280 !important; }
.care-intro .eyebrow, .inquiry-intro .eyebrow {
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: #5c98b5 !important;
  letter-spacing: .12em !important;
  font-weight: 520 !important;
}
.care-intro .eyebrow span, .inquiry-intro .eyebrow span { width: 28px !important; opacity: .5; }
.hero-particles-glow { background: radial-gradient(560px 560px at var(--px) var(--py), rgba(255,233,177,.18), rgba(187,233,254,.13) 42%, transparent 76%) !important; }
.notice-dock {
  overflow: hidden !important;
  background: rgba(232,246,252,.34) !important;
  border-color: rgba(255,255,255,.42) !important;
  box-shadow: 0 18px 44px rgba(31,86,116,.12), inset 0 1px 0 rgba(255,255,255,.44) !important;
  backdrop-filter: blur(22px) saturate(150%) !important;
  -webkit-backdrop-filter: blur(22px) saturate(150%) !important;
}
.notice-dock::before { display: none !important; }
.notice-dock::after { display: block !important; border-radius: inherit; background: linear-gradient(145deg, rgba(255,255,255,.28), rgba(255,255,255,.05)) !important; }
.notice-close {
  top: 14px !important; right: 14px !important; width: 34px !important; height: 34px !important;
  padding: 0 !important; display: grid !important; place-items: center !important;
  font-size: 20px !important; line-height: 1 !important; transform: none !important;
  color: #4d7588 !important; background: rgba(255,255,255,.58) !important;
}
.notice-content { padding: 31px 64px 28px 28px !important; }
.schedule-band h2 { color: #fff !important; font-weight: 260 !important; }
.schedule-band .schedule-preview p { color: rgba(255,255,255,.78) !important; }
.schedule-band .button--light { color: #176c96 !important; background: rgba(255,255,255,.95) !important; }
@media (max-width: 680px) {
  .notice-content { padding: 38px 54px 22px 22px !important; }
  .schedule-table tbody td::before { content: attr(data-label) !important; }
}

/* --- v1.0.9 final override: notice glass and thin titles --- */
.hero-copy h1 { color: #f7fbff !important; font-weight: 100 !important; }
.hero-copy h1 em { color: #fff !important; font-weight: 300 !important; }
.section-heading h2,
.care-intro h2,
.inquiry-intro h2,
.schedule-band h2,
.modal-heading h2,
.doctor-name h3,
.location-content h3,
.standard-copy h3,
.care-copy h3 { font-weight: 220 !important; }
.notice-dock {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  padding: 0 !important;
}
.notice-dock::before,
.notice-dock::after { display: none !important; }
.notice-content {
  position: relative !important;
  overflow: hidden !important;
  padding: 30px 70px 30px 30px !important;
  border: 1px solid rgba(191,223,237,.52) !important;
  border-radius: 18px !important;
  background: linear-gradient(145deg, rgba(237,246,251,.72), rgba(229,243,250,.78)) !important;
  box-shadow: 0 26px 56px rgba(67,111,137,.14) !important;
  backdrop-filter: blur(20px) saturate(130%) !important;
}
.notice-content::before {
  content: "";
  position: absolute;
  inset: -1px;
  pointer-events: none;
  background: radial-gradient(280px 280px at var(--mx) var(--my), rgba(255,232,176,.2), rgba(186,233,255,.13) 38%, transparent 72%);
  mix-blend-mode: screen;
}
.notice-content > * { position: relative; z-index: 1; }
.notice-close {
  top: 14px !important;
  right: 14px !important;
  width: 38px !important;
  height: 38px !important;
  z-index: 4 !important;
  display: grid !important;
  place-items: center !important;
  padding: 0 !important;
  color: #51758a !important;
  background: rgba(255,255,255,.56) !important;
  border: 1px solid rgba(112,160,184,.16) !important;
  line-height: 1 !important;
  font-size: 22px !important;
  transform: none !important;
}
@media (max-width: 680px) {
  .notice-content,
  .notice-dock.is-compact .notice-content { padding: 40px 22px 22px !important; }
  .notice-close { top: 10px !important; right: 10px !important; width: 36px !important; height: 36px !important; }
}


/* --- v1.0.10 refinements --- */
:root { --ink: #42545e; --ink-soft: #667882; }
body { color: var(--ink); }
h1, h2, h3, h4, h5, h6 { color: #40535e; }
.section-heading h2,
.care-intro h2,
.inquiry-intro h2,
.schedule-band h2,
.modal-heading h2,
.footer-brand p,
.editor-topline h1,
.editor-heading h2,
.publish-panel h2 {
  font-weight: 180 !important;
  letter-spacing: -.058em;
}
.hero-copy h1 {
  font-weight: 100 !important;
  letter-spacing: -.078em;
}
.hero-copy h1 span {
  font-weight: 100 !important;
}
.hero-copy h1 em {
  display: inline-block;
  font-weight: 280 !important;
  color: #f4fbff;
}
.standard-copy h3,
.care-copy h3,
.doctor-name h3,
.location-content h3,
.info-card h3 {
  font-weight: 220 !important;
}
.care-intro .eyebrow,
.inquiry-intro .eyebrow {
  display: inline-flex;
  padding: 8px 12px;
  border: 1px solid rgba(69,159,202,.18);
  border-radius: 999px;
  background: rgba(241,250,254,.62);
  color: #4386aa;
  font-size: 10px;
  font-weight: 450 !important;
  letter-spacing: .035em !important;
  text-transform: none;
}
.care-intro .eyebrow span,
.inquiry-intro .eyebrow span { width: 12px; opacity: .52; }
.care-tab em { text-transform: none; letter-spacing: .015em; }
.care-copy > p:first-child { letter-spacing: .03em; font-weight: 520; }

.hero-ambient { z-index: 1; pointer-events: none; }
.hero-grid { z-index: 3; pointer-events: none; }
.hero-grid a,
.hero-grid button,
.hero-grid input,
.hero-grid textarea,
.hero-grid select { pointer-events: auto; }
.hero-particles-glow {
  background: radial-gradient(500px 500px at var(--px) var(--py), rgba(255,233,177,.2), rgba(187,233,254,.14) 38%, transparent 74%) !important;
}
.hero.is-active .hero-particles-glow { opacity: 1 !important; }

.notice-dock {
  overflow: visible !important;
  background: rgba(233,248,253,.44) !important;
  border-color: rgba(255,255,255,.54) !important;
  box-shadow: 0 22px 48px rgba(37,95,126,.11), inset 0 1px 0 rgba(255,255,255,.38) !important;
  backdrop-filter: blur(20px) saturate(155%) !important;
  -webkit-backdrop-filter: blur(20px) saturate(155%) !important;
}
.notice-dock::before {
  inset: -30px !important;
  border-radius: 34px !important;
  background: radial-gradient(380px 380px at 58% 34%, rgba(255,235,184,.24), rgba(180,232,255,.14) 44%, transparent 74%) !important;
  opacity: 1 !important;
  pointer-events: none;
}
.notice-dock::after { display: none !important; }
.notice-close {
  position: absolute !important;
  top: 16px !important;
  right: 16px !important;
  width: 34px !important;
  height: 34px !important;
  display: grid !important;
  place-items: center !important;
  padding: 0 !important;
  line-height: 1 !important;
  transform: none !important;
  color: transparent !important;
  font-size: 0 !important;
  background: rgba(255,255,255,.56) !important;
  border: 1px solid rgba(77,126,151,.16) !important;
}
.notice-close::before,
.notice-close::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 1.5px;
  border-radius: 2px;
  background: #58798b;
}
.notice-close::before { transform: rotate(45deg); }
.notice-close::after { transform: rotate(-45deg); }
.notice-content { padding: 30px 66px 28px 28px !important; }
.notice-content p { font-weight: 520 !important; letter-spacing: .08em; }
.notice-content strong { font-weight: 360 !important; color: #3f5663; }
.notice-content > span { color: #60747f; }
.notice-content a { color: #306b89; font-weight: 480 !important; }

.schedule-band .button--light {
  color: #176c96 !important;
  background: rgba(255,255,255,.95) !important;
  border-color: rgba(255,255,255,.58) !important;
}
.schedule-band .button--light span { color: inherit !important; }

@media (max-width: 680px) {
  .notice-close { top: 11px !important; right: 11px !important; }
  .notice-content { padding: 38px 22px 22px !important; }
  .schedule-structured { overflow: visible !important; border: 0 !important; background: transparent !important; }
  .schedule-table { width: 100% !important; min-width: 0 !important; display: block !important; table-layout: auto !important; font-size: 12px !important; }
  .schedule-table caption,
  .schedule-table thead { display: none !important; }
  .schedule-table tbody,
  .schedule-table tr,
  .schedule-table th,
  .schedule-table td { display: block !important; width: 100% !important; }
  .schedule-table tbody tr { margin: 0 0 14px; overflow: hidden; border: 1px solid rgba(8,81,124,.12); border-radius: 16px; background: rgba(255,255,255,.84); box-shadow: 0 12px 30px rgba(28,103,147,.07); }
  .schedule-table tbody th { padding: 16px 16px 12px !important; border-bottom: 1px solid rgba(8,81,124,.1) !important; background: rgba(236,248,254,.84) !important; text-align: left !important; }
  .schedule-table tbody td { display: flex !important; align-items: center; justify-content: space-between; gap: 12px; min-height: 40px; padding: 10px 16px !important; border-bottom: 1px solid rgba(8,81,124,.08) !important; text-align: right !important; }
  .schedule-table tbody td::before { content: attr(data-label); color: #5a7a8b; font-size: 11px; font-weight: 650; text-align: left; }
  .schedule-table th:last-child,
  .schedule-table td:last-child { display: flex !important; }
  .modal-panel--schedule { width: calc(100vw - 20px); max-height: calc(100dvh - 20px); overflow-y: auto; padding: 24px 14px !important; }
}


/* --- v1.0.10 refinements: seamless hero, calendar schedule, mobile inquiry/tools --- */
.hero { isolation: isolate; }
.hero::before { mask-image: none !important; opacity: .42; }
.hero-texture {
  inset: 0 !important;
  opacity: .055 !important;
  mask-image: none !important;
  mix-blend-mode: soft-light;
  filter: blur(1.5px) saturate(.7);
}
.hero-balance { display: none !important; }
.hero-ambient { inset: 0; z-index: 1; }
.hero-grid { z-index: 3; }
.pointer-light { z-index: 2; }
.notice-dock { z-index: 6; pointer-events: none; }
.notice-content,
.notice-close { pointer-events: auto; }
.notice-content { background: linear-gradient(145deg, rgba(237,246,251,.62), rgba(229,243,250,.68)); }
.notice-content::before { background: radial-gradient(360px 360px at 64% 30%, rgba(255,232,176,.18), rgba(186,233,255,.12) 38%, transparent 72%); }

.schedule-structured { overflow: visible !important; border: 0 !important; border-radius: 0 !important; background: transparent !important; }
.schedule-calendar {
  overflow: hidden;
  border: 1px solid rgba(8,81,124,.13);
  border-radius: 20px;
  background: linear-gradient(180deg, #fbfdff, #f2f9fd);
}
.schedule-calendar-head,
.schedule-calendar-grid { display: grid; grid-template-columns: repeat(7, minmax(0, 1fr)); }
.schedule-calendar-head span { padding: 12px 8px; color: #4b8bad; background: rgba(230,247,254,.78); text-align: center; font-size: 11px; font-weight: 650; }
.schedule-day { min-height: 122px; padding: 12px 10px; border-top: 1px solid rgba(8,81,124,.09); border-left: 1px solid rgba(8,81,124,.07); background: rgba(255,255,255,.54); }
.schedule-day:nth-child(7n+1) { border-left: 0; }
.schedule-day.is-empty { background: rgba(241,247,250,.45); }
.schedule-day.is-weekend b { color: #9a7a76; }
.schedule-day b { display: block; margin-bottom: 9px; color: #3f6275; font-size: 15px; font-weight: 520; }
.schedule-doctors { display: grid; gap: 5px; }
.doctor-label { display: block; width: fit-content; max-width: 100%; padding: 4px 7px; border-radius: 999px; font-size: 10px; line-height: 1.25; white-space: normal; }
.doctor-label--choi { color: #18869b; background: rgba(80, 205, 219, .13); }
.doctor-label--on { color: #a9782b; background: rgba(255, 221, 166, .3); }
.doctor-label--closed { color: #bb6a76; background: rgba(246, 203, 212, .22); }
.doctor-label--memo { color: #6c7f8a; background: rgba(225, 235, 240, .9); }

.schedule-calendar-editor { margin-top: 20px; overflow: hidden; border: 1px solid var(--line); border-radius: 18px; background: #fff; }
.schedule-editor-head,
.schedule-editor-grid { display: grid; grid-template-columns: repeat(7, minmax(150px, 1fr)); }
.schedule-editor-head { min-width: 1050px; background: #eff9fe; }
.schedule-editor-head span { padding: 12px 8px; color: #477992; font-size: 12px; font-weight: 700; text-align: center; }
.schedule-editor-grid { min-width: 1050px; }
.schedule-day-editor { min-height: 230px; padding: 12px; border-top: 1px solid var(--line); border-left: 1px solid var(--line); background: #fbfdff; }
.schedule-day-editor.is-empty { background: #f3f8fb; }
.schedule-day-editor b { display: block; margin-bottom: 10px; color: #31566d; }
.schedule-day-editor label { display: grid; gap: 4px; margin-top: 8px; }
.schedule-day-editor label span { color: #688293; font-size: 10px; }
.schedule-day-editor select,
.schedule-day-editor input[type="text"] { width: 100%; border: 1px solid rgba(7,91,143,.14); border-radius: 8px; padding: 7px 8px; background: #fff; font-size: 12px; }
.schedule-day-editor .close-row { display: flex; align-items: center; gap: 6px; }
.schedule-day-editor .close-row input { accent-color: #0b8ec4; }

.consent--reservation { margin-top: 10px !important; padding: 13px 14px; border: 1px solid rgba(228,194,122,.28); border-radius: 14px; background: rgba(255,248,228,.66); }
.form-caution { display: none !important; }

@media (max-width: 720px) {
  .floating-tools {
    left: 14px !important;
    right: 14px !important;
    bottom: 14px !important;
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px !important;
    padding: 8px !important;
    border-radius: 24px !important;
    background: rgba(243,250,253,.45) !important;
    border: 1px solid rgba(255,255,255,.56) !important;
    box-shadow: 0 16px 38px rgba(29,91,124,.14) !important;
    backdrop-filter: blur(20px) saturate(160%) !important;
  }
  .floating-tools a {
    height: 58px !important;
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px !important;
    border-radius: 18px !important;
    color: #2c6786 !important;
    background: rgba(255,255,255,.38) !important;
    border: 1px solid rgba(255,255,255,.38) !important;
  }
  .floating-tools svg { width: 20px !important; height: 20px !important; }
  .floating-tools strong { font-size: 17px !important; line-height: 1 !important; }
  .floating-tools span { display: block !important; font-size: 11px !important; line-height: 1 !important; font-weight: 650 !important; }
  .schedule-calendar { overflow-x: auto; border-radius: 16px; }
  .schedule-calendar-head,
  .schedule-calendar-grid { min-width: 720px; }
  .schedule-day { min-height: 108px; padding: 10px 8px; }
  .doctor-label { font-size: 9px; padding: 4px 6px; }
  .schedule-calendar-editor { overflow-x: auto; }
  .inquiry-form { padding-bottom: 38px; }
}
