/* =========================================================
   Pristine Home Services PSL — landing styles (LIGHT MODE)
   Mobile-first. Bright, clean canvas with cinematic dissolves
   into white instead of black.
   ========================================================= */

:root {
  --bg: #fafafa;
  --bg-elevated: #ffffff;
  --text: #1a1a1a;
  --text-muted: #666666;
  --text-dim: #999999;

  /* Accent system:
     --accent       — mint, used for filled CTAs (dark text on top)
     --accent-strong — darker mint, used for accent TEXT on white (passes AA)
     --accent-ink   — very dark green, used for text on accent backgrounds
     --accent-warm  — warm clay, used for the hero italic line
  */
  --accent: #a8d5ba;
  --accent-strong: #3f8a66;
  --accent-ink: #0f3a25;
  --accent-warm: #b07a4a;

  --rule: rgba(0, 0, 0, 0.08);
  --rule-strong: rgba(0, 0, 0, 0.16);
  --surface: #ffffff;
  --surface-2: #f3f3f3;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 8px 24px -8px rgba(0, 0, 0, 0.10);
  --shadow-lg: 0 30px 60px -30px rgba(0, 0, 0, 0.18);

  --radius: 14px;
  --radius-pill: 999px;

  --gutter: 20px;
  --max-w: 1280px;

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);

  --nav-h: 68px;

  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

@media (min-width: 480px) {
  :root { --gutter: 24px; }
}
@media (min-width: 1024px) {
  :root { --gutter: 48px; }
}

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

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}
a:hover { color: var(--accent-strong); }

button { font-family: inherit; }

::selection { background: var(--accent); color: var(--accent-ink); }

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.container--narrow { max-width: 820px; }

.section {
  padding: 64px 0;
  position: relative;
}
@media (min-width: 768px) {
  .section { padding: clamp(80px, 11vw, 140px) 0; }
}

.section__header {
  margin-bottom: 32px;
  max-width: 760px;
}
@media (min-width: 768px) {
  .section__header { margin-bottom: clamp(40px, 6vw, 72px); }
}
.section__title {
  font-family: 'Inter Tight', system-ui, sans-serif;
  font-weight: 500;
  font-size: clamp(1.75rem, 5.2vw, 3.5rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--text);
  margin: 0.4em 0 0.4em;
}
.section__sub {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 60ch;
  margin: 0;
}

.eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-strong);
  margin: 0;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: var(--radius-pill);
  font-family: 'Inter Tight', sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: transform 0.25s var(--ease-out), background 0.25s ease, color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  border: 1px solid transparent;
  text-align: center;
  min-height: 46px;
  white-space: nowrap;
}
.btn--primary {
  background: var(--accent);
  color: var(--accent-ink);
  border-color: var(--accent);
  box-shadow: 0 1px 0 rgba(0,0,0,0.04);
}
.btn--primary:hover {
  background: #92c8a7;
  border-color: #92c8a7;
  color: var(--accent-ink);
  transform: translateY(-1px);
  box-shadow: 0 12px 30px -10px rgba(63, 138, 102, 0.38);
}
.btn--ghost {
  background: var(--surface);
  color: var(--text);
  border-color: var(--rule-strong);
}
.btn--ghost:hover {
  border-color: var(--text);
  color: var(--text);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn--block { width: 100%; }

/* ---------- Nav ---------- */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: 14px 0;
  transition: background 0.3s ease, backdrop-filter 0.3s ease, border-color 0.3s ease, padding 0.3s ease;
  border-bottom: 1px solid transparent;
}
.nav--scrolled {
  background: rgba(250, 250, 250, 0.78);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom-color: var(--rule);
  padding: 10px 0;
}

.nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: var(--nav-h);
}

.nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  letter-spacing: -0.01em;
  font-size: 1rem;
  color: var(--text);
}
.nav__brand:hover { color: var(--text); }
/* Logo image — replaces the old gradient circle + text wordmark */
.nav__brand-img {
  height: 32px;
  width: auto;
  display: block;
}
@media (min-width: 768px) {
  .nav__brand-img { height: 44px; }
}
/* Legacy classes kept for backward compatibility — not currently in DOM */
.nav__brand-mark {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-warm));
  box-shadow: 0 0 0 1px var(--rule) inset, 0 2px 6px rgba(0,0,0,0.06);
}
.nav__brand-text { display: none; }

@media (min-width: 480px) {
  .nav__brand-text { display: inline; }
}

.nav__links {
  display: none;
  gap: 28px;
  font-size: 0.92rem;
  color: var(--text-muted);
}
.nav__links a:hover { color: var(--text); }

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

.nav__actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.nav__phone {
  display: none;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--rule-strong);
  font-size: 0.88rem;
  color: var(--text);
  background: var(--surface);
}
.nav__phone:hover { border-color: var(--accent-strong); color: var(--accent-strong); }

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

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

.nav__hamburger {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px; height: 44px;
  border: 1px solid var(--rule-strong);
  border-radius: 12px;
  background: var(--surface);
  cursor: pointer;
}
.nav__hamburger span {
  width: 18px; height: 1.5px;
  background: var(--text);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav--menu-open .nav__hamburger span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav--menu-open .nav__hamburger span:nth-child(2) { opacity: 0; }
.nav--menu-open .nav__hamburger span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

@media (min-width: 1100px) {
  .nav__hamburger { display: none; }
}

/* ---------- Mobile menu ---------- */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 90;
  padding: calc(var(--nav-h) + 32px) var(--gutter) var(--gutter);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.mobile-menu.is-open {
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu__links {
  display: flex;
  flex-direction: column;
  gap: 18px;
  font-family: 'Inter Tight', sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
}
.mobile-menu__links a { padding: 4px 0; }
.mobile-menu__phone { color: var(--accent-strong); }

/* =========================================================
   HERO — mobile-first
   Mobile: text stacked ABOVE a full-width video panel.
   Desktop (>=900px): asymmetric magazine — video right 2/3,
   headline left 1/3, with a mask-image edge dissolve.
   ========================================================= */

.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  background: var(--bg);
  display: flex;
  flex-direction: column;
}

.hero__content {
  order: 1;
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: calc(var(--nav-h) + 24px) var(--gutter) 28px;
  display: flex;
  flex-direction: column;
  /* No align-items on mobile — children stretch to 100% so text wraps.
     align-items: flex-start is reapplied on desktop where children are
     bounded by max-width: 38vw and we want left-aligned natural-width
     blocks inside the text panel. */
  text-align: left;
  will-change: transform, opacity;
}
.hero__content > * {
  /* Force flex children to be allowed to shrink below intrinsic min size
     so text wraps within parent width on narrow viewports. */
  min-width: 0;
  max-width: 100%;
}

.hero__media {
  order: 2;
  position: relative;
  flex: 1 1 auto;
  width: 100%;
  min-height: 320px;
  overflow: hidden;
  will-change: transform;
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform, opacity;
  transform-origin: center center;
}

/* Vignette + left-edge fade are decorative for the desktop overlay layout.
   On mobile the video panel stands alone; both are hidden. */
.hero__vignette {
  display: none;
}
.hero__fade-left {
  display: none;
}

/* Soft fade at the bottom edge of the video so it melts into the next
   section, both on mobile (inside .hero__media) and desktop (inside .hero). */
.hero__fade-bottom {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 70%, var(--bg) 100%);
  pointer-events: none;
}

/* Scroll cue belongs to the desktop overlay layout — hidden on mobile. */
.hero__scroll-cue { display: none; }

@media (min-width: 900px) {
  .hero {
    display: block;
    height: 100vh;
    min-height: 620px;
  }
  .hero__media {
    position: absolute;
    inset: 0;
    flex: none;
    min-height: 0;
    order: unset;
  }
  .hero__video {
    /* Desktop: video lives in the right 2/3 */
    left: 33.333%;
    width: 66.667%;
    /* Tight edge dissolve — left 130px of the video fades from transparent
       to opaque so the video melts into the white text panel. */
    -webkit-mask-image: linear-gradient(to right, transparent 0px, #000 130px, #000 100%);
            mask-image: linear-gradient(to right, transparent 0px, #000 130px, #000 100%);
  }
  .hero__vignette {
    display: block;
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% center, transparent 35%, rgba(250, 250, 250, 0.45) 100%);
    pointer-events: none;
  }
  .hero__fade-left { display: block; background: none; }
  .hero__fade-bottom {
    background: linear-gradient(to bottom, transparent 55%, var(--bg) 100%);
  }
  .hero__content {
    order: unset;
    width: 100%;
    height: 100%;
    padding: 0 var(--gutter);
    justify-content: center;
    align-items: flex-start;
  }
  .hero__content > * {
    max-width: 38vw;
  }
  .hero__scroll-cue {
    display: inline-flex;
  }
}

.hero__title {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: clamp(1.85rem, 8vw, 5.6rem);
  line-height: 1.04;
  letter-spacing: -0.025em;
  margin: 0.35em 0 0.5em;
  display: flex;
  flex-direction: column;
  color: var(--text);
  /* Allow long words like "Pristine" to break if absolutely necessary */
  overflow-wrap: break-word;
}
.hero__title .line { display: block; }
.hero__title .line--accent {
  font-style: italic;
  color: var(--accent-warm);
  font-weight: 500;
}

.hero__subhead {
  color: var(--text-muted);
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  margin: 0 0 32px;
  max-width: 42ch;
}

.hero__cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 22px;
}

.hero__trust {
  font-size: 0.85rem;
  color: var(--text-dim);
  margin: 0;
  letter-spacing: 0.02em;
}

.hero__scroll-cue {
  position: absolute;
  bottom: 24px;
  left: var(--gutter);
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-dim);
  transition: opacity 0.4s ease;
}
.hero__scroll-cue svg { animation: bob 2s ease-in-out infinite; }
.hero__scroll-cue:hover { color: var(--accent-strong); }

@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(4px); }
}

/* =========================================================
   TRUST BAND
   ========================================================= */

.trust {
  padding: 40px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  position: relative;
  z-index: 3;
  background: var(--bg);
}
.trust__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  text-align: center;
}
.trust__item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  color: var(--text);
}
.trust__item svg { color: var(--accent-strong); flex: none; }

@media (min-width: 760px) {
  .trust__list {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}

/* =========================================================
   HOW IT WORKS
   ========================================================= */

.how__steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
.how__step {
  padding: 32px 28px;
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  background: var(--surface);
  position: relative;
  transition: border-color 0.3s ease, transform 0.3s var(--ease-out), box-shadow 0.3s ease;
  box-shadow: var(--shadow-sm);
}
.how__step:hover {
  border-color: var(--rule-strong);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.how__num {
  display: block;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.2em;
  color: var(--accent-strong);
  margin-bottom: 14px;
}
.how__step h3 {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 500;
  font-size: 1.4rem;
  letter-spacing: -0.01em;
  margin: 0 0 10px;
  color: var(--text);
}
.how__step p {
  margin: 0;
  color: var(--text-muted);
}

@media (min-width: 800px) {
  .how__steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}

/* =========================================================
   BEFORE / AFTER
   ========================================================= */

.ba {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}
.ba__stage {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface-2);
  user-select: none;
  touch-action: none;
  cursor: ew-resize;
  border: 1px solid var(--rule);
  box-shadow: var(--shadow-md);
}
.ba__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}
.ba__video--after {
  filter: brightness(1.08) contrast(1.04);
}
.ba__top {
  position: absolute;
  inset: 0;
  clip-path: inset(0 calc(100% - var(--reveal)) 0 0);
  -webkit-clip-path: inset(0 calc(100% - var(--reveal)) 0 0);
  will-change: clip-path;
}
.ba__handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--reveal);
  width: 2px;
  margin-left: -1px;
  background: var(--accent-strong);
  border: none;
  padding: 0;
  cursor: ew-resize;
  z-index: 4;
  box-shadow: 0 0 22px rgba(63, 138, 102, 0.35);
}
.ba__handle::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 8px 24px rgba(0,0,0,0.18), 0 0 0 4px rgba(255,255,255,0.6);
}
.ba__handle svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--accent-ink);
  z-index: 1;
}
.ba__label {
  position: absolute;
  top: 18px;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  z-index: 3;
  pointer-events: none;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.ba__label--left { left: 18px; }
.ba__label--right { right: 18px; }
.ba__caption {
  text-align: center;
  color: var(--text-muted);
  margin: 22px 0 0;
  font-size: 0.95rem;
}

/* =========================================================
   PRICING
   ========================================================= */

.pricing__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}
@media (min-width: 800px) {
  .pricing__grid {
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
  }
}

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 36px 28px;
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  background: var(--surface);
  transition: border-color 0.3s ease, transform 0.3s var(--ease-out), box-shadow 0.3s ease;
  box-shadow: var(--shadow-sm);
}
.card:hover {
  border-color: var(--rule-strong);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.card--featured {
  border-color: var(--accent);
  background:
    linear-gradient(180deg, rgba(168, 213, 186, 0.10), transparent 50%),
    var(--surface);
  box-shadow:
    0 0 0 1px var(--accent),
    0 30px 60px -30px rgba(63, 138, 102, 0.40);
}
.card--featured:hover {
  box-shadow:
    0 0 0 1px var(--accent),
    0 36px 70px -30px rgba(63, 138, 102, 0.50);
}
.card__badge {
  position: absolute;
  top: -10px;
  left: 28px;
  background: var(--accent-strong);
  color: #fff;
  font-family: 'Inter Tight', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 10px rgba(63, 138, 102, 0.30);
}
.card__name {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 500;
  font-size: 1.25rem;
  letter-spacing: -0.01em;
  margin: 0 0 14px;
  color: var(--text);
}
.card__price-prefix {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 0 4px;
}
.card__price {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 3rem;
  line-height: 1;
  letter-spacing: -0.03em;
  margin: 0;
  color: var(--text);
}
.card__price span {
  font-size: 1.4rem;
  vertical-align: super;
  margin-right: 4px;
  color: var(--text-muted);
  font-weight: 500;
}
.card__sub {
  margin: 8px 0 24px;
  color: var(--text-muted);
  font-size: 0.92rem;
}
.card__list {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.card__list li {
  position: relative;
  padding-left: 22px;
  color: var(--text);
  font-size: 0.95rem;
}
.card__list li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.65em;
  width: 12px;
  height: 1px;
  background: var(--accent-strong);
}
.card__cta { margin-top: auto; }

.pricing__note {
  margin: 36px auto 0;
  max-width: 60ch;
  text-align: center;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
}
.pricing__note a {
  color: var(--accent-strong);
  font-weight: 500;
}
.pricing__note a:hover {
  text-decoration: underline;
}

/* =========================================================
   SERVICE AREA
   ========================================================= */

.area__chips {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-start;
}
.area__chips li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border: 1px solid var(--rule-strong);
  border-radius: var(--radius-pill);
  font-family: 'Inter Tight', sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  background: var(--surface);
  color: var(--text);
  transition: border-color 0.3s ease, color 0.3s ease, transform 0.3s var(--ease-out), box-shadow 0.3s ease;
  box-shadow: var(--shadow-sm);
}
.area__chips li:hover {
  border-color: var(--accent-strong);
  color: var(--accent-strong);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.area__pin { color: var(--accent-strong); display: inline-flex; }
.area__more {
  margin: 28px 0 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}
.area__more a { color: var(--accent-strong); font-weight: 500; }
.area__more a:hover { text-decoration: underline; }

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

.faq__list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--rule);
}
.faq__item {
  border-bottom: 1px solid var(--rule);
}
.faq__summary {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0;
  background: transparent;
  border: none;
  color: var(--text);
  text-align: left;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 500;
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  letter-spacing: -0.005em;
  cursor: pointer;
  min-height: 60px;
}
.faq__summary:hover { color: var(--accent-strong); }
.faq__icon {
  position: relative;
  width: 18px; height: 18px;
  flex: none;
}
.faq__icon::before,
.faq__icon::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 14px; height: 1.5px;
  background: currentColor;
  transition: transform 0.35s var(--ease-in-out);
}
.faq__icon::before { transform: translate(-50%, -50%); }
.faq__icon::after  { transform: translate(-50%, -50%) rotate(90deg); }
.faq__item[data-open="true"] .faq__icon::after { transform: translate(-50%, -50%) rotate(0deg); }

.faq__panel {
  overflow: hidden;
  height: 0;
  opacity: 0;
}
.faq__item[data-open="true"] .faq__panel {
  height: auto;
  opacity: 1;
}
.faq__panel-inner {
  padding: 0 0 24px;
  color: var(--text-muted);
  max-width: 65ch;
}

/* =========================================================
   CONTACT
   ========================================================= */

.contact__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: start;
}
@media (min-width: 900px) {
  .contact__grid {
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
  }
}

.contact__list {
  list-style: none;
  margin: 36px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact__label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 6px;
}
.contact__value {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 500;
  font-size: 1.15rem;
  letter-spacing: -0.005em;
  color: var(--text);
}
.contact__value--lg {
  font-size: 1.6rem;
  font-weight: 600;
}
.contact__value--lg:hover { color: var(--accent-strong); }
.contact__value--block {
  display: block;
  line-height: 1.8;
  color: var(--text-muted);
  font-size: 1rem;
  font-weight: 400;
}

.contact__form {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  box-shadow: var(--shadow-md);
}
@media (min-width: 600px) {
  .contact__form { padding: 40px 36px; }
}

.field { display: flex; flex-direction: column; gap: 8px; }
.field-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 540px) {
  .field-row { grid-template-columns: 1fr 1fr; }
}

.field label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.field__opt {
  font-style: italic;
  text-transform: none;
  letter-spacing: 0;
  color: var(--text-dim);
  margin-left: 4px;
  font-weight: 400;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  background: #fff;
  color: var(--text);
  border: 1px solid var(--rule-strong);
  border-radius: 10px;
  padding: 14px 16px;
  font-family: inherit;
  font-size: 16px; /* prevents iOS zoom */
  line-height: 1.4;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  -webkit-appearance: none;
  appearance: none;
}
.field textarea { resize: vertical; min-height: 110px; }
.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231a1a1a' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 14px;
  padding-right: 44px;
}
.field input::placeholder,
.field textarea::placeholder { color: var(--text-dim); }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent-strong);
  box-shadow: 0 0 0 3px rgba(63, 138, 102, 0.15);
}

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

.form__note {
  margin: 4px 0 0;
  font-size: 0.82rem;
  color: var(--text-dim);
  text-align: center;
}
.form__status {
  font-size: 0.92rem;
  text-align: center;
  min-height: 1.4em;
}
.form__status.is-error { color: #b13c3c; }
.form__status.is-success { color: var(--accent-strong); }

.form__success {
  text-align: center;
  padding: 24px 8px;
}
.form__success h3 {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 500;
  font-size: 1.4rem;
  margin: 0 0 8px;
  color: var(--text);
}
.form__success p {
  margin: 0;
  color: var(--text-muted);
}
.form__success a { color: var(--accent-strong); font-weight: 500; }

/* =========================================================
   FOOTER
   ========================================================= */

.footer {
  border-top: 1px solid var(--rule);
  padding: 64px 0 32px;
  color: var(--text-muted);
  font-size: 0.9rem;
  background: var(--bg);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
}
@media (min-width: 760px) {
  .footer__grid {
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 48px;
  }
}
.footer__logo {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  color: var(--text);
  font-size: 1.05rem;
  margin-bottom: 6px;
}
.footer__tag {
  margin: 0 0 14px;
  font-style: italic;
  color: var(--text-muted);
}
.footer__copy {
  margin: 0;
  font-size: 0.82rem;
  color: var(--text-dim);
}
.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer__nav a:hover { color: var(--text); }
.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer__contact a:hover { color: var(--accent-strong); }
.footer__bottom {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--rule);
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-dim);
  letter-spacing: 0.04em;
}

/* =========================================================
   Animation primitives (initial states for GSAP)
   ========================================================= */

[data-anim="hero"] { opacity: 0; transform: translateY(20px); }
[data-reveal] { opacity: 0; transform: translateY(16px); }

@media (prefers-reduced-motion: reduce) {
  [data-anim="hero"],
  [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
  }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}

/* =========================================================
   DESKTOP-ONLY CONTRAST OVERRIDES (>= 768px)
   Mobile keeps the original lighter colors (left untouched).
   These tighten contrast at desktop sizes where text is more
   prominent and against more whitespace.
   ========================================================= */

@media (min-width: 768px) {
  /* Nav menu items — darker resting color, full charcoal on hover */
  .nav__links { color: #4a4a4a; }
  .nav__links a {
    color: #4a4a4a;
    transition: color 0.2s ease;
  }
  .nav__links a:hover { color: #1a1a1a; }

  /* Eyebrow small caps — switch from sage to forest green matching logo */
  .eyebrow { color: #2d5f3f; }

  /* Hero subhead + trust line — bump from light gray/dim to medium charcoal */
  .hero__subhead { color: #4a4a4a; }
  .hero__trust { color: #4a4a4a; }
}
