@charset "utf-8";
/* Dr. Saheli Dasgupta — Paediatrician & Paediatric Critical Care, Kolkata
   -------------------------------------------------------------------------
   Self-contained. The original site was WordPress + Elementor and every one of
   its 43 stylesheets, 22 scripts and 25 images now 404s, so nothing here
   depends on that chain.

   The page is text-led on purpose: not one of the doctor's own photographs
   survived, and a stock photograph of a stranger must never stand in for a
   real physician. Where her photographs belong, the markup says so. */

:root{
  --ink:      #16302E;   /* deep pine-teal: body text */
  --ink-soft: #4A5F5C;
  --paper:    #F6F7F5;   /* pale cool neutral, not cream */
  --card:     #FFFFFF;
  --rule:     #DCE2E0;
  --rule-2:   #C3CCC9;
  --teal:     #0E5E58;   /* primary action */
  --teal-dk:  #084440;
  --teal-pale:#EAF1EF;
  --plate:    #123B37;   /* the nameplate */
  --amber:    #B26A00;   /* used once, for the urgent line */

  --display: "Newsreader", Georgia, "Times New Roman", serif;
  --body: "Public Sans", "Segoe UI", system-ui, Arial, sans-serif;

  --wrap: 1080px;
  --gut: 22px;
}

*,*::before,*::after{ box-sizing:border-box; }
html{ -webkit-text-size-adjust:100%; scroll-behavior:smooth; }
body{
  margin:0; background:var(--paper); color:var(--ink);
  font-family:var(--body); font-size:17px; line-height:1.68;
  -webkit-font-smoothing:antialiased;
  padding-bottom:64px;            /* room for the fixed call bar on mobile */
}
img{ max-width:100%; height:auto; display:block; }
a{ color:var(--teal); text-decoration:underline; text-underline-offset:2px; }
a:hover{ color:var(--teal-dk); }
:focus-visible{ outline:3px solid var(--amber); outline-offset:2px; }
h1,h2,h3,h4{ font-family:var(--display); font-weight:600; letter-spacing:-.01em; }

.wrap{ max-width:var(--wrap); margin:0 auto; padding:0 var(--gut); }
.skip{position:absolute; width:1px; height:1px; margin:-1px; padding:0; overflow:hidden; clip:rect(0 0 0 0); clip-path:inset(50%); white-space:nowrap; border:0;}
.skip:focus{width:auto; height:auto; margin:0; overflow:visible; clip:auto; clip-path:none;  left:8px; top:8px; z-index:99; background:var(--ink); color:#fff; padding:10px 14px; }

/* ----------------------------------------------------------- utility bar */
.util{ background:var(--plate); color:#D8E4E1; font-size:14.5px; }
.util-in{
  max-width:var(--wrap); margin:0 auto; padding:8px var(--gut);
  display:flex; flex-wrap:wrap; gap:6px 20px; align-items:center;
}
.util a{ color:#fff; text-decoration:none; font-weight:600; }
.util a:hover{ text-decoration:underline; }
.util .hours{ margin-left:auto; color:#9FB5B1; font-weight:400; }

/* -------------------------------------------------------------- masthead */
.mast{ background:var(--card); border-bottom:1px solid var(--rule); }
.mast-in{
  max-width:var(--wrap); margin:0 auto; padding:16px var(--gut);
  display:flex; align-items:center; gap:18px; flex-wrap:wrap;
}
.mast-id{ text-decoration:none; color:var(--ink); }
.mast-id b{ display:block; font-family:var(--display); font-size:22px; line-height:1.15; }
.mast-id span{ display:block; font-size:13px; color:var(--ink-soft); }
.mast-cta{ margin-left:auto; display:flex; gap:10px; flex-wrap:wrap; }

/* ------------------------------------------------------------------- nav */
.nav{ background:var(--card); border-bottom:1px solid var(--rule); }
.nav ul{
  max-width:var(--wrap); margin:0 auto; padding:0 calc(var(--gut) - 10px);
  display:flex; flex-wrap:wrap; list-style:none; gap:0;
}
.nav a{
  display:block; padding:12px 14px; color:var(--ink); text-decoration:none;
  font-size:15px; font-weight:600; border-bottom:3px solid transparent;
}
.nav a:hover{ border-bottom-color:var(--rule-2); }
.nav a[aria-current="page"]{ border-bottom-color:var(--teal); color:var(--teal-dk); }

/* ------------------------------------------------------- the nameplate
   The one bold element on the site. A consulting-room nameplate: her name,
   her post-nominals, and the post she holds. It is the substance of the
   page, so it is treated as the object rather than decorated around. */
.plate-wrap{ background:var(--card); border-bottom:1px solid var(--rule); }
.plate-in{ max-width:var(--wrap); margin:0 auto; padding:46px var(--gut) 44px; }
.plate{
  background:var(--plate); color:#F2F7F5;
  border:1px solid #0B2C29; border-radius:3px;
  padding:34px 34px 30px; max-width:760px;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.10);
}
.plate h1{
  font-size:clamp(30px,4.6vw,46px); line-height:1.06; margin:0 0 10px;
  color:#fff;
}
.plate .post-nominals{
  font-family:var(--body); font-size:15.5px; font-weight:600;
  color:#A8C6C0; letter-spacing:.02em; margin:0 0 20px;
  padding-bottom:18px; border-bottom:1px solid #27514D;
}
.plate .appointment{ margin:0; font-size:17.5px; color:#DCE9E6; }
.plate .appointment b{ color:#fff; font-weight:600; }
.plate-note{ margin:22px 0 0; font-size:17.5px; max-width:62ch; color:#26403D; }
.plate-acts{ display:flex; flex-wrap:wrap; gap:12px; margin:24px 0 0; }

.btn{
  display:inline-block; padding:13px 22px; font-weight:700; font-size:16px;
  text-decoration:none; border:2px solid var(--teal); border-radius:3px;
}
.btn-solid{ background:var(--teal); color:#fff; }
.btn-solid:hover{ background:var(--teal-dk); color:#fff; }
.btn-line{ background:transparent; color:var(--teal); }
.btn-line:hover{ background:var(--teal-pale); }
.btn-sm{ padding:9px 15px; font-size:14.5px; border-width:1.5px; }

/* -------------------------------------------------------------- sections */
.band{ padding:50px 0; }
.band-card{ background:var(--card); border-top:1px solid var(--rule); border-bottom:1px solid var(--rule); }
.band h2{ font-size:clamp(23px,3vw,32px); line-height:1.16; margin:0 0 10px; }
.lede{ font-size:18.5px; color:#2C4744; max-width:64ch; margin:0 0 26px; }
.prose p, .prose li{ max-width:68ch; }
.prose h3{ font-size:20px; margin:28px 0 6px; }
.prose ul{ padding-left:20px; }

/* page head */
.phead{ background:var(--plate); color:#EAF2F0; }
.phead-in{ max-width:var(--wrap); margin:0 auto; padding:38px var(--gut); }
.phead h1{ font-size:clamp(26px,4vw,40px); line-height:1.1; margin:0 0 8px; color:#fff; }
.phead p{ margin:0; color:#B9CFCB; max-width:62ch; }
.crumb{ font-size:14px; color:#8FA9A5; margin:0 0 10px; }
.crumb a{ color:#B9CFCB; }

/* ------------------------------------------------------------ credentials
   Set as a record, because that is what it is. */
.creds{ background:var(--card); border:1px solid var(--rule); border-radius:3px; }
.creds h2{ font-size:16.5px; margin:0; padding:13px 18px;
  border-bottom:1px solid var(--rule); background:#EFF3F1; }
.creds dl{ margin:0; }
.creds > dl > div{
  display:grid; grid-template-columns:minmax(180px,32%) 1fr;
  border-bottom:1px solid #EBEFED;
}
.creds > dl > div:last-child{ border-bottom:0; }
.creds dt{ padding:12px 18px; font-size:14.5px; color:var(--ink-soft);
  border-right:1px solid #EBEFED; }
.creds dd{ margin:0; padding:12px 18px; font-weight:600; font-size:15.5px; }

/* ---------------------------------------------------------------- clinics */
.clinics{ display:grid; grid-template-columns:1fr 1fr; gap:18px; }
.clinic{ background:var(--card); border:1px solid var(--rule); border-radius:3px; padding:22px; }
.clinic h3{ font-size:19px; margin:0 0 4px; }
.clinic .where{ font-size:13.5px; color:var(--ink-soft); margin:0 0 12px;
  text-transform:none; letter-spacing:.01em; }
.clinic address{ font-style:normal; margin:0 0 14px; }

/* --------------------------------------------------------------- services */
.svc{ border-top:1px solid var(--rule); }
.svc > div{ padding:22px 0; border-bottom:1px solid var(--rule); }
.svc h3{ font-size:21px; margin:0 0 6px; }
.svc p{ margin:0; max-width:70ch; color:#2C4744; }
.svc .also{ font-size:15px; color:var(--ink-soft); margin-top:8px; }

/* ---------------------------------------------------------------- reviews */
.reviews{ display:grid; grid-template-columns:repeat(3,1fr); gap:18px; }
.review{ background:var(--card); border:1px solid var(--rule); border-radius:3px; padding:20px; }
.review blockquote{ margin:0 0 14px; font-size:16px; }
.review cite{ font-style:normal; font-weight:700; font-size:15px; display:block; }
.review .when{ font-size:13.5px; color:var(--ink-soft); }
.review .src{ font-size:12.5px; color:var(--ink-soft); margin-top:10px; }

/* ------------------------------------------------------------------ notes */
.note{
  background:#FFF7E8; border:1px solid #EBD7AC; border-left:4px solid var(--amber);
  padding:16px 18px; margin:26px 0 0; font-size:15.5px;
}
.note b{ display:block; margin-bottom:4px; }
.missing{
  background:var(--teal-pale); border:1px dashed var(--rule-2);
  padding:24px; text-align:center; color:var(--ink-soft); font-size:15px;
  border-radius:3px;
}

/* --------------------------------------------------- fixed contact bar
   A parent on this site is often worried and on a phone. The number stays
   reachable rather than being something to scroll for. */
.callbar{
  position:fixed; left:0; right:0; bottom:0; z-index:40;
  background:var(--plate); border-top:1px solid #0B2C29;
  display:grid; grid-template-columns:1fr 1fr;
}
.callbar a{
  padding:15px 10px; text-align:center; color:#fff; text-decoration:none;
  font-weight:700; font-size:16px;
}
.callbar a + a{ border-left:1px solid #27514D; }
.callbar a:hover{ background:var(--teal-dk); color:#fff; }

/* ----------------------------------------------------------------- footer */
.foot{ background:var(--plate); color:#C7D8D5; padding:42px 0 26px; }
.foot a{ color:#EAF2F0; }
.foot-cols{ display:grid; grid-template-columns:1.5fr 1fr 1fr; gap:30px; }
.foot h2{ font-size:16px; color:#fff; margin:0 0 10px; }
.foot ul{ list-style:none; margin:0; padding:0; }
.foot li{ margin:6px 0; }
.foot-legal{ border-top:1px solid #27514D; margin-top:28px; padding-top:16px;
  font-size:13.5px; color:#93AAA6; }

/* ------------------------------------------------------------ responsive */
@media (max-width:900px){
  .clinics,.reviews,.foot-cols{ grid-template-columns:1fr; }
  .plate{ padding:26px 22px 24px; }
}
@media (max-width:620px){
  body{ font-size:16.5px; }
  .util .hours{ margin-left:0; width:100%; }
  .mast-cta{ display:none; }
  .creds > dl > div{ grid-template-columns:1fr; }
  .creds dt{ border-right:0; padding-bottom:0; }
  .creds dd{ padding-top:2px; }
  .band{ padding:36px 0; }
}
@media (min-width:900px){
  body{ padding-bottom:0; }
  .callbar{ display:none; }     /* the header keeps the number in view */
}
@media (prefers-reduced-motion:reduce){
  html{ scroll-behavior:auto; }
  *{ animation:none !important; transition:none !important; }
}
@media print{
  .nav,.callbar,.plate-acts,.note{ display:none; }
  body{ background:#fff; padding:0; font-size:11pt; }
  .plate{ background:#fff; color:#000; border:1px solid #999; }
  .plate h1,.plate .appointment b{ color:#000; }
}

/* ---------------------------------------------------------- tap targets
   On a phone the most likely action is tapping a telephone number, so the
   links that carry one are given a real touch area rather than the height of
   their text. WCAG 2.5.8 asks for 24px minimum; these clear it comfortably. */
@media (max-width:900px){
  .util-in{ gap:0 14px; padding:4px var(--gut); }
  .util a{ display:inline-block; padding:10px 0; min-height:44px; line-height:24px; }
  .util .hours{ padding:6px 0 8px; }
  .foot li{ margin:0; }
  .foot li a{ display:inline-block; padding:9px 0; min-height:40px; line-height:22px; }
  .foot address a{ display:inline-block; padding:6px 0; min-height:34px; }
}

/* The telephone and email links that sit inline inside the contact table, the
   footer block and the breadcrumb still had text-height hit areas. They are
   the most likely thing to be tapped on this site, so they get one too. */
@media (max-width:900px){
  .creds dd a,
  .foot p a,
  .foot address a,
  .crumb a{
    display:inline-block; padding:8px 0; min-height:38px; line-height:22px;
  }
  .creds dd{ padding-top:6px; padding-bottom:6px; }
}
