:root {
  --wine-950: #420913;
  --wine-900: #64101c;
  --wine-800: #7b1724;
  --wine-700: #8b1826;
  --wine-600: #a82435;
  --coral: #d4535d;
  --ivory: #fff9f1;
  --cream: #f8eee4;
  --sand: #ead6c5;
  --ink: #1b2524;
  --muted: #687471;
  --teal: #456e68;
  --teal-light: #dce9e5;
  --gold: #e8b878;
  --white: #fff;
  --shadow-sm: 0 12px 30px rgba(66, 9, 19, .09);
  --shadow-lg: 0 30px 70px rgba(40, 13, 17, .18);
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 36px;
  --shell: min(1180px, calc(100vw - 40px));
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 100px; }
body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body.nav-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, summary { font: inherit; }
button { color: inherit; }
address { font-style: normal; }
.shell { width: var(--shell); margin-inline: auto; }
.section-pad { padding: 104px 0; }
.section-soft { background: #f6eee7; }
.section-dark { background: #17201f; color: var(--white); }
.sr-only {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0);
  white-space: nowrap; border: 0;
}
.skip-link {
  position: fixed;
  left: 20px; top: 12px;
  z-index: 1000;
  padding: 10px 16px;
  color: var(--white);
  background: var(--wine-900);
  border-radius: 8px;
  transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }

.notice-bar { background: var(--wine-950); color: #fff7ed; font-size: 13px; }
.notice-inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  letter-spacing: .01em;
}
.notice-inner a { color: #ffd6a4; font-weight: 800; }
.notice-separator { width: 4px; height: 4px; border-radius: 50%; background: var(--gold); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 249, 241, .93);
  border-bottom: 1px solid rgba(123, 23, 36, .08);
  backdrop-filter: blur(18px);
  transition: box-shadow .25s ease, background .25s ease;
}
.site-header.is-scrolled { box-shadow: 0 12px 30px rgba(37, 14, 18, .09); background: rgba(255, 249, 241, .98); }
.header-inner { min-height: 78px; display: flex; align-items: center; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 11px; min-width: 278px; }
.brand img { width: 52px; height: 52px; }
.brand span { display: flex; flex-direction: column; line-height: 1.05; }
.brand strong { color: var(--wine-800); font-size: 20px; letter-spacing: .15em; }
.brand small { margin-top: 6px; color: var(--muted); font-size: 11px; font-weight: 650; letter-spacing: .035em; }
.main-nav { display: flex; align-items: center; justify-content: center; gap: 25px; margin-left: auto; }
.main-nav a { color: #3f4b48; font-size: 14px; font-weight: 700; transition: color .2s ease; }
.main-nav a:hover, .main-nav a:focus-visible { color: var(--wine-700); }
.menu-toggle { display: none; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 23px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .01em;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button:focus-visible, button:focus-visible, a:focus-visible, summary:focus-visible { outline: 3px solid rgba(212, 83, 93, .38); outline-offset: 3px; }
.button-primary { color: var(--white); background: linear-gradient(135deg, var(--wine-700), var(--wine-600)); box-shadow: 0 12px 24px rgba(139, 24, 38, .2); }
.button-primary:hover { box-shadow: 0 16px 32px rgba(139, 24, 38, .28); }
.button-ghost { color: var(--wine-800); border-color: rgba(123, 23, 36, .25); background: rgba(255,255,255,.52); }
.button-ivory { color: var(--wine-800); background: var(--ivory); }
.button-outline-light { color: var(--white); border-color: rgba(255,255,255,.46); background: transparent; }
.button-small { min-height: 44px; padding-inline: 18px; font-size: 13px; }
.header-cta { white-space: nowrap; }
.text-link { color: var(--wine-700); font-weight: 850; border-bottom: 1px solid rgba(139, 24, 38, .25); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--wine-700);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.eyebrow-light { color: #ffd3ac; }
.pulse-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--coral); box-shadow: 0 0 0 6px rgba(212,83,93,.13); }

.hero { position: relative; min-height: 760px; overflow: hidden; isolation: isolate; }
.hero-background {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: linear-gradient(90deg, rgba(255,249,241,.98) 0%, rgba(255,249,241,.92) 46%, rgba(255,249,241,.52) 100%), url('/assets/brand/premium-background.webp') center / cover no-repeat;
}
.hero::after {
  content: "";
  position: absolute;
  width: 560px; height: 560px;
  right: -230px; top: -240px;
  z-index: -1;
  border: 1px solid rgba(139, 24, 38, .1);
  border-radius: 50%;
  box-shadow: 0 0 0 80px rgba(255,255,255,.18), 0 0 0 150px rgba(69,110,104,.04);
}
.hero-grid { display: grid; grid-template-columns: .94fr 1.06fr; align-items: center; gap: 68px; min-height: 560px; }
.hero-copy h1 { margin: 22px 0 22px; max-width: 720px; font-family: Georgia, "Times New Roman", serif; font-size: clamp(54px, 6vw, 86px); line-height: .99; letter-spacing: -.05em; font-weight: 700; }
.hero-copy h1 span { color: var(--wine-700); }
.hero-lead { max-width: 625px; margin: 0; color: #4d5a57; font-size: 18px; line-height: 1.75; }
.hero-bengali { margin: 14px 0 0; color: var(--teal); font-size: 18px; font-weight: 750; }
.hero-actions { display: flex; gap: 12px; margin: 30px 0 34px; flex-wrap: wrap; }
.hero-actions .button-primary span { font-size: 9px; margin-right: 9px; color: #9be6c5; }
.hero-proof { display: flex; align-items: stretch; gap: 0; }
.hero-proof div { min-width: 132px; padding-right: 20px; margin-right: 20px; border-right: 1px solid rgba(123,23,36,.16); }
.hero-proof div:last-child { border-right: 0; margin-right: 0; }
.hero-proof strong { display: block; color: var(--wine-800); font-family: Georgia, serif; font-size: 25px; line-height: 1.1; }
.hero-proof strong span { color: #d99d39; font-size: 18px; }
.hero-proof small { display: block; margin-top: 6px; color: var(--muted); font-size: 11px; line-height: 1.35; }

.hero-visual { position: relative; min-height: 590px; }
.hero-photo { position: absolute; overflow: hidden; background: #ddd; box-shadow: var(--shadow-lg); }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-photo-main { inset: 24px 0 52px 78px; border-radius: 190px 30px 30px 30px; border: 8px solid rgba(255,255,255,.72); background: #701421; }
.hero-photo-main img { object-fit: contain; object-position: center bottom; }
.hero-photo-side { left: 0; bottom: 0; width: 210px; height: 260px; border: 7px solid var(--ivory); border-radius: 28px; }
.hero-photo-side img { object-position: center; }
.hero-badge {
  position: absolute;
  right: -10px; bottom: 22px;
  display: flex; align-items: center; gap: 12px;
  padding: 14px 17px;
  border: 1px solid rgba(123,23,36,.1);
  border-radius: 16px;
  background: rgba(255,249,241,.95);
  box-shadow: var(--shadow-sm);
}
.hero-badge img { width: 42px; height: 42px; }
.hero-badge span { display: flex; flex-direction: column; line-height: 1.15; }
.hero-badge strong { color: var(--wine-800); font-size: 13px; }
.hero-badge small { margin-top: 5px; color: var(--muted); font-size: 10px; }

.quick-care { position: relative; z-index: 2; margin-top: -31px; }
.quick-care-grid { display: grid; grid-template-columns: repeat(4, 1fr); background: var(--wine-800); border-radius: 24px; box-shadow: var(--shadow-lg); overflow: hidden; }
.quick-care-grid > div { display: grid; grid-template-columns: auto 1fr; column-gap: 13px; padding: 25px 23px; color: var(--white); border-right: 1px solid rgba(255,255,255,.13); }
.quick-care-grid > div:last-child { border-right: 0; }
.mini-icon { grid-row: 1 / span 2; width: 39px; height: 39px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.32); border-radius: 50%; color: #ffd1a2; font-size: 10px; font-weight: 900; }
.quick-care-grid strong { font-size: 14px; }
.quick-care-grid small { color: #ead8d7; font-size: 11px; }

.section-heading { max-width: 690px; margin-bottom: 50px; }
.section-heading h2, .about-copy h2, .contact-copy h2, .review-grid h2 { margin: 14px 0 16px; font-family: Georgia, "Times New Roman", serif; font-size: clamp(38px, 5vw, 58px); line-height: 1.08; letter-spacing: -.035em; }
.section-heading p, .about-copy p, .review-grid p { margin: 0; color: var(--muted); font-size: 16px; line-height: 1.8; }
.heading-split { max-width: none; display: grid; grid-template-columns: 1fr .72fr; align-items: end; gap: 80px; }
.heading-split p { padding-bottom: 7px; }
.section-heading-light p { color: #bac6c3; }

.speciality-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.speciality-card { min-height: 218px; padding: 26px; border: 1px solid rgba(123,23,36,.08); border-radius: var(--radius-sm); background: rgba(255,255,255,.74); transition: transform .25s ease, box-shadow .25s ease, border .25s ease; }
.speciality-card:hover { transform: translateY(-5px); border-color: rgba(123,23,36,.18); box-shadow: var(--shadow-sm); }
.speciality-card > span { width: 44px; height: 44px; display: grid; place-items: center; color: var(--wine-800); border-radius: 14px; background: #f7dfdc; font-size: 12px; font-weight: 900; letter-spacing: .08em; }
.speciality-card:nth-child(3n) > span { color: #355d57; background: var(--teal-light); }
.speciality-card h3 { margin: 21px 0 8px; font-family: Georgia, serif; font-size: 21px; line-height: 1.2; }
.speciality-card p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.65; }

.doctors-section { background: var(--ivory); }
.schedule-tools { display: flex; flex-wrap: wrap; gap: 8px; margin: -14px 0 34px; }
.filter-chip { min-height: 42px; padding: 0 17px; border: 1px solid rgba(123,23,36,.16); border-radius: 999px; background: transparent; color: #4c5855; font-size: 13px; font-weight: 800; cursor: pointer; }
.filter-chip.is-active { color: var(--white); border-color: var(--wine-700); background: var(--wine-700); }
.doctor-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.doctor-card { display: flex; flex-direction: column; min-height: 328px; padding: 25px; border: 1px solid rgba(123,23,36,.1); border-radius: var(--radius-md); background: #fffdf9; box-shadow: 0 8px 20px rgba(66,9,19,.04); transition: transform .25s ease, box-shadow .25s ease; }
.doctor-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.doctor-card[hidden] { display: none; }
.doctor-top { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.doctor-monogram { width: 50px; height: 50px; display: grid; place-items: center; border-radius: 16px; color: var(--white); background: linear-gradient(135deg, var(--wine-700), var(--coral)); font-family: Georgia, serif; font-weight: 700; }
.doctor-tag { color: var(--teal); background: #e5efec; border-radius: 999px; padding: 6px 10px; font-size: 10px; font-weight: 850; letter-spacing: .07em; text-transform: uppercase; }
.doctor-card h3 { margin: 20px 0 6px; color: var(--wine-800); font-family: Georgia, serif; font-size: 23px; line-height: 1.15; }
.doctor-role { margin: 0; color: var(--ink); font-size: 13px; font-weight: 800; }
.doctor-qual { margin: 9px 0 18px; color: var(--muted); font-size: 12px; }
.doctor-time { margin-top: auto; display: flex; justify-content: space-between; gap: 10px; padding-top: 16px; border-top: 1px solid #eaded2; font-size: 12px; }
.doctor-time strong { color: var(--wine-700); }
.doctor-time span { color: var(--muted); text-align: right; }
.schedule-note { margin: 24px 0 0; padding: 14px 18px; color: #615d58; background: #f4e9dd; border-left: 4px solid var(--wine-700); border-radius: 0 12px 12px 0; font-size: 12px; }
.schedule-note a { color: var(--wine-700); font-weight: 850; }

.gallery-section { position: relative; overflow: hidden; }
.gallery-section::before { content: ""; position: absolute; left: -220px; top: -260px; width: 600px; height: 600px; border-radius: 50%; border: 1px solid rgba(246,197,139,.12); box-shadow: 0 0 0 80px rgba(255,255,255,.015); }
.gallery-grid { position: relative; display: grid; grid-template-columns: 1.35fr 1fr 1fr; grid-template-rows: 245px 245px; gap: 14px; }
.gallery-grid figure { position: relative; margin: 0; overflow: hidden; border-radius: 20px; background: #263230; }
.gallery-grid .gallery-large { grid-row: 1 / span 2; }
.gallery-grid button { width: 100%; height: 100%; padding: 0; border: 0; background: none; cursor: zoom-in; }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gallery-grid figure:hover img { transform: scale(1.035); }
.gallery-grid figcaption { position: absolute; left: 14px; bottom: 14px; padding: 7px 10px; border-radius: 10px; color: #fff; background: rgba(22,30,29,.82); font-size: 11px; font-weight: 800; pointer-events: none; }

.about-grid { display: grid; grid-template-columns: .78fr 1.22fr; align-items: center; gap: 90px; }
.about-visual { position: relative; min-height: 610px; }
.about-visual > img { width: 88%; height: 610px; object-fit: cover; object-position: center; border-radius: 170px 24px 24px 24px; box-shadow: var(--shadow-lg); }
.about-seal { position: absolute; right: 0; bottom: 48px; width: 145px; height: 145px; display: grid; place-content: center; text-align: center; color: var(--ivory); border: 8px solid var(--ivory); border-radius: 50%; background: var(--wine-700); box-shadow: var(--shadow-sm); }
.about-seal strong { font-family: Georgia, serif; font-size: 37px; line-height: 1; }
.about-seal span { margin-top: 4px; font-size: 11px; }
.about-copy p + p { margin-top: 16px; }
.check-list { margin: 26px 0; padding: 0; list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 14px 22px; }
.check-list li { position: relative; padding-left: 27px; color: #43504d; font-size: 13px; font-weight: 650; }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--white); background: var(--teal); width: 18px; height: 18px; display: grid; place-items: center; border-radius: 50%; font-size: 10px; }

.review-grid { display: grid; grid-template-columns: 1fr 330px; align-items: center; gap: 90px; }
.rating-card { padding: 30px; text-align: center; border: 1px solid rgba(123,23,36,.1); border-radius: var(--radius-md); background: rgba(255,255,255,.78); box-shadow: var(--shadow-sm); }
.stars { color: #df9e2c; font-size: 23px; letter-spacing: .12em; }
.rating-card > strong { display: block; margin-top: 7px; color: var(--wine-800); font-family: Georgia, serif; font-size: 34px; }
.rating-card > span { display: block; margin: 4px 0 22px; color: var(--muted); font-size: 11px; }

.faq-grid { display: grid; grid-template-columns: .66fr 1fr; gap: 100px; align-items: start; }
.faq-list { border-top: 1px solid #decabd; }
.faq-list details { border-bottom: 1px solid #decabd; }
.faq-list summary { position: relative; padding: 21px 42px 21px 0; list-style: none; cursor: pointer; color: #2c3936; font-family: Georgia, serif; font-size: 19px; font-weight: 700; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; right: 8px; top: 20px; width: 28px; height: 28px; display: grid; place-items: center; border: 1px solid rgba(123,23,36,.2); border-radius: 50%; color: var(--wine-700); font-family: ui-sans-serif, system-ui; font-weight: 500; }
.faq-list details[open] summary::after { content: "–"; background: var(--wine-700); color: #fff; }
.faq-list p { margin: -4px 40px 22px 0; color: var(--muted); font-size: 14px; line-height: 1.75; }
.faq-list a { color: var(--wine-700); font-weight: 800; }

.contact-section { position: relative; overflow: hidden; color: var(--white); background: linear-gradient(135deg, #5a0d19, var(--wine-700) 55%, #8f2532); }
.contact-section::before { content: ""; position: absolute; right: -140px; top: -260px; width: 660px; height: 660px; border-radius: 50%; border: 1px solid rgba(255,255,255,.1); box-shadow: 0 0 0 80px rgba(255,255,255,.025), 0 0 0 160px rgba(255,255,255,.018); }
.contact-grid { position: relative; display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 78px; }
.contact-copy h2 { max-width: 650px; font-size: clamp(42px, 5vw, 62px); }
.contact-copy > p { color: #ecd9d7; max-width: 600px; }
.contact-actions { display: flex; gap: 10px; margin: 28px 0; flex-wrap: wrap; }
.contact-copy address { display: flex; flex-direction: column; color: #ecd9d7; font-size: 13px; }
.contact-copy address strong { color: #fff; font-size: 15px; margin-bottom: 4px; }
.social-links { display: flex; gap: 20px; margin-top: 22px; }
.social-links a { color: #ffd4ae; font-size: 13px; font-weight: 800; }
.map-card { overflow: hidden; border-radius: var(--radius-md); background: #fff; box-shadow: 0 30px 70px rgba(36,4,10,.28); }
.map-card iframe { display: block; width: 100%; height: 420px; border: 0; background: #eadfd5; }
.map-link { display: flex; align-items: center; justify-content: space-between; padding: 17px 20px; color: var(--wine-800); font-size: 13px; font-weight: 850; }
.map-link strong { font-size: 22px; }

.site-footer { padding: 62px 0 100px; color: #d9e0de; background: #121918; }
.footer-grid { display: grid; grid-template-columns: 2fr .75fr .85fr 1fr; gap: 50px; padding-bottom: 42px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-brand img { width: 360px; filter: brightness(0) invert(1) sepia(.2); opacity: .92; }
.footer-brand p { color: #adb9b6; font-family: Georgia, serif; font-size: 17px; }
.footer-grid h2 { margin: 8px 0 16px; color: #fff; font-size: 13px; letter-spacing: .12em; text-transform: uppercase; }
.footer-grid > div:not(.footer-brand) { display: flex; flex-direction: column; align-items: flex-start; gap: 9px; }
.footer-grid a, .footer-grid span { color: #aeb9b6; font-size: 12px; }
.footer-grid a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; gap: 24px; padding-top: 24px; color: #83908d; font-size: 11px; }
.footer-bottom p { margin: 0; }
.footer-bottom strong { color: #d8b180; }
.medical-note { margin-top: 22px; color: #71807d; font-size: 10px; line-height: 1.6; }

.mobile-actions { display: none; }
.lightbox { max-width: min(1000px, 94vw); padding: 0; border: 0; border-radius: 20px; background: #121918; box-shadow: 0 30px 100px rgba(0,0,0,.55); }
.lightbox::backdrop { background: rgba(5,9,8,.84); backdrop-filter: blur(5px); }
.lightbox img { max-width: min(1000px, 94vw); max-height: 86vh; object-fit: contain; }
.lightbox-close { position: absolute; z-index: 2; right: 12px; top: 12px; width: 42px; height: 42px; border: 1px solid rgba(255,255,255,.22); border-radius: 50%; background: rgba(16,23,22,.76); color: #fff; font-size: 27px; cursor: pointer; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .65s ease, transform .65s ease; }
.reveal-delay { transition-delay: .12s; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1060px) {
  .header-cta { display: none; }
  .main-nav { gap: 19px; }
  .hero-grid { gap: 35px; }
  .hero-visual { min-height: 530px; }
  .hero-photo-main { left: 48px; }
  .speciality-grid { grid-template-columns: repeat(3, 1fr); }
  .doctor-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 820px) {
  :root { --shell: min(100% - 30px, 680px); }
  .section-pad { padding: 78px 0; }
  .notice-inner { justify-content: space-between; }
  .notice-inner span:nth-of-type(2), .notice-separator { display: none; }
  .header-inner { min-height: 70px; }
  .brand { min-width: 0; }
  .brand img { width: 46px; height: 46px; }
  .brand strong { font-size: 17px; }
  .brand small { font-size: 9px; }
  .menu-toggle { margin-left: auto; width: 43px; height: 43px; display: grid; align-content: center; gap: 5px; padding: 9px; border: 1px solid rgba(123,23,36,.14); border-radius: 12px; background: transparent; cursor: pointer; }
  .menu-toggle > span:not(.sr-only) { display: block; width: 100%; height: 2px; background: var(--wine-800); border-radius: 99px; }
  .main-nav { position: fixed; inset: 108px 15px auto; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 14px; margin: 0; border: 1px solid rgba(123,23,36,.1); border-radius: 18px; background: #fffaf3; box-shadow: var(--shadow-lg); }
  .main-nav.is-open { display: flex; }
  .main-nav a { padding: 13px 12px; border-bottom: 1px solid rgba(123,23,36,.08); }
  .main-nav a:last-child { border-bottom: 0; }
  .hero { padding-top: 72px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy h1 { font-size: clamp(48px, 13vw, 70px); }
  .hero-visual { min-height: 560px; }
  .quick-care { margin-top: 0; background: var(--wine-800); }
  .quick-care-grid { width: 100%; grid-template-columns: repeat(2, 1fr); border-radius: 0; box-shadow: none; }
  .quick-care-grid > div { border-bottom: 1px solid rgba(255,255,255,.13); }
  .heading-split { grid-template-columns: 1fr; gap: 8px; }
  .speciality-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 300px 230px 230px; }
  .gallery-grid .gallery-large { grid-column: 1 / span 2; grid-row: auto; }
  .about-grid { grid-template-columns: 1fr; gap: 58px; }
  .about-visual { max-width: 520px; }
  .review-grid { grid-template-columns: 1fr; gap: 35px; }
  .rating-card { max-width: 400px; }
  .faq-grid { grid-template-columns: 1fr; gap: 14px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-brand img { width: 310px; }
}

@media (max-width: 560px) {
  :root { --shell: calc(100vw - 26px); }
  html { scroll-padding-top: 80px; }
  body { padding-bottom: 64px; }
  .section-pad { padding: 66px 0; }
  .notice-inner { min-height: 34px; font-size: 10px; }
  .brand small { display: none; }
  .site-header { top: 0; }
  .main-nav { inset: 104px 13px auto; }
  .hero { min-height: auto; padding-top: 54px; }
  .hero-copy h1 { margin-top: 18px; font-size: 48px; }
  .hero-lead { font-size: 15px; }
  .hero-bengali { font-size: 16px; }
  .hero-actions { display: grid; grid-template-columns: 1fr 1fr; }
  .hero-actions .button { padding-inline: 13px; }
  .hero-proof { display: grid; grid-template-columns: repeat(3, 1fr); }
  .hero-proof div { min-width: 0; padding-right: 10px; margin-right: 10px; }
  .hero-proof strong { font-size: 21px; }
  .hero-proof small { font-size: 9px; }
  .hero-visual { min-height: 440px; }
  .hero-photo-main { inset: 12px 0 35px 27px; border-radius: 110px 22px 22px 22px; border-width: 5px; }
  .hero-photo-side { width: 132px; height: 170px; border-width: 5px; border-radius: 18px; }
  .hero-badge { right: -2px; bottom: 14px; padding: 10px; }
  .hero-badge img { width: 32px; height: 32px; }
  .hero-badge strong { font-size: 10px; }
  .hero-badge small { font-size: 8px; }
  .quick-care-grid { grid-template-columns: 1fr 1fr; }
  .quick-care-grid > div { padding: 18px 14px; }
  .quick-care-grid strong { font-size: 12px; }
  .quick-care-grid small { font-size: 9px; }
  .mini-icon { width: 33px; height: 33px; }
  .section-heading { margin-bottom: 36px; }
  .section-heading h2, .about-copy h2, .contact-copy h2, .review-grid h2 { font-size: 38px; }
  .section-heading p, .about-copy p, .review-grid p { font-size: 14px; }
  .speciality-grid { grid-template-columns: 1fr; }
  .speciality-card { min-height: 0; }
  .schedule-tools { flex-wrap: nowrap; overflow-x: auto; padding-bottom: 8px; scrollbar-width: none; }
  .schedule-tools::-webkit-scrollbar { display: none; }
  .filter-chip { flex: 0 0 auto; }
  .doctor-grid { grid-template-columns: 1fr; }
  .doctor-card { min-height: 300px; }
  .gallery-grid { grid-template-columns: 1fr; grid-template-rows: 290px repeat(4, 230px); }
  .gallery-grid .gallery-large { grid-column: auto; }
  .about-visual { min-height: 500px; }
  .about-visual > img { height: 500px; }
  .about-seal { width: 120px; height: 120px; }
  .check-list { grid-template-columns: 1fr; }
  .faq-list summary { font-size: 17px; }
  .contact-actions { display: grid; }
  .map-card iframe { height: 330px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 35px 20px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-grid > div:last-child { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; gap: 6px; }
  .mobile-actions { position: fixed; z-index: 120; left: 0; right: 0; bottom: 0; display: grid; grid-template-columns: 1fr 1.35fr; background: #fff; box-shadow: 0 -8px 24px rgba(41,12,17,.14); }
  .mobile-actions a { min-height: 64px; display: grid; place-items: center; color: var(--wine-800); font-size: 14px; font-weight: 900; }
  .mobile-actions a:last-child { color: #fff; background: #168a5b; }
}

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