/* =========================================================
   Dr. Debabrata Nandi — Paediatric Cardiologist
   Design system & global styles
   Palette: trust-teal + warm coral heart + soft cream
   ========================================================= */

:root {
  /* Brand */
  --teal-900: #0b3d47;
  --teal-800: #0f5563;
  --teal-700: #12707f;
  --teal-600: #158a99;
  --teal-500: #1aa6b3;
  --teal-300: #7fd1d6;
  --teal-100: #d6f1f2;
  --teal-50:  #eefafa;

  --coral-600: #e2504e;
  --coral-500: #f0625f;
  --coral-400: #ff7d78;
  --coral-100: #ffe4e2;

  --gold: #f2b23e;

  --ink: #10262b;
  --ink-70: #3a4c50;
  --ink-50: #617275;
  --cream: #fbf8f3;
  --cream-2: #f4eee4;
  --white: #ffffff;
  --line: #e7e0d4;

  --shadow-sm: 0 2px 10px rgba(11, 61, 71, .06);
  --shadow-md: 0 12px 34px rgba(11, 61, 71, .10);
  --shadow-lg: 0 26px 60px rgba(11, 61, 71, .16);

  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 28px;
  --radius-xl: 40px;

  --maxw: 1200px;
  --gutter: clamp(18px, 4vw, 48px);

  --font-head: "Fraunces", "Georgia", serif;
  --font-body: "Plus Jakarta Sans", "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --ease: cubic-bezier(.2, .7, .2, 1);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
/* default size for inline icon SVGs (specific containers override below) */
svg { display: inline-block; width: 1.05em; height: 1.05em; vertical-align: -0.16em; flex: none; }
.heartbeat { display: block; width: 100%; height: 40px; }
a { color: var(--teal-700); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--coral-500); }
ul { padding-left: 1.1em; }
h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 600; line-height: 1.12; color: var(--teal-900); letter-spacing: -.01em; }
h1 { font-size: clamp(2.1rem, 5.2vw, 4rem); }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.7rem); }
h3 { font-size: clamp(1.2rem, 2.2vw, 1.55rem); }
p { color: var(--ink-70); }
:lang(bn), .bn-text { font-family: "Noto Sans Bengali", var(--font-body); line-height: 1.9; }

/* ---------- layout helpers ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(56px, 8vw, 110px); }
.section--tint { background: var(--white); }
.section--deep { background: linear-gradient(160deg, var(--teal-900), var(--teal-800)); color: #dff3f4; }
.section--deep h2, .section--deep h3 { color: #fff; }
.section--deep p { color: #bfe2e5; }
.center { text-align: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: .5em;
  font-size: .8rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: var(--teal-600); margin-bottom: 14px;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--coral-500); border-radius: 2px; }
.section--deep .eyebrow { color: var(--teal-300); }
.lead { font-size: 1.12rem; color: var(--ink-70); max-width: 62ch; }
.center .lead { margin-inline: auto; }
.grid { display: grid; gap: clamp(18px, 3vw, 32px); }
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- buttons ---------- */
.btn {
  --bg: var(--coral-500);
  display: inline-flex; align-items: center; gap: .55em;
  padding: 14px 26px; border-radius: 999px; font-weight: 700; font-size: .98rem;
  background: var(--bg); color: #fff; border: 2px solid transparent; cursor: pointer;
  box-shadow: 0 10px 24px rgba(240, 98, 95, .28);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-3px); color: #fff; box-shadow: 0 16px 32px rgba(240, 98, 95, .36); }
.btn--teal { --bg: var(--teal-600); box-shadow: 0 10px 24px rgba(21, 138, 153, .28); }
.btn--teal:hover { box-shadow: 0 16px 32px rgba(21, 138, 153, .36); }
.btn--ghost { background: transparent; color: var(--teal-800); border-color: var(--teal-300); box-shadow: none; }
.btn--ghost:hover { background: var(--teal-50); color: var(--teal-800); box-shadow: none; }
.btn--light { background: #fff; color: var(--teal-800); box-shadow: var(--shadow-md); }
.btn--light:hover { color: var(--teal-800); }
.btn--lg { padding: 17px 34px; font-size: 1.05rem; }

/* ---------- top utility + header ---------- */
.topbar {
  background: var(--teal-900); color: #cfeaec; font-size: .82rem;
}
.topbar .container { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding-block: 8px; }
.topbar a { color: #cfeaec; }
.topbar a:hover { color: #fff; }
.topbar__left { display: flex; gap: 20px; flex-wrap: wrap; }
.topbar__left span { display: inline-flex; align-items: center; gap: 6px; }
.topbar__right { display: flex; align-items: center; gap: 14px; }
.lang-toggle { display: inline-flex; border: 1px solid rgba(255,255,255,.25); border-radius: 999px; overflow: hidden; }
.lang-toggle a { padding: 3px 12px; font-weight: 700; letter-spacing: .02em; }
.lang-toggle a.active { background: var(--coral-500); color: #fff; }

.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(251, 248, 243, .88); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s var(--ease), background .3s var(--ease);
}
.site-header.scrolled { box-shadow: var(--shadow-sm); background: rgba(255,255,255,.95); }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-block: 12px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand__logo { width: 46px; height: 46px; flex: none; }
.brand__text { display: flex; flex-direction: column; line-height: 1.05; }
.brand__name { font-family: var(--font-head); font-weight: 600; font-size: 1.18rem; color: var(--teal-900); }
.brand__tag { font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; color: var(--teal-600); font-weight: 700; }
.nav__menu { display: flex; align-items: center; gap: 4px; list-style: none; padding: 0; margin: 0; }
.nav__menu > li { position: relative; }
.nav__menu a { display: block; padding: 10px 14px; font-weight: 600; font-size: .95rem; color: var(--ink); border-radius: 10px; }
.nav__menu a:hover, .nav__menu a[aria-current="page"] { color: var(--teal-700); background: var(--teal-50); }
.nav__cta { display: flex; align-items: center; gap: 10px; }
.has-sub > a::after { content: "⌄"; margin-left: 5px; font-size: .8em; opacity: .6; }
.submenu {
  position: absolute; top: calc(100% + 8px); left: 0; min-width: 260px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md); padding: 8px; list-style: none; margin: 0;
  opacity: 0; visibility: hidden; transform: translateY(8px); transition: .22s var(--ease);
}
.has-sub:hover .submenu, .has-sub:focus-within .submenu { opacity: 1; visibility: visible; transform: none; }
.submenu a { padding: 9px 12px; font-size: .9rem; }
.nav__toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav__toggle span { display: block; width: 24px; height: 2px; background: var(--teal-900); border-radius: 2px; transition: .3s var(--ease); }
.nav__toggle span + span { margin-top: 5px; }

/* ---------- hero ---------- */
.hero { position: relative; overflow: hidden; background: radial-gradient(120% 120% at 85% 0%, var(--teal-50), var(--cream) 55%); }
.hero::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 12% 20%, rgba(26,166,179,.10), transparent 32%),
                    radial-gradient(circle at 90% 80%, rgba(240,98,95,.08), transparent 34%);
  pointer-events: none;
}
.hero__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(24px, 4vw, 60px); align-items: center; padding-block: clamp(40px, 6vw, 84px); position: relative; }
.hero__badge { display: inline-flex; align-items: center; gap: 8px; background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-sm); padding: 7px 15px; border-radius: 999px; font-size: .82rem; font-weight: 700; color: var(--teal-700); margin-bottom: 20px; }
.hero__badge b { color: var(--coral-500); }
.hero h1 { margin-bottom: 18px; }
.hero h1 .accent { color: var(--teal-600); }
.hero__sub { font-size: 1.14rem; max-width: 52ch; margin-bottom: 28px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 30px; }
.hero__stats { display: flex; gap: clamp(16px, 3vw, 40px); flex-wrap: wrap; }
.hero__stat b { display: block; font-family: var(--font-head); font-size: 1.9rem; color: var(--teal-800); line-height: 1; }
.hero__stat span { font-size: .82rem; color: var(--ink-50); font-weight: 600; }
.hero__media { position: relative; }
.hero__portrait {
  position: relative; border-radius: 30px 30px 30px 90px; overflow: hidden;
  box-shadow: var(--shadow-lg); aspect-ratio: 4/4.4; background: var(--teal-100);
  border: 8px solid #fff;
}
.hero__portrait img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.hero__float {
  position: absolute; background: #fff; border-radius: 16px; box-shadow: var(--shadow-md);
  padding: 12px 16px; display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: .85rem; color: var(--teal-900);
}
.hero__float .ico { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 10px; background: var(--teal-50); color: var(--teal-600); }
.hero__float--tl { top: 18px; left: -26px; animation: floaty 5s ease-in-out infinite; }
.hero__float--br { bottom: 26px; right: -22px; animation: floaty 6s ease-in-out .8s infinite; }
.hero__float small { display: block; font-weight: 600; color: var(--ink-50); font-size: .72rem; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }

/* heartbeat line */
.heartbeat { display: block; width: 100%; height: 40px; color: var(--coral-500); }
.heartbeat path { stroke-dasharray: 1000; stroke-dashoffset: 1000; animation: draw 3.4s var(--ease) forwards infinite; }
@keyframes draw { to { stroke-dashoffset: 0; } }

/* ---------- trust bar / featured ---------- */
.trust { background: #fff; border-block: 1px solid var(--line); }
.marquee { overflow: hidden; position: relative; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee__track { display: flex; gap: 56px; width: max-content; animation: scrollx 34s linear infinite; align-items: center; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__track a { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; color: var(--ink-50); filter: grayscale(1); opacity: .7; transition: .3s var(--ease); font-size: .98rem; }
.marquee__track a:hover { filter: none; opacity: 1; color: var(--teal-700); }
.marquee__track .logo-chip { display: inline-grid; place-items: center; width: 30px; height: 30px; border-radius: 8px; background: var(--teal-50); color: var(--teal-600); font-family: var(--font-head); }
@keyframes scrollx { to { transform: translateX(-50%); } }

/* ---------- cards / services ---------- */
.cards { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 26px; box-shadow: var(--shadow-sm); position: relative; overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.card::after { content: ""; position: absolute; left: 0; top: 0; height: 4px; width: 0; background: linear-gradient(90deg, var(--teal-500), var(--coral-500)); transition: width .4s var(--ease); }
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--teal-300); }
.card:hover::after { width: 100%; }
.card__ico { width: 56px; height: 56px; border-radius: 16px; display: grid; place-items: center; background: linear-gradient(150deg, var(--teal-50), var(--teal-100)); color: var(--teal-600); margin-bottom: 18px; }
.card__ico svg { width: 28px; height: 28px; }
.card h3 { margin-bottom: 8px; }
.card p { font-size: .96rem; margin-bottom: 14px; }
.card .more { font-weight: 700; font-size: .9rem; display: inline-flex; align-items: center; gap: 6px; }
.card .more::after { content: "→"; transition: transform .25s var(--ease); }
.card:hover .more::after { transform: translateX(4px); }

/* ---------- about / feature split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 64px); align-items: center; }
.split--rev { direction: rtl; } .split--rev > * { direction: ltr; }
.media-frame { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); border: 6px solid #fff; background: var(--teal-100); }
.media-frame img { width: 100%; height: 100%; object-fit: cover; }
.checklist { list-style: none; padding: 0; margin: 22px 0 0; display: grid; gap: 12px; }
.checklist li { display: flex; gap: 12px; align-items: flex-start; font-weight: 600; color: var(--ink-70); }
.checklist li::before { content: "✓"; flex: none; width: 24px; height: 24px; border-radius: 50%; background: var(--teal-50); color: var(--teal-600); display: grid; place-items: center; font-size: .8rem; font-weight: 800; margin-top: 2px; }

/* ---------- stat band ---------- */
.statband { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px,1fr)); gap: 24px; text-align: center; }
.statband .num { font-family: var(--font-head); font-size: clamp(2.2rem, 5vw, 3.2rem); color: #fff; line-height: 1; }
.statband .lbl { color: #bfe2e5; font-weight: 600; margin-top: 6px; font-size: .95rem; }

/* ---------- video carousel ---------- */
.vcarousel { position: relative; }
.vtrack { display: flex; gap: 22px; overflow-x: auto; scroll-snap-type: x mandatory; padding: 6px 4px 20px; scroll-behavior: smooth; scrollbar-width: none; }
.vtrack::-webkit-scrollbar { display: none; }
.vslide { scroll-snap-align: center; flex: 0 0 min(560px, 84vw); }
.vframe { position: relative; aspect-ratio: 16/9; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); background: #04252b; cursor: pointer; border: 1px solid rgba(255,255,255,.1); }
.vframe img, .vframe iframe { width: 100%; height: 100%; object-fit: cover; border: 0; }
.vframe .play { position: absolute; inset: 0; display: grid; place-items: center; background: linear-gradient(180deg, rgba(4,37,43,.05), rgba(4,37,43,.55)); transition: background .3s var(--ease); }
.vframe:hover .play { background: linear-gradient(180deg, rgba(4,37,43,.1), rgba(4,37,43,.65)); }
.vframe .play span { width: 66px; height: 66px; border-radius: 50%; background: var(--coral-500); display: grid; place-items: center; box-shadow: 0 10px 28px rgba(240,98,95,.5); transition: transform .3s var(--ease); }
.vframe:hover .play span { transform: scale(1.08); }
.vframe .play span::before { content: ""; border-left: 20px solid #fff; border-top: 12px solid transparent; border-bottom: 12px solid transparent; margin-left: 5px; }
.vcap { margin-top: 12px; font-weight: 700; color: #eaf7f8; font-size: .96rem; }
.vcap small { display: block; font-weight: 600; color: #8fc4c8; font-size: .8rem; margin-top: 2px; }
.section--deep .vcap { color: #eaf7f8; }
.carousel-nav { display: flex; gap: 10px; justify-content: center; margin-top: 14px; }
.carousel-nav button { width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--teal-300); background: #fff; color: var(--teal-700); font-size: 1.1rem; cursor: pointer; display: grid; place-items: center; transition: .25s var(--ease); }
.carousel-nav button:hover { background: var(--teal-600); color: #fff; border-color: var(--teal-600); }
.section--deep .carousel-nav button { background: rgba(255,255,255,.08); color: #fff; border-color: rgba(255,255,255,.3); }
.section--deep .carousel-nav button:hover { background: var(--coral-500); border-color: var(--coral-500); }

/* ---------- gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 14px; }
.gallery a { border-radius: var(--radius-sm); overflow: hidden; box-shadow: var(--shadow-sm); aspect-ratio: 1/1; background: var(--teal-100); }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.gallery a:hover img { transform: scale(1.08); }

/* ---------- testimonials ---------- */
.quotes { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.quote { background: #fff; border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow-sm); border: 1px solid var(--line); position: relative; }
.quote__stars { color: var(--gold); letter-spacing: 2px; margin-bottom: 10px; }
.quote p { color: var(--ink); font-size: 1rem; }
.quote__by { margin-top: 16px; display: flex; align-items: center; gap: 12px; }
.quote__av { width: 44px; height: 44px; border-radius: 50%; background: var(--teal-100); color: var(--teal-700); display: grid; place-items: center; font-weight: 800; font-family: var(--font-head); }
.quote__by b { display: block; font-size: .95rem; color: var(--teal-900); }
.quote__by small { color: var(--ink-50); }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin-inline: auto; }
.faq details { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); margin-bottom: 12px; box-shadow: var(--shadow-sm); overflow: hidden; }
.faq summary { cursor: pointer; padding: 20px 24px; font-weight: 700; color: var(--teal-900); list-style: none; display: flex; justify-content: space-between; gap: 14px; align-items: center; font-size: 1.02rem; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.5rem; color: var(--teal-500); transition: transform .3s var(--ease); flex: none; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details[open] summary { color: var(--coral-500); }
.faq .faq__a { padding: 0 24px 22px; color: var(--ink-70); }

/* ---------- CTA band ---------- */
.ctaband { background: linear-gradient(135deg, var(--coral-500), var(--coral-600)); color: #fff; border-radius: var(--radius-xl); padding: clamp(34px, 6vw, 66px); text-align: center; position: relative; overflow: hidden; box-shadow: var(--shadow-lg); }
.ctaband::before { content: "♥"; position: absolute; font-size: 320px; right: -40px; top: -80px; opacity: .08; }
.ctaband h2 { color: #fff; margin-bottom: 14px; }
.ctaband p { color: rgba(255,255,255,.92); max-width: 56ch; margin: 0 auto 26px; }
.ctaband .btn--light { color: var(--coral-600); }

/* ---------- blog cards ---------- */
.postgrid { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.post { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.post:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.post__img { aspect-ratio: 16/10; background: var(--teal-100); overflow: hidden; }
.post__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.post:hover .post__img img { transform: scale(1.06); }
.post__body { padding: 22px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.post__tag { font-size: .74rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--coral-500); margin-bottom: 8px; }
.post__body h3 { font-size: 1.2rem; margin-bottom: 8px; }
.post__body p { font-size: .93rem; flex: 1; }
.post__meta { margin-top: 14px; font-size: .82rem; color: var(--ink-50); display: flex; gap: 12px; }

/* ---------- article ---------- */
.article { max-width: 780px; margin-inline: auto; }
.article__hero { border-radius: var(--radius-lg); overflow: hidden; margin: 24px 0 30px; box-shadow: var(--shadow-md); aspect-ratio: 16/8; background: var(--teal-100); }
.article__hero img { width: 100%; height: 100%; object-fit: cover; }
.prose > * + * { margin-top: 1.15em; }
.prose h2 { margin-top: 1.6em; font-size: 1.6rem; }
.prose h3 { margin-top: 1.3em; }
.prose p, .prose li { color: var(--ink-70); font-size: 1.05rem; }
.prose ul { display: grid; gap: 8px; }
.prose blockquote { border-left: 4px solid var(--coral-400); padding: 6px 20px; background: var(--coral-100); border-radius: 8px; font-style: italic; color: var(--ink); }
.prose .embed { position: relative; aspect-ratio: 16/9; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); margin: 1.5em 0; background: #04252b; }
.prose .embed iframe { width: 100%; height: 100%; border: 0; }
.callout { background: var(--teal-50); border: 1px solid var(--teal-100); border-radius: var(--radius); padding: 22px 24px; }
.callout b { color: var(--teal-800); }

/* ---------- breadcrumb ---------- */
.crumbs { font-size: .85rem; color: var(--ink-50); padding-block: 16px; }
.crumbs a { color: var(--teal-700); font-weight: 600; }
.crumbs span { margin-inline: 6px; opacity: .5; }

/* ---------- page hero (inner) ---------- */
.page-hero { background: radial-gradient(120% 120% at 80% 0%, var(--teal-50), var(--cream) 60%); padding-block: clamp(32px, 5vw, 60px) clamp(28px, 4vw, 46px); border-bottom: 1px solid var(--line); }
.page-hero h1 { margin-bottom: 12px; }
.page-hero p { max-width: 60ch; }

/* ---------- contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 4vw, 48px); }
.info-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow-sm); display: flex; gap: 16px; align-items: flex-start; margin-bottom: 16px; }
.info-card .ico { width: 48px; height: 48px; flex: none; border-radius: 14px; background: var(--teal-50); color: var(--teal-600); display: grid; place-items: center; }
.info-card b { color: var(--teal-900); display: block; margin-bottom: 3px; }
.info-card p, .info-card a { font-size: .95rem; color: var(--ink-70); }
form.enquiry { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-sm); }
form.enquiry label { display: block; font-weight: 700; font-size: .85rem; margin-bottom: 6px; color: var(--teal-900); }
form.enquiry .field { margin-bottom: 16px; }
form.enquiry input, form.enquiry select, form.enquiry textarea {
  width: 100%; padding: 12px 14px; border: 1px solid var(--line); border-radius: 12px; font: inherit; font-size: .95rem; background: var(--cream); color: var(--ink); transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
form.enquiry input:focus, form.enquiry select:focus, form.enquiry textarea:focus { outline: none; border-color: var(--teal-500); box-shadow: 0 0 0 3px var(--teal-100); background: #fff; }
.map-embed { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--line); aspect-ratio: 16/8; }
.map-embed iframe { width: 100%; height: 100%; border: 0; }

/* ---------- footer ---------- */
.site-footer { background: var(--teal-900); color: #bfe2e5; padding-block: clamp(48px, 6vw, 76px) 0; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: clamp(24px, 4vw, 44px); padding-bottom: 44px; }
.site-footer h4 { color: #fff; font-family: var(--font-body); font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 16px; }
.site-footer a { color: #bfe2e5; }
.site-footer a:hover { color: #fff; }
.site-footer ul { list-style: none; padding: 0; display: grid; gap: 10px; font-size: .93rem; }
.footer-brand .brand__name { color: #fff; }
.footer-brand p { color: #9fcfd3; font-size: .92rem; margin-top: 14px; max-width: 36ch; }
.socials { display: flex; gap: 10px; margin-top: 18px; }
.socials a { width: 40px; height: 40px; border-radius: 12px; background: rgba(255,255,255,.08); display: grid; place-items: center; color: #cfeaec; transition: .25s var(--ease); }
.socials a:hover { background: var(--coral-500); color: #fff; transform: translateY(-3px); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding-block: 20px; display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; font-size: .84rem; color: #8fc4c8; }

/* ---------- floating actions ---------- */
.fab { position: fixed; right: 18px; bottom: 18px; z-index: 70; display: flex; flex-direction: column; gap: 12px; }
.fab a { width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center; box-shadow: var(--shadow-md); color: #fff; transition: transform .25s var(--ease); }
.fab a:hover { transform: scale(1.08); color: #fff; }
.fab .wa { background: #25d366; }
.fab .call { background: var(--teal-600); }

/* ---------- lightbox ---------- */
.lb { position: fixed; inset: 0; background: rgba(4,37,43,.88); z-index: 200; display: none; place-items: center; padding: 20px; }
.lb.open { display: grid; }
.lb .box { width: min(920px, 94vw); aspect-ratio: 16/9; }
.lb iframe { width: 100%; height: 100%; border: 0; border-radius: 14px; }
.lb .close { position: absolute; top: 18px; right: 22px; color: #fff; font-size: 2rem; background: none; border: 0; cursor: pointer; }

/* ---------- responsive ---------- */
@media (max-width: 960px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__media { max-width: 460px; margin-inline: auto; order: -1; }
  .split, .split--rev, .contact-grid { grid-template-columns: 1fr; direction: ltr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .nav__menu, .nav__cta .btn--ghost { display: none; }
  .nav__toggle { display: block; }
  .site-header.open .nav__menu {
    display: flex; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; align-items: stretch;
    background: #fff; padding: 12px; gap: 2px; box-shadow: var(--shadow-md); border-bottom: 1px solid var(--line);
  }
  .site-header.open .submenu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: 0; padding-left: 14px; }
  .nav__menu a { padding: 12px 14px; }
}
@media (max-width: 620px) {
  body { font-size: 16px; }
  .topbar__left span:nth-child(2) { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero__float--tl { left: 6px; } .hero__float--br { right: 6px; }
  .ctaband::before { display: none; }
}
/* ---------- inline icon sizing ---------- */
.topbar svg { width: 14px; height: 14px; vertical-align: -2px; }
.btn svg { width: 18px; height: 18px; }
.nav__cta .btn svg { width: 16px; height: 16px; }
.site-header .nav__cta .btn--ghost svg { width: 15px; height: 15px; }
.hero__badge svg { width: 16px; height: 16px; }
.site-footer ul svg { width: 15px; height: 15px; vertical-align: -3px; margin-right: 4px; }
.footer-bottom svg { width: 14px; height: 14px; }
.crumbs svg { width: 14px; height: 14px; }
.info-card .ico svg { width: 22px; height: 22px; }
.hero__float .ico svg { width: 18px; height: 18px; }
.fab a svg { width: 24px; height: 24px; }
.socials a svg { width: 18px; height: 18px; }
.card__ico svg { width: 28px; height: 28px; }

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