/* ============================================================
   Nelson Ridge Roofing landing page
   Aesthetic: cream + slate + terracotta. Same restrained glass
   + subtle motion as the Roots & Shoots template, retheméd for
   a roofing trade.
   ============================================================ */

:root {
  /* Light surfaces (cool stone, not warm cream) */
  --bg: #EFEDE7;
  --bg-soft: #E4E1DA;
  --bg-warm: #F4F2EC;
  /* Text (charcoal/grey instead of navy) */
  --ink: #1a1a1a;
  --ink-soft: #4a4a4a;
  --muted: #8a8a8a;
  /* Accents stay */
  --accent: #da7d0b;
  --accent-deep: #aa6108;
  --accent-bright: #e5a659;
  --accent-warm: #E8A24B;
  --accent-warm-deep: #C97D2A;
  --espresso: #2a2520;
  --sage-muted: #8FA98A;
  --halo: #f8e7d3;
  --line: rgba(26, 26, 26, 0.10);

  /* Dark surfaces (true black/charcoal) */
  --hero-bg: #0a0a0a;
  --hero-line: rgba(255, 255, 255, 0.14);
  --hero-ink-soft: rgba(255, 255, 255, 0.72);

  --radius-pill: 999px;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --radius-xl: 18px;
  --max: 1240px;

  --ease-soft: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.4, 0.64, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }

body {
  background: var(--bg-warm);
  color: var(--ink);
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, Segoe UI, sans-serif;
  font-size: 16.5px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  letter-spacing: -0.005em;
}

/* Section tone alternation */
.gallery {
  position: relative;
}
.reviews {
  position: relative;
}
.contact {
  background: var(--bg-soft);
  position: relative;
}
.gallery > *, .reviews > * { position: relative; z-index: 1; }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
input, textarea, select, button { font-family: inherit; }

.eyebrow {
  display: inline-block;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-deep);
  background: transparent;
  border: none;
  padding: 0;
  margin-bottom: 20px;
  line-height: 1;
}
.eyebrow--light { color: var(--accent-bright); }
.eyebrow--warm { color: var(--accent-bright); }

/* ============================================================
   SOLID CARD PRIMITIVE (was glass — now bold solid colours)
   ============================================================ */
.glass {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 24px rgba(26, 26, 26, 0.06);
}
.glass--dark {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
}

/* ============================================================
   NAV — full-width solid bar (bold, no frosted blur)
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  justify-content: center;
  padding: 0;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 1px 0 rgba(26, 26, 26, 0.04);
  transition: box-shadow 0.35s var(--ease-soft), border-color 0.35s var(--ease-soft);
}
.nav.is-scrolled {
  background: var(--bg);
  border-bottom-color: rgba(26, 26, 26, 0.14);
  box-shadow: 0 6px 20px rgba(26, 26, 26, 0.08);
}

.nav__pill {
  width: 100%;
  max-width: var(--max);
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 10px 32px;
  background: transparent;
  border: none;
  box-shadow: none;
  border-radius: 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.015em;
  flex-shrink: 0;
}

.brand__mark {
  display: inline-block;
  width: auto;
  height: 28px;
  background: transparent;
  border-radius: 0;
  transition: transform 0.4s var(--ease-spring);
  flex-shrink: 0;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(58%) sepia(38%) saturate(456%) hue-rotate(60deg) brightness(94%) contrast(86%);
}
.brand:hover .brand__mark { transform: rotate(-6deg); }

.nav__links {
  position: relative;
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: 16px;
  margin-right: 0;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-weight: 500;
  font-size: 14.5px;
  letter-spacing: -0.005em;
  transition: opacity 0.35s var(--ease-soft);
}
.nav__link {
  position: relative;
  color: var(--ink-soft);
  padding: 10px 16px;
  white-space: nowrap;
  transition: color 0.2s var(--ease-soft);
}
.nav__link::after {
  content: '';
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 4px;
  height: 1.5px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s var(--ease-soft), background 0.2s var(--ease-soft);
}
.nav__link:hover { color: var(--ink); }
.nav__link:hover::after { transform: scaleX(1); }
.nav__link.is-active { color: var(--accent-deep); }
.nav__link.is-active::after { transform: scaleX(1); background: var(--accent); }

/* The legacy sliding indicator is replaced by the underline above */
.nav__indicator { display: none; }

.nav__cta {
  flex-shrink: 0;
  margin-left: auto;
  background: var(--accent-deep);
  color: #fff !important;
  padding: 11px 22px;
  border-radius: var(--radius-pill);
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: -0.005em;
  transition: transform 0.25s var(--ease-spring), background 0.25s var(--ease-soft);
}
.nav__cta:hover {
  background: var(--accent);
  transform: translateY(-1px);
}

.nav__toggle {
  display: none;
  width: 38px;
  height: 38px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  padding: 11px;
  flex-direction: column;
  justify-content: space-between;
  flex-shrink: 0;
  margin-left: auto;
  margin-right: 6px;
  transition: background 0.2s var(--ease-soft), border-color 0.3s var(--ease-soft);
}
.nav__toggle:hover { background: var(--bg-soft); }
.nav__toggle span {
  display: block;
  height: 1.8px;
  width: 100%;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.25s var(--ease-soft), opacity 0.2s var(--ease-soft);
}
.nav.is-open .nav__toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.is-open .nav__toggle span:nth-child(2) { opacity: 0; }
.nav.is-open .nav__toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-weight: 600;
  font-size: 15.5px;
  padding: 14px 24px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition:
    transform 0.35s cubic-bezier(0.34, 1.4, 0.64, 1),
    background 0.25s var(--ease-soft);
  text-align: center;
  user-select: none;
}
.btn svg {
  width: 14px; height: 14px;
  transition: transform 0.35s cubic-bezier(0.34, 1.4, 0.64, 1);
}
.btn:hover { transform: translateY(-1px); }
.btn:hover svg { transform: translateX(2px); }
.btn:active { transform: translateY(0) scale(0.98); }

/* Icon-in-circle trailing pattern for buttons that have an SVG */
.btn:has(svg:last-child) { padding: 6px 6px 6px 22px; }
.btn:has(svg:last-child) > svg:last-child {
  width: 32px;
  height: 32px;
  padding: 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  flex-shrink: 0;
  box-sizing: border-box;
  overflow: visible;
}
.btn--ghost:has(svg:last-child) > svg:last-child,
.btn--ghost-light:has(svg:last-child) > svg:last-child {
  background: rgba(26, 26, 26, 0.06);
}
.btn--small { padding: 11px 20px; font-size: 14px; gap: 8px; }
.btn--small:has(svg:last-child) { padding: 5px 5px 5px 16px; }
.btn--small:has(svg:last-child) > svg:last-child { width: 26px; height: 26px; padding: 7px; box-sizing: border-box; }

.btn--primary {
  background: var(--accent-deep);
  color: #fff;
}
.btn--primary:hover {
  background: var(--accent);
}

.btn--light {
  background: #fff;
  color: var(--accent-deep);
}
.btn--light:hover { background: var(--halo); }

.btn--ghost {
  background: #fff;
  border: 1px solid var(--line);
  color: var(--ink);
}
.btn--ghost:hover { background: var(--bg-soft); color: var(--accent-deep); }

.btn--ghost-light {
  background: rgba(255, 255, 255, 0.10);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.32);
}
.btn--ghost-light:hover { background: rgba(255, 255, 255, 0.18); }

/* ============================================================
   BEFORE / AFTER COMPARE
   ============================================================ */
.ba {
  max-width: 1037px;
  margin: 0 auto;
  padding: 40px 24px 80px;
}
.ba__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin: 0 0 24px;
  padding: 0 4px;
}
.ba__head-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}
.ba__head-left .eyebrow {
  margin: 0;
}
.ba__head h2 {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-weight: 600;
  font-size: clamp(20px, 2.4vw, 30px);
  letter-spacing: -0.015em;
  line-height: 1.15;
  margin: 0;
  color: var(--ink);
}
.ba__head-hint {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 4px;
  padding: 7px 14px;
  border-radius: var(--radius-pill);
  background: #fff;
  border: 1px solid var(--line);
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-soft);
}
.ba__head-hint svg {
  color: var(--accent-deep);
  flex-shrink: 0;
}

.ba__compare {
  position: relative;
  aspect-ratio: 16 / 11;
  border-radius: var(--radius-lg);
  overflow: hidden;
  user-select: none;
  -webkit-user-select: none;
  cursor: ew-resize;
  touch-action: pan-y;
  background: var(--bg-soft);
  box-shadow: 0 12px 36px rgba(26, 26, 26, 0.18);
}

.ba__layer {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
}
.ba__layer-wrap {
  position: absolute;
  inset: 0;
  clip-path: inset(0 calc(100% - var(--pos, 50%)) 0 0);
  -webkit-clip-path: inset(0 calc(100% - var(--pos, 50%)) 0 0);
  will-change: clip-path;
}

.ba__divider {
  position: absolute;
  top: 0; bottom: 0;
  left: var(--pos, 50%);
  width: 2px;
  background: rgba(255, 255, 255, 0.95);
  transform: translateX(-1px);
  pointer-events: none;
  box-shadow: 0 0 18px rgba(26, 26, 26, 0.25);
}

.ba__handle {
  position: absolute;
  top: 50%;
  left: var(--pos, 50%);
  width: 56px;
  height: 56px;
  margin: -28px 0 0 -28px;
  border-radius: 999px;
  background: #fff;
  color: var(--accent-deep);
  border: none;
  cursor: ew-resize;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 28px rgba(26, 26, 26, 0.32);
  transition: transform 0.2s var(--ease-spring);
  touch-action: none;
}
.ba__handle:hover, .ba__handle:focus-visible {
  transform: scale(1.06);
  outline: 2px solid var(--accent-bright);
  outline-offset: 3px;
}
.ba__handle svg { width: 22px; height: 22px; }

.ba__chip {
  position: absolute;
  top: 18px;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-weight: 600;
  font-size: 12.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  padding: 7px 14px;
  border-radius: var(--radius-pill);
  background: rgba(26, 26, 26, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  pointer-events: none;
}
.ba__chip--before { left: 18px; }
.ba__chip--after  { right: 18px; }

/* ============================================================
   HERO + ROOF SCROLL-SCRUB (combined)
   First frame = hero. As user scrolls, copy fades and the
   image-sequence scrubs through the roof build phases.
   ============================================================ */
.hero-scroll {
  position: relative;
  height: 360vh;
  background: #0a0a0a;
  color: #fff;
  isolation: isolate;
}
.hero-scroll__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}
.hero-scroll__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background-color: #0a0a0a;
  background-image: url('assets/roof-frames/frame-001.webp');
  background-size: cover;
  background-position: center;
  display: block;
}
.hero-scroll__shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(10, 10, 10, 0.45) 0%, rgba(10, 10, 10, 0) 22%, rgba(10, 10, 10, 0) 55%, rgba(10, 10, 10, 0.78) 100%),
    linear-gradient(90deg, rgba(10, 10, 10, 0.40) 0%, rgba(10, 10, 10, 0) 55%);
}

/* ---- Phase 1: Hero copy (centered, fades out on scroll) ---- */
.hero-scroll__hero {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 24px 80px;
  gap: 0;
  will-change: opacity, transform;
}
.hero-scroll__hero .eyebrow {
  margin-bottom: 22px;
}
.hero-scroll__title {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-weight: 700;
  font-size: clamp(46px, 6vw, 84px);
  line-height: 1.0;
  letter-spacing: -0.04em;
  color: #fff;
  margin: 0 0 24px;
  max-width: 760px;
}
.hero-scroll__title em {
  display: block;
  font-family: 'Instrument Serif', 'Cormorant', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-size: 0.62em;
  color: var(--accent-bright);
  margin-top: 14px;
  letter-spacing: -0.015em;
  line-height: 1.05;
}
.hero-scroll__sub {
  font-size: 18px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.82);
  max-width: 560px;
  margin: 0 auto 36px;
  letter-spacing: -0.005em;
}
.hero-scroll__ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 22px;
  margin-bottom: 36px;
}
.hero-scroll__phone {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  padding-bottom: 3px;
}
.hero-scroll__phone:hover { color: #fff; border-color: #fff; }
.hero-scroll__cue {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
  font-weight: 600;
}
.hero-scroll__cue-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent-bright);
  animation: cueBlink 2.4s var(--ease-soft) infinite;
}
@keyframes cueBlink {
  0%, 100% { opacity: 0.35; transform: scale(1); }
  50%      { opacity: 1; transform: scale(1.4); }
}

/* ---- Phase 2: Anatomical callouts pointing to each exploded layer ---- */
.hero-scroll__callouts {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.6s var(--ease-soft);
}
.hero-scroll__callouts.is-armed { opacity: 1; }

.callout {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0;
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  color: #fff;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.6s var(--ease-soft), transform 0.6s var(--ease-soft);
  pointer-events: auto;
}
.callout.is-revealed { opacity: 1; transform: translateY(0); }

/* Layer anchor positions (pin = pixel on the roof) */
.callout--top-right    { top: 11%; right: 14%; }
.callout--upper-left   { top: 30%; left: 14%; }
.callout--lower-right  { top: 48%; right: 14%; }
.callout--bottom-left  { top: 64%; left: 14%; }

/* Connector dot + line. The pin sits at the start; line extends to the chip. */
.callout__line {
  position: relative;
  flex-shrink: 0;
  width: 90px;
  height: 1px;
  background: rgba(255, 255, 255, 0.55);
}
.callout__line::before {
  content: "";
  position: absolute;
  width: 8px; height: 8px;
  border-radius: 999px;
  background: #fff;
  border: 1.5px solid var(--accent-bright);
  top: 50%;
  transform: translateY(-50%);
}
.callout--top-right .callout__line::before,
.callout--lower-right .callout__line::before {
  right: -4px;
}
.callout--upper-left .callout__line::before,
.callout--bottom-left .callout__line::before {
  left: -4px;
}

/* Right-side callouts: line extends to the left from the chip toward the layer */
.callout--top-right,
.callout--lower-right { flex-direction: row-reverse; }

/* Chip — bold solid label (no frosted glass) */
.callout__chip {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 14px;
  background: #131313;
  border: 1px solid #2a2a2a;
  border-radius: 4px;
  transition:
    padding 0.35s var(--ease-soft),
    background 0.25s var(--ease-soft),
    border-color 0.25s var(--ease-soft),
    transform 0.25s var(--ease-soft);
  max-width: 260px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.32);
}
.callout:hover .callout__chip {
  background: #1c1c1c;
  border-color: var(--accent-bright);
  transform: translateY(-2px);
}

.callout__step {
  font-weight: 700;
  font-size: 10.5px;
  letter-spacing: 0.18em;
  color: var(--accent-bright);
  flex-shrink: 0;
  padding-right: 14px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}
.callout__body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: left;
  flex: 1;
}
.callout__body strong {
  font-weight: 600;
  font-size: 13.5px;
  letter-spacing: -0.005em;
  color: #fff;
  white-space: nowrap;
}
.callout__detail {
  display: none;
  font-weight: 400;
  font-size: 12.5px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.78);
  margin-top: 6px;
  max-width: 240px;
  white-space: normal;
}
.callout__chev {
  width: 12px; height: 12px;
  color: rgba(255, 255, 255, 0.50);
  flex-shrink: 0;
  transition: transform 0.25s var(--ease-soft);
}
.callout.is-open .callout__chev { transform: rotate(90deg); }

/* Open / expanded state */
.callout.is-open .callout__chip {
  padding: 14px 18px;
  background: var(--ink);
  border-color: var(--accent-bright);
  max-width: 320px;
  align-items: flex-start;
}
.callout.is-open .callout__step {
  border-right-color: rgba(158, 205, 131, 0.30);
}
.callout.is-open .callout__body strong { white-space: normal; font-size: 15px; }
.callout.is-open .callout__detail { display: block; }

/* Ask panel — appears when scrub is complete */
.hero-scroll__ask {
  position: absolute;
  left: 50%;
  bottom: 76px;
  transform: translate(-50%, 12px);
  width: min(640px, 88%);
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.55s var(--ease-soft), transform 0.55s var(--ease-soft);
  z-index: 4;
}
.hero-scroll__callouts.is-complete .hero-scroll__ask {
  opacity: 1;
  transform: translate(-50%, 0);
  pointer-events: auto;
}
.hero-scroll__ask-title {
  margin: 0 0 14px;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -0.005em;
  color: #fff;
}
.hero-scroll__ask-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.hero-scroll__ask-list button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border: 1px solid #2a2a2a;
  background: #131313;
  color: #fff;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: -0.005em;
  cursor: pointer;
  border-radius: 4px;
  transition: background 0.2s var(--ease-soft), border-color 0.2s var(--ease-soft), transform 0.2s var(--ease-soft);
}
.hero-scroll__ask-list button:hover {
  background: var(--accent-deep);
  border-color: var(--accent);
  transform: translateY(-1px);
}
.hero-scroll__ask-num {
  font-weight: 700;
  font-size: 10.5px;
  letter-spacing: 0.16em;
  color: var(--accent-bright);
}
.hero-scroll__ask-list button:hover .hero-scroll__ask-num { color: #fff; }

.hero-scroll__progress {
  position: absolute;
  left: 50%;
  bottom: 36px;
  transform: translateX(-50%);
  width: min(360px, 60%);
  height: 2px;
  background: rgba(255, 255, 255, 0.16);
  border-radius: 2px;
  overflow: hidden;
}
.hero-scroll__progress-fill {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0%;
  background: var(--accent-bright);
  border-radius: 2px;
}

@media (max-width: 960px) {
  .hero-scroll { height: 320vh; }
  .hero-scroll__hero { padding: 90px 20px 60px; }

  /* On phones the layers stack closer together — give callouts shorter lines
     and let them break onto two columns. */
  .callout__line { width: 44px; }
  .callout__chip { padding: 7px 12px; max-width: 200px; }
  .callout__body strong { font-size: 12.5px; white-space: normal; }
  .callout__step { font-size: 10px; padding: 4px 6px; letter-spacing: 0.12em; }
  .callout--top-right    { top: 9%;  right: 6%; }
  .callout--upper-left   { top: 29%; left: 6%; }
  .callout--lower-right  { top: 49%; right: 6%; }
  .callout--bottom-left  { top: 66%; left: 6%; }
  .hero-scroll__ask { bottom: 56px; width: 92%; }
  .hero-scroll__ask-title { font-size: 13.5px; margin-bottom: 10px; }
  .hero-scroll__ask-list button { padding: 7px 11px; font-size: 12px; }
  .hero-scroll__progress { bottom: 28px; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-scroll { height: 100vh; }
  .hero-scroll__hero { opacity: 1 !important; transform: none !important; }
  .hero-scroll__callouts { opacity: 1 !important; }
  .callout { opacity: 1 !important; transform: none !important; }
}

/* ============================================================
   INTRO
   ============================================================ */
.intro { padding: 110px 24px 96px; }
.intro__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.2fr);
  gap: 80px;
  align-items: start;
}
.intro__lead {
  position: sticky;
  top: 120px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
}
.intro__lead .eyebrow { margin: 0; }
.intro__cta { margin-top: 6px; }
.intro__title {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-weight: 600;
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0;
}
.intro__body {
  font-size: 17.5px;
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 560px;
  margin: 0;
}

/* ============================================================
   HOW WE WORK — compact 3-step timeline
   ============================================================ */
.how {
  padding: 90px 24px;
  background: var(--ink);
  color: #fff;
}
.how__hero {
  max-width: 720px;
  margin: 0 auto 56px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.how__hero-title {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin: 0;
  color: var(--accent-bright);
}
.how__hero-sub {
  font-size: 16px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
  max-width: 460px;
}

/* Compact section wrapper */
.how--compact .how__inner {
  max-width: var(--max);
  margin: 0 auto;
}
.how__head {
  max-width: 720px;
  margin: 0 auto 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

/* Flip-card grid */
.how__cards {
  list-style: none;
  margin: 32px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.how-card {
  position: relative;
  perspective: 1400px;
}
.how-card__inner {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  transform-style: preserve-3d;
  transition: transform 0.7s cubic-bezier(0.55, 0.05, 0.25, 1);
  border-radius: 6px;
}
.how-card.is-flipped .how-card__inner {
  transform: rotateY(180deg);
}
.how-card__face {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
  border-radius: 6px;
  overflow: hidden;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
.how-card__face--front {
  background-size: cover;
  background-position: center;
  background-color: #1a1a1a;
  color: #fff;
}
.how-card__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 35%, rgba(0,0,0,0.78) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0) 30%);
  pointer-events: none;
}
.how-card__step {
  position: absolute;
  top: 20px;
  left: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 28px;
  padding: 0 10px;
  background: var(--accent-deep);
  color: #fff;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.18em;
  border-radius: 2px;
}
.how-card__title-block {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: left;
  z-index: 1;
}
.how-card__title {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-weight: 700;
  font-size: clamp(22px, 2.4vw, 28px);
  letter-spacing: -0.02em;
  line-height: 1.05;
}
.how-card__sub {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255,255,255,0.86);
  font-weight: 400;
}
.how-card__meta {
  margin-top: 2px;
  font-weight: 600;
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-bright);
}
.how-card__flip-cue {
  position: absolute;
  top: 18px;
  right: 18px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px 6px 8px;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.32);
  border-radius: 999px;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  z-index: 2;
  animation: flipCuePulse 2.6s var(--ease-soft) infinite;
}
.how-card__flip-cue svg {
  width: 13px;
  height: 13px;
}
.how-card.is-flipped .how-card__flip-cue {
  animation: none;
  background: rgba(255,255,255,0.22);
  border-color: rgba(255,255,255,0.5);
}
@keyframes flipCuePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,255,255,0.32); }
  50%      { box-shadow: 0 0 0 6px rgba(255,255,255,0); }
}

.how-card__face--back {
  transform: rotateY(180deg);
  background: var(--accent-deep);
  color: #fff;
  justify-content: center;
  text-align: left;
  gap: 14px;
}
.how-card__quote-mark {
  font-family: 'Instrument Serif', Georgia, serif;
  font-style: italic;
  font-size: 96px;
  line-height: 0.6;
  color: rgba(255,255,255,0.32);
  margin-bottom: -10px;
}
.how-card__quote {
  font-size: 17px;
  line-height: 1.45;
  font-weight: 500;
  letter-spacing: -0.005em;
}
.how-card__author {
  font-size: 12.5px;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.85);
}
.how-card__author strong { font-weight: 700; }

@media (max-width: 880px) {
  .how__cards { grid-template-columns: 1fr; gap: 14px; }
  .how-card__inner { aspect-ratio: 16 / 11; }
}

/* ============================================================
   SERVICE SECTIONS
   ============================================================ */
.service { padding: 108px 24px; position: relative; }

.service__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
}
.service--reverse .service__inner { grid-template-columns: 1fr 1.05fr; }
.service--reverse .service__media { order: 2; }
.service--reverse .service__content { order: 1; }

.service__media {
  position: relative;
  aspect-ratio: 5 / 4;
  border-radius: var(--radius-xl);
  overflow: visible;
}
.service__photo {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-xl);
  background: linear-gradient(160deg, var(--accent) 0%, var(--accent-deep) 100%);
  background-size: cover;
  background-position: center;
  box-shadow: 0 24px 60px rgba(26, 26, 26, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
}

.service__placeholder {
  color: rgba(255,255,255,0.85);
  font-size: 13px;
  text-align: center;
  padding: 14px 18px;
  background: rgba(0,0,0,0.22);
  border-radius: 12px;
}
.service__placeholder code {
  background: rgba(0,0,0,0.25);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 12px;
}

.service__sticker {
  position: absolute;
  bottom: 24px;
  left: 24px;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  border-radius: var(--radius-pill);
  background: #fff;
  box-shadow: 0 6px 18px rgba(26, 26, 26, 0.16);
  border: 1px solid var(--line);
}
.service--reverse .service__sticker { left: auto; right: 24px; }
.service__sticker strong {
  font-size: 20px;
  color: var(--accent-deep);
  font-weight: 700;
}
.service__sticker span { font-weight: 600; color: var(--ink); }

.service__content {
  padding: 44px 40px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 1px 2px rgba(26, 26, 26, 0.04);
}
.service__content h2 {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-weight: 600;
  font-size: clamp(28px, 3.2vw, 40px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 20px;
}
.service__content > p {
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0 0 28px;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 0 0 36px;
  display: grid;
  gap: 14px;
}
.check-list li {
  position: relative;
  padding-left: 32px;
  color: var(--ink-soft);
  font-size: 16px;
}
.check-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 4px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: rgba(121, 179, 93, 0.14);
  border: 1px solid rgba(121, 179, 93, 0.3);
}
.check-list li::after {
  content: '';
  position: absolute;
  left: 6px; top: 9px;
  width: 8px; height: 5px;
  border-left: 2px solid var(--accent-deep);
  border-bottom: 2px solid var(--accent-deep);
  transform: rotate(-45deg);
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery {
  padding: 116px 24px 124px;
  background: var(--ink);
  color: #fff;
}
.gallery .eyebrow {
  background: rgba(158, 205, 131, 0.14);
  border-color: rgba(158, 205, 131, 0.30);
  color: var(--accent-bright);
}
.gallery__head,
.gallery__grid {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}
.gallery__head { text-align: center; margin-bottom: 52px; }
.gallery__head h2 {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-weight: 600;
  font-size: clamp(30px, 3.6vw, 48px);
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--accent-bright);
}
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.gallery__tile {
  position: relative;
  aspect-ratio: 1 / 1.15;
  border-radius: var(--radius-md);
  background: linear-gradient(160deg, var(--accent) 0%, var(--accent-deep) 100%);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-decoration: none;
  color: #fff;
  transition: transform 0.5s var(--ease-soft), box-shadow 0.4s var(--ease-soft);
  box-shadow: 0 8px 22px rgba(26, 26, 26, 0.12);
}
.gallery__tile:hover,
.gallery__tile:focus-visible {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 22px 44px rgba(26, 26, 26, 0.28);
}
.gallery__tile .service__placeholder { font-size: 12px; }
.gallery__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px 22px 22px;
  background: linear-gradient(180deg, rgba(0,0,0,0) 32%, rgba(0,0,0,0.78) 100%);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .35s var(--ease-soft), transform .45s var(--ease-spring);
  pointer-events: none;
}
.gallery__tile:hover .gallery__overlay,
.gallery__tile:focus-visible .gallery__overlay {
  opacity: 1;
  transform: translateY(0);
}
.gallery__overlay-eyebrow {
  align-self: flex-start;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.34);
  color: #fff;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 12px;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.gallery__overlay-title {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-weight: 700;
  font-size: 16.5px;
  line-height: 1.25;
  color: #fff;
  margin-bottom: 6px;
}
.gallery__overlay-cta {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--accent-bright);
}
@media (max-width: 900px) {
  .gallery__grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews {
  padding: 124px 24px 132px;
  background: var(--bg-warm);
  color: var(--ink);
  overflow: hidden;
}
/* Soft, blurred light circles so the glass card has something to refract */
.reviews::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle 360px at 18% 32%, rgba(121, 179, 93, 0.24), transparent 70%),
    radial-gradient(circle 320px at 82% 72%, rgba(232, 162, 75, 0.20), transparent 70%),
    radial-gradient(circle 280px at 50% 108%, rgba(143, 169, 138, 0.20), transparent 70%);
  z-index: 0;
}
.reviews__head h2 { color: var(--ink); }
.reviews__head,
.reviews__slider {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}
.reviews__head {
  text-align: center;
  margin-bottom: 64px;
}
.reviews__head h2 {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-weight: 600;
  font-size: clamp(30px, 3.6vw, 48px);
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--ink);
}

/* ---- Reviews slider ---- */
.reviews__slider {
  position: relative;
  display: block;
}
.reviews__viewport {
  overflow: hidden;
  border-radius: 6px;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 9%, #000 91%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0%, #000 9%, #000 91%, transparent 100%);
}
.reviews__track {
  list-style: none;
  margin: 0;
  padding: 0 10%;
  display: flex;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}
.reviews__slide {
  flex: 0 0 80%;
  display: flex;
  padding: 14px 12px;
  opacity: 0.32;
  transition: opacity 0.7s var(--ease-soft);
}
.reviews__slide.is-active { opacity: 1; }
.reviews__slide .review {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  padding: 72px 64px 60px;
  text-align: center;
  align-items: center;
  gap: 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  color: var(--ink);
  text-decoration: none;
  cursor: pointer;
  /* Glassmorphism over the blurred light blobs behind */
  background:
    linear-gradient(180deg, rgba(255,255,255,0.82) 0%, rgba(255,255,255,0.58) 100%);
  -webkit-backdrop-filter: blur(22px) saturate(170%);
  backdrop-filter: blur(22px) saturate(170%);
  border: 1px solid rgba(255,255,255,0.75);
  border-radius: 24px;
  box-shadow:
    0 36px 70px -32px rgba(26, 26, 26, 0.32),
    0 1px 0 rgba(255,255,255,0.95) inset,
    0 -1px 0 rgba(26,26,26,0.05) inset;
  transition: transform .5s var(--ease-soft), box-shadow .5s var(--ease-soft), opacity 0.7s var(--ease-soft);
}
.reviews__slide .review::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: radial-gradient(ellipse 90% 50% at 50% 0%, rgba(255,255,255,0.7), transparent 62%);
  opacity: .55;
  mix-blend-mode: screen;
}
.reviews__slide .review > * { position: relative; z-index: 1; }
.reviews__slide .review:hover,
.reviews__slide .review:focus-visible {
  transform: translateY(-4px);
  box-shadow:
    0 48px 92px -28px rgba(26, 26, 26, 0.38),
    0 1px 0 rgba(255,255,255,0.95) inset,
    0 -1px 0 rgba(26,26,26,0.05) inset;
}
.reviews__slide .review__stars { justify-content: center; }
.reviews__slide .review__quote {
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1.45;
  letter-spacing: -0.015em;
  font-weight: 500;
  max-width: 620px;
}
.reviews__slide .review__author {
  align-items: center;
  text-align: center;
  border-top: none;
  padding-top: 4px;
}
.review__more {
  margin-top: 6px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-deep);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .4s var(--ease-soft), transform .5s var(--ease-spring);
}
.reviews__slide .review:hover .review__more,
.reviews__slide .review:focus-visible .review__more {
  opacity: 1;
  transform: translateY(0);
}

.reviews__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--ink);
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(26, 26, 26, 0.10);
  transition: background 0.25s var(--ease-soft), transform 0.3s var(--ease-spring), color 0.25s var(--ease-soft), box-shadow 0.25s var(--ease-soft);
}
.reviews__nav--prev { left: 0; }
.reviews__nav--next { right: 0; }
.reviews__nav svg { width: 20px; height: 20px; }
.reviews__nav:hover {
  background: var(--ink);
  color: #fff;
  transform: translateY(calc(-50% - 1px));
  box-shadow: 0 10px 24px rgba(26, 26, 26, 0.18);
}
.reviews__nav:disabled { opacity: 0.35; cursor: default; pointer-events: none; }

.reviews__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 36px;
}
.reviews__dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border-radius: 999px;
  border: none;
  background: rgba(26, 26, 26, 0.18);
  cursor: pointer;
  transition: background 0.2s var(--ease-soft), transform 0.2s var(--ease-spring);
}
.reviews__dot:hover { background: rgba(26, 26, 26, 0.38); }
.reviews__dot.is-active {
  background: var(--accent-deep);
  transform: scaleX(2.6);
  border-radius: 4px;
}

@media (max-width: 720px) {
  .reviews__nav {
    background: rgba(255, 255, 255, 0.92);
  }
  .reviews__nav--prev { left: 4px; }
  .reviews__nav--next { right: 4px; }
  .reviews__slide .review { padding: 44px 30px 36px; }
}
.review {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 56px 60px 52px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 1px 2px rgba(26, 26, 26, 0.04);
}
.review__stars {
  display: inline-flex;
  gap: 4px;
  color: #E0A338;
}
.review__stars svg { width: 18px; height: 18px; }
.review__quote {
  font-size: 17px;
  line-height: 1.5;
  color: var(--ink);
  margin: 0;
  flex: 1;
}
.review__author {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
.review__author strong {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--ink);
}
.review__author span {
  font-size: 13px;
  color: var(--muted);
}

/* ============================================================
   FAQ — accordion (Popcorn-style)
   ============================================================ */
.faq {
  padding: 90px 24px 60px;
}
.faq__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 70px;
  align-items: start;
}
.faq__head {
  position: sticky;
  top: 110px;
}
.faq__head h2 {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-weight: 600;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.04;
  letter-spacing: -0.025em;
  margin: 0 0 16px;
  color: var(--ink);
}
.faq__head p {
  font-size: 16px;
  color: var(--ink-soft);
  margin: 0;
}
.faq__head p a {
  color: var(--accent-deep);
  font-weight: 600;
  border-bottom: 1.5px solid currentColor;
  padding-bottom: 1px;
}
.faq__head p a:hover { color: var(--accent); }

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faq__item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: 0 4px 14px rgba(26, 26, 26, 0.04);
  overflow: hidden;
  transition: box-shadow 0.3s var(--ease-soft), border-color 0.3s var(--ease-soft);
}
.faq__item[open] {
  border-color: rgba(121, 179, 93, 0.35);
  box-shadow: 0 12px 30px rgba(26, 26, 26, 0.08);
}
.faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-weight: 600;
  font-size: 17px;
  color: var(--ink);
  transition: color 0.2s var(--ease-soft);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:hover { color: var(--accent-deep); }
.faq__icon {
  position: relative;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(121, 179, 93, 0.12);
  transition: background 0.25s var(--ease-soft), transform 0.35s var(--ease-spring);
}
.faq__icon::before,
.faq__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--accent-deep);
  border-radius: 1px;
  transition: transform 0.35s var(--ease-spring), opacity 0.25s var(--ease-soft);
}
.faq__icon::before {
  width: 14px;
  height: 2px;
  transform: translate(-50%, -50%);
}
.faq__icon::after {
  width: 2px;
  height: 14px;
  transform: translate(-50%, -50%);
}
.faq__item[open] .faq__icon {
  background: var(--accent);
}
.faq__item[open] .faq__icon::before,
.faq__item[open] .faq__icon::after {
  background: #fff;
}
.faq__item[open] .faq__icon::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }

.faq__body {
  padding: 0 26px 26px;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.6;
}
.faq__body p { margin: 0; }
.faq__item[open] .faq__body {
  animation: faqReveal 0.4s var(--ease-soft);
}
@keyframes faqReveal {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   CONTACT — warm cream CTA panel (contrasts with dark footer)
   ============================================================ */
.contact {
  position: relative;
  padding: 80px 24px 100px;
  overflow: hidden;
  color: var(--ink);
}
.contact__bg { display: none; }
.contact__inner {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 0;
}
.contact .eyebrow--warm { color: var(--accent-deep); }
.contact__copy h2 {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-weight: 600;
  font-size: clamp(36px, 4.6vw, 60px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin: 0 0 16px;
}
.contact__copy p {
  font-size: 18px;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 520px;
  margin: 0 0 32px;
}
.contact__ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.contact__aside {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-left: 36px;
  border-left: 1px solid var(--line);
}
.contact__detail {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.contact__detail:last-child { border-bottom: none; }
.contact__detail-lbl {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-weight: 600;
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-deep);
}
.contact__detail-val {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: var(--ink);
  transition: color 0.2s var(--ease-soft);
}
a.contact__detail-val:hover { color: var(--accent-deep); }

/* ============================================================
   FOOTER — dark, continuing from contact
   ============================================================ */
.footer {
  position: relative;
  color: #fff;
  overflow: hidden;
  background: var(--hero-bg);
  border-top: 1px solid var(--hero-line);
}
.footer__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle 320px at 100% 0%, rgba(121, 179, 93, 0.14), transparent 70%);
}
.footer__inner {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  margin: 0 auto;
  padding: 72px 28px 28px;
}
.footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 48px;
}
.footer__col h4 {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent-bright);
  margin: 0 0 18px;
}
.footer__col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}
.footer__col ul a, .footer__col ul li {
  color: var(--hero-ink-soft);
  font-size: 15px;
  transition: color 0.2s var(--ease-soft);
}
.footer__col ul a:hover { color: var(--accent-bright); }

.brand--footer {
  font-size: 22px;
  margin-bottom: 16px;
  color: #fff;
}
.brand--footer .brand__mark { width: auto; height: 36px; border-radius: 0; }

.footer__tag {
  color: var(--hero-ink-soft);
  font-size: 15px;
  line-height: 1.55;
  max-width: 340px;
  margin: 0 0 24px;
}

.footer__social {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--hero-line);
  color: #fff;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-weight: 600;
  font-size: 14.5px;
  transition: transform 0.25s var(--ease-spring), background 0.2s var(--ease-soft), border-color 0.2s var(--ease-soft);
}
.footer__social svg { width: 18px; height: 18px; color: var(--accent-bright); }
.footer__social:hover {
  background: rgba(121, 179, 93, 0.16);
  border-color: rgba(121, 179, 93, 0.40);
  transform: translateY(-2px);
}

.footer__bottom {
  border-top: 1px solid var(--hero-line);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 13.5px;
}
.footer__small { opacity: 0.75; margin: 0; }
.footer__bottom p { margin: 0; }

/* ============================================================
   QUOTE PAGE
   ============================================================ */
.page {
  padding: 130px 24px 90px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.page__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 70% 70% at 50% 0%, #f8e7d3 0%, transparent 60%),
    var(--bg);
}
.page__inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.page__title {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-weight: 600;
  font-size: clamp(36px, 5vw, 60px);
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin: 0 0 14px;
  color: var(--ink);
}
.page__lead {
  font-size: 18px;
  color: var(--ink-soft);
  max-width: 560px;
  margin: 0 auto 40px;
}

.form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 36px rgba(26, 26, 26, 0.08);
  padding: 40px 36px;
  text-align: left;
  display: grid;
  gap: 18px;
}
.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.field { display: grid; gap: 6px; }
.field > label {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-weight: 600;
  font-size: 13.5px;
  color: var(--ink);
}
.field > label .req { color: var(--accent); }
.input,
.textarea,
.select {
  width: 100%;
  padding: 13px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #fff;
  font-size: 16px;
  color: var(--ink);
  transition: border-color 0.2s var(--ease-soft), box-shadow 0.2s var(--ease-soft);
}
.textarea { min-height: 130px; resize: vertical; font-family: inherit; }
.input:focus,
.textarea:focus,
.select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(121, 179, 93, 0.14);
}

.checks {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}
.check {
  position: relative;
}
.check input { position: absolute; opacity: 0; pointer-events: none; }
.check span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: var(--radius-pill);
  background: #fff;
  border: 1px solid var(--line);
  font-size: 14.5px;
  cursor: pointer;
  transition: background 0.2s var(--ease-soft), border-color 0.2s var(--ease-soft), color 0.2s var(--ease-soft);
}
.check input:checked + span {
  background: rgba(121, 179, 93, 0.14);
  border-color: var(--accent);
  color: var(--accent-deep);
}
.check input:focus-visible + span {
  outline: 2px solid var(--accent-bright);
  outline-offset: 2px;
}

.form__submit {
  margin-top: 6px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
}
.form__hint {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
}

.form__success {
  display: none;
  padding: 18px 20px;
  border-radius: 16px;
  background: rgba(121, 179, 93, 0.14);
  border: 1px solid rgba(121, 179, 93, 0.32);
  color: var(--accent-deep);
  font-weight: 500;
  font-size: 15px;
}
.form__success.is-visible { display: block; }

.page__alt {
  text-align: center;
  margin-top: 40px;
  font-size: 15px;
  color: var(--ink-soft);
}
.page__alt a { color: var(--accent-deep); font-weight: 600; }
.page__alt a:hover { text-decoration: underline; }

/* Shared section title — beautiful, restrained, slightly tighter */
.section-title {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin: 0 0 16px;
  color: var(--ink);
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-hero {
  padding: 140px 24px 60px;
  text-align: center;
  background: var(--bg-warm);
}
.about-hero__inner {
  max-width: 800px;
  margin: 0 auto;
}
.about-hero__title {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-weight: 700;
  font-size: clamp(34px, 4.6vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin: 14px 0 18px;
  color: var(--ink);
}
.about-hero__sub {
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 640px;
  margin: 0 auto;
}

.about-story { padding: 80px 24px; }
.about-story__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-story__copy p {
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin: 0 0 16px;
}
.about-story__copy p:last-child { margin-bottom: 0; }
.about-story__photo {
  aspect-ratio: 4 / 5;
  border-radius: 14px;
  background: var(--bg-soft) center / cover no-repeat;
}

.about-values {
  padding: 80px 24px;
  background: var(--bg-soft);
}
.about-values__inner { max-width: var(--max); margin: 0 auto; }
.about-values__head { text-align: center; margin: 0 auto 48px; max-width: 720px; }
.about-values__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.value {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.value__num {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.18em;
  color: var(--accent-deep);
}
.value h3 {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.25;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 0;
}
.value p {
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0;
}

.about-team { padding: 80px 24px; }
.about-team__inner { max-width: var(--max); margin: 0 auto; text-align: center; }
.about-team__inner > .eyebrow { margin-bottom: 14px; }
.about-team__inner > h2 { margin-bottom: 48px; }
.about-team__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  text-align: left;
}
.member {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
}
.member__photo {
  aspect-ratio: 4 / 3;
  background: var(--bg-soft) center / cover no-repeat;
}
.member h3 {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-weight: 700;
  font-size: 19px;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 24px 24px 4px;
}
.member__role {
  margin: 0 24px 12px;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--accent-deep);
  font-weight: 600;
  text-transform: uppercase;
}
.member p:not(.member__role) {
  margin: 0 24px 24px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-soft);
}

.about-stats {
  padding: 70px 24px;
  background: var(--ink);
  color: #fff;
}
.about-stats__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.stat strong {
  display: block;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-weight: 700;
  font-size: clamp(34px, 4vw, 48px);
  letter-spacing: -0.025em;
  color: var(--accent-bright);
  line-height: 1;
}
.stat span {
  display: block;
  font-size: 13.5px;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.75);
  text-transform: uppercase;
  margin-top: 8px;
}

@media (max-width: 720px) {
  .about-story__inner,
  .about-values__grid,
  .about-team__grid,
  .about-stats__inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

/* ============================================================
   BLOG INDEX
   ============================================================ */
.page--blog {
  max-width: var(--max);
  margin: 0 auto;
  padding: 130px 24px 100px;
  text-align: left;
}
.blog__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin: 0 0 56px;
  flex-wrap: wrap;
}
.blog__head-left { display: flex; flex-direction: column; gap: 14px; }
.blog__head-left .eyebrow { margin: 0; }
.blog__title {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-weight: 700;
  font-size: clamp(34px, 4.6vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin: 0;
}
.blog__lead {
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 360px;
  margin: 0;
  text-align: right;
}
.blog__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px 28px;
}
.post {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(26, 26, 26, 0.05);
  transition: transform 0.35s var(--ease-soft), box-shadow 0.35s var(--ease-soft);
}
.post:hover { transform: translateY(-4px); box-shadow: 0 18px 38px rgba(26, 26, 26, 0.10); }
.post__media {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  background: linear-gradient(160deg, var(--accent) 0%, var(--accent-deep) 100%);
  overflow: hidden;
  color: inherit;
}
.post__placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.85);
  font-size: 13px;
  background: rgba(0,0,0,0.18);
}
.post__tag {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  background: #fff;
  color: var(--accent-deep);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  box-shadow: 0 4px 12px rgba(26, 26, 26, 0.12);
}
.post__body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 26px 28px 28px;
}
.post__meta {
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--muted);
  margin: 0;
  text-transform: uppercase;
}
.post__title {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-weight: 600;
  font-size: clamp(20px, 2vw, 24px);
  line-height: 1.22;
  letter-spacing: -0.015em;
  margin: 0;
}
.post__title a { color: var(--ink); transition: color 0.2s var(--ease-soft); }
.post__title a:hover { color: var(--accent-deep); }
.post__excerpt {
  font-size: 15.5px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0;
}
.post__more {
  margin-top: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-deep);
  align-self: flex-start;
}
.post__more:hover { text-decoration: underline; }
.blog__alt {
  margin: 56px 0 0;
  text-align: center;
  font-size: 15px;
  color: var(--ink-soft);
}
.blog__alt a { color: var(--accent-deep); font-weight: 600; }
.blog__alt a:hover { text-decoration: underline; }

/* ============================================================
   SCROLL REVEAL — blur-down entry (Editorial Luxury)
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(48px);
  filter: blur(10px);
  transition:
    opacity 0.9s var(--ease-soft),
    transform 0.9s var(--ease-soft),
    filter 0.9s var(--ease-soft);
  will-change: transform, opacity, filter;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}
.reveal--stagger > * { transition-delay: 0ms; }
.reveal--stagger.is-visible > *:nth-child(2) { transition-delay: 80ms; }
.reveal--stagger.is-visible > *:nth-child(3) { transition-delay: 160ms; }
.reveal--stagger.is-visible > *:nth-child(4) { transition-delay: 240ms; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; filter: none !important; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  .nav__pill { padding: 10px 18px; }
  .nav__cta { padding: 9px 14px; font-size: 13.5px; }
  .nav__toggle { display: flex; }
  .brand__word { font-size: 16px; }

  .nav__links {
    position: absolute;
    top: 100%;
    left: 12px;
    right: 12px;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    margin: 8px 0 0;
    padding: 14px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    box-shadow: 0 16px 40px rgba(26, 26, 26, 0.18);
    transform-origin: top right;
    transform: scale(0.96) translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition:
      transform 0.25s var(--ease-spring),
      opacity 0.2s var(--ease-soft);
  }
  .nav.is-open .nav__links {
    transform: scale(1) translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav__indicator { display: none; }
  .nav__link,
  .nav.is-scrolled .nav__link {
    color: var(--ink);
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 15.5px;
  }
  .nav__link::after { display: none; }
  .nav__link:hover,
  .nav.is-scrolled .nav__link:hover { background: var(--bg-soft); color: var(--accent-deep); }
  .nav__link.is-active,
  .nav.is-scrolled .nav__link.is-active {
    background: rgba(121, 179, 93, 0.14);
    color: var(--accent-deep);
  }

  .page--blog { padding: 100px 16px 70px; }
  .blog__head { flex-direction: column; align-items: flex-start; gap: 14px; margin-bottom: 32px; }
  .blog__lead { text-align: left; max-width: 100%; }
  .blog__grid { grid-template-columns: 1fr; gap: 22px; }

  .ba { padding: 18px 16px 60px; }
  .ba__head {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 16px;
  }
  .ba__head-hint { align-self: stretch; justify-content: center; }
  .ba__compare {
    aspect-ratio: 4 / 5;
    border-radius: var(--radius-md);
  }
  .ba__handle { width: 48px; height: 48px; margin: -24px 0 0 -24px; }
  .ba__chip { top: 14px; font-size: 11.5px; padding: 6px 12px; }
  .ba__chip--before { left: 14px; }
  .ba__chip--after  { right: 14px; }

  .intro { padding: 60px 20px 40px; }
  .intro__inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .intro__lead { position: static; }

  .how { padding: 30px 18px 60px; }
  .how__head {
    align-items: center;
    gap: 12px;
    margin-bottom: 28px;
  }

  .faq { padding: 20px 18px 70px; }
  .faq__inner { grid-template-columns: 1fr; gap: 28px; }
  .faq__head { position: static; }
  .faq__item summary { padding: 18px 20px; font-size: 16px; gap: 16px; }
  .faq__body { padding: 0 20px 22px; font-size: 15px; }
  .faq__icon { width: 32px; height: 32px; }


  .service { padding: 40px 16px; }
  .service__inner { grid-template-columns: 1fr; gap: 28px; }
  .service--reverse .service__inner { grid-template-columns: 1fr; }
  .service--reverse .service__media { order: 0; }
  .service--reverse .service__content { order: 0; }
  .service__media { aspect-ratio: 5 / 4; max-height: 420px; }
  .service__content { padding: 28px 22px; border-radius: var(--radius-md); }
  .service__sticker { bottom: 14px; left: 14px; padding: 9px 14px; }
  .service--reverse .service__sticker { right: 14px; left: auto; }

  .gallery { padding: 50px 16px 40px; }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }

  .reviews { padding: 50px 16px 70px; }
  .reviews__grid { grid-template-columns: 1fr; gap: 16px; }

  .contact { padding: 70px 20px 70px; }
  .contact__inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .contact__aside {
    padding-left: 0;
    padding-top: 28px;
    border-left: none;
    border-top: 1px solid var(--hero-line);
  }
  .contact__detail { padding: 14px 0; }

  .footer__inner { padding: 56px 22px 24px; }
  .footer__top {
    grid-template-columns: 1fr;
    gap: 36px;
    padding-bottom: 36px;
  }
  .footer__bottom { flex-direction: column; align-items: flex-start; }

  .page { padding: 110px 16px 60px; }
  .form { padding: 28px 22px; }
  .form__row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero-scroll__title { font-size: clamp(40px, 10vw, 56px); }
  .btn { padding: 13px 20px; font-size: 15px; }
  .hero-scroll__ctas { flex-direction: column; align-items: stretch; gap: 16px; }
  .hero-scroll__ctas .btn { width: 100%; }
  .hero-scroll__phone { align-self: center; }
  .brand__word { display: none; }
  .nav__cta { padding: 8px 12px; font-size: 12.5px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1 !important; transform: none !important; }
}

/* ============================================================
   ROLL-TO-REEL REFRESH — typography + spacing polish
   Inspired by rolltoreel.com:
   tighter display tracking, text-balance on headings,
   text-pretty on body, generous section rhythm.
   Palette and hero compositions preserved.
   ============================================================ */

h1, h2, h3, h4 { text-wrap: balance; }
p, li { text-wrap: pretty; }

h1 { letter-spacing: -0.025em; line-height: 1.04; }
h2 { letter-spacing: -0.022em; line-height: 1.08; }
h3 { letter-spacing: -0.015em; line-height: 1.2; }

/* Generous breathing room on content sections (hero + services wrapper excluded). */
main > section:not(.hero):not(.hero-scroll):not([class*="hero"]):not(#services):not(.contact) {
  padding-top: clamp(88px, 9vw, 128px);
  padding-bottom: clamp(88px, 9vw, 128px);
}
/* Services wrapper: no extra padding - each .service div handles its own. */
#services { padding: 0; }

/* Lead body reads calmer. */
.hero__lead,
.hero-scroll__lead,
[class$="__lead"] { line-height: 1.55; }

/* Slight eyebrow tracking relax to match modern pill aesthetic. */
.eyebrow { letter-spacing: 0.14em; }

/* Subtle section divider rhythm for a quieter cadence on the eye. */
main > section + section { border-top: 1px solid transparent; }

/* ============================================================
   GALLERY: before/after inside the gallery section
   ============================================================ */
.gallery__subhead {
  max-width: var(--max);
  margin: 72px auto 0;
  padding: 0 24px;
}
.gallery__subhead h3 {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: clamp(24px, 2.6vw, 36px);
  font-weight: 400;
  color: var(--ink);
  margin: 0;
}
.ba {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}
.ba__head-hint {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
  margin: 0 0 16px;
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact {
  padding: clamp(80px, 9vw, 120px) 24px;
}
.contact__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}
.contact__lead h2 {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--ink);
  margin: 0 0 20px;
}
.contact__sub {
  font-size: 17px;
  color: var(--ink-soft);
  margin: 0 0 32px;
}
.contact__details {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}
.contact__detail-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 600;
  color: var(--accent-deep);
  text-decoration: none;
}
.contact__detail-link:hover { text-decoration: underline; }
.contact__assurances { margin: 0; }

.contact__form {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 24px;
}
.contact__field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.contact__field--full {
  grid-column: 1 / -1;
}
.contact__field label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.contact__field label span {
  color: var(--accent-deep);
}
.contact__field input,
.contact__field select,
.contact__field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--bg-warm);
  color: var(--ink);
  font-size: 15px;
  transition: border-color 0.2s;
}
.contact__field input:focus,
.contact__field select:focus,
.contact__field textarea:focus {
  outline: none;
  border-color: var(--accent);
}
.contact__field textarea { resize: vertical; min-height: 110px; }

.contact__field--submit {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact__success {
  display: none;
  font-size: 14px;
  color: var(--accent-deep);
  font-weight: 600;
  padding: 14px 18px;
  background: var(--halo);
  border-radius: var(--radius-md);
  border: 1px solid var(--accent-bright);
}

@media (max-width: 860px) {
  .contact__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .contact__form {
    grid-template-columns: 1fr;
    padding: 28px 20px;
  }
}

/* avatar-outreach overrides */
.brand__mark{height:36px!important;width:auto!important;max-width:180px!important;object-fit:contain!important;background:transparent!important;border-radius:4px!important;filter:none!important;}
.service__media,.gallery__tile{position:relative;overflow:hidden;}.service__media{aspect-ratio:4/3;}.gallery__tile{aspect-ratio:4/3;}.ph-img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;display:block;}.ba__compare{max-width:780px!important;margin-left:auto!important;margin-right:auto!important;aspect-ratio:16/10!important;height:auto!important;}
