@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,300;0,400;0,700;0,900;1,400;1,700&display=swap');

:root {
  --navy-950: #292726;
  --navy-900: #3d3b3a;
  --navy-800: #514e4c;
  --teal-700: #006b2c;
  --teal-600: #008235;
  --mint-500: #16964c;
  --sky-300: #a9d9b9;
  --ink: #3d3b3a;
  --muted: #6f6b68;
  --line: #dedbd7;
  --paper: #f7f6f3;
  --white: #ffffff;
  --amber: #ffb44a;
  --danger: #a43c3c;
  --shadow-sm: 0 10px 30px rgba(61, 59, 58, .09);
  --shadow-lg: 0 30px 80px rgba(61, 59, 58, .16);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 34px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 112px; }
body {
  margin: 0;
  font-family: "Lato", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img, svg { max-width: 100%; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 9999;
  background: var(--white);
  color: var(--navy-900);
  padding: 12px 18px;
  border-radius: 10px;
  box-shadow: var(--shadow-sm);
}
.skip-link:focus { top: 16px; }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding: 110px 0; }
.section-sm { padding: 72px 0; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 16px;
  color: var(--teal-700);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 24px; height: 2px; background: var(--mint-500); border-radius: 2px; }
h1, h2, h3 { margin: 0; line-height: 1.08; letter-spacing: -.035em; color: var(--navy-900); }
h1 { font-size: clamp(3rem, 7vw, 6.4rem); max-width: 900px; }
h2 { font-size: clamp(2.15rem, 4.3vw, 4.25rem); }
h3 { font-size: clamp(1.28rem, 2vw, 1.65rem); }
p { margin: 0; }
.lead { font-size: clamp(1.08rem, 1.7vw, 1.3rem); color: var(--muted); max-width: 720px; }
.section-head { display: grid; grid-template-columns: 1.1fr .9fr; gap: 44px; align-items: end; margin-bottom: 52px; }
.section-head .lead { justify-self: end; }

.emergency-bar {
  background: var(--navy-950);
  color: #f2f0ed;
  font-size: .88rem;
  text-align: center;
  padding: 9px 20px;
}
.emergency-bar a { color: var(--sky-300); font-weight: 750; text-decoration: none; }
.emergency-bar a:hover { text-decoration: underline; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(219,231,236,.8);
}
.nav-wrap { height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.logo { display: flex; align-items: center; width: 230px; height: 56px; flex-shrink: 0; text-decoration: none; }
.logo img { display: block; width: 100%; height: 100%; object-fit: contain; }
.nav-links { display: flex; align-items: center; gap: 24px; }
.nav-links a { text-decoration: none; font-size: .95rem; font-weight: 650; color: #595654; white-space: nowrap; flex-shrink: 0; }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--teal-700); }
.nav-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.mobile-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: var(--white);
  color: var(--navy-900);
}
.mobile-toggle span { display: block; width: 20px; height: 2px; background: currentColor; margin: 4px auto; transition: .25s; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 0 21px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  font-size: .94rem;
  text-decoration: none;
  white-space: nowrap;
  transition: transform .2s, box-shadow .2s, background .2s, border-color .2s;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--navy-900); color: var(--white); box-shadow: 0 12px 28px rgba(61,59,58,.22); }
.btn-primary:hover { box-shadow: 0 16px 34px rgba(61,59,58,.3); }
.btn-teal { background: linear-gradient(135deg, var(--teal-600), var(--teal-700)); color: var(--white); box-shadow: 0 12px 28px rgba(0,130,53,.24); }
.btn-ghost { background: transparent; border-color: var(--line); color: var(--navy-900); }
.btn-light { background: var(--white); color: var(--navy-900); }
.btn svg { width: 18px; height: 18px; }

.hero {
  position: relative;
  overflow: hidden;
  padding: 95px 0 78px;
  background:
    radial-gradient(circle at 82% 12%, rgba(0,130,53,.12), transparent 24%),
    radial-gradient(circle at 72% 58%, rgba(61,59,58,.08), transparent 30%),
    linear-gradient(180deg, #fdfdfc 0%, #f5f4f1 100%);
}
.hero::before {
  content: "";
  position: absolute;
  width: 620px;
  height: 620px;
  right: -250px;
  top: -330px;
  border: 1px solid rgba(0,130,53,.15);
  border-radius: 50%;
  box-shadow: 0 0 0 80px rgba(0,130,53,.035), 0 0 0 160px rgba(0,130,53,.02);
}
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 66px; align-items: center; position: relative; }
.hero-copy h1 span { color: var(--teal-700); }
.hero-copy .lead { margin-top: 26px; max-width: 690px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.trust-row { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 40px; color: #625e5b; font-size: .9rem; font-weight: 650; }
.trust-row span { display: inline-flex; align-items: center; gap: 8px; }
.trust-row svg { width: 18px; height: 18px; color: var(--teal-600); }

.hero-visual { position: relative; min-height: 640px; }
.hero-card-main {
  position: absolute;
  inset: 88px 22px 84px 22px;
  border-radius: 38px;
  background: var(--navy-900);
  color: var(--white);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  padding: 34px;
}
.hero-card-main::before {
  content: "";
  position: absolute;
  inset: auto -80px -170px auto;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,130,53,.68), rgba(0,130,53,0) 68%);
}
.hero-card-top { display: flex; justify-content: space-between; align-items: center; position: relative; }
.hero-card-top .status { display: inline-flex; gap: 8px; align-items: center; font-size: .78rem; color: #d7eadc; }
.status-dot { width: 8px; height: 8px; background: #41bd73; border-radius: 50%; box-shadow: 0 0 0 5px rgba(0,130,53,.2); }
.hero-card-icon { width: 48px; height: 48px; border-radius: 15px; background: rgba(255,255,255,.08); display: grid; place-items: center; }
.hero-card-icon svg { width: 25px; height: 25px; }
.connection-map { position: relative; height: 250px; margin-top: 26px; }
.node {
  position: absolute;
  width: 86px;
  height: 86px;
  border-radius: 25px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(10px);
}
.node svg { width: 32px; height: 32px; }
.node.a { left: 3%; top: 30%; }
.node.b { right: 3%; top: 1%; }
.node.c { right: 5%; bottom: 0; }
.node.center { width: 114px; height: 114px; left: 50%; top: 50%; transform: translate(-50%,-50%); background: linear-gradient(135deg, #008235, #59b87d); color: var(--white); border: 0; box-shadow: 0 20px 60px rgba(0,130,53,.3); }
.node.center svg { width: 44px; height: 44px; }
.connection-map .line { position: absolute; height: 2px; background: linear-gradient(90deg, rgba(89,184,125,.1), rgba(89,184,125,.9), rgba(89,184,125,.1)); transform-origin: left center; }
.line.l1 { width: 160px; left: 21%; top: 54%; transform: rotate(-7deg); }
.line.l2 { width: 145px; left: 54%; top: 41%; transform: rotate(-27deg); }
.line.l3 { width: 145px; left: 55%; top: 61%; transform: rotate(24deg); }
.hero-card-bottom { position: relative; display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; }
.hero-card-bottom strong { display: block; font-size: 1.05rem; }
.hero-card-bottom small { color: #d0cdca; }
.mini-stat { text-align: right; }
.mini-stat b { display: block; font-size: 2rem; color: var(--mint-500); line-height: 1; }
.float-card {
  position: absolute;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 13px;
  color: var(--navy-900);
}
.float-card svg { width: 24px; height: 24px; color: var(--teal-600); }
.float-card b { display: block; font-size: .95rem; }
.float-card small { display: block; color: var(--muted); }
.float-card.one { left: 0; bottom: 0; }
.float-card.two { right: 0; top: 0; }

.intro-strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--white); }
.intro-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.intro-item { padding: 27px 32px; border-right: 1px solid var(--line); }
.intro-item:last-child { border-right: 0; }
.intro-item strong { display: block; color: var(--navy-900); margin-bottom: 3px; }
.intro-item span { color: var(--muted); font-size: .92rem; }

.services { background: var(--white); }
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.service-card {
  position: relative;
  min-height: 360px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  overflow: hidden;
  transition: .25s ease;
}
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-sm); border-color: #c7dce4; }
.service-card.featured { background: var(--navy-900); color: #ebe8e5; border-color: var(--navy-900); }
.service-card.featured h3 { color: var(--white); }
.service-icon { width: 58px; height: 58px; border-radius: 18px; display: grid; place-items: center; background: #e5f3e9; color: var(--teal-700); margin-bottom: 40px; }
.featured .service-icon { background: rgba(56,214,181,.14); color: var(--mint-500); }
.service-icon svg { width: 28px; height: 28px; }
.service-card p { margin-top: 16px; color: var(--muted); }
.service-card.featured p { color: #a9c0cc; }
.card-link { position: absolute; bottom: 28px; left: 30px; right: 30px; display: flex; align-items: center; justify-content: space-between; color: var(--teal-700); text-decoration: none; font-weight: 800; }
.featured .card-link { color: var(--mint-500); }
.badge { display: inline-flex; padding: 6px 10px; border-radius: 999px; background: #fff4df; color: #8d5b09; font-size: .72rem; font-weight: 850; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 18px; }

.mission { background: var(--paper); }
.mission-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 70px; align-items: center; }
.mission-art { position: relative; height: 530px; border-radius: var(--radius-lg); overflow: hidden; background: linear-gradient(145deg, #e4f3e8, #f0efec); }
.mission-art::before { content: ""; position: absolute; width: 330px; height: 330px; border-radius: 50%; border: 1px solid rgba(20,123,120,.2); left: -80px; top: -80px; box-shadow: 0 0 0 70px rgba(20,123,120,.04), 0 0 0 140px rgba(20,123,120,.025); }
.mission-phone { position: absolute; width: 250px; height: 430px; border-radius: 38px; background: var(--navy-900); left: 50%; top: 50%; transform: translate(-50%,-50%) rotate(-5deg); border: 8px solid #fff; box-shadow: var(--shadow-lg); padding: 34px 20px; color: var(--white); }
.phone-pill { width: 78px; height: 9px; border-radius: 999px; background: rgba(255,255,255,.16); margin: 0 auto 30px; }
.video-block { height: 175px; border-radius: 24px; background: linear-gradient(145deg, rgba(56,214,181,.3), rgba(124,227,255,.14)); display: grid; place-items: center; }
.play { width: 58px; height: 58px; border-radius: 50%; background: var(--white); color: var(--teal-700); display: grid; place-items: center; box-shadow: 0 12px 30px rgba(0,0,0,.2); }
.play svg { width: 24px; height: 24px; margin-left: 3px; }
.video-lines { margin-top: 22px; display: grid; gap: 10px; }
.video-lines span { height: 9px; border-radius: 99px; background: rgba(255,255,255,.13); }
.video-lines span:nth-child(2) { width: 74%; }
.mission-note { position: absolute; right: 24px; bottom: 28px; width: 190px; border-radius: 20px; background: var(--white); padding: 18px; box-shadow: var(--shadow-sm); }
.mission-note b { display: block; color: var(--navy-900); }
.mission-note span { color: var(--muted); font-size: .84rem; }
.mission-copy .lead { margin: 22px 0 30px; }
.check-list { display: grid; gap: 17px; margin: 0 0 34px; padding: 0; list-style: none; }
.check-list li { display: grid; grid-template-columns: 28px 1fr; gap: 12px; align-items: start; }
.check-list svg { width: 24px; height: 24px; color: var(--teal-600); }
.check-list strong { color: var(--navy-900); display: block; }
.check-list span { color: var(--muted); font-size: .95rem; }

.consultation { background: var(--navy-900); color: #d7e5ea; overflow: hidden; position: relative; }
.consultation::before { content: ""; position: absolute; width: 550px; height: 550px; right: -160px; top: -240px; background: radial-gradient(circle, rgba(56,214,181,.2), transparent 68%); border-radius: 50%; }
.consultation h2 { color: var(--white); }
.consultation .eyebrow { color: var(--mint-500); }
.consultation-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 76px; align-items: start; position: relative; }
.consultation-copy .lead { color: #abc0ca; margin: 22px 0 30px; }
.notice-box { border: 1px solid rgba(255,255,255,.12); background: rgba(255,255,255,.05); border-radius: 18px; padding: 18px; color: #c7d7de; font-size: .9rem; }
.steps { counter-reset: step; display: grid; gap: 14px; }
.step { counter-increment: step; display: grid; grid-template-columns: 58px 1fr; gap: 20px; padding: 24px; border: 1px solid rgba(255,255,255,.11); background: rgba(255,255,255,.04); border-radius: 20px; }
.step::before { content: counter(step, decimal-leading-zero); width: 58px; height: 58px; border-radius: 18px; display: grid; place-items: center; background: rgba(56,214,181,.14); color: var(--mint-500); font-weight: 900; }
.step h3 { color: var(--white); font-size: 1.2rem; letter-spacing: -.02em; margin-bottom: 7px; }
.step p { color: #a9c0cc; font-size: .94rem; }

.medicines-preview { background: var(--white); }
.medicine-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.medicine-chip { padding: 22px; border: 1px solid var(--line); border-radius: 18px; background: linear-gradient(180deg, #fff, #fbfdfd); text-decoration: none; transition: .2s; }
.medicine-chip:hover { transform: translateY(-3px); border-color: #b7d5dc; box-shadow: var(--shadow-sm); }
.medicine-chip span { display: block; color: var(--muted); font-size: .82rem; margin-top: 5px; }

.newsletter { background: var(--paper); }
.newsletter-box { display: grid; grid-template-columns: 1fr .82fr; gap: 52px; align-items: center; padding: 58px; border-radius: var(--radius-lg); background: linear-gradient(135deg, #e3f2e7, #f2f0ed); border: 1px solid #d4e4d8; }
.newsletter-copy .lead { margin-top: 20px; }
.newsletter-form { display: grid; gap: 12px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.field { display: grid; gap: 7px; }
.field label { font-size: .82rem; font-weight: 800; color: var(--navy-900); }
.field input, .field textarea, .field select { width: 100%; border: 1px solid #cbdde2; background: rgba(255,255,255,.86); color: var(--ink); border-radius: 13px; padding: 14px 15px; outline: none; }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--teal-600); box-shadow: 0 0 0 4px rgba(21,155,145,.11); }
.field textarea { min-height: 145px; resize: vertical; }
.check-field { display: grid; grid-template-columns: 18px 1fr; gap: 10px; font-size: .82rem; color: var(--muted); align-items: start; }
.check-field input { margin-top: 4px; }
.form-note { font-size: .78rem; color: var(--muted); }

.contact { background: var(--white); }
.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 70px; align-items: start; }
.contact-copy .lead { margin: 20px 0 32px; }
.contact-details { display: grid; gap: 14px; }
.contact-item { display: grid; grid-template-columns: 46px 1fr; gap: 14px; align-items: center; }
.contact-item .icon { width: 46px; height: 46px; border-radius: 14px; background: #e5f3e9; color: var(--teal-700); display: grid; place-items: center; }
.contact-item svg { width: 21px; height: 21px; }
.contact-item small { color: var(--muted); display: block; }
.contact-item a { color: var(--navy-900); font-weight: 750; text-decoration: none; }
.contact-form { padding: 34px; border: 1px solid var(--line); border-radius: var(--radius-md); box-shadow: var(--shadow-sm); background: var(--white); display: grid; gap: 17px; }

.faq { background: var(--paper); }
.faq-list { max-width: 860px; margin: 0 auto; display: grid; gap: 12px; }
.faq-item { border: 1px solid var(--line); background: var(--white); border-radius: 16px; overflow: hidden; }
.faq-question { width: 100%; display: flex; justify-content: space-between; gap: 20px; align-items: center; border: 0; background: transparent; padding: 21px 22px; color: var(--navy-900); font-weight: 800; text-align: left; }
.faq-question svg { width: 20px; height: 20px; transition: transform .2s; flex-shrink: 0; }
.faq-question[aria-expanded="true"] svg { transform: rotate(45deg); }
.faq-answer { display: none; padding: 0 22px 22px; color: var(--muted); }
.faq-answer.open { display: block; }

.cta-band { background: var(--white); }
.cta-inner { padding: 55px; border-radius: var(--radius-lg); background: var(--navy-900); color: var(--white); display: flex; align-items: center; justify-content: space-between; gap: 38px; position: relative; overflow: hidden; }
.cta-inner::after { content: ""; position: absolute; width: 280px; height: 280px; right: -80px; top: -120px; border-radius: 50%; background: rgba(56,214,181,.13); }
.cta-inner h2 { color: var(--white); font-size: clamp(2rem, 4vw, 3.5rem); max-width: 680px; position: relative; z-index: 1; }
.cta-inner .btn { position: relative; z-index: 1; flex-shrink: 0; }

.site-footer { background: var(--navy-950); color: #a9c0ca; padding: 70px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.25fr .7fr .7fr 1fr; gap: 56px; padding-bottom: 48px; }
.footer-logo { width: 92px; padding: 9px; border-radius: 18px; background: var(--white); }
.footer-about { margin-top: 18px; max-width: 360px; font-size: .92rem; }
.footer-title { color: var(--white); font-weight: 800; margin-bottom: 15px; }
.footer-links { display: grid; gap: 10px; }
.footer-links a { color: #a9c0ca; text-decoration: none; font-size: .9rem; }
.footer-links a:hover { color: var(--white); }
.socials { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 20px; }
.socials a { width: 38px; height: 38px; border-radius: 11px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.13); color: var(--white); text-decoration: none; }
.socials a:hover { background: rgba(255,255,255,.08); }
.socials svg { width: 18px; height: 18px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 24px; display: flex; justify-content: space-between; gap: 24px; font-size: .78rem; }
.footer-disclaimer { max-width: 820px; }

.page-hero { padding: 82px 0 66px; background: linear-gradient(180deg, #faf9f7, #eef5f0); border-bottom: 1px solid var(--line); }
.page-hero h1 { font-size: clamp(2.8rem, 6vw, 5.3rem); }
.page-hero .lead { margin-top: 20px; }
.breadcrumb { display: flex; gap: 8px; align-items: center; color: var(--muted); font-size: .84rem; margin-bottom: 24px; }
.breadcrumb a { color: var(--teal-700); text-decoration: none; }

.medicine-page { background: var(--paper); }
.search-panel { display: grid; grid-template-columns: 1fr auto; gap: 12px; margin-bottom: 32px; }
.search-box { position: relative; }
.search-box svg { position: absolute; left: 16px; top: 50%; transform: translateY(-50%); width: 20px; height: 20px; color: var(--muted); }
.search-box input { width: 100%; border: 1px solid var(--line); border-radius: 14px; padding: 15px 16px 15px 47px; background: var(--white); outline: none; }
.search-box input:focus { border-color: var(--teal-600); box-shadow: 0 0 0 4px rgba(21,155,145,.1); }
.filter-select { border: 1px solid var(--line); border-radius: 14px; padding: 0 40px 0 16px; background: var(--white); color: var(--ink); }
.medicine-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.medicine-card { background: var(--white); border: 1px solid var(--line); border-radius: 20px; padding: 28px; display: flex; flex-direction: column; gap: 18px; }
.medicine-card[hidden] { display: none !important; }
.medicine-card-top { display: flex; justify-content: space-between; gap: 18px; align-items: start; }
.medicine-type { color: var(--teal-700); background: #e5f3e9; padding: 6px 10px; border-radius: 999px; font-size: .72rem; font-weight: 850; white-space: nowrap; }
.medicine-card p { color: var(--muted); }
.medicine-warning { border-left: 3px solid var(--amber); padding-left: 14px; font-size: .9rem; color: #5d4a25; }
.medicine-card-footer { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding-top: 4px; }
.official-link { color: var(--teal-700); font-weight: 800; text-decoration: none; display: inline-flex; align-items: center; gap: 7px; }
.official-link:hover { text-decoration: underline; }
.official-link svg { width: 17px; height: 17px; }
.review-date { color: var(--muted); font-size: .76rem; }
.no-results { display: none; grid-column: 1/-1; padding: 42px; border: 1px dashed #bfd2d9; border-radius: 18px; text-align: center; color: var(--muted); background: var(--white); }

.legal-content { max-width: 850px; margin: 0 auto; }
.legal-content h2 { font-size: 2rem; margin-top: 46px; margin-bottom: 14px; }
.legal-content h3 { font-size: 1.2rem; margin-top: 28px; margin-bottom: 10px; }
.legal-content p, .legal-content li { color: var(--muted); }
.legal-content ul { padding-left: 22px; }
.legal-callout { margin: 28px 0; padding: 20px; border-radius: 16px; background: #fff8e9; border: 1px solid #f1dfb9; color: #6a5225; }

.cookie-banner { position: fixed; z-index: 2000; left: 18px; right: 18px; bottom: 18px; max-width: 940px; margin: 0 auto; background: var(--white); border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow-lg); padding: 18px; display: none; align-items: center; justify-content: space-between; gap: 20px; }
.cookie-banner.show { display: flex; }
.cookie-banner p { color: var(--muted); font-size: .86rem; }
.cookie-banner strong { color: var(--navy-900); }
.cookie-actions { display: flex; gap: 8px; flex-shrink: 0; }
.cookie-actions .btn { min-height: 42px; padding: 0 16px; font-size: .82rem; }

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

@media (max-width: 1040px) {
  .nav-links { display: none; position: fixed; inset: 112px 20px auto; background: var(--white); border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow-lg); padding: 22px; flex-direction: column; align-items: stretch; gap: 4px; }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px; border-radius: 10px; }
  .nav-links a:hover { background: var(--paper); }
  .mobile-toggle { display: block; }
  .nav-actions .btn-ghost { display: none; }
  .hero-grid, .mission-grid, .consultation-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 800px; }
  .hero-visual { max-width: 650px; width: 100%; margin: 0 auto; }
  .mission-art { min-height: 500px; }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card:last-child { grid-column: 1/-1; }
  .medicine-grid { grid-template-columns: repeat(2, 1fr); }
  .newsletter-box { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1.2fr 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: 1/-1; }
}

@media (max-width: 760px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 78px 0; }
  .section-head { grid-template-columns: 1fr; gap: 18px; margin-bottom: 34px; }
  .section-head .lead { justify-self: start; }
  .emergency-bar { font-size: .78rem; }
  .nav-wrap { height: 72px; }
  .logo { width: 190px; height: 46px; }
  .nav-links { inset: 102px 14px auto; }
  .nav-actions > .btn { display: none; }
  .hero { padding: 70px 0 50px; }
  .hero-grid { gap: 42px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
  .trust-row { gap: 14px; flex-direction: column; }
  .hero-visual { min-height: 560px; }
  .hero-card-main { inset: 84px 0 84px 0; padding: 22px; border-radius: 28px; }
  .connection-map { height: 205px; margin-top: 18px; }
  .node { width: 70px; height: 70px; border-radius: 21px; }
  .node.center { width: 94px; height: 94px; }
  .line.l1 { width: 120px; }
  .line.l2, .line.l3 { width: 110px; }
  .float-card.two { right: 0; top: 0; }
  .float-card.one { left: 0; bottom: 0; }
  .float-card { padding: 12px; }
  .intro-grid { grid-template-columns: 1fr; }
  .intro-item { border-right: 0; border-bottom: 1px solid var(--line); padding: 20px 0; }
  .intro-item:last-child { border-bottom: 0; }
  .card-grid, .medicine-cards { grid-template-columns: 1fr; }
  .service-card:last-child { grid-column: auto; }
  .service-card { min-height: 330px; }
  .mission-art { height: 450px; }
  .mission-phone { width: 225px; height: 390px; }
  .mission-note { width: 160px; right: 12px; bottom: 15px; }
  .consultation-grid { gap: 42px; }
  .step { grid-template-columns: 48px 1fr; padding: 18px; gap: 14px; }
  .step::before { width: 48px; height: 48px; border-radius: 14px; }
  .medicine-grid { grid-template-columns: 1fr; }
  .newsletter-box { padding: 30px 22px; }
  .field-row { grid-template-columns: 1fr; }
  .contact-grid { gap: 40px; }
  .contact-form { padding: 24px 18px; }
  .cta-inner { padding: 38px 25px; flex-direction: column; align-items: flex-start; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 38px; }
  .footer-grid > div:first-child, .footer-grid > div:last-child { grid-column: 1/-1; }
  .footer-bottom { flex-direction: column; }
  .search-panel { grid-template-columns: 1fr; }
  .filter-select { min-height: 50px; }
  .medicine-card-footer { align-items: flex-start; flex-direction: column; }
  .cookie-banner { align-items: stretch; flex-direction: column; }
  .cookie-actions { width: 100%; }
  .cookie-actions .btn { flex: 1; }
}

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