/* ─── TOKENS ─────────────────────────────────────────── */
/* Palette sampled directly from Bexley Power Washing's flyer logo and job-site signage:
   deep navy lockup background, cobalt pricing band, warm stone from the paving itself. */
:root {
  --navy-950:     #0A1830;
  --navy:         #1E2A4A;
  --navy-700:     #2C3D66;
  --blue:         #0B6FB8;
  --blue-600:     #0A63A6;
  --blue-pale:    #E6F1FB;
  --stone:        #F4F0E8;
  --stone-200:    #E9E2D3;
  --white:        #FFFFFF;
  --ink:          #1A2540;
  --ink-mid:      #525F78;
  --ink-light:    #8893A6;
  --border:       #DFE3EC;
  --border-light: #EEF0F5;

  --font-display: "Zilla Slab", "Georgia", serif;
  --font-body:    "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-mono:    "JetBrains Mono", "SFMono-Regular", Menlo, monospace;

  --shadow-sm: 0 2px 10px rgba(10,24,48,.10);
  --shadow-md: 0 12px 32px rgba(10,24,48,.18);

  --radius-sm: 6px;
}

/* ─── RESET ──────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.15;
  color: var(--navy);
  letter-spacing: -.01em;
}
h1 { font-weight: 700; line-height: 1.25; font-size: clamp(28px, 5vw, 48px); }
h2 { font-weight: 700; line-height: 1.3; font-size: clamp(24px, 4vw, 40px); }
h3, h4 { font-weight: 600; }

:focus-visible {
  outline: 2.5px solid var(--blue);
  outline-offset: 2px;
}

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

/* ─── SCROLL REVEAL ──────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .55s ease, transform .55s ease; }
.reveal-visible { opacity: 1; transform: translateY(0); }

/* ─── LAYOUT ─────────────────────────────────────────── */
.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
.section { padding: clamp(48px, 7vw, 76px) 24px; }
.section-alt { background: var(--stone); }
.section-inner { max-width: 1120px; margin: 0 auto; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--blue-600);
  margin-bottom: 12px;
}
.section-label::before {
  content: "";
  width: 18px;
  height: 2px;
  background: var(--blue);
}

/* Woven crosshatch texture, abstracted from the herringbone mark in the real logo */
.texture-weave {
  position: relative;
}
.texture-weave::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    repeating-linear-gradient(45deg, rgba(255,255,255,.07) 0 1.5px, transparent 1.5px 11px),
    repeating-linear-gradient(-45deg, rgba(255,255,255,.07) 0 1.5px, transparent 1.5px 11px);
}
.section-title { font-size: clamp(26px, 3.4vw, 34px); margin-bottom: 14px; text-wrap: balance; }
.section-subtitle { font-size: 16px; color: var(--ink-mid); max-width: 560px; }

/* ─── NOTICE BANNER ──────────────────────────────────── */
.notice-banner {
  background: var(--blue-pale);
  color: var(--navy);
  border-bottom: 1px solid var(--border);
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 16px;
}

/* ─── NAV ────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border-light);
}
.nav-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
  position: relative;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  transition: transform .3s ease;
  position: relative;
}
.nav-logo:hover { transform: scale(1.05); }
.nav-logo::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--blue);
  opacity: 0;
  transition: opacity .3s ease;
}
.nav-logo:hover::after {
  opacity: 1;
}
.nav-logo-img {
  height: 60px;
  width: auto;
  border-radius: 6px;
  display: block;
  box-shadow: 0 4px 16px rgba(30,42,74,.15);
  transition: box-shadow .3s ease, transform .3s ease;
}
.nav-logo:hover .nav-logo-img {
  box-shadow: 0 8px 24px rgba(30,42,74,.25);
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: none;
  background: transparent;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  transition: background .2s ease;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform .2s, opacity .2s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav-links a { font-size: 14.5px; font-weight: 600; color: var(--ink-mid); }
.nav-links a:hover { color: var(--navy); }
.nav-links a[aria-current="page"] {
  color: var(--navy);
  text-decoration: underline;
  text-decoration-color: var(--blue);
  text-decoration-thickness: 2.5px;
  text-underline-offset: 7px;
}
.nav-cta[aria-current="page"] { background: var(--navy) !important; }
.nav-cta {
  background: var(--blue) !important;
  color: var(--white) !important;
  padding: 9px 18px;
  border-radius: var(--radius-sm);
}
.nav-cta:hover { background: var(--navy) !important; }

/* ─── BUTTONS ────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 27px;
  min-height: 48px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 14.5px;
  letter-spacing: .2px;
  cursor: pointer;
  border: none;
  transition: background .15s, transform .1s;
}
.btn-primary { background: var(--blue); color: var(--white); }
.btn-primary:hover { background: var(--blue-600); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,.6); }
.btn-outline:hover { background: rgba(255,255,255,.14); }
.btn-accent { background: var(--navy); color: var(--white); }
.btn-accent:hover { background: var(--navy-950); transform: translateY(-1px); }

/* ─── HOME HERO (photographic) ────── */
.hero {
  position: relative;
  background: linear-gradient(120deg, rgba(10,24,48,.93) 0%, rgba(10,24,48,.62) 48%, rgba(10,24,48,.30) 100%),
              url("images/hero-driveway.jpg") center 38% / cover no-repeat;
  padding: 72px 24px 104px;
  color: var(--white);
}
.hero-inner { max-width: 620px; margin: 0 auto; text-align: left; }
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
  margin-bottom: 20px;
}
.hero-eyebrow::before { content: ""; width: 22px; height: 2px; background: var(--blue); flex-shrink: 0; }
.hero h1 { font-size: clamp(32px, 5vw, 50px); color: var(--white); margin-bottom: 18px; text-wrap: balance; }
.hero p { font-size: 17px; color: rgba(255,255,255,.86); margin-bottom: 30px; max-width: 480px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 24px; }

.hero-tags {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
}
.hero-tag { position: relative; padding-left: 16px; }
.hero-tag::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--blue);
}
.hero-tag:first-child { padding-left: 0; }
.hero-tag:first-child::before { display: none; }

/* ─── RATING BADGE ───────────────────────────────────── */
.rating-badge {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  font-size: 14.5px;
  font-weight: 600;
  color: rgba(255,255,255,.92);
  margin-bottom: 22px;
}
.rating-badge .stars { color: #FFC857; letter-spacing: 1px; font-size: 15px; }
.rating-badge-light {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--navy);
  border-left: 3px solid var(--blue);
  padding: 4px 0 4px 16px;
  margin-bottom: 20px;
}
.rating-badge-light .stars { color: #C8870A; }

/* ─── REPUTATION STAT ─────────────────────────────────── */
.stat-block {
  display: flex;
  align-items: center;
  gap: 36px;
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}
.stat-number {
  font-family: var(--font-display);
  font-size: 76px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1;
  flex-shrink: 0;
}
.stat-copy .stars { color: #C8870A; font-size: 16px; letter-spacing: 2px; display: block; margin-bottom: 6px; }
.stat-copy p { font-size: 15px; color: var(--ink-mid); max-width: 380px; }
.stat-copy strong { color: var(--navy); }

/* ─── PAGE HERO (sub-pages) ──────────────────────────── */
.page-hero {
  background: linear-gradient(120deg, var(--navy-950) 0%, var(--navy) 100%);
  padding: 58px 24px 70px;
  color: var(--white);
  text-align: center;
}
.page-hero h1 { color: var(--white); font-size: clamp(28px, 4vw, 38px); margin-bottom: 8px; }
.page-hero p { color: rgba(255,255,255,.82); font-size: 15.5px; }

/* ─── FEATURE / SERVICE CARDS ────────────────────────── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 40px;
}
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--navy);
  padding: 32px 30px;
  transition: box-shadow .2s, transform .2s, border-top-color .2s, opacity .55s ease;
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); border-top-color: var(--blue); }
.card h3 { font-size: 18.5px; margin-bottom: 9px; }
.card p { font-size: 14px; color: var(--ink-mid); }
.card-price {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--blue-600);
  margin-top: 12px;
  letter-spacing: .2px;
}

/* ─── STEPS (how it works) ───────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 40px;
  border-top: 1px solid var(--border);
}
.step {
  text-align: left;
  padding: 26px 28px 0 0;
  border-left: 1px solid var(--border);
  position: relative;
}
.step:first-child { border-left: none; padding-left: 0; }
.step:not(:first-child) { padding-left: 28px; }
.step-num {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 700;
  line-height: 1;
  color: var(--blue);
  margin-bottom: 8px;
  display: block;
}
.step h3 { font-size: 16.5px; margin-bottom: 6px; }
.step p { font-size: 13.5px; color: var(--ink-mid); }

/* ─── AREAS LIST ──────────────────────────────────────── */
.areas-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}
.area-tag {
  color: var(--navy);
  font-family: var(--font-mono);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .3px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--blue-pale);
}

/* ─── CTA BANNER ─────────────────────────────────────── */
.cta-banner {
  position: relative;
  background: var(--navy-950);
  padding: 56px 24px 52px;
  text-align: center;
  overflow: hidden;
  border-top: 3px solid var(--blue);
}
.cta-banner > * { position: relative; z-index: 1; }
.cta-banner h2 { color: var(--white); font-size: 28px; margin-bottom: 10px; text-wrap: balance; }
.cta-banner p { color: rgba(255,255,255,.72); font-size: 15px; margin-bottom: 28px; }

/* ─── INFO / PLACEHOLDER NOTE ────────────────────────── */
.placeholder-note {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--ink-light);
  font-style: italic;
}

/* ─── CONTACT PAGE ───────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  margin-top: 44px;
}
.contact-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 3px solid var(--navy);
  padding: 28px 30px;
}
.contact-card h3 {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .8px;
  color: var(--blue-600);
  margin-bottom: 10px;
}
.contact-card p { font-size: 15.5px; color: var(--ink-mid); }
.contact-form-card {
  background: var(--stone);
  border: 1px solid var(--border);
  border-top: 3px solid var(--navy);
  padding: 36px 34px;
}
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 13.5px; font-weight: 700; color: var(--ink-mid); margin-bottom: 8px; }
.form-optional { font-weight: 400; text-transform: none; letter-spacing: 0; color: var(--ink-light); }
.form-group input, .form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: 3px;
  font-family: var(--font-body);
  font-size: 16px;
  background: var(--white);
  outline: none;
}
.form-group input:focus, .form-group textarea:focus { border-color: var(--blue); }
.form-error { font-size: 13px; font-weight: 600; color: #b3261e; margin-top: 8px; }
.form-error a { color: inherit; text-decoration: underline; }
.form-group textarea { height: 130px; resize: vertical; }
.form-group input[type="file"] { padding: 9px 14px; font-size: 13.5px; cursor: pointer; }
.form-group input[type="file"]::file-selector-button {
  margin-right: 12px;
  padding: 7px 14px;
  border: none;
  border-radius: 3px;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}
.form-group input[type="file"]::file-selector-button:hover { background: var(--navy-950); }

/* ─── ABOUT PAGE ─────────────────────────────────────── */
.social-heading {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--blue-600);
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 14px;
}
.social-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-mid);
}
.social-links a:hover { color: var(--navy); }
.social-links svg { flex-shrink: 0; }

.value-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-top: 44px;
}
.value-card {
  border-left: 3px solid var(--blue);
  padding: 6px 0 6px 18px;
}
.value-card h3 { font-size: 16px; margin-bottom: 6px; }
.value-card p { font-size: 14px; color: var(--ink-mid); }

/* ─── REVIEW QUOTES ───────────────────────────────────── */
.quotes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 30px;
}
.quote-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--blue);
  padding: 28px 28px 24px;
}
.quote-card p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 16.5px;
  color: var(--navy);
  line-height: 1.5;
}
.quote-card cite {
  display: block;
  margin-top: 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .6px;
  text-transform: uppercase;
  color: var(--ink-light);
  font-style: normal;
}

/* ─── PHOTO GALLERY ──────────────────────────────────── */
/* Job photos share one grading recipe (slight warm-navy tint) so shots taken
   at different times/devices read as one consistent, branded set. */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 36px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  background: var(--white);
  transition: box-shadow .25s, transform .25s, opacity .55s ease;
}
.gallery-item:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.gallery-item img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.05) brightness(1.02);
  transition: transform .5s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item video {
  width: 100%;
  height: 380px;
  object-fit: cover;
  object-position: 50% 30%;
  display: block;
}
.gallery-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, var(--navy-950) 0%, transparent 30%);
  opacity: .08;
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 1;
}
.gallery-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 40px 22px 18px;
  background: linear-gradient(to top, rgba(10,24,48,.85) 0%, rgba(10,24,48,0) 100%);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 14.5px;
  color: var(--white);
}

.gallery-grid--triple { grid-template-columns: repeat(3, 1fr); }
.gallery-grid--triple .gallery-item img { height: 260px; }

/* 2-up, larger photo wall — used where the gallery should feel like the
   main content rather than a supporting strip. */
.gallery-grid--duo { grid-template-columns: repeat(2, 1fr); }
.gallery-grid--duo .gallery-item img { height: 380px; }

/* Full-width before/after composite — spans both columns */
.gallery-item--wide { grid-column: 1 / -1; }
.gallery-item--wide img { height: 420px; object-fit: contain; background: var(--navy-950); }

/* 1 large feature photo + 2 stacked — homepage "Recent Work" */
.gallery-grid--feature {
  grid-template-columns: 1.3fr 1fr;
  grid-template-rows: repeat(2, 1fr);
}
.gallery-grid--feature .gallery-item--feature { grid-row: 1 / 3; }
.gallery-grid--feature .gallery-item--feature img { height: 100%; min-height: 480px; }
.gallery-grid--feature .gallery-item:not(.gallery-item--feature) img { height: 100%; min-height: 220px; }

/* ─── LIGHTBOX ────────────────────────────────────────── */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10,24,48,.95);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
  padding: 20px;
}
.lightbox.active {
  opacity: 1;
  pointer-events: auto;
}
.lightbox-img {
  max-width: 90vw;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0,0,0,.4);
}
.lightbox-caption {
  color: rgba(255,255,255,.85);
  font-size: 14px;
  font-style: italic;
  text-align: center;
  max-width: 600px;
  font-family: var(--font-display);
}
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  border: none;
  background: rgba(255,255,255,.1);
  color: var(--white);
  font-size: 32px;
  cursor: pointer;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .3s ease;
  z-index: 10000;
}
.lightbox-close:hover {
  background: rgba(255,255,255,.2);
}

/* ─── FOOTER ─────────────────────────────────────────── */
.footer { background: var(--navy-950); color: rgba(255,255,255,.75); padding: 52px 24px 26px; }
.footer-inner { max-width: 1120px; margin: 0 auto; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 36px;
}
.footer-brand-row {
  display: flex;
  align-items: center;
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 12px;
}
.footer-brand-row::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 48px;
  height: 2px;
  background: var(--blue);
  border-radius: 1px;
}
.footer-logo-img {
  height: 52px;
  width: auto;
  display: block;
  transition: opacity .3s ease;
}
.footer-logo-img:hover {
  opacity: .85;
}
.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #7FB5DE;
  margin-bottom: 14px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a, .footer-col ul li { font-size: 13.5px; color: rgba(255,255,255,.65); }
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 18px;
  font-size: 12px;
  color: rgba(255,255,255,.45);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

/* ─── RESPONSIVE ─────────────────────────────────────── */
@media (max-width: 880px) {
  .cards-grid { grid-template-columns: 1fr 1fr; }
  .quotes-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; border-top: none; }
  .step { border-left: none; border-top: 1px solid var(--border); padding: 26px 0 0 !important; }
  .step:first-child { border-top: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .value-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-grid--triple { grid-template-columns: 1fr 1fr; }
  .gallery-grid--duo .gallery-item img { height: 300px; }
  .gallery-item video { height: 300px; }
  .gallery-grid--feature { grid-template-columns: 1fr; grid-template-rows: auto; }
  .gallery-grid--feature .gallery-item--feature { grid-row: auto; }
  .gallery-grid--feature .gallery-item--feature img,
  .gallery-grid--feature .gallery-item:not(.gallery-item--feature) img { height: 300px; min-height: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
}

@media (max-width: 760px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border-light);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    box-shadow: var(--shadow-md);
    max-height: 0;
    overflow: hidden;
    visibility: hidden;
    transition: max-height .25s ease;
  }
  .nav-links.open { max-height: 400px; visibility: visible; }
  .nav-links li { border-top: 1px solid var(--border-light); }
  .nav-links li:first-child { border-top: none; }
  .nav-links a { display: block; padding: 16px 24px; }
  .nav-cta { margin: 14px 24px; text-align: center; justify-content: center; display: block; }
}

@media (max-width: 620px) {
  .nav-inner { height: 72px; }
  .nav-logo-img { height: 46px; }
  .nav-links a { padding: 18px 24px; font-size: 15.5px; }
  .hero { padding: 76px 20px 96px; }
  .hero h1 { font-size: 30px; }
  .hero p { font-size: 16px; }
  .hero-eyebrow { font-size: 10.5px; letter-spacing: 1px; }
  .rating-badge { font-size: 13.5px; flex-wrap: wrap; row-gap: 4px; }
  .rating-badge .stars { font-size: 14px; }
  .hero-tags { gap: 8px 9px; font-size: 10px; letter-spacing: .2px; }
  .hero-tag { padding-left: 11px; }
  .hero-actions { gap: 10px; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .page-hero h1 { font-size: 27px; }
  .section-title { font-size: 24px; }
  .section-label { font-size: 11px; letter-spacing: 1.2px; }
  .section-subtitle { font-size: 15px; }
  .cta-banner h2 { font-size: 24px; }
  .cta-banner p { font-size: 14px; }
  .cards-grid { grid-template-columns: 1fr; }
  .gallery-grid--triple { grid-template-columns: 1fr; }
  .gallery-grid--duo { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .stat-block { flex-direction: column; align-items: flex-start; gap: 14px; }
  .stat-number { font-size: 58px; }
  .contact-form-card { padding: 24px; }
}
