/* ============================================================
   drvigneshwar.in — Dr. Vigneshwar T, Surgical Oncologist
   Calm, warm, editorial. Fraunces (headings) + Inter (body).
   ============================================================ */

:root {
  --paper: #ffffff;
  --paper-2: #f5f7f6;
  --field: #f6f8f7;
  --card: #ffffff;
  --ink: #20303a;
  --body: #4a5963;
  --muted: #6e7d86;
  --faint: #93a0a8;
  --line: #e5e8e6;
  --line-strong: #d3dad6;

  --teal: #0e6f66;
  --teal-deep: #0a544e;
  --teal-ink: #0b3f3b;
  --teal-050: #edf5f2;
  --teal-100: #dcebe6;

  --amber: #a96e1d;
  --amber-deep: #8a5a17;
  --amber-bg: #fbf3e2;
  --amber-line: #ecd9b4;

  --green: #1e8e5a;

  --ring: 0 0 0 3px rgba(14, 111, 102, 0.22);
  --shadow-soft: 0 18px 44px -30px rgba(32, 48, 58, 0.35);
  --shadow-card: 0 1px 2px rgba(32, 48, 58, 0.05);
  --radius: 18px;

  --font-head: "Lexend", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-body: "Lexend", system-ui, -apple-system, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--body);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }

a { color: var(--teal); text-decoration: none; }
a:hover { color: var(--teal-deep); }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0;
}

p { margin: 0 0 1em; }

::selection { background: var(--teal); color: #fff; }

:focus-visible {
  outline: none;
  box-shadow: var(--ring);
  border-radius: 8px;
}

.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--teal);
  color: #fff;
  padding: 10px 18px;
  border-radius: 0 0 10px 0;
  z-index: 100;
  font-weight: 600;
}
.skip:focus { left: 0; color: #fff; }

/* ---------- layout helpers ---------- */

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 28px;
}

.section { padding: 76px 0; scroll-margin-top: 86px; }
.section--alt { background: var(--paper-2); }

.eyebrow {
  display: inline-block;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 14px;
}

.h2 {
  font-size: clamp(24px, 3.2vw, 34px);
  line-height: 1.22;
  margin-bottom: 14px;
}

.sub {
  font-size: 16px;
  line-height: 1.75;
  color: var(--muted);
  max-width: 640px;
}

.center { text-align: center; }
.center .sub { margin-inline: auto; }

/* ---------- buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  border-radius: 14px;
  padding: 15px 26px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color 0.2s, border-color 0.2s, box-shadow 0.2s, transform 0.15s;
}
.btn svg { flex: none; }

.btn--primary {
  background: var(--teal);
  color: #fff;
  box-shadow: 0 12px 26px -14px rgba(14, 111, 102, 0.65);
}
.btn--primary:hover { background: var(--teal-deep); color: #fff; }
.btn--primary:active { transform: translateY(1px); }

.btn--ghost {
  background: var(--card);
  color: var(--ink);
  border-color: var(--line-strong);
}
.btn--ghost:hover { border-color: var(--teal); color: var(--teal-deep); box-shadow: var(--shadow-card); }

/* ---------- header ---------- */

.site-head {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.site-head__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 13px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: inherit;
}
.brand:hover { color: inherit; }

.brand__mark {
  width: 42px;
  height: 42px;
  flex: none;
  border-radius: 13px;
  background: var(--teal);
  color: #fdfbf5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 21px;
  font-weight: 600;
}

.brand__name {
  font-family: var(--font-head);
  font-size: 17.5px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.15;
}

.brand__role {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 14.5px;
  font-weight: 600;
}
.nav a { color: var(--body); }
.nav a:hover { color: var(--teal); }

.nav__call {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--teal);
  color: #fff !important;
  padding: 11px 19px;
  border-radius: 12px;
  box-shadow: 0 10px 22px -12px rgba(14, 111, 102, 0.7);
}
.nav__call:hover { background: var(--teal-deep); }

.menu-btn {
  display: none;
  background: var(--card);
  border: 1px solid var(--line-strong);
  border-radius: 11px;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  cursor: pointer;
}

/* ---------- hero ---------- */

.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.hero::before {
  top: -220px;
  right: -160px;
  width: 640px;
  height: 640px;
  background: radial-gradient(circle, rgba(14, 111, 102, 0.09), transparent 62%);
}
.hero::after {
  bottom: -200px;
  left: -160px;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(169, 110, 29, 0.08), transparent 62%);
}

.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  gap: 56px;
  align-items: center;
  padding: 64px 0 56px;
}

.hero h1 {
  font-size: clamp(28px, 3.9vw, 42px);
  line-height: 1.18;
  margin-bottom: 18px;
  max-width: 15em;
}
.hero h1 .accent {
  font-style: normal;
  font-weight: 700;
  color: var(--teal);
}

.hero__lead {
  font-size: 17px;
  line-height: 1.75;
  color: var(--body);
  max-width: 560px;
  margin-bottom: 14px;
}

.hero__creds {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.01em;
  margin-bottom: 30px;
}

.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

/* portrait */

.portrait { position: relative; max-width: 430px; margin-left: auto; }

.portrait__bg {
  position: absolute;
  inset: 26px -18px -18px 26px;
  background: var(--teal-100);
  border-radius: 220px 220px 28px 28px;
}

.portrait__frame {
  position: relative;
  border-radius: 220px 220px 26px 26px;
  overflow: hidden;
  border: 6px solid #fff;
  box-shadow: 0 30px 70px -34px rgba(32, 48, 58, 0.45);
}
.portrait__frame img {
  width: 100%;
  aspect-ratio: 4 / 4.6;
  object-fit: cover;
  object-position: top center;
}

.portrait__caption {
  position: absolute;
  left: -14px;
  bottom: 26px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px 18px;
  box-shadow: var(--shadow-soft);
  line-height: 1.3;
}
.portrait__caption strong {
  display: block;
  font-family: var(--font-head);
  font-size: 16px;
  color: var(--ink);
}
.portrait__caption span { font-size: 12.5px; font-weight: 600; color: var(--muted); }

.portrait__badge {
  position: absolute;
  top: 34px;
  right: -12px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 10px 15px;
  box-shadow: var(--shadow-soft);
  line-height: 1.25;
}
.portrait__badge .ico {
  width: 34px;
  height: 34px;
  flex: none;
  border-radius: 10px;
  background: var(--teal-050);
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
}
.portrait__badge strong { display: block; font-size: 13.5px; color: var(--ink); }
.portrait__badge span { font-size: 11.5px; font-weight: 600; color: var(--muted); }

/* trust row */

.trust {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  padding-bottom: 56px;
}

.trust__item {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px 20px;
  box-shadow: var(--shadow-card);
}
.trust__item strong {
  display: block;
  font-family: var(--font-head);
  font-size: 19px;
  font-weight: 600;
  color: var(--teal-deep);
  line-height: 1.25;
}
.trust__item span {
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  line-height: 1.45;
  display: block;
  margin-top: 4px;
}

/* ---------- about ---------- */

.about__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
  align-items: start;
}

.about__copy p { font-size: 16px; line-height: 1.8; margin-bottom: 18px; }

.chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 10px; }
.chip {
  background: var(--teal-050);
  color: var(--teal-deep);
  border: 1px solid var(--teal-100);
  padding: 8px 15px;
  border-radius: 100px;
  font-size: 13.5px;
  font-weight: 600;
}

/* ---------- specialist expertise ---------- */

.spec-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 42px;
}

.spec-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow-card);
}
.spec-card .ico {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--teal-050);
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.spec-card h3 { font-size: 16.5px; margin-bottom: 6px; }
.spec-card p { font-size: 14.5px; line-height: 1.7; color: var(--muted); margin: 0; }

/* ---------- oncology treatments ---------- */

.treat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 42px;
}

.treat-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow-card);
}
.treat-card h3 {
  font-size: 15.5px;
  margin-bottom: 7px;
  display: flex;
  gap: 9px;
  align-items: flex-start;
  line-height: 1.4;
}
.treat-card h3::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  flex: none;
  margin-top: 7px;
}
.treat-card p { font-size: 14px; line-height: 1.7; color: var(--muted); margin: 0; }

/* ---------- expertise accordion ---------- */

.acc-list { display: flex; flex-direction: column; gap: 14px; margin-top: 42px; }

.acc {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.acc.open {
  border-color: rgba(14, 111, 102, 0.4);
  box-shadow: 0 24px 54px -38px rgba(32, 48, 58, 0.45);
}

.acc-h { margin: 0; }

.acc-btn {
  display: flex;
  align-items: center;
  gap: 18px;
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 21px 24px;
  cursor: pointer;
  font-family: inherit;
}

.acc-ico {
  flex: none;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--teal-050);
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.25s, color 0.25s;
}
.acc.open .acc-ico { background: var(--teal); color: #fff; }

.acc-t { flex: 1; min-width: 0; }
.acc-title {
  display: block;
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.3;
}
.acc-sub {
  display: block;
  font-size: 14px;
  color: var(--muted);
  margin-top: 3px;
  font-weight: 500;
}

.acc-chev {
  flex: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--teal-050);
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
}
.acc-chev svg { transition: transform 0.25s; }
.acc.open .acc-chev svg { transform: rotate(180deg); }

.acc-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}
.acc.open .acc-panel { grid-template-rows: 1fr; }
.acc-panel > .acc-inner { overflow: hidden; min-height: 0; }

.acc-inner__pad {
  margin: 0 24px 26px 94px;
  border-top: 1px solid var(--line);
  padding-top: 20px;
}

.lab {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  margin: 0 0 12px;
}
.lab--warn { color: var(--amber); }
.lab--proc { color: var(--teal); margin-top: 24px; }

.signs-chips {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}
.signs-chips li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--amber-bg);
  color: var(--amber-deep);
  border: 1px solid var(--amber-line);
  padding: 8px 13px;
  border-radius: 10px;
  font-size: 13.5px;
  font-weight: 500;
}
.signs-chips svg { flex: none; }

.procs {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 34px;
}
.procs li {
  display: flex;
  gap: 10px;
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--body);
}
.procs svg { flex: none; margin-top: 3px; color: var(--green); }

/* ---------- conditions ---------- */

.cond-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 16px;
  margin-top: 42px;
}

.cond-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 22px 20px;
  box-shadow: var(--shadow-card);
}
.cond-card h3 {
  font-size: 17.5px;
  font-weight: 600;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 9px;
}
.cond-card h3::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  flex: none;
}
.cond-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.cond-card li {
  background: var(--field);
  border: 1px solid var(--line);
  color: var(--body);
  font-size: 13px;
  font-weight: 500;
  padding: 6px 11px;
  border-radius: 100px;
  line-height: 1.4;
}

/* ---------- early detection banner ---------- */

.signs-band {
  background: linear-gradient(150deg, var(--teal-deep), var(--teal-ink));
  border-radius: 28px;
  padding: 54px 50px;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.signs-band::before {
  content: "";
  position: absolute;
  right: -80px;
  top: -80px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
}
.signs-band::after {
  content: "";
  position: absolute;
  right: 110px;
  bottom: -120px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(169, 110, 29, 0.22);
}
.signs-band__inner { position: relative; max-width: 800px; }

.signs-band h2 {
  color: #fff;
  font-size: clamp(22px, 2.9vw, 30px);
  line-height: 1.25;
  margin-bottom: 14px;
}
.signs-band > .signs-band__inner > p {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 30px;
  max-width: 680px;
}

.signs-band__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 13px;
  margin-bottom: 30px;
}
.signs-band__tile {
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  padding: 15px 17px;
  font-size: 14.5px;
  font-weight: 500;
  line-height: 1.45;
}

.signs-band__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: var(--teal-ink);
  font-weight: 600;
  font-size: 15.5px;
  padding: 14px 24px;
  border-radius: 13px;
}
.signs-band__cta:hover { color: var(--teal-deep); }

/* ---------- first visit steps ---------- */

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 42px;
}
.step {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 22px;
  box-shadow: var(--shadow-card);
}
.step__num {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--teal-050);
  color: var(--teal-deep);
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.step h3 { font-size: 16.5px; margin-bottom: 8px; }
.step p { font-size: 14.5px; line-height: 1.7; color: var(--muted); margin: 0; }

/* localities band */

.localities {
  margin-top: 56px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 34px;
}
.localities h3 { font-size: 18px; margin-bottom: 10px; line-height: 1.4; }
.localities p { font-size: 15px; line-height: 1.75; color: var(--muted); max-width: 760px; }
.localities .chips { margin-top: 16px; }
.localities .chip { background: var(--field); border-color: var(--line); color: var(--body); }

/* ---------- FAQ ---------- */

.faq-list { max-width: 820px; margin: 42px auto 0; display: flex; flex-direction: column; gap: 12px; }

.qa {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.qa[open] {
  border-color: rgba(14, 111, 102, 0.35);
  box-shadow: 0 18px 40px -32px rgba(32, 48, 58, 0.4);
}

.qa summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  cursor: pointer;
  padding: 18px 22px;
  font-family: var(--font-head);
  font-size: 16.5px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.45;
}
.qa summary::-webkit-details-marker { display: none; }

.qa__x {
  flex: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--teal-050);
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s, background-color 0.25s, color 0.25s;
}
.qa[open] .qa__x { transform: rotate(45deg); background: var(--teal); color: #fff; }

.qa__a { padding: 0 22px 20px; }
.qa__a p { font-size: 15px; line-height: 1.8; color: var(--body); margin: 0; }

/* ---------- book / contact ---------- */

.book__grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 48px;
  align-items: start;
}

.form-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 28px;
  box-shadow: var(--shadow-soft);
}

.field { display: block; margin-bottom: 16px; }
.field > span {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 7px;
}
.field .opt { color: var(--faint); font-weight: 400; }

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 13px 15px;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  font-size: 15px;
  font-family: inherit;
  color: var(--ink);
  background: var(--field);
  transition: border-color 0.2s, background-color 0.2s, box-shadow 0.2s;
}
.field textarea { resize: vertical; min-height: 88px; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--teal);
  background: #fff;
  box-shadow: var(--ring);
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.form-note {
  font-size: 12.5px;
  color: var(--faint);
  text-align: center;
  margin: 14px 0 0;
  line-height: 1.55;
}

#formStatus { margin-top: 12px; font-size: 14px; font-weight: 500; }
#formStatus.err { color: #b3491f; }

.form-success {
  background: linear-gradient(160deg, #eef8f0, var(--teal-050));
  border: 1px solid rgba(30, 142, 90, 0.35);
  border-radius: 20px;
  padding: 36px;
  text-align: center;
}
.form-success__badge {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  box-shadow: 0 14px 30px -14px rgba(30, 142, 90, 0.7);
}
.form-success h3 { font-size: 20px; margin-bottom: 8px; }
.form-success p { font-size: 15.5px; line-height: 1.6; }

.submit-btn {
  width: 100%;
  padding: 16px;
  border-radius: 13px;
  border: none;
  font-family: inherit;
  font-weight: 600;
  font-size: 15.5px;
  cursor: pointer;
  background: var(--teal);
  color: #fff;
  box-shadow: 0 14px 30px -16px rgba(14, 111, 102, 0.8);
  transition: background-color 0.2s, opacity 0.2s;
}
.submit-btn:hover { background: var(--teal-deep); }
.submit-btn:disabled {
  background: #c6cfc9;
  color: #fff;
  cursor: not-allowed;
  box-shadow: none;
}

/* hospital card */

.hosp-card {
  background: linear-gradient(165deg, #17332f, var(--teal-ink));
  border-radius: 22px;
  padding: 34px;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.hosp-card::before {
  content: "";
  position: absolute;
  right: -60px;
  top: -60px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
}
.hosp-card__inner { position: relative; }
.hosp-card h3 {
  color: #fff;
  font-size: 19px;
  margin-bottom: 24px;
  line-height: 1.4;
}

.hosp-row { display: flex; gap: 15px; margin-bottom: 22px; }
.hosp-row:last-child { margin-bottom: 0; }
.hosp-row__ico {
  flex: none;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  color: #9fd3c7;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hosp-row__lab {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 4px;
}
.hosp-row address,
.hosp-row .hosp-txt {
  font-style: normal;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.92);
}
.hosp-row a.tel {
  font-size: 19px;
  font-weight: 700;
  color: #fff;
  font-family: var(--font-head);
  letter-spacing: 0.01em;
}
.hosp-row a.tel:hover { color: #9fd3c7; }
.hosp-row .dir-link {
  display: inline-block;
  margin-top: 6px;
  font-size: 13.5px;
  font-weight: 600;
  color: #9fd3c7;
}
.hosp-row .dir-link:hover { color: #fff; }

.call-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  background: var(--teal);
  color: #fff;
  padding: 18px;
  border-radius: 16px;
  font-weight: 600;
  font-size: 16px;
  margin-top: 18px;
  box-shadow: 0 16px 36px -18px rgba(14, 111, 102, 0.85);
}
.call-strip:hover { background: var(--teal-deep); color: #fff; }

.map-embed {
  margin-top: 18px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  line-height: 0;
}
.map-embed iframe { width: 100%; height: 250px; border: 0; }

/* ---------- footer ---------- */

.site-foot {
  background: #1d2b30;
  color: rgba(255, 255, 255, 0.72);
  margin-top: 20px;
}
.site-foot__grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 1fr;
  gap: 40px;
  padding: 52px 0 40px;
}
.site-foot h4 {
  color: #fff;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.site-foot a { color: rgba(255, 255, 255, 0.72); }
.site-foot a:hover { color: #fff; }
.site-foot ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 9px; font-size: 14.5px; }
.site-foot address { font-style: normal; font-size: 14.5px; line-height: 1.7; }
.site-foot .brand__name { color: #fff; }
.site-foot .brand__role { color: rgba(255, 255, 255, 0.55); }
.site-foot__about {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 16px;
  max-width: 380px;
}
.site-foot__bar {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 20px 0 24px;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.5);
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  justify-content: space-between;
  line-height: 1.6;
}

/* ---------- fixed mobile call bar ---------- */

.callbar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  display: none;
  background: rgba(255, 255, 255, 0.94);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--line);
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
}

.callbar__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--teal);
  color: #fff;
  border-radius: 14px;
  padding: 16px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.01em;
  box-shadow: 0 12px 28px -14px rgba(14, 111, 102, 0.9);
}
.callbar__btn:hover, .callbar__btn:active { background: var(--teal-deep); color: #fff; }
.callbar__btn svg { flex: none; }

/* ---------- reveal on scroll ---------- */

.reveal { opacity: 0; transform: translateY(14px); transition: opacity 0.55s ease, transform 0.55s ease; }
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .acc-panel { transition: none; }
  * { animation: none !important; }
}

/* ---------- responsive ---------- */

@media (max-width: 1024px) {
  .hero__grid { gap: 40px; }
  .procs { grid-template-columns: 1fr; }
}

@media (max-width: 899px) {
  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    padding: 8px 20px 16px;
    display: none;
    box-shadow: 0 24px 40px -28px rgba(32, 48, 58, 0.4);
  }
  .nav.open { display: flex; }
  .nav a { padding: 12px 6px; border-bottom: 1px solid var(--line); }
  .nav a:last-child { border-bottom: none; }
  .nav__call { justify-content: center; margin-top: 10px; border-radius: 12px; }
  .menu-btn { display: flex; }

  .hero__grid { grid-template-columns: 1fr; padding: 44px 0 40px; gap: 44px; }
  .portrait { margin: 0 auto; max-width: 400px; }
  .trust { grid-template-columns: repeat(2, 1fr); padding-bottom: 44px; }

  .about__grid { grid-template-columns: 1fr; gap: 24px; }
  .book__grid { grid-template-columns: 1fr; gap: 36px; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .spec-grid { grid-template-columns: repeat(2, 1fr); }
  .treat-grid { grid-template-columns: repeat(2, 1fr); }
  .signs-band__grid { grid-template-columns: repeat(2, 1fr); }

  .acc-inner__pad { margin-left: 24px; }

  .site-foot__grid { grid-template-columns: 1fr 1fr; }

  .callbar { display: block; }
  body { padding-bottom: 86px; }
  .section { scroll-margin-top: 74px; }
}

@media (max-width: 560px) {
  .container { padding: 0 20px; }
  .section { padding: 56px 0; }

  .hero h1 { font-size: clamp(26px, 7vw, 32px); }
  .hero__lead { font-size: 16px; }
  .hero__cta .btn { width: 100%; justify-content: center; }

  .trust { grid-template-columns: 1fr 1fr; gap: 10px; }
  .trust__item { padding: 14px 15px; }
  .trust__item strong { font-size: 18px; }

  .steps { grid-template-columns: 1fr; }
  .spec-grid { grid-template-columns: 1fr; }
  .treat-grid { grid-template-columns: 1fr; }
  .signs-band { padding: 38px 26px; border-radius: 22px; }
  .signs-band__grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .localities { padding: 26px 22px; }

  .acc-btn { padding: 17px 18px; gap: 13px; }
  .acc-ico { width: 44px; height: 44px; }
  .acc-title { font-size: 16.5px; }
  .acc-inner__pad { margin: 0 18px 22px; }

  .qa summary { font-size: 15.5px; padding: 16px 18px; }
  .qa__a { padding: 0 18px 18px; }

  .site-foot__grid { grid-template-columns: 1fr; gap: 28px; padding: 40px 0 30px; }
}
