/* ============================================================
   McKinney Flood Pros — Main Stylesheet
   Primary: #1a2744 | Accent: #e07b2a
   Fonts: DM Serif Display (headings) | Inter (body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Inter:wght@300;400;500;600;700&display=swap');

/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:      #1a2744;
  --navy-dark: #111b33;
  --navy-mid:  #223060;
  --orange:    #e07b2a;
  --orange-dk: #c46820;
  --orange-lt: #f59440;
  --white:     #ffffff;
  --off-white: #f5f7fa;
  --gray-100:  #eef0f5;
  --gray-200:  #d8dce8;
  --gray-500:  #7a849e;
  --gray-700:  #3d4560;
  --text:      #1e2535;
  --radius:    6px;
  --radius-lg: 12px;
  --shadow:    0 4px 20px rgba(26,39,68,.12);
  --shadow-lg: 0 8px 40px rgba(26,39,68,.18);
  --trans:     .25s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
}

h1, h2, h3, h4, h5 {
  font-family: 'DM Serif Display', serif;
  line-height: 1.25;
  color: var(--navy);
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.15rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

a { color: var(--orange); text-decoration: none; transition: color var(--trans); }
a:hover { color: var(--orange-dk); }

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

ul, ol { padding-left: 1.4rem; }
li { margin-bottom: .4rem; }

.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 80px 0; }
.section--alt { background: var(--off-white); }
.section--dark { background: var(--navy); color: var(--white); }
.section--dark h2, .section--dark h3, .section--dark h4 { color: var(--white); }
.section--dark p, .section--dark li { color: var(--gray-200); }

.section-label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: .75rem;
}

.section-title { margin-bottom: 1rem; }
.section-intro { max-width: 680px; color: var(--gray-700); font-size: 1.05rem; margin-bottom: 2.5rem; }

.text-center { text-align: center; }
.text-center .section-intro { margin-left: auto; margin-right: auto; }

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 2rem;
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-size: .95rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--trans);
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn-primary:hover {
  background: var(--orange-dk);
  border-color: var(--orange-dk);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(224,123,42,.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.6);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-navy:hover {
  background: var(--navy-mid);
  border-color: var(--navy-mid);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-lg { padding: 1.1rem 2.6rem; font-size: 1.05rem; }

/* ── Top Bar ──────────────────────────────────────────────── */
.topbar {
  background: var(--navy-dark);
  color: var(--gray-200);
  font-size: .82rem;
  padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 6px;
}
.topbar a { color: var(--orange-lt); }
.topbar a:hover { color: var(--white); }
.topbar-left, .topbar-right { display: flex; align-items: center; gap: 18px; }
.topbar-item { display: flex; align-items: center; gap: 6px; }
.topbar-item svg { flex-shrink: 0; }

/* ── Header / Nav ─────────────────────────────────────────── */
.site-header {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 900;
  box-shadow: 0 2px 16px rgba(0,0,0,.25);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.logo {
  display: flex;
  flex-direction: column;
  text-decoration: none;
}
.logo-main {
  font-family: 'DM Serif Display', serif;
  font-size: 1.45rem;
  color: var(--white);
  line-height: 1.1;
}
.logo-main span { color: var(--orange); }
.logo-sub {
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gray-200);
  margin-top: 2px;
}

.main-nav { display: flex; align-items: center; gap: 6px; }
.main-nav a {
  color: rgba(255,255,255,.85);
  font-size: .9rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: all var(--trans);
  text-decoration: none;
}
.main-nav a:hover,
.main-nav a.active {
  color: var(--white);
  background: rgba(255,255,255,.1);
}
.main-nav a.active { color: var(--orange-lt); }

.nav-cta { margin-left: 10px; }

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

/* Mobile nav drawer */
.mobile-nav {
  display: none;
  background: var(--navy-dark);
  border-top: 1px solid rgba(255,255,255,.08);
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block;
  color: rgba(255,255,255,.85);
  font-weight: 500;
  padding: 14px 24px;
  border-bottom: 1px solid rgba(255,255,255,.06);
  text-decoration: none;
  transition: all var(--trans);
}
.mobile-nav a:hover { color: var(--white); background: rgba(255,255,255,.06); }
.mobile-nav .mobile-cta {
  display: block;
  margin: 16px 24px 20px;
  text-align: center;
  border-bottom: none;
  padding: 0;
}

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy-dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?w=1920&q=80');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: brightness(.45) saturate(.8);
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(17,27,51,.82) 0%,
    rgba(17,27,51,.55) 55%,
    rgba(17,27,51,.3) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: 60px 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(224,123,42,.2);
  border: 1px solid rgba(224,123,42,.5);
  color: var(--orange-lt);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 12px rgba(0,0,0,.4);
}

.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,.82);
  margin-bottom: 2.25rem;
  max-width: 560px;
  line-height: 1.65;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

.hero-phone {
  color: rgba(255,255,255,.75);
  font-size: .88rem;
  margin-top: 2rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-phone a { color: var(--orange-lt); font-weight: 600; }

/* Scroll indicator */
.scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,.5);
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}
.scroll-hint svg { opacity: .6; }

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ── Trust Bar ────────────────────────────────────────────── */
.trust-bar {
  background: var(--navy-mid);
  padding: 22px 0;
  border-bottom: 3px solid var(--orange);
}
.trust-bar .container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 28px 48px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-size: .88rem;
  font-weight: 500;
}
.trust-item svg { color: var(--orange-lt); flex-shrink: 0; }

/* ── Cards ────────────────────────────────────────────────── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-100);
  transition: transform var(--trans), box-shadow var(--trans);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.card-icon {
  width: 56px;
  height: 56px;
  background: rgba(224,123,42,.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--orange);
}

.card h3 { margin-bottom: .6rem; font-size: 1.2rem; }
.card p { font-size: .93rem; color: var(--gray-700); margin-bottom: 0; }

/* ── Process Steps ────────────────────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  counter-reset: steps;
}

.step {
  position: relative;
  padding: 28px 24px 28px 68px;
  background: rgba(255,255,255,.06);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,.1);
  counter-increment: steps;
}
.step::before {
  content: counter(steps);
  position: absolute;
  left: 20px;
  top: 26px;
  width: 34px;
  height: 34px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'DM Serif Display', serif;
  font-size: 1rem;
  color: var(--white);
  font-weight: 700;
}
.step h4 { color: var(--white); margin-bottom: .4rem; }
.step p { font-size: .9rem; color: rgba(255,255,255,.7); margin-bottom: 0; }

/* ── Service Area Badges ──────────────────────────────────── */
.area-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.area-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--gray-100);
  color: var(--navy);
  font-size: .83rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
  border: 1px solid var(--gray-200);
}
.area-badge svg { color: var(--orange); }
.section--dark .area-badge {
  background: rgba(255,255,255,.1);
  color: var(--white);
  border-color: rgba(255,255,255,.15);
}

/* ── CTA Strip ────────────────────────────────────────────── */
.cta-strip {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dk) 100%);
  padding: 60px 0;
}
.cta-strip .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}
.cta-strip h2 { color: var(--white); margin-bottom: .4rem; }
.cta-strip p { color: rgba(255,255,255,.88); margin-bottom: 0; }
.cta-strip .btn-outline { border-color: rgba(255,255,255,.7); }

/* ── FAQ Accordion ────────────────────────────────────────── */
.faq-list { max-width: 820px; margin: 0 auto; }

.faq-item {
  border-bottom: 1px solid var(--gray-200);
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 4px;
  cursor: pointer;
  font-family: 'DM Serif Display', serif;
  font-size: 1.1rem;
  color: var(--navy);
  transition: color var(--trans);
  list-style: none;
  user-select: none;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question:hover { color: var(--orange); }
.faq-icon {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  background: var(--gray-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-size: 1.1rem;
  line-height: 1;
  transition: all var(--trans);
}
details[open] .faq-icon {
  background: var(--orange);
  color: var(--white);
  transform: rotate(45deg);
}
.faq-answer {
  padding: 0 4px 20px;
  color: var(--gray-700);
  line-height: 1.75;
  font-size: .97rem;
}

/* ── Gallery Grid ─────────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--gray-100);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(17,27,51,.8));
  color: var(--white);
  padding: 30px 16px 14px;
  font-size: .85rem;
  font-weight: 500;
  opacity: 0;
  transition: opacity var(--trans);
}
.gallery-item:hover .gallery-caption { opacity: 1; }

/* ── Contact Form ─────────────────────────────────────────── */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 56px;
  align-items: start;
}

.contact-info h2 { margin-bottom: 1rem; }
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 1.5rem;
}
.contact-detail-icon {
  width: 44px;
  height: 44px;
  background: rgba(224,123,42,.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--orange);
}
.contact-detail-text strong {
  display: block;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 2px;
}
.contact-detail-text span,
.contact-detail-text a { color: var(--gray-700); font-size: .95rem; }

.form-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-100);
}
.form-box h3 { margin-bottom: 1.5rem; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .75rem 1rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-size: .95rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--trans), box-shadow var(--trans);
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(224,123,42,.15);
}
.form-group textarea { min-height: 120px; resize: vertical; }

/* ── Services Page ────────────────────────────────────────── */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  padding: 64px 0;
  border-bottom: 1px solid var(--gray-100);
}
.service-detail:last-child { border-bottom: none; }
.service-detail.reverse .service-text { order: 2; }
.service-detail.reverse .service-image { order: 1; }
.service-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--gray-100);
}
.service-image img { width: 100%; height: 100%; object-fit: cover; }
.service-text .section-label { margin-bottom: .5rem; }
.service-text h2 { margin-bottom: 1rem; font-size: clamp(1.5rem, 3vw, 2rem); }
.service-text ul { margin-top: .75rem; }
.service-text ul li { color: var(--gray-700); font-size: .95rem; }

/* ── Cost Guide ───────────────────────────────────────────── */
.cost-table-wrap { overflow-x: auto; }
.cost-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .93rem;
}
.cost-table th {
  background: var(--navy);
  color: var(--white);
  padding: 14px 18px;
  text-align: left;
  font-weight: 600;
}
.cost-table td {
  padding: 14px 18px;
  border-bottom: 1px solid var(--gray-100);
  color: var(--gray-700);
}
.cost-table tr:nth-child(even) td { background: var(--off-white); }
.cost-table tr:hover td { background: rgba(224,123,42,.07); }
.price-range { font-weight: 700; color: var(--navy); }

.tip-box {
  background: rgba(224,123,42,.1);
  border-left: 4px solid var(--orange);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 20px 24px;
  margin: 24px 0;
}
.tip-box strong { color: var(--navy); display: block; margin-bottom: .35rem; }
.tip-box p { color: var(--gray-700); margin-bottom: 0; font-size: .93rem; }

/* ── Thank You Page ───────────────────────────────────────── */
.thankyou-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-mid) 100%);
  text-align: center;
  padding: 60px 24px;
}
.thankyou-box {
  max-width: 580px;
}
.check-circle {
  width: 88px;
  height: 88px;
  background: rgba(224,123,42,.18);
  border: 3px solid var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  color: var(--orange);
}
.thankyou-box h1 { color: var(--white); margin-bottom: 1rem; }
.thankyou-box p { color: rgba(255,255,255,.78); font-size: 1.05rem; margin-bottom: 2rem; }

/* ── Footer ───────────────────────────────────────────────── */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,.65);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand .logo-main { font-size: 1.3rem; }
.footer-desc { font-size: .88rem; margin: .9rem 0 1.2rem; line-height: 1.6; color: rgba(255,255,255,.55); }
.footer-col h5 {
  font-family: 'DM Serif Display', serif;
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 1.1rem;
}
.footer-col ul { list-style: none; padding: 0; }
.footer-col ul li { margin-bottom: .55rem; }
.footer-col ul a { color: rgba(255,255,255,.55); font-size: .88rem; transition: color var(--trans); }
.footer-col ul a:hover { color: var(--orange-lt); }

.footer-bottom {
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: .8rem;
  color: rgba(255,255,255,.35);
}
.footer-bottom a { color: rgba(255,255,255,.35); }
.footer-bottom a:hover { color: var(--orange-lt); }

/* ── Page Hero (inner pages) ──────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-mid) 100%);
  padding: 72px 0 60px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?w=1920&q=80');
  background-size: cover;
  background-position: center;
  opacity: .1;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); margin-bottom: .6rem; }
.page-hero p { color: rgba(255,255,255,.7); max-width: 600px; font-size: 1.05rem; margin-bottom: 0; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .82rem;
  color: rgba(255,255,255,.5);
  margin-bottom: 1rem;
}
.breadcrumb a { color: var(--orange-lt); }
.breadcrumb-sep { color: rgba(255,255,255,.3); }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-wrap { grid-template-columns: 1fr; }
  .service-detail { grid-template-columns: 1fr; gap: 32px; }
  .service-detail.reverse .service-text { order: 1; }
  .service-detail.reverse .service-image { order: 2; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 56px 0; }
  .main-nav, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .topbar-right { display: none; }

  .hero {
    min-height: 220px !important;
    height: 220px !important;
    overflow: hidden !important;
    align-items: flex-end;
  }
  .hero-content { padding: 20px 0; }
  .hero h1 { font-size: 1.55rem; }
  .hero-sub { font-size: .93rem; }
  .hero-actions .btn-lg { padding: .85rem 1.5rem; font-size: .9rem; }
  .scroll-hint { display: none; }

  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cta-strip .container { flex-direction: column; text-align: center; }
  .trust-bar .container { gap: 16px 28px; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .form-box { padding: 24px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero {
    height: 220px !important;
    min-height: 220px !important;
  }
}

/* ── Utility ──────────────────────────────────────────────── */
.mt-1 { margin-top: .5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-0 { margin-bottom: 0; }
.fw-600 { font-weight: 600; }
.color-orange { color: var(--orange); }
.color-navy { color: var(--navy); }
.divider { height: 1px; background: var(--gray-100); margin: 48px 0; }

/* ── Animations ───────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp .55s ease both; }
.fade-up-2 { animation: fadeUp .55s .12s ease both; }
.fade-up-3 { animation: fadeUp .55s .24s ease both; }
