/* styles.css */
/* Brand palette chosen to match the clinic visuals: calm teal + warm off-white + soft accent */
:root{
  --bg: #ffffff;
  --ink: #0e1517;
  --muted: #526065;

  --brand: #0b2f3a;     /* deep teal */
  --brand2:#1d5864;     /* lighter teal */
  --cream:#f4f0ea;      /* warm off-white */
  --accent:#caa46a;     /* soft gold accent */
  --line: #e8ecee;

  --shadow: 0 14px 34px rgba(14,21,23,.12);
  --radius: 18px;
  --radius2: 26px;

  --max: 1120px;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
}

a{ color: var(--brand2); text-decoration: none; }
a:hover{ text-decoration: underline; }

.container{
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
}

.skip{
  position:absolute;
  left:-999px;
  top:auto;
  width:1px; height:1px;
  overflow:hidden;
}
.skip:focus{
  left: 16px;
  top: 16px;
  width: auto; height:auto;
  padding: 10px 12px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 12px;
  z-index: 9999;
}

.topbar{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.topbar__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  padding: 10px 0;
}
.brand{
  display:flex;
  align-items:center;
  gap: 12px;
  min-width: 0;
}
.brand__logo{
  width:40px; height:40px;
  border-radius: 12px;
  object-fit: cover;
  border: 1px solid var(--line);
}
.brand__text{ min-width:0; }
.brand__name{
  font-weight: 750;
  letter-spacing: -0.01em;
  white-space: nowrap;
  overflow:hidden;
  text-overflow: ellipsis;
}
.brand__tag{
  font-size: 13px;
  color: var(--muted);
  white-space: nowrap;
  overflow:hidden;
  text-overflow: ellipsis;
}
.topbar__actions{ display:flex; align-items:center; gap: 10px; }

.pill{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  font-weight: 650;
  border: 1px solid transparent;
  text-decoration:none;
}
.pill:hover{ text-decoration:none; filter: brightness(1.02); }
.pill--ghost{
  background: transparent;
  color: var(--brand);
  border-color: var(--line);
}

.hero{
  padding: 34px 0 10px;
  background:
    radial-gradient(900px 420px at 15% 0%, rgba(11,47,58,.10), transparent 60%),
    radial-gradient(900px 420px at 85% 20%, rgba(202,164,106,.12), transparent 55%);
}
.hero__grid{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 28px;
  align-items:center;
}
.kicker{
  display:inline-block;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--cream);
  border: 1px solid var(--line);
  color: var(--brand);
  font-weight: 650;
  font-size: 13px;
}
h1{
  margin: 12px 0 10px;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.08;
  letter-spacing: -0.03em;
}
.lede{
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 16px;
  max-width: 58ch;
}

.cta-row{
  display:flex;
  flex-wrap:wrap;
  gap: 10px;
  margin: 14px 0 12px;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height: 44px;
  padding: 0 16px;
  border-radius: 14px;
  border: 1px solid transparent;
  font-weight: 700;
  text-decoration:none;
  white-space: nowrap;
}
.btn:hover{ text-decoration:none; filter: brightness(1.02); }
.btn--primary{
  background: var(--brand);
  color: #fff;
}
.btn--secondary{
  background: rgba(11,47,58,.08);
  border-color: rgba(11,47,58,.18);
  color: var(--brand);
}
.btn--ghost{
  background: transparent;
  border-color: var(--line);
  color: var(--brand2);
}
.btn--full{ width:100%; }

.trust{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 14px 0 8px;
}
.trust__item{
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 12px;
  box-shadow: 0 8px 18px rgba(14,21,23,.06);
}
.trust__big{
  font-weight: 800;
  letter-spacing: -0.02em;
}
.trust__small{
  font-size: 13px;
  color: var(--muted);
  margin-top: 2px;
}

.quicklinks{
  display:flex;
  flex-wrap:wrap;
  gap: 12px;
  font-size: 14px;
  margin-top: 6px;
}
.quicklinks a{
  color: var(--muted);
  text-decoration:none;
}
.quicklinks a:hover{ text-decoration: underline; }

.hero__media img{
  width:100%;
  height: auto;
  border-radius: var(--radius2);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  object-fit: cover;
}

.section{ padding: 44px 0; }
.section--alt{ background: #fbfbfc; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section__head{
  margin-bottom: 18px;
}
h2{
  margin:0 0 6px;
  font-size: clamp(22px, 2.2vw, 30px);
  letter-spacing: -0.02em;
}
.muted{ color: var(--muted); }
.micro{ font-size: 13px; }

.cards{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.card{
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: 0 10px 24px rgba(14,21,23,.06);
}
.card h3{ margin: 0 0 6px; font-size: 16px; }
.card p{ margin: 0; color: var(--muted); }

.notice{
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: var(--radius);
  background: rgba(202,164,106,.14);
  border: 1px solid rgba(202,164,106,.25);
}

.gallery{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.gallery__item{
  margin:0;
  border-radius: var(--radius);
  overflow:hidden;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 10px 24px rgba(14,21,23,.06);
}
.gallery__item img{
  width:100%;
  height: 260px;
  object-fit: cover;
  display:block;
}

.split{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 18px;
  align-items:start;
}

.bullets{
  margin-top: 14px;
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.bullet{
  border: 1px solid var(--line);
  background: #fff;
  border-radius: var(--radius);
  padding: 12px;
}
.bullet__title{ font-weight: 800; font-size: 13px; color: var(--brand); }
.bullet__text{ margin-top: 4px; color: var(--muted); font-size: 14px; }

.panel{
  border-radius: var(--radius2);
  border: 1px solid rgba(11,47,58,.14);
  background:
    radial-gradient(600px 300px at 20% 0%, rgba(11,47,58,.10), transparent 60%),
    #fff;
  box-shadow: var(--shadow);
  padding: 18px;
}
.panel h3{ margin:0 0 6px; }
.panel__cta{ display:grid; gap: 10px; margin: 12px 0 12px; }
.panel__meta{
  display:grid;
  gap: 10px;
  font-size: 14px;
  color: var(--muted);
}
.panel__meta a{ color: var(--brand2); }

.quotes{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.quote{
  margin:0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: 0 10px 24px rgba(14,21,23,.06);
}
.quote p{ margin:0 0 8px; color: var(--ink); }
.quote footer{ font-size: 13px; color: var(--muted); }

.link{
  display:inline-block;
  margin-top: 10px;
  font-weight: 700;
}

.faq{
  border: 1px solid var(--line);
  border-radius: var(--radius2);
  overflow:hidden;
  background: #fff;
}
.faq details{
  padding: 14px 16px;
  border-top: 1px solid var(--line);
}
.faq details:first-child{ border-top:none; }
.faq summary{
  cursor:pointer;
  font-weight: 800;
  color: var(--brand);
}
.faq p{ margin: 10px 0 0; color: var(--muted); }

.contact{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  align-items: stretch;
}
.contact__card{
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius2);
  box-shadow: var(--shadow);
  padding: 18px;
}
.contact__grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 12px 0 14px;
}
.contact__label{ font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; }
.contact__value{ font-weight: 750; color: var(--ink); }
a.contact__value{ color: var(--brand2); }

.map{
  border-radius: var(--radius2);
  overflow:hidden;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 10px 24px rgba(14,21,23,.06);
}
.map iframe{
  width:100%;
  height: 100%;
  min-height: 360px;
  border:0;
  display:block;
}

.footer{
  padding: 22px 0 86px; /* extra space for sticky bar */
}
.footer__inner{
  display:flex;
  justify-content:space-between;
  gap: 14px;
  border-top: 1px solid var(--line);
  padding-top: 16px;
}
.footer__right{
  display:flex;
  flex-wrap:wrap;
  gap: 14px;
  align-items:center;
}

/* Sticky CTA bar (mobile-first) */
.sticky{
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 10px 12px;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--line);
  display:flex;
  gap: 10px;
  z-index: 60;
}
.sticky__btn{
  flex:1;
  height: 46px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--brand2);
  font-weight: 800;
  display:flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
}
.sticky__btn--call{
  background: var(--brand);
  border-color: transparent;
  color:#fff;
}

/* Responsive */
@media (max-width: 980px){
  .hero__grid{ grid-template-columns: 1fr; }
  .trust{ grid-template-columns: 1fr; }
  .cards{ grid-template-columns: 1fr; }
  .gallery{ grid-template-columns: 1fr; }
  .split{ grid-template-columns: 1fr; }
  .bullets{ grid-template-columns: 1fr; }
  .quotes{ grid-template-columns: 1fr; }
  .contact{ grid-template-columns: 1fr; }
  .contact__grid{ grid-template-columns: 1fr; }
  .topbar__actions .pill--ghost{ display:none; }
}
