/* ==========================================================================
   Hopper's Exterior Cleaning — shared stylesheet
   Tokens sourced from style/style-tokens.json. Two accessibility-driven
   token adjustments from the source palette are documented in PROGRESS.md:
   1) placeholder text darkened from #8A94A3 to #5A6272 (AA contrast on the
      placeholder pattern background).
   2) decorative gold star glyphs (#F5B301) are treated as aria-hidden
      decoration (accompanied by real text equivalents) rather than relied
      on for contrast, since gold-on-white fails 3:1.
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  /* Brand */
  --navy: #00162F;
  --accent-blue: #0056CB;
  --off-white: #F4F6F9;
  --white: #FFFFFF;

  /* Text */
  --body-text: #3D4657;
  --muted-secondary: #5A6272;
  --muted-tertiary: #6B7684;
  --footer-copyright: #7C889B;
  --muted-on-navy: #B9C4D4;
  --footer-nav-on-navy: #C6D0DE;
  --border-light: #E6E9EF;
  --star-gold: #F5B301;
  --eyebrow-on-navy: #5B9BFF;
  --link-on-navy: #8CB6FF;
  --tile-body-on-scrim: #E4E9F1;
  --contact-strip-body: #D9E6FA;

  /* Placeholder text adjusted for AA contrast (see note above) */
  --placeholder-text: #5A6272;
  --placeholder-bg-1: #EEF1F6;
  --placeholder-bg-2: #E3E8F0;

  /* Focus ring: double-ring so at least one ring meets 3:1 against any
     background used on this site (white, off-white, navy, accent-blue). */
  --focus-inner: #FFFFFF;
  --focus-outer: #00162F;

  --font-display: 'Archivo Black', sans-serif;
  --font-body: 'Inter', sans-serif;

  --max-width: 1280px;
  --radius: 8px;
  --radius-sm: 4px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--off-white);
  color: var(--body-text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--accent-blue);
  text-decoration: none;
}
a:hover { color: var(--navy); text-decoration: underline; }

h1, h2, h3 {
  font-family: var(--font-display);
  color: var(--navy);
  margin: 0;
  line-height: 1.15;
}

ul { list-style: none; margin: 0; padding: 0; }

button {
  font-family: inherit;
  cursor: pointer;
}

.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;
}

/* Focus visibility — non-negotiable on every interactive element */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--focus-inner);
  outline-offset: 2px;
  box-shadow: 0 0 0 5px var(--focus-outer);
  border-radius: var(--radius-sm);
}

/* Skip link */
.skip-link {
  position: absolute;
  left: 8px;
  top: -60px;
  background: var(--navy);
  color: #fff;
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  z-index: 200;
  font-weight: 700;
  transition: top 0.15s ease;
}
.skip-link:focus {
  top: 8px;
}

/* ---------------------------------------------------------------- */
/* Buttons                                                          */
/* ---------------------------------------------------------------- */
.btn {
  display: inline-block;
  background: var(--accent-blue);
  color: #fff;
  padding: 15px 30px;
  border: none;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.2px;
  text-decoration: none;
}
.btn:hover { background: var(--navy); color: #fff; text-decoration: none; }
.btn--large { padding: 17px 34px; font-size: 16px; }
.btn--small { padding: 11px 18px; font-size: 13px; letter-spacing: 0.4px; text-transform: uppercase; }
.btn--inverse { background: #fff; color: var(--accent-blue); }
.btn--inverse:hover { background: var(--off-white); color: var(--navy); }

/* ---------------------------------------------------------------- */
/* Header / nav                                                     */
/* ---------------------------------------------------------------- */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--border-light);
  position: sticky;
  top: 0;
  z-index: 100;
}
.site-header__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 10px 28px;
}
.site-header__logo img { width: 99px; height: 84px; object-fit: contain; }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 8px 10px;
  align-items: center;
  justify-content: center;
}
.nav-toggle svg { display: block; }

.site-nav__list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}
.site-nav__list > li { position: relative; display: flex; align-items: center; }
.nav-link {
  color: var(--navy);
  font-weight: 600;
  font-size: 14px;
  white-space: nowrap;
  padding: 8px 2px;
}
.nav-link:hover { color: var(--accent-blue); text-decoration: none; }

.nav-dropdown { position: relative; }
.nav-dropdown__trigger {
  display: flex;
  align-items: center;
  gap: 4px;
}
.dropdown-caret {
  background: none;
  border: none;
  padding: 4px;
  display: flex;
  align-items: center;
  color: var(--navy);
}
.dropdown-caret svg { transition: transform 0.15s ease; }
.nav-dropdown.is-open .dropdown-caret svg { transform: rotate(180deg); }

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 260px;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  box-shadow: 0 8px 24px rgba(0,22,47,0.12);
  padding: 8px;
  display: none;
  z-index: 60;
}
.nav-dropdown.is-open .dropdown-menu,
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  display: block;
}
.dropdown-menu li a {
  display: block;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  color: var(--navy);
  font-weight: 600;
  font-size: 14px;
}
.dropdown-menu li a:hover {
  background: var(--off-white);
  color: var(--accent-blue);
  text-decoration: none;
}

.site-header__social {
  display: flex;
  align-items: center;
  gap: 10px;
}
.social-icon {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.social-icon:hover { background: var(--border-light); }

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-self: end;
}
.phone-link {
  color: var(--navy);
  font-weight: 700;
  font-size: 14px;
  white-space: nowrap;
}
.phone-link:hover { color: var(--accent-blue); }

/* Desktop header: lay the nav list, social icons and actions in one row.
   (Base .site-nav is block so the mobile drawer below can stack them.) */
@media (min-width: 961px) {
  .site-nav { display: flex; align-items: center; gap: 20px; }
  .site-nav__list { flex: 1; }
}

/* ---------------------------------------------------------------- */
/* Hero                                                              */
/* ---------------------------------------------------------------- */
.hero {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.hero__frame {
  width: 100%;
  min-height: 560px;
  position: relative;
}
.hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,22,47,0.72) 0%, rgba(0,22,47,0.5) 45%, rgba(0,22,47,0.82) 100%);
}
.hero__content {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 64px 24px;
}
.hero__inner {
  max-width: 900px;
  text-align: center;
}
.hero__eyebrow {
  display: inline-block;
  background: rgba(0,86,203,0.25);
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 2px;
  padding: 8px 16px;
  border-radius: 3px;
  margin-bottom: 24px;
}
.hero__title {
  font-size: 52px;
  color: #fff;
  margin: 0 0 18px;
  text-shadow: 0 2px 16px rgba(0,0,0,0.35);
}
.hero__strapline {
  font-size: 19px;
  font-weight: 600;
  color: var(--tile-body-on-scrim);
  margin: 0 0 30px;
}
.hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}
.rating-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  padding: 10px 18px;
  border-radius: 6px;
}
.rating-pill__text { line-height: 1.2; text-align: left; }
.rating-pill__score-row { display: flex; align-items: center; gap: 6px; }
.rating-pill__score { font-weight: 700; font-size: 14px; color: var(--navy); }
.stars { color: var(--star-gold); font-size: 15px; letter-spacing: 1px; }
.rating-pill__caption { font-size: 11px; color: var(--muted-tertiary); display: block; }

/* ---------------------------------------------------------------- */
/* Sections / generic layout                                        */
/* ---------------------------------------------------------------- */
.section {
  padding: 96px 56px;
}
.section--white { background: var(--white); }
.section--off { background: var(--off-white); }
.section--navy { background: var(--navy); }
.section--accent { background: var(--accent-blue); padding: 64px 56px; }
.section__inner { max-width: var(--max-width); margin: 0 auto; }

.section__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}
.eyebrow {
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--accent-blue);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.eyebrow--on-navy { color: var(--eyebrow-on-navy); }
.section__title { font-size: 36px; }

/* ---------------------------------------------------------------- */
/* Page header banner (inner pages)                                 */
/* ---------------------------------------------------------------- */
.page-header {
  background: var(--navy);
  padding: 72px 56px 64px;
  text-align: center;
}
.page-header__inner { max-width: 800px; margin: 0 auto; }
.page-header h1 { color: #fff; font-size: 42px; margin-bottom: 16px; }
.page-header p { color: var(--muted-on-navy); font-size: 17px; line-height: 1.7; margin: 0; }

/* ---------------------------------------------------------------- */
/* Placeholder ("coming soon") component                            */
/* ---------------------------------------------------------------- */
.placeholder {
  width: 100%;
  border-radius: var(--radius);
  background: repeating-linear-gradient(135deg, var(--placeholder-bg-1), var(--placeholder-bg-1) 12px, var(--placeholder-bg-2) 12px, var(--placeholder-bg-2) 24px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
}
.placeholder--square { aspect-ratio: 1/1; }
.about__image { width: 100%; height: auto; aspect-ratio: 1/1; object-fit: cover; border-radius: 8px; display: block; }
.placeholder--tile { min-height: 340px; }
.placeholder--pair { aspect-ratio: 3/4; }
.placeholder__label {
  font-family: monospace;
  color: var(--placeholder-text);
  font-size: 13px;
  font-weight: 600;
}

/* ---------------------------------------------------------------- */
/* About                                                             */
/* ---------------------------------------------------------------- */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 72px;
  align-items: center;
}
.about__body p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--body-text);
  margin: 0 0 18px;
}
.about__title { font-size: 36px; margin: 12px 0 22px; }
.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--off-white);
  padding: 12px 20px;
  border-radius: 6px;
  border: 1px solid var(--border-light);
  font-weight: 700;
  font-size: 14px;
  color: var(--navy);
}

/* ---------------------------------------------------------------- */
/* Services teaser grid (home)                                      */
/* ---------------------------------------------------------------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.service-tile {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 340px;
  display: flex;
  flex-direction: column;
}
.service-tile__media { position: absolute; inset: 0; }
.service-tile__media img { width: 100%; height: 100%; object-fit: cover; }
/* Zoom into the ground surface (driveway/patio) so it's the main subject;
   pivot low so the house/fence recedes off the top rather than the paving. */
.service-tile--zoom .service-tile__media img { transform: scale(1.4); transform-origin: center 72%; }
.service-tile__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,22,47,0.15) 0%, rgba(0,22,47,0.88) 65%);
  pointer-events: none;
}
.service-tile__body {
  position: relative;
  margin-top: auto;
  padding: 26px;
}
.service-tile__title { font-size: 19px; font-weight: 800; color: #fff; margin: 0 0 10px; font-family: var(--font-body); }
.service-tile__desc { font-size: 15px; line-height: 1.6; color: var(--tile-body-on-scrim); margin: 0 0 20px; }
.service-tile__link { font-weight: 700; font-size: 14px; color: var(--link-on-navy); }
.service-tile__link:hover { color: #fff; }
.service-tile--placeholder .service-tile__media { background: repeating-linear-gradient(135deg, var(--placeholder-bg-1), var(--placeholder-bg-1) 12px, var(--placeholder-bg-2) 12px, var(--placeholder-bg-2) 24px); }
.service-tile--placeholder .service-tile__title,
.service-tile--placeholder .service-tile__desc { color: var(--navy); }
.service-tile--placeholder .service-tile__scrim { background: none; }
.service-tile--placeholder .service-tile__link { color: var(--accent-blue); }
.coming-soon-flag {
  position: relative;
  align-self: flex-start;
  margin: 26px 26px 0;
  background: rgba(0,22,47,0.08);
  color: var(--placeholder-text);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 3px;
}

/* ---------------------------------------------------------------- */
/* Before / After band + gallery                                    */
/* ---------------------------------------------------------------- */
.ba-band__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
}
.ba-band__copy p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--muted-on-navy);
  margin: 0 0 30px;
  max-width: 460px;
}
.ba-band__title { font-size: 36px; color: #fff; margin: 12px 0 20px; }
.ba-pair-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.ba-image {
  aspect-ratio: 3/4;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}
.ba-image img { width: 100%; height: 100%; object-fit: cover; }
.ba-pill {
  position: absolute;
  bottom: 10px;
  left: 10px;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 4px 10px;
  border-radius: 3px;
}
.ba-pill--before { background: rgba(0,22,47,0.75); }
.ba-pill--after { background: rgba(0,86,203,0.9); }

.ba-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.ba-pair-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 16px;
}
.ba-pair-card__label {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 10px;
}
.ba-pair-card--placeholder .placeholder__label { font-size: 12px; }

/* ---------------------------------------------------------------- */
/* Reviews                                                           */
/* ---------------------------------------------------------------- */
.reviews__summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 16px;
  flex-wrap: wrap;
}
.reviews__summary-score { font-weight: 700; font-size: 15px; color: var(--navy); }
.reviews__summary-caption { font-size: 14px; color: var(--muted-tertiary); }
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.review-card {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--border-light);
}
.review-card .stars { display: block; margin-bottom: 14px; }
.review-card__quote { font-size: 15px; line-height: 1.6; color: var(--body-text); margin: 0 0 18px; }
.review-card__name { font-weight: 700; font-size: 14px; color: var(--navy); }

/* ---------------------------------------------------------------- */
/* Why choose us                                                     */
/* ---------------------------------------------------------------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.why-card { text-align: center; padding: 8px; }
.why-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--accent-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}
.why-card h3 { font-size: 17px; font-weight: 800; margin: 0 0 10px; font-family: var(--font-body); }
.why-card p { font-size: 14.5px; line-height: 1.6; color: var(--muted-secondary); margin: 0; }

/* ---------------------------------------------------------------- */
/* Contact strip                                                     */
/* ---------------------------------------------------------------- */
.contact-strip__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.contact-strip h2 { font-size: 28px; color: #fff; margin: 0 0 8px; }
.contact-strip p { font-size: 15px; color: var(--contact-strip-body); margin: 0; max-width: 520px; }
.contact-strip__links {
  display: flex;
  align-items: center;
  gap: 36px;
  flex-wrap: wrap;
}
.contact-strip__links a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
}
.contact-strip__links a:hover { color: var(--tile-body-on-scrim); }
/* Keep the inverse (white) CTA button readable inside the contact band —
   .contact-strip__links a would otherwise force its text white-on-white. */
.contact-strip__links a.btn--inverse { color: var(--accent-blue); }
.contact-strip__links a.btn--inverse:hover { color: var(--navy); }

/* ---------------------------------------------------------------- */
/* Dedicated service page hero (reuses .hero component, shorter)    */
/* ---------------------------------------------------------------- */
.service-hero .hero__frame,
.service-hero .hero__content {
  min-height: 420px;
}
.service-hero .hero__inner { max-width: 760px; }

/* ---------------------------------------------------------------- */
/* Dedicated service page — numbered process list                  */
/* ---------------------------------------------------------------- */
.process-list {
  counter-reset: step;
  list-style: none;
  display: grid;
  gap: 22px;
  margin: 0;
  padding: 0;
}
.process-list li {
  position: relative;
  padding-left: 52px;
  min-height: 36px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--body-text);
}
.process-list li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent-blue);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 15px;
  font-family: var(--font-body);
}

/* ---------------------------------------------------------------- */
/* Services page — detailed blocks                                  */
/* ---------------------------------------------------------------- */
.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
  padding: 64px 0;
  border-bottom: 1px solid var(--border-light);
  scroll-margin-top: 100px;
}
.service-block:last-child { border-bottom: none; }
.service-block__media { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3; }
.service-block__media img { width: 100%; height: 100%; object-fit: cover; }
.service-block__media.placeholder { aspect-ratio: 4/3; }
.service-block h2 { font-size: 30px; margin-bottom: 16px; }
.service-block p { font-size: 16px; line-height: 1.7; color: var(--body-text); margin: 0 0 20px; }
.service-block__included {
  margin: 0 0 24px;
  padding: 0;
}
.service-block__included li {
  position: relative;
  padding-left: 26px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--body-text);
  margin-bottom: 10px;
}
.service-block__included li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent-blue);
}
.service-block--reverse { direction: rtl; }
.service-block--reverse > * { direction: ltr; }

.area-line {
  background: var(--off-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 20px 24px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--body-text);
  margin: 0 0 48px;
}

/* ---------------------------------------------------------------- */
/* Contact form                                                      */
/* ---------------------------------------------------------------- */
.contact-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  align-items: start;
}
.contact-form {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 36px;
}
.form-group { margin-bottom: 22px; }
.form-group label {
  display: block;
  font-weight: 700;
  font-size: 14px;
  color: var(--navy);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--body-text);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.hidden-field { position: absolute; left: -5000px; }
.form-note { font-size: 13px; color: var(--muted-tertiary); margin: 0 0 22px; }
.form-consent { font-size: 13px; line-height: 1.5; color: var(--muted-tertiary); margin: 14px 0 0; }
.form-consent a { color: inherit; text-decoration: underline; }
.form-consent a:hover { color: var(--accent-blue); }

.contact-info-card {
  background: var(--off-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 32px;
}
.contact-info-card h2 { font-size: 22px; margin-bottom: 16px; }
.contact-info-card p { font-size: 15px; line-height: 1.6; color: var(--body-text); margin: 0 0 20px; }
.contact-info-card__item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 14px;
  font-size: 15px;
}

/* ---------------------------------------------------------------- */
/* Privacy / static content pages                                    */
/* ---------------------------------------------------------------- */
.prose { max-width: 820px; margin: 0 auto; }
.prose h2 { font-size: 24px; margin: 40px 0 14px; }
.prose h2:first-child { margin-top: 0; }
.prose p, .prose li { font-size: 16px; line-height: 1.7; color: var(--body-text); margin: 0 0 14px; }
.prose ul { list-style: disc; padding-left: 22px; }
.prose ul li { margin-bottom: 8px; }
.prose a { text-decoration: underline; }

/* ---------------------------------------------------------------- */
/* 404 / thank-you                                                   */
/* ---------------------------------------------------------------- */
.state-page {
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 96px 24px;
}
.state-page__inner { max-width: 520px; }
.state-page h1 { font-size: 40px; margin-bottom: 16px; }
.state-page p { font-size: 17px; color: var(--muted-secondary); margin: 0 0 28px; line-height: 1.6; }

/* ---------------------------------------------------------------- */
/* Footer                                                             */
/* ---------------------------------------------------------------- */
.site-footer { background: var(--navy); padding: 56px 56px 32px; }
.footer__top {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  flex-wrap: wrap;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer__logo img { width: 96px; height: 87px; object-fit: contain; }
.footer__nav { display: flex; gap: 28px; flex-wrap: wrap; }
.footer__nav a { color: var(--footer-nav-on-navy); font-size: 14px; font-weight: 600; }
.footer__nav a:hover { color: #fff; }
.footer__social { display: flex; gap: 14px; }
.footer__social .social-icon { width: 36px; height: 36px; background: rgba(255,255,255,0.08); }
.footer__social .social-icon:hover { background: rgba(255,255,255,0.18); }
.footer__bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  padding-top: 24px;
}
.footer__bottom span { font-size: 13px; color: var(--footer-copyright); }

/* ==================================================================
   Responsive
   ================================================================== */
@media (max-width: 960px) {
  .site-header__inner {
    grid-template-columns: auto 1fr auto;
    padding: 12px 20px;
  }
  .nav-toggle { display: flex; }
  .site-nav {
    position: fixed;
    inset: 0 0 0 auto;
    top: 0;
    height: 100vh;
    width: min(320px, 86vw);
    background: var(--white);
    transform: translateX(100%);
    transition: transform 0.2s ease;
    overflow-y: auto;
    box-shadow: -8px 0 24px rgba(0,22,47,0.2);
    padding: 90px 24px 32px;
    z-index: 90;
  }
  .site-nav.is-open { transform: translateX(0); }
  .site-nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
  }
  .site-nav__list > li { display: block; }
  .nav-link { display: block; padding: 14px 6px; border-bottom: 1px solid var(--border-light); }
  .nav-dropdown__trigger { justify-content: space-between; border-bottom: 1px solid var(--border-light); }
  .nav-dropdown__trigger .nav-link { border-bottom: none; flex: 1; }
  .dropdown-menu {
    position: static;
    box-shadow: none;
    border: none;
    display: none;
    padding-left: 12px;
  }
  .nav-dropdown.is-open .dropdown-menu { display: block; }
  .site-header__social { margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--border-light); }
  .site-header__actions { flex-direction: column; align-items: stretch; gap: 14px; margin-top: 18px; }
  .nav-backdrop { display: none; }
  .nav-backdrop.is-open {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0,22,47,0.4);
    z-index: 80;
  }

  .hero__title { font-size: 38px; }
  .section { padding: 64px 24px; }
  .section--accent { padding: 48px 24px; }
  .page-header { padding: 56px 24px 48px; }

  .about__grid { grid-template-columns: 1fr; gap: 40px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .ba-band__grid { grid-template-columns: 1fr; gap: 40px; }
  .review-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .ba-gallery { grid-template-columns: repeat(2, 1fr); }
  .service-block { grid-template-columns: 1fr; gap: 28px; }
  .service-block--reverse { direction: ltr; }
  .contact-layout { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .site-header__inner { padding: 10px 16px; }
  .site-header__logo img { width: 72px; height: 61px; }
  .hero__title { font-size: 30px; }
  .hero__eyebrow { font-size: 11px; letter-spacing: 1.4px; }
  .hero__strapline { font-size: 16px; }
  .section__title { font-size: 28px; }
  .page-header h1 { font-size: 32px; }
  .services-grid { grid-template-columns: 1fr; }
  .review-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .ba-pair-images { grid-template-columns: 1fr 1fr; }
  .ba-gallery { grid-template-columns: 1fr; }
  .contact-strip__inner { flex-direction: column; align-items: flex-start; }
  .footer__top { flex-direction: column; align-items: flex-start; }
  .about__title, .section__title { font-size: 26px; }
}
