/*
  Acadiana Pressure Washing — custom theme
  Loads after fonts.css → foundation-base.css → module-system.css.
  All brand color comes from CSS variables (hydrated from content.json);
  neutrals (concrete grays) are theme-owned.

  Color jobs:
    --color-primary  water blue   → CTAs, links, interactive, wash-line glow
    --color-gold     harvest gold → prices + free-estimate marks ONLY
    --color-ink      logo navy    → headings, dark surfaces
    concrete grays                → text, borders, tints
*/

/* ── Tokens (override foundation + module-system) ────────────── */
:root {
  --color-primary:     #0b79e0;
  --color-gold:        #d9a441;
  --color-ink:         #14273e;

  /* light "clean concrete" surfaces */
  --color-bg:          #f5f7f9;
  --color-surface:     #ffffff;
  --color-surface-2:   #eceff2;
  --color-surface-3:   #e2e7eb;
  --color-tint:        #eef1f4;

  --color-text:        #253243;
  --color-text-muted:  #5b6770;
  --color-text-dim:    #97a1aa;

  --color-border:      rgba(20, 39, 62, 0.1);
  --color-border-hi:   rgba(20, 39, 62, 0.22);

  /* module-system interactive tokens → brand jobs (all derived, no raw hex) */
  --color-accent:      var(--color-primary);
  --color-accent-hi:   color-mix(in srgb, var(--color-primary) 86%, black);
  --color-accent-dim:  color-mix(in srgb, var(--color-primary) 10%, transparent);
  --color-accent-2:    var(--color-gold);
  --color-accent-2-dim: color-mix(in srgb, var(--color-gold) 14%, transparent);
  --color-primary-soft: color-mix(in srgb, var(--color-primary) 42%, white);

  --font-display:      'Archivo', system-ui, sans-serif;
  --font-body:         'Inter', system-ui, sans-serif;
  --font-price:        'Space Mono', 'Courier New', monospace;

  --shadow-sm:  0 2px 8px rgba(20, 39, 62, 0.07);
  --shadow:     0 6px 24px rgba(20, 39, 62, 0.11);
  --shadow-lg:  0 14px 48px rgba(20, 39, 62, 0.18);

  /* the wash line — hero split geometry (top-x / bottom-x of the edge) */
  --wash-top: 62%;
  --wash-bottom: 44%;
  --hero-overlay: 0.5;

  /* L3 form neutrals */
  --sl-border-src: #dce3e9;
}

html { scroll-padding-top: 5rem; }

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
}

h1, h2, h3 { color: var(--color-ink); font-family: var(--font-display); }

/* ── Shared layout ───────────────────────────────────────────── */
.wrap {
  width: 100%;
  max-width: var(--container, 1200px);
  margin-inline: auto;
  padding-inline: var(--container-padding, 1rem);
}

/* middle sections: tightened 40% from the original clamp(3.5rem, 8vw, 6.5rem)
   — hero and footer keep their own padding */
.section { padding: clamp(2.1rem, 4.8vw, 3.9rem) 0; }
.section--tint { background: var(--color-tint); }

/* the one dark band in the middle — rhythm: light → light → DARK → light */
.section--dark { background: var(--color-ink); }
.section--dark h2, .section--dark h3 { color: #fff; }
.section--dark .mod-eyebrow { color: var(--color-primary-soft); }
.section--dark .mod-eyebrow::before { background: var(--color-primary-soft); }
.section--dark .mod-sub { color: rgba(219, 228, 238, 0.7); }

.mod-h { margin-bottom: 0.6rem; }
.mod-sub { font-size: 1rem; }

/* ── Buttons ─────────────────────────────────────────────────── */
.btn-wash {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.7em 1.6em;
  background: var(--color-primary);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  text-decoration: none;
  border: none;
  border-radius: 8px;
  transition: background 0.18s ease, transform 0.12s ease, box-shadow 0.18s ease;
}
.btn-wash:hover, .btn-wash:focus-visible {
  background: var(--color-accent-hi);
  color: #fff;
  text-decoration: none;
  box-shadow: 0 6px 18px color-mix(in srgb, var(--color-primary) 35%, transparent);
  transform: translateY(-1px);
}
.btn-wash--lg { font-size: 1.05rem; padding: 0.85em 1.9em; }

/* ── Header / nav ────────────────────────────────────────────── */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 0.6rem;
}
.nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--color-ink);
}
.nav__brand:hover, .nav__brand:focus-visible { text-decoration: none; }
.nav__brand img { width: 44px; height: 44px; object-fit: contain; }
.nav__name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.02rem;
  line-height: 1.15;
  color: var(--color-ink);
}
.nav__links {
  display: none;
  list-style: none;
  gap: 1.6rem;
  margin: 0;
}
.nav__links a {
  color: var(--color-text);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.92rem;
  padding-block: 0.5rem;
}
.nav__links a:hover, .nav__links a:focus-visible { color: var(--color-primary); }
.nav__cta { flex-shrink: 0; }

@media (min-width: 900px) {
  .nav__links { display: flex; }
}

/* ── HERO — the wash line ────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 92svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--color-ink);
}

.hero__media {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-image: url('/assets/heroPS.jpg'); /* fallback; hydrated from content.json */
}
/* the "before": grime */
.hero__media--before {
  filter: grayscale(0.85) brightness(0.52) sepia(0.18) contrast(0.95);
}
/* the "after": clean + vivid, revealed by the wash line */
.hero__media--after {
  filter: saturate(1.12) brightness(1.02);
  clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
  transition: clip-path 1.3s cubic-bezier(0.6, 0.05, 0.25, 1) 0.35s;
}
body.washed .hero__media--after {
  clip-path: polygon(var(--wash-top) 0, 100% 0, 100% 100%, var(--wash-bottom) 100%);
}
body.no-sweep .hero__media--after { transition: none; }

/* spray edge — thin glowing band on the same geometry */
.hero__washline {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(255, 255, 255, 0.95), color-mix(in srgb, var(--color-primary) 45%, white));
  filter: drop-shadow(0 0 14px color-mix(in srgb, var(--color-primary) 75%, transparent));
  clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
  transition: clip-path 1.3s cubic-bezier(0.6, 0.05, 0.25, 1) 0.35s;
  opacity: 0.9;
  pointer-events: none;
}
body.washed .hero__washline {
  clip-path: polygon(
    var(--wash-top) 0,
    calc(var(--wash-top) + 0.45%) 0,
    calc(var(--wash-bottom) + 0.45%) 100%,
    var(--wash-bottom) 100%
  );
}
body.no-sweep .hero__washline { transition: none; }

/* legibility scrim over the grimy side */
.hero__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgb(9 22 38 / calc(var(--hero-overlay) + 0.3)) 0%,
    rgb(9 22 38 / calc(var(--hero-overlay) - 0.05)) 45%,
    rgb(9 22 38 / 0.05) 72%,
    transparent 88%
  );
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  padding-block: clamp(5rem, 14vh, 8rem);
  max-width: min(var(--container, 1200px), 100%);
}
.hero__eyebrow {
  font-family: var(--font-price);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-primary-soft);
  margin-bottom: 1.1rem;
}
.hero h1 {
  color: #fff;
  font-weight: 900;
  font-size: clamp(2.3rem, 6.5vw, 4.3rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  max-width: 13ch;
  margin-bottom: 1.1rem;
  text-wrap: balance;
}
.hero__sub {
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1rem, 2vw, 1.15rem);
  max-width: 46ch;
  margin-bottom: 1.8rem;
}
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 1rem;
}

/* the price chip — gold means money; slanted edges echo the wash line */
.price-chip {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0.55em 1.5em;
  font-family: var(--font-price);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--color-gold);
  background: rgba(9, 22, 38, 0.72);
  border: 1px solid color-mix(in srgb, var(--color-gold) 55%, transparent);
  clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
}
.price-chip strong { font-size: 1.25em; font-weight: 700; margin-left: 0.15em; }

.hero__note {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.85rem;
  max-width: 46ch;
}

/* ── SERVICES — priced rows, no cards ────────────────────────── */
.svc-list { border-top: 2px solid var(--color-ink); margin-top: 2.2rem; }
.svc-row {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  padding: 1.8rem 0.2rem;
  border-bottom: 1px solid var(--color-border-hi);
}
.svc-row--featured { border-left: 4px solid var(--color-primary); padding-left: 1.1rem; }
.svc-row__flag {
  display: inline-block;
  font-family: var(--font-price);
  font-weight: 700;
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 0.4rem;
}
.svc-row__name {
  font-size: clamp(1.5rem, 3.4vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.015em;
  margin-bottom: 0.35rem;
}
.svc-row__desc { color: var(--color-text-muted); max-width: 52ch; }
.svc-row__meta {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  flex-shrink: 0;
}
.svc-price {
  font-family: var(--font-price);
  font-weight: 700;
  font-size: clamp(1.5rem, 3.2vw, 2rem);
  color: var(--color-gold);
  white-space: nowrap;
}
.svc-row__link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0.5em 1.15em;
  color: var(--color-primary);
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
  border: 1.5px solid var(--color-primary);
  border-radius: 8px;
  white-space: nowrap;
  transition: background 0.15s ease, color 0.15s ease;
}
.svc-row__arrow { display: inline-block; transition: transform 0.15s ease; }
.svc-row__link:hover, .svc-row__link:focus-visible {
  background: var(--color-primary);
  color: #fff;
}
.svc-row__link:hover .svc-row__arrow { transform: translateX(3px); }

@media (min-width: 760px) {
  .svc-row {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

/* ── STATS — one ruled row of badges ─────────────────────────── */
.stats { padding: clamp(2.8rem, 6vw, 4.5rem) 0; background: var(--color-surface); }
.stats__h {
  font-size: 0.82rem;
  font-family: var(--font-price);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 1.6rem;
}
.stats__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.4rem;
}
.stat { border-left: 3px solid var(--color-primary); padding-left: 1rem; }
.stat__label {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.18rem;
  color: var(--color-ink);
  line-height: 1.2;
}
.stat__detail {
  display: block;
  color: var(--color-text-muted);
  font-size: 0.88rem;
  margin-top: 0.25rem;
}
@media (min-width: 720px) {
  .stats__row { grid-template-columns: repeat(3, 1fr); gap: 2.5rem; }
}

/* ── ABOUT — the owner, featured on the dark navy band ───────── */
.about {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.2rem;
  align-items: center;
}
.about__media img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 14px;
  border: 4px solid rgba(255, 255, 255, 0.14);
  box-shadow: var(--shadow-lg);
}
.about__name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.5rem, 3vw, 1.9rem);
  color: #fff;
  margin: 1.1rem 0 0.7rem;
}
.about__role {
  font-family: var(--font-price);
  font-weight: 700;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-primary-soft);
  margin-left: 0.55rem;
}
/* credentials read as stamped marks (same slanted language as the price chip),
   not footnotes */
.about__creds {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  padding: 0;
  margin: 0 0 1.2rem;
}
.about__creds li {
  font-family: var(--font-price);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 0.5em 1.1em;
  clip-path: polygon(7px 0, 100% 0, calc(100% - 7px) 100%, 0 100%);
}
.about__pitch {
  color: rgba(219, 228, 238, 0.82);
  font-size: clamp(1.08rem, 2vw, 1.22rem);
  line-height: 1.65;
  max-width: 46ch;
}
.about__call { margin-top: 1.5rem; }

@media (min-width: 900px) {
  .about { grid-template-columns: 6fr 6fr; gap: 4rem; }
}

/* ── AREAS — typographic city list ───────────────────────────── */
.areas__list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.4rem 1.2rem;
  margin: 1.6rem 0 0.9rem;
  padding: 0;
}
.areas__list li {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.7rem, 4.5vw, 2.8rem);
  letter-spacing: -0.015em;
  color: var(--color-ink);
}
.areas__list li:not(:last-child)::after {
  content: '/';
  color: var(--color-primary);
  font-weight: 400;
  margin-left: 1.2rem;
}
.areas__note { color: var(--color-text-muted); font-size: 0.95rem; }

/* ── ESTIMATE — dark band (the one dark moment) ──────────────── */
.estimate {
  background: linear-gradient(180deg, #182a41 0%, var(--color-ink) 60%);
  color: #dbe4ee;
  padding: clamp(4.5rem, 9vw, 7rem) 0 clamp(3.5rem, 7vw, 5.5rem);
  clip-path: polygon(0 2.2rem, 100% 0, 100% 100%, 0 100%);
  margin-top: 1rem;
}
.estimate .mod-h { color: #fff; }
.estimate .mod-eyebrow { color: var(--color-gold); }
.estimate .mod-eyebrow::before { background: var(--color-gold); }
.estimate__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.6rem;
}
.estimate__lead { color: rgba(219, 228, 238, 0.85); max-width: 44ch; margin-top: 0.4rem; }
.estimate__facts {
  margin-top: 1.8rem;
  display: grid;
  gap: 1.1rem;
}
.estimate__facts dt {
  font-family: var(--font-price);
  font-weight: 700;
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(219, 228, 238, 0.55);
  margin-bottom: 0.15rem;
}
.estimate__facts dd { margin: 0; font-size: 1.02rem; }
.estimate__facts a { color: #fff; text-decoration: none; font-weight: 600; }
.estimate__facts a:hover, .estimate__facts a:focus-visible {
  color: var(--color-primary-soft);
  outline-color: var(--color-primary-soft);
}

@media (min-width: 980px) {
  .estimate__grid { grid-template-columns: 5fr 6fr; gap: 4rem; align-items: start; }
}

/* ── L3 form (visual restyle; logic untouched) ───────────────── */
.sl-card {
  width: 100%;
  background: var(--sl-surface, var(--color-surface));
  border-radius: var(--sl-radius, 10px);
  padding: clamp(1.5rem, 4vw, 2.4rem);
  box-shadow: var(--shadow-lg);
  color: var(--sl-text, var(--color-ink));
}
.sl-header h3 {
  font-size: 1.45rem;
  font-weight: 800;
  margin-bottom: 0.4rem;
}
.sl-header p {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.sl-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 480px) { .sl-row { grid-template-columns: 1fr; } }

/* City / State / ZIP row of the structured address block */
.sl-row--csz { grid-template-columns: 1.4fr 0.6fr 1fr; }
@media (max-width: 480px) { .sl-row--csz { grid-template-columns: 1fr; } }

.sl-field { margin-bottom: 1.1rem; }
.sl-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--sl-text, var(--color-ink));
  margin-bottom: 0.4rem;
}
.sl-label .req { color: var(--sl-accent, var(--color-primary)); margin-left: 2px; }

.sl-input, .sl-select, .sl-textarea {
  width: 100%;
  padding: 0.65rem 0.85rem;
  border: 1.5px solid var(--sl-border, var(--sl-border-src));
  border-radius: 8px;
  background: var(--sl-bg, var(--color-bg));
  color: var(--sl-text, var(--color-ink));
  font-size: 0.95rem;
  font-family: var(--font-body);
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
  min-height: 44px;
}
.sl-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%235b6770' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 2.25rem;
}
.sl-input:focus, .sl-select:focus, .sl-textarea:focus {
  border-color: var(--sl-accent, var(--color-primary));
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--sl-accent, var(--color-primary)) 14%, transparent);
}
.sl-input.error, .sl-select.error, .sl-textarea.error { border-color: #d64545; }
.sl-textarea { resize: vertical; min-height: 110px; }

.sl-err { font-size: 0.78rem; color: #d64545; margin-top: 0.3rem; display: none; }
.sl-err.show { display: block; }

.sl-hp { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }

.sl-btn {
  width: 100%;
  padding: 0.9rem;
  border: none;
  border-radius: 8px;
  background: var(--sl-accent, var(--color-primary));
  color: #fff;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
  transition: background 0.15s, transform 0.1s;
  margin-top: 0.5rem;
  min-height: 48px;
}
.sl-btn:hover:not(:disabled) { background: var(--color-accent-hi); filter: none; }
.sl-btn:active:not(:disabled) { transform: scale(0.99); }
.sl-btn:disabled { opacity: 0.6; cursor: not-allowed; }
.sl-btn .sl-spin {
  display: none;
  width: 18px; height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: sl-spin 0.7s linear infinite;
  margin: 0 auto;
}
.sl-btn.loading .sl-btn-text { display: none; }
.sl-btn.loading .sl-spin { display: block; }
@keyframes sl-spin { to { transform: rotate(360deg); } }

.sl-global-err {
  background: #fdf0f0;
  border: 1px solid #f3c8c8;
  color: #a52a2a;
  border-radius: 8px;
  padding: 0.65rem 0.85rem;
  font-size: 0.875rem;
  margin-bottom: 1rem;
  display: none;
}
.sl-global-err.show { display: block; }

.sl-success { display: none; text-align: center; padding: 2rem 1rem; }
.sl-success.show { display: block; }
.sl-success-icon {
  width: 60px; height: 60px;
  margin: 0 auto 1rem;
  background: var(--color-accent-dim);
  color: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}
.sl-success h3 { font-size: 1.25rem; font-weight: 800; margin-bottom: 0.5rem; }
.sl-success p { color: var(--color-text-muted); font-size: 0.9rem; margin-inline: auto; }
.sl-form-wrap.hide { display: none; }

/* ── FOOTER ──────────────────────────────────────────────────── */
.footer {
  background: var(--color-ink);
  color: rgba(219, 228, 238, 0.75);
  padding: 2.8rem 0 2.2rem;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.8rem;
}
.footer__brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  color: #fff;
}
.footer__tag {
  font-size: 0.85rem;
  color: rgba(219, 228, 238, 0.55);
  margin: 0.3rem 0 0.8rem;
}
.footer__copy { font-size: 0.8rem; color: rgba(219, 228, 238, 0.45); }
.footer__links {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.4rem;
  padding: 0;
  margin: 0;
}
.footer__links a {
  color: rgba(219, 228, 238, 0.8);
  text-decoration: none;
  font-size: 0.9rem;
}
.footer__links a:hover, .footer__links a:focus-visible { color: var(--color-primary-soft); outline-color: var(--color-primary-soft); }
.footer__meta { font-size: 0.85rem; }
.footer__meta p { margin-bottom: 0.3rem; }

@media (min-width: 860px) {
  .footer__inner { grid-template-columns: 2fr 1fr 1fr; align-items: start; }
}

/* ── Module guards ───────────────────────────────────────────── */
/* Foundation's global button padding collapses injected widget buttons */
#s7-bubble { padding: 0; }
#s7-widget-root button { padding: 0; }
/* module filter pills manage their own padding */
.mod-filter { padding: 0.35rem 1rem; }

/* GLightbox controls: keep their own compact geometry */
.glightbox-container button { padding: 0; min-height: 0; min-width: 0; }

/* ── OUR WORK — C6 slider + C2 gallery in one balanced grid ──────
   Module JS is untouched; these #work-scoped rules out-rank the modules'
   injected styles (higher specificity) to restyle their containers only.
   The section provides its own native header, so the module-rendered
   headers, filter buttons, and category pills are hidden. */
.work-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.7rem;
  margin-top: 1.8rem;
}

/* hide module headers (native "Our Work" header replaces them) */
#work #sovran-c6 .mod-eyebrow, #work #sovran-c6 .mod-h, #work #sovran-c6 .mod-sub,
#work #sovran-c2 .mod-eyebrow, #work #sovran-c2 .mod-h, #work #sovran-c2 .mod-sub,
#work #sovran-c2 .mod-filters,   /* category filters — not needed here */
#work #sovran-c2 .c2-cat-pill,   /* "OUR WORK" badge overlays */
#work #sovran-c6 .c6-label {
  display: none;
}

/* gallery: 2 photos on top, 1 wide photo below (all breakpoints) */
#work #sovran-c2 .c2-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
}
#work #sovran-c2 .c2-item { aspect-ratio: 4 / 3; }
#work #sovran-c2 .c2-item:nth-child(3) {
  grid-column: 1 / -1;
  aspect-ratio: 2.1 / 1;
}

/* desktop: slider left at full column height, gallery right.
   The gallery's aspect-locked rows define the row height; the C6 cell
   stretches to it and the slider fills via flex — heights always match. */
@media (min-width: 900px) {
  .work-grid { grid-template-columns: 11fr 9fr; align-items: stretch; }
  #work #sovran-c6 { height: 100%; }
  #work #sovran-c6 .mod-wrap { height: 100%; }
  #work #sovran-c6 .c6-grid { display: block; height: 100%; }
  #work #sovran-c6 .c6-grid > div { height: 100%; display: flex; flex-direction: column; }
  #work #sovran-c6 .c6-slider { flex: 1; aspect-ratio: auto; min-height: 300px; }
}

/* ── FAQ — plain statements (single item; see index.html comment) ─ */
.faq-list { max-width: 760px; margin-top: 1.4rem; }
.faq-item { padding: 1.1rem 0; border-top: 1px solid var(--color-border-hi); }
.faq-item__q {
  font-size: 1.12rem;
  font-weight: 800;
  margin-bottom: 0.4rem;
}
.faq-item__a { color: var(--color-text-muted); max-width: 62ch; }

/* ── Motion discipline ───────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .hero__media--after, .hero__washline { transition: none; }
}
