/* ==========================================================================
   Roca's Painting, LLC — shared stylesheet
   Brand: navy #1c4153, terracotta #d9481c, gold #f2932b, cream #fbf1e1
   Display font: Fraunces (serif) / Body + UI font: Manrope (sans)
   ========================================================================== */

:root {
  /* Color tokens — sampled from client logo */
  --color-cream: #fbf1e1;
  --color-surface: #fbf1e1;
  --color-surface-alt: #f2ead9;
  --color-surface-dim: #e9dfcd;
  --color-navy-deep: #12303f;
  --color-navy: #1c4153;
  --color-navy-mid: #2d5a72;
  --color-navy-soft: #586e78;
  --color-ink: #182a31;
  /* Darkened from the logo's raw #d9481c so text-on-cream and white-on-button
     both clear WCAG AA (4.5:1) — verified via contrast calc, not eyeballed. */
  --color-terracotta: #c34019;
  --color-terracotta-dark: #a23615;
  --color-terracotta-tint: #fbe4d8;
  --color-gold: #f2932b;
  --color-white: #fffdf9;
  --color-border: rgba(28, 65, 83, 0.14);
  --color-border-soft: rgba(28, 65, 83, 0.08);

  /* Shadows — layered, navy-tinted */
  --shadow-sm: 0 1px 2px rgba(18, 48, 63, 0.09), 0 1px 1px rgba(18, 48, 63, 0.05);
  --shadow-md: 0 6px 16px rgba(18, 48, 63, 0.12), 0 2px 6px rgba(18, 48, 63, 0.07);
  --shadow-lg: 0 20px 40px rgba(18, 48, 63, 0.16), 0 6px 14px rgba(18, 48, 63, 0.08);
  --shadow-cta: 0 12px 26px rgba(217, 72, 28, 0.32), 0 3px 8px rgba(217, 72, 28, 0.2);
  --shadow-cta-hover: 0 16px 32px rgba(217, 72, 28, 0.38), 0 4px 10px rgba(217, 72, 28, 0.24);

  /* Spacing scale */
  --space-3xs: 0.25rem;
  --space-2xs: 0.5rem;
  --space-xs: 0.75rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --space-3xl: 8rem;

  /* Radii */
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 999px;

  /* Motion */
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --duration-sm: 180ms;
  --duration-md: 320ms;

  /* Type
     Display: Barlow Condensed carries the hero/headline weight now — strong,
     confident, contractor-legible, without Oswald's generic-template feel.
     Serif accent: Fraunces is kept only where it echoes the logo's own
     lettering (brand wordmark, a couple of numeral/stat treatments) — it no
     longer dominates headings. */
  --font-display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --font-serif-accent: "Fraunces", "Iowan Old Style", "Georgia", serif;
  --font-body: "Manrope", "Segoe UI", system-ui, sans-serif;

  --container-w: 1200px;
}

/* ==========================================================================
   Reset
   ========================================================================== */

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

* {
  margin: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

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

body {
  background: var(--color-surface);
  color: var(--color-ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

ul,
ol {
  list-style: none;
  padding: 0;
}

input,
textarea,
select {
  font: inherit;
  color: inherit;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0.002em;
  color: var(--color-navy-deep);
}

/* Selective serif accent — used only where noted, never for dominant headings */
.font-serif-accent {
  font-family: var(--font-serif-accent);
  font-weight: 600;
  letter-spacing: -0.02em;
}

p {
  max-width: 62ch;
}

/* Focus visibility — every interactive element */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
summary:focus-visible {
  outline: 2.5px solid var(--color-terracotta);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--color-navy-deep);
  color: var(--color-white);
  padding: var(--space-xs) var(--space-sm);
  z-index: 200;
  border-radius: 0 0 var(--radius-sm) 0;
}

.skip-link:focus {
  left: 0;
}

/* ==========================================================================
   Layout utilities
   ========================================================================== */

.container {
  width: 100%;
  max-width: var(--container-w);
  margin-inline: auto;
  padding-inline: var(--space-md);
}

.section {
  padding-block: var(--space-2xl);
}

@media (max-width: 720px) {
  .section {
    padding-block: var(--space-xl);
  }
}

.section-alt {
  background: var(--color-surface-alt);
}

.section-navy {
  background: var(--color-navy-deep);
  color: var(--color-white);
  position: relative;
  overflow: hidden;
}

.section-navy h2,
.section-navy h3 {
  color: var(--color-white);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-terracotta);
  margin-bottom: var(--space-xs);
}

.section-navy .eyebrow {
  color: var(--color-gold);
}

.section-head {
  max-width: 640px;
  margin-bottom: var(--space-lg);
}

.section-head.center {
  margin-inline: auto;
  text-align: center;
}

h2.section-title {
  font-size: clamp(2.1rem, 1.6rem + 2.2vw, 3.2rem);
  font-weight: 700;
}

h3.card-title {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.002em;
}

.lede {
  font-size: 1.125rem;
  color: var(--color-navy-mid);
  line-height: 1.7;
}

.section-navy .lede {
  color: rgba(255, 253, 249, 0.78);
}

/* Grain texture overlay (SVG noise) for dark / hero sections */
.has-grain::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.35;
  mix-blend-mode: overlay;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  z-index: 0;
}

.has-grain > * {
  position: relative;
  z-index: 1;
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55em;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.98rem;
  letter-spacing: -0.005em;
  padding: 0.95em 1.7em;
  border-radius: var(--radius-full);
  transition: transform var(--duration-sm) var(--ease-spring),
    box-shadow var(--duration-md) var(--ease-out),
    background-color var(--duration-md) var(--ease-out);
  white-space: nowrap;
  border: 1.5px solid transparent;
}

.btn:active {
  transform: scale(0.97);
}

.btn-primary {
  background: var(--color-terracotta);
  color: var(--color-white);
  box-shadow: var(--shadow-cta);
}

.btn-primary:hover {
  background: var(--color-terracotta-dark);
  box-shadow: var(--shadow-cta-hover);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: var(--color-navy-deep);
  border-color: var(--color-navy-deep);
}

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

.section-navy .btn-secondary {
  color: var(--color-white);
  border-color: rgba(255, 253, 249, 0.5);
}

.section-navy .btn-secondary:hover {
  background: var(--color-white);
  color: var(--color-navy-deep);
}

.btn-ghost {
  background: rgba(28, 65, 83, 0.06);
  color: var(--color-navy-deep);
}

.btn-ghost:hover {
  background: rgba(28, 65, 83, 0.12);
  transform: translateY(-1px);
}

.btn-block {
  width: 100%;
}

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

/* ==========================================================================
   Header
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 241, 225, 0.92);
  backdrop-filter: blur(10px) saturate(140%);
  border-bottom: 1px solid var(--color-border-soft);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  padding-block: 0.7rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
}

.brand img {
  height: 40px;
  width: auto;
}

.brand-name {
  font-family: var(--font-serif-accent);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--color-navy-deep);
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.main-nav {
  display: none;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

/* Below desktop nav breakpoint: keep the header to logo + hamburger only.
   Free Estimate lives in the mobile drawer and the sticky bottom bar
   instead, so the header row never has to shrink content it can't fit. */
.header-actions .btn-primary {
  display: none;
}

.header-call {
  display: none;
  align-items: center;
  gap: 0.5em;
  font-weight: 700;
  color: var(--color-navy-deep);
  font-size: 0.98rem;
  transition: color var(--duration-sm) var(--ease-out);
}

.header-call:hover {
  color: var(--color-terracotta);
}

.header-call svg {
  width: 19px;
  height: 19px;
  flex-shrink: 0;
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  color: var(--color-navy-deep);
}

.nav-toggle:hover {
  background: rgba(28, 65, 83, 0.08);
}

.nav-toggle svg {
  width: 24px;
  height: 24px;
}

.nav-toggle .icon-close {
  display: none;
}

.nav-open .nav-toggle .icon-open {
  display: none;
}

.nav-open .nav-toggle .icon-close {
  display: block;
}

@media (min-width: 1000px) {
  .brand-name {
    font-size: 1.2rem;
  }

  .main-nav {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-inline: auto;
  }

  .main-nav a {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--color-navy);
    padding: 0.4em 0;
    position: relative;
  }

  .main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 100%;
    bottom: -2px;
    height: 2px;
    background: var(--color-terracotta);
    transition: right var(--duration-md) var(--ease-out);
  }

  .main-nav a:hover::after {
    right: 0;
  }

  /* Painting dropdown — click-toggled (JS) as the primary mechanism so it
     works identically for mouse, keyboard, and touch; hover is a bonus. */
  .nav-item.has-dropdown {
    position: relative;
  }

  .nav-dropdown-trigger {
    display: inline-flex;
    align-items: center;
    gap: 0.3em;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--color-navy);
    padding: 0.4em 0;
    position: relative;
  }

  .nav-dropdown-trigger::after {
    content: "";
    position: absolute;
    left: 0;
    right: 100%;
    bottom: -2px;
    height: 2px;
    background: var(--color-terracotta);
    transition: right var(--duration-md) var(--ease-out);
  }

  .nav-item.has-dropdown:hover .nav-dropdown-trigger::after,
  .nav-item.has-dropdown.is-open .nav-dropdown-trigger::after {
    right: 0;
  }

  .nav-dropdown-trigger .chevron {
    width: 13px;
    height: 13px;
    transition: transform var(--duration-sm) var(--ease-spring);
  }

  .nav-item.has-dropdown.is-open .chevron,
  .nav-item.has-dropdown:hover .chevron {
    transform: rotate(180deg);
  }

  .dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(-4px);
    background: var(--color-white);
    border: 1px solid var(--color-border-soft);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: 0.4rem;
    min-width: 220px;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--duration-md) var(--ease-out), transform var(--duration-md) var(--ease-out);
    z-index: 50;
  }

  .nav-item.has-dropdown:hover .dropdown-menu,
  .nav-item.has-dropdown.is-open .dropdown-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
  }

  .dropdown-menu a {
    display: block;
    padding: 0.65em 0.9em;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.92rem;
    color: var(--color-navy-deep);
    white-space: nowrap;
  }

  .dropdown-menu a:hover {
    background: var(--color-surface-alt);
    color: var(--color-terracotta);
  }

  .header-call {
    display: inline-flex;
  }

  .header-actions .btn-primary {
    display: inline-flex;
  }

  .nav-toggle {
    display: none;
  }
}

/* Mobile nav drawer */
.mobile-nav {
  position: fixed;
  inset: 0;
  top: 0;
  background: var(--color-navy-deep);
  color: var(--color-white);
  z-index: 99;
  padding: 5.5rem var(--space-md) var(--space-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  transform: translateX(100%);
  transition: transform var(--duration-md) var(--ease-out);
  overflow-y: auto;
}

.nav-open .mobile-nav {
  transform: translateX(0);
}

.mobile-nav a {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  border-bottom: 1px solid rgba(255, 253, 249, 0.14);
  padding-block: 0.6rem;
}

/* Painting sub-menu inside the drawer — native <details>, same
   JS-free accordion pattern as the FAQ, for reliable touch behavior. */
.mobile-nav-group {
  border-bottom: 1px solid rgba(255, 253, 249, 0.14);
}

.mobile-nav-group summary {
  list-style: none;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  padding-block: 0.6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-nav-group summary::-webkit-details-marker {
  display: none;
}

.mobile-nav-group summary .chevron {
  width: 20px;
  height: 20px;
  color: var(--color-gold);
  transition: transform var(--duration-md) var(--ease-spring);
  flex-shrink: 0;
}

.mobile-nav-group[open] summary .chevron {
  transform: rotate(180deg);
}

.mobile-nav-sublist {
  display: flex;
  flex-direction: column;
  padding-bottom: 0.5rem;
}

.mobile-nav-sublist a {
  border-bottom: none;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  color: rgba(255, 253, 249, 0.82);
  padding-block: 0.5rem;
}

.mobile-nav .header-call {
  display: inline-flex;
  color: var(--color-gold);
  font-family: var(--font-body);
  font-size: 1.1rem;
}

@media (min-width: 1000px) {
  .mobile-nav {
    display: none;
  }
}

body.nav-open {
  overflow: hidden;
}

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  position: relative;
  padding-block: var(--space-xl) var(--space-lg);
  background:
    radial-gradient(ellipse 900px 500px at 85% -10%, rgba(242, 147, 43, 0.22), transparent 60%),
    radial-gradient(ellipse 700px 500px at -10% 90%, rgba(28, 65, 83, 0.1), transparent 60%),
    var(--color-surface);
  overflow: hidden;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  align-items: center;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  margin-bottom: var(--space-xs);
}

.hero-kicker svg {
  color: var(--color-terracotta);
}

.hero-copy h1 {
  font-size: clamp(2.6rem, 1.9rem + 3.4vw, 4.5rem);
  font-weight: 800;
  line-height: 1;
  margin-bottom: var(--space-sm);
}

/* Single-word emphasis inside headings — used sparingly (never more than one
   accent per headline) so orange stays an accent, not the dominant color. */
.accent-word {
  color: var(--color-terracotta);
}

.hero-copy .lede {
  font-size: 1.15rem;
  margin-bottom: var(--space-md);
  color: var(--color-navy);
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
  margin-bottom: var(--space-md);
}

.hero-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 3;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(18, 48, 63, 0.55), transparent 45%);
  mix-blend-mode: multiply;
}

.hero-visual-caption {
  position: absolute;
  left: var(--space-sm);
  bottom: var(--space-sm);
  z-index: 2;
  color: var(--color-white);
  font-size: 0.85rem;
  font-weight: 600;
  background: rgba(18, 48, 63, 0.55);
  padding: 0.4em 0.85em;
  border-radius: var(--radius-full);
  backdrop-filter: blur(6px);
}

@media (min-width: 900px) {
  .hero .container {
    grid-template-columns: 1.05fr 0.95fr;
  }
}

/* Trust bar */
.trust-bar {
  background: var(--color-white);
  border-block: 1px solid var(--color-border-soft);
}

.trust-bar .container {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-sm);
  padding-block: var(--space-md);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.7em;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--color-navy-deep);
}

.trust-item svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--color-terracotta);
}

.trust-item .trust-sub {
  display: block;
  font-weight: 500;
  font-size: 0.82rem;
  color: var(--color-navy-soft);
}

.trust-item.link:hover {
  color: var(--color-terracotta);
}

@media (min-width: 780px) {
  .trust-bar .container {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
  }
}

/* ==========================================================================
   Service cards
   ========================================================================== */

.card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

@media (min-width: 620px) {
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1000px) {
  .card-grid.cols-5 {
    grid-template-columns: repeat(5, 1fr);
  }
  .card-grid.cols-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border-soft);
  transition: transform var(--duration-md) var(--ease-spring),
    box-shadow var(--duration-md) var(--ease-out),
    border-color var(--duration-md) var(--ease-out);
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(217, 72, 28, 0.25);
}

.service-card .icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  background: var(--color-terracotta-tint);
  color: var(--color-terracotta);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-2xs);
  transition: transform var(--duration-md) var(--ease-spring);
}

.service-card:hover .icon-wrap {
  transform: rotate(-6deg) scale(1.06);
}

.service-card .icon-wrap svg {
  width: 26px;
  height: 26px;
}

.service-card p {
  color: var(--color-navy-mid);
  font-size: 0.96rem;
  flex-grow: 1;
}

.service-card .card-link {
  font-weight: 700;
  color: var(--color-navy-deep);
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  margin-top: auto;
}

.service-card .card-link svg {
  width: 16px;
  height: 16px;
  transition: transform var(--duration-sm) var(--ease-spring);
}

.service-card:hover .card-link svg {
  transform: translateX(4px);
}

/* Category card sub-links — used where a card fans out to several pages
   (e.g. "Painting") instead of linking to just one. */
.category-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4em;
  margin-top: auto;
}

.category-links a {
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--color-navy-deep);
  background: var(--color-surface-alt);
  border-radius: var(--radius-full);
  padding: 0.4em 0.9em;
  transition: background var(--duration-sm) var(--ease-out), color var(--duration-sm) var(--ease-out);
}

.category-links a:hover {
  background: var(--color-terracotta);
  color: var(--color-white);
}

/* ==========================================================================
   Process steps
   ========================================================================== */

.process-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-sm);
  counter-reset: step;
}

@media (min-width: 700px) {
  .process-list {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1050px) {
  .process-list {
    grid-template-columns: repeat(6, 1fr);
  }
}

.process-step {
  counter-increment: step;
  position: relative;
  padding: var(--space-md) var(--space-sm) var(--space-sm);
  background: rgba(255, 253, 249, 0.05);
  border: 1px solid rgba(255, 253, 249, 0.14);
  border-radius: var(--radius-md);
}

.process-step::before {
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-serif-accent);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-gold);
  display: block;
  margin-bottom: var(--space-2xs);
}

.process-step h3 {
  font-size: 1.05rem;
  margin-bottom: 0.35em;
}

.process-step p {
  font-size: 0.9rem;
  color: rgba(255, 253, 249, 0.72);
}

/* ==========================================================================
   Gallery
   ========================================================================== */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-sm);
}

@media (min-width: 700px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1050px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .gallery-grid .gallery-item.feature {
    grid-column: span 2;
    grid-row: span 2;
  }
  /* Homepage preview is a fixed set of 6 — stay at 3 columns (2 clean
     rows) instead of the 4-col layout, which would strand 2 items alone
     in a last row. */
  .gallery-grid.preview {
    grid-template-columns: repeat(3, 1fr);
  }
}

.gallery-item {
  position: relative;
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  font: inherit;
  text-align: left;
  cursor: pointer;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  aspect-ratio: 4 / 3;
}

.gallery-item .expand-icon {
  position: absolute;
  top: var(--space-xs);
  right: var(--space-xs);
  z-index: 2;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(18, 48, 63, 0.55);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.8);
  transition: opacity var(--duration-sm) var(--ease-out), transform var(--duration-sm) var(--ease-spring);
  backdrop-filter: blur(4px);
}

.gallery-item .expand-icon svg {
  width: 16px;
  height: 16px;
}

.gallery-item:hover .expand-icon,
.gallery-item:focus-visible .expand-icon {
  opacity: 1;
  transform: scale(1);
}

.gallery-grid .gallery-item.feature {
  aspect-ratio: 1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms var(--ease-out);
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  /* Tightened to a bottom-hugging scrim (was 0/40/65) so it just covers
     the caption text instead of shading nearly two-thirds of the photo. */
  background: linear-gradient(to top, rgba(18, 48, 63, 0.88) 0%, rgba(18, 48, 63, 0.22) 24%, transparent 44%);
  mix-blend-mode: multiply;
}

.gallery-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: var(--space-sm);
  color: var(--color-white);
}

.gallery-caption .city {
  display: block;
  font-weight: 700;
  font-size: 0.92rem;
}

.gallery-caption .service {
  display: block;
  font-size: 0.78rem;
  color: rgba(255, 253, 249, 0.8);
}

/* Below the grid's own 2-col breakpoint: smaller type, tighter padding,
   and drop the "Category ·" prefix (the section heading already gives the
   category) so captions stop wrapping to 2-3 lines and covering the photo. */
@media (max-width: 699px) {
  .gallery-caption {
    padding: var(--space-2xs) var(--space-xs) var(--space-xs);
  }

  .gallery-caption .city {
    font-size: 0.74rem;
    letter-spacing: 0.005em;
  }

  .gallery-caption .cap-prefix {
    display: none;
  }
}

/* ==========================================================================
   Reviews
   ========================================================================== */

.review-summary {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-md);
  background: var(--color-white);
  border: 1px solid var(--color-border-soft);
  border-radius: var(--radius-lg);
  padding: var(--space-md) var(--space-lg);
  box-shadow: var(--shadow-sm);
  margin-bottom: var(--space-lg);
}

.review-summary .score {
  font-family: var(--font-serif-accent);
  font-size: 3.2rem;
  font-weight: 600;
  color: var(--color-navy-deep);
  line-height: 1;
}

.review-summary .stars {
  color: var(--color-gold);
  font-size: 1.2rem;
  letter-spacing: 0.1em;
}

.review-summary .stars-meta {
  font-size: 0.88rem;
  color: var(--color-navy-mid);
  font-weight: 600;
}

.review-card {
  background: var(--color-white);
  border: 1px solid var(--color-border-soft);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.review-card .stars {
  color: var(--color-gold);
  font-size: 0.95rem;
  letter-spacing: 0.12em;
}

.review-card blockquote {
  font-size: 0.96rem;
  color: var(--color-navy);
  font-style: italic;
}

.review-card cite {
  font-style: normal;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--color-navy-deep);
}

.trust-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
  align-items: center;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  background: var(--color-surface-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  padding: 0.6em 1.1em;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--color-navy-deep);
  transition: transform var(--duration-sm) var(--ease-spring), box-shadow var(--duration-md) var(--ease-out);
}

a.trust-badge:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

/* Visually distinct from confirmed content — dashed border signals "not
   final yet" at a glance, for internal review copies. */
.placeholder-note {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  border: 1.5px dashed var(--color-navy-soft);
  border-radius: var(--radius-full);
  padding: 0.55em 1.1em;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--color-navy-soft);
  margin-top: var(--space-sm);
}

.placeholder-note svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.trust-badge svg {
  width: 18px;
  height: 18px;
  color: var(--color-terracotta);
}

/* ==========================================================================
   Service areas
   ========================================================================== */

.area-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xs) var(--space-md);
}

@media (min-width: 600px) {
  .area-list {
    grid-template-columns: repeat(3, 1fr);
  }
}

.area-list li {
  display: flex;
  align-items: baseline;
  gap: 0.5em;
  font-weight: 700;
  color: var(--color-navy-deep);
  padding-block: 0.3em;
  border-bottom: 1px dashed var(--color-border);
}

.area-list li svg {
  width: 16px;
  height: 16px;
  color: var(--color-terracotta);
  flex-shrink: 0;
}

.area-note {
  margin-top: var(--space-md);
  padding: var(--space-sm) var(--space-md);
  background: var(--color-surface-alt);
  border-left: 3px solid var(--color-gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 0.95rem;
  color: var(--color-navy);
}

/* ==========================================================================
   Pricing / How We Price
   ========================================================================== */

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  align-items: start;
}

@media (min-width: 900px) {
  .pricing-grid {
    grid-template-columns: 1fr 0.85fr;
  }
}

.factor-list {
  display: grid;
  gap: var(--space-sm);
}

.factor-item {
  display: flex;
  gap: var(--space-xs);
  align-items: flex-start;
}

.factor-item .num {
  font-family: var(--font-serif-accent);
  font-weight: 600;
  color: var(--color-terracotta);
  font-size: 1.3rem;
  line-height: 1.4;
  flex-shrink: 0;
  width: 2ch;
}

.factor-item h3 {
  font-size: 1.02rem;
  margin-bottom: 0.2em;
}

.factor-item p {
  font-size: 0.92rem;
  color: var(--color-navy-mid);
}

.quote-panel {
  background: var(--color-navy-deep);
  color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  position: relative;
  overflow: hidden;
}

.quote-panel h3 {
  color: var(--color-white);
  font-size: 1.7rem;
  margin-bottom: var(--space-2xs);
}

.quote-panel p {
  color: rgba(255, 253, 249, 0.78);
  margin-bottom: var(--space-md);
  font-size: 0.95rem;
}

/* ==========================================================================
   FAQ accordion
   ========================================================================== */

.faq-list {
  display: grid;
  gap: var(--space-xs);
  max-width: 760px;
}

.faq-item {
  background: var(--color-white);
  border: 1px solid var(--color-border-soft);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: var(--space-sm) var(--space-md);
  font-weight: 700;
  color: var(--color-navy-deep);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item .plus {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  position: relative;
}

.faq-item .plus::before,
.faq-item .plus::after {
  content: "";
  position: absolute;
  background: var(--color-terracotta);
  border-radius: 2px;
  transition: transform var(--duration-md) var(--ease-spring), opacity var(--duration-md) var(--ease-out);
}

.faq-item .plus::before {
  left: 4px;
  right: 4px;
  top: 11px;
  height: 2.5px;
}

.faq-item .plus::after {
  top: 4px;
  bottom: 4px;
  left: 11px;
  width: 2.5px;
}

.faq-item[open] .plus::after {
  transform: rotate(90deg);
  opacity: 0;
}

.faq-item .faq-body {
  padding: 0 var(--space-md) var(--space-md);
  color: var(--color-navy-mid);
  font-size: 0.96rem;
}

.faq-body strong {
  color: var(--color-navy-deep);
}

/* ==========================================================================
   Final CTA + form
   ========================================================================== */

.cta-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

@media (min-width: 950px) {
  .cta-split {
    grid-template-columns: 1fr 1.1fr;
    align-items: start;
  }
}

.cta-copy .lede {
  color: rgba(255, 253, 249, 0.78);
}

.cta-points {
  display: grid;
  gap: var(--space-2xs);
  margin-top: var(--space-md);
}

.cta-points li {
  display: flex;
  gap: 0.6em;
  align-items: flex-start;
  font-size: 0.95rem;
  color: rgba(255, 253, 249, 0.88);
}

.cta-points svg {
  width: 18px;
  height: 18px;
  color: var(--color-gold);
  flex-shrink: 0;
  margin-top: 0.2em;
}

.estimate-form {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-lg);
  color: var(--color-ink);
  display: grid;
  gap: var(--space-sm);
  /* Grid items default to min-width:auto, which lets a <select>'s
     currently-selected option text (e.g. "Specialty & Industrial") force
     this wider than its track and overflow the layout. min-width:0 lets it
     actually shrink to the assigned column width. */
  min-width: 0;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-sm);
  min-width: 0;
}

.field {
  min-width: 0;
}

@media (min-width: 560px) {
  .form-row.two {
    grid-template-columns: 1fr 1fr;
  }
}

.field label {
  display: block;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--color-navy-deep);
  margin-bottom: 0.35em;
}

.field .req {
  color: var(--color-terracotta);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-width: 0;
  padding: 0.85em 1em;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--color-surface);
  font-size: 0.98rem;
  transition: border-color var(--duration-sm) var(--ease-out), box-shadow var(--duration-sm) var(--ease-out);
}

.field input:hover,
.field select:hover,
.field textarea:hover {
  border-color: var(--color-navy-soft);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--color-terracotta);
  box-shadow: 0 0 0 4px rgba(217, 72, 28, 0.13);
}

.field textarea {
  resize: vertical;
  min-height: 100px;
}

.field.file {
  border: 1.5px dashed var(--color-border);
  border-radius: var(--radius-sm);
  padding: var(--space-sm);
  background: var(--color-surface);
}

.field.file input {
  border: none;
  padding: 0.4em 0;
  background: none;
  font-size: 0.88rem;
}

.field-hint {
  font-size: 0.8rem;
  color: var(--color-navy-soft);
  margin-top: 0.3em;
}

.form-disclaimer {
  font-size: 0.78rem;
  color: var(--color-navy-soft);
  margin-top: -0.2em;
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-success,
.form-error {
  display: none;
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
}

.form-success {
  background: #e5f3e3;
  color: #276b30;
}

.form-error {
  background: #fbe3e0;
  color: #a13322;
}

.form-success.show,
.form-error.show {
  display: block;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
  background: var(--color-navy-deep);
  color: rgba(255, 253, 249, 0.82);
  padding-block: var(--space-xl) var(--space-lg);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid rgba(255, 253, 249, 0.12);
}

@media (min-width: 780px) {
  .footer-grid {
    grid-template-columns: 1.3fr 1fr 1fr 1fr;
  }
}

.footer-brand-mark {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: var(--space-xs);
}

.footer-brand-mark img {
  height: 40px;
  width: auto;
}

.footer-brand-mark span {
  font-family: var(--font-serif-accent);
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--color-white);
  letter-spacing: -0.02em;
}

.footer-brand p {
  font-size: 0.9rem;
  color: rgba(255, 253, 249, 0.62);
  max-width: 30ch;
}

.footer-col h4 {
  font-family: var(--font-body);
  color: var(--color-white);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: var(--space-xs);
}

.footer-col ul {
  display: grid;
  gap: 0.55em;
  font-size: 0.92rem;
}

.footer-col a:hover {
  color: var(--color-gold);
}

.footer-social {
  display: flex;
  gap: var(--space-xs);
  margin-top: var(--space-xs);
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-full);
  background: rgba(255, 253, 249, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--duration-sm) var(--ease-out), transform var(--duration-sm) var(--ease-spring);
}

.footer-social a:hover {
  background: var(--color-terracotta);
  transform: translateY(-2px);
}

.footer-social svg {
  width: 18px;
  height: 18px;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--space-xs);
  padding-top: var(--space-md);
  font-size: 0.82rem;
  color: rgba(255, 253, 249, 0.6);
}

.footer-bottom a:hover {
  color: var(--color-gold);
}

/* ==========================================================================
   Sticky mobile bar
   ========================================================================== */

.mobile-sticky-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--color-white);
  box-shadow: 0 -8px 24px rgba(18, 48, 63, 0.18);
  border-top: 1px solid var(--color-border-soft);
  padding: 0.6rem;
  gap: 0.6rem;
  padding-bottom: max(0.6rem, env(safe-area-inset-bottom));
}

.mobile-sticky-bar a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  padding: 0.85em;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.95rem;
}

.mobile-sticky-bar .call {
  background: var(--color-navy-deep);
  color: var(--color-white);
}

.mobile-sticky-bar .estimate {
  background: var(--color-terracotta);
  color: var(--color-white);
}

.mobile-sticky-bar svg {
  width: 18px;
  height: 18px;
}

body {
  padding-bottom: 76px;
}

@media (min-width: 1000px) {
  .mobile-sticky-bar {
    display: none;
  }
  body {
    padding-bottom: 0;
  }
}

/* ==========================================================================
   Breadcrumb (service pages)
   ========================================================================== */

.breadcrumb {
  padding-block: var(--space-sm);
  font-size: 0.85rem;
  color: var(--color-navy-soft);
}

.breadcrumb a:hover {
  color: var(--color-terracotta);
}

.breadcrumb .sep {
  margin-inline: 0.5em;
}

/* ==========================================================================
   Service page mini-hero
   ========================================================================== */

.mini-hero {
  position: relative;
  padding-block: var(--space-lg) var(--space-xl);
  overflow: hidden;
  background:
    radial-gradient(ellipse 800px 500px at 90% 0%, rgba(242, 147, 43, 0.2), transparent 60%),
    var(--color-surface);
}

.mini-hero .container {
  display: grid;
  gap: var(--space-lg);
  align-items: center;
  grid-template-columns: 1fr;
}

@media (min-width: 900px) {
  .mini-hero .container {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

.mini-hero h1 {
  font-size: clamp(2.4rem, 1.9rem + 2.6vw, 3.8rem);
  font-weight: 800;
  line-height: 1;
  margin-bottom: var(--space-xs);
}

.mini-hero .lede {
  color: var(--color-navy);
  font-size: 1.08rem;
  margin-bottom: var(--space-md);
}

.mini-hero-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 3;
}

.mini-hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Text-only variant — used when no real project photo is available yet.
   Centers and constrains the copy instead of leaving an empty grid track
   where the visual would have gone. */
.mini-hero.no-visual {
  padding-block: var(--space-xl) calc(var(--space-xl) + var(--space-md));
  background: radial-gradient(ellipse 900px 500px at 50% 0%, rgba(242, 147, 43, 0.18), transparent 60%), var(--color-surface);
}

.mini-hero.no-visual .container {
  max-width: 780px;
  text-align: center;
}

.mini-hero.no-visual .hero-ctas {
  justify-content: center;
}

@media (min-width: 900px) {
  .mini-hero.no-visual .container {
    grid-template-columns: 1fr;
  }
}

/* Two column content block (benefits) */
.split-block {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  align-items: center;
}

@media (min-width: 900px) {
  .split-block {
    grid-template-columns: 1fr 1fr;
  }
  .split-block.reverse {
    direction: rtl;
  }
  .split-block.reverse > * {
    direction: ltr;
  }
}

.split-block img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.check-list {
  display: grid;
  gap: var(--space-xs);
  margin-top: var(--space-sm);
}

.check-list li {
  display: flex;
  gap: 0.6em;
  align-items: flex-start;
  color: var(--color-navy);
}

.check-list svg {
  width: 20px;
  height: 20px;
  color: var(--color-terracotta);
  flex-shrink: 0;
  margin-top: 0.15em;
}

/* ==========================================================================
   About page
   ========================================================================== */

.about-hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  align-items: center;
}

@media (min-width: 900px) {
  .about-hero {
    grid-template-columns: 0.95fr 1.05fr;
  }
}

.about-hero img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
  object-fit: cover;
  width: 100%;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-sm);
  margin-top: var(--space-lg);
}

.stat-row .stat strong {
  display: block;
  font-family: var(--font-serif-accent);
  font-size: 2rem;
  color: var(--color-terracotta);
}

.stat-row .stat span {
  font-size: 0.82rem;
  color: var(--color-navy-mid);
  font-weight: 600;
}

/* ==========================================================================
   Scroll reveal
   ========================================================================== */

/* Visible by default (no-JS / slow-JS safe). JS adds .reveal-pending right
   before observing, so the hidden state only ever exists once JS is
   confirmed running. */
.reveal-pending {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 700ms var(--ease-out), transform 700ms var(--ease-out);
}

.reveal-pending.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal-pending {
    opacity: 1;
    transform: none;
  }
}

/* ==========================================================================
   Misc
   ========================================================================== */

.divider-note {
  text-align: center;
  font-size: 0.85rem;
  color: var(--color-navy-soft);
  margin-top: var(--space-md);
}

.text-center {
  text-align: center;
}

@media (min-width: 500px) {
  .hero-ctas,
  .form-row.two {
    flex-wrap: nowrap;
  }
}

/* ==========================================================================
   Mobile-only carousels — reviews and process steps on the homepage.
   Desktop keeps the static grid; below 1000px it becomes a swipeable,
   auto-advancing, scroll-snap strip. Placed last so it wins the cascade
   over the base .card-grid / .process-list rules without !important.
   ========================================================================== */

@media (max-width: 999px) {
  .carousel-mobile {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .carousel-mobile::-webkit-scrollbar {
    display: none;
  }

  .carousel-mobile > * {
    flex: 0 0 100%;
    min-width: 0;
    scroll-snap-align: center;
  }
}

.carousel-dots {
  display: none;
  justify-content: center;
  align-items: center;
  gap: 0.55rem;
  margin-top: var(--space-md);
}

@media (max-width: 999px) {
  .carousel-dots {
    display: flex;
  }
}

.carousel-dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-border);
  transition: background var(--duration-sm) var(--ease-out), transform var(--duration-sm) var(--ease-spring);
}

.carousel-dots button.active {
  background: var(--color-terracotta);
  transform: scale(1.35);
}

.carousel-dots.on-dark button {
  background: rgba(255, 253, 249, 0.28);
}

.carousel-dots.on-dark button.active {
  background: var(--color-gold);
}

/* ==========================================================================
   Gallery lightbox
   ========================================================================== */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-md);
  background: rgba(10, 22, 29, 0.92);
  backdrop-filter: blur(6px);
  animation: lightbox-fade 220ms var(--ease-out);
}

.lightbox[hidden] {
  display: none;
}

@keyframes lightbox-fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.lightbox-figure {
  position: relative;
  max-width: min(1100px, 92vw);
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-figure img {
  max-width: 100%;
  max-height: 76vh;
  width: auto;
  height: auto;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}

.lightbox-figure figcaption {
  margin-top: var(--space-sm);
  color: var(--color-white);
  font-weight: 700;
  text-align: center;
}

.lightbox-close,
.lightbox-nav {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 253, 249, 0.12);
  color: var(--color-white);
  transition: background var(--duration-sm) var(--ease-out), transform var(--duration-sm) var(--ease-spring);
}

.lightbox-close:hover,
.lightbox-nav:hover {
  background: rgba(255, 253, 249, 0.22);
  transform: scale(1.06);
}

.lightbox-close svg,
.lightbox-nav svg {
  width: 22px;
  height: 22px;
}

.lightbox-close {
  top: var(--space-md);
  right: var(--space-md);
}

.lightbox-nav.prev {
  left: var(--space-sm);
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-nav.next {
  right: var(--space-sm);
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-nav.prev svg {
  transform: rotate(180deg);
}

@media (max-width: 640px) {
  .lightbox-nav {
    width: 40px;
    height: 40px;
  }
  .lightbox-close {
    top: var(--space-sm);
    right: var(--space-sm);
  }
}

/* ==========================================================================
   Brand statement band (tagline pairing, sits between trust bar and services)
   ========================================================================== */

.brand-statement {
  padding-block: var(--space-lg);
  border-bottom: 1px solid var(--color-border-soft);
  text-align: center;
}

.brand-statement-title {
  font-family: var(--font-serif-accent);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(1.25rem, 1.05rem + 1vw, 1.75rem);
  color: var(--color-navy-deep);
  letter-spacing: -0.01em;
  margin-bottom: 0.4em;
}

.brand-statement-sub {
  font-size: 1rem;
  color: var(--color-navy-mid);
  max-width: 46ch;
  margin-inline: auto;
}

/* ==========================================================================
   Service areas — wider grid to fit up to 11 cities cleanly
   ========================================================================== */

@media (min-width: 860px) {
  .area-list.wide {
    grid-template-columns: repeat(4, 1fr);
  }
}
