:root {
  --brand: #3B82F6;
  --brand-dark: #0E4C92;
  --brand-accent: #FACC15;
  --ink: #1E293B;
  --muted: #64748b;
  --light: #F1F5F9;
  --surface: #ffffff;
  --display: "Source Serif 4", Georgia, serif;
  --body: "DM Sans", "Segoe UI", sans-serif;
}
* { box-sizing: border-box; }
body { font-family: var(--body); color: var(--ink); overflow-x: hidden; background: var(--surface); }
h1, h2, h3, .navbar-brand { font-family: var(--display); color: var(--ink); }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
a { text-decoration: none; transition: all .2s; }
img, svg, video { max-width: 100%; height: auto; }

.site-nav {
  background: rgba(255,255,255,.98);
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
  padding: .75rem 0;
  /* Own fixed positioning — do not wait for Bootstrap .fixed-top */
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1030;
  width: 100%;
  max-width: 100vw;
  overflow: visible;
  box-sizing: border-box;
}
.navbar.site-nav > .container.site-nav-bar,
.site-nav > .container.site-nav-bar,
.site-nav-bar {
  position: relative;
  display: flex !important;
  flex-wrap: nowrap !important;
  align-items: center !important;
  justify-content: flex-start !important;
  width: 100%;
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  min-height: 3.25rem;
  gap: .5rem;
  padding-left: max(1rem, env(safe-area-inset-left, 0px));
  padding-right: max(1rem, env(safe-area-inset-right, 0px));
  box-sizing: border-box;
}
.site-nav .navbar-brand {
  color: var(--brand-dark);
  font-size: clamp(1.05rem, 2.5vw, 1.35rem);
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  z-index: 2;
  margin-right: 0;
  margin-left: 0;
  max-width: calc(100% - 8rem);
  min-width: 0;
  flex: 1 1 auto;
}
.site-logo {
  display: block;
  width: 60px;
  height: 60px;
  max-height: 60px;
  max-width: 60px;
  object-fit: contain;
}
.brand-icon { font-size: 1.4rem; line-height: 1; flex-shrink: 0; }
.brand-text {
  line-height: 1.1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.site-nav .nav-link { color: #374151; font-weight: 600; padding: .45rem .85rem; }
.site-nav .nav-link:hover, .site-nav .nav-link.active { color: var(--brand); }
.btn-quote {
  background: var(--brand);
  color: #fff;
  border: none;
  font-weight: 600;
  padding: .55rem 1.4rem;
  border-radius: 0.35rem;
  white-space: nowrap;
  align-items: center;
  justify-content: center;
}
.btn-quote:hover { background: var(--brand-dark); color: #fff; transform: translateY(-1px); }
.site-nav-quote-desktop {
  margin-left: auto;
  flex-shrink: 0;
  z-index: 2;
}

/* Mobile hamburger: circle + label */
.nav-menu-btn {
  display: inline-flex !important;
  align-items: center;
  gap: .45rem;
  margin-left: auto !important;
  margin-right: 0 !important;
  padding: .15rem 0 .15rem .15rem;
  border: 0;
  background: transparent;
  color: var(--brand-dark);
  cursor: pointer;
  flex: 0 0 auto !important;
  z-index: 3;
  position: relative;
  max-width: none;
  transition: transform .25s ease, opacity .25s ease;
}
.nav-menu-btn:hover { transform: scale(1.04); }
.nav-menu-btn:active { transform: scale(0.97); }
.nav-menu-btn:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 3px;
  border-radius: .5rem;
}
.nav-menu-btn-icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  border: 2px solid var(--brand-dark);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .28rem;
  background: #fff;
  box-shadow: 0 2px 8px rgba(14, 76, 146, .12);
  transition: border-color .25s ease, background .25s ease, transform .25s ease;
}
.nav-menu-btn-icon span {
  display: block;
  width: 1.05rem;
  height: 2px;
  border-radius: 2px;
  background: var(--brand-dark);
  transition: transform .28s ease, opacity .2s ease, width .2s ease;
}
.nav-menu-btn-label {
  font-family: var(--body);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  line-height: 1;
}
.nav-menu-btn[aria-expanded="true"] .nav-menu-btn-icon {
  border-color: var(--brand);
  background: color-mix(in srgb, var(--brand) 10%, white);
}
.nav-menu-btn[aria-expanded="true"] .nav-menu-btn-icon span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.nav-menu-btn[aria-expanded="true"] .nav-menu-btn-icon span:nth-child(2) {
  opacity: 0;
  width: 0;
}
.nav-menu-btn[aria-expanded="true"] .nav-menu-btn-icon span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* Off-canvas drawer — always fixed so first paint never overflows the page */
.site-drawer,
.site-drawer.offcanvas {
  --bs-offcanvas-width: min(22rem, 90vw);
  position: fixed !important;
  top: 0;
  right: 0;
  bottom: 0;
  left: auto;
  z-index: 1045;
  width: min(22rem, 90vw);
  max-width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  background: #fff;
  border-left: 1px solid #e2e8f0;
  box-shadow: -18px 0 40px rgba(15, 23, 42, .12);
  visibility: hidden;
  pointer-events: none;
  transform: translateX(110%) scale(0.94);
  opacity: 0;
  transition:
    transform .38s cubic-bezier(.22, 1, .36, 1),
    opacity .32s ease,
    visibility .38s;
}
.site-drawer.offcanvas.showing,
.site-drawer.offcanvas.show:not(.hiding) {
  visibility: visible;
  pointer-events: auto;
  transform: translateX(0) scale(1);
  opacity: 1;
}
.site-drawer.offcanvas.hiding {
  visibility: hidden;
  pointer-events: none;
  transform: translateX(110%) scale(0.96);
  opacity: 0;
}
.offcanvas-backdrop.show {
  opacity: .55;
  transition: opacity .3s ease;
}
.site-drawer-header {
  padding: 1.15rem 1.35rem;
  border-bottom: 1px solid #e2e8f0;
}
.site-drawer-title {
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--brand-dark);
  margin: 0;
}
.site-drawer-body {
  flex: 1 1 auto;
  overflow-y: auto;
  padding: 1rem 1.35rem 1.5rem;
}
.site-drawer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: .15rem;
}
.site-drawer-links .nav-link {
  color: var(--ink);
  font-weight: 700;
  font-size: 1.15rem;
  padding: .95rem .35rem;
  border-bottom: 1px solid #eef2f7;
  opacity: 0;
  transform: translateY(10px) scale(0.98);
}
.site-drawer.show .site-drawer-links .nav-link {
  animation: drawerLinkIn .4s cubic-bezier(.22, 1, .36, 1) forwards;
}
.site-drawer.show .site-drawer-links .nav-item:nth-child(1) .nav-link { animation-delay: .08s; }
.site-drawer.show .site-drawer-links .nav-item:nth-child(2) .nav-link { animation-delay: .14s; }
.site-drawer.show .site-drawer-links .nav-item:nth-child(3) .nav-link { animation-delay: .2s; }
.site-drawer.show .site-drawer-links .nav-item:nth-child(4) .nav-link { animation-delay: .26s; }
.site-drawer-links .nav-link:hover,
.site-drawer-links .nav-link.active {
  color: var(--brand);
}
@keyframes drawerLinkIn {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.site-drawer-footer {
  flex-shrink: 0;
  margin-top: auto;
  padding: 1.25rem 1.35rem calc(1.35rem + env(safe-area-inset-bottom, 0px));
  background: var(--light);
  border-top: 1px solid #e2e8f0;
  opacity: 0;
  transform: translateY(12px) scale(0.98);
}
.site-drawer.show .site-drawer-footer {
  animation: drawerLinkIn .42s cubic-bezier(.22, 1, .36, 1) .28s forwards;
}
.site-drawer-footer-label {
  margin: 0 0 .65rem;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
}
.site-drawer-contact,
.site-drawer-address {
  display: flex;
  align-items: flex-start;
  gap: .55rem;
  color: var(--ink);
  font-weight: 600;
  font-size: .95rem;
  margin: 0 0 .55rem;
  line-height: 1.35;
}
.site-drawer-contact:hover { color: var(--brand); }
.site-drawer-contact i,
.site-drawer-address i {
  color: var(--brand-dark);
  margin-top: .15rem;
  flex-shrink: 0;
}
.site-drawer-cta {
  display: flex;
  width: 100%;
  margin-top: 1rem;
  text-align: center;
}

/* Critical layout: do not depend on Bootstrap d-* utilities */
.site-nav .site-nav-links,
.site-nav .site-nav-quote-desktop {
  display: none !important;
}
.site-nav .nav-menu-btn {
  display: inline-flex !important;
}

@media (min-width: 992px) {
  .site-nav-bar { flex-wrap: nowrap; }
  .site-nav .site-nav-links {
    display: flex !important;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    flex-direction: row;
    margin: 0;
    gap: .15rem;
    z-index: 1;
  }
  .site-nav .site-nav-quote-desktop {
    display: inline-flex !important;
  }
  .site-nav .navbar-brand { max-width: none; flex: 0 1 auto; }
  .site-nav .nav-menu-btn { display: none !important; }
  .site-drawer { display: none !important; }
}

@media (max-width: 991.98px) {
  .site-nav .site-nav-links,
  .site-nav .site-nav-quote-desktop {
    display: none !important;
  }
  .site-nav .nav-menu-btn {
    display: inline-flex !important;
  }
}


@media (prefers-reduced-motion: reduce) {
  .site-drawer.offcanvas,
  .nav-menu-btn,
  .nav-menu-btn-icon span {
    transition: none !important;
  }
  .site-drawer.show .site-drawer-links .nav-link,
  .site-drawer.show .site-drawer-footer {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

.hero {
  min-height: min(88vh, 820px);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  color: #fff;
  position: relative;
}
.hero-overlay::after,
.hero-centered::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-overlay::after {
  background: linear-gradient(105deg, rgba(14,76,146,.88) 0%, rgba(14,76,146,.4) 55%, transparent 80%);
}
.hero-centered::after {
  background: linear-gradient(180deg, rgba(14,76,146,.78) 0%, rgba(30,41,59,.55) 100%);
}
.hero .container,
.hero-split-inner { position: relative; z-index: 1; }
.hero-content {
  max-width: 720px;
  padding-top: clamp(4.5rem, 12vw, 6rem);
  padding-bottom: 2rem;
}
.hero-centered .hero-content { max-width: 820px; margin: 0 auto; }
.hero-centered .lead { max-width: 36rem; }
.hero h1 {
  margin-bottom: 1rem;
  font-size: clamp(1.85rem, 5vw, 3.25rem);
  line-height: 1.15;
}
.hero .lead { font-size: clamp(1rem, 2.4vw, 1.25rem); }
.hero-kicker {
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .78rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--brand-accent);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.25rem; }
.btn-outline-light:hover { background: #fff; color: var(--brand-dark); }

.hero-typewriter { min-height: 1.2em; }
.hero-overlay h1,
.hero-centered h1,
.hero-overlay .hero-typewriter,
.hero-centered .hero-typewriter,
.hero-overlay .js-typewriter,
.hero-centered .js-typewriter {
  color: #fff !important;
}
.hero-overlay .lead,
.hero-centered .lead {
  color: rgba(255, 255, 255, 0.92);
}
.js-typewriter {
  display: inline;
  border-right: 0.08em solid currentColor;
  padding-right: 0.05em;
  white-space: pre-wrap;
  animation: typeCaret 0.85s step-end infinite;
}
.js-typewriter.is-done {
  border-right-color: transparent;
  animation: none;
}
@keyframes typeCaret {
  50% { border-right-color: transparent; }
}
@media (prefers-reduced-motion: reduce) {
  .js-typewriter {
    border-right: none;
    animation: none;
  }
}

.hero-split {
  min-height: min(88vh, 820px);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  color: var(--ink);
  background: var(--light);
}
.hero-split-media {
  min-height: 420px;
  background-size: cover;
  background-position: center;
}
.hero-split-panel {
  display: flex;
  align-items: center;
  background: linear-gradient(160deg, #F1F5F9 0%, #e2e8f0 55%, #dbeafe 100%);
  padding: clamp(3rem, 8vw, 6.5rem) 0 clamp(2.5rem, 5vw, 4rem);
}
.hero-split-inner {
  padding: 0 clamp(1.25rem, 4vw, 4rem);
  max-width: 34rem;
}
.hero-split .lead { color: var(--muted); }
.hero-split .hero-kicker { color: var(--brand); }
.hero-phone {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin-top: 1.5rem;
  color: var(--brand-dark);
  font-weight: 700;
}
.hero-phone:hover { color: var(--brand); }
.btn-outline-dark {
  border: 1px solid var(--brand-dark);
  color: var(--brand-dark);
  font-weight: 600;
}
.btn-outline-dark:hover {
  background: var(--brand-dark);
  color: #fff;
}

@media (max-width: 991.98px) {
  .hero-split { grid-template-columns: 1fr; min-height: auto; }
  .hero-split-media { min-height: min(42vh, 320px); order: -1; }
  .hero-split-panel { padding: 2.5rem 0 3rem; }
  .hero { min-height: min(78vh, 640px); }
}

.page-banner {
  padding: clamp(6.5rem, 18vw, 9rem) 0 clamp(2.5rem, 6vw, 4rem);
  background-size: cover;
  background-position: center;
}
.page-banner h1 { font-size: clamp(1.75rem, 5vw, 2.75rem); }
.page-banner a { text-decoration: none; }

.section-pad { padding: clamp(3rem, 8vw, 6rem) 0; }
.bg-light { background: var(--light); }
.eyebrow {
  display: inline-block;
  color: var(--brand-dark);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: .8rem;
  margin-bottom: .5rem;
}

.check-list { list-style: none; padding: 0; }
.check-list li { padding: .5rem 0 .5rem 1.8rem; position: relative; }
.check-list li::before { content: '✓'; position: absolute; left: 0; color: var(--brand); font-weight: 800; }

.feature-stats {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 1.5rem;
  background: var(--light);
  padding: clamp(1.25rem, 4vw, 2.5rem);
  border-radius: 1.25rem;
  border: 1px solid #e5e7eb;
}
.stat { text-align: center; }
.stat-num { display: block; font-size: clamp(1.75rem, 4vw, 2.5rem); font-weight: 800; color: var(--brand-dark); }
.stat-label { color: #6b7280; font-weight: 600; font-size: .95rem; }

.service-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 1rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  height: 100%;
  transition: all .3s;
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 18px 40px rgba(0,0,0,.1); border-color: var(--brand); }
.service-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--brand) 15%, white);
  border-radius: 14px;
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: var(--brand-dark);
}
.service-icon i {
  font-size: 1.75rem;
  line-height: 1;
  color: var(--brand-dark);
}
.service-card:hover .service-icon {
  background: color-mix(in srgb, var(--brand) 28%, white);
  transform: scale(1.06);
}
.service-icon {
  transition: background .25s ease, transform .25s ease;
}
.service-card h4 { margin-bottom: .6rem; }
.service-card p { color: #6b7280; margin: 0; }

.cta-band { background: var(--brand-dark); padding: clamp(3rem, 7vw, 5rem) 0; }

.team-card { background: #fff; border: 1px solid #e5e7eb; border-radius: 1rem; padding: 2rem; text-align: center; transition: all .3s; }
.team-card:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(0,0,0,.08); }
.team-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--brand) 20%, white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 1rem;
}

.contact-list { list-style: none; padding: 0; }
.contact-list li { padding: .75rem 0; border-bottom: 1px solid #e5e7eb; word-break: break-word; }
.contact-form, .booking-form {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 1rem;
  padding: clamp(1.25rem, 4vw, 2.5rem);
}
.contact-form .form-control {
  padding: .8rem 1rem;
  border-radius: .5rem;
  border: 1px solid #d1d5db;
  width: 100%;
}

.site-footer { background: var(--ink); color: #cbd5e1; padding: clamp(2.5rem, 6vw, 4rem) 0 2rem; }
.site-footer h5, .site-footer h6 { color: #fff; margin-bottom: 1rem; }
.site-footer a { color: #cbd5e1; }
.site-footer a:hover { color: var(--brand-accent); }
.footer-links { list-style: none; padding: 0; }
.footer-links li { padding: .3rem 0; }
.site-footer hr { border-color: #334155; }


.testimonials-section { background: var(--light); }
.testimonial {
  margin: 0;
  padding: 0 0 0 1.25rem;
  border-left: 3px solid var(--brand);
  height: 100%;
}
.testimonial p {
  font-family: var(--display);
  font-size: clamp(1.05rem, 2.2vw, 1.25rem);
  line-height: 1.55;
  color: var(--ink);
  margin: 0 0 1.1rem;
  font-weight: 600;
}
.testimonial footer {
  font-family: var(--body);
  font-size: .95rem;
  font-weight: 700;
  color: var(--brand-dark);
  font-style: normal;
}
.testimonial footer::before {
  content: "— ";
  color: var(--muted);
  font-weight: 600;
}

.emergency-banner { background: var(--brand-accent); color: var(--ink); padding: 1.5rem 0; }
.emergency-banner h3 { color: var(--ink); margin: 0; font-size: clamp(1.1rem, 3vw, 1.5rem); }

.big-checklist { list-style: none; padding: 0; columns: 2; }
.big-checklist li { padding: .6rem 0 .6rem 2rem; position: relative; break-inside: avoid; }
.big-checklist li i { position: absolute; left: 0; color: var(--brand); }

.portfolio-card { position: relative; border-radius: 1rem; overflow: hidden; aspect-ratio: 4/3; display: block; }
.portfolio-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.portfolio-card:hover img { transform: scale(1.06); }
.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 40%, rgba(0,0,0,.75));
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.2rem;
}

.pricing-card { background: #fff; border: 1px solid #e5e7eb; border-radius: 1rem; padding: 2.2rem; height: 100%; text-align: center; transition: all .3s; }
.pricing-card.featured { border-color: var(--brand); box-shadow: 0 16px 40px rgba(0,0,0,.12); transform: translateY(-6px); }
.pricing-card .price { font-size: 2.2rem; font-weight: 800; color: var(--brand); margin: .5rem 0 1rem; }
.pricing-card ul { list-style: none; padding: 0; margin: 0 0 1.5rem; text-align: left; }
.pricing-card li { padding: .4rem 0 .4rem 1.6rem; position: relative; }
.pricing-card li i { position: absolute; left: 0; color: var(--brand); }

.listing-card { background: #fff; border: 1px solid #e5e7eb; border-radius: 1rem; overflow: hidden; transition: all .3s; }
.listing-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,.1); }
.listing-card img { width: 100%; height: 200px; object-fit: cover; }
.listing-body { padding: 1.2rem; }
.listing-price { font-weight: 800; color: var(--brand); font-size: 1.15rem; }

.menu-row { display: grid; grid-template-columns: 1fr auto; gap: 1rem; padding: .9rem 0; border-bottom: 1px dotted #d1d5db; align-items: baseline; }
.menu-name { font-weight: 700; }
.menu-desc { color: #6b7280; font-size: .9rem; grid-column: 1; }
.menu-price { color: var(--brand); font-weight: 700; grid-row: span 2; }
.menu-cat { color: var(--brand); border-bottom: 2px solid var(--brand); padding-bottom: .4rem; }

.perk-list { list-style: none; padding: 0; }
.perk-list li { padding: .8rem 0 .8rem 2rem; position: relative; font-size: 1.05rem; }
.perk-list li i { position: absolute; left: 0; color: var(--brand); }

.package-card { background: #fff; border: 1px solid #e5e7eb; border-radius: 1rem; padding: 1.8rem; transition: all .3s; }
.package-card:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(0,0,0,.08); border-color: var(--brand); }
.package-price { font-size: 1.3rem; font-weight: 800; color: var(--brand); }

.practice-card { background: #fff; border: 1px solid #e5e7eb; border-radius: 1rem; padding: 1.8rem; transition: all .3s; }
.practice-card:hover { border-color: var(--brand); transform: translateY(-4px); }
.practice-icon { font-size: 2rem; color: var(--brand); }

.cal-card { background: #fff; border: 1px solid #e5e7eb; border-radius: 1rem; padding: 1.5rem; }
.cal-row { display: flex; gap: 1.5rem; padding: .8rem 0; border-bottom: 1px solid #f3f4f6; }
.cal-row:last-child { border-bottom: none; }
.cal-date { font-weight: 800; color: var(--brand); min-width: 90px; }
.cal-event { color: #374151; }

.case-card { background: #fff; border: 1px solid #e5e7eb; border-radius: 1rem; padding: 1.8rem; transition: all .3s; }
.case-card:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(0,0,0,.08); }
.case-result { font-size: 1.8rem; font-weight: 800; color: var(--brand); }

.gallery-grid img { width: 100%; height: 200px; object-fit: cover; border-radius: .75rem; transition: transform .3s; }
.gallery-item { display: block; overflow: hidden; border-radius: .75rem; }
.gallery-item:hover img { transform: scale(1.06); }

.cert-grid { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }
.cert-badge { background: #fff; border: 2px solid var(--brand); color: var(--brand); padding: .7rem 1.4rem; border-radius: 50rem; font-weight: 700; }

.process-step { background: #fff; border: 1px solid #e5e7eb; border-radius: 1rem; padding: 1.8rem; height: 100%; }
.process-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.season-card { background: #fff; border: 1px solid #e5e7eb; border-radius: 1rem; padding: 1.8rem; text-align: center; }
.season-name { font-size: 1.4rem; font-weight: 800; color: var(--brand); margin-bottom: .5rem; }

.specials-card { background: #fff; border: 1px solid #e5e7eb; border-radius: 1rem; padding: 1.5rem; }
.special-row { display: flex; gap: 1.5rem; padding: .8rem 0; border-bottom: 1px solid #f3f4f6; }
.special-row:last-child { border-bottom: none; }
.special-day { font-weight: 800; color: var(--brand); min-width: 60px; }
.special-item { color: #374151; }

.stat-block { text-align: center; }
.stat-block .stat-num { font-size: clamp(2rem, 6vw, 3rem); font-weight: 800; color: #fff; }
.stat-block .stat-label { color: rgba(255,255,255,.85); font-weight: 600; }

@media (max-width: 767.98px) {
  .hero-overlay,
  .hero-centered {
    min-height: min(72vh, 560px);
    padding: 5.5rem 0 3.5rem;
    align-items: flex-end;
  }
  .hero-content { padding-top: 1rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; text-align: center; }
  .feature-stats { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .big-checklist { columns: 1; }
  .pricing-card.featured { transform: none; }
  .cal-row,
  .special-row { flex-direction: column; gap: .35rem; }
  .cal-date,
  .special-day { min-width: 0; }
  .emergency-banner .container {
    flex-direction: column;
    align-items: flex-start !important;
  }
  .emergency-banner .btn { width: 100%; text-align: center; }
  .cta-band .lead { font-size: 1rem; }
}

@media (max-width: 480px) {
  .feature-stats { grid-template-columns: 1fr; }
}
