/* =========================================================
   BUSL MEDIA UNIT — PROFESSIONAL MULTI-PAGE WEBSITE
   Maroon / White / Yellow-Gold institutional design system
   ========================================================= */

:root {
  --maroon-950: #350006;
  --maroon-900: #4b0008;
  --maroon-800: #65000d;
  --maroon-700: #7d0014;
  --maroon-600: #980019;
  --gold-500: #f5c518;
  --gold-400: #ffd447;
  --gold-300: #ffe680;
  --gold-100: #fff6cf;
  --cream: #fffaf0;
  --white: #ffffff;
  --ink: #171316;
  --muted: #6d666b;
  --line: #e8dfe1;
  --surface: #f8f5f5;
  --success: #1f7a4f;
  --danger: #b42318;
  --shadow-sm: 0 10px 30px rgba(63, 0, 10, 0.08);
  --shadow-md: 0 20px 55px rgba(63, 0, 10, 0.14);
  --shadow-lg: 0 30px 90px rgba(63, 0, 10, 0.22);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --radius-xl: 42px;
  --container: 1240px;
  --transition: 220ms ease;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.nav-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
::selection { background: var(--gold-400); color: var(--maroon-950); }

.skip-link {
  position: fixed;
  left: 20px;
  top: -100px;
  z-index: 9999;
  background: var(--gold-500);
  color: var(--maroon-950);
  padding: 12px 18px;
  border-radius: 0 0 10px 10px;
  font-weight: 800;
  transition: top var(--transition);
}
.skip-link:focus { top: 0; }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding: 100px 0; }
.section-sm { padding: 70px 0; }
.section-dark { background: var(--maroon-950); color: var(--white); }
.section-soft { background: var(--surface); }
.section-cream { background: var(--cream); }
.text-center { text-align: center; }
.muted { color: var(--muted); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  color: var(--maroon-700);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 3px;
  background: var(--gold-500);
  border-radius: 999px;
}
.section-dark .eyebrow { color: var(--gold-400); }

.display-title,
.section-title,
.page-title {
  font-family: "Libre Baskerville", Georgia, serif;
  line-height: 1.15;
  letter-spacing: -.035em;
  margin: 0;
}
.display-title { font-size: clamp(3rem, 6.6vw, 6.8rem); }
.section-title { font-size: clamp(2.2rem, 4.1vw, 4.2rem); }
.page-title { font-size: clamp(2.8rem, 5.4vw, 5.8rem); }
.lead { font-size: clamp(1.05rem, 1.6vw, 1.28rem); color: var(--muted); max-width: 720px; }
.section-dark .lead { color: rgba(255,255,255,.72); }

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 40px;
  margin-bottom: 44px;
}
.section-heading .lead { margin: 14px 0 0; }
.section-heading.center { display: block; text-align: center; }
.section-heading.center .lead { margin-inline: auto; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: .92rem;
  font-weight: 800;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition), border-color var(--transition);
}
.btn:hover { transform: translateY(-2px); }
.btn:focus-visible { outline: 3px solid rgba(245,197,24,.45); outline-offset: 3px; }
.btn-primary { background: var(--gold-500); color: var(--maroon-950); box-shadow: 0 10px 28px rgba(245,197,24,.22); }
.btn-primary:hover { background: var(--gold-400); box-shadow: 0 14px 32px rgba(245,197,24,.34); }
.btn-maroon { background: var(--maroon-700); color: var(--white); box-shadow: 0 10px 30px rgba(101,0,13,.2); }
.btn-maroon:hover { background: var(--maroon-800); }
.btn-outline { border-color: rgba(255,255,255,.35); color: var(--white); background: rgba(255,255,255,.06); }
.btn-outline:hover { background: var(--white); color: var(--maroon-900); }
.btn-outline-maroon { border-color: var(--maroon-700); color: var(--maroon-700); background: transparent; }
.btn-outline-maroon:hover { background: var(--maroon-700); color: var(--white); }
.btn-small { min-height: 42px; padding: 10px 17px; font-size: .84rem; }

.icon {
  width: 20px;
  height: 20px;
  display: inline-block;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.icon-lg { width: 28px; height: 28px; }

/* Top utility bar */
.topbar { background: var(--maroon-950); color: rgba(255,255,255,.72); font-size: .78rem; }
.topbar-inner { min-height: 38px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.top-links, .social-links { display: flex; align-items: center; gap: 18px; }
.top-links a, .social-links a { transition: color var(--transition); }
.top-links a:hover, .social-links a:hover { color: var(--gold-400); }
.social-links { gap: 8px; }
.social-links a {
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 50%;
}
.social-links .icon { width: 14px; height: 14px; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(82, 0, 11, .08);
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }
.brand-row { min-height: 92px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: flex; align-items: center; min-width: 270px; }
.brand img { width: min(460px, 42vw); max-height: 74px; object-fit: contain; object-position: left center; }
.main-nav { display: flex; align-items: center; gap: 5px; }
.nav-link,
.nav-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 0;
  background: transparent;
  color: #3f3438;
  padding: 12px 12px;
  border-radius: 9px;
  font-size: .88rem;
  font-weight: 750;
  transition: color var(--transition), background var(--transition);
}
.nav-link:hover, .nav-button:hover, .nav-link.active, .nav-button.active { color: var(--maroon-700); background: var(--gold-100); }
.nav-link.active::after, .nav-button.active::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 5px;
  height: 2px;
  background: var(--gold-500);
}
.nav-dropdown { position: relative; }
.nav-button .chevron { width: 14px; height: 14px; transition: transform var(--transition); }
.nav-dropdown:hover .chevron, .nav-dropdown.open .chevron { transform: rotate(180deg); }
.dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: -18px;
  min-width: 220px;
  padding: 10px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity var(--transition), visibility var(--transition), transform var(--transition);
}
.dropdown-menu::before {
  content: "";
  position: absolute;
  top: -12px;
  left: 0;
  width: 100%;
  height: 12px;
}
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown.open .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 12px;
  color: #4d4146;
  border-radius: 9px;
  font-size: .86rem;
  font-weight: 700;
}
.dropdown-menu a:hover, .dropdown-menu a.active { background: var(--gold-100); color: var(--maroon-700); }
.header-actions { display: flex; align-items: center; gap: 10px; }
.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--maroon-800);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
}

.mobile-panel {
  position: fixed;
  inset: 0 0 0 auto;
  z-index: 1200;
  width: min(390px, 92vw);
  padding: 24px;
  background: var(--white);
  transform: translateX(105%);
  transition: transform 300ms ease;
  box-shadow: var(--shadow-lg);
  overflow-y: auto;
}
.mobile-panel.open { transform: translateX(0); }
.mobile-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1100;
  background: rgba(32,0,5,.55);
  backdrop-filter: blur(3px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 300ms ease, visibility 300ms ease;
}
.mobile-backdrop.open { opacity: 1; visibility: visible; }
.mobile-panel-head { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 28px; }
.mobile-panel-head img { width: 230px; }
.mobile-close { width: 44px; height: 44px; border: 0; border-radius: 50%; background: var(--surface); color: var(--maroon-800); display: grid; place-items: center; }
.mobile-nav { display: grid; gap: 6px; }
.mobile-nav a { padding: 13px 14px; border-radius: 10px; font-weight: 750; color: #41363a; }
.mobile-nav a:hover, .mobile-nav a.active { background: var(--gold-100); color: var(--maroon-700); }
.mobile-nav-label { margin: 14px 14px 4px; color: var(--muted); font-size: .72rem; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; }
.mobile-panel .btn { width: 100%; margin-top: 24px; }

/* Hero */
.hero {
  position: relative;
  min-height: 730px;
  display: flex;
  align-items: center;
  color: var(--white);
  background:
    radial-gradient(circle at 15% 15%, rgba(245,197,24,.18), transparent 30%),
    linear-gradient(125deg, var(--maroon-950) 0%, var(--maroon-900) 57%, #210004 100%);
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  width: 650px;
  height: 650px;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 50%;
  right: -260px;
  top: -130px;
  box-shadow: 0 0 0 80px rgba(255,255,255,.025), 0 0 0 160px rgba(255,255,255,.018);
}
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.04fr .96fr; align-items: center; gap: 70px; padding: 88px 0; }
.hero-copy .eyebrow { color: var(--gold-400); }
.hero-copy .display-title { max-width: 780px; }
.hero-copy .display-title em { color: var(--gold-400); font-style: normal; }
.hero-copy .lead { color: rgba(255,255,255,.76); margin: 24px 0 34px; max-width: 670px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-note { margin-top: 28px; display: flex; align-items: center; gap: 12px; color: rgba(255,255,255,.62); font-size: .85rem; }
.hero-note .pulse { width: 10px; height: 10px; border-radius: 50%; background: #62d58d; box-shadow: 0 0 0 0 rgba(98,213,141,.6); animation: pulse 2s infinite; }
@keyframes pulse { 70% { box-shadow: 0 0 0 10px rgba(98,213,141,0); } 100% { box-shadow: 0 0 0 0 rgba(98,213,141,0); } }
.hero-visual { position: relative; min-height: 530px; }
.hero-main-image {
  position: absolute;
  inset: 0 24px 26px 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-main-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(32,0,5,.75), transparent 55%); }
.hero-main-image img { width: 100%; height: 100%; object-fit: cover; }
.hero-caption { position: absolute; z-index: 2; left: 30px; right: 30px; bottom: 28px; display: flex; align-items: end; justify-content: space-between; gap: 20px; }
.hero-caption span { display: block; color: var(--gold-400); font-size: .72rem; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.hero-caption strong { display: block; margin-top: 6px; font-family: "Libre Baskerville", Georgia, serif; font-size: 1.28rem; line-height: 1.35; }
.hero-caption .play { width: 54px; height: 54px; border-radius: 50%; background: var(--gold-500); color: var(--maroon-950); display: grid; place-items: center; flex: 0 0 auto; }
.hero-est-card {
  position: absolute;
  z-index: 3;
  top: 44px;
  right: -20px;
  width: 176px;
  padding: 22px;
  color: var(--maroon-950);
  background: var(--gold-500);
  border-radius: 22px;
  box-shadow: var(--shadow-md);
}
.hero-est-card .day { font-family: "Libre Baskerville", Georgia, serif; font-size: 2.8rem; line-height: .95; font-weight: 700; }
.hero-est-card .month { font-weight: 900; letter-spacing: .12em; font-size: .74rem; }
.hero-est-card p { margin: 12px 0 0; font-size: .76rem; line-height: 1.5; font-weight: 750; }
.hero-tag {
  position: absolute;
  z-index: 3;
  left: -36px;
  bottom: 0;
  min-width: 230px;
  padding: 17px 20px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 18px;
  background: rgba(255,255,255,.10);
  backdrop-filter: blur(14px);
}
.hero-tag strong { display: block; color: var(--white); font-size: .92rem; }
.hero-tag span { color: rgba(255,255,255,.66); font-size: .76rem; }

/* Ticker */
.ticker { background: var(--gold-500); color: var(--maroon-950); overflow: hidden; border-bottom: 1px solid rgba(77,0,8,.1); }
.ticker-inner { display: flex; min-height: 50px; align-items: center; }
.ticker-label { position: relative; z-index: 2; flex: 0 0 auto; align-self: stretch; display: flex; align-items: center; gap: 9px; padding: 0 24px 0 0; font-size: .75rem; font-weight: 900; letter-spacing: .09em; text-transform: uppercase; background: var(--gold-500); }
.ticker-label::after { content: ""; position: absolute; top: 0; right: -24px; border-left: 24px solid var(--gold-500); border-top: 25px solid transparent; border-bottom: 25px solid transparent; }
.ticker-track-wrap { min-width: 0; overflow: hidden; }
.ticker-track { display: flex; width: max-content; animation: ticker-scroll 35s linear infinite; }
.ticker-track:hover { animation-play-state: paused; }
.ticker-item { white-space: nowrap; padding-left: 70px; font-size: .86rem; font-weight: 750; }
.ticker-item::after { content: "✦"; margin-left: 70px; color: var(--maroon-700); }
@keyframes ticker-scroll { to { transform: translateX(-50%); } }

/* About / media identity */
.identity-grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: 80px; align-items: center; }
.identity-media { position: relative; }
.identity-image { aspect-ratio: 4 / 5; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.identity-image img { width: 100%; height: 100%; object-fit: cover; }
.identity-stamp {
  position: absolute;
  right: -35px;
  bottom: 38px;
  width: 175px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  text-align: center;
  border-radius: 50%;
  background: var(--maroon-700);
  color: var(--white);
  border: 10px solid var(--white);
  box-shadow: var(--shadow-md);
}
.identity-stamp strong { font-family: "Libre Baskerville", Georgia, serif; font-size: 2.3rem; color: var(--gold-400); line-height: 1; }
.identity-stamp span { display: block; max-width: 110px; margin-top: 7px; font-size: .67rem; font-weight: 800; line-height: 1.35; letter-spacing: .09em; text-transform: uppercase; }
.identity-copy .lead { margin: 20px 0 18px; }
.identity-copy > p { color: var(--muted); }
.pillar-list { display: grid; gap: 14px; margin-top: 28px; }
.pillar-item { display: grid; grid-template-columns: 52px 1fr; gap: 16px; align-items: start; padding: 15px; border: 1px solid var(--line); border-radius: 16px; background: var(--white); }
.pillar-icon { width: 52px; height: 52px; display: grid; place-items: center; border-radius: 14px; color: var(--maroon-700); background: var(--gold-100); }
.pillar-item h3 { margin: 2px 0 5px; font-size: 1rem; }
.pillar-item p { margin: 0; color: var(--muted); font-size: .88rem; line-height: 1.6; }

/* Metrics */
.metrics { background: var(--maroon-800); color: var(--white); }
.metrics-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.metric { padding: 34px 26px; border-right: 1px solid rgba(255,255,255,.12); }
.metric:last-child { border-right: 0; }
.metric strong { display: block; color: var(--gold-400); font-family: "Libre Baskerville", Georgia, serif; font-size: clamp(2.3rem, 4vw, 4rem); line-height: 1; }
.metric span { display: block; margin-top: 10px; color: rgba(255,255,255,.68); font-size: .8rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }

/* Services */
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; }
.service-card {
  position: relative;
  min-height: 350px;
  height: 100%;
  padding: 30px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.service-card::after { content: ""; position: absolute; width: 150px; height: 150px; right: -70px; top: -70px; border-radius: 50%; background: var(--gold-100); transition: transform 450ms ease; }
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: rgba(125,0,20,.18); }
.service-card:hover::after { transform: scale(1.5); }
.service-number { position: relative; z-index: 2; color: var(--maroon-700); font-size: .72rem; font-weight: 900; letter-spacing: .14em; }
.service-icon { position: relative; z-index: 2; flex: 0 0 auto; width: 62px; height: 62px; margin: 30px 0 24px; display: grid; place-items: center; border-radius: 18px; color: var(--maroon-700); background: var(--gold-100); }
.service-card h3 { position: relative; z-index: 2; margin: 0 0 10px; font-family: "Libre Baskerville", Georgia, serif; font-size: 1.35rem; }
.service-card p { position: relative; z-index: 2; margin: 0; color: var(--muted); font-size: .92rem; line-height: 1.7; }
.service-link { position: relative; z-index: 2; margin-top: auto; padding-top: 22px; align-self: flex-start; display: inline-flex; align-items: center; gap: 8px; color: var(--maroon-700); font-size: .84rem; font-weight: 850; }
.service-link .icon { transition: transform var(--transition); }
.service-card:hover .service-link .icon { transform: translateX(4px); }

/* Story / news cards */
.story-grid { display: grid; grid-template-columns: 1.35fr .825fr .825fr; gap: 22px; }
.story-card {
  position: relative;
  min-height: 470px;
  border-radius: var(--radius-md);
  overflow: hidden;
  color: var(--white);
  box-shadow: var(--shadow-sm);
  isolation: isolate;
}
.story-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; transition: transform 700ms ease; }
.story-card::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(to top, rgba(40,0,7,.96) 0%, rgba(40,0,7,.52) 48%, rgba(40,0,7,.05) 82%); }
.story-card:hover img { transform: scale(1.055); }
.story-card-content { position: absolute; left: 26px; right: 26px; bottom: 26px; }
.story-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; margin-bottom: 13px; color: rgba(255,255,255,.72); font-size: .74rem; font-weight: 700; }
.badge { display: inline-flex; align-items: center; gap: 6px; padding: 6px 10px; border-radius: 999px; background: var(--gold-500); color: var(--maroon-950); font-size: .68rem; font-weight: 900; letter-spacing: .07em; text-transform: uppercase; }
.story-card h3 { margin: 0 0 12px; font-family: "Libre Baskerville", Georgia, serif; font-size: clamp(1.25rem, 2vw, 2.1rem); line-height: 1.35; }
.story-card p { margin: 0 0 18px; color: rgba(255,255,255,.72); font-size: .86rem; line-height: 1.6; }
.story-card:not(:first-child) p { display: none; }
.story-card:not(:first-child) h3 { font-size: 1.23rem; }
.story-read { display: inline-flex; align-items: center; gap: 7px; color: var(--gold-400); font-size: .78rem; font-weight: 850; text-transform: uppercase; letter-spacing: .05em; }

/* Gallery */
.gallery-mosaic { display: grid; grid-template-columns: 1.15fr .85fr .85fr; grid-template-rows: 260px 260px; gap: 16px; }
.gallery-tile { position: relative; border-radius: var(--radius-md); overflow: hidden; cursor: zoom-in; }
.gallery-tile:first-child { grid-row: 1 / 3; }
.gallery-tile:nth-child(4) { grid-column: 2 / 4; }
.gallery-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 600ms ease; }
.gallery-tile::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(54,0,8,.7), transparent 55%); opacity: .75; transition: opacity var(--transition); }
.gallery-tile:hover img { transform: scale(1.06); }
.gallery-tile:hover::after { opacity: 1; }
.gallery-caption { position: absolute; z-index: 2; left: 20px; bottom: 17px; color: var(--white); }
.gallery-caption strong { display: block; font-size: .9rem; }
.gallery-caption span { font-size: .72rem; color: rgba(255,255,255,.7); }
.gallery-expand { position: absolute; z-index: 2; top: 16px; right: 16px; width: 42px; height: 42px; border: 1px solid rgba(255,255,255,.35); border-radius: 50%; background: rgba(64,0,8,.35); color: var(--white); display: grid; place-items: center; backdrop-filter: blur(8px); opacity: 0; transform: translateY(-4px); transition: opacity var(--transition), transform var(--transition); }
.gallery-tile:hover .gallery-expand { opacity: 1; transform: translateY(0); }

/* CTA */
.cta-band { position: relative; overflow: hidden; background: var(--gold-500); color: var(--maroon-950); }
.cta-band::before, .cta-band::after { content: ""; position: absolute; border: 2px solid rgba(77,0,8,.12); border-radius: 50%; }
.cta-band::before { width: 370px; height: 370px; left: -180px; top: -220px; }
.cta-band::after { width: 500px; height: 500px; right: -240px; bottom: -340px; }
.cta-inner { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; gap: 50px; padding: 70px 0; }
.cta-inner h2 { margin: 0; max-width: 780px; font-family: "Libre Baskerville", Georgia, serif; font-size: clamp(2rem, 4vw, 4.1rem); line-height: 1.2; letter-spacing: -.03em; }
.cta-inner p { margin: 14px 0 0; max-width: 660px; color: rgba(53,0,6,.72); }
.cta-inner .btn-maroon { flex: 0 0 auto; }

/* Page hero */
.page-hero {
  position: relative;
  padding: 105px 0 90px;
  color: var(--white);
  background:
    radial-gradient(circle at 75% 25%, rgba(245,197,24,.17), transparent 30%),
    linear-gradient(125deg, var(--maroon-950), var(--maroon-800));
  overflow: hidden;
}
.page-hero::after { content: "MEDIA"; position: absolute; right: -30px; bottom: -72px; color: rgba(255,255,255,.035); font-family: "Libre Baskerville", Georgia, serif; font-size: clamp(8rem, 19vw, 20rem); font-weight: 700; line-height: 1; }
.page-hero .container { position: relative; z-index: 2; }
.page-hero .eyebrow { color: var(--gold-400); }
.page-hero .lead { color: rgba(255,255,255,.7); margin: 24px 0 0; }
.breadcrumbs { display: flex; align-items: center; flex-wrap: wrap; gap: 9px; margin-bottom: 30px; color: rgba(255,255,255,.62); font-size: .78rem; font-weight: 700; }
.breadcrumbs a:hover { color: var(--gold-400); }
.breadcrumbs span:last-child { color: var(--gold-400); }

/* About page */
.prose-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 80px; align-items: start; }
.prose-sticky { position: sticky; top: 150px; }
.prose-sticky .lead { margin: 20px 0 28px; }
.prose-body p { margin: 0 0 22px; color: var(--muted); font-size: 1.02rem; }
.prose-body .quote-card { margin: 34px 0; padding: 32px; border-left: 5px solid var(--gold-500); background: var(--cream); border-radius: 0 20px 20px 0; }
.quote-card p { margin: 0; color: var(--maroon-800); font-family: "Libre Baskerville", Georgia, serif; font-size: 1.45rem; line-height: 1.55; }

.purpose-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.purpose-card { padding: 38px; border-radius: var(--radius-md); background: var(--white); border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.purpose-card .service-icon { margin: 0 0 22px; }
.purpose-card h3 { margin: 0 0 12px; font-family: "Libre Baskerville", Georgia, serif; font-size: 1.55rem; }
.purpose-card p { margin: 0; color: var(--muted); }

.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.value-card { padding: 30px 25px; border-radius: 20px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); }
.value-card .value-num { color: var(--gold-400); font-size: .72rem; font-weight: 900; letter-spacing: .12em; }
.value-card h3 { margin: 26px 0 11px; font-family: "Libre Baskerville", Georgia, serif; font-size: 1.28rem; }
.value-card p { margin: 0; color: rgba(255,255,255,.64); font-size: .88rem; }

.timeline { position: relative; display: grid; gap: 26px; margin-top: 45px; }
.timeline::before { content: ""; position: absolute; left: 24px; top: 14px; bottom: 14px; width: 2px; background: var(--line); }
.timeline-item { position: relative; display: grid; grid-template-columns: 50px 1fr; gap: 22px; }
.timeline-dot { position: relative; z-index: 2; width: 50px; height: 50px; display: grid; place-items: center; border-radius: 50%; background: var(--gold-500); color: var(--maroon-950); font-weight: 900; font-size: .72rem; border: 8px solid var(--white); box-shadow: 0 0 0 1px var(--line); }
.timeline-content { padding: 4px 0 24px; }
.timeline-content h3 { margin: 0 0 8px; font-family: "Libre Baskerville", Georgia, serif; font-size: 1.35rem; }
.timeline-content p { margin: 0; color: var(--muted); }

/* Services detail */
.service-detail-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.service-detail {
  position: relative;
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 22px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  transition: transform var(--transition), box-shadow var(--transition);
}
.service-detail:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.service-detail .service-icon { margin: 0; width: 76px; height: 76px; }
.service-detail h3 { margin: 2px 0 10px; font-family: "Libre Baskerville", Georgia, serif; font-size: 1.35rem; }
.service-detail p { margin: 0; color: var(--muted); }
.service-detail ul { margin: 16px 0 0; padding: 0; list-style: none; display: grid; gap: 7px; }
.service-detail li { display: flex; align-items: start; gap: 8px; color: #554a4e; font-size: .87rem; }
.service-detail li::before { content: "•"; color: var(--gold-500); font-size: 1.3rem; line-height: 1.15; }

.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: 46px; }
.process-step { position: relative; padding: 30px 26px; }
.process-step:not(:last-child)::after { content: ""; position: absolute; top: 55px; right: -15px; width: 30px; height: 2px; background: rgba(255,255,255,.2); }
.process-num { width: 52px; height: 52px; display: grid; place-items: center; border-radius: 50%; color: var(--maroon-950); background: var(--gold-500); font-family: "Libre Baskerville", Georgia, serif; font-weight: 700; }
.process-step h3 { margin: 22px 0 9px; font-size: 1.05rem; }
.process-step p { margin: 0; color: rgba(255,255,255,.63); font-size: .86rem; }

/* Team */
.chair-card { display: grid; grid-template-columns: .68fr 1.32fr; min-height: 430px; border-radius: var(--radius-lg); overflow: hidden; background: var(--maroon-900); color: var(--white); box-shadow: var(--shadow-md); }
.chair-visual { position: relative; display: grid; place-items: center; background: linear-gradient(145deg, var(--gold-500), var(--gold-300)); }
.initials-avatar { width: 210px; height: 210px; display: grid; place-items: center; border-radius: 50%; color: var(--white); background: var(--maroon-800); font-family: "Libre Baskerville", Georgia, serif; font-size: 4.2rem; font-weight: 700; border: 12px solid rgba(255,255,255,.55); box-shadow: var(--shadow-md); }
.chair-visual::after { content: "CHAIRMAN"; position: absolute; bottom: 28px; color: rgba(77,0,8,.45); font-size: .77rem; font-weight: 900; letter-spacing: .2em; }
.chair-content { padding: 56px; display: flex; flex-direction: column; justify-content: center; }
.chair-content .eyebrow { color: var(--gold-400); }
.chair-content h2 { margin: 0 0 16px; font-family: "Libre Baskerville", Georgia, serif; font-size: clamp(2rem, 3.5vw, 3.6rem); }
.chair-content p { max-width: 700px; margin: 0; color: rgba(255,255,255,.68); }

.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.team-card { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--white); box-shadow: var(--shadow-sm); }
.team-visual { min-height: 270px; display: grid; place-items: center; background: linear-gradient(145deg, var(--cream), var(--gold-100)); }
.team-visual .initials-avatar { width: 148px; height: 148px; font-size: 2.7rem; border-width: 8px; }
.team-info { padding: 28px; }
.team-info .role { color: var(--maroon-700); font-size: .7rem; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.team-info h3 { margin: 8px 0 6px; font-family: "Libre Baskerville", Georgia, serif; font-size: 1.35rem; }
.team-info p { margin: 0; color: var(--muted); font-size: .86rem; }

/* News listing */
.filter-bar { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 36px; }
.filter-btn { border: 1px solid var(--line); background: var(--white); color: #554a4e; padding: 9px 16px; border-radius: 999px; font-size: .8rem; font-weight: 800; transition: all var(--transition); }
.filter-btn:hover, .filter-btn.active { border-color: var(--maroon-700); background: var(--maroon-700); color: var(--white); }
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.news-card { display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: var(--radius-md); overflow: hidden; background: var(--white); transition: transform var(--transition), box-shadow var(--transition); }
.news-card.hidden { display: none; }
.news-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.news-image { position: relative; aspect-ratio: 16 / 10; overflow: hidden; background: var(--maroon-900); }
.news-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 600ms ease; }
.news-card:hover .news-image img { transform: scale(1.05); }
.news-image .badge { position: absolute; left: 18px; top: 18px; }
.news-body { display: flex; flex: 1; flex-direction: column; padding: 26px; }
.news-date { color: var(--muted); font-size: .73rem; font-weight: 750; }
.news-body h3 { margin: 10px 0 12px; font-family: "Libre Baskerville", Georgia, serif; font-size: 1.28rem; line-height: 1.45; }
.news-body p { margin: 0 0 22px; color: var(--muted); font-size: .88rem; }
.news-body .story-read { margin-top: auto; color: var(--maroon-700); }

/* Gallery page */
.gallery-filter-grid { columns: 3 300px; column-gap: 18px; }
.gallery-item { position: relative; margin: 0 0 18px; break-inside: avoid; border-radius: 18px; overflow: hidden; cursor: zoom-in; background: var(--surface); }
.gallery-item.hidden { display: none; }
.gallery-item img { width: 100%; transition: transform 650ms ease; }
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(48,0,7,.7), transparent 60%); opacity: .45; transition: opacity var(--transition); }
.gallery-item:hover::after { opacity: .9; }
.gallery-item-info { position: absolute; z-index: 2; left: 20px; right: 60px; bottom: 18px; color: var(--white); transform: translateY(6px); opacity: .8; transition: all var(--transition); }
.gallery-item:hover .gallery-item-info { transform: translateY(0); opacity: 1; }
.gallery-item-info strong { display: block; font-size: .9rem; }
.gallery-item-info span { font-size: .72rem; color: rgba(255,255,255,.7); }
.lightbox { position: fixed; inset: 0; z-index: 2000; display: grid; place-items: center; padding: 40px; background: rgba(20,0,3,.94); opacity: 0; visibility: hidden; transition: opacity 220ms ease, visibility 220ms ease; }
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox-content { position: relative; max-width: min(1120px, 94vw); max-height: 88vh; }
.lightbox img { max-width: 100%; max-height: 82vh; border-radius: 14px; box-shadow: var(--shadow-lg); }
.lightbox-caption { margin-top: 14px; color: rgba(255,255,255,.74); text-align: center; font-size: .86rem; }
.lightbox-close { position: fixed; top: 24px; right: 28px; width: 48px; height: 48px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.25); border-radius: 50%; background: rgba(255,255,255,.08); color: var(--white); }

/* Contact */
.contact-grid { display: grid; grid-template-columns: .86fr 1.14fr; gap: 54px; align-items: start; }
.contact-panel { padding: 38px; border-radius: var(--radius-md); background: var(--maroon-900); color: var(--white); }
.contact-panel h2 { margin: 0 0 14px; font-family: "Libre Baskerville", Georgia, serif; font-size: 2rem; }
.contact-panel > p { margin: 0 0 28px; color: rgba(255,255,255,.65); }
.contact-list { display: grid; gap: 16px; }
.contact-item { display: grid; grid-template-columns: 48px 1fr; gap: 14px; align-items: center; padding: 14px 0; border-top: 1px solid rgba(255,255,255,.11); }
.contact-item:first-child { border-top: 0; }
.contact-item-icon { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 14px; background: rgba(245,197,24,.12); color: var(--gold-400); }
.contact-item span { display: block; color: rgba(255,255,255,.55); font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.contact-item strong { display: block; margin-top: 3px; font-size: .92rem; }
.coverage-box { margin-top: 28px; padding: 24px; border-radius: 18px; background: var(--gold-500); color: var(--maroon-950); }
.coverage-box h3 { margin: 0 0 8px; }
.coverage-box p { margin: 0 0 16px; color: rgba(53,0,6,.7); font-size: .84rem; }

.contact-form-wrap { padding: 40px; border: 1px solid var(--line); border-radius: var(--radius-md); box-shadow: var(--shadow-sm); }
.contact-form-wrap h2 { margin: 0 0 8px; font-family: "Libre Baskerville", Georgia, serif; font-size: 2rem; }
.contact-form-wrap > p { margin: 0 0 28px; color: var(--muted); }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.form-group { display: grid; gap: 8px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { color: #4d4146; font-size: .78rem; font-weight: 850; }
.form-control {
  width: 100%;
  min-height: 52px;
  padding: 13px 15px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  color: var(--ink);
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}
textarea.form-control { min-height: 160px; resize: vertical; }
.form-control:focus { outline: 0; border-color: var(--maroon-600); background: var(--white); box-shadow: 0 0 0 4px rgba(125,0,20,.08); }
.form-message { min-height: 24px; margin: 14px 0 0; font-size: .82rem; font-weight: 750; }
.form-message.success { color: var(--success); }
.form-message.error { color: var(--danger); }

.map-card { min-height: 300px; display: grid; place-items: center; text-align: center; padding: 40px; background: linear-gradient(145deg, var(--cream), var(--gold-100)); border: 1px solid #f0df95; border-radius: var(--radius-md); }
.map-pin { width: 74px; height: 74px; margin: 0 auto 20px; display: grid; place-items: center; border-radius: 50%; background: var(--maroon-700); color: var(--white); box-shadow: var(--shadow-sm); }
.map-card h3 { margin: 0 0 8px; font-family: "Libre Baskerville", Georgia, serif; font-size: 1.5rem; }
.map-card p { margin: 0 0 20px; color: var(--muted); }

/* Footer */
.site-footer { background: #240003; color: rgba(255,255,255,.67); }
.footer-main { padding: 68px 0 50px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr .7fr .8fr .9fr; gap: 52px; }
.footer-brand img { width: min(420px, 100%); padding: 7px 9px; border-radius: 12px; background: var(--white); }
.footer-brand p { max-width: 490px; margin: 20px 0 24px; font-size: .88rem; }
.footer-social { display: flex; gap: 9px; }
.footer-social a { width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.14); border-radius: 50%; color: var(--white); transition: all var(--transition); }
.footer-social a:hover { background: var(--gold-500); color: var(--maroon-950); border-color: var(--gold-500); transform: translateY(-2px); }
.footer-col h3 { margin: 3px 0 21px; color: var(--white); font-size: .88rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.footer-links { display: grid; gap: 10px; }
.footer-links a { font-size: .84rem; transition: color var(--transition), transform var(--transition); }
.footer-links a:hover { color: var(--gold-400); transform: translateX(3px); }
.footer-contact { display: grid; gap: 13px; font-size: .84rem; }
.footer-contact div { display: flex; gap: 10px; align-items: start; }
.footer-contact .icon { color: var(--gold-400); margin-top: 3px; }
.footer-clock { margin-top: 18px; padding: 13px 15px; border: 1px solid rgba(255,255,255,.11); border-radius: 12px; background: rgba(255,255,255,.04); }
.footer-clock span { display: block; color: rgba(255,255,255,.45); font-size: .66rem; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.footer-clock strong { display: block; margin-top: 3px; color: var(--white); font-size: .8rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); }
.footer-bottom-inner { min-height: 68px; display: flex; align-items: center; justify-content: space-between; gap: 24px; font-size: .75rem; }
.footer-policy { display: flex; flex-wrap: wrap; gap: 14px; }
.footer-policy a:hover { color: var(--gold-400); }

/* Reveal */
[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity 650ms ease, transform 650ms ease; }
[data-reveal].revealed { opacity: 1; transform: translateY(0); }
[data-reveal-delay="1"] { transition-delay: 90ms; }
[data-reveal-delay="2"] { transition-delay: 180ms; }
[data-reveal-delay="3"] { transition-delay: 270ms; }

/* Responsive */
@media (max-width: 1160px) {
  .main-nav { display: none; }
  .header-actions .btn { display: none; }
  .menu-toggle { display: inline-flex; }
  .brand img { width: min(470px, 62vw); }
  .hero-grid { gap: 40px; }
  .hero-est-card { right: -5px; }
  .hero-tag { left: -10px; }
  .story-grid { grid-template-columns: 1fr 1fr; }
  .story-card:first-child { grid-column: 1 / -1; min-height: 540px; }
  .story-card:not(:first-child) { min-height: 390px; }
  .footer-grid { grid-template-columns: 1.35fr .65fr .75fr; }
  .footer-col:last-child { grid-column: 1 / -1; }
  .footer-contact { grid-template-columns: repeat(3, 1fr); }
  .footer-clock { margin-top: 0; }
}

@media (max-width: 900px) {
  .section { padding: 78px 0; }
  .top-links { gap: 12px; }
  .top-links a:nth-child(n+4) { display: none; }
  .hero { min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; padding: 80px 0 95px; }
  .hero-copy { max-width: 760px; }
  .hero-visual { min-height: 530px; width: min(700px, 100%); margin-inline: auto; }
  .identity-grid, .prose-grid, .contact-grid { grid-template-columns: 1fr; gap: 52px; }
  .identity-media { width: min(640px, 90%); }
  .identity-image { aspect-ratio: 5 / 4; }
  .identity-stamp { right: -38px; }
  .metrics-grid { grid-template-columns: repeat(2, 1fr); }
  .metric:nth-child(2) { border-right: 0; }
  .metric:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.12); }
  .service-grid, .news-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-mosaic { grid-template-columns: 1fr 1fr; grid-template-rows: 360px 260px 260px; }
  .gallery-tile:first-child { grid-column: 1 / -1; grid-row: auto; }
  .gallery-tile:nth-child(4) { grid-column: 1 / -1; }
  .cta-inner { align-items: start; flex-direction: column; }
  .prose-sticky { position: static; }
  .values-grid, .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-step:nth-child(2)::after { display: none; }
  .chair-card { grid-template-columns: 1fr; }
  .chair-visual { min-height: 350px; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1.3fr .7fr; }
  .footer-col:last-child { grid-column: auto; }
  .footer-contact { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  .container { width: min(calc(100% - 30px), var(--container)); }
  .section { padding: 66px 0; }
  .section-heading { display: block; }
  .section-heading .btn { margin-top: 22px; }
  .topbar-inner { justify-content: center; }
  .top-links a:nth-child(n+3) { display: none; }
  .social-links { display: none; }
  .brand-row { min-height: 78px; }
  .brand img { width: min(350px, 72vw); max-height: 60px; }
  .menu-toggle { width: 44px; height: 44px; }
  .display-title { font-size: clamp(2.8rem, 14vw, 4.4rem); }
  .hero-grid { padding: 65px 0 82px; }
  .hero-actions .btn { width: 100%; }
  .hero-visual { min-height: 430px; }
  .hero-main-image { inset: 0 0 20px 0; border-radius: 28px; }
  .hero-est-card { top: 20px; right: -4px; width: 145px; padding: 17px; }
  .hero-est-card .day { font-size: 2.2rem; }
  .hero-caption { left: 20px; right: 20px; bottom: 20px; }
  .hero-caption strong { font-size: 1rem; }
  .hero-caption .play { width: 46px; height: 46px; }
  .hero-tag { display: none; }
  .ticker-label { padding-right: 10px; }
  .ticker-label span:last-child { display: none; }
  .identity-media { width: 100%; padding-right: 18px; }
  .identity-image { aspect-ratio: 4 / 5; }
  .identity-stamp { width: 135px; right: -8px; bottom: 20px; border-width: 7px; }
  .identity-stamp strong { font-size: 1.8rem; }
  .metrics-grid, .service-grid, .story-grid, .news-grid, .service-detail-grid, .purpose-grid, .values-grid, .process-grid, .team-grid { grid-template-columns: 1fr; }
  .metric { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.12); }
  .metric:last-child { border-bottom: 0; }
  .story-card:first-child { grid-column: auto; min-height: 470px; }
  .story-card:not(:first-child) { min-height: 420px; }
  .gallery-mosaic { grid-template-columns: 1fr; grid-template-rows: repeat(4, 300px); }
  .gallery-tile:first-child, .gallery-tile:nth-child(4) { grid-column: auto; }
  .page-hero { padding: 80px 0 72px; }
  .service-detail { grid-template-columns: 1fr; }
  .process-step { padding: 22px 0; display: grid; grid-template-columns: 62px 1fr; column-gap: 16px; }
  .process-step::after { display: none !important; }
  .process-step h3 { margin: 4px 0 6px; }
  .process-step p { grid-column: 2; }
  .chair-content { padding: 38px 28px; }
  .chair-visual { min-height: 310px; }
  .initials-avatar { width: 175px; height: 175px; font-size: 3.4rem; }
  .gallery-filter-grid { columns: 1; }
  .lightbox { padding: 20px; }
  .contact-panel, .contact-form-wrap { padding: 28px 22px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-group.full { grid-column: auto; }
  .footer-grid { grid-template-columns: 1fr; gap: 38px; }
  .footer-bottom-inner { align-items: start; flex-direction: column; padding: 20px 0; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
}

/* =========================================================
   Integrated Media Coverage Request
   ========================================================= */
.coverage-hero {
  position: relative;
  overflow: hidden;
}

.coverage-hero::after {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  right: -120px;
  bottom: -220px;
  border-radius: 50%;
  background: rgba(247, 196, 42, .12);
  pointer-events: none;
}

.coverage-request-section {
  background: linear-gradient(180deg, #fff 0%, #fbf8f7 100%);
}

.coverage-request-layout {
  display: grid;
  grid-template-columns: minmax(270px, .72fr) minmax(0, 1.75fr);
  gap: 34px;
  align-items: start;
}

.coverage-request-aside {
  position: sticky;
  top: 126px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.coverage-kicker,
.coverage-form-label {
  color: var(--maroon-700);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.coverage-request-aside h2 {
  margin: 14px 0 12px;
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(1.7rem, 2.2vw, 2.35rem);
  line-height: 1.2;
}

.coverage-request-aside > p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.coverage-checklist {
  display: grid;
  gap: 18px;
  margin-top: 30px;
}

.coverage-check-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  align-items: start;
}

.coverage-check-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  color: var(--maroon-700);
  background: var(--gold-100);
}

.coverage-check-item div {
  display: grid;
  gap: 4px;
}

.coverage-check-item strong {
  color: var(--ink);
  font-size: .91rem;
}

.coverage-check-item span:not(.coverage-check-icon) {
  color: var(--muted);
  font-size: .82rem;
  line-height: 1.55;
}

.coverage-help-card {
  display: grid;
  gap: 3px;
  margin-top: 32px;
  padding: 22px;
  border-radius: 20px;
  color: #fff;
  background: var(--maroon-700);
}

.coverage-help-card span {
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  opacity: .72;
}

.coverage-help-card strong {
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 1.15rem;
}

.coverage-help-card a {
  width: fit-content;
  margin-top: 5px;
  color: var(--gold-200);
  font-size: .88rem;
  font-weight: 800;
}

.coverage-form-card {
  min-width: 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.coverage-form-head {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: center;
  padding: 22px 22px 24px;
}

.coverage-form-head h2 {
  margin: 8px 0 6px;
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(1.5rem, 2.5vw, 2.15rem);
}

.coverage-form-head p {
  margin: 0;
  color: var(--muted);
}

.coverage-form-badge {
  flex: 0 0 auto;
  padding: 9px 13px;
  border: 1px solid rgba(125, 0, 20, .12);
  border-radius: 999px;
  color: var(--maroon-700);
  background: var(--gold-100);
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.coverage-frame-wrap {
  position: relative;
  min-height: 1350px;
  overflow: hidden;
  border: 1px solid rgba(125, 0, 20, .09);
  border-radius: 22px;
  background: #f7f3f1;
}

.coverage-form-frame {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  min-height: 1450px;
  border: 0;
  background: #f7f3f1;
}

.coverage-frame-loader {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 8px;
  color: var(--muted);
  text-align: center;
}

.coverage-frame-loader strong {
  color: var(--ink);
}

.coverage-frame-loader span:last-child {
  font-size: .84rem;
}

.coverage-spinner {
  width: 38px;
  height: 38px;
  margin-bottom: 4px;
  border: 3px solid rgba(125, 0, 20, .12);
  border-top-color: var(--maroon-700);
  border-radius: 50%;
  animation: coverageSpin .8s linear infinite;
}

.coverage-frame-wrap.loaded .coverage-frame-loader {
  display: none;
}

.coverage-form-fallback {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 20px 4px;
}

.coverage-form-fallback div {
  display: grid;
  gap: 3px;
}

.coverage-form-fallback strong {
  font-size: .9rem;
}

.coverage-form-fallback span {
  color: var(--muted);
  font-size: .8rem;
}

@keyframes coverageSpin {
  to { transform: rotate(360deg); }
}

@media (max-width: 980px) {
  .coverage-request-layout {
    grid-template-columns: 1fr;
  }

  .coverage-request-aside {
    position: static;
  }
}

@media (max-width: 680px) {
  .coverage-request-layout {
    gap: 24px;
  }

  .coverage-request-aside,
  .coverage-form-card {
    border-radius: 22px;
  }

  .coverage-request-aside {
    padding: 27px 22px;
  }

  .coverage-form-card {
    padding: 8px;
  }

  .coverage-form-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
    padding: 22px 16px;
  }

  .coverage-frame-wrap {
    min-height: 1750px;
    border-radius: 16px;
  }

  .coverage-form-frame {
    min-height: 1850px;
  }

  .coverage-form-fallback {
    align-items: stretch;
    flex-direction: column;
    padding: 20px 14px 10px;
  }

  .coverage-form-fallback .btn {
    width: 100%;
  }
}


/* PHP contact form helpers */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}
.alert {
  padding: 14px 16px;
  border-radius: 16px;
  margin: 18px 0;
  font-size: .92rem;
  font-weight: 700;
}
.alert-success {
  color: #174923;
  background: #edf9ef;
  border: 1px solid rgba(23, 73, 35, .16);
}
.alert-error {
  color: #7d0014;
  background: #fff3f4;
  border: 1px solid rgba(125, 0, 20, .16);
}
