/* ==========================================================================
   Berry Bros Cleaning Services — Design System
   Navy-forward, premium-contractor aesthetic. Inter throughout.
   ========================================================================== */

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

:root {
  /* Brand palette */
  --navy: #0B1E3C;
  --royal: #1652A8;
  --ocean: #2E86C1;
  --sky: #AED6F1;
  --gold: #F5C518;
  --white: #FFFFFF;
  --ink: #0A1020;

  /* Functional tokens */
  --bg: var(--white);
  --bg-alt: #F4F8FC;
  --text: var(--ink);
  --text-muted: #5A6478;
  --border: #DDE5F0;
  --shadow-sm: 0 4px 16px rgba(11, 30, 60, 0.08);
  --shadow-md: 0 12px 40px rgba(11, 30, 60, 0.12);

  /* Type */
  --font-display: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Motion */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --speed-fast: 0.2s;
  --speed-med: 0.45s;
  --speed-slow: 0.8s;
}

html {
  scroll-behavior: smooth;
}

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

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

ul, ol { list-style: none; }

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (min-width: 768px) {
  .container { padding: 0 2.5rem; }
}

/* ==========================================================================
   Typography
   ========================================================================== */

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

h1 { font-size: clamp(2.5rem, 6vw, 4.25rem); font-weight: 800; }
h2 { font-size: clamp(2rem, 4.5vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.05rem; }

p { color: var(--text-muted); font-size: 1.02rem; }

.lead {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--text-muted);
  max-width: 56ch;
}

.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--royal);
  margin-bottom: 0.85rem;
}

.section--dark .eyebrow { color: var(--sky); }

.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark p:not(.lead-strong) { color: var(--white); }

.section--dark p { color: rgba(255,255,255,0.72); }

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.9rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
  transition: transform var(--speed-fast) var(--ease), box-shadow var(--speed-fast) var(--ease), background var(--speed-fast) var(--ease), color var(--speed-fast) var(--ease);
  white-space: nowrap;
}

.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--royal);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}
.btn--primary:hover { background: #1d5fc0; box-shadow: var(--shadow-md); }

.btn--ghost {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--border);
}
.btn--ghost:hover { border-color: var(--royal); color: var(--royal); }

.btn--on-dark {
  background: var(--white);
  color: var(--navy);
}
.btn--on-dark:hover { background: var(--sky); }

.btn--ghost-on-dark {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.32);
}
.btn--ghost-on-dark:hover { border-color: var(--white); }

.btn--gold {
  background: var(--gold);
  color: var(--navy);
}
.btn--gold:hover { background: #ffd84d; }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
}

/* ==========================================================================
   Navigation
   ========================================================================== */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  padding: 1.1rem 0;
  transition: background var(--speed-fast) ease, box-shadow var(--speed-fast) ease, padding var(--speed-fast) ease;
}

.nav.is-scrolled {
  background: rgba(11, 30, 60, 0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 24px rgba(11,30,60,0.18);
  padding: 0.7rem 0;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  color: var(--white);
}

.nav__brand img { height: 34px; width: auto; }

.nav__links {
  display: none;
  align-items: center;
  gap: 2rem;
}

.nav__links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: rgba(255,255,255,0.82);
  position: relative;
  padding: 0.3rem 0;
  transition: color var(--speed-fast) ease;
}

.nav__links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 1.5px;
  background: var(--white);
  transition: width var(--speed-fast) var(--ease);
}

.nav__links a:hover { color: var(--white); }
.nav__links a:hover::after { width: 100%; }
.nav__links a.is-active { color: var(--white); }
.nav__links a.is-active::after { width: 100%; background: var(--gold); }

.nav__actions { display: flex; align-items: center; gap: 0.85rem; }

.nav__phone {
  display: none;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--white);
  white-space: nowrap;
  transition: color var(--speed-fast) ease;
}

.nav__phone:hover { color: var(--gold); }

.nav__cta { display: none; }

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

@media (min-width: 1100px) {
  .nav__phone { display: inline-flex; }
}

.nav__toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 0.5rem;
}

.nav__toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  transition: transform var(--speed-fast) var(--ease), opacity var(--speed-fast) ease;
}

.nav__toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; }
.nav__toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (min-width: 920px) {
  .nav__toggle { display: none; }
}

.nav__mobile {
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 400;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  transform: translateY(-100%);
  transition: transform var(--speed-med) var(--ease);
}

.nav__mobile.is-open { transform: translateY(0); }

.nav__mobile a {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
}

.nav__mobile-phone {
  font-size: 1.05rem !important;
  font-weight: 700;
  color: var(--gold) !important;
}

@media (min-width: 920px) {
  .nav__mobile { display: none; }
}

/* ==========================================================================
   Sections
   ========================================================================== */

section { position: relative; }

.section {
  padding: clamp(4rem, 9vw, 7.5rem) 0;
}

.section--dark {
  background: var(--navy);
  color: var(--white);
}

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

.section-head {
  max-width: 640px;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

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

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

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(180deg, var(--navy) 0%, #122b52 60%, #163660 100%);
  color: var(--white);
  overflow: hidden;
  padding-top: 6rem;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 18% 20%, rgba(46, 134, 193, 0.28), transparent 45%),
    radial-gradient(circle at 85% 75%, rgba(245, 197, 24, 0.10), transparent 40%);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 980px) {
  .hero__inner {
    grid-template-columns: 1.05fr 1fr;
    gap: 2rem;
  }
}

.hero__inner--solo {
  grid-template-columns: 1fr;
  text-align: center;
}

.hero__inner--solo .hero__copy {
  max-width: 60ch;
  margin: 0 auto;
}

.hero__inner--solo .btn-row,
.hero__inner--solo .hero__trust {
  justify-content: center;
}

.hero__copy h1 { color: var(--white); margin-bottom: 1.25rem; }
.hero__copy .lead { color: rgba(255,255,255,0.78); margin-bottom: 2rem; }

.hero__trust {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
}

.hero__trust strong { color: var(--white); font-weight: 700; }

/* ============ Quick trust strip ============ */
.trust-strip {
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.08);
  position: relative;
  z-index: 1;
}

.trust-strip__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem 2.5rem;
  padding: 1.1rem 0;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.62);
}

.trust-strip__inner span { position: relative; }

@media (min-width: 768px) {
  .trust-strip__inner span:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -1.25rem;
    top: 50%;
    transform: translateY(-50%);
    width: 4px; height: 4px;
    border-radius: 50%;
    background: var(--gold);
  }
}

/* ============ Scroll-stop transformation reveal ============ */
.scroll-stop {
  position: relative;
  height: 220vh;
  background: var(--navy);
}

/* Bottom edge fade — sits at the bottom of the section in document flow.
   Enters the viewport only as the section exits, giving a seamless blend
   into the white section below without covering the caption. */
.scroll-stop::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 38vh;
  background: linear-gradient(to bottom, transparent 0%, var(--white) 82%);
  pointer-events: none;
  z-index: 1;
}

@media (max-width: 1024px) { .scroll-stop { height: 180vh; } }
@media (max-width: 640px)  { .scroll-stop { height: 150vh; } }

.scroll-stop__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  background: var(--navy);
  z-index: 0;
  opacity: 0;
  transform: scale(1.025);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.scroll-stop.is-entered .scroll-stop__sticky {
  opacity: 1;
  transform: scale(1);
}

/* Top edge fade — stays pinned, blends into the navy hero above */
.scroll-stop__sticky::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 26%;
  background: linear-gradient(to bottom, var(--navy) 0%, transparent 100%);
  pointer-events: none;
  z-index: 3;
}

.scroll-stop__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.scroll-stop__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11,30,60,0.92) 0%, rgba(11,30,60,0.32) 30%, transparent 58%);
  pointer-events: none;
  z-index: 1;
}

.scroll-stop__caption {
  position: absolute;
  z-index: 4;
  left: 0;
  right: 0;
  bottom: 0;
  max-width: 720px;
  padding: clamp(2rem, 6vw, 3rem) clamp(1.5rem, 6vw, 5rem) clamp(3rem, 8vw, 5rem);
  color: var(--white);
}

.scroll-stop__caption h2 {
  color: var(--white);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  margin-bottom: 0.65rem;
}

.scroll-stop__caption p {
  color: rgba(255,255,255,0.78);
  max-width: 54ch;
  font-size: 1rem;
  margin: 0;
}

.scroll-stop__progress {
  position: absolute;
  z-index: 4;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(255,255,255,0.12);
}

.scroll-stop__progress-bar {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--ocean), var(--gold));
}

@media (prefers-reduced-motion: reduce) {
  .scroll-stop { height: auto; }
  .scroll-stop__sticky {
    position: relative;
    height: 70vh;
    min-height: 480px;
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.scroll-cue {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  z-index: 2;
}

.scroll-cue__line {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { transform: scaleY(0.6); opacity: 0.4; }
  50% { transform: scaleY(1); opacity: 1; }
}

/* ==========================================================================
   Trust bar
   ========================================================================== */

.trust-bar {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 768px) {
  .trust-bar { grid-template-columns: repeat(4, 1fr); }
}

.trust-item {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding: 1.5rem;
  border-radius: 16px;
  background: var(--white);
  border: 1px solid var(--border);
  transition: transform var(--speed-fast) var(--ease), box-shadow var(--speed-fast) var(--ease);
}

.trust-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }

.trust-item__icon {
  width: 42px; height: 42px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg-alt);
  color: var(--royal);
}

.trust-item h4 { color: var(--navy); margin-bottom: 0.15rem; }
.trust-item p { font-size: 0.88rem; margin: 0; }

/* ==========================================================================
   Cards — packages / services
   ========================================================================== */

.grid {
  display: grid;
  gap: 1.5rem;
}

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

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform var(--speed-med) var(--ease), box-shadow var(--speed-med) var(--ease), border-color var(--speed-fast) ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(22, 82, 168, 0.25);
}

.card--featured {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
  position: relative;
}

.card--featured h3,
.card--featured .card__price { color: var(--white); }
.card--featured p { color: rgba(255,255,255,0.72); }
.card--featured .card__list li::before { color: var(--gold); }

.card__badge {
  position: absolute;
  top: -14px; right: 1.75rem;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.45rem 1rem;
  border-radius: 999px;
}

.card__price {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
}

.card__price span {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
}

.card--featured .card__price span { color: rgba(255,255,255,0.6); }

.pricing-note {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.85rem;
  color: rgba(11,30,60,0.55);
}

.card__list { display: flex; flex-direction: column; gap: 0.6rem; margin-top: 0.25rem; }

.card__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.92rem;
  color: inherit;
}

.card__list li::before {
  content: '✓';
  color: var(--royal);
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

/* ==========================================================================
   Steps / how it works
   ========================================================================== */

.steps {
  display: grid;
  gap: 2rem;
  counter-reset: step;
}

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

.step {
  position: relative;
  padding-top: 2.5rem;
}

.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-display);
  font-size: 2.75rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--sky);
  -webkit-text-stroke: 1.5px var(--royal);
  display: block;
  margin-bottom: 0.75rem;
}

.section--dark .step::before { color: var(--navy); -webkit-text-stroke: 1.5px var(--sky); }

/* ==========================================================================
   Before / after strip
   ========================================================================== */

.compare {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: var(--bg-alt);
  border: 1px solid var(--border);
}

.compare__half {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.compare__half--before {
  clip-path: inset(0 50% 0 0);
  background: repeating-linear-gradient(135deg, #d8e2ef 0 16px, #c7d6e8 16px 32px);
  color: var(--navy);
}

.compare__half--after {
  background: repeating-linear-gradient(135deg, #0f2a52 0 16px, #133464 16px 32px);
  color: var(--white);
}

.compare__divider {
  position: absolute;
  top: 0; bottom: 0; left: 50%;
  width: 3px;
  background: var(--white);
  box-shadow: 0 0 0 1px rgba(11,30,60,0.15);
  transform: translateX(-50%);
}

.compare__divider::after {
  content: '↔';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--white);
  color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  box-shadow: var(--shadow-sm);
}

/* ==========================================================================
   Testimonials
   ========================================================================== */

.testimonial {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.testimonial__stars { color: var(--gold); letter-spacing: 0.15em; font-size: 0.95rem; }

.testimonial__quote { font-size: 1rem; color: var(--text); font-style: italic; }

.testimonial__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.testimonial__avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--bg-alt);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  color: var(--royal);
  font-size: 0.85rem;
}

.testimonial--placeholder {
  border-style: dashed;
  background: var(--bg-alt);
  align-items: center;
  text-align: center;
  color: var(--text-muted);
}

/* ==========================================================================
   CTA banner
   ========================================================================== */

.cta-banner {
  background: linear-gradient(120deg, var(--navy), #163a6e);
  border-radius: 28px;
  padding: clamp(2.5rem, 6vw, 4.5rem);
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  align-items: flex-start;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.cta-banner::after {
  content: '';
  position: absolute;
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(245,197,24,0.18), transparent 70%);
  top: -120px; right: -100px;
  border-radius: 50%;
}

.cta-banner h2 { color: var(--white); max-width: 22ch; }
.cta-banner p { color: rgba(255,255,255,0.75); max-width: 48ch; }

.cta-banner__contact { margin-top: 0.5rem; font-size: 0.85rem; }
.cta-banner__contact a { color: var(--white); text-decoration: underline; text-underline-offset: 3px; }
.cta-banner__contact a:hover { color: var(--gold); }

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

/* ==========================================================================
   Tables (pricing comparison)
   ========================================================================== */

.table-wrap {
  overflow-x: auto;
  border-radius: 18px;
  border: 1px solid var(--border);
}

table.compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
  background: var(--white);
}

.compare-table th, .compare-table td {
  padding: 1rem 1.25rem;
  text-align: left;
  font-size: 0.92rem;
  border-bottom: 1px solid var(--border);
}

.compare-table thead th {
  background: var(--bg-alt);
  color: var(--navy);
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.compare-table td:first-child, .compare-table th:first-child { color: var(--navy); font-weight: 600; }

.compare-table tbody tr:last-child td { border-bottom: none; }

.compare-table .yes { color: var(--royal); font-weight: 800; }
.compare-table .no { color: var(--text-muted); }

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

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.35rem 0;
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--navy);
  text-align: left;
}

.faq-item__icon {
  flex-shrink: 0;
  width: 26px; height: 26px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  transition: transform var(--speed-fast) var(--ease), border-color var(--speed-fast) ease;
  color: var(--royal);
}

.faq-item.is-open .faq-item__icon { transform: rotate(45deg); border-color: var(--royal); }

.faq-item__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--speed-med) var(--ease);
}

.faq-item__a p { padding-bottom: 1.35rem; max-width: 64ch; }

/* ==========================================================================
   Forms
   ========================================================================== */

.form {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .form--2col { grid-template-columns: 1fr 1fr; }
  .form--2col .field--full { grid-column: 1 / -1; }
}

.field { display: flex; flex-direction: column; gap: 0.5rem; }

.field label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.01em;
}

.field input,
.field select,
.field textarea {
  font-family: inherit;
  font-size: 0.95rem;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--text);
  transition: border-color var(--speed-fast) ease, box-shadow var(--speed-fast) ease;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--royal);
  box-shadow: 0 0 0 4px rgba(22,82,168,0.12);
}

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

.form-note {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ==========================================================================
   Map / service area
   ========================================================================== */

.area-map {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background:
    linear-gradient(135deg, var(--bg-alt) 25%, transparent 25%) -10px 0/20px 20px,
    linear-gradient(225deg, var(--bg-alt) 25%, transparent 25%) -10px 0/20px 20px,
    linear-gradient(315deg, var(--bg-alt) 25%, transparent 25%) 0 0/20px 20px,
    linear-gradient(45deg, var(--bg-alt) 25%, var(--white) 25%) 0 0/20px 20px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
}

.area-map__pin {
  position: absolute;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--royal);
  box-shadow: 0 0 0 6px rgba(22,82,168,0.18);
}

.area-map__pin--gold { background: var(--gold); box-shadow: 0 0 0 6px rgba(245,197,24,0.25); }

.area-map__label {
  position: absolute;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--navy);
  background: rgba(255,255,255,0.92);
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  white-space: nowrap;
  transform: translate(12px, -50%);
}

.area-list {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: repeat(2, 1fr);
}

.area-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 600;
  color: var(--navy);
  font-size: 0.95rem;
}

.area-list li::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--ocean);
  flex-shrink: 0;
}

/* ==========================================================================
   Meet Berry Bros — owner/team photo placeholders
   ========================================================================== */

.owner-photos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.owner-photos__frame {
  aspect-ratio: 3 / 4;
  border-radius: 20px;
  border: 1.5px dashed var(--border);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(11,30,60,0.4);
}

.meet-contact {
  margin-top: 1.25rem;
  font-size: 0.92rem;
}

.meet-contact a { color: var(--royal); font-weight: 600; }
.meet-contact a:hover { color: var(--navy); }

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

.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  padding: 4rem 0 2rem;
}

.footer__grid {
  display: grid;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

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

.footer__brand { display: flex; align-items: center; gap: 0.6rem; font-weight: 800; font-size: 1.1rem; color: var(--white); margin-bottom: 0.85rem; }
.footer__brand img { height: 30px; width: auto; }

.footer h4 { color: var(--white); font-size: 0.85rem; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 1rem; }

.footer ul { display: flex; flex-direction: column; gap: 0.6rem; font-size: 0.92rem; }

.footer ul a { transition: color var(--speed-fast) ease; }
.footer ul a:hover { color: var(--white); }

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.12);
  font-size: 0.8rem;
}

.footer__social { display: flex; gap: 0.75rem; }
.footer__social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  transition: border-color var(--speed-fast) ease, background var(--speed-fast) ease;
}
.footer__social a:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.4); }

/* ==========================================================================
   Reveal-on-scroll utility (driven by JS / GSAP fallback)
   ========================================================================== */

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; }
}

/* ==========================================================================
   Page hero (interior pages)
   ========================================================================== */

.page-hero {
  background: var(--navy);
  color: var(--white);
  padding: clamp(8rem, 16vw, 11rem) 0 clamp(3rem, 6vw, 5rem);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 80% 20%, rgba(46,134,193,0.22), transparent 50%);
}

.page-hero__inner { position: relative; z-index: 1; max-width: 760px; }
.page-hero h1 { color: var(--white); }
.page-hero .lead { color: rgba(255,255,255,0.75); }

.breadcrumb {
  display: flex;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 1.25rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

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

/* ==========================================================================
   Skip link / accessibility
   ========================================================================== */

.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  background: var(--white);
  color: var(--navy);
  padding: 0.75rem 1.25rem;
  border-radius: 8px;
  z-index: 1000;
  font-weight: 600;
  transition: top var(--speed-fast) ease;
}

.skip-link:focus { top: 1rem; }

:focus-visible {
  outline: 2px solid var(--royal);
  outline-offset: 3px;
}

/* ==========================================================================
   404
   ========================================================================== */

.error-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--navy);
  color: var(--white);
  padding: 2rem;
}

.error-page__code {
  font-size: clamp(5rem, 18vw, 9rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--sky);
  -webkit-text-stroke: 2px var(--white);
  line-height: 1;
}
