/* ============================================================
   BARNOR MEMORIAL HOSPITAL — Stylesheet
   barnor.css  |  v3.1  |  Mobile-First
   ─────────────────────────────────────────────────────────────
   Strategy: All base styles target mobile (≥320px).
   @media (min-width: 600px)  → small tablet
   @media (min-width: 768px)  → tablet
   @media (min-width: 1024px) → desktop
   @media (min-width: 1200px) → wide desktop
   ─────────────────────────────────────────────────────────────
   TABLE OF CONTENTS
   01. Brand Tokens
   02. Reset & Base
   03. Layout
   04. Typography
   05. Buttons
   06. Announcement Bar
   07. Top Bar (desktop only)
   08. Navbar
   09. Mobile Nav Drawer
   10. Hero
   11. Trust Strip
   12. Section Shared
   13. Departments
   14. Gallery
   15. About
   16. Doctors
   17. Testimonials
   18. Heritage
   19. Insurance
   20. Contact & Map
   21. Footer
   22. Lightbox Ad
   23. Scroll Reveal
   24. Back to Top & Toast
   25. Tablet  ≥ 600px
   26. Tablet  ≥ 768px
   27. Desktop ≥ 1024px
   28. Wide    ≥ 1200px
   ============================================================ */


/* ============================================================
   01. BRAND TOKENS
   ============================================================ */
:root {
  --teal-900: #004D48;
  --teal-800: #006B65;
  --teal-700: #008C85;
  --teal:     #00A89D;
  --teal-400: #26BDB3;
  --teal-200: #80D9D4;
  --teal-100: #B3EAE7;
  --teal-50:  #E6F7F6;

  --mag-900:  #7B003A;
  --mag-800:  #9C1050;
  --mag:      #C2185B;
  --mag-400:  #D44F80;
  --mag-100:  #F9C4D5;
  --mag-50:   #FEF0F5;

  --white:  #FFFFFF;
  --off:    #F8FAFB;
  --g50:    #F4F6F8;
  --g100:   #E8EAED;
  --g200:   #D1D5DB;
  --g400:   #9CA3AF;
  --g600:   #6B7280;
  --g700:   #374151;
  --g800:   #1F2937;
  --g900:   #111827;

  --nav-h:  60px;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(0,0,0,.10);
  --shadow-lg: 0 12px 48px rgba(0,0,0,.16);
}


/* ============================================================
   02. RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--g900);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
a { color: inherit; }
button { font-family: inherit; }


/* ============================================================
   03. LAYOUT
   ============================================================ */
.wrap {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 18px;
}


/* ============================================================
   04. TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.15;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 10px;
}
.eyebrow::before {
  content: '';
  display: block;
  width: 22px;
  height: 2px;
  background: var(--mag);
  border-radius: 1px;
  flex-shrink: 0;
}

.section-title {
  font-size: clamp(24px, 6vw, 44px);
  font-weight: 700;
  color: var(--g900);
  line-height: 1.15;
  margin-bottom: 12px;
}
.section-lead {
  font-size: 15px;
  color: var(--g600);
  line-height: 1.7;
}


/* ============================================================
   05. BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 22px;
  border-radius: 8px;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
  white-space: nowrap;
  -webkit-tap-highlight-color: transparent;
}
/* Touch-friendly min height */
.btn { min-height: 44px; }

.btn-teal  { background: var(--teal); color: #fff; }
.btn-teal:hover  { background: var(--teal-800); }
.btn-teal:active { background: var(--teal-900); transform: scale(.98); }

.btn-mag   { background: var(--mag); color: #fff; }
.btn-mag:hover  { background: var(--mag-800); }
.btn-mag:active { background: var(--mag-900); transform: scale(.98); }

.btn-ghost-teal {
  background: transparent;
  color: var(--teal);
  border: 1.5px solid var(--teal);
}
.btn-ghost-teal:hover  { background: var(--teal-50); }
.btn-ghost-teal:active { background: var(--teal-100); }

.btn-ghost-white {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.5);
}
.btn-ghost-white:hover  { background: rgba(255,255,255,.1); }
.btn-ghost-white:active { background: rgba(255,255,255,.2); }

.btn-full { width: 100%; }


/* ============================================================
   06. ANNOUNCEMENT BAR
   ============================================================ */
.ann {
  background: linear-gradient(90deg, var(--teal-700), var(--mag));
  padding: 9px 18px;
  text-align: center;
  font-size: 12px;
  color: rgba(255,255,255,.9);
  font-weight: 500;
  line-height: 1.5;
}
.ann strong { color: #fff; }


/* ============================================================
   07. TOP BAR — hidden on mobile, shown on desktop
   ============================================================ */
.topbar { display: none; }


/* ============================================================
   08. NAVBAR
   ============================================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 200;
  background: #fff;
  border-bottom: 1px solid var(--g100);
  box-shadow: 0 1px 12px rgba(0,0,0,.06);
  height: var(--nav-h);
}
.nav-in {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

/* Logo */
.logo-slot { display: flex; align-items: center; gap: 10px; min-width: 0; }
.logo-img  { width: 140px; height: 48px; object-fit: contain; flex-shrink: 0; }
.logo-text { min-width: 0; }
.logo-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--teal-800);
  line-height: 1.1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.logo-text p {
  font-size: 9px;
  color: var(--g400);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 1px;
}

/* Desktop nav links — hidden on mobile */
.nav-links  { display: none; }
.nav-ctas   { display: none; }

/* Emergency pill — always visible */
.nav-emergency {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--mag);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 8px 12px;
  border-radius: 7px;
  text-decoration: none;
  white-space: nowrap;
  min-height: 44px;
}
.nav-emergency i { font-size: 13px; }

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 10px 8px;
  background: none;
  border: none;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  -webkit-tap-highlight-color: transparent;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--g800);
  border-radius: 1px;
  transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; width: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Dropdown — desktop only */
.dd { position: relative; }
.dd-menu { display: none; }


/* ============================================================
   09. MOBILE NAV DRAWER
   ============================================================ */
.mob-nav {
  position: fixed;
  inset: 0;
  top: var(--nav-h);
  z-index: 190;
  background: #fff;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(.4,0,.2,1);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 0 0 100px;
}
.mob-nav.open { transform: translateX(0); }

.mob-nav-section { padding: 8px 0; border-bottom: 1px solid var(--g100); }

.mob-nav-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 20px;
  font-size: 15px;
  font-weight: 500;
  color: var(--g800);
  text-decoration: none;
  min-height: 52px;
  transition: background .15s;
}
.mob-nav-link:hover,
.mob-nav-link:active { background: var(--teal-50); color: var(--teal); }
.mob-nav-link i {
  font-size: 16px;
  color: var(--teal);
  width: 22px;
  text-align: center;
  flex-shrink: 0;
}

.mob-dept-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--g400);
  padding: 14px 20px 8px;
}
.mob-dept-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--g100);
}
.mob-dept-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  font-size: 13px;
  color: var(--g700);
  background: #fff;
  text-decoration: none;
  min-height: 48px;
  transition: background .15s;
}
.mob-dept-item:active { background: var(--teal-50); }
.mob-dept-item i { font-size: 14px; color: var(--teal); flex-shrink: 0; }

.mob-ctas {
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mob-emergency-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--mag);
  color: #fff;
  padding: 15px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  min-height: 52px;
}


/* ============================================================
   10. HERO
   ============================================================ */
.hero {
  position: relative;
  background: var(--teal-900);
  overflow: hidden;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
}

/* Background image */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.hero-ov {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    175deg,
    rgba(0,77,72,.93) 0%,
    rgba(0,77,72,.82) 50%,
    rgba(0,60,56,.70) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 3;
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 40px 18px 36px;
}

/* Mobile: copy on top, card below */
.hero-copy { margin-bottom: 32px; }

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 11px;
  color: rgba(255,255,255,.8);
  letter-spacing: 1.2px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 18px;
}
.hero-tag span { color: var(--teal-400); }

.hero-h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 8vw, 56px);
  font-weight: 900;
  color: #fff;
  line-height: 1.08;
  margin-bottom: 14px;
}
.hero-h1 em { color: var(--teal-400); font-style: normal; }

.hero-p {
  font-size: 15px;
  color: rgba(255,255,255,.72);
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 480px;
}

.hero-btns {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}

/* Stats row */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px;
  overflow: hidden;
  background: rgba(0,0,0,.18);
}
.hstat {
  padding: 12px 8px;
  border-right: 1px solid rgba(255,255,255,.1);
  text-align: center;
}
.hstat:last-child { border-right: none; }
.hstat-n {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.hstat-l {
  font-size: 9px;
  color: rgba(255,255,255,.5);
  margin-top: 4px;
  line-height: 1.3;
}

/* Booking card */
.book-card {
  background: #fff;
  border-radius: 16px;
  padding: 22px 18px;
  box-shadow: 0 24px 72px rgba(0,0,0,.28);
}
.book-card-h {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--g900);
  margin-bottom: 4px;
}
.book-card-s { font-size: 13px; color: var(--g400); margin-bottom: 18px; }

/* Form */
.fg { margin-bottom: 12px; }
.fl {
  display: block;
  font-size: 10px;
  font-weight: 700;
  color: var(--g600);
  text-transform: uppercase;
  letter-spacing: .8px;
  margin-bottom: 5px;
}
.fi {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--g200);
  border-radius: 9px;
  font-size: 15px;         /* ≥16px prevents iOS auto-zoom */
  font-family: 'Inter', sans-serif;
  color: var(--g900);
  background: #fff;
  min-height: 48px;         /* touch target */
  transition: border-color .2s;
  -webkit-appearance: none;
  appearance: none;
}
.fi:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(0,168,157,.12);
}
.fi::placeholder { color: var(--g200); }

select.fi {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24'%3E%3Cpath fill='%239CA3AF' d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}

.frow { display: flex; flex-direction: column; gap: 12px; }

.btn-submit {
  width: 100%;
  padding: 15px;
  min-height: 52px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 700;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  background: linear-gradient(135deg, var(--mag) 0%, var(--mag-800) 100%);
  color: #fff;
  margin-top: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  transition: all .2s;
  -webkit-tap-highlight-color: transparent;
  box-shadow: 0 4px 18px rgba(194,24,91,.3);
}
.btn-submit:hover { box-shadow: 0 8px 28px rgba(194,24,91,.4); transform: translateY(-1px); }
.btn-submit:active { transform: scale(.98); box-shadow: none; }

.book-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 11px;
  color: var(--g400);
  margin-top: 10px;
  text-align: center;
}
.book-note i { color: var(--teal); }


/* ============================================================
   11. TRUST STRIP
   ============================================================ */
.trust {
  background: #fff;
  border-bottom: 1px solid var(--g100);
  /* Mobile: horizontal scroll if too wide */
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.trust::-webkit-scrollbar { display: none; }

.trust-inner {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: stretch;
  /* Mobile: allow horizontal scrolling */
  width: max-content;
  min-width: 100%;
}
.trust-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-shrink: 0;
  gap: 8px;
  padding: 14px 18px;
  border-right: 1px solid var(--g100);
  font-size: 12px;
  font-weight: 500;
  color: var(--g700);
  white-space: nowrap;
  min-height: 48px;
}
.trust-item:first-child { border-left: 1px solid var(--g100); }
.trust-item i {
  font-size: 16px;
  color: var(--teal);
  flex-shrink: 0;
  display: inline-block;
}


/* ============================================================
   12. SECTION SHARED
   ============================================================ */
.sec { padding: 52px 0; }
.sec-alt { background: var(--off); }

.sec-head { margin-bottom: 28px; }
.sec-head-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 28px;
}


/* ============================================================
   13. DEPARTMENTS
   ============================================================ */
.dept-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.dept-card {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--g100);
  padding: 16px 14px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  overflow: hidden;
  -webkit-tap-highlight-color: transparent;
}
.dept-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--teal), var(--mag));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s;
}
.dept-card:active { transform: scale(.98); border-color: var(--teal-100); }
.dept-card:hover::after,
.dept-card:active::after { transform: scaleX(1); }

.dept-ico {
  width: 42px; height: 42px;
  border-radius: 10px;
  background: var(--teal-50);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 10px;
}
.dept-ico i { font-size: 19px; color: var(--teal); }
.dept-name { font-size: 13px; font-weight: 600; color: var(--g900); margin-bottom: 2px; line-height: 1.3; }
.dept-note { font-size: 11px; color: var(--g400); }


/* ============================================================
   14. GALLERY
   ============================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.gallery-grid .gal-item {
  border-radius: 10px;
  overflow: hidden;
  background: var(--g100);
}
.gallery-grid .gal-item img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  display: block;
  transition: transform .3s;
}
.gallery-grid .gal-item:hover img { transform: scale(1.04); }
/* Large feature tile — spans 2 columns */
.gal-item.gal-wide { grid-column: 1 / -1; }
.gal-item.gal-wide img { height: 200px; }


/* ============================================================
   15. ABOUT
   ============================================================ */
.about-img-stack { position: relative; margin-bottom: 32px; }
.about-img-main {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}
.about-img-inset {
  position: absolute;
  bottom: -20px;
  right: 16px;
  width: 110px;
  height: 110px;
  object-fit: cover;
  border-radius: 12px;
  border: 3px solid #fff;
  box-shadow: var(--shadow);
}
.about-pill {
  position: absolute;
  bottom: -20px;
  left: 16px;
  background: var(--mag);
  color: #fff;
  border-radius: 10px;
  padding: 12px 16px;
  box-shadow: 0 8px 28px rgba(194,24,91,.3);
  text-align: center;
}
.about-pill-n {
  font-family: 'Playfair Display', serif;
  font-size: 30px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}
.about-pill-l { font-size: 10px; color: rgba(255,255,255,.75); margin-top: 2px; }

.about-text { padding-top: 28px; }

.milestones { display: flex; flex-direction: column; gap: 10px; margin-top: 22px; }
.ms {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px;
  border-radius: 10px;
  border: 1px solid var(--g100);
  background: #fff;
}
.ms-ico {
  width: 36px; height: 36px;
  border-radius: 9px;
  background: var(--teal-50);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.ms-ico i { font-size: 15px; color: var(--teal); }
.ms h4 { font-size: 13px; font-weight: 600; color: var(--g900); margin-bottom: 2px; }
.ms p  { font-size: 12px; color: var(--g600); line-height: 1.5; }

.about-btns { display: flex; flex-direction: column; gap: 10px; margin-top: 24px; }


/* ============================================================
   16. DOCTORS
   ============================================================ */
.docs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.doc-card {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--g100);
  overflow: hidden;
  transition: all .2s;
}
.doc-card:active { transform: scale(.98); }
.doc-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top center;
  display: block;
  background: var(--teal-50);
}
.doc-body { padding: 12px; }
.doc-name {
  font-family: 'Playfair Display', serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--teal-800);
  line-height: 1.25;
  margin-bottom: 3px;
}
.doc-role  { font-size: 11px; color: var(--mag); font-weight: 600; margin-bottom: 8px; }
.doc-tags  { display: flex; gap: 4px; flex-wrap: wrap; }
.tag       { font-size: 10px; font-weight: 600; padding: 3px 8px; border-radius: 100px; }
.tag-t     { background: var(--teal-50); color: var(--teal-800); }
.tag-m     { background: var(--mag-50);  color: var(--mag-800); }


/* ============================================================
   17. TESTIMONIALS
   ============================================================ */
.testi-bg {
  background: var(--teal-900);
  position: relative;
  overflow: hidden;
}
.testi-bg::before {
  content: '\201C';
  position: absolute;
  top: -40px; left: 10px;
  font-family: 'Playfair Display', serif;
  font-size: 280px;
  color: rgba(255,255,255,.04);
  font-weight: 900;
  line-height: 1;
  pointer-events: none;
}
.testi-grid { display: flex; flex-direction: column; gap: 14px; }
.testi-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 20px;
}
.stars { display: flex; gap: 3px; margin-bottom: 12px; }
.stars i { font-size: 12px; color: #F59E0B; }
.testi-q {
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  font-style: italic;
  color: #fff;
  line-height: 1.65;
  margin-bottom: 16px;
}
.testi-by  { display: flex; align-items: center; gap: 10px; }
.testi-av  {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--teal-700);
  border: 2px solid var(--teal-400);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700; color: #fff;
  flex-shrink: 0;
}
.testi-n  { font-size: 13px; font-weight: 600; color: #fff; }
.testi-d  { font-size: 11px; color: rgba(255,255,255,.45); margin-top: 1px; }


/* ============================================================
   18. HERITAGE
   ============================================================ */
.heritage {
  background: linear-gradient(145deg, var(--teal-900) 0%, var(--teal-800) 100%);
  position: relative;
  overflow: hidden;
}
.heritage::after {
  content: '1958';
  position: absolute;
  right: -20px; bottom: -40px;
  font-family: 'Playfair Display', serif;
  font-size: 140px;
  font-weight: 900;
  color: rgba(255,255,255,.05);
  line-height: 1;
  pointer-events: none;
}
.heritage-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 14px;
  display: block;
  margin-bottom: 28px;
}
.heritage-bq {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  font-style: italic;
  color: #fff;
  line-height: 1.5;
  padding-left: 18px;
  border-left: 3px solid var(--mag);
  margin-bottom: 16px;
}
.heritage-p {
  font-size: 14px;
  color: rgba(255,255,255,.68);
  line-height: 1.8;
  margin-bottom: 24px;
}
.heritage-btns { display: flex; flex-direction: column; gap: 10px; }


/* ============================================================
   19. INSURANCE
   ============================================================ */
.ins-strip {
  background: var(--off);
  border-top: 1px solid var(--g100);
  border-bottom: 1px solid var(--g100);
  padding: 22px 0;
}
.ins-lbl {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--g400);
  margin-bottom: 12px;
}
.ins-pills {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
}
.ins-pill {
  padding: 6px 14px;
  background: #fff;
  border: 1px solid var(--g100);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  color: var(--g700);
  box-shadow: 0 1px 3px rgba(0,0,0,.04);
}
.ins-more {
  background: var(--teal-50);
  border-color: var(--teal-100);
  color: var(--teal);
  text-decoration: none;
}


/* ============================================================
   20. CONTACT & MAP
   ============================================================ */
.contact-card {
  background: var(--teal-900);
  border-radius: 16px;
  padding: 28px 22px;
  color: #fff;
  margin-bottom: 20px;
}
.contact-ch {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}
.contact-cs { font-size: 13px; color: rgba(255,255,255,.55); margin-bottom: 24px; }
.ci { display: flex; gap: 14px; margin-bottom: 18px; align-items: flex-start; }
.ci-ico {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.ci-ico i { font-size: 15px; color: var(--teal-400); }
.ci-lbl {
  font-size: 9px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  margin-bottom: 3px;
  font-weight: 700;
}
.ci-val { font-size: 13px; color: #fff; font-weight: 500; line-height: 1.6; }

.map-box {
  border-radius: 16px;
  overflow: hidden;
  height: 260px;
  background: var(--g50);
  border: 2px dashed var(--g200);
  position: relative;
}
.map-ph {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.map-ph i    { font-size: 36px; color: var(--g200); }
.map-ph p    { font-size: 14px; color: var(--g500, #6B7280); font-weight: 500; }
.map-ph span { font-size: 12px; color: var(--g400); text-align: center; padding: 0 20px; }
.map-btn {
  background: var(--teal);
  color: #fff;
  padding: 10px 20px;
  min-height: 44px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 7px;
}
.map-box iframe { width: 100%; height: 100%; border: none; display: none; }


/* ============================================================
   21. FOOTER
   ============================================================ */
.footer { background: var(--teal-900); }
.footer-main { padding: 48px 0 32px; }
.footer-grid { display: flex; flex-direction: column; gap: 36px; }

.f-brand-n {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 3px;
}
.f-brand-e { font-size: 11px; color: rgba(255,255,255,.35); letter-spacing: 1px; margin-bottom: 12px; }
.f-about   { font-size: 13px; color: rgba(255,255,255,.5); line-height: 1.75; margin-bottom: 18px; }

.f-social { display: flex; gap: 10px; }
.f-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.15);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.5);
  font-size: 15px;
  text-decoration: none;
  transition: all .15s;
  -webkit-tap-highlight-color: transparent;
}
.f-social a:hover,
.f-social a:active { background: var(--mag); border-color: var(--mag); color: #fff; }

.f-col-lbl {
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--teal-400);
  font-weight: 700;
  margin-bottom: 14px;
}
.f-links { display: flex; flex-direction: column; gap: 10px; }
.f-links a {
  font-size: 13px;
  color: rgba(255,255,255,.5);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 7px;
  transition: color .15s;
  min-height: 32px;
}
.f-links a:hover,
.f-links a:active { color: #fff; }
.f-links a i { font-size: 10px; color: var(--teal-400); }

.f-addr { font-size: 13px; color: rgba(255,255,255,.5); line-height: 2; }
.f-addr a { color: rgba(255,255,255,.5); text-decoration: none; }
.f-addr a:hover { color: #fff; }

.footer-bot { border-top: 1px solid rgba(255,255,255,.07); padding: 18px 0; }
.footer-bot-in {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-copy { font-size: 11px; color: rgba(255,255,255,.3); }
.footer-copy a { color: rgba(255,255,255,.3); text-decoration: none; }
.footer-love {
  font-size: 11px;
  color: rgba(255,255,255,.3);
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.footer-love i { color: var(--mag); font-size: 10px; }


/* ============================================================
   22. LIGHTBOX AD
   ============================================================ */
/* ── Mobile: sheet slides up from bottom ── */
.lb-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,.72);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s ease;
}
.lb-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.lb-box {
  background: #fff;
  border-radius: 20px 20px 0 0;
  width: 100%;
  max-height: 92vh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  transform: translateY(100%);
  transition: transform .4s cubic-bezier(.32,0,.67,0),
              opacity .4s ease;
  position: relative;
  opacity: 1;
}
/* Mobile open: slide up into view */
.lb-overlay.open .lb-box {
  transform: translateY(0);
}

/* Drag handle */
.lb-handle {
  width: 36px; height: 4px;
  background: var(--g200);
  border-radius: 2px;
  margin: 12px auto 0;
}

.lb-close {
  position: absolute;
  top: 14px; right: 14px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(0,0,0,.45);
  border: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 15px;
  z-index: 10;
  transition: background .2s;
}
.lb-close:hover { background: var(--mag); }

.lb-timer {
  position: absolute;
  top: 14px; left: 14px;
  background: rgba(0,0,0,.45);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 11px;
  border-radius: 100px;
  display: flex; align-items: center; gap: 5px;
  z-index: 10;
}

.lb-ad-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}
.lb-img-placeholder {
  width: 100%;
  height: 200px;
  background: var(--teal-900);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.lb-img-placeholder i { font-size: 36px; color: rgba(255,255,255,.3); }
.lb-img-placeholder span { font-size: 13px; color: rgba(255,255,255,.45); }
.lb-img-grad {
  height: 40px;
  background: linear-gradient(to top, #fff, transparent);
  margin-top: -40px;
  position: relative;
}

.lb-body { padding: 20px 18px 28px; }

.lb-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--teal-50);
  color: var(--teal-800);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: 100px;
  border: 1px solid var(--teal-100);
  margin-bottom: 12px;
}
.lb-badge i { color: var(--teal); }

.lb-h {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--g900);
  line-height: 1.2;
  margin-bottom: 8px;
}
.lb-h em { color: var(--teal); font-style: normal; }

.lb-p {
  font-size: 13px;
  color: var(--g600);
  line-height: 1.65;
  margin-bottom: 18px;
}

.lb-actions { display: flex; flex-direction: column; gap: 8px; }

/* Expiry is now a JS config constant — no UI needed */
.lb-dismiss {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 12px;
  color: var(--g400);
  margin-top: 14px;
  cursor: pointer;
  background: none;
  border: none;
  width: 100%;
  font-family: 'Inter', sans-serif;
  min-height: 44px;
}
.lb-dismiss:hover { color: var(--g600); }


/* ============================================================
   23. SCROLL REVEAL
   ============================================================ */
.rv {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .55s ease, transform .55s ease;
}
.rv.in { opacity: 1; transform: none; }
.rv-d1 { transition-delay: .08s; }
.rv-d2 { transition-delay: .16s; }


/* ============================================================
   24. BACK TO TOP & TOAST
   ============================================================ */
.btt {
  position: fixed;
  bottom: 20px; right: 18px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  cursor: pointer;
  border: none;
  box-shadow: 0 4px 20px rgba(0,168,157,.4);
  opacity: 0; transform: translateY(16px);
  transition: all .3s;
  z-index: 50;
  -webkit-tap-highlight-color: transparent;
}
.btt.show { opacity: 1; transform: none; }
.btt:hover { background: var(--teal-800); }

.toast-el {
  position: fixed;
  bottom: 20px; left: 50%;
  transform: translateX(-50%) translateY(60px);
  background: var(--g900);
  color: #fff;
  padding: 12px 18px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 500;
  display: flex; align-items: center; gap: 9px;
  box-shadow: 0 8px 32px rgba(0,0,0,.25);
  z-index: 9990;
  transition: transform .3s;
  pointer-events: none;
  white-space: nowrap;
}
.toast-el.up { transform: translateX(-50%) translateY(0); }
.toast-el i  { color: var(--teal-400); }


/* ============================================================
   25. TABLET ≥ 600px
   ============================================================ */
@media (min-width: 600px) {
  .wrap { padding: 0 28px; }

  /* Announcement */
  .ann { font-size: 13px; }

  /* Nav */
  :root { --nav-h: 68px; }
  .logo-img { width: 130px; height: 44px; }
  .logo-text h2 { font-size: 15px; }
  .logo-text p  { display: block; }

  /* Hero */
  .hero-h1 { font-size: clamp(36px, 7vw, 52px); }
  .hero-btns { flex-direction: row; }
  .hstat-n  { font-size: 26px; }
  .hstat-l  { font-size: 10px; }

  /* Booking form */
  .frow { flex-direction: row; }
  .frow .fg { flex: 1; margin: 0; }

  /* Departments */
  .dept-grid { grid-template-columns: repeat(3, 1fr); }

  /* Gallery */
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .gal-item img { height: 160px; }
  .gal-item.gal-wide { grid-column: span 2; }
  .gal-item.gal-wide img { height: 200px; }

  /* Lightbox — centered modal card on tablet & desktop */
  .lb-overlay {
    align-items: center;
    padding: 20px;
  }
  .lb-box {
    border-radius: 20px;
    max-width: 520px;
    /* closed: slightly below center + scaled down */
    transform: translateY(40px) scale(.94);
    opacity: 0;
  }
  /* open: pop into place */
  .lb-overlay.open .lb-box {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
  .lb-handle { display: none; }
  .lb-ad-img, .lb-img-placeholder { height: 260px; }

  /* Docs */
  .docs-grid { grid-template-columns: repeat(2, 1fr); }
  .doc-img { aspect-ratio: 4/5; }

  /* About */
  .about-img-main { height: 320px; }
  .about-img-inset { width: 140px; height: 140px; }

  /* Testimonials */
  .testi-grid { display: grid; grid-template-columns: 1fr 1fr; }

  /* Heritage */
  .heritage-img { height: 280px; }
  .heritage-btns { flex-direction: row; }

  /* Footer — 2 column */
  .footer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; }

  /* Contact */
  .map-box { height: 320px; }
}


/* ============================================================
   26. TABLET ≥ 768px
   ============================================================ */
@media (min-width: 768px) {
  .wrap { padding: 0 36px; }
  .sec { padding: 72px 0; }
  .sec-head { margin-bottom: 40px; }
  .sec-head-row { flex-direction: row; justify-content: space-between; align-items: flex-end; }

  /* Hero — side by side layout */
  .hero-content { padding: 60px 0 52px; }
  .hero-grid {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 40px;
    align-items: center;
  }
  .hero-copy { margin-bottom: 0; }
  .hero-btns { flex-direction: row; }
  .hstat-n { font-size: 30px; }

  /* Dept */
  .dept-grid { grid-template-columns: repeat(4, 1fr); gap: 14px; }
  .dept-card { padding: 18px 16px; }
  .dept-ico  { width: 46px; height: 46px; }
  .dept-ico i { font-size: 21px; }

  /* Gallery masonry layout */
  .gallery-grid {
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: 200px 200px 200px;
    gap: 12px;
  }
  .gallery-grid .gal-item img  { height: 100% !important; }
  .gallery-grid .gal-item      { border-radius: 12px; }

  .g1 { grid-column: 1/6;  grid-row: 1/3; }
  .g2 { grid-column: 6/9;  grid-row: 1/2; }
  .g3 { grid-column: 9/13; grid-row: 1/2; }
  .g4 { grid-column: 6/10; grid-row: 2/3; }
  .g5 { grid-column:10/13; grid-row: 2/3; }
  .g6 { grid-column: 1/5;  grid-row: 3/4; }
  .g7 { grid-column: 5/9;  grid-row: 3/4; }
  .g8 { grid-column: 9/13; grid-row: 3/4; }
  /* Reset gal-wide */
  .gal-item.gal-wide { grid-column: unset; }

  /* About - side by side */
  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 52px;
    align-items: center;
  }
  .about-img-stack  { margin-bottom: 0; }
  .about-img-main   { height: 420px; }
  .about-img-inset  { width: 160px; height: 160px; bottom: -24px; }
  .about-text       { padding-top: 0; }
  .about-btns       { flex-direction: row; }

  /* Docs */
  .docs-grid { grid-template-columns: repeat(4, 1fr); }
  .doc-img   { aspect-ratio: 3/4; }

  /* Testimonials */
  .testi-grid { grid-template-columns: repeat(3, 1fr); }

  /* Heritage - side by side */
  .heritage-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 52px;
    align-items: center;
  }
  .heritage-img    { height: 100%; min-height: 360px; margin-bottom: 0; }

  /* Contact */
  .contact-grid {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 28px;
    align-items: start;
  }
  .contact-card { margin-bottom: 0; }
  .map-box { height: 460px; }

  /* Footer */
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; gap: 44px; }
  .footer-bot-in { flex-direction: row; flex-wrap: wrap; justify-content: space-between; }
}


/* ============================================================
   27. DESKTOP ≥ 1024px
   ============================================================ */
@media (min-width: 1024px) {
  :root { --nav-h: 76px; }
  .wrap { padding: 0 44px; }
  .sec { padding: 88px 0; }

  /* Trust strip — full width on desktop, no scroll */
  .trust { overflow: visible; }
  .trust-inner {
    width: 100%;
    justify-content: space-between;
  }
  .trust-item {
    flex: 1;
    flex-shrink: 1;
    justify-content: center;
    padding: 16px 12px;
    font-size: 13px;
  }

  /* Show topbar */
  .topbar {
    display: block;
    background: var(--g900);
    padding: 9px 0;
  }
  .topbar-in {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: rgba(255,255,255,.6);
  }
  .tb-left { display: flex; gap: 22px; align-items: center; }
  .tb-item { display: flex; align-items: center; gap: 6px; }
  .tb-item i { color: var(--teal-400); }
  .tb-right { display: flex; gap: 10px; align-items: center; }
  .tb-portal {
    display: flex; align-items: center; gap: 6px;
    background: rgba(255,255,255,.1); color: #fff;
    padding: 5px 12px; border-radius: 6px;
    text-decoration: none; font-size: 12px;
  }
  .tb-portal:hover { background: rgba(255,255,255,.18); }
  .tb-emergency-top {
    display: flex; align-items: center; gap: 6px;
    background: var(--mag); color: #fff;
    padding: 5px 14px; border-radius: 6px;
    font-weight: 700; font-size: 12px; text-decoration: none;
  }

  /* Show desktop nav, hide hamburger & emergency pill */
  .nav-links    { display: flex; align-items: center; gap: 2px; }
  .nav-ctas     { display: flex; gap: 10px; align-items: center; }
  .hamburger    { display: none; }
  .nav-emergency{ display: none; }

  .logo-img  { width: 160px; height: 52px; }
  .logo-text h2 { font-size: 17px; }

  .nav-a {
    font-size: 13.5px;
    font-weight: 500;
    color: var(--g600);
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 7px;
    transition: all .15s;
    white-space: nowrap;
  }
  .nav-a:hover, .nav-a.on { color: var(--teal); background: var(--teal-50); }

  /* Dropdown */
  .dd-menu {
    position: absolute;
    top: calc(100% + 8px); left: 0;
    background: #fff;
    border-radius: 14px;
    min-width: 210px;
    box-shadow: 0 20px 60px rgba(0,0,0,.12);
    border: 1px solid var(--g100);
    padding: 8px;
    z-index: 300;
  }
  .dd:hover .dd-menu { display: block; }
  .dd-item {
    display: flex; align-items: center; gap: 11px;
    padding: 10px 12px; border-radius: 9px;
    font-size: 13.5px; color: var(--g700);
    text-decoration: none; transition: background .1s;
  }
  .dd-item:hover { background: var(--teal-50); color: var(--teal); }
  .dd-item i { font-size: 13px; color: var(--teal); width: 16px; text-align: center; }

  /* Hero */
  .hero-content { padding: 80px 0 64px; }
  .hero-grid { grid-template-columns: 1.05fr 420px; gap: 64px; }
  .hstat { padding: 18px 22px; }
  .hstat-n { font-size: 36px; }
  .hstat-l { font-size: 11px; }
  .hero-h1 { font-size: clamp(44px, 5vw, 68px); }

  /* About */
  .about-grid { gap: 80px; }
  .about-img-main { height: 520px; }

  /* Heritage */
  .heritage-grid { gap: 80px; }
  .heritage-img  { min-height: 420px; }
  .heritage-bq   { font-size: 24px; }
  .heritage::after { font-size: 220px; }

  /* Footer 4 columns */
  .footer-grid { grid-template-columns: 2.2fr 1fr 1fr 1.5fr; }

  /* Contact */
  .contact-grid  { grid-template-columns: 400px 1fr; gap: 48px; }
  .map-box       { height: 520px; }

  /* Dept cards */
  .dept-card { padding: 24px 20px; }

  /* Docs */
  .doc-name { font-size: 15px; }
  .doc-body { padding: 16px; }
}


/* ============================================================
   28. WIDE ≥ 1200px
   ============================================================ */
@media (min-width: 1200px) {
  .wrap { padding: 0 48px; }

  .hero-grid { gap: 80px; }
  .about-grid { gap: 96px; }
  .heritage-grid { gap: 96px; }

  .gallery-grid {
    grid-template-rows: 220px 220px 220px;
    gap: 14px;
  }

  .footer-main { padding: 80px 0 48px; }
}