/* Vinayakk Hospital */
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600&family=Instrument+Serif:ital@0;1&display=swap");

:root {
  --background: #f2f0eb;
  --background-deep: #e8e4dc;
  --white: #ffffff;
  --ink: #111315;
  --ink-soft: #2d3238;
  --muted: #5a6169;
  --line: #d4cfc5;
  --line-soft: #e5e1d8;
  --brand: #0d4f4a;
  --brand-bright: #0f6b63;
  --logo-teal: #42b9b8;
  --logo-red: #c4302b;
  --brand-muted: #d4e8e5;
  --gold: #8b6914;
  --shadow: 0 1px 2px rgba(17, 19, 21, 0.04), 0 8px 32px rgba(17, 19, 21, 0.08);
  --shadow-lg: 0 2px 4px rgba(17, 19, 21, 0.04), 0 24px 64px rgba(17, 19, 21, 0.1);
  --radius: 1rem;
  --radius-sm: 0.5rem;
  --max: 72rem;
  --space: 1.5rem;
  --serif: "Instrument Serif", Georgia, "Times New Roman", serif;
  --sans: "DM Sans", system-ui, sans-serif;
  --text-h1: clamp(2.4rem, 1.1rem + 3.5vw, 3.75rem);
  --text-h2: clamp(1.9rem, 1rem + 2.2vw, 2.75rem);
  /* chevron for native selects — always pair with background-color, never `background` shorthand on select */
  --select-chevron: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8' fill='none' stroke='%235a6169' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M1.5 1.5L6 6L10.5 1.5'/%3E%3C/svg%3E");
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--sans);
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--ink-soft);
  background: var(--background);
  -webkit-font-smoothing: antialiased;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.025'/%3E%3C/svg%3E");
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  vertical-align: middle;
}

a {
  color: var(--brand);
  text-decoration: none;
  text-underline-offset: 0.2em;
}

a:hover {
  color: var(--brand-bright);
  text-decoration: underline;
}

h1,
h2,
h3,
.heading,
.site-nav__wordmark {
  font-family: var(--serif);
  font-weight: 400;
  color: var(--ink);
  line-height: 1.12;
  letter-spacing: -0.02em;
}

h1 {
  font-size: var(--text-h1);
  margin: 0 0 0.5em;
}

h2 {
  font-size: var(--text-h2);
  margin: 0 0 0.6em;
}

h3 {
  font-size: 1.4rem;
  margin: 0 0 0.4em;
  letter-spacing: -0.015em;
}

p {
  margin: 0 0 1em;
  max-width: 58ch;
}

.eyebrow {
  display: block;
  font-family: var(--sans);
  text-transform: uppercase;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: var(--brand-bright);
  margin-bottom: 0.75rem;
}

.container {
  width: min(100% - 2 * var(--space), var(--max));
  margin-inline: auto;
  padding: 0 var(--space);
}

/* Top bar */
.topbar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  min-height: 2.4rem;
  background: var(--brand);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 0.4rem 1.25rem;
}
.topbar a {
  color: #fff;
  text-decoration: none;
}
.topbar a:hover {
  text-decoration: underline;
}
.topbar__right {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem;
}
.topbar__ph {
  position: relative;
  padding-left: 1.2rem;
}
.topbar__ph::before {
  content: "☎";
  position: absolute;
  left: 0;
  opacity: 0.7;
  font-size: 0.75em;
  top: 0.1em;
}
.topbar__hide-on-mobile {
  display: inline;
}
@media (max-width: 639px) {
  .topbar__hide-on-mobile {
    display: none !important;
  }
  .topbar {
    justify-content: center;
  }
  .topbar__right {
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 0.4rem;
  }
}

/* Site logo (replaces text wordmark) */
.site-nav__brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 0;
  text-decoration: none !important;
  border: 0;
  outline: none;
}
.site-nav__brand img {
  height: 2.65rem;
  width: auto;
  max-width: 11.5rem;
  object-fit: contain;
  display: block;
}
@media (min-width: 400px) {
  .site-nav__brand img {
    height: 2.9rem;
    max-width: 12.5rem;
  }
}

/* Header + nav */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(242, 240, 235, 0.85);
  backdrop-filter: blur(12px) saturate(120%);
  border-bottom: 1px solid var(--line-soft);
}

.site-header__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4.1rem;
}

.site-nav__wordmark {
  font-size: 1.35rem;
  white-space: nowrap;
  line-height: 1.2;
  text-decoration: none;
  color: var(--ink) !important;
  letter-spacing: -0.03em;
}
.site-nav__wordmark .accent {
  color: var(--brand);
}

.site-nav__links {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
  gap: 0.15rem;
}

@media (min-width: 880px) {
  .site-nav__links {
    display: flex;
  }
}
@media (min-width: 880px) and (max-width: 1080px) {
  .site-nav__links a {
    font-size: 0.8rem;
    padding: 0.4rem 0.5rem;
  }
}
.site-nav__links a {
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  padding: 0.45rem 0.85rem;
  border-radius: 9999px;
  transition: background 0.2s, color 0.2s;
}
.site-nav__links a:hover {
  background: rgba(15, 107, 99, 0.08);
  text-decoration: none;
  color: var(--ink);
}
.site-nav__links a[aria-current="page"] {
  color: var(--brand);
  background: var(--brand-muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1.2;
  border: none;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.88rem;
  text-decoration: none;
  border-radius: 9999px;
  padding: 0.7rem 1.35rem;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  white-space: nowrap;
}
.btn--primary {
  background: var(--brand);
  color: #fff !important;
  box-shadow: 0 2px 6px rgba(15, 107, 99, 0.25);
}
.btn--primary:hover {
  background: #0a3f3b;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(15, 107, 99, 0.3);
  transform: translateY(-1px);
}
.btn--secondary {
  background: var(--white);
  color: var(--ink) !important;
  border: 1px solid var(--line);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.6) inset;
}
.btn--secondary:hover {
  border-color: var(--brand-muted);
  background: var(--brand-muted);
  text-decoration: none;
}

/* Mobile menu */
.nav-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 9999px;
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--logo-teal);
  cursor: pointer;
}
.nav-toggle[aria-expanded="true"] {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.nav-toggle__lines,
.nav-toggle__close {
  line-height: 0;
  user-select: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-toggle__lines svg,
.nav-toggle__close svg {
  display: block;
  width: 1.35rem;
  height: 1.35rem;
}
[aria-expanded="true"] .nav-toggle__lines {
  display: none;
}
[aria-expanded="true"] .nav-toggle__close {
  display: flex;
}
[aria-expanded="false"] .nav-toggle__close {
  display: none;
}
[aria-expanded="false"] .nav-toggle__lines {
  display: flex;
}

@media (min-width: 880px) {
  .nav-toggle {
    display: none;
  }
  .header-cta {
    display: block;
  }
}
@media (max-width: 879px) {
  .header-cta {
    display: none;
  }
}

.js-hero-swiper.swiper,
.js-hero-swiper .swiper-wrapper {
  height: min(80vh, 45rem);
  min-height: 20rem;
}
@media (max-width: 600px) {
  .js-hero-swiper.swiper,
  .js-hero-swiper .swiper-wrapper {
    height: min(72vh, 32rem);
  }
}
.js-hero-swiper .swiper-slide {
  height: 100% !important;
}
.js-hero-swiper .swiper-slide figure {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.drawer {
  position: fixed;
  inset: 0;
  top: 0;
  z-index: 300;
  background: rgba(20, 22, 25, 0.35);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s, visibility 0.2s;
}
.drawer.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.drawer__panel {
  position: absolute;
  right: 0;
  top: 0;
  width: min(20rem, 100%);
  background: var(--background);
  height: 100%;
  padding: 5.5rem 1.5rem 2rem;
  box-shadow: -8px 0 32px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  list-style: none;
  margin: 0;
  z-index: 1;
  overflow-y: auto;
}
.drawer a {
  display: block;
  color: var(--ink-soft) !important;
  font-weight: 500;
  padding: 0.6rem 0.25rem;
  text-decoration: none;
  font-size: 1rem;
  border-bottom: 1px solid var(--line-soft);
}
.drawer a:hover {
  color: var(--brand) !important;
  text-decoration: none;
  padding-left: 0.1rem;
  border-color: var(--line);
}
.drawer__panel .btn--primary {
  text-align: center;
  margin-top: 0.4rem;
  color: #fff !important;
  text-decoration: none !important;
  border: none !important;
  padding: 0.7rem 1.25rem !important;
  border-bottom: 0 !important;
}
.drawer__panel .btn--primary:hover {
  color: #fff !important;
  padding-left: 1.25rem !important;
}

/* Swiper (hero) */
.hero-swiper {
  position: relative;
  width: 100%;
  --swiper-pagination-bottom: 1.75rem;
  --swiper-pagination-color: #fff;
  --swiper-pagination-bullet-inactive-color: rgba(255, 255, 255, 0.45);
  --swiper-pagination-bullet-inactive-opacity: 1;
}
.swiper-slide figure {
  margin: 0;
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.swiper-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
}
.js-hero-swiper .swiper-slide img {
  filter: saturate(1.12) contrast(1.04);
}
.swiper-slide .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(5, 32, 30, 0.85) 0%,
    rgba(7, 28, 26, 0.32) 52%,
    rgba(7, 22, 24, 0.12) 100%
  );
}
.swiper-slide figcaption {
  position: relative;
  z-index: 2;
  max-width: min(38rem, 100%);
  padding: clamp(1.5rem, 4vw, 3.5rem) clamp(1.5rem, 4vw, 3.5rem) 4.5rem;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-sizing: border-box;
}
.swiper-slide figcaption h1,
.swiper-slide figcaption p,
.swiper-slide figcaption .h1-look {
  color: #fff;
  max-width: none;
}
.swiper-slide figcaption h1,
.swiper-slide figcaption h2 {
  color: #fff;
}
.swiper-slide figcaption h1 {
  font-size: clamp(2.1rem, 4.5vw, 3.5rem);
  margin: 0 0 0.4em;
  line-height: 1.1;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.25);
  letter-spacing: -0.02em;
  font-weight: 400;
  font-family: var(--serif);
}
.swiper-slide figcaption h2.h1-look {
  font-size: clamp(1.6rem, 2.5vw, 2.1rem) !important;
  font-weight: 400;
  line-height: 1.1;
  margin: 0 0 0.35em;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.25);
  letter-spacing: -0.02em;
  font-family: var(--serif) !important;
  border: 0;
  max-width: 20ch;
}
.swiper-slide figcaption p {
  font-size: clamp(0.95rem, 1.1vw, 1.1rem);
  line-height: 1.5;
  opacity: 0.95;
  margin: 0;
  max-width: 34rem;
  font-weight: 400;
  font-family: var(--sans);
}

.swiper-horizontal > .swiper-pagination {
  right: 1.5rem;
  text-align: right;
  left: auto;
  width: auto;
}
.swiper-pagination-bullet {
  width: 0.4rem;
  height: 0.4rem;
  opacity: 0.5;
  transition: width 0.25s, border-radius 0.25s;
  margin: 0 3px;
}
.swiper-pagination-bullet-active {
  width: 1.4rem;
  border-radius: 0.2rem;
  background: #fff;
  opacity: 1;
}

/* Sections */
.section {
  padding: clamp(3.5rem, 8vw, 6.5rem) 0;
}
.section--tight {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}
.section--cream {
  background: var(--white);
  border-bottom: 1px solid var(--line-soft);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5) inset;
}
.section--dark {
  background: #0a2624;
  color: rgba(255, 255, 255, 0.9);
  border: none;
}
.section--dark h2,
.section--dark .stat__num {
  color: #fff;
}
.section--dark p {
  color: rgba(255, 255, 255, 0.7);
  max-width: 42ch;
}
.section--dark .eyebrow {
  color: rgba(255, 255, 255, 0.45) !important;
}
.section--dark__h {
  color: #fff;
  max-width: 22ch;
  font-size: clamp(1.75rem, 2.5vw, 2.25rem);
  margin: 0 0 0.4em;
}
.spec-block {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.spec-card {
  background: rgba(255, 255, 255, 0.06) !important;
  border-color: rgba(255, 255, 255, 0.12) !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15) !important;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.spec-card:hover {
  background: rgba(255, 255, 255, 0.1) !important;
  border-color: rgba(255, 255, 255, 0.2) !important;
  transform: translateY(-1px);
}
.spec-card__body {
  padding: 1.3rem 1.2rem 1.45rem;
}
.spec-card h3,
.spec-card__body h3 {
  font-size: 1.2rem;
  color: #fff;
  font-family: var(--serif);
  margin: 0 0 0.35em;
  font-weight: 400;
}
.spec-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72) !important;
  max-width: none;
  font-size: 0.9rem;
  line-height: 1.5;
  font-weight: 400;
}
.spec-block > .btn {
  align-self: flex-start;
  margin-top: 0.25rem;
}

.welcome-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
}
@media (min-width: 900px) {
  .welcome-grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3.5rem;
    align-items: center;
  }
}

.pill {
  display: inline-block;
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 0.2rem 0.65rem;
  border-radius: 9999px;
  margin-bottom: 0.5rem;
}

/* Stats */
.stats {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin: 0;
  padding: 0;
  gap: 1.25rem;
  max-width: 28rem;
}
@media (min-width: 480px) {
  .stats {
    grid-template-columns: repeat(2, 1fr);
  }
}
.stat {
  background: var(--background-deep);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem 1.1rem;
  text-align: center;
}
.stat__num {
  font-family: var(--serif);
  font-size: 1.9rem;
  line-height: 1;
  color: var(--brand);
  margin-bottom: 0.2rem;
}
.stat__label {
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 500;
  line-height: 1.2;
  max-width: none;
}

/* Cards */
.grid-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 600px) {
  .grid-cards--2 {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1000px) {
  .grid-cards--3 {
    grid-template-columns: repeat(3, 1fr);
  }
}
/* Specialities: image + blue title bar (reference layout) */
.grid-cards.spec-tile-grid {
  grid-template-columns: 1fr;
}
@media (min-width: 600px) {
  .grid-cards.spec-tile-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1000px) {
  .grid-cards.spec-tile-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.breadcrumb {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0 0 1.15rem;
  max-width: 100%;
  font-weight: 500;
}
.breadcrumb a {
  color: var(--muted);
  text-decoration: none;
}
.breadcrumb a:hover {
  color: var(--brand);
  text-decoration: underline;
}
.breadcrumb .sep {
  margin: 0 0.3rem;
  color: var(--line);
  user-select: none;
}
.breadcrumb [aria-current="page"] {
  color: var(--ink-soft);
}
.spec-tile {
  list-style: none;
  margin: 0;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(17, 19, 21, 0.1), 0 2px 4px rgba(0, 0, 0, 0.06);
  background: var(--white);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  height: 100%;
}
.spec-tile:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(17, 19, 21, 0.12);
}
.spec-tile__link {
  display: block;
  text-decoration: none !important;
  color: inherit;
}
.spec-tile__link:hover .spec-tile__bar {
  background: var(--brand-bright);
}
.spec-tile__media {
  position: relative;
  aspect-ratio: 1;
  background: #dde4e8;
  overflow: hidden;
}
.spec-tile__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.spec-tile__bar {
  background: var(--brand);
  color: #fff;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 0.88rem;
  line-height: 1.3;
  padding: 0.72rem 0.9rem 0.85rem;
  text-align: left;
  border: 0;
  margin: 0;
  max-width: none;
  letter-spacing: 0.02em;
}

.card {
  background: var(--white);
  border-radius: calc(var(--radius) * 1.1);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  transition: box-shadow 0.25s, border-color 0.25s, transform 0.2s;
  overflow: hidden;
  height: 100%;
}
.card:hover {
  box-shadow: var(--shadow-lg);
  border-color: #c4ddd9;
  transform: translateY(-2px);
}
.card__media {
  position: relative;
  aspect-ratio: 4/3.2;
  overflow: hidden;
  background: var(--background-deep);
}
.card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.card:hover .card__media img {
  transform: scale(1.04);
}
.card__body {
  padding: 1.15rem 1.2rem 1.35rem;
}
.card__body h3 {
  font-size: 1.2rem;
  margin-bottom: 0.2rem;
}
.card__sub {
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 500;
  margin: 0 0 0.2rem;
}
.card__tag {
  font-size: 0.78rem;
  color: var(--brand);
  font-weight: 600;
  margin: 0;
  letter-spacing: 0.02em;
}
.card--flat {
  box-shadow: var(--shadow);
  border-radius: var(--radius);
}
.card--flat .card__body {
  padding: 1.4rem 1.35rem 1.5rem;
}
.card--flat p {
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
  max-width: none;
  color: var(--muted);
}

/* Feature strip (icons) */
.icon-strip {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1.5rem 0 0;
  padding: 0;
}
.icon-strip__item {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  font-size: 0.92rem;
  line-height: 1.4;
  color: var(--ink-soft);
  max-width: 38ch;
}
.icon-strip__ic {
  flex-shrink: 0;
  width: 1.2rem;
  height: 1.2rem;
  margin-top: 0.15em;
  color: var(--brand);
}

/* CTA */
.cta {
  text-align: center;
  max-width: 32rem;
  margin-inline: auto;
}
.btn-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

/* Page title block */
.page-hero {
  background: linear-gradient(175deg, var(--white) 0%, var(--background) 100%);
  border-bottom: 1px solid var(--line);
  padding: 2.75rem 0 2.5rem;
}
.page-hero h1 {
  margin: 0;
  font-size: var(--text-h1);
  max-width: 18ch;
}
.page-hero p {
  color: var(--muted);
  margin: 0.5rem 0 0;
  max-width: 50ch;
  font-size: 1.1rem;
}

/* Contact page */
.split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media (min-width: 900px) {
  .split {
    grid-template-columns: 0.9fr 1.1fr;
  }
}
.form-card {
  background: var(--white);
  border-radius: calc(var(--radius) * 1.1);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 1.75rem 1.5rem 2rem;
}
.form__field {
  margin-bottom: 1.1rem;
}
.form__field label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.3rem;
}
.form__field input,
.form__field textarea {
  width: 100%;
  font-family: var(--sans);
  font-size: 0.95rem;
  border: 1px solid var(--line);
  border-radius: 0.65rem;
  padding: 0.6rem 0.75rem;
  background: var(--background);
  color: var(--ink);
  transition: border 0.15s, box-shadow 0.15s;
}
.form__field select {
  width: 100%;
  font-family: var(--sans);
  font-size: 0.95rem;
  border: 1px solid var(--line);
  border-radius: 0.65rem;
  padding: 0.6rem 2.4rem 0.6rem 0.75rem;
  color: var(--ink);
  transition: border 0.15s, box-shadow 0.15s;
  background-color: var(--background);
  background-image: var(--select-chevron);
  background-repeat: no-repeat;
  background-position: right 0.65rem center;
  background-size: 0.7rem 0.45rem;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.form__field input:focus,
.form__field textarea:focus {
  outline: none;
  border-color: var(--brand-bright);
  box-shadow: 0 0 0 3px rgba(15, 107, 99, 0.2);
  background: var(--white);
}
.form__field select:focus {
  outline: none;
  border-color: var(--brand-bright);
  box-shadow: 0 0 0 3px rgba(15, 107, 99, 0.2);
  background-color: var(--white);
  background-image: var(--select-chevron);
  background-repeat: no-repeat;
  background-position: right 0.65rem center;
  background-size: 0.7rem 0.45rem;
}
select::-ms-expand {
  display: none;
}
.info-block h2,
.info-block h3 {
  font-size: 1.1rem;
  margin-top: 1.25rem;
  margin-bottom: 0.3rem;
}
.info-block p,
.info-block ul,
.info-block a {
  margin: 0.25em 0;
  font-size: 0.98rem;
}
.info-block a {
  text-decoration: underline;
  color: var(--brand);
  font-weight: 500;
}
.info-block ul {
  list-style: none;
  margin: 0.5rem 0 0;
  padding: 0;
}
.info-block .phones li + li {
  margin-top: 0.15em;
}
.info-block a:hover {
  color: var(--brand-bright);
}

/* Contact: Formspree in-page success */
.contact-form__error {
  font-size: 0.9rem;
  margin: 0.5rem 0 0;
  max-width: 40ch;
  color: var(--logo-red);
  font-weight: 500;
}
.contact-form__error[hidden] {
  display: none !important;
}
.contact-form__success {
  padding-top: 0.15rem;
}
.contact-form__success[hidden] {
  display: none !important;
}
.contact-form__success-title {
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 400;
  color: var(--ink);
  margin: 0 0 0.65rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.contact-form__success-text {
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 40ch;
  margin: 0 0 1.25rem;
  color: var(--ink-soft);
}

/* Footer */
.site-footer {
  --footer-fg: rgba(255, 255, 255, 0.62);
  --footer-mute: rgba(255, 255, 255, 0.42);
  --footer-hi: rgba(255, 255, 255, 0.9);
  background: linear-gradient(180deg, #0f1815 0%, #0a100e 100%);
  color: var(--footer-fg);
  margin-top: auto;
  font-size: 0.9rem;
  position: relative;
  box-shadow: 0 -12px 48px rgba(0, 0, 0, 0.18);
}
.site-footer a {
  color: var(--footer-hi);
  text-decoration: none;
  transition: color 0.2s, opacity 0.2s;
}
.site-footer a:hover {
  color: #fff;
  text-decoration: underline;
}
.site-footer__inner {
  padding: 3rem 0 3rem;
}
.f-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem 2.25rem;
  align-items: start;
}
@media (max-width: 639px) {
  .f-grid {
    gap: 3rem 2.25rem;
  }
}
@media (min-width: 640px) and (max-width: 899px) {
  .f-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .f-brand {
    grid-column: 1 / -1;
  }
}
@media (min-width: 900px) {
  .f-grid {
    grid-template-columns: minmax(11rem, 1.2fr) 0.9fr 0.75fr 1.1fr;
    gap: 2rem 2.5rem;
  }
  .f-brand {
    padding-right: 0.5rem;
  }
}
.f-brand {
  position: relative;
  margin: 0;
  padding: 0;
  max-width: 22rem;
}
.f-wordmark {
  font-family: var(--serif);
  font-size: 1.45rem;
  color: #fff;
  margin: 0 0 0.35em;
  line-height: 1.15;
  max-width: 20ch;
}
.f-tagline {
  font-family: var(--sans);
  color: var(--footer-mute) !important;
  font-size: 0.86rem;
  line-height: 1.5;
  margin: 0;
  max-width: 28ch;
}
.f-social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.9rem 0 0;
  padding: 0;
  list-style: none;
}
.f-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s;
}
.f-social a:hover {
  color: #fff;
  background: rgba(66, 185, 184, 0.2);
  border-color: rgba(66, 185, 184, 0.45);
  text-decoration: none;
  transform: translateY(-1px);
}
.f-social a:focus-visible {
  outline: 2px solid var(--logo-teal);
  outline-offset: 2px;
}
.f-social svg {
  width: 1.1rem;
  height: 1.1rem;
  display: block;
  flex-shrink: 0;
}
.f-social__icon {
  fill: currentColor;
}
.f-col__title {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #fff;
  font-family: var(--sans) !important;
  margin: 0 0 0.7rem;
}
.f-list {
  list-style: none;
  margin: 0;
  padding: 0;
  line-height: 1.65;
}
.f-list li + li {
  margin-top: 0.12em;
}
.f-list--tools a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.92em;
}
.f-list--tools a:hover {
  color: #fff;
}
.f-address,
.site-footer .f-address {
  font-style: normal;
  color: var(--footer-fg);
  margin: 0 0 0.6rem;
  line-height: 1.5;
  font-size: 0.9rem;
  max-width: 32ch;
}
.f-phones {
  list-style: none;
  margin: 0.35rem 0 0;
  padding: 0;
}
.f-phones li {
  line-height: 1.5;
  margin: 0;
  padding: 0;
  font-size: 0.92em;
  font-weight: 500;
}
.f-phones li + li {
  margin-top: 0.15rem;
}
.f-phones a {
  color: #fff;
}
.f-phones a:hover {
  color: var(--logo-teal);
  text-decoration: none;
}
.f-col--contact .f-col__title {
  margin-bottom: 0.55rem;
}
.site-footer__bar {
  background: rgba(0, 0, 0, 0.3);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.05rem 0 1.2rem;
}
/* p inherits global max-width: 58ch — override so .container full width in footer bar */
.site-footer p.container.site-footer__copyright {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem 1.4rem;
  flex-wrap: wrap;
  text-align: left;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.35);
  margin: 0;
  max-width: min(100% - 2 * var(--space), var(--max)) !important;
  width: min(100% - 2 * var(--space), var(--max)) !important;
  box-sizing: border-box;
  margin-left: auto;
  margin-right: auto;
}
.site-footer__credit {
  margin-left: auto;
  text-align: right;
}
.site-footer__credit a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
}
.site-footer__credit a:hover {
  color: var(--logo-teal);
}
.u-muted {
  color: var(--muted) !important;
  font-size: 0.9rem;
}

/* Facility rows */
.f-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--line);
}
.f-row:last-child {
  border: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
@media (min-width: 800px) {
  .f-row {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 2rem;
  }
  .f-row:nth-child(even) .f-row__ph {
    order: 2;
  }
  .f-row:nth-child(even) > div:not(.f-row__ph) {
    order: 1;
  }
}
.f-row__ph {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  aspect-ratio: 16/10;
}
.f-row__ph img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.f-row h2 {
  font-size: 1.45rem;
  margin-bottom: 0.3rem;
}

ul.check {
  list-style: none;
  margin: 0.75em 0 0;
  padding: 0;
  max-width: 56ch;
}
ul.check li {
  position: relative;
  padding-left: 1.1rem;
  margin-bottom: 0.3em;
}
ul.check li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.3rem;
  height: 0.3rem;
  background: var(--brand);
  border-radius: 50%;
}

.sr {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Layout: sticky footer for short pages */
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
main,
.page-main {
  flex: 1 0 auto;
  width: 100%;
}

/* Link wrap */
.muted-link {
  color: var(--muted) !important;
  font-size: 0.95rem;
  font-weight: 500;
}
.muted-link:hover {
  color: var(--brand) !important;
}

.prose p:last-child {
  margin-bottom: 0;
}
.prose > * + p {
  margin-top: 1em;
}
.prose h2 {
  font-size: 1.65rem;
  margin: 2rem 0 0.5rem;
  font-weight: 400;
}
.prose p + h2 {
  margin-top: 2.5rem;
}
.prose a.btn {
  text-decoration: none;
  margin: 0.2rem 0.45rem 0.2rem 0;
  display: inline-block;
  vertical-align: middle;
}

/* About: founder & vision */
.about-founder h2 {
  margin-bottom: 0.25em;
  max-width: 20ch;
}
.about-founder__name {
  font-family: var(--sans);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--ink-soft);
  letter-spacing: 0.02em;
  margin: 0 0 0.75rem;
}
.about-founder__lede {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.55;
  max-width: 48ch;
  margin: 0 0 1.75rem;
}
.founder-block {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem 2.5rem;
  align-items: start;
  margin-top: 0.5rem;
}
@media (min-width: 800px) {
  .founder-block {
    grid-template-columns: minmax(12rem, 0.95fr) 1.1fr;
    gap: 2.25rem 3rem;
    align-items: stretch;
  }
}
.founder-block__media {
  margin: 0;
  max-width: 22rem;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: var(--white);
}
@media (min-width: 800px) {
  .founder-block__media {
    max-width: none;
  }
}
.founder-block__ph {
  aspect-ratio: 4/5;
  background: var(--line-soft);
  overflow: hidden;
}
.founder-block__ph img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.founder-block__caption {
  margin: 0;
  padding: 0.65rem 0.9rem;
  text-align: center;
  font-size: 0.95rem;
  font-weight: 600;
  font-family: var(--sans);
  color: var(--ink-soft);
  background: var(--background-deep);
  border-top: 1px solid var(--line-soft);
}
.founder-block__body h3 {
  font-size: 1.35rem;
  margin: 0 0 0.5em;
  color: var(--ink);
  font-weight: 400;
  font-family: var(--serif);
  letter-spacing: -0.02em;
}
.founder-block__body h3 + p {
  margin-top: 0;
}
.founder-block__body p {
  max-width: 60ch;
  font-size: 0.98rem;
  line-height: 1.65;
}
.founder-block__body h3:not(:first-child) {
  margin-top: 1.75rem;
}
.founder-block__body .check {
  max-width: 60ch;
  margin-top: 0.5rem;
}
.founder-block__body .check li {
  margin-bottom: 0.55em;
  line-height: 1.55;
}
.founder-block__body .check strong {
  color: var(--ink-soft);
  font-weight: 600;
}

/* Doctor directory: filters + grid */
.doctors-toolbar {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
@media (min-width: 700px) {
  .doctors-toolbar {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.doctors-search {
  position: relative;
  flex: 1;
  max-width: 28rem;
}
.doctors-search__input {
  width: 100%;
  font: inherit;
  padding: 0.55rem 0.75rem 0.55rem 2.4rem;
  border: 1px solid var(--line);
  border-radius: 0.65rem;
  background: var(--white);
}
.doctors-search__ic {
  position: absolute;
  left: 0.65rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1.1rem;
  height: 1.1rem;
  color: var(--muted);
  pointer-events: none;
}
.doctors-count {
  font-size: 0.9rem;
  color: var(--muted);
  margin: 0;
}
.doctors-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: start;
}
@media (min-width: 900px) {
  .doctors-layout {
    grid-template-columns: 15.5rem 1fr;
    gap: 2rem;
  }
}
.doctors-filters {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.1rem 1rem 1.15rem;
  position: static;
  top: auto;
}
@media (min-width: 900px) {
  .doctors-filters {
    position: sticky;
    top: 5.5rem;
  }
}
.doctors-filters h2 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-family: var(--sans) !important;
  font-weight: 600;
  color: var(--ink-soft);
  margin: 0 0 0.75rem;
}
.filter-block + .filter-block {
  border-top: 1px solid var(--line-soft);
  margin-top: 0.9rem;
  padding-top: 0.9rem;
}
.filter-block label.filter-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--muted);
  margin-bottom: 0.35rem;
  font-family: var(--sans);
}
.filter-block select {
  width: 100%;
  max-width: 100%;
  font: inherit;
  box-sizing: border-box;
  padding: 0.4rem 2.15rem 0.4rem 0.5rem;
  border: 1px solid var(--line);
  border-radius: 0.5rem;
  color: var(--ink);
  background-color: var(--background);
  background-image: var(--select-chevron);
  background-repeat: no-repeat;
  background-position: right 0.45rem center;
  background-size: 0.65rem 0.45rem;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.filter-block select:focus {
  background-color: var(--white);
  background-image: var(--select-chevron);
  background-repeat: no-repeat;
  background-position: right 0.45rem center;
  background-size: 0.65rem 0.45rem;
  outline: none;
  border-color: var(--brand-bright);
}
.filter-checks {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.filter-checks label,
.filter-gender label {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink-soft);
  cursor: pointer;
  text-transform: none;
  letter-spacing: 0;
}
.filter-checks input,
.filter-gender input {
  accent-color: var(--brand);
  width: 1rem;
  height: 1rem;
}
.doctor-card[hidden] {
  display: none !important;
}
.doctors-filters .filter-block + h2 {
  margin-top: 1.1rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--line-soft);
}
.doctors-empty {
  display: none;
  padding: 2.5rem 1rem;
  text-align: center;
  color: var(--muted);
  font-size: 1rem;
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  background: var(--white);
}
.doctors-empty.is-visible {
  display: block;
}
.card__exp {
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 500;
  margin: 0.1rem 0 0.15rem;
}
.card__gender {
  font-size: 0.8rem;
  color: var(--ink-soft);
}

/* Calculators: BMI & calories */
.calc-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.5rem 1.35rem 1.6rem;
  max-width: 32rem;
  margin-bottom: 1.5rem;
}
.calc-panel--wide {
  max-width: 100%;
}
.calc-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem 1.25rem;
  margin: 0.75rem 0 0;
}
@media (min-width: 540px) {
  .calc-grid--2 {
    grid-template-columns: 1fr 1fr;
  }
  .calc-grid--span {
    grid-column: 1 / -1;
  }
}
.calc-row label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ink-soft);
  margin-bottom: 0.25rem;
  font-family: var(--sans);
  text-transform: none;
  letter-spacing: 0.01em;
}
.calc-row input[type="text"],
.calc-row input[type="number"] {
  width: 100%;
  max-width: 100%;
  font: inherit;
  padding: 0.5rem 0.6rem;
  border: 1px solid var(--line);
  border-radius: 0.55rem;
  background: var(--background);
  box-sizing: border-box;
}
.calc-row select {
  width: 100%;
  max-width: 100%;
  font: inherit;
  box-sizing: border-box;
  padding: 0.5rem 2.1rem 0.5rem 0.6rem;
  border: 1px solid var(--line);
  border-radius: 0.55rem;
  background-color: var(--background);
  background-image: var(--select-chevron);
  background-repeat: no-repeat;
  background-position: right 0.55rem center;
  background-size: 0.65rem 0.45rem;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.calc-row select:focus {
  background-color: var(--white);
  background-image: var(--select-chevron);
  background-repeat: no-repeat;
  background-position: right 0.55rem center;
  background-size: 0.65rem 0.45rem;
  outline: none;
  border-color: var(--brand-bright);
}
.calc-row--radio label {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-weight: 500;
  margin-right: 1rem;
  cursor: pointer;
  margin-top: 0.25rem;
  text-transform: none;
  letter-spacing: 0;
}
.calc-result {
  margin-top: 1.25rem;
  padding: 0.9rem 1rem;
  background: var(--brand-muted);
  border: 1px solid #b8d9d4;
  border-radius: 0.6rem;
}
.calc-result[hidden] {
  display: none !important;
}
.calc-result__k {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--brand);
  margin: 0 0 0.1rem;
  font-family: var(--sans) !important;
}
.calc-result__v {
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--ink);
  font-family: var(--serif) !important;
  margin: 0;
  line-height: 1.2;
}
.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  border: 1px solid var(--line);
  border-radius: 0.5rem;
  overflow: hidden;
  background: var(--white);
  margin: 0.5rem 0 1.25rem;
  box-shadow: var(--shadow);
}
.data-table th,
.data-table td {
  text-align: left;
  padding: 0.55rem 0.7rem;
  border-bottom: 1px solid var(--line);
}
.data-table th {
  background: var(--background-deep);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
  font-family: var(--sans) !important;
}
.data-table tr:last-child th,
.data-table tr:last-child td {
  border-bottom: 0;
}
.data-table--compact td {
  font-size: 0.82rem;
}
.bullet-star {
  list-style: none;
  margin: 0;
  padding: 0;
}
.bullet-star li {
  position: relative;
  padding-left: 1.35rem;
  margin-bottom: 0.5em;
  line-height: 1.5;
  max-width: 58ch;
}
.bullet-star li::before {
  content: "★";
  position: absolute;
  left: 0;
  color: var(--logo-teal);
  font-size: 0.7rem;
  top: 0.2em;
}
.hint {
  font-size: 0.8rem;
  color: var(--muted);
  margin: 0.5rem 0 1.25rem;
  line-height: 1.4;
  max-width: 52ch;
}
.calc-actions {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}
.btn--calc {
  min-width: 8rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.8rem;
  background: var(--logo-teal);
  box-shadow: 0 2px 6px rgba(66, 185, 184, 0.35);
}
.btn--calc:hover {
  background: #39a3a2;
  box-shadow: 0 4px 12px rgba(66, 185, 184, 0.4);
}

@media print {
  .topbar,
  .nav-toggle,
  .drawer,
  .header-cta,
  .btn-group {
    display: none;
  }
}
