/* ==========================================================================
   SR. CHRISTENEM MEMORIAL HOSPITAL — Stylesheet (v2)
   Brand colors match the hospital's existing site. Edit the variables
   below to re-theme the whole site from one place.
   ========================================================================== */

:root {
  /* ---- Brand colors ---- */
  --navy: #104b68;
  --navy-dark: #0b3549;
  --ink: #173b52;
  --coral: #cf6f52;
  --coral-dark: #b25a3f;
  --sky: #dceff1;
  --mint: #e9f3ed;
  --warm: #f4efe5;
  --paper: #fbfaf6;
  --line: #d9e2df;
  --white: #ffffff;
  --text-muted: #5c7182;
  --emergency: #a5342a;

  /* ---- Type ---- */
  --font-head: "Newsreader", "Georgia", serif;
  --font-body: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* ---- Layout ---- */
  --container-w: 1220px;
  --radius: 4px;
  --shadow-sm: 0 1px 3px rgba(16, 75, 104, 0.10);
  --shadow-md: 0 6px 20px rgba(16, 75, 104, 0.14);
  --header-h: 88px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--navy);
  font-weight: 600;
  line-height: 1.22;
}
h1 { font-size: clamp(2.1rem, 4vw, 3rem); }
h2 { font-size: clamp(1.6rem, 2.6vw, 2.15rem); }
h3 { font-size: 1.22rem; }
p { color: var(--text-muted); max-width: 68ch; }

.container { max-width: var(--container-w); margin: 0 auto; padding: 0 24px; }

:focus-visible { outline: 3px solid var(--coral); outline-offset: 2px; }

.skip-link {
  position: absolute; left: -999px; top: 0;
  background: var(--navy); color: #fff; padding: 12px 18px;
  z-index: 999; border-radius: 0 0 6px 0;
}
.skip-link:focus { left: 0; }

/* ==========================================================================
   TOP BAR
   ========================================================================== */
.topbar { background: var(--navy-dark); color: #cfe1ea; font-size: 0.82rem; }
.topbar .container { display: flex; align-items: center; justify-content: space-between; height: 40px; gap: 16px; }
.topbar-left { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.topbar a { color: #e7eef2; }
.topbar a:hover { color: #fff; }
.topbar-emergency { color: #f3c4ba; font-weight: 600; }
.topbar-hours { display: flex; align-items: center; gap: 6px; color: #93b0bf; }
.dot-live { width: 7px; height: 7px; border-radius: 50%; background: #57c48a; display: inline-block; }

/* ==========================================================================
   HEADER / NAV
   ========================================================================== */
.site-header { position: sticky; top: 0; z-index: 500; background: var(--white); border-bottom: 1px solid var(--line); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: var(--header-h); gap: 20px; }

.brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.brand-mark { width: 46px; height: 46px; flex-shrink: 0; object-fit: contain; }
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-name { font-family: var(--font-head); font-weight: 700; font-size: 1.05rem; color: var(--navy); letter-spacing: 0.1px; }
.brand-sub { font-size: 0.72rem; color: var(--coral-dark); font-weight: 600; margin-top: 2px; }

.main-nav > ul { display: flex; align-items: center; gap: 4px; }
.main-nav > ul > li { position: relative; }
.main-nav > ul > li > a,
.nav-trigger {
  display: flex; align-items: center; gap: 5px;
  font-size: 0.94rem; font-weight: 500; color: var(--ink);
  padding: 12px 10px; border-bottom: 2px solid transparent;
  background: none; border-top: none; border-left: none; border-right: none;
  transition: color 0.15s ease, border-color 0.15s ease;
}
.main-nav a:hover, .main-nav a.active, .nav-trigger:hover { color: var(--navy); border-bottom-color: var(--coral); }
.nav-caret { width: 9px; height: 9px; margin-top: -2px; }

/* Dropdown (desktop) */
.has-dropdown { position: relative; }
.dropdown-panel {
  display: none;
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-md); padding: 10px; min-width: 260px; z-index: 520;
}
.has-dropdown.is-open .dropdown-panel,
.has-dropdown:hover .dropdown-panel,
.has-dropdown:focus-within .dropdown-panel { display: block; }
.dropdown-panel a {
  display: block; padding: 10px 14px; border-radius: var(--radius);
  font-size: 0.92rem; color: var(--ink); white-space: nowrap;
}
.dropdown-panel a:hover { background: var(--mint); color: var(--navy); }

.header-actions { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 22px; border-radius: var(--radius); font-weight: 600; font-size: 0.92rem;
  border: 1px solid transparent; transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--coral); color: #fff; }
.btn-primary:hover { background: var(--coral-dark); }
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--navy-dark); }
.btn-outline { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: #fff; }
.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,0.55); }
.btn-outline-light:hover { background: rgba(255,255,255,0.14); border-color: #fff; }
.btn-emergency { background: var(--emergency); color: #fff; }
.btn-emergency:hover { background: #862a21; }
.btn-block { width: 100%; }
.btn-lg { padding: 15px 28px; font-size: 1rem; }

/* Hamburger */
.hamburger { display: none; flex-direction: column; justify-content: center; align-items: center; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; gap: 5px; }
.hamburger span { width: 22px; height: 2px; background: var(--navy); display: block; transition: transform 0.2s ease, opacity 0.2s ease; }
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-cta { display: none; }

/* ==========================================================================
   MOBILE NAV DRAWER
   ========================================================================== */
@media (max-width: 980px) {
  .main-nav {
    position: fixed; top: 0; right: -100%; width: min(340px, 88vw); height: 100vh;
    background: var(--white); box-shadow: -8px 0 30px rgba(16,75,104,0.18);
    transition: right 0.28s ease; padding: 90px 26px 28px; overflow-y: auto; z-index: 600;
  }
  .main-nav.is-open { right: 0; }
  .main-nav > ul { flex-direction: column; align-items: flex-start; gap: 0; width: 100%; }
  .main-nav > ul > li { width: 100%; }
  .main-nav > ul > li > a, .nav-trigger { display: flex; justify-content: space-between; width: 100%; padding: 13px 4px; border-bottom: 1px solid var(--line); font-size: 1.02rem; }
  .main-nav a.active { color: var(--navy); }

  .dropdown-panel {
    display: none; position: static; transform: none; box-shadow: none; border: none;
    padding: 0 0 6px 14px; min-width: 0;
  }
  .has-dropdown.is-open .dropdown-panel { display: block; }
  .has-dropdown:hover .dropdown-panel { display: none; }
  .has-dropdown.is-open:hover .dropdown-panel { display: block; }
  .dropdown-panel a { padding: 10px 4px; border-bottom: 1px dashed var(--line); font-size: 0.95rem; }

  .mobile-cta { display: flex; flex-direction: column; gap: 10px; margin-top: 20px; }

  .nav-scrim { display: none; position: fixed; inset: 0; background: rgba(11,53,73,0.45); z-index: 550; }
  .nav-scrim.is-visible { display: block; }

  .hamburger { display: flex; }
  .header-actions .call-now-btn.desktop-only { display: none; }
}
@media (min-width: 981px) { .mobile-cta { display: none !important; } }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero { background: linear-gradient(180deg, var(--navy) 0%, var(--navy-dark) 100%); color: #fff; padding: 64px 0 0; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; padding-bottom: 56px; }
.hero-eyebrow-line { color: #9cc2d3; font-weight: 600; font-size: 0.95rem; margin-bottom: 14px; }
.hero h1 { color: #fff; margin-bottom: 16px; }
.hero-tagline { font-family: var(--font-head); font-size: 1.2rem; color: #d9e9ef; font-style: italic; margin-bottom: 18px; }
.hero p.lead { color: #bcd3dd; font-size: 1.02rem; max-width: 52ch; margin-bottom: 30px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-media { border-radius: var(--radius); overflow: hidden; border: 1px solid rgba(255,255,255,0.14); }
.hero-media img { width: 100%; height: 100%; object-fit: cover; min-height: 360px; }

.img-ph {
  background: var(--mint); border: 1px dashed #b7c9c1; color: var(--text-muted);
  display: flex; align-items: center; justify-content: center; text-align: center;
  font-size: 0.85rem; padding: 20px; min-height: 260px; border-radius: var(--radius);
}

/* Stat strip under hero */
.stat-strip { background: var(--navy-dark); border-top: 1px solid rgba(255,255,255,0.08); }
.stat-strip .container { display: flex; flex-wrap: wrap; gap: 0; }
.stat-item { flex: 1 1 200px; padding: 20px 24px; border-right: 1px solid rgba(255,255,255,0.1); }
.stat-item:last-child { border-right: none; }
.stat-value { font-family: var(--font-head); font-size: 1.5rem; color: #fff; font-weight: 700; }
.stat-label { font-size: 0.82rem; color: #a9c5d1; margin-top: 3px; }

/* ==========================================================================
   PAGE HERO (interior pages)
   ========================================================================== */
.page-hero { background: var(--navy); color: #fff; padding: 46px 0 40px; }
.page-hero h1 { color: #fff; margin-bottom: 8px; }
.page-hero p { color: #bcd3dd; max-width: 62ch; }
.page-hero.with-media { padding-bottom: 0; }
.page-hero-media { margin-top: 32px; border-radius: var(--radius) var(--radius) 0 0; overflow: hidden; max-height: 340px; }
.page-hero-media img { width: 100%; object-fit: cover; height: 340px; }

.breadcrumbs { font-size: 0.85rem; color: #9cc2d3; margin-bottom: 14px; }
.breadcrumbs a { color: #cfe1ea; }
.breadcrumbs a:hover { color: #fff; }
.breadcrumbs .sep { margin: 0 8px; color: #4f7688; }

/* ==========================================================================
   SECTIONS
   ========================================================================== */
.section { padding: 72px 0; }
.section-alt { background: var(--mint); }
.section-warm { background: var(--warm); }
.section-head { max-width: 68ch; margin-bottom: 40px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { margin-bottom: 12px; }
.section-head .kicker { color: var(--coral-dark); font-weight: 600; font-size: 0.86rem; margin-bottom: 8px; }

/* Quick access */
.quick-access { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.qa-card { background: #fff; padding: 32px 26px; display: flex; flex-direction: column; gap: 10px; }
.qa-icon { width: 36px; height: 36px; color: var(--coral); margin-bottom: 6px; }
.qa-card h3 { font-size: 1.05rem; }
.qa-card p { font-size: 0.9rem; margin: 0; }
.qa-card a.qa-link { color: var(--navy); font-weight: 600; font-size: 0.88rem; margin-top: 4px; }
.qa-card a.qa-link:hover { text-decoration: underline; }

/* Values */
.values-grid { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--line); }
.value-row { display: flex; gap: 16px; padding: 22px 26px 22px 0; border-bottom: 1px solid var(--line); }
.values-grid .value-row:nth-child(odd) { padding-left: 0; border-right: 1px solid var(--line); padding-right: 26px; }
.value-icon { width: 22px; height: 22px; color: var(--coral); flex-shrink: 0; margin-top: 3px; }
.value-row h3 { font-size: 1rem; margin-bottom: 3px; }
.value-row p { font-size: 0.9rem; margin: 0; }

/* Cards grid (services/departments/doctors/news/careers) */
.card-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.card-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.service-card { border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; background: #fff; }
.service-card h3 { margin-bottom: 10px; }
.service-card p { font-size: 0.94rem; margin-bottom: 16px; }
.service-card .service-action { font-size: 0.88rem; font-weight: 600; color: var(--navy); }
.service-card .service-action:hover { text-decoration: underline; }
.service-card .card-meta { font-size: 0.78rem; color: var(--coral-dark); font-weight: 600; text-transform: uppercase; letter-spacing: 0.03em; margin-bottom: 8px; }

/* Doctor / team cards */
.doctor-card { border: 1px solid var(--line); border-radius: var(--radius); background: #fff; overflow: hidden; }
.doctor-photo { aspect-ratio: 4/3; background: var(--sky); display: flex; align-items: center; justify-content: center; color: var(--navy); font-size: 0.82rem; text-align: center; padding: 16px; }
.doctor-body { padding: 20px; }
.doctor-body h3 { font-size: 1.02rem; margin-bottom: 3px; }
.doctor-role { font-size: 0.85rem; color: var(--coral-dark); font-weight: 600; margin-bottom: 10px; }
.doctor-body p { font-size: 0.88rem; margin: 0; }

/* News cards */
.news-card { border: 1px solid var(--line); border-radius: var(--radius); background: #fff; overflow: hidden; display: flex; flex-direction: column; }
.news-media { aspect-ratio: 16/10; background: var(--sky); }
.news-media img { width: 100%; height: 100%; object-fit: cover; }
.news-body { padding: 22px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.news-date { font-size: 0.78rem; color: var(--coral-dark); font-weight: 600; text-transform: uppercase; letter-spacing: 0.03em; }
.news-body h3 { font-size: 1.05rem; }
.news-body p { font-size: 0.9rem; margin: 0; }
.news-link { font-size: 0.86rem; font-weight: 600; color: var(--navy); margin-top: auto; }
.news-link:hover { text-decoration: underline; }

/* Two-column content + image */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split.reverse .split-media { order: 2; }
.split h2 { margin-bottom: 16px; }
.split p { margin-bottom: 14px; }
.split-media img { border-radius: var(--radius); width: 100%; }

/* Stats / hours */
.hours-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.hours-card { border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; text-align: left; background: #fff; }
.hours-card .hours-label { font-size: 0.85rem; color: var(--text-muted); font-weight: 600; margin-bottom: 6px; }
.hours-card .hours-value { font-family: var(--font-head); font-size: 1.2rem; color: var(--navy); font-weight: 600; }
.hours-card.tbd .hours-value { color: var(--text-muted); font-size: 1rem; font-style: italic; }

/* Emergency banner */
.emergency-banner { background: var(--emergency); color: #fff; padding: 22px 0; }
.emergency-banner .container { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.emergency-banner p { color: #fbe0dc; margin: 0; }
.emergency-banner strong { color: #fff; }
.emergency-banner .btn-emergency { background: #fff; color: var(--emergency); }
.emergency-banner .btn-emergency:hover { background: #f4efe5; }

/* Info banner (non-emergency) */
.info-banner { background: var(--navy); color: #fff; padding: 22px 0; }
.info-banner .container { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.info-banner p { color: #cfe1ea; margin: 0; }
.info-banner strong { color: #fff; }

/* Contact page */
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; }
.contact-info-item { display: flex; gap: 14px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.contact-info-item:first-child { padding-top: 0; }
.contact-info-icon { width: 22px; height: 22px; color: var(--coral); flex-shrink: 0; margin-top: 3px; }
.contact-info-item h3 { font-size: 0.95rem; margin-bottom: 4px; }
.contact-info-item p, .contact-info-item a { font-size: 0.94rem; }
.contact-info-item a:hover { color: var(--navy); }

/* Form */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-size: 0.88rem; font-weight: 600; color: var(--navy); }
.form-field input, .form-field select, .form-field textarea {
  padding: 12px 14px; border: 1px solid var(--line); border-radius: var(--radius);
  font-family: inherit; font-size: 0.95rem; color: var(--ink); background: #fff;
}
.form-field input:focus, .form-field textarea:focus { border-color: var(--navy); }
.form-field textarea { resize: vertical; min-height: 130px; }
.form-note { font-size: 0.82rem; color: var(--text-muted); margin-top: 6px; }
.form-status { font-size: 0.9rem; margin-top: 12px; display: none; }
.form-status.is-visible { display: block; }
.form-status.success { color: #2b6b4a; }
.form-status.error { color: var(--emergency); }
.hp-field { position: absolute; left: -9999px; top: -9999px; }

/* Map */
.map-wrap { position: relative; width: 100%; padding-bottom: 46%; height: 0; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); }
.map-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* Gallery */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.gallery-grid img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: var(--radius); }

/* Accordion (patient information) */
.accordion-item { border-bottom: 1px solid var(--line); }
.accordion-trigger {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  background: none; border: none; padding: 20px 4px; text-align: left;
  font-family: var(--font-head); font-size: 1.05rem; color: var(--navy); font-weight: 600;
}
.accordion-trigger .plus { font-size: 1.3rem; color: var(--coral); transition: transform 0.2s ease; }
.accordion-item.is-open .accordion-trigger .plus { transform: rotate(45deg); }
.accordion-panel { max-height: 0; overflow: hidden; transition: max-height 0.25s ease; }
.accordion-item.is-open .accordion-panel { max-height: 400px; }
.accordion-panel-inner { padding: 0 4px 20px; }
.accordion-panel-inner p { font-size: 0.95rem; }

/* Careers */
.career-item { border: 1px solid var(--line); border-radius: var(--radius); padding: 24px 28px; background: #fff; display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.career-item h3 { font-size: 1.02rem; margin-bottom: 4px; }
.career-item p { font-size: 0.88rem; margin: 0; }
.empty-state { border: 1px dashed var(--line); border-radius: var(--radius); padding: 40px 28px; text-align: center; background: #fff; }
.empty-state p { margin: 0 auto; }

/* CTA band */
.cta-band { background: var(--navy); color: #fff; padding: 56px 0; text-align: center; }
.cta-band h2 { color: #fff; margin-bottom: 12px; }
.cta-band p { color: #bcd3dd; margin: 0 auto 26px; }
.cta-band .hero-actions { justify-content: center; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer { background: var(--navy-dark); color: #c3d5dd; padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-brand .brand-name { color: #fff; }
.footer-brand p { color: #93aab3; font-size: 0.9rem; margin-top: 12px; max-width: 34ch; }
.footer-col h3 { color: #fff; font-size: 0.92rem; margin-bottom: 16px; font-family: var(--font-body); font-weight: 600; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col a { color: #a7bfc8; font-size: 0.92rem; }
.footer-col a:hover { color: #fff; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding: 22px 0; font-size: 0.82rem; color: #7c96a1; flex-wrap: wrap; gap: 10px; }
.footer-bottom a { color: #9fb7c1; }
.footer-bottom a:hover { color: #fff; }
.footer-legal { display: flex; gap: 16px; flex-wrap: wrap; }

/* ==========================================================================
   FLOATING BUTTONS
   ========================================================================== */
.fab-stack { position: fixed; right: 22px; bottom: 22px; display: flex; flex-direction: column; align-items: flex-end; gap: 12px; z-index: 700; }
.fab {
  width: 56px; height: 56px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md); transition: transform 0.15s ease; position: relative;
}
.fab:hover { transform: scale(1.06); }
.fab svg { width: 26px; height: 26px; fill: #fff; }
.fab-whatsapp { background: #25d366; }
.fab-call { background: var(--navy); }

.fab-tooltip {
  position: absolute; right: 66px; top: 50%; transform: translateY(-50%);
  background: var(--navy); color: #fff; font-size: 0.8rem; padding: 7px 12px;
  border-radius: var(--radius); white-space: nowrap; opacity: 0; pointer-events: none; transition: opacity 0.15s ease;
}
.fab:hover .fab-tooltip, .fab:focus .fab-tooltip { opacity: 1; }

.scroll-top-btn {
  position: fixed; right: 22px; bottom: 154px; width: 42px; height: 42px; border-radius: 50%;
  background: #fff; color: var(--navy); display: none; align-items: center; justify-content: center;
  border: 1px solid var(--line); box-shadow: var(--shadow-sm); z-index: 690;
}
.scroll-top-btn.is-visible { display: flex; }
.scroll-top-btn svg { width: 18px; height: 18px; fill: var(--navy); }

/* ==========================================================================
   REVEAL ANIMATION
   ========================================================================== */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity 0.5s ease, transform 0.5s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } .reveal { opacity: 1; transform: none; transition: none; } }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-media { order: -1; }
  .split { grid-template-columns: 1fr; gap: 30px; }
  .split.reverse .split-media { order: -1; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .quick-access { grid-template-columns: repeat(2, 1fr); }
  .hours-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .card-grid.cols-3 { grid-template-columns: repeat(2, 1fr); }
  .stat-item { flex: 1 1 45%; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
}

@media (max-width: 720px) {
  :root { --header-h: 68px; }
  .topbar-hours { display: none; }
  .topbar .container { justify-content: flex-start; gap: 20px; }
  .card-grid, .card-grid.cols-3 { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .values-grid .value-row:nth-child(odd) { border-right: none; padding-right: 0; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .hero { padding: 48px 0 0; }
  .hero-grid { padding-bottom: 40px; }
  .section { padding: 52px 0; }
  .emergency-banner .container, .info-banner .container { flex-direction: column; align-items: flex-start; }
  .fab { width: 50px; height: 50px; }
  .fab svg { width: 22px; height: 22px; }
  .scroll-top-btn { right: 16px; bottom: 130px; width: 38px; height: 38px; }
  .fab-stack { right: 16px; bottom: 16px; }
  .career-item { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .quick-access { grid-template-columns: 1fr; }
  .hours-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .brand-name { font-size: 0.9rem; }
  .brand-sub { font-size: 0.65rem; }
  .hero-actions .btn, .cta-band .btn { width: 100%; }
  .hero-actions, .cta-band .hero-actions { flex-direction: column; }
  .stat-item { flex: 1 1 100%; }
}
