/* ═══════════════════════════════════════════════════════
   MY BUDDIES MOVING — GLOBAL STYLES
   Shared across every page. Cache-friendly.
═══════════════════════════════════════════════════════ */

:root {
  /* ── Brand palette (pulled from logo) ── */
  --navy:        #102340;
  --navy-mid:    #17325a;
  --navy-light:  #1e4070;
  --orange:      #d47a2b;
  --orange-light:#e8943f;
  --orange-glow: rgba(212, 122, 43, .25);
  --cream:       #fdf8f2;
  --white:       #ffffff;
  --text:        #1a1a1a;
  --text-muted:  #6b7280;
  --border:      rgba(255, 255, 255, 0.12);
  --border-light:rgba(16, 35, 64, 0.08);

  /* ── Layout ── */
  --max-width: 1200px;
  --nav-height: 76px;
  --radius:    10px;
  --radius-lg: 16px;

  /* ── Typography ── */
  --ff-display: 'Anybody', system-ui, sans-serif;
  --ff-body:    'DM Sans', system-ui, sans-serif;

  /* ── Shadows ── */
  --shadow-sm:  0 1px 3px rgba(16,35,64,.06);
  --shadow-md:  0 4px 20px rgba(16,35,64,.1);
  --shadow-lg:  0 12px 40px rgba(16,35,64,.14);

  /* ── Transitions ── */
  --ease: cubic-bezier(.4, 0, .2, 1);
}

/* ═══════════════════════════════
   RESET
═══════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; }

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: var(--ff-body);
  font-weight: 400;
  background: var(--cream);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color .25s var(--ease);
}

img { max-width: 100%; display: block; }
ul { list-style: none; margin: 0; padding: 0; }

/* ═══════════════════════════════
   ACCESSIBILITY: SKIP LINK
═══════════════════════════════ */
.skip-link {
  position: absolute;
  left: 0;
  top: -100px;
  background: var(--orange);
  color: var(--white);
  padding: 12px 24px;
  font-weight: 600;
  z-index: 2000;
  border-radius: 0 0 var(--radius) 0;
  transition: top .25s var(--ease);
}
.skip-link:focus {
  top: 0;
  outline: 3px solid var(--white);
  outline-offset: -3px;
}

/* ═══════════════════════════════
   NAVBAR
═══════════════════════════════ */
header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: var(--navy);
  transition: background .35s var(--ease), box-shadow .35s var(--ease);
}

header.scrolled {
  background: rgba(16, 35, 64, .97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 2px 24px rgba(0,0,0,.25);
}

.nav {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
}

/* ── Logo ── */
.nav-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-logo {
  display: none;
}

.nav-brand {
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--white);
  letter-spacing: -.01em;
  line-height: 1.2;
}
.nav-brand small {
  display: block;
  font-family: var(--ff-body);
  font-weight: 400;
  font-size: .7rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--orange-light);
  opacity: .85;
}

/* ── Desktop Links ── */
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links a {
  color: rgba(255,255,255,.78);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: var(--radius);
  position: relative;
  transition: color .25s var(--ease), background .25s var(--ease);
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  background: rgba(255,255,255,.07);
}
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 18px;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
}

/* ── CTA Button (nav) ── */
.nav-cta {
  margin-left: 16px;
  padding: 10px 24px;
  background: var(--orange);
  color: var(--white);
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: .88rem;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: background .25s var(--ease), transform .2s var(--ease), box-shadow .25s var(--ease);
  white-space: nowrap;
}
.nav-cta:hover {
  background: var(--orange-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 18px var(--orange-glow);
}

/* ── Phone (desktop) ── */
.nav-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,.7);
  font-size: .88rem;
  font-weight: 500;
  margin-left: 10px;
}
.nav-phone svg { flex-shrink: 0; }
.nav-phone:hover { color: var(--orange-light); }

/* ═══════════════════════════════
   HAMBURGER
═══════════════════════════════ */
.hamburger-btn {
  display: none;
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius);
  padding: 9px 11px;
  cursor: pointer;
  transition: border-color .25s var(--ease);
}
.hamburger-btn:hover { border-color: var(--orange); }
.hamburger-btn:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 2px;
}

.hamburger-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform .3s var(--ease), opacity .2s var(--ease);
}
.hamburger-btn span + span { margin-top: 5px; }

.hamburger-btn.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger-btn.active span:nth-child(2) {
  opacity: 0;
}
.hamburger-btn.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ═══════════════════════════════
   MOBILE DROPDOWN
═══════════════════════════════ */
.mobile-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: var(--navy);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 12px 32px rgba(0,0,0,.3);
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s var(--ease);
}

.mobile-dropdown.open {
  max-height: 520px;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  padding: 20px 24px 28px;
  gap: 4px;
}

.mobile-nav a {
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255,255,255,.8);
  padding: 12px 16px;
  border-radius: var(--radius);
  transition: background .2s var(--ease), color .2s var(--ease);
}
.mobile-nav a:hover,
.mobile-nav a.active {
  background: rgba(255,255,255,.07);
  color: var(--white);
}

.mobile-nav .mobile-cta {
  margin-top: 12px;
  text-align: center;
  padding: 14px 24px;
  background: var(--orange);
  color: var(--white);
  font-weight: 600;
  border-radius: 50px;
}
.mobile-nav .mobile-cta:hover {
  background: var(--orange-light);
}

.mobile-nav .mobile-phone {
  text-align: center;
  margin-top: 8px;
  color: rgba(255,255,255,.55);
  font-size: .88rem;
}
.mobile-nav .mobile-phone a { color: var(--orange-light); }

/* ═══════════════════════════════
   MAIN
═══════════════════════════════ */
main {
  flex: 1;
  padding-top: var(--nav-height);
}

/* ═══════════════════════════════
   FOOTER
═══════════════════════════════ */
footer {
  background: var(--navy);
  color: rgba(255,255,255,.5);
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 60px 24px 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
}

.footer-brand p {
  margin: 12px 0 0;
  font-size: .9rem;
  line-height: 1.7;
  color: rgba(255,255,255,.45);
  max-width: 280px;
}

.footer-col h4 {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: .9rem;
  color: var(--white);
  margin: 0 0 16px;
  letter-spacing: .02em;
}

.footer-col ul { display: flex; flex-direction: column; gap: 10px; }

.footer-col a,
.footer-col li {
  font-size: .88rem;
  color: rgba(255,255,255,.5);
  transition: color .2s var(--ease);
}
.footer-col a:hover { color: var(--orange-light); }

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .88rem;
  color: rgba(255,255,255,.5);
}
.footer-contact-item svg { flex-shrink: 0; color: var(--orange); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0 0;
  font-size: .82rem;
}
.footer-legal {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.footer-legal a {
  color: rgba(255,255,255,.4);
  transition: color .2s var(--ease);
}
.footer-legal a:hover { color: var(--orange-light); }
.footer-legal-sep {
  color: rgba(255,255,255,.2);
}
.footer-bottom a {
  color: var(--orange);
  font-weight: 600;
}
.footer-bottom a:hover { color: var(--orange-light); }

/* ═══════════════════════════════
   BACK TO TOP
═══════════════════════════════ */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: var(--orange);
  color: var(--white);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity .3s var(--ease), transform .3s var(--ease), background .25s var(--ease), box-shadow .25s var(--ease);
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px var(--orange-glow);
}
.back-to-top.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.back-to-top:hover {
  background: var(--orange-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px var(--orange-glow);
}
.back-to-top:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 2px;
}

/* ═══════════════════════════════
   RESPONSIVE
═══════════════════════════════ */
@media (max-width: 900px) {
  .nav-links,
  .nav-cta,
  .nav-phone { display: none; }
  .hamburger-btn { display: block; }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}

/* ═══════════════════════════════
   UTILITY CLASSES
═══════════════════════════════ */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ── Fade-in on scroll ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

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

/* ═══════════════════════════════════════════════════════
   SHARED PAGE COMPONENTS
   (used across multiple page templates)
═══════════════════════════════════════════════════════ */

/* ── Page header (navy hero strip used on most non-home pages) ── */
.page-header {
  position: relative;
  padding: calc(var(--nav-height) + 64px) 0 80px;
  background: var(--navy);
  color: var(--white);
  text-align: center;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  width: 700px;
  height: 700px;
  top: -30%;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,122,43,.08) 0%, transparent 70%);
  pointer-events: none;
}
.page-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: var(--cream);
  clip-path: polygon(0 60%, 100% 0, 100% 100%, 0 100%);
}
.page-header-inner {
  position: relative;
  z-index: 2;
  max-width: 680px;
  margin: 0 auto;
  padding: 0 24px;
}
.page-header h1 {
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  line-height: 1.12;
  margin: 0 0 16px;
}
.page-header p {
  color: rgba(255,255,255,.6);
  font-size: 1.08rem;
  line-height: 1.7;
  margin: 0;
}
.page-header .phone-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--orange-light);
}
.page-header .phone-link:hover { color: var(--orange); }

.page-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--orange-light);
  margin-bottom: 16px;
}
.page-eyebrow::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
}

/* ── Section utility ── */
.section { padding: 96px 0; }
.section-white { background: var(--white); }
.section-cream { background: var(--cream); }
.section-navy  { background: var(--navy); color: var(--white); }

.section-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 56px;
}
.section-header h2 {
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin: 0 0 14px;
  line-height: 1.15;
}
.section-header p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin: 0;
  line-height: 1.7;
}
.section-navy .section-header p { color: rgba(255,255,255,.55); }

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}
.section-eyebrow::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: .95rem;
  padding: 14px 32px;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all .3s var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn-primary:hover {
  background: var(--orange-light);
  border-color: var(--orange-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px var(--orange-glow);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.3);
}
.btn-outline:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.5);
  transform: translateY(-2px);
}
.btn-outline-dark {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline-dark:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}

/* ── CTA banner (navy banner with optional cta-phone link) ── */
.cta-banner {
  background: var(--navy);
  padding: 80px 0;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 60% at 50% 50%, rgba(212,122,43,.08), transparent 70%);
  pointer-events: none;
}
.cta-banner h2 {
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin: 0 0 14px;
  position: relative;
}
.cta-banner p,
.cta-banner > .container > p {
  color: rgba(255,255,255,.55);
  font-size: 1.08rem;
  max-width: 520px;
  margin: 0 auto 32px;
  position: relative;
}
.cta-banner .btn { position: relative; }
.cta-phone {
  margin-top: 20px;
  color: rgba(255,255,255,.5);
  font-size: .95rem;
  position: relative;
}
.cta-phone a {
  color: var(--orange-light);
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 1.3rem;
}
.cta-phone a:hover { color: var(--orange); }

/* ── Forms (shared by contact, quote, job-application) ── */
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; overflow: hidden; }

.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
}
.form-card h2 {
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: 1.6rem;
  margin: 0 0 6px;
}
.form-card > p {
  color: var(--text-muted);
  font-size: .95rem;
  margin: 0 0 32px;
  line-height: 1.65;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-row-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
}
.form-row-4 {
  display: grid;
  grid-template-columns: 1fr 1fr 1.2fr .8fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}
.form-group label {
  font-weight: 600;
  font-size: .84rem;
  margin-bottom: 6px;
  color: var(--text);
}
.form-group .req { color: var(--orange); }

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--ff-body);
  font-size: .95rem;
  padding: 13px 16px;
  border: 1.5px solid rgba(16,35,64,.1);
  border-radius: var(--radius);
  background: var(--cream);
  color: var(--text);
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(212,122,43,.12);
  background: var(--white);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #a0a7b3; }
.form-group textarea {
  resize: vertical;
  min-height: 130px;
}
.form-group select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%236b7280' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

/* Form section dividers (quote + job-application) */
.form-section {
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border-light);
}
.form-section:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 28px;
}
.form-section-label {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--text);
  margin: 0 0 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.form-section-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(212,122,43,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: .78rem;
  color: var(--orange);
  flex-shrink: 0;
}

/* Progress bar */
.form-progress {
  display: flex;
  gap: 8px;
  margin-bottom: 36px;
}
.form-progress-step {
  flex: 1;
  height: 4px;
  border-radius: 4px;
  background: rgba(16,35,64,.06);
  overflow: hidden;
  position: relative;
}
.form-progress-step::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--orange);
  border-radius: 4px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--ease);
}
.form-progress-step.active::after { transform: scaleX(1); }

/* Privacy consent checkbox row */
.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 28px;
  font-size: .88rem;
  color: var(--text-muted);
  line-height: 1.55;
}
.form-consent input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border: 1.5px solid rgba(16,35,64,.15);
  border-radius: 5px;
  background: var(--cream);
  flex-shrink: 0;
  margin-top: 1px;
  cursor: pointer;
  position: relative;
  transition: all .2s var(--ease);
}
.form-consent input[type="checkbox"]:checked {
  background: var(--orange);
  border-color: var(--orange);
}
.form-consent input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 6px;
  width: 5px;
  height: 9px;
  border: solid var(--white);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.form-consent a {
  color: var(--orange);
  font-weight: 600;
}
.form-consent a:hover { color: var(--orange-light); }

/* Submit button */
.form-submit {
  width: 100%;
  padding: 16px 32px;
  background: var(--orange);
  color: var(--white);
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 1rem;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all .3s var(--ease);
}
.form-submit:hover {
  background: var(--orange-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px var(--orange-glow);
}

/* Flash messages */
.flash {
  padding: 16px 20px;
  border-radius: var(--radius);
  font-size: .92rem;
  font-weight: 500;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.flash-success {
  background: rgba(16,185,129,.08);
  border: 1px solid rgba(16,185,129,.2);
  color: #065f46;
}
.flash-error {
  background: rgba(220,38,38,.06);
  border: 1px solid rgba(220,38,38,.15);
  color: #991b1b;
}

/* ── Sidebar shared components (contact + quote + job-application) ── */
.sidebar-block {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}
.sidebar-block h3 {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 1.15rem;
  margin: 0 0 18px;
}

.sidebar-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border-light);
}
.sidebar-item:last-child { border-bottom: none; }

.sidebar-item-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  background: rgba(212,122,43,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.sidebar-item-icon svg { color: var(--orange); }

.sidebar-item-text h4 {
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: .88rem;
  margin: 0 0 2px;
  color: var(--text);
}
.sidebar-item-text p {
  font-size: .84rem;
  color: var(--text-muted);
  margin: 0;
}
.sidebar-item-text a {
  color: var(--orange);
  font-weight: 500;
}
.sidebar-item-text a:hover { color: var(--orange-light); }

/* Quote + job-application use a slightly tighter sidebar-item variant */
.quote-sidebar .sidebar-item,
.app-sidebar .sidebar-item {
  align-items: flex-start;
}
.quote-sidebar .sidebar-item-icon,
.app-sidebar .sidebar-item-icon {
  width: 40px;
  height: 40px;
}
.quote-sidebar .sidebar-item-text h4,
.app-sidebar .sidebar-item-text h4 {
  margin-bottom: 3px;
}
.quote-sidebar .sidebar-item-text p,
.app-sidebar .sidebar-item-text p {
  line-height: 1.55;
}

/* Sidebar navy callout (quote + job-application) */
.sidebar-callout {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-align: center;
}
.sidebar-callout h3 {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--white);
  margin: 0 0 8px;
}
.sidebar-callout p {
  color: rgba(255,255,255,.5);
  font-size: .88rem;
  margin: 0 0 18px;
  line-height: 1.6;
}
.sidebar-callout a {
  color: var(--orange-light);
  font-weight: 600;
  font-size: .92rem;
}
.sidebar-callout a:hover { color: var(--orange); }

/* ═══════════════════════════════════════════════════════
   HOME PAGE
═══════════════════════════════════════════════════════ */

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 94vh;
  display: flex;
  align-items: center;
  background: var(--navy);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  width: 900px;
  height: 900px;
  top: -20%;
  right: -10%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,122,43,.1) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: var(--cream);
  clip-path: polygon(0 60%, 100% 0, 100% 100%, 0 100%);
}

.hero-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-shapes span {
  position: absolute;
  border: 1.5px solid rgba(212,122,43,.1);
  border-radius: 50%;
}
.hero-shapes span:nth-child(1) {
  width: 340px; height: 340px;
  top: 8%; right: 2%;
  animation: drift 22s ease-in-out infinite;
}
.hero-shapes span:nth-child(2) {
  width: 200px; height: 200px;
  bottom: 18%; left: 4%;
  animation: drift 18s ease-in-out infinite reverse;
}
.hero-shapes span:nth-child(3) {
  width: 120px; height: 120px;
  top: 55%; left: 40%;
  border-color: rgba(255,255,255,.04);
  animation: drift 15s ease-in-out infinite 3s;
}

@keyframes drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%      { transform: translate(18px, -25px) scale(1.03); }
  66%      { transform: translate(-12px, 14px) scale(.97); }
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
}

.hero-text { color: var(--white); }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--orange-light);
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp .7s var(--ease) .2s forwards;
}
.hero-eyebrow::before {
  content: '';
  width: 30px;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
}

.hero-text h1 {
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 1.1;
  margin: 0 0 24px;
  opacity: 0;
  animation: fadeUp .7s var(--ease) .35s forwards;
}
.hero-text h1 .highlight { color: var(--orange); }

.hero-text p {
  font-size: 1.1rem;
  line-height: 1.75;
  color: rgba(255,255,255,.65);
  max-width: 500px;
  margin: 0 0 36px;
  opacity: 0;
  animation: fadeUp .7s var(--ease) .5s forwards;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp .7s var(--ease) .65s forwards;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-card {
  background: rgba(255,255,255,.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  opacity: 0;
  animation: fadeUp .7s var(--ease) .55s forwards;
}

.hero-stat {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.hero-stat:last-child { border-bottom: none; }

.hero-stat-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--radius);
  background: rgba(212,122,43,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hero-stat-icon svg { color: var(--orange); }

.hero-stat h4 {
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: .95rem;
  color: var(--white);
  margin: 0 0 3px;
}
.hero-stat p {
  font-size: .82rem;
  color: rgba(255,255,255,.45);
  margin: 0;
  line-height: 1.4;
}

/* ── TRUST BAR ── */
.trust-bar {
  padding: 48px 0;
  background: var(--cream);
}
.trust-bar-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-muted);
  font-size: .9rem;
  font-weight: 500;
}
.trust-item svg { color: var(--orange); flex-shrink: 0; }
.trust-item strong { color: var(--text); }

/* ── SERVICES GRID (home) ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.svc-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  border: 1px solid var(--border-light);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  position: relative;
  overflow: hidden;
}
.svc-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--orange-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s var(--ease);
}
.svc-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.svc-card:hover::before { transform: scaleX(1); }

.svc-icon {
  width: 54px;
  height: 54px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(212,122,43,.1), rgba(212,122,43,.04));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.svc-icon svg { color: var(--orange); }

.svc-card h3 {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 1.2rem;
  margin: 0 0 10px;
}
.svc-card p {
  color: var(--text-muted);
  font-size: .92rem;
  line-height: 1.7;
  margin: 0;
}

/* ── WHY US ── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.why-item {
  text-align: center;
  padding: 32px 20px;
  border-radius: var(--radius-lg);
  transition: background .3s var(--ease);
}
.why-item:hover { background: rgba(255,255,255,.05); }

.why-icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  box-shadow: 0 6px 24px var(--orange-glow);
}
.why-icon svg { color: var(--white); }

.why-item h3 {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 1.1rem;
  margin: 0 0 8px;
}
.why-item p {
  color: rgba(255,255,255,.5);
  font-size: .88rem;
  margin: 0;
  line-height: 1.65;
}

/* ── ABOUT SPLIT (home) ── */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: center;
}
.about-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.about-image-placeholder {
  min-height: 440px;
  overflow: hidden;
}
.about-text .section-eyebrow { margin-bottom: 12px; }
.about-text h2 {
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  line-height: 1.15;
  margin: 0 0 18px;
}
.about-text p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.8;
  margin: 0 0 14px;
}
.about-text .btn { margin-top: 12px; }

/* ── REVIEWS (Trustindex widget + static cards) ── */
.reviews-widget {
  max-width: 100%;
  overflow: hidden;
}

/* ── PHOTO GALLERY STRIP (home) ── */
.gallery-strip {
  padding: 0;
  overflow: hidden;
  background: var(--cream);
}
.gallery-track {
  display: flex;
  gap: 6px;
  width: max-content;
  animation: gallery-scroll 40s linear infinite;
}
.gallery-track:hover { animation-play-state: paused; }
.gallery-item {
  flex-shrink: 0;
  width: 300px;
  height: 220px;
  overflow: hidden;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}
.gallery-item:hover img { transform: scale(1.05); }

@keyframes gallery-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Home responsive */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid      { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-top: 40px;
    padding-bottom: 120px;
  }
  .hero { min-height: auto; padding: calc(var(--nav-height) + 40px) 0 0; }
  .hero-card { display: none; }
  .about-split { grid-template-columns: 1fr; gap: 36px; }
}
@media (max-width: 640px) {
  .services-grid,
  .why-grid { grid-template-columns: 1fr; }
  .trust-bar-inner { gap: 24px; flex-direction: column; }
  .section { padding: 64px 0; }
}

/* ═══════════════════════════════════════════════════════
   ABOUT PAGE
═══════════════════════════════════════════════════════ */

/* ── Story split ── */
.story-split {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 64px;
  align-items: center;
}
.story-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.story-image-placeholder {
  min-height: 460px;
  overflow: hidden;
}
.story-text h2 {
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  line-height: 1.15;
  margin: 0 0 20px;
}
.story-text p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.8;
  margin: 0 0 16px;
}
.story-text p:last-of-type { margin-bottom: 0; }

/* ── Mission / Vision ── */
.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.mv-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  padding: 44px 36px;
  transition: background .3s var(--ease);
}
.mv-card:hover { background: rgba(255,255,255,.08); }

.mv-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius);
  background: rgba(212,122,43,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.mv-icon svg { color: var(--orange); }

.mv-card h3 {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 1.3rem;
  margin: 0 0 12px;
}
.mv-card p {
  color: rgba(255,255,255,.55);
  font-size: .95rem;
  line-height: 1.75;
  margin: 0;
}

/* ── Values grid (about) ── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  text-align: center;
}
.value-item {
  padding: 36px 20px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  background: var(--white);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.value-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.value-num {
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: 2.4rem;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 10px;
}
.value-item h4 {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 1.05rem;
  margin: 0 0 6px;
}
.value-item p {
  color: var(--text-muted);
  font-size: .85rem;
  margin: 0;
  line-height: 1.6;
}

/* ── About-page FAQ accordion (JS-driven .open class) ── */
.faq-section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 48px;
}
.faq-section-header h2 {
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  margin: 0 0 12px;
  line-height: 1.15;
}
.faq-section-header p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin: 0;
}

.faq-list {
  max-width: 780px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--border-light);
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  cursor: pointer;
  gap: 16px;
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--text);
  transition: color .2s var(--ease);
  user-select: none;
}
.faq-question:hover { color: var(--orange); }

.faq-toggle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(212,122,43,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform .3s var(--ease), background .3s var(--ease);
}
.faq-toggle svg {
  color: var(--orange);
  transition: transform .3s var(--ease);
}
.faq-item.open .faq-toggle { background: var(--orange); }
.faq-item.open .faq-toggle svg {
  color: var(--white);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s var(--ease), padding .3s var(--ease);
}
.faq-answer-inner {
  padding: 0 0 22px;
  color: var(--text-muted);
  font-size: .95rem;
  line-height: 1.8;
}
.faq-item.open .faq-answer { max-height: 300px; }

/* About responsive */
@media (max-width: 900px) {
  .story-split { grid-template-columns: 1fr; gap: 36px; }
  .mv-grid     { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .values-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════
   CITY PAGE
═══════════════════════════════════════════════════════ */
.city-hero {
  position: relative;
  padding: calc(var(--nav-height) + 80px) 0 100px;
  background: var(--navy);
  color: var(--white);
  overflow: hidden;
}
.city-hero::before {
  content: '';
  position: absolute;
  width: 800px; height: 800px;
  top: -25%; right: -10%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,122,43,.1) 0%, transparent 70%);
  pointer-events: none;
}
.city-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 80px;
  background: var(--cream);
  clip-path: polygon(0 60%, 100% 0, 100% 100%, 0 100%);
}
.city-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 0 24px;
  margin: 0 auto;
  text-align: center;
}
.city-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--orange-light);
  margin-bottom: 16px;
}
.city-eyebrow::before {
  content: '';
  width: 28px; height: 2px;
  background: var(--orange);
  border-radius: 2px;
}
.city-hero h1 {
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  line-height: 1.12;
  margin: 0 0 18px;
}
.city-hero h1 .highlight { color: var(--orange); }
.city-hero p {
  color: rgba(255,255,255,.7);
  font-size: 1.1rem;
  line-height: 1.7;
  margin: 0 auto 30px;
  max-width: 620px;
}
.city-hero-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
/* City-page btn-primary/btn-outline use the shared declarations above */

.breadcrumbs {
  font-size: .85rem;
  color: rgba(255,255,255,.5);
  margin-bottom: 22px;
}
.breadcrumbs a { color: rgba(255,255,255,.7); }
.breadcrumbs a:hover { color: var(--orange-light); }

.city-section { padding: 88px 0; background: var(--cream); }
.city-section.alt { background: var(--white); }
.city-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.city-grid h2 {
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  margin: 0 0 16px;
  line-height: 1.2;
}
.city-grid p {
  color: var(--text-muted);
  font-size: 1.02rem;
  line-height: 1.8;
  margin: 0 0 14px;
}
.neighborhood-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin: 18px 0 0;
}
.neighborhood-list li {
  padding: 10px 14px;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  font-size: .9rem;
  color: var(--text);
}
.city-section.alt .neighborhood-list li { background: var(--cream); }

.service-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.service-row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--white);
  padding: 22px 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
}
.city-section.alt .service-row { background: var(--cream); }
.service-row-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius);
  background: rgba(212,122,43,.1);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.service-row-icon svg { color: var(--orange); }
.service-row h3 {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 1.05rem;
  margin: 0 0 4px;
}
.service-row p {
  margin: 0;
  font-size: .92rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.zip-band {
  background: var(--navy);
  color: rgba(255,255,255,.7);
  padding: 36px 0;
  text-align: center;
  font-size: .92rem;
  line-height: 1.7;
}
.zip-band strong {
  color: var(--orange-light);
  display: block;
  font-family: var(--ff-display);
  font-size: 1rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.city-cta {
  background: var(--navy);
  padding: 80px 0;
  text-align: center;
  color: var(--white);
}
.city-cta h2 {
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: clamp(1.8rem, 3.2vw, 2.4rem);
  margin: 0 0 14px;
}
.city-cta p {
  color: rgba(255,255,255,.6);
  max-width: 540px;
  margin: 0 auto 30px;
}

@media (max-width: 900px) {
  .city-grid { grid-template-columns: 1fr; gap: 36px; }
}
@media (max-width: 600px) {
  .neighborhood-list { grid-template-columns: 1fr; }
  .city-section { padding: 56px 0; }
}

/* ═══════════════════════════════════════════════════════
   CONTACT PAGE
═══════════════════════════════════════════════════════ */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: -56px;
  position: relative;
  z-index: 3;
}
.contact-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.contact-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  box-shadow: 0 4px 18px var(--orange-glow);
}
.contact-card-icon svg { color: var(--white); }
.contact-card h3 {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 1.1rem;
  margin: 0 0 8px;
}
.contact-card p {
  color: var(--text-muted);
  font-size: .9rem;
  margin: 0 0 4px;
  line-height: 1.6;
}
.contact-card a {
  color: var(--orange);
  font-weight: 600;
  font-size: .92rem;
}
.contact-card a:hover { color: var(--orange-light); }

.contact-layout {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  font-size: .88rem;
  border-bottom: 1px solid var(--border-light);
}
.hours-row:last-child { border-bottom: none; }
.hours-row span:first-child { font-weight: 600; color: var(--text); }
.hours-row span:last-child { color: var(--text-muted); }

.map-block {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
}

@media (max-width: 900px) {
  .contact-cards {
    grid-template-columns: 1fr;
    margin-top: -40px;
  }
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}
@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
  .form-card { padding: 28px 22px; }
}

/* ═══════════════════════════════════════════════════════
   ERROR PAGES (404 + 500)
═══════════════════════════════════════════════════════ */
.error-wrapper {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--nav-height) + 40px) 24px 80px;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.error-wrapper::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,122,43,.08) 0%, transparent 70%);
  pointer-events: none;
}

/* 404 floating boxes */
.lost-boxes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.lost-box {
  position: absolute;
  border: 1.5px solid rgba(212,122,43,.08);
  border-radius: 6px;
  animation: box-float 18s ease-in-out infinite;
}
.lost-box:nth-child(1) { width: 60px; height: 50px; top: 12%; left: 8%; animation-delay: 0s; }
.lost-box:nth-child(2) { width: 45px; height: 38px; top: 25%; right: 12%; animation-delay: -4s; border-color: rgba(255,255,255,.04); }
.lost-box:nth-child(3) { width: 55px; height: 45px; bottom: 22%; left: 15%; animation-delay: -8s; }
.lost-box:nth-child(4) { width: 35px; height: 30px; bottom: 30%; right: 20%; animation-delay: -12s; border-color: rgba(255,255,255,.03); }
.lost-box:nth-child(5) { width: 50px; height: 42px; top: 50%; left: 5%; animation-delay: -6s; }
.lost-box::after {
  content: '';
  position: absolute;
  top: 40%;
  left: 20%;
  right: 20%;
  height: 1px;
  background: rgba(212,122,43,.1);
}

@keyframes box-float {
  0%, 100% { transform: translate(0, 0) rotate(0deg); opacity: .5; }
  25%      { transform: translate(12px, -20px) rotate(4deg); opacity: .7; }
  50%      { transform: translate(-8px, -10px) rotate(-2deg); opacity: .4; }
  75%      { transform: translate(15px, 8px) rotate(3deg); opacity: .6; }
}

/* 500 hazard stripes */
.hazard-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  opacity: .03;
}
.hazard-lines span {
  position: absolute;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--orange) 0px, var(--orange) 20px, transparent 20px, transparent 40px);
  animation: hazard-drift 25s linear infinite;
}
.hazard-lines span:nth-child(1) { top: 20%; left: -10%; width: 120%; animation-delay: 0s; }
.hazard-lines span:nth-child(2) { top: 40%; left: -10%; width: 120%; animation-delay: -5s; opacity: .6; }
.hazard-lines span:nth-child(3) { top: 60%; left: -10%; width: 120%; animation-delay: -10s; }
.hazard-lines span:nth-child(4) { top: 80%; left: -10%; width: 120%; animation-delay: -15s; opacity: .5; }

@keyframes hazard-drift {
  0%   { transform: translateX(0); }
  100% { transform: translateX(40px); }
}

.error-card {
  position: relative;
  z-index: 2;
  max-width: 600px;
  width: 100%;
  text-align: center;
}

.error-icon {
  margin: 0 auto 32px;
  width: 120px;
  height: 120px;
  position: relative;
  animation: nudge 3s ease-in-out infinite;
}
.error-box-svg {
  width: 100%;
  height: 100%;
}

@keyframes nudge {
  0%, 100% { transform: translateX(0) rotate(0deg); }
  25%      { transform: translateX(-8px) rotate(-3deg); }
  75%      { transform: translateX(8px) rotate(3deg); }
}

/* 500 truck-shake variant (applied via .error-icon-truck modifier) */
.error-icon-truck {
  width: 130px;
  height: 110px;
  animation: truck-shake 2.5s ease-in-out infinite;
}
@keyframes truck-shake {
  0%, 100% { transform: translateX(0) rotate(0deg); }
  15%      { transform: translateX(-3px) rotate(-.5deg); }
  30%      { transform: translateX(3px) rotate(.5deg); }
  45%      { transform: translateX(-2px) rotate(-.3deg); }
  60%      { transform: translateX(0) rotate(0deg); }
}

/* 500 error code variant — red gradient */
.error-code-500 {
  background: linear-gradient(135deg, #e05545, var(--orange));
  -webkit-background-clip: text;
  background-clip: text;
}

.error-code {
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: clamp(5rem, 12vw, 8rem);
  line-height: 1;
  color: transparent;
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: 16px;
  letter-spacing: -.03em;
}

.error-card h1 {
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--white);
  margin: 0 0 14px;
}

.error-card .error-msg {
  color: rgba(255,255,255,.5);
  font-size: 1.05rem;
  line-height: 1.75;
  margin: 0 auto 40px;
  max-width: 480px;
}

.error-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.error-footer {
  margin-top: 48px;
  color: rgba(255,255,255,.3);
  font-size: .85rem;
}
.error-footer a {
  color: var(--orange-light);
  font-weight: 600;
}
.error-footer a:hover { color: var(--orange); }

/* ═══════════════════════════════════════════════════════
   FAQ PAGE (dedicated /faq route — uses <details> markup)
   Namespaced under .faq-section to avoid colliding with the
   about-page .faq-item / .faq-list accordion above.
═══════════════════════════════════════════════════════ */
.faq-section { padding: 80px 0 96px; background: var(--cream); }
.faq-section .faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-section .faq-item {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: box-shadow .25s var(--ease);
}
.faq-section .faq-item[open] { box-shadow: var(--shadow-md); }
.faq-section .faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 28px;
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--text);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-section .faq-item summary::-webkit-details-marker { display: none; }
.faq-section .faq-item summary::after {
  content: '+';
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--orange);
  transition: transform .25s var(--ease);
  flex-shrink: 0;
}
.faq-section .faq-item[open] summary::after { content: '−'; }
.faq-section .faq-answer {
  padding: 0 28px 24px;
  color: var(--text-muted);
  font-size: .98rem;
  line-height: 1.75;
}

.faq-cta {
  background: var(--navy);
  padding: 72px 0;
  text-align: center;
  color: var(--white);
}
.faq-cta h2 {
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin: 0 0 12px;
}
.faq-cta p {
  color: rgba(255,255,255,.6);
  max-width: 520px;
  margin: 0 auto 28px;
}
.faq-cta .btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--orange);
  color: var(--white);
  font-weight: 600;
  border-radius: 50px;
  transition: all .25s var(--ease);
}
.faq-cta .btn:hover {
  background: var(--orange-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px var(--orange-glow);
}
.faq-cta .phone-link {
  display: block;
  margin-top: 18px;
  color: var(--orange-light);
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 1.15rem;
}

/* ═══════════════════════════════════════════════════════
   JOB APPLICATION PAGE
═══════════════════════════════════════════════════════ */
.app-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: start;
}
.app-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Yes/No radio pairs */
.yn-group { margin-bottom: 18px; }
.yn-group > label {
  font-weight: 600;
  font-size: .84rem;
  margin-bottom: 8px;
  color: var(--text);
  display: block;
}
.yn-group .req { color: var(--orange); }
.yn-options {
  display: flex;
  gap: 10px;
}
.yn-option { position: relative; }
.yn-option input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.yn-option label {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 28px;
  border: 1.5px solid rgba(16,35,64,.08);
  border-radius: 50px;
  background: var(--cream);
  cursor: pointer;
  font-weight: 500;
  font-size: .88rem;
  color: var(--text);
  transition: all .25s var(--ease);
}
.yn-option input:checked + label {
  border-color: var(--orange);
  background: rgba(212,122,43,.05);
  color: var(--orange);
  box-shadow: 0 0 0 3px rgba(212,122,43,.1);
}
.yn-option label:hover { border-color: rgba(212,122,43,.3); }

/* Resume upload */
.file-upload {
  position: relative;
  margin-bottom: 18px;
}
.file-upload label.file-label {
  font-weight: 600;
  font-size: .84rem;
  margin-bottom: 6px;
  color: var(--text);
  display: block;
}
.file-drop {
  border: 2px dashed rgba(16,35,64,.1);
  border-radius: var(--radius);
  background: var(--cream);
  padding: 28px 20px;
  text-align: center;
  cursor: pointer;
  transition: border-color .25s var(--ease), background .25s var(--ease);
  position: relative;
}
.file-drop:hover,
.file-drop.dragover {
  border-color: var(--orange);
  background: rgba(212,122,43,.03);
}
.file-drop svg { color: var(--orange); margin-bottom: 8px; }
.file-drop p {
  font-size: .88rem;
  color: var(--text-muted);
  margin: 0;
}
.file-drop p span {
  color: var(--orange);
  font-weight: 600;
}
.file-drop input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}
.file-name {
  font-size: .82rem;
  color: var(--orange);
  font-weight: 500;
  margin-top: 8px;
  display: none;
}
.file-name.show { display: block; }

/* References block */
.ref-block {
  background: rgba(212,122,43,.03);
  border: 1px solid rgba(212,122,43,.08);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 14px;
}
.ref-block-label {
  font-weight: 600;
  font-size: .82rem;
  color: var(--orange);
  margin-bottom: 12px;
  display: block;
}

@media (max-width: 900px) {
  .app-layout { grid-template-columns: 1fr; gap: 36px; }
}
@media (max-width: 600px) {
  .form-row,
  .form-row-3,
  .form-row-4 { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════
   PRIVACY POLICY + TERMS PAGES
═══════════════════════════════════════════════════════ */
.policy-section {
  padding: 80px 0 96px;
  background: var(--cream);
}
.policy-card {
  max-width: 820px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 56px 52px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
}

.policy-meta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .85rem;
  font-weight: 500;
  color: var(--text-muted);
  background: rgba(212,122,43,.06);
  padding: 8px 16px;
  border-radius: 50px;
  margin-bottom: 32px;
}
.policy-meta svg { color: var(--orange); flex-shrink: 0; }

.policy-intro {
  font-size: 1.02rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin: 0 0 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border-light);
}

.policy-block { margin-bottom: 36px; }
.policy-block:last-child { margin-bottom: 0; }

.policy-block h2 {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--text);
  margin: 0 0 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.policy-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(212,122,43,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: .82rem;
  color: var(--orange);
  flex-shrink: 0;
}

.policy-block p {
  font-size: .95rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin: 0 0 12px;
  padding-left: 44px;
}
.policy-block p:last-child { margin-bottom: 0; }

.policy-list {
  padding-left: 44px;
  margin: 0 0 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.policy-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .93rem;
  line-height: 1.7;
  color: var(--text-muted);
}
.policy-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
  margin-top: 9px;
}
.policy-list li strong {
  color: var(--text);
  font-weight: 600;
}

.policy-contact-box {
  margin-top: 40px;
  padding: 28px 32px;
  background: var(--navy);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.policy-contact-box .pcb-text h3 {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--white);
  margin: 0 0 4px;
}
.policy-contact-box .pcb-text p {
  color: rgba(255,255,255,.5);
  font-size: .88rem;
  margin: 0;
  padding: 0;
}
.policy-contact-box .pcb-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.policy-contact-box .pcb-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .88rem;
  font-weight: 600;
  color: var(--orange-light);
}
.policy-contact-box .pcb-link:hover { color: var(--orange); }
.policy-contact-box .pcb-link svg { flex-shrink: 0; }

@media (max-width: 700px) {
  .policy-card { padding: 32px 24px; }
  .policy-block p,
  .policy-list { padding-left: 0; }
  .policy-contact-box {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ═══════════════════════════════════════════════════════
   QUOTE PAGE
═══════════════════════════════════════════════════════ */
.quote-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: start;
}
.quote-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Quote form card uses tighter padding/margin overrides */
.quote-layout .form-card { padding: 48px 44px; }
.quote-layout .form-card > p { margin: 0 0 10px; }
.quote-layout .form-group { margin-bottom: 18px; }
.quote-layout .form-group textarea { min-height: 110px; }

/* Radio-style "option card" selectors (move type) */
.option-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 10px;
  margin-bottom: 18px;
}
.option-card { position: relative; }
.option-card input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.option-card label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 18px 12px;
  border: 1.5px solid rgba(16,35,64,.08);
  border-radius: var(--radius);
  background: var(--cream);
  cursor: pointer;
  text-align: center;
  font-weight: 500;
  font-size: .88rem;
  color: var(--text);
  transition: all .25s var(--ease);
}
.option-card label svg { color: var(--text-muted); transition: color .25s var(--ease); }
.option-card input:checked + label {
  border-color: var(--orange);
  background: rgba(212,122,43,.05);
  color: var(--orange);
  box-shadow: 0 0 0 3px rgba(212,122,43,.1);
}
.option-card input:checked + label svg { color: var(--orange); }
.option-card label:hover {
  border-color: rgba(212,122,43,.3);
  background: rgba(212,122,43,.03);
}

/* Conditional field */
.conditional-field { display: none; }
.conditional-field.show { display: block; }

/* Trust badges */
.trust-badges {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .9rem;
  font-weight: 500;
  color: var(--text);
}
.trust-badge-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 3px 12px var(--orange-glow);
}
.trust-badge-icon svg { color: var(--white); }

/* Sidebar phone callout (quote variant) */
.sidebar-callout-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--orange-light);
  transition: color .25s var(--ease);
}
.sidebar-callout-phone:hover { color: var(--orange); }
.sidebar-callout-phone svg { flex-shrink: 0; }

@media (max-width: 900px) {
  .quote-layout { grid-template-columns: 1fr; gap: 36px; }
}
@media (max-width: 600px) {
  .form-row-3 { grid-template-columns: 1fr; }
  .option-cards { grid-template-columns: 1fr 1fr; }
}

/* ═══════════════════════════════════════════════════════
   SERVICES PAGE
═══════════════════════════════════════════════════════ */
.svc-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  padding: 48px 0;
}
.svc-detail + .svc-detail {
  border-top: 1px solid var(--border-light);
}
.svc-detail.reverse .svc-detail-visual { order: 2; }
.svc-detail.reverse .svc-detail-content { order: 1; }

.svc-detail-visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}
.svc-visual-card {
  min-height: 340px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
}
.svc-visual-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}
.svc-detail:hover .svc-visual-card img { transform: scale(1.05); }
.svc-visual-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(16,35,64,.7) 0%, transparent 60%);
  z-index: 1;
  pointer-events: none;
}
.svc-visual-label {
  position: relative;
  z-index: 2;
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--white);
  letter-spacing: .01em;
  padding: 24px;
}

.svc-detail-content h3 {
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: clamp(1.5rem, 2.5vw, 1.9rem);
  margin: 0 0 14px;
  line-height: 1.2;
}
.svc-detail-content > p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.8;
  margin: 0 0 20px;
}

.svc-checklist {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}
.svc-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: .93rem;
  color: var(--text);
  line-height: 1.55;
}
.svc-check-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(212,122,43,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.svc-check-icon svg { color: var(--orange); }

/* Process timeline */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.process-grid::before {
  content: '';
  position: absolute;
  top: 46px;
  left: calc(12.5% + 12px);
  right: calc(12.5% + 12px);
  height: 2px;
  background: linear-gradient(90deg, var(--orange), var(--orange-light), var(--orange));
  opacity: .25;
}

.process-step {
  text-align: center;
  position: relative;
}
.process-num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(212,122,43,.12);
  border: 2px solid rgba(212,122,43,.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--orange);
  position: relative;
  z-index: 2;
  transition: all .3s var(--ease);
}
.process-step:hover .process-num {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
  box-shadow: 0 4px 20px var(--orange-glow);
  transform: scale(1.1);
}
.process-step h4 {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 1.05rem;
  margin: 0 0 8px;
}
.process-step p {
  color: rgba(255,255,255,.48);
  font-size: .86rem;
  line-height: 1.65;
  margin: 0;
}

/* Service area callout */
.area-callout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.area-text h2 {
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  line-height: 1.15;
  margin: 0 0 16px;
}
.area-text > p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.8;
  margin: 0 0 24px;
}
.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}
.area-tag {
  background: rgba(212,122,43,.08);
  color: var(--orange);
  font-weight: 600;
  font-size: .82rem;
  padding: 8px 18px;
  border-radius: 50px;
  border: 1px solid rgba(212,122,43,.15);
  transition: all .25s var(--ease);
}
.area-tag:hover {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}

.area-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

@media (max-width: 900px) {
  .svc-detail {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .svc-detail.reverse .svc-detail-visual,
  .svc-detail.reverse .svc-detail-content { order: unset; }
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px;
  }
  .process-grid::before { display: none; }
  .area-callout { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 600px) {
  .process-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════
   SITEMAP PAGE
═══════════════════════════════════════════════════════ */
.sitemap-section {
  padding: 64px 0 96px;
  background: var(--cream);
}
.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}
.sitemap-group {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}
.sitemap-group h2 {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--orange);
  margin: 0 0 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-light);
}
.sitemap-group ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sitemap-group a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .92rem;
  font-weight: 500;
  color: var(--text);
  padding: 6px 0;
  transition: color .2s var(--ease);
}
.sitemap-group a::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  opacity: .4;
  flex-shrink: 0;
  transition: opacity .2s var(--ease);
}
.sitemap-group a:hover { color: var(--orange); }
.sitemap-group a:hover::before { opacity: 1; }
