/* ============================================================
   Pandi Energy - corporate stylesheet
   Brand: red #dd2426, gray #6c6869, charcoal, white
   ============================================================ */

:root {
  --red: #dd2426;
  --red-dark: #b51d1f;
  --red-deep: #8f1517;
  --ink: #17171b;
  --charcoal: #222227;
  --gray: #6c6869;
  --body: #4d4d54;
  --paper: #ffffff;
  --off: #f7f7f8;
  --line: #e9e9ec;
  --green: #25d366;
  --radius: 14px;
  --shadow-sm: 0 2px 10px rgba(20, 20, 25, .06);
  --shadow-md: 0 10px 30px rgba(20, 20, 25, .10);
  --shadow-lg: 0 24px 60px rgba(20, 20, 25, .16);
  --font-head: 'Montserrat', 'Segoe UI', Arial, sans-serif;
  --font-body: 'Montserrat', 'Segoe UI', Arial, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

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

img { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--ink);
  line-height: 1.2;
  font-weight: 700;
}

a { color: var(--red); text-decoration: none; }
a:hover { color: var(--red-dark); }

ul { list-style: none; }

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

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--red); color: #fff; padding: 10px 18px; z-index: 200;
}
.skip-link:focus { left: 0; color: #fff; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-head); font-weight: 700; font-size: 15px;
  padding: 14px 30px; border-radius: 999px; border: 2px solid transparent;
  cursor: pointer; transition: all .25s ease; line-height: 1.2;
}
.btn--primary { background: var(--red); color: #fff; }
.btn--primary:hover { background: var(--red-dark); color: #fff; transform: translateY(-2px); box-shadow: 0 10px 24px rgba(221, 36, 38, .35); }
.btn--ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.65); }
.btn--ghost:hover { background: #fff; color: var(--ink); border-color: #fff; }
.btn--dark { background: var(--ink); color: #fff; }
.btn--dark:hover { background: var(--charcoal); color: #fff; transform: translateY(-2px); }
.btn--outline { background: transparent; color: var(--red); border-color: var(--red); }
.btn--outline:hover { background: var(--red); color: #fff; }
.btn svg { width: 18px; height: 18px; fill: currentColor; }

/* ---------- Topbar ---------- */
.topbar {
  background: var(--ink); color: rgba(255,255,255,.82);
  font-size: 13.5px; padding: 9px 0;
}
.topbar__inner { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.topbar__group { display: flex; align-items: center; gap: 22px; }
.topbar__item { display: inline-flex; align-items: center; gap: 7px; color: rgba(255,255,255,.82); }
.topbar__item:hover { color: #fff; }
.topbar svg { width: 15px; height: 15px; fill: var(--red); flex-shrink: 0; }
.topbar__hours { display: inline-flex; align-items: center; gap: 7px; }

/* ---------- Header / nav ---------- */
.header {
  position: sticky; top: 0; z-index: 100;
  background: #fff; border-bottom: 1px solid var(--line);
  transition: box-shadow .25s ease;
}
.header.is-scrolled { box-shadow: var(--shadow-md); }
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; height: 78px; }
.header__brand {
  display: inline-flex; align-items: center; flex-shrink: 0;
  padding: 6px 0;
}
.header__brand img {
  width: auto; max-width: 190px; max-height: 54px; height: auto;
  object-fit: contain; object-position: left center;
}

.nav { display: flex; align-items: center; gap: 28px; }
.nav__list { display: flex; gap: 6px; }
.nav__link {
  display: block; padding: 10px 14px; color: var(--ink);
  font-family: var(--font-head); font-weight: 600; font-size: 14.5px;
  position: relative; border-radius: 8px;
}
.nav__link::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 4px;
  height: 2.5px; background: var(--red); border-radius: 2px;
  transform: scaleX(0); transform-origin: left; transition: transform .22s ease;
}
.nav__link:hover { color: var(--red); }
.nav__link:hover::after, .nav__link.is-active::after { transform: scaleX(1); }
.nav__link.is-active { color: var(--red); }
.nav__cta { padding: 11px 24px; font-size: 14px; }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: 0; cursor: pointer; padding: 8px;
}
.nav-toggle span { width: 26px; height: 3px; background: var(--ink); border-radius: 2px; transition: all .25s ease; }
.nav-toggle.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- Hero (home) ---------- */
.hero {
  position: relative; color: #fff;
  min-height: 540px; display: flex; align-items: stretch;
  background: var(--ink);
  overflow: hidden;
}
.hero-slider__slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0;
  display: flex; align-items: center;
  opacity: 0; visibility: hidden;
  transition: opacity .65s ease, visibility .65s ease;
}
.hero-slide.is-active { opacity: 1; visibility: visible; z-index: 1; }
.hero-slide .container {
  position: relative; z-index: 2; width: 100%;
}
.hero__bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(100deg, rgba(13,13,16,.90) 0%, rgba(13,13,16,.78) 34%, rgba(13,13,16,.28) 67%, rgba(13,13,16,.18) 100%),
    linear-gradient(0deg, rgba(13,13,16,.32), rgba(13,13,16,0) 42%);
}
.hero__drop {
  position: absolute; right: -40px; bottom: -120px; width: 360px; opacity: .12;
  pointer-events: none; z-index: 3;
}
.hero__inner { position: relative; z-index: 2; max-width: 570px; padding: 72px 0 86px; }
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-head); font-weight: 700; font-size: 13px;
  letter-spacing: 2.5px; text-transform: uppercase; color: #fff;
  background: rgba(221, 36, 38, .92); padding: 8px 18px; border-radius: 999px;
  margin-bottom: 18px;
}
.hero h1 {
  color: #fff; font-size: clamp(34px, 4.1vw, 48px); font-weight: 800;
  margin-bottom: 16px; letter-spacing: 0;
}
.hero h1 .accent { color: var(--red); }
.hero p { font-size: 16.5px; color: rgba(255,255,255,.88); max-width: 500px; margin-bottom: 26px; }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-slider__control {
  position: absolute; right: max(24px, calc((100vw - 1200px) / 2 + 24px)); bottom: 88px; z-index: 6;
  width: 44px; height: 44px; border: 1px solid rgba(255,255,255,.55);
  border-radius: 50%; background: rgba(13,13,16,.34); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}
.hero-slider__control:hover,
.hero-slider__control:focus-visible {
  background: var(--red); border-color: var(--red);
  transform: scale(1.04);
}
.hero-slider__control svg { width: 22px; height: 22px; fill: currentColor; }
.hero-slider__control--prev { right: max(78px, calc((100vw - 1200px) / 2 + 78px)); }
.hero-slider__control--pause { right: max(132px, calc((100vw - 1200px) / 2 + 132px)); }
.hero-slider__control--pause .icon-play { display: none; }
.hero-slider__control--pause.is-paused .icon-pause { display: none; }
.hero-slider__control--pause.is-paused .icon-play { display: block; }
.hero-slider__dots {
  position: absolute; left: 50%; bottom: 92px; z-index: 6;
  display: flex; gap: 10px; transform: translateX(-50%);
}
.hero-slider__dot {
  width: 11px; height: 11px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.82);
  background: rgba(255,255,255,.20);
  cursor: pointer; padding: 0;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}
.hero-slider__dot.is-active,
.hero-slider__dot:hover,
.hero-slider__dot:focus-visible {
  background: var(--red); border-color: var(--red);
  transform: scale(1.12);
}

/* Stats strip overlapping hero bottom */
.stats {
  position: relative; z-index: 5; margin-top: -64px;
}
.stats__card {
  background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-lg);
  display: grid; grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
}
.stat {
  padding: 30px 20px; text-align: center; position: relative;
}
.stat + .stat::before {
  content: ""; position: absolute; left: 0; top: 22%; bottom: 22%;
  width: 1px; background: var(--line);
}
.stat__value {
  font-family: var(--font-head); font-weight: 800; font-size: 36px;
  color: var(--red); line-height: 1.1;
}
.stat__label { font-size: 13.5px; color: var(--gray); margin-top: 6px; font-weight: 500; letter-spacing: .3px; }

/* ---------- Sections ---------- */
.section { padding: 92px 0; }
.section--off { background: var(--off); }
.section--tight { padding: 70px 0; }

.section-head { max-width: 680px; margin-bottom: 52px; }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-head); font-weight: 700; font-size: 13px;
  letter-spacing: 2.5px; text-transform: uppercase; color: var(--red);
  margin-bottom: 14px;
}
.eyebrow::before { content: ""; width: 34px; height: 2.5px; background: var(--red); border-radius: 2px; }
.section-head--center .eyebrow::after { content: ""; width: 34px; height: 2.5px; background: var(--red); border-radius: 2px; }
.section-head h2 { font-size: clamp(28px, 3.6vw, 40px); font-weight: 800; letter-spacing: 0; }
.section-head p { margin-top: 16px; font-size: 17px; }

/* ---------- About preview / split layouts ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.split__media { position: relative; }
.split__media img { border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.split__media::before {
  content: ""; position: absolute; inset: 26px -26px -26px 26px;
  border: 3px solid var(--red); border-radius: var(--radius); z-index: -1; opacity: .25;
}
.split__badge {
  position: absolute; left: -22px; bottom: 28px;
  background: var(--red); color: #fff; border-radius: 12px;
  padding: 18px 24px; box-shadow: var(--shadow-md);
}
.split__badge strong { font-family: var(--font-head); font-size: 30px; font-weight: 800; display: block; line-height: 1; }
.split__badge span { font-size: 13px; opacity: .92; }
.split__body h2 { font-size: clamp(26px, 3.2vw, 36px); margin-bottom: 18px; letter-spacing: 0; }
.split__body p + p { margin-top: 14px; }
.split__body .btn { margin-top: 28px; }

.motto { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 24px; }
.motto__chip {
  background: var(--off); border: 1px solid var(--line); border-radius: 10px;
  padding: 12px 16px; flex: 1 1 150px;
}
.motto__chip strong { color: var(--red); font-family: var(--font-head); font-size: 14px; display: block; }
.motto__chip span { font-size: 13.5px; }

/* ---------- Division cards ---------- */
.divisions-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.division-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 34px 24px 30px; position: relative; overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex; flex-direction: column;
}
.division-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: var(--red); transform: scaleX(0); transform-origin: left;
  transition: transform .3s ease;
}
.division-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.division-card:hover::before { transform: scaleX(1); }
.division-card__logo {
  height: 96px; display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px; padding: 10px 0; overflow: visible;
}
.division-card__logo img {
  display: block; max-height: 76px; width: auto; max-width: min(280px, 100%);
  height: auto; object-fit: contain; object-position: center; flex-shrink: 0;
}
.division-card h3 { font-size: 17px; margin-bottom: 10px; }
.division-card p { font-size: 14.5px; flex: 1; }
.division-card .more {
  margin-top: 18px; font-family: var(--font-head); font-weight: 700; font-size: 14px;
  display: inline-flex; align-items: center; gap: 6px;
}
.division-card .more svg { width: 16px; height: 16px; fill: currentColor; transition: transform .2s ease; }
.division-card:hover .more svg { transform: translateX(4px); }

/* ---------- Feature / why-choose list ---------- */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.feature {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px; transition: transform .25s ease, box-shadow .25s ease;
}
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.feature__icon {
  width: 52px; height: 52px; border-radius: 12px; background: rgba(221,36,38,.09);
  display: flex; align-items: center; justify-content: center; margin-bottom: 18px;
}
.feature__icon svg { width: 26px; height: 26px; fill: var(--red); }
.feature h3 { font-size: 17px; margin-bottom: 8px; }
.feature p { font-size: 14.5px; }

/* ---------- Values ---------- */
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.value-card {
  background: #fff; border-radius: var(--radius); padding: 30px 26px;
  border-top: 4px solid var(--red); box-shadow: var(--shadow-sm);
}
.value-card h3 { font-size: 18px; margin-bottom: 10px; }
.value-card p { font-size: 14.5px; }

/* ---------- Pledge band ---------- */
.pledge {
  background:
    radial-gradient(1100px 420px at 110% -10%, rgba(221,36,38,.30), transparent 60%),
    radial-gradient(900px 420px at -10% 110%, rgba(221,36,38,.22), transparent 60%),
    var(--ink);
  color: #fff;
}
.pledge .section-head h2, .pledge h3 { color: #fff; }
.pledge .section-head p { color: rgba(255,255,255,.75); }
.pledge-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.pledge-item {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius); padding: 26px 20px; text-align: center;
  transition: background .25s ease, transform .25s ease;
}
.pledge-item:hover { background: rgba(221,36,38,.16); transform: translateY(-4px); }
.pledge-item svg { width: 30px; height: 30px; fill: var(--red); margin: 0 auto 14px; display: block; }
.pledge-item h3 { font-size: 16px; margin-bottom: 8px; }
.pledge-item p { font-size: 13.5px; color: rgba(255,255,255,.72); }

/* ---------- Service cards ---------- */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.service-card {
  background: #fff; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line); display: flex; flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.service-card__media { height: 210px; overflow: hidden; background: var(--off); }
.service-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.service-card:hover .service-card__media img { transform: scale(1.05); }
.service-card__body { padding: 26px; flex: 1; display: flex; flex-direction: column; }
.service-card h3 { font-size: 18px; margin-bottom: 10px; }
.service-card p { font-size: 14.5px; flex: 1; }
.service-card .more { margin-top: 16px; font-family: var(--font-head); font-weight: 700; font-size: 14px; }

/* ---------- CTA band ---------- */
.cta {
  position: relative; overflow: hidden; color: #fff;
  background: linear-gradient(120deg, var(--red-deep), var(--red) 55%, #e8484a);
}
.cta::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 85% 20%, rgba(255,255,255,.14) 0, transparent 28%),
    radial-gradient(circle at 70% 90%, rgba(255,255,255,.10) 0, transparent 24%);
}
.cta__inner {
  position: relative; padding: 78px 0; display: flex; align-items: center;
  justify-content: space-between; gap: 32px; flex-wrap: wrap;
}
.cta h2 { color: #fff; font-size: clamp(26px, 3.4vw, 38px); font-weight: 800; }
.cta p { color: rgba(255,255,255,.92); margin-top: 10px; max-width: 560px; }
.cta .btn--ghost:hover { color: var(--red); }
.cta__drop { position: absolute; right: 6%; top: 50%; transform: translateY(-50%); width: 160px; opacity: .16; }

/* ---------- Inner page hero ---------- */
.page-hero {
  position: relative; color: #fff; overflow: hidden;
  background:
    radial-gradient(900px 360px at 85% -20%, rgba(255,255,255,.10), transparent 55%),
    linear-gradient(115deg, #141417 0%, #2a1112 55%, var(--red-deep) 130%);
  padding: 86px 0 78px;
}
.page-hero__drop {
  position: absolute; right: 4%; bottom: -90px; width: 300px; opacity: .12; pointer-events: none;
}
.page-hero h1 { color: #fff; font-size: clamp(30px, 4.4vw, 46px); font-weight: 800; letter-spacing: 0; }
.page-hero p { color: rgba(255,255,255,.82); max-width: 640px; margin-top: 14px; font-size: 17px; }
.breadcrumb { display: flex; gap: 8px; font-size: 13.5px; margin-bottom: 18px; color: rgba(255,255,255,.6); }
.breadcrumb a { color: rgba(255,255,255,.85); }
.breadcrumb a:hover { color: #fff; }

/* ---------- Division detail blocks ---------- */
.division-detail { display: grid; grid-template-columns: 1.05fr .95fr; gap: 60px; align-items: center; }
.division-detail + .division-detail { margin-top: 90px; }
.division-detail--flip .division-detail__media { order: 2; }
.division-detail__media { position: relative; display: flex; justify-content: center; }
.division-detail__media .frame {
  background: var(--off); border-radius: var(--radius); padding: 40px;
  display: flex; align-items: center; justify-content: center; width: 100%;
  min-height: 340px; box-shadow: var(--shadow-sm); overflow: hidden;
}
.division-detail__media .frame--photo { padding: 0; }
.division-detail__media .frame--photo img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius); }
.division-detail__media .frame img.cutout { max-height: 360px; width: auto; }
.division-detail__logo {
  min-height: 82px; margin-bottom: 18px; padding: 8px 0;
  display: flex; align-items: center; overflow: visible;
}
.division-detail__logo img {
  display: block; max-height: 68px; width: auto; max-width: min(440px, 100%);
  height: auto; object-fit: contain; object-position: left center; flex-shrink: 0;
}
.division-detail h2 { font-size: clamp(24px, 3vw, 32px); margin-bottom: 14px; }
.division-detail p + p { margin-top: 12px; }
.ticks { margin-top: 20px; display: grid; gap: 12px; }
.ticks li { display: flex; gap: 12px; align-items: flex-start; font-size: 15px; }
.ticks svg { width: 20px; height: 20px; fill: var(--red); flex-shrink: 0; margin-top: 3px; }

/* ---------- Branch cards ---------- */
.branches-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.branch-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px; transition: transform .25s ease, box-shadow .25s ease;
}
.branch-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.branch-card--hq { border-top: 4px solid var(--red); }
.branch-card h3 {
  font-size: 18px; display: flex; align-items: center; gap: 10px; margin-bottom: 14px;
}
.branch-card h3 svg { width: 20px; height: 20px; fill: var(--red); }
.branch-card .tag {
  font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  background: var(--red); color: #fff; border-radius: 999px; padding: 3px 10px; margin-left: auto;
}
.branch-card ul { display: grid; gap: 9px; font-size: 14.5px; }
.branch-card li { display: flex; gap: 10px; align-items: flex-start; }
.branch-card li svg { width: 16px; height: 16px; fill: var(--gray); flex-shrink: 0; margin-top: 4px; }
.branch-card .more {
  margin-top: 16px; display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-head); font-weight: 700; font-size: 14px;
}
.branch-card .more svg { width: 16px; height: 16px; fill: currentColor; }

.map-wrap {
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md);
  margin-top: 56px; border: 1px solid var(--line);
}
.map-wrap iframe { display: block; width: 100%; height: 420px; border: 0; }

.hours-banner {
  display: flex; align-items: center; justify-content: center; gap: 28px; flex-wrap: wrap;
  background: var(--ink); color: #fff; border-radius: var(--radius);
  padding: 26px 30px; margin-bottom: 52px;
}

.coverage {
  background: var(--off); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 38px 24px; margin-bottom: 52px; text-align: center;
}
.coverage img { max-width: 760px; width: 100%; margin: 0 auto; height: auto; }
.hours-banner svg { width: 26px; height: 26px; fill: var(--red); }
.hours-banner strong { font-family: var(--font-head); }
.hours-banner span { color: rgba(255,255,255,.78); }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 56px; align-items: start; }
.contact-info { display: grid; gap: 18px; }
.contact-info__item {
  display: flex; gap: 18px; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 22px;
}
.contact-info__icon {
  width: 50px; height: 50px; border-radius: 12px; background: rgba(221,36,38,.09);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-info__icon svg { width: 24px; height: 24px; fill: var(--red); }
.contact-info__item h3 { font-size: 16px; margin-bottom: 4px; }
.contact-info__item p, .contact-info__item a { font-size: 14.5px; }

.form-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 36px; box-shadow: var(--shadow-sm);
}
.form-card h2 { font-size: 24px; margin-bottom: 6px; }
.form-card > p { font-size: 14.5px; margin-bottom: 24px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-field { display: flex; flex-direction: column; gap: 7px; }
.form-field--full { grid-column: 1 / -1; }
.form-field label { font-family: var(--font-head); font-weight: 600; font-size: 13.5px; color: var(--ink); }
.form-field label .req { color: var(--red); }
.form-field input, .form-field select, .form-field textarea {
  font-family: var(--font-body); font-size: 15px; color: var(--ink);
  border: 1.5px solid var(--line); border-radius: 10px; padding: 13px 15px;
  background: var(--off); transition: border-color .2s ease, background .2s ease;
  width: 100%;
}
.form-field textarea { resize: vertical; min-height: 140px; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none; border-color: var(--red); background: #fff;
}
.form-actions { margin-top: 24px; }
.form-note { font-size: 13px; color: var(--gray); margin-top: 14px; }

/* honeypot - hidden from humans */
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

.alert {
  border-radius: 12px; padding: 16px 20px; margin-bottom: 24px; font-size: 15px;
  border: 1px solid;
}
.alert--success { background: #f0faf2; border-color: #bfe6c8; color: #1d6b34; }
.alert--error { background: #fdf1f1; border-color: #f3c2c3; color: #93292b; }
.alert ul { list-style: disc; padding-left: 20px; margin-top: 6px; }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin: 0 auto; display: grid; gap: 14px; }
.faq details {
  background: #fff; border: 1px solid var(--line); border-radius: 12px;
  padding: 0; overflow: hidden;
}
.faq summary {
  cursor: pointer; list-style: none; display: flex; justify-content: space-between;
  align-items: center; gap: 16px; padding: 20px 24px;
  font-family: var(--font-head); font-weight: 600; font-size: 15.5px; color: var(--ink);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; font-size: 22px; color: var(--red); font-weight: 600;
  transition: transform .2s ease; line-height: 1;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details > div { padding: 0 24px 20px; font-size: 14.5px; }

/* ---------- Team strip ---------- */
.team-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.team-strip figure {
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm);
  position: relative; margin: 0;
}
.team-strip img { width: 100%; height: 250px; object-fit: cover; transition: transform .4s ease; }
.team-strip figure:hover img { transform: scale(1.04); }
.team-strip figcaption {
  position: absolute; inset: auto 0 0 0; padding: 30px 18px 14px;
  background: linear-gradient(transparent, rgba(13,13,16,.82));
  color: #fff; font-size: 13.5px; font-weight: 500;
}

/* ---------- Vision / mission ---------- */
.vm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.vm-card {
  background: #fff; border-radius: var(--radius); padding: 36px;
  box-shadow: var(--shadow-sm); border: 1px solid var(--line); position: relative; overflow: hidden;
}
.vm-card::after {
  content: ""; position: absolute; right: -30px; top: -30px; width: 120px; height: 120px;
  background: rgba(221,36,38,.07); border-radius: 50%;
}
.vm-card h3 { font-size: 21px; margin-bottom: 12px; display: flex; align-items: center; gap: 12px; }
.vm-card h3 svg { width: 26px; height: 26px; fill: var(--red); }
.vm-card .target {
  margin-top: 16px; background: var(--off); border-left: 3px solid var(--red);
  border-radius: 0 10px 10px 0; padding: 14px 16px; font-size: 14px;
}

/* ---------- Reveal animations ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: .08s; }
.reveal-d2 { transition-delay: .16s; }
.reveal-d3 { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: rgba(255,255,255,.72); font-size: 14.5px; }
.footer__grid {
  display: grid; grid-template-columns: 1.3fr .8fr 1fr 1.2fr; gap: 44px;
  padding: 70px 0 54px;
}
.footer__logo {
  width: auto; max-width: 200px; max-height: 58px; height: auto;
  margin-bottom: 20px; object-fit: contain; object-position: left center;
}
.footer h3 {
  color: #fff; font-size: 15px; letter-spacing: 1.2px; text-transform: uppercase;
  margin-bottom: 18px;
}
.footer__links { display: grid; gap: 10px; }
.footer__links a { color: rgba(255,255,255,.72); }
.footer__links a:hover { color: #fff; }
.footer__contact { display: grid; gap: 14px; }
.footer__contact li { display: flex; gap: 12px; align-items: flex-start; }
.footer__contact svg { width: 18px; height: 18px; fill: var(--red); flex-shrink: 0; margin-top: 4px; }
.footer__contact a { color: rgba(255,255,255,.72); }
.footer__contact a:hover { color: #fff; }
.footer__social { display: flex; gap: 10px; margin-top: 22px; }
.footer__social a {
  width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center; transition: background .2s ease;
}
.footer__social a:hover { background: var(--red); }
.footer__social svg { width: 18px; height: 18px; fill: #fff; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.10); padding: 20px 0; font-size: 13.5px; }
.footer__bottom-inner { display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.footer__motto { color: rgba(255,255,255,.5); letter-spacing: 1px; }

/* ---------- WhatsApp FAB ---------- */
.whatsapp-fab {
  position: fixed; right: 22px; bottom: 22px; z-index: 90;
  width: 56px; height: 56px; border-radius: 50%; background: var(--green);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, .45);
  transition: transform .2s ease;
}
.whatsapp-fab:hover { transform: scale(1.08); }
.whatsapp-fab svg { width: 30px; height: 30px; fill: #fff; }

/* ---------- 404 ---------- */
.error-page { text-align: center; padding: 110px 0; }
.error-page h1 { font-size: 90px; color: var(--red); font-weight: 800; line-height: 1; }
.error-page h2 { font-size: 26px; margin: 12px 0 10px; }
.error-page .btn { margin-top: 26px; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1024px) {
  .divisions-grid, .values-grid { grid-template-columns: repeat(2, 1fr); }
  .pledge-grid { grid-template-columns: repeat(3, 1fr); }
  .features-grid, .services-grid, .branches-grid, .team-strip { grid-template-columns: repeat(2, 1fr); }
  .stats__card { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(3)::before { display: none; }
  .split, .division-detail, .contact-grid, .vm-grid { grid-template-columns: 1fr; }
  .division-detail--flip .division-detail__media { order: 0; }
  .split { gap: 48px; }
  .split__media::before { display: none; }
  .topbar__hours { display: none; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .nav {
    position: fixed; top: 0; right: 0; bottom: 0; width: min(320px, 84vw);
    background: #fff; flex-direction: column; align-items: flex-start;
    padding: 96px 28px 28px; gap: 8px; box-shadow: var(--shadow-lg);
    transform: translateX(105%); transition: transform .3s ease; z-index: 99;
  }
  .nav.is-open { transform: translateX(0); }
  .nav__list { flex-direction: column; width: 100%; gap: 2px; }
  .nav__link { padding: 13px 10px; font-size: 16px; width: 100%; }
  .nav__link::after { display: none; }
  .nav__link.is-active { background: rgba(221,36,38,.08); border-radius: 8px; }
  .nav__cta { margin-top: 18px; width: 100%; justify-content: center; }
  .nav-toggle { display: flex; position: relative; z-index: 100; }
  .hero { min-height: 480px; }
  .hero__inner { max-width: 520px; padding: 56px 0 76px; }
  .hero__eyebrow { font-size: 11px; letter-spacing: 1.8px; }
  .hero p { font-size: 15.5px; }
  .hero-slider__control { width: 40px; height: 40px; right: 22px; bottom: 68px; }
  .hero-slider__control--prev { right: 72px; }
  .hero-slider__control--pause { right: 122px; }
  .hero-slider__dots { left: 24px; bottom: 74px; transform: none; }
  .stats { margin-top: -40px; }
  .pledge-grid { grid-template-columns: repeat(2, 1fr); }
  .cta__inner { padding: 60px 0; }
  .footer__grid { grid-template-columns: 1fr; gap: 36px; padding: 56px 0 40px; }
  .topbar__group { gap: 14px; }
  .topbar__item { font-size: 12.5px; }
}

@media (max-width: 520px) {
  .features-grid, .services-grid, .branches-grid, .pledge-grid,
  .divisions-grid, .values-grid, .team-strip, .form-grid { grid-template-columns: 1fr; }
  .stats__card { grid-template-columns: 1fr 1fr; }
  .stat { padding: 22px 12px; }
  .stat__value { font-size: 28px; }
  .form-card { padding: 26px 20px; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .hero { min-height: 500px; }
  .hero-slider__control { top: 42px; bottom: auto; width: 36px; height: 36px; right: 18px; }
  .hero-slider__control--prev { right: 62px; }
  .hero-slider__control--pause { right: 106px; }
  .hero-slider__dots { left: 50%; bottom: 42px; transform: translateX(-50%); }
  .coverage { overflow-x: auto; padding: 28px 18px; -webkit-overflow-scrolling: touch; }
  .coverage img { min-width: 640px; max-width: 640px; }
}
