/* ============================================================
   Media Coverage PK — White Corporate Theme  v3.0
   Fonts: Oswald (headings) + Source Sans 3 (body)
   ============================================================ */

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

:root {
  --red:        #FF8C00;   /* primary green */
  --red-dark:   #8B4000;   /* dark green for hover */
  --red-light:  #eaf7ef;   /* light green background */
  --red-mid:    #c3e6cb;   /* soft green */
  --navy:       #0F2044;
  --navy-mid:   #1A3260;
  --white:      #ffffff;
  --off-white:  #F7F8FA;
  --light-gray: #F0F2F5;
  --mid-gray:   #E2E6EB;
  --border:     #DDE1E8;
  --text-main:  #1A1A2E;
  --text-mid:   #3D4560;
  --text-muted: #5A6478;
  --text-light: #8A94A6;
  --font-head:  'Oswald', sans-serif;
  --font-body:  'Source Sans 3', sans-serif;
  --max-w:      1140px;
  --radius:     6px;
  --radius-lg:  12px;
  --shadow-sm:  0 1px 4px rgba(15,32,68,0.07);
  --shadow-md:  0 4px 20px rgba(15,32,68,0.10);
  --shadow-lg:  0 12px 40px rgba(15,32,68,0.13);
  --nav-h:      70px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--text-main);
  overflow-x: hidden;
  font-size: 1rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* When WordPress admin bar is showing, shift everything down */
.admin-bar {
  --adminbar-h: 32px;
}
.admin-bar .site-header { top: var(--adminbar-h); }
.admin-bar .mobile-nav  { top: calc(var(--adminbar-h) + var(--nav-h)); }
.admin-bar .hero-section { margin-top: calc(var(--adminbar-h) + var(--nav-h)); }

/* Smaller admin bar on mobile */
@media screen and (max-width: 782px) {
  .admin-bar { --adminbar-h: 46px; }
}

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

/* ── HEADINGS ── */
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-head);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--text-main);
  line-height: 1.1;
}

/* ── UTILITY ── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 2rem; }

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.7rem;
}
.section-eyebrow::before {
  content: '';
  width: 22px; height: 2px;
  background: var(--red);
  flex-shrink: 0;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.9rem, 3.2vw, 2.8rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--text-main);
  line-height: 1.1;
}
.section-title .accent { color: var(--red); }
.section-title .navy   { color: var(--navy); }

.section-subtitle {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 560px;
  margin-top: 0.6rem;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 13px 28px;
  border: 2px solid var(--red);
  border-radius: var(--radius);
  transition: all 0.22s ease;
  cursor: pointer;
}
.btn-primary:hover { background: var(--red-dark); border-color: var(--red-dark); color: var(--white); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(200,16,46,0.25); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--navy);
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 13px 28px;
  border: 2px solid var(--mid-gray);
  border-radius: var(--radius);
  transition: all 0.22s ease;
  cursor: pointer;
}
.btn-outline:hover { border-color: var(--navy); background: var(--navy); color: var(--white); transform: translateY(-1px); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  transition: gap 0.2s;
}
.btn-ghost:hover { gap: 9px; color: var(--red-dark); }
.btn-ghost::after { content: '→'; }

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--navy);
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 13px 28px;
  border: 2px solid rgba(255,255,255,0.5);
  border-radius: var(--radius);
  transition: all 0.22s;
  cursor: pointer;
}
.btn-white:hover { background: transparent; color: var(--white); border-color: var(--white); }

/* ══════════════════════════════════════
   HEADER / NAV
══════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  padding: 0 2.5rem;
  box-shadow: var(--shadow-sm);
  transition: top 0.2s;
}

.site-logo {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0;
}
.site-logo .logo-accent { color: var(--red); }
.site-logo img { height: 46px; width: auto; }

.primary-nav {
  display: flex;
  align-items: center;
  gap: 1.8rem;
}
.primary-nav a {
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-mid);
  text-decoration: none;
  transition: color 0.18s;
  position: relative;
  padding-bottom: 2px;
}
.primary-nav a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s;
}
.primary-nav a:hover { color: var(--navy); }
.primary-nav a:hover::after { transform: scaleX(1); }
.primary-nav .nav-cta {
  background: var(--red) !important;
  color: var(--white) !important;
  padding: 9px 20px !important;
  border-radius: var(--radius) !important;
  font-size: 0.76rem !important;
  transition: all 0.2s !important;
}
.primary-nav .nav-cta:hover { background: var(--red-dark) !important; transform: translateY(-1px) !important; }
.primary-nav .nav-cta::after { display: none !important; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-hamburger span { display: block; width: 22px; height: 2px; background: var(--navy); border-radius: 2px; transition: all 0.3s; }

.mobile-nav {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  z-index: 999;
  flex-direction: column;
  padding: 1.2rem 2rem;
  gap: 0;
  box-shadow: var(--shadow-md);
  transition: top 0.2s;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: var(--font-head);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-mid);
  border-bottom: 1px solid var(--light-gray);
  padding: 0.85rem 0;
  text-decoration: none;
  transition: color 0.18s;
}
.mobile-nav a:hover { color: var(--red); }
.mobile-nav a:last-child { border-bottom: none; }

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
.hero-section {
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: var(--nav-h);
}

.hero-slides { position: absolute; inset: 0; }
.hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1.2s ease; }
.hero-slide.active { opacity: 1; }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.38); }

.hero-gradient {
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(15,32,68,0.78) 0%, rgba(15,32,68,0.22) 60%, rgba(15,32,68,0.04) 100%);
  z-index: 1;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 5px; height: 100%;
  background: var(--red);
  z-index: 3;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 0 3.5rem;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 1.2rem;
}
.hero-eyebrow::before { content: ''; width: 28px; height: 2px; background: var(--red); }

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.6rem, 5.5vw, 4.5rem);
  font-weight: 700;
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 1.2rem;
}
.hero-title .accent { color: var(--red); }

.hero-sub {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  font-weight: 300;
  max-width: 480px;
  line-height: 1.75;
  margin-bottom: 2.2rem;
  text-transform: none;
  letter-spacing: 0;
}

.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-dots {
  position: absolute;
  bottom: 2.5rem; left: 3.5rem;
  display: flex; gap: 8px; z-index: 3;
}
.hero-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  cursor: pointer; border: none;
  transition: all 0.25s; padding: 0;
}
.hero-dot.active { background: var(--red); width: 22px; border-radius: 3px; }

/* ══════════════════════════════════════
   STATS BAR
══════════════════════════════════════ */
.stats-bar { background: var(--red-dark); padding: 0; }
.stats-bar-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: repeat(4,1fr);
}
.stats-bar-item {
  padding: 1.8rem 2rem;
  border-right: 1px solid rgba(255,255,255,0.07);
  display: flex; align-items: center; gap: 1rem;
}
.stats-bar-item:last-child { border-right: none; }
.stats-bar-icon {
  width: 40px; height: 40px;
  border-radius: var(--radius);
  background: rgba(200,16,46,0.15);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.stats-bar-icon svg { width: 18px; height: 18px; stroke: var(--red); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.stats-bar-num { font-family: var(--font-head); font-size: 1.6rem; font-weight: 700; color: var(--white); line-height: 1; letter-spacing: 0.03em; }
.stats-bar-label { font-family: var(--font-head); font-size: 0.62rem; color: rgba(255,255,255,0.45); letter-spacing: 0.12em; text-transform: uppercase; margin-top: 3px; }

/* ══════════════════════════════════════
   TICKER
══════════════════════════════════════ */
.services-ticker { background: var(--red); padding: 11px 0; overflow: hidden; white-space: nowrap; }
.ticker-track { display: inline-flex; gap: 3rem; animation: ticker-scroll 22s linear infinite; }
.ticker-item {
  font-family: var(--font-head);
  font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  display: flex; align-items: center; gap: 10px; flex-shrink: 0;
}
.ticker-item::before { content: '◆'; font-size: 0.38rem; color: rgba(255,255,255,0.5); }
@keyframes ticker-scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ══════════════════════════════════════
   3-PANEL SERVICES
══════════════════════════════════════ */
.panels-section { background: var(--off-white); padding: 5rem 0 0; }
.panels-header {
  max-width: var(--max-w); margin: 0 auto 3rem; padding: 0 2rem;
  display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem; flex-wrap: wrap;
}

.panels-grid { display: grid; grid-template-columns: repeat(3,1fr); }
.service-panel { position: relative; overflow: hidden; height: 490px; cursor: pointer; }
.service-panel img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.42); transition: transform 0.55s ease, filter 0.55s ease; }
.service-panel:hover img { transform: scale(1.06); filter: brightness(0.25); }
.panel-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(15,32,68,0.9) 0%, rgba(15,32,68,0.08) 55%);
  transition: background 0.4s;
}
.service-panel:hover .panel-overlay { background: linear-gradient(to top, rgba(15,32,68,0.96) 0%, rgba(15,32,68,0.28) 65%); }
.service-panel::after {
  content: ''; position: absolute; top: 0; left: 0;
  width: 4px; height: 100%; background: var(--red);
  transform: scaleY(0); transform-origin: bottom;
  transition: transform 0.35s ease; z-index: 2;
}
.service-panel:hover::after { transform: scaleY(1); }
.panel-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 2.2rem 2rem; z-index: 1; }
.panel-num { font-family: var(--font-head); font-size: 0.65rem; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase; color: var(--red); margin-bottom: 0.5rem; }
.panel-title { font-family: var(--font-head); font-size: 1.5rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.03em; color: var(--white); margin-bottom: 0.7rem; line-height: 1.1; }
.panel-list { font-family: var(--font-body); font-size: 0.85rem; color: rgba(255,255,255,0.72); line-height: 2; opacity: 0; transform: translateY(12px); transition: all 0.35s ease; text-transform: none; letter-spacing: 0; }
.panel-list li { display: flex; align-items: center; gap: 8px; }
.panel-list li::before { content: ''; width: 14px; height: 1.5px; background: var(--red); flex-shrink: 0; }
.service-panel:hover .panel-list { opacity: 1; transform: translateY(0); }
.panel-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-head); font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--white); margin-top: 1.2rem;
  opacity: 0; transition: opacity 0.35s ease 0.05s;
  border-bottom: 1px solid rgba(255,255,255,0.3); padding-bottom: 2px; width: fit-content;
}
.panel-link:hover { border-bottom-color: var(--red); color: var(--red); }
.service-panel:hover .panel-link { opacity: 1; }

/* ══════════════════════════════════════
   SERVICES CARDS
══════════════════════════════════════ */
.services-section { background: var(--white); padding: 5.5rem 2rem; }
.services-inner { max-width: var(--max-w); margin: 0 auto; }
.services-header { display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem; flex-wrap: wrap; margin-bottom: 3rem; }

.services-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(200px,1fr)); gap: 1.5rem; }
.svc-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 2rem 1.6rem;
  transition: all 0.25s ease; position: relative; overflow: hidden;
}
.svc-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--red); transform: scaleX(0); transform-origin: left; transition: transform 0.3s ease; }
.svc-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: transparent; }
.svc-card:hover::before { transform: scaleX(1); }
.svc-icon { width: 46px; height: 46px; border-radius: var(--radius); background: var(--red-light); display: flex; align-items: center; justify-content: center; margin-bottom: 1.1rem; transition: background 0.2s; }
.svc-card:hover .svc-icon { background: var(--red); }
.svc-icon svg { width: 21px; height: 21px; stroke: var(--red); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; transition: stroke 0.2s; }
.svc-card:hover .svc-icon svg { stroke: var(--white); }
.svc-card h3 { font-family: var(--font-head); font-size: 0.95rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-main); margin-bottom: 0.5rem; }
.svc-card p { font-family: var(--font-body); font-size: 0.875rem; color: var(--text-muted); line-height: 1.65; text-transform: none; letter-spacing: 0; }

/* ══════════════════════════════════════
   ABOUT
══════════════════════════════════════ */
.about-section { background: var(--off-white); padding: 5.5rem 2rem; }
.about-grid { max-width: var(--max-w); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-img-wrap { position: relative; }
.about-img-wrap img { width: 100%; height: 520px; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.about-badge {
  position: absolute; bottom: -1.5rem; right: -1.5rem;
  background: var(--red); color: var(--white);
  border-radius: var(--radius-lg); padding: 1.4rem 1.6rem;
  box-shadow: var(--shadow-lg); text-align: center; min-width: 130px;
}
.about-badge-num { font-family: var(--font-head); font-size: 2rem; font-weight: 700; line-height: 1; display: block; }
.about-badge-label { font-family: var(--font-head); font-size: 0.62rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.88; margin-top: 4px; display: block; }
.about-text p { font-family: var(--font-body); font-size: 0.95rem; color: var(--text-muted); line-height: 1.8; margin: 1rem 0; text-transform: none; letter-spacing: 0; }
.about-checks { margin: 1.5rem 0; }
.about-check {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-body); font-size: 0.88rem;
  color: var(--text-mid); font-weight: 400; margin-bottom: 0.6rem;
  text-transform: none; letter-spacing: 0;
}
.about-check::before {
  content: ''; width: 18px; height: 18px; border-radius: 50%;
  background: var(--red-light); border: 1.5px solid var(--red);
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23C8102E' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 11px; background-position: center; background-repeat: no-repeat;
}
.stats-mini { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-top: 2rem; padding-top: 2rem; border-top: 1px solid var(--border); }
.stat-mini-num { font-family: var(--font-head); font-size: 2rem; font-weight: 700; color: var(--red); line-height: 1; }
.stat-mini-label { font-family: var(--font-head); font-size: 0.65rem; color: var(--text-muted); letter-spacing: 0.1em; text-transform: uppercase; margin-top: 4px; }

/* ══════════════════════════════════════
   TIMELINE
══════════════════════════════════════ */
.timeline-section { background: var(--navy); padding: 5.5rem 2rem; }
.timeline-inner { max-width: var(--max-w); margin: 0 auto; }
.timeline-inner .section-eyebrow { color: rgba(255,255,255,0.5); }
.timeline-inner .section-eyebrow::before { background: var(--red); }
.timeline-inner .section-title { color: var(--white); }
.timeline-grid { display: grid; grid-template-columns: repeat(4,1fr); margin-top: 3.5rem; position: relative; }
.timeline-grid::before { content: ''; position: absolute; top: 18px; left: 0; right: 0; height: 1px; background: rgba(255,255,255,0.08); }
.tl-item { padding-right: 2.5rem; }
.tl-num { font-family: var(--font-head); font-size: 0.65rem; font-weight: 500; letter-spacing: 0.22em; color: var(--red); margin-bottom: 0.8rem; text-transform: uppercase; }
.tl-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--red); margin-bottom: 1.4rem; position: relative; z-index: 1; box-shadow: 0 0 0 4px rgba(200,16,46,0.18); }
.tl-year { font-family: var(--font-head); font-size: 1.7rem; font-weight: 700; color: var(--white); margin-bottom: 0.25rem; letter-spacing: 0.02em; }
.tl-title { font-family: var(--font-head); font-size: 0.75rem; font-weight: 500; color: rgba(255,255,255,0.65); margin-bottom: 0.5rem; text-transform: uppercase; letter-spacing: 0.1em; }
.tl-desc { font-family: var(--font-body); font-size: 0.82rem; color: rgba(255,255,255,0.42); line-height: 1.65; text-transform: none; letter-spacing: 0; }

/* ══════════════════════════════════════
   CTA PANELS
══════════════════════════════════════ */
.cta-panels-section { background: var(--white); }
.cta-grid { display: grid; grid-template-columns: repeat(3,1fr); }
.cta-panel { position: relative; overflow: hidden; height: 360px; }
.cta-panel img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.35); transition: transform 0.45s, filter 0.45s; }
.cta-panel:hover img { transform: scale(1.05); filter: brightness(0.22); }
.cta-panel-content {
  position: absolute; inset: 0; padding: 2.5rem 2rem;
  display: flex; flex-direction: column; justify-content: flex-end;
  background: linear-gradient(to top, rgba(15,32,68,0.85) 0%, transparent 55%);
}
.cta-panel-content h3 { font-family: var(--font-head); font-size: 1.15rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.03em; color: var(--white); line-height: 1.2; margin-bottom: 1rem; }
.cta-btn {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-head); font-size: 0.68rem; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--white); border: 1.5px solid rgba(255,255,255,0.45);
  border-radius: var(--radius); padding: 8px 18px; width: fit-content; transition: all 0.2s;
}
.cta-btn:hover { background: var(--red); border-color: var(--red); color: var(--white); }

/* ══════════════════════════════════════
   FACILITIES
══════════════════════════════════════ */
.facilities-section { background: var(--off-white); padding: 5.5rem 2rem; }
.facilities-inner { max-width: var(--max-w); margin: 0 auto; }
.facilities-meta { font-family: var(--font-head); font-size: 0.72rem; font-weight: 500; color: var(--text-muted); letter-spacing: 0.1em; text-transform: uppercase; margin: 0.7rem 0 2.5rem; }
.facilities-grid { display: grid; grid-template-columns: repeat(3,1fr); grid-template-rows: 250px 250px; gap: 6px; }
.fac-item { overflow: hidden; position: relative; border-radius: var(--radius); }
.fac-item:first-child { grid-row: span 2; }
.fac-item img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.82); transition: transform 0.4s ease, filter 0.4s ease; }
.fac-item:hover img { transform: scale(1.05); filter: brightness(0.62); }
.fac-overlay { position: absolute; inset: 0; border-radius: var(--radius); background: transparent; transition: background 0.3s; }
.fac-item:hover .fac-overlay { background: rgba(200,16,46,0.09); }

/* ══════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════ */
.testimonials-section { background: var(--white); padding: 5.5rem 2rem; }
.testimonials-inner { max-width: var(--max-w); margin: 0 auto; }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(280px,1fr)); gap: 1.5rem; margin-top: 3rem; }
.testi-card { background: var(--off-white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2rem; position: relative; transition: all 0.25s; }
.testi-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: var(--mid-gray); }
.testi-quote { font-family: var(--font-head); font-size: 3.5rem; color: var(--red); opacity: 0.18; line-height: 0.8; margin-bottom: 0.5rem; }
.testi-text { font-family: var(--font-body); font-size: 0.9rem; color: var(--text-mid); line-height: 1.8; margin-bottom: 1.5rem; font-style: italic; text-transform: none; letter-spacing: 0; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--red-light); border: 2px solid var(--red); overflow: hidden; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-size: 0.88rem; font-weight: 700; color: var(--red); }
.testi-avatar img { width: 100%; height: 100%; object-fit: cover; }
.testi-name { font-family: var(--font-head); font-size: 0.85rem; font-weight: 600; color: var(--text-main); text-transform: uppercase; letter-spacing: 0.06em; }
.testi-role { font-family: var(--font-body); font-size: 0.75rem; color: var(--text-muted); margin-top: 2px; text-transform: none; letter-spacing: 0; }

/* ══════════════════════════════════════
   STORIES
══════════════════════════════════════ */
.stories-section { background: var(--light-gray); padding: 5.5rem 2rem; }
.stories-inner { max-width: var(--max-w); margin: 0 auto; }
.stories-header { display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem; flex-wrap: wrap; margin-bottom: 3rem; }
.stories-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(300px,1fr)); gap: 1.5rem; }
.story-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; transition: all 0.25s ease; display: flex; flex-direction: column; }
.story-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: transparent; }
.story-img { height: 200px; overflow: hidden; }
.story-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.story-card:hover .story-img img { transform: scale(1.05); }
.story-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.story-cat { display: inline-flex; align-items: center; font-family: var(--font-head); font-size: 0.65rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--red); background: var(--red-light); padding: 3px 10px; border-radius: 3px; margin-bottom: 0.75rem; width: fit-content; }
.story-title { font-family: var(--font-head); font-size: 1rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.02em; color: var(--text-main); line-height: 1.35; margin-bottom: 0.6rem; }
.story-title a { color: inherit; }
.story-title a:hover { color: var(--red); }
.story-excerpt { font-family: var(--font-body); font-size: 0.85rem; color: var(--text-muted); line-height: 1.65; flex: 1; text-transform: none; letter-spacing: 0; }
.story-more { display: inline-flex; align-items: center; gap: 5px; margin-top: 1rem; font-family: var(--font-head); font-size: 0.72rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--red); transition: gap 0.2s; }
.story-more:hover { gap: 9px; }
.story-more::after { content: '→'; }

/* ══════════════════════════════════════
   NEWSLETTER
══════════════════════════════════════ */
.newsletter-section { background: var(--red-dark); padding: 5rem 2rem; }
.newsletter-inner { max-width: var(--max-w); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.newsletter-text h2 { font-family: var(--font-head); font-size: 2rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; color: var(--white); line-height: 1.1; margin-bottom: 0.7rem; }
.newsletter-text h2 .accent { color: var(--red); }
.newsletter-text p { font-family: var(--font-body); font-size: 0.92rem; color: rgba(255,255,255,0.55); line-height: 1.75; text-transform: none; letter-spacing: 0; }
.newsletter-form-wrap label { display: block; font-family: var(--font-head); font-size: 0.65rem; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 0.6rem; }
.newsletter-form { display: flex; border: 1.5px solid rgba(255,255,255,0.15); border-radius: var(--radius); overflow: hidden; transition: border-color 0.2s; }
.newsletter-form:focus-within { border-color: rgba(200,16,46,0.6); }
.newsletter-form input { flex: 1; padding: 13px 16px; font-size: 0.9rem; border: none; outline: none; background: rgba(255,255,255,0.06); color: var(--white); font-family: var(--font-body); }
.newsletter-form input::placeholder { color: rgba(255,255,255,0.3); }
.newsletter-form button { padding: 13px 20px; background: var(--red); color: var(--white); border: none; cursor: pointer; font-family: var(--font-head); font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; transition: background 0.2s; white-space: nowrap; }
.newsletter-form button:hover { background: var(--red-dark); }
.newsletter-note { font-family: var(--font-body); font-size: 0.75rem; color: rgba(255,255,255,0.3); margin-top: 0.6rem; text-transform: none; letter-spacing: 0; }

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
.site-footer { background: #141414; padding: 5rem 2rem 2rem; }
.footer-grid { max-width: var(--max-w); margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3.5rem; }
.footer-brand { font-family: var(--font-head); font-size: 1.25rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--white); margin-bottom: 0.8rem; }
.footer-brand .logo-accent { color: var(--red); }
.footer-brand img { height: 42px; width: auto; margin-bottom: 0.6rem; }
.footer-tagline { font-family: var(--font-body); font-size: 0.8rem; color: rgba(255,255,255,0.38); line-height: 1.7; margin-bottom: 1.5rem; text-transform: none; letter-spacing: 0; }
.footer-socials { display: flex; gap: 8px; }
.footer-social { width: 34px; height: 34px; border-radius: var(--radius); border: 1px solid rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-size: 0.58rem; font-weight: 700; letter-spacing: 0.06em; color: rgba(255,255,255,0.38); text-decoration: none; transition: all 0.2s; text-transform: uppercase; }
.footer-social:hover { border-color: var(--red); color: var(--white); background: var(--red); }
.footer-col h4 { font-family: var(--font-head); font-size: 0.68rem; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 1.2rem; padding-bottom: 0.7rem; border-bottom: 1px solid rgba(255,255,255,0.06); }
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul li a { font-family: var(--font-body); font-size: 0.85rem; color: rgba(255,255,255,0.42); transition: color 0.18s; text-decoration: none; display: flex; align-items: center; gap: 7px; text-transform: none; letter-spacing: 0; }
.footer-col ul li a::before { content: '›'; color: var(--red); font-size: 1rem; flex-shrink: 0; }
.footer-col ul li a:hover { color: var(--white); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 0.85rem; }
.footer-contact-item svg { width: 14px; height: 14px; stroke: var(--red); fill: none; stroke-width: 2; flex-shrink: 0; margin-top: 3px; }
.footer-contact-item span { font-family: var(--font-body); font-size: 0.82rem; color: rgba(255,255,255,0.42); line-height: 1.5; text-transform: none; letter-spacing: 0; }
.footer-contact-item a { color: rgba(255,255,255,0.42); }
.footer-contact-item a:hover { color: var(--white); }
.footer-bottom { max-width: var(--max-w); margin: 3.5rem auto 0; padding-top: 1.5rem; border-top: 1px solid #dadada;  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 0.5rem; }
.footer-bottom p { font-family: var(--font-body); font-size: 0.78rem; color: rgba(255,255,255,0.42); text-transform: none; letter-spacing: 0; }
.footer-bottom span { color: #fff; }

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 1024px) {
  .panels-grid, .cta-grid { grid-template-columns: 1fr; }
  .service-panel { height: 340px; }
  .cta-panel { height: 300px; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-img-wrap img { height: 380px; }
  .about-badge { right: 1rem; }
  .timeline-grid { grid-template-columns: repeat(2,1fr); gap: 2.5rem; }
  .timeline-grid::before { display: none; }
  .stats-bar-inner { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .facilities-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .fac-item:first-child { grid-row: span 1; }
  .fac-item img { height: 220px; }
  .newsletter-inner { grid-template-columns: 1fr; gap: 2rem; }
  .primary-nav { display: none; }
  .nav-hamburger { display: flex; }
}
@media (max-width: 640px) {
  .hero-content { padding: 0 1.5rem; }
  .hero-title { font-size: 2.4rem; }
  .hero-dots { left: 1.5rem; }
  .timeline-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .stats-bar-inner { grid-template-columns: 1fr 1fr; }
  .stats-mini { grid-template-columns: repeat(3,1fr); gap: 0.75rem; }
  .stats-mini .stat-mini-num { font-size: 1.5rem; }
  .facilities-grid { grid-template-columns: 1fr; }
  .fac-item img { height: 240px; }
}

/* WordPress block reset */
.wp-block-group { margin: 0; }
.entry-content > * { margin-top: 0; margin-bottom: 0; }
.wp-site-blocks > * { margin-top: 0 !important; margin-bottom: 0 !important; }
body > .wp-site-blocks { padding-top: 0 !important; }
