/* FREELOVE — advanced Columbia Gas of Ohio–inspired corporate layout */
@import url("https://fonts.googleapis.com/css2?family=Source+Sans+3:wght@400;600;700;800&family=Source+Serif+4:opsz,wght@8..60,600;8..60,700&display=swap");

:root {
  --blue-50: #f0f7fc;
  --blue-100: #dceef9;
  --blue-200: #b6daf0;
  --blue-500: #0082c8;
  --blue-600: #006eb0;
  --blue-700: #005a94;
  --blue-800: #00487a;
  --blue-900: #003359;
  --blue-950: #001f38;
  --cyan-400: #2bb8e8;
  --cyan-500: #00a4df;
  --orange-500: #f18a22;
  --orange-600: #e87722;
  --orange-700: #c45f12;
  --gray-50: #f4f6f8;
  --gray-100: #e9edf2;
  --gray-200: #d3dae3;
  --gray-400: #94a0b0;
  --gray-500: #6b7787;
  --gray-700: #3d4755;
  --gray-900: #1a2330;
  --white: #fff;
  --shadow-sm: 0 1px 2px rgba(0, 31, 56, 0.06);
  --shadow: 0 4px 18px rgba(0, 31, 56, 0.12);
  --shadow-lg: 0 12px 40px rgba(0, 31, 56, 0.18);
  --radius: 2px;
  --radius-md: 6px;
  --font: "Source Sans 3", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --font-display: "Source Serif 4", Georgia, "Times New Roman", serif;
  --max: 1200px;
  --header-h: 84px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.55;
  font-size: 16.5px;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--blue-700);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

button,
input,
select,
textarea {
  font: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--blue-900);
  color: var(--white);
  padding: 0.75rem 1rem;
  z-index: 10000;
}

.skip-link:focus {
  left: 0;
}

.container {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

/* ========== Utility bar ========== */
.utility-bar {
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
  font-size: 0.84rem;
  font-weight: 600;
}

.utility-bar .inner {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0.15rem 1.35rem;
  padding: 0.55rem 0;
  flex-wrap: wrap;
}

.utility-bar a {
  color: var(--gray-700);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.2rem 0;
  transition: color 0.2s var(--ease);
}

.utility-bar a:hover {
  color: var(--blue-700);
}

.utility-bar .btn-signin {
  background: var(--blue-700);
  color: var(--white) !important;
  padding: 0.45rem 1rem;
  border-radius: var(--radius);
  font-weight: 700;
  letter-spacing: 0.01em;
  box-shadow: var(--shadow-sm);
}

.utility-bar .btn-signin:hover {
  background: var(--blue-800);
  text-decoration: none;
}

.u-ico {
  width: 16px;
  height: 16px;
  display: inline-block;
  flex-shrink: 0;
}

/* ========== Header / mega nav ========== */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: box-shadow 0.25s var(--ease);
}

.site-header.is-scrolled {
  box-shadow: var(--shadow);
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
  padding: 0.35rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  color: inherit;
  flex-shrink: 0;
}

.brand:hover {
  text-decoration: none;
}

.brand img {
  width: 70px;
  height: 70px;
  object-fit: contain;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-text strong {
  color: var(--blue-900);
  font-size: 1.28rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.brand-text span {
  color: var(--gray-500);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 0.2rem;
}

.nav-toggle {
  display: none;
  background: var(--blue-700);
  color: var(--white);
  border: 0;
  padding: 0.6rem 0.95rem;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 700;
}

.primary-nav {
  display: flex;
  align-items: stretch;
  gap: 0;
  height: 100%;
}

.nav-item {
  position: static;
}

.nav-item:has(> .dropdown.simple) {
  position: relative;
}

.nav-item > button,
.nav-item > a.nav-link {
  background: transparent;
  border: 0;
  color: var(--gray-900);
  padding: 1.55rem 0.85rem;
  cursor: pointer;
  font-weight: 700;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  text-decoration: none;
  border-bottom: 3px solid transparent;
  transition: color 0.2s, border-color 0.2s;
  height: 100%;
}

.nav-item > button:hover,
.nav-item > a.nav-link:hover,
.nav-item.open > button,
.nav-item:focus-within > button {
  color: var(--blue-700);
  border-bottom-color: var(--blue-700);
}

.nav-item > button::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  margin-top: 2px;
  opacity: 0.7;
}

/* Mega dropdown */
.dropdown,
.mega {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  background: var(--white);
  border-top: 1px solid var(--gray-200);
  border-bottom: 3px solid var(--blue-700);
  box-shadow: var(--shadow-lg);
  z-index: 30;
  padding: 1.75rem 0 2rem;
  animation: dropIn 0.22s var(--ease);
}

.nav-item.open .dropdown,
.nav-item.open .mega {
  display: block;
}

@keyframes dropIn {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mega-inner {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.9fr;
  gap: 2rem;
}

.mega h4 {
  margin: 0 0 0.85rem;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-500);
  font-weight: 800;
}

.mega a {
  display: block;
  padding: 0.55rem 0;
  color: var(--gray-900);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

.mega a:hover {
  color: var(--blue-700);
  border-bottom-color: var(--blue-100);
}

.mega-featured {
  background: linear-gradient(145deg, var(--blue-900), var(--blue-700));
  color: var(--white);
  padding: 1.35rem 1.4rem;
  border-radius: var(--radius-md);
}

.mega-featured h5 {
  margin: 0 0 0.45rem;
  font-size: 1.1rem;
  font-family: var(--font-display);
}

.mega-featured p {
  margin: 0 0 1rem;
  font-size: 0.92rem;
  opacity: 0.92;
}

.mega-featured a {
  color: var(--white);
  font-weight: 700;
  display: inline-flex;
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
  padding: 0;
}

.dropdown.simple {
  left: 0;
  right: auto;
  width: 280px;
  min-width: 260px;
  padding: 0.65rem 0;
  border-bottom: 3px solid var(--blue-700);
}

.dropdown.simple a {
  display: block;
  padding: 0.7rem 1.15rem;
  color: var(--gray-900);
  font-weight: 600;
  text-decoration: none;
}

.dropdown.simple a:hover {
  background: var(--blue-50);
  color: var(--blue-800);
}

.dropdown .group-title {
  padding: 0.45rem 1.15rem 0.2rem;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-500);
  font-weight: 800;
}

/* ========== Quick actions (icon row) ========== */
.quick-actions {
  background: var(--blue-950);
  color: var(--white);
}

.quick-actions .inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.qa-link,
.quick-actions a {
  color: var(--white);
  text-decoration: none;
  padding: 1.05rem 1.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-weight: 700;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  transition: background 0.2s;
}

.qa-link:last-child,
.quick-actions a:last-child {
  border-right: 0;
}

.qa-link:hover,
.quick-actions a:hover {
  background: rgba(255, 255, 255, 0.08);
  text-decoration: none;
}

.qa-ico {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
}

/* ========== Hero carousel (panel + image) ========== */
.hero {
  position: relative;
  background: var(--blue-950);
  color: var(--white);
  overflow: hidden;
  min-height: 520px;
}

.hero-slides {
  position: relative;
  min-height: 520px;
}

.hero-slide {
  display: none;
  min-height: 520px;
  position: relative;
  background-size: cover;
  background-position: center right;
}

.hero-slide.active {
  display: grid;
  grid-template-columns: minmax(320px, 480px) 1fr;
  animation: fadeSlide 0.55s var(--ease);
}

@keyframes fadeSlide {
  from {
    opacity: 0.35;
  }
  to {
    opacity: 1;
  }
}

.hero-panel {
  background: linear-gradient(180deg, var(--blue-900) 0%, var(--blue-950) 100%);
  padding: 3.25rem 2.5rem 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
  box-shadow: 12px 0 40px rgba(0, 0, 0, 0.25);
}

.hero-panel::after {
  content: "";
  position: absolute;
  top: 0;
  right: -40px;
  width: 80px;
  height: 100%;
  background: linear-gradient(90deg, var(--blue-950), transparent);
  pointer-events: none;
}

.hero-media {
  position: absolute;
  inset: 0 0 0 35%;
  background-size: cover;
  background-position: center;
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 31, 56, 0.55), transparent 40%);
}

.hero-kicker {
  display: inline-block;
  align-self: flex-start;
  background: var(--cyan-500);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.4rem 0.7rem;
  margin-bottom: 1.1rem;
}

.hero h1,
.hero h2 {
  margin: 0 0 0.9rem;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 2.8vw, 2.35rem);
  line-height: 1.18;
  font-weight: 700;
}

.hero p {
  margin: 0 0 1.5rem;
  font-size: 1.05rem;
  opacity: 0.94;
  max-width: 34ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.hero-controls {
  position: absolute;
  right: 1.35rem;
  bottom: 1.35rem;
  display: flex;
  gap: 0.5rem;
  z-index: 5;
}

.hero-controls button {
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  color: var(--blue-900);
  cursor: pointer;
  font-weight: 800;
  font-size: 1.2rem;
  box-shadow: var(--shadow);
  transition: transform 0.2s;
}

.hero-controls button:hover {
  transform: scale(1.06);
}

.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 1.4rem;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 5;
}

.hero-dots button {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  border: 2px solid var(--white);
  background: transparent;
  cursor: pointer;
  padding: 0;
}

.hero-dots button.active {
  background: var(--white);
}

/* ========== Buttons ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.8rem 1.35rem;
  border-radius: var(--radius);
  font-weight: 700;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none !important;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
}

.btn:active {
  transform: translateY(1px);
}

.btn-primary {
  background: var(--blue-700);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--blue-800);
}

.btn-secondary {
  background: var(--white);
  color: var(--blue-800);
}

.btn-secondary:hover {
  background: var(--blue-50);
}

.btn-outline {
  background: transparent;
  color: var(--blue-700);
  border-color: var(--blue-700);
}

.btn-outline:hover {
  background: var(--blue-50);
}

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.7);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
}

.btn-orange {
  background: var(--orange-600);
  color: var(--white);
}

.btn-orange:hover {
  background: var(--orange-700);
}

.btn-lg {
  padding: 0.95rem 1.6rem;
  font-size: 1.02rem;
}

/* ========== Promo / app strip ========== */
.promo-strip {
  background: linear-gradient(100deg, var(--blue-800) 0%, var(--blue-600) 48%, var(--cyan-500) 100%);
  color: var(--white);
  padding: 2.1rem 0;
  position: relative;
  overflow: hidden;
}

.promo-strip::before {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  right: -60px;
  top: -100px;
}

.promo-strip .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.75rem;
  flex-wrap: wrap;
  position: relative;
}

.promo-strip .eyebrow {
  margin: 0 0 0.35rem;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.9;
}

.promo-strip h2 {
  margin: 0 0 0.4rem;
  font-size: 1.55rem;
  font-family: var(--font-display);
}

.promo-strip p {
  margin: 0;
  opacity: 0.95;
  max-width: 52ch;
}

.promo-actions {
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
}

/* ========== Sections ========== */
.section {
  padding: 3.75rem 0;
}

.section-alt {
  background: var(--gray-50);
}

.section-head {
  margin-bottom: 2rem;
  max-width: 760px;
}

.section-head .eyebrow {
  display: inline-block;
  color: var(--blue-700);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.45rem;
}

.section-head h2 {
  margin: 0 0 0.55rem;
  color: var(--blue-900);
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2.5vw, 2.05rem);
  line-height: 1.2;
}

.section-head p {
  margin: 0;
  color: var(--gray-700);
  font-size: 1.05rem;
}

/* ========== Cards ========== */
.card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.35rem;
}

.card-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.card-grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.card img {
  width: 100%;
  height: 168px;
  object-fit: cover;
}

.card-body {
  padding: 1.25rem 1.25rem 1.45rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.card h3 {
  margin: 0 0 0.55rem;
  color: var(--blue-900);
  font-size: 1.12rem;
}

.card p {
  margin: 0 0 1.1rem;
  color: var(--gray-700);
  font-size: 0.95rem;
  flex: 1;
}

.card .card-link {
  font-weight: 700;
  color: var(--blue-700);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.card .card-link::after {
  content: "→";
  transition: transform 0.2s;
}

.card .card-link:hover::after {
  transform: translateX(3px);
}

/* Icon feature tiles */
.tile-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: -2.5rem;
  position: relative;
  z-index: 4;
}

.tile {
  background: var(--white);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow);
  padding: 1.45rem 1.35rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s, transform 0.2s;
}

.tile:hover {
  border-color: var(--blue-500);
  transform: translateY(-3px);
  text-decoration: none;
}

.tile-ico {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--blue-50);
  color: var(--blue-700);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  flex-shrink: 0;
  font-size: 1.1rem;
}

.tile h3 {
  margin: 0 0 0.3rem;
  color: var(--blue-900);
  font-size: 1.05rem;
}

.tile p {
  margin: 0;
  color: var(--gray-700);
  font-size: 0.9rem;
}

/* ========== Split ========== */
.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.5rem;
  align-items: center;
}

.split img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}

.split h2 {
  margin-top: 0;
  color: var(--blue-900);
  font-family: var(--font-display);
}

/* ========== Help panel + floating ========== */
.help-panel {
  background: var(--blue-950);
  color: var(--white);
  padding: 2rem 0;
}

.help-panel .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.help-panel h2 {
  margin: 0 0 0.4rem;
  font-size: 1.4rem;
  font-family: var(--font-display);
}

.help-panel p {
  margin: 0;
  max-width: 640px;
}

.help-panel a.phone {
  color: var(--cyan-400);
  font-weight: 700;
}

.fab-help {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 900;
  background: var(--orange-600);
  color: var(--white);
  border: 0;
  border-radius: 999px;
  padding: 0.9rem 1.25rem;
  font-weight: 800;
  cursor: pointer;
  box-shadow: var(--shadow-lg);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.fab-help:hover {
  background: var(--orange-700);
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 31, 56, 0.55);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
}

.modal-backdrop.open {
  display: flex;
}

.modal {
  background: var(--white);
  width: min(100%, 460px);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  animation: dropIn 0.25s var(--ease);
}

.modal-head {
  background: var(--blue-900);
  color: var(--white);
  padding: 1.1rem 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-head h2 {
  margin: 0;
  font-size: 1.15rem;
}

.modal-close {
  background: transparent;
  border: 0;
  color: var(--white);
  font-size: 1.4rem;
  cursor: pointer;
  line-height: 1;
}

.modal-body {
  padding: 1.35rem 1.25rem 1.5rem;
}

.modal-body p {
  margin-top: 0;
}

/* ========== Page hero ========== */
.page-hero {
  background:
    linear-gradient(115deg, rgba(0, 31, 56, 0.94), rgba(0, 90, 148, 0.88)),
    url("../assets/images/hero-2.jpg") center/cover;
  color: var(--white);
  padding: 3.25rem 0 3.5rem;
}

.page-hero h1 {
  margin: 0 0 0.55rem;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3vw, 2.45rem);
}

.page-hero p {
  margin: 0;
  max-width: 680px;
  opacity: 0.95;
  font-size: 1.05rem;
}

.breadcrumb {
  font-size: 0.875rem;
  margin-bottom: 0.85rem;
  opacity: 0.88;
}

.breadcrumb a {
  color: var(--white);
}

/* ========== Forms / identity ========== */
.form-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow);
  padding: 1.6rem;
  max-width: 640px;
}

.form-row {
  margin-bottom: 1rem;
}

.form-row label {
  display: block;
  font-weight: 700;
  margin-bottom: 0.35rem;
  color: var(--gray-900);
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 0.75rem 0.85rem;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: 0;
  border-color: var(--blue-500);
  box-shadow: 0 0 0 3px rgba(0, 130, 200, 0.18);
}

.form-row textarea {
  min-height: 140px;
  resize: vertical;
}

.identity-box {
  background: var(--blue-50);
  border-left: 4px solid var(--blue-700);
  padding: 1.35rem 1.45rem;
}

.identity-box dl {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 0.5rem 1rem;
  margin: 0;
}

.identity-box dt {
  font-weight: 700;
  color: var(--blue-900);
}

.identity-box dd {
  margin: 0;
}

.table-wrap {
  overflow-x: auto;
}

table.data {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
}

table.data th,
table.data td {
  border: 1px solid var(--gray-200);
  padding: 0.8rem 0.95rem;
  text-align: left;
}

table.data th {
  background: var(--blue-900);
  color: var(--white);
}

.badge {
  display: inline-block;
  background: var(--blue-100);
  color: var(--blue-800);
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.28rem 0.6rem;
  border-radius: 999px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.prose {
  max-width: 760px;
}

.prose h2,
.prose h3 {
  color: var(--blue-900);
  font-family: var(--font-display);
}

.prose ul {
  padding-left: 1.2rem;
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
}

.media-grid figure {
  margin: 0;
  background: var(--white);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.media-grid img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  transition: transform 0.45s var(--ease);
}

.media-grid figure:hover img {
  transform: scale(1.04);
}

.media-grid figcaption {
  padding: 0.85rem 1rem;
  font-size: 0.9rem;
  color: var(--gray-700);
  font-weight: 600;
}

/* Accordion */
.accordion details {
  background: var(--white);
  border: 1px solid var(--gray-200);
  margin-bottom: 0.65rem;
}

.accordion summary {
  padding: 1rem 1.15rem;
  font-weight: 700;
  color: var(--blue-900);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.accordion summary::-webkit-details-marker {
  display: none;
}

.accordion summary::after {
  content: "+";
  font-size: 1.25rem;
  color: var(--blue-700);
}

.accordion details[open] summary::after {
  content: "–";
}

.accordion .acc-body {
  padding: 0 1.15rem 1.15rem;
  color: var(--gray-700);
}

/* Leadership */
.leadership-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.15rem;
}

.leader-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
  padding: 1.25rem 1.2rem 1.35rem;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  border-top: 3px solid var(--blue-700);
  transition: transform 0.2s, box-shadow 0.2s;
}

.leader-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.leader-card.featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem;
  align-items: start;
  border-top-color: var(--orange-600);
  background: linear-gradient(180deg, #fff8f2 0%, var(--white) 55%);
}

.leader-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--blue-900);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.leader-card.featured .leader-avatar {
  width: 72px;
  height: 72px;
  font-size: 1.15rem;
  background: var(--orange-600);
}

.leader-role {
  margin: 0 0 0.25rem;
  color: var(--blue-700);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.leader-card h3 {
  margin: 0 0 0.55rem;
  color: var(--blue-900);
  font-size: 1.12rem;
}

.leader-card p {
  margin: 0;
  color: var(--gray-700);
  font-size: 0.94rem;
  flex: 1;
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.reveal.in {
  opacity: 1;
  transform: none;
}

/* ========== Footer ========== */
.site-footer {
  background: var(--blue-950);
  color: #c9d9e8;
  padding-top: 3.25rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.45fr repeat(3, 1fr);
  gap: 2rem;
  padding-bottom: 2.25rem;
}

.site-footer h3 {
  margin: 0 0 0.95rem;
  color: var(--white);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 800;
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer li {
  margin-bottom: 0.5rem;
}

.site-footer a {
  color: #c9d9e8;
  text-decoration: none;
  font-size: 0.92rem;
}

.site-footer a:hover {
  color: var(--white);
  text-decoration: underline;
}

.footer-brand {
  display: flex;
  gap: 0.95rem;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.footer-brand img {
  width: 76px;
  height: 76px;
  background: var(--white);
  border-radius: 50%;
  object-fit: contain;
}

.footer-meta {
  font-size: 0.9rem;
  line-height: 1.55;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 1.1rem 0 1.4rem;
  font-size: 0.82rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Search */
.search-panel {
  display: none;
  background: var(--blue-50);
  border-bottom: 1px solid var(--gray-200);
  padding: 1.1rem 0;
}

.search-panel.open {
  display: block;
  animation: dropIn 0.2s var(--ease);
}

.search-panel form {
  display: flex;
  gap: 0.55rem;
}

.search-panel input {
  flex: 1;
  padding: 0.85rem 1rem;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
}

/* Cookie bar */
.cookie-bar {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 950;
  background: var(--white);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-lg);
  padding: 1rem 1.15rem;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  max-width: 920px;
  margin-inline: auto;
}

.cookie-bar.show {
  display: flex;
}

.cookie-bar p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--gray-700);
  flex: 1;
}

/* ========== Responsive ========== */
@media (max-width: 1040px) {
  .card-grid,
  .card-grid-3,
  .leadership-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .mega-inner {
    grid-template-columns: 1fr 1fr;
  }

  .mega-inner .mega-featured {
    grid-column: 1 / -1;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-slide.active {
    grid-template-columns: 1fr;
  }

  .hero-media {
    position: relative;
    inset: auto;
    min-height: 240px;
  }

  .hero-panel::after {
    display: none;
  }

  .hero,
  .hero-slides,
  .hero-slide {
    min-height: 0;
  }
}

@media (max-width: 860px) {
  .nav-toggle {
    display: inline-flex;
  }

  .primary-nav {
    display: none;
    position: fixed;
    inset: calc(var(--header-h) + 42px) 0 0 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    overflow-y: auto;
    padding: 0 0 2rem;
    box-shadow: var(--shadow-lg);
  }

  .primary-nav.open {
    display: flex;
  }

  .nav-item > button,
  .nav-item > a.nav-link {
    width: 100%;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--gray-100);
    border-left: 0;
  }

  .dropdown,
  .mega {
    position: static;
    border: 0;
    box-shadow: none;
    background: var(--gray-50);
    padding: 0.5rem 0 0.85rem;
    animation: none;
  }

  .mega-inner {
    grid-template-columns: 1fr;
    width: 100%;
    padding: 0 1rem;
  }

  .quick-actions .inner,
  .tile-row {
    grid-template-columns: 1fr;
  }

  .qa-link,
  .quick-actions a {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    justify-content: flex-start;
  }

  .tile-row {
    margin-top: 1.5rem;
  }

  .brand-text span {
    display: none;
  }

  .split,
  .identity-box dl,
  .media-grid,
  .card-grid,
  .card-grid-3,
  .card-grid-2,
  .leadership-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .leader-card.featured {
    grid-column: 1 / -1;
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .utility-bar .inner {
    justify-content: center;
  }

  .hero-panel {
    padding: 2.25rem 1.35rem 2.5rem;
  }

  .fab-help span.label {
    display: none;
  }
}
