/* ============================================================
   FORTRESS MEDICAL CENTRE — Main Stylesheet
   Brand: Navy #1A2F6E | Red #C41E3A | Light #F0F4FF
   ============================================================ */

:root {
  --navy: #1A2F6E;
  --navy-dark: #111e4d;
  --navy-light: #2a4190;
  --red: #C41E3A;
  --red-dark: #9e1830;
  --red-light: #e63555;
  --white: #ffffff;
  --off-white: #f8faff;
  --light-bg: #f0f4ff;
  --text: #1a1a2e;
  --text-muted: #5a6a8a;
  --border: #dde3f0;
  --shadow-sm: 0 2px 8px rgba(26,47,110,0.08);
  --shadow-md: 0 4px 24px rgba(26,47,110,0.12);
  --shadow-lg: 0 8px 48px rgba(26,47,110,0.16);
  --radius: 12px;
  --radius-lg: 20px;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;
  --transition: 0.25s ease;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--transition); }
ul { list-style: none; }
input, select, textarea, button { font-family: inherit; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn--lg { padding: 16px 32px; font-size: 16px; }
.btn--full { width: 100%; justify-content: center; }
.btn--primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn--primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(196,30,58,0.35);
}
.btn--outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.7);
}
.btn--outline-white:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
}
.btn--emergency {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
  padding: 10px 20px;
  font-size: 14px;
  border-radius: 8px;
}
.btn--emergency:hover { background: var(--red-dark); }

/* ===== TOP BAR ===== */
.topbar {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.8);
  font-size: 13px;
  padding: 8px 0;
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.topbar__item {
  display: flex;
  align-items: center;
  gap: 6px;
}
.topbar__item svg { width: 14px; height: 14px; opacity: 0.7; }
.topbar__reg { color: rgba(255,255,255,0.5); font-size: 12px; }

/* ===== HEADER ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition);
}
.header.scrolled { box-shadow: var(--shadow-md); }
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 12px;
  padding-bottom: 12px;
}

/* Logo */
.logo { display: flex; align-items: center; gap: 10px; }
.logo__img { height: 56px; width: auto; object-fit: contain; }
.logo__fallback {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo__cross {
  font-size: 28px;
  color: var(--red);
  font-weight: 900;
  line-height: 1;
}
.logo__cross--white { color: rgba(255,255,255,0.9); }
.logo__name {
  display: block;
  font-size: 20px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.5px;
  line-height: 1;
}
.logo__sub {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: var(--red);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  line-height: 1.4;
}

/* Nav */
.nav { display: flex; align-items: center; gap: 4px; }
.nav__link {
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  transition: all var(--transition);
}
.nav__link:hover, .nav__link.active {
  color: var(--navy);
  background: var(--light-bg);
  font-weight: 600;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 680px;
  display: flex;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(17,30,77,0.92) 0%, rgba(26,47,110,0.85) 60%, rgba(196,30,58,0.4) 100%),
    url('../images/building.jpg') center/cover no-repeat;
  background-color: var(--navy-dark);
  padding: 80px 0 60px;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10,18,50,0.5) 0%, transparent 100%);
  pointer-events: none;
}
.hero__content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  color: var(--white);
}
.hero__badge {
  display: inline-block;
  background: rgba(196,30,58,0.25);
  border: 1px solid rgba(196,30,58,0.5);
  color: #ff8fa0;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 20px;
  color: var(--white);
}
.hero__title--accent { color: #ff8fa0; }
.hero__subtitle {
  font-size: 18px;
  color: rgba(255,255,255,0.82);
  margin-bottom: 36px;
  max-width: 540px;
  line-height: 1.7;
}
.hero__cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

/* Hero stats */
.hero__stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 32px;
}
.hero__stat strong {
  display: block;
  font-size: 28px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.hero__stat span {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ===== NOTICE STRIP ===== */
.notice-strip {
  background: linear-gradient(90deg, var(--red) 0%, var(--red-dark) 100%);
  color: var(--white);
  padding: 14px 0;
  font-size: 15px;
}
.notice-strip .container {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.notice-strip__icon { font-size: 20px; }

/* ===== SECTIONS ===== */
.section { padding: 80px 0; }
.section__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}
.section__tag {
  display: inline-block;
  background: var(--light-bg);
  color: var(--navy);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
  border: 1px solid var(--border);
}
.section__title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: var(--navy-dark);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section__title--left { text-align: left; }
.section__subtitle {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ===== SERVICES ===== */
.services { background: var(--white); }
.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 0;
  background: var(--red);
  border-radius: 0 0 4px 0;
  transition: height 0.35s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.service-card:hover::before { height: 100%; }

.service-card__icon {
  width: 60px; height: 60px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.service-card__icon svg { width: 32px; height: 32px; }
.service-card__icon--1 { background: #e8f0ff; color: var(--navy); }
.service-card__icon--2 { background: #ffe8ec; color: var(--red); }
.service-card__icon--3 { background: #e8f8f0; color: #1a6e3e; }
.service-card__icon--4 { background: #fff3e8; color: #b05a00; }
.service-card__icon--5 { background: #f3e8ff; color: #6e1a9e; }
.service-card__icon--6 { background: #e8fafa; color: #1a6e6e; }

.service-card__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 10px;
}
.service-card__desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ===== ABOUT ===== */
.about { background: var(--off-white); }
.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about__img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
  background: var(--light-bg);
}
.about__img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.about__img-wrap--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-size: 60px;
}
.about__img-wrap--placeholder::after { content: '🏥'; }
.about__badge-float {
  position: absolute;
  bottom: 24px; left: 24px;
  background: var(--navy);
  color: var(--white);
  padding: 12px 20px;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
}
.about__badge-float strong {
  display: block;
  font-size: 16px;
  font-weight: 800;
  color: var(--white);
}
.about__badge-float span {
  font-size: 12px;
  color: rgba(255,255,255,0.7);
}

.about__lead {
  font-size: 17px;
  color: var(--text);
  line-height: 1.75;
  margin-bottom: 16px;
  font-weight: 500;
}
.about__body {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 32px;
}
.about__pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 36px;
}
.pillar {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.pillar__icon {
  font-size: 24px;
  flex-shrink: 0;
  margin-top: 2px;
}
.pillar strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 4px;
}
.pillar p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ===== WHY US ===== */
.why-us {
  background: var(--navy);
  color: var(--white);
}
.why-us .section__tag {
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.8);
  border-color: rgba(255,255,255,0.15);
}
.why-us .section__title { color: var(--white); }
.why-us__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.why-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: all var(--transition);
}
.why-card:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(196,30,58,0.6);
  transform: translateY(-4px);
}
.why-card__num {
  font-size: 36px;
  font-weight: 800;
  color: rgba(196,30,58,0.6);
  line-height: 1;
  margin-bottom: 16px;
}
.why-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.why-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
}

/* ===== GALLERY ===== */
.gallery { background: var(--white); }
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery__item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  background: var(--light-bg);
  cursor: pointer;
}
.gallery__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery__item:hover img { transform: scale(1.06); }
.gallery__item--wide {
  grid-column: span 2;
}
.gallery__item--wide-right {
  grid-column: span 2;
  grid-column-start: 2;
}
.gallery__placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  color: var(--navy);
  opacity: 0.3;
}
.gallery__placeholder::after { content: '🏥'; }
.gallery__caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(17,30,77,0.85));
  color: var(--white);
  padding: 24px 16px 12px;
  font-size: 14px;
  font-weight: 600;
  transform: translateY(100%);
  transition: transform var(--transition);
}
.gallery__item:hover .gallery__caption { transform: translateY(0); }

/* ===== TESTIMONIALS ===== */
.testimonials { background: var(--off-white); }
.testi__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.testi-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.testi-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.testi-card__stars {
  color: #f59e0b;
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.testi-card__text {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 24px;
}
.testi-card__author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testi-card__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-weight: 700;
  font-size: 18px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.testi-card__author strong {
  display: block;
  font-size: 15px;
  color: var(--navy-dark);
}
.testi-card__author span {
  font-size: 12px;
  color: var(--text-muted);
}

/* ===== CONTACT ===== */
.contact { background: var(--white); }
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact__lead {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 36px;
}
.contact__details { display: flex; flex-direction: column; gap: 24px; margin-bottom: 32px; }
.contact__detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact__detail-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--light-bg);
  color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact__detail-icon svg { width: 20px; height: 20px; }
.contact__detail strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 4px;
}
.contact__detail p, .contact__detail a {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}
.contact__detail a:hover { color: var(--red); }

.contact__social { display: flex; gap: 12px; flex-wrap: wrap; }
.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  border: 2px solid transparent;
  transition: all var(--transition);
  cursor: pointer;
}
.social-btn svg { width: 20px; height: 20px; }
.social-btn--whatsapp {
  background: #25D366;
  color: var(--white);
  border-color: #25D366;
}
.social-btn--whatsapp:hover { background: #1da851; }
.social-btn--call {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.social-btn--call:hover { background: var(--navy-dark); }

/* Contact Form */
.contact__form-wrap {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--border);
}
.contact__form-wrap h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--red);
  display: inline-block;
}
.form__group { margin-bottom: 18px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form__group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy-dark);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.form__group input,
.form__group select,
.form__group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 15px;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  appearance: none;
}
.form__group input:focus,
.form__group select:focus,
.form__group textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(26,47,110,0.1);
}
.form__group textarea { resize: vertical; min-height: 90px; }
.form__note {
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 12px;
  line-height: 1.6;
}
.form__note a { color: var(--red); font-weight: 600; }

.form__success {
  text-align: center;
  padding: 40px 20px;
}
.form__success-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: #e8f8f0;
  color: #1a6e3e;
  font-size: 28px;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.form__success h4 {
  font-size: 22px;
  color: var(--navy-dark);
  margin-bottom: 8px;
}
.form__success p { color: var(--text-muted); font-size: 15px; }

/* ===== MAP ===== */
.map-section {
  display: block;
  line-height: 0;
}
.map-section iframe { display: block; width: 100%; }

/* ===== FOOTER ===== */
.footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.75);
  padding: 64px 0 0;
}
.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.footer__logo .logo__cross { font-size: 32px; }
.footer__name {
  display: block;
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.5px;
  line-height: 1;
}
.footer__sub {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: #ff8fa0;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.footer__tagline {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
  margin-bottom: 12px;
}
.footer__reg {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
}
.footer__col h4 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--red);
  display: inline-block;
}
.footer__col ul { display: flex; flex-direction: column; gap: 10px; }
.footer__col li { font-size: 14px; color: rgba(255,255,255,0.6); }
.footer__col a { color: rgba(255,255,255,0.6); transition: color var(--transition); }
.footer__col a:hover { color: var(--white); }
.footer__bottom {
  background: rgba(0,0,0,0.2);
  padding: 20px 0;
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}

/* ===== FAB EMERGENCY ===== */
.fab-emergency {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 200;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(196,30,58,0.5);
  transition: all var(--transition);
  animation: pulse 2.5s infinite;
}
.fab-emergency svg { width: 26px; height: 26px; }
.fab-emergency:hover {
  transform: scale(1.12);
  background: var(--red-dark);
  animation: none;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(196,30,58,0.5); }
  50% { box-shadow: 0 4px 40px rgba(196,30,58,0.8), 0 0 0 10px rgba(196,30,58,0.15); }
}

/* ===== RESPONSIVE ===== */
@keyframes fadeIn {
  from { opacity: 0; } to { opacity: 1; }
}

@media (max-width: 1024px) {
  .about__inner { grid-template-columns: 1fr; gap: 40px; }
  .about__image-col { max-width: 560px; }
  .contact__inner { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer__brand { grid-column: span 2; }
}

@media (max-width: 768px) {
  .topbar__reg { display: none; }
  .nav {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--white);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    z-index: 99;
    padding: 20px;
  }
  .nav.open { display: flex; }
  .nav__link { font-size: 20px; padding: 14px 28px; }
  .hamburger { display: flex; z-index: 101; position: relative; }
  .btn--emergency { display: none; }

  .hero { min-height: 560px; padding: 60px 0 40px; }
  .hero__cta { flex-direction: column; }
  .hero__stats { gap: 20px; }

  .gallery__grid { grid-template-columns: 1fr 1fr; }
  .gallery__item--wide { grid-column: span 2; }

  .about__pillars { grid-template-columns: 1fr; }
  .form__row { grid-template-columns: 1fr; }

  .footer__inner { grid-template-columns: 1fr; }
  .footer__brand { grid-column: auto; }

  .section { padding: 56px 0; }
}

@media (max-width: 480px) {
  .gallery__grid { grid-template-columns: 1fr; }
  .gallery__item--wide { grid-column: auto; }
  .contact__form-wrap { padding: 24px; }
  .hero__stats { flex-direction: column; gap: 16px; }
  .topbar__inner { flex-direction: column; align-items: flex-start; gap: 4px; }
}
