/* ═══════════════════════════════════════════════════════════════════
   Roofing Site — Landing Page Styles
   Mobile-first. All media queries min-width.
   ═══════════════════════════════════════════════════════════════════ */

@import url('tokens.css');

/* ─── Reset & Base ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
[hidden] { display: none !important; }

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

body {
  font-family: var(--font);
  font-size: var(--fs-base);
  line-height: var(--lh-normal);
  color: var(--c-text);
  background: var(--c-bg);
  /* Space for sticky mobile bar */
  padding-bottom: 72px;
}

@media (min-width: 1024px) {
  body { padding-bottom: 0; }
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
button { cursor: pointer; font-family: inherit; }
ul { list-style: none; }

/* ─── Focus styles (WCAG 2.1 AA) ─────────────────────────────── */
:focus-visible {
  outline: 3px solid var(--c-cedar);
  outline-offset: 3px;
  border-radius: var(--r-sm);
}

/* ─── Container ─────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--px);
}

/* ─── Buttons ───────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: 0.875rem 1.5rem;
  font-size: var(--fs-base);
  font-weight: var(--fw-semi);
  line-height: 1;
  border: 2px solid transparent;
  border-radius: var(--r-md);
  text-decoration: none;
  transition: background var(--t-fast), color var(--t-fast), border-color var(--t-fast), transform var(--t-fast), box-shadow var(--t-fast);
  min-height: 52px; /* ≥44px tap target */
  white-space: nowrap;
}

.btn--primary {
  background: var(--c-cedar);
  color: var(--c-white);
  border-color: var(--c-cedar);
}
.btn--primary:hover, .btn--primary:focus-visible {
  background: var(--c-cedar-hover);
  border-color: var(--c-cedar-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(184, 118, 47, 0.35);
}
.btn--primary:active { transform: translateY(0); }

.btn--outline {
  background: transparent;
  color: var(--c-cedar);
  border-color: var(--c-cedar);
}
.btn--outline:hover {
  background: var(--c-cedar-light);
}

.btn--ghost {
  background: transparent;
  color: var(--c-text-muted);
  border-color: var(--c-border);
}
.btn--ghost:hover { background: var(--c-bg-alt); }

.btn--full { width: 100%; }
.btn--sm { padding: 0.625rem 1.125rem; min-height: 44px; font-size: var(--fs-sm); }
.btn--lg { padding: 1rem 2rem; font-size: var(--fs-lg); }

/* ─── Section spacing ───────────────────────────────────────────── */
.section { padding-block: clamp(2rem, 3vw + 1rem, 3.5rem); }

.section--alt { background: #d5dcd9; background: oklch(89% 0.01 158); }
.section--dark { background: var(--c-forest); color: var(--c-white); }

.section-header { text-align: center; margin-bottom: var(--sp-10); }
.section-sub-heading {
  font-family: var(--font-display);
  font-size: var(--fs-xl);
  font-weight: var(--fw-semi);
  color: var(--c-cedar);
  margin-top: 0;
  margin-bottom: var(--sp-4);
}
.section-label {
  display: inline-block;
  font-size: var(--fs-xs);
  font-weight: var(--fw-semi);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-cedar);
  margin-bottom: var(--sp-3);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.875rem, 2.5vw + 1rem, 2.25rem);
  font-weight: var(--fw-bold);
  color: var(--c-forest);
  line-height: var(--lh-tight);
  letter-spacing: -0.015em;
  text-align: center;
  margin-bottom: var(--sp-6);
}
.section--dark .section-title { color: var(--c-white); }
.section-sub {
  font-size: var(--fs-lg);
  color: var(--c-text-mid);
  margin-top: var(--sp-3);
  max-width: 560px;
  margin-inline: auto;
}
.section--dark .section-sub { color: rgba(255,255,255,0.8); }

/* ─── Stars ─────────────────────────────────────────────────────── */
.stars { color: var(--c-star); letter-spacing: 0.05em; }

/* ─── Image placeholder ─────────────────────────────────────────── */
.img-placeholder {
  background: #2A3E36;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: var(--sp-3);
  padding: var(--sp-8);
  color: rgba(255,255,255,0.5);
  font-size: var(--fs-sm);
  border: 2px dashed rgba(255,255,255,0.2);
}
.img-placeholder svg { opacity: 0.4; }
.img-placeholder strong {
  display: block;
  font-size: var(--fs-base);
  color: rgba(255,255,255,0.7);
  margin-bottom: var(--sp-1);
}

/* ════════════════════════════════════════════════════════════════════
   SITE HEADER
   ════════════════════════════════════════════════════════════════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(27, 58, 45, 0.97);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: box-shadow var(--t-base);
}
.site-header.scrolled { box-shadow: var(--sh-lg); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  padding-block: var(--sp-3);
}

.header-logo {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  color: var(--c-white);
  font-weight: var(--fw-bold);
  font-size: var(--fs-lg);
  flex-shrink: 0;
  /* No link — landing page, exits are convert or leave */
  user-select: none;
}
.header-logo-img {
  height: 40px;
  width: auto;
  display: block;
}

.header-review-badge {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  font-size: var(--fs-sm);
  color: rgba(255,255,255,0.85);
  line-height: 1.3;
}
@media (min-width: 640px) { .header-review-badge { display: flex; } }
.header-review-badge .stars { font-size: var(--fs-base); }

.header-actions {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  flex-shrink: 0;
}
.header-phone {
  color: var(--c-white);
  font-weight: var(--fw-semi);
  font-size: var(--fs-base);
  text-decoration: none;
  display: none;
}
@media (min-width: 480px) { .header-phone { display: inline; } }
.header-quote-btn { display: none; }
@media (min-width: 768px) { .header-quote-btn { display: inline-flex; } }

/* Mobile-only stacked trust badges (right side). The centered badge takes over at ≥640px. */
.header-trust-stack {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  line-height: 1.15;
  font-size: var(--fs-xs);
  font-weight: var(--fw-semi);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.9);
}
@media (min-width: 640px) { .header-trust-stack { display: none; } }

/* ════════════════════════════════════════════════════════════════════
   HERO
   ════════════════════════════════════════════════════════════════════ */
.hero {
  /*
   * PLACEHOLDER PHOTO: Craftsman-style house exterior, stock (Pexels #5502227),
   * now self-hosted (assets/img/hero-roof.webp|jpg) for LCP + reliability.
   * REPLACE WITH: After-shot of a completed Western OR roof replacement.
   * Spec §13: Craftsman/mid-century/NW Contemporary, clear PNW sky, no people.
   * Format: AVIF → WebP → JPEG, min 1920×1080px.
   */
  background-image:
    linear-gradient(rgba(0,0,0,0.58), rgba(0,0,0,0.48)),
    url('../img/hero-roof.jpg');
  background-image:
    linear-gradient(rgba(0,0,0,0.58), rgba(0,0,0,0.48)),
    image-set(
      url('../img/hero-roof.webp') type('image/webp'),
      url('../img/hero-roof.jpg') type('image/jpeg'));
  background-size: cover;
  background-position: center top;
  color: var(--c-white);
  padding-top: clamp(3rem, 5vw, 5rem);
  padding-bottom: clamp(3rem, 5vw, 5rem);
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.008'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-6);
  position: relative;
  z-index: 1;
}
.hero-text {
  text-align: center;
  max-width: 640px;
  width: 100%;
}
.hero-widget-col {
  width: 100%;
  max-width: 680px;
}

.hero-eyebrow {
  display: inline-block;
  font-size: var(--fs-xs);
  font-weight: var(--fw-semi);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-cedar);
  background: rgba(184, 118, 47, 0.12);
  border: 1px solid rgba(184, 118, 47, 0.3);
  border-radius: var(--r-full);
  padding: var(--sp-1) var(--sp-3);
  margin-bottom: var(--sp-4);
}

.hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(1.875rem, 3vw + 1rem, 2.75rem);
  font-weight: var(--fw-bold);
  line-height: var(--lh-tight);
  letter-spacing: -0.025em;
  color: var(--c-white);
  margin-bottom: var(--sp-4);
}

.hero-sub {
  font-size: var(--fs-lg);
  color: rgba(255,255,255,0.82);
  line-height: var(--lh-normal);
  margin-bottom: var(--sp-6);
  max-width: 540px;
  margin-inline: auto;
}

.hero-trust-micro {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2) var(--sp-4);
  font-size: var(--fs-sm);
  color: rgba(255,255,255,0.7);
  margin-bottom: var(--sp-6);
}
.hero-trust-micro .stars { color: var(--c-star); font-size: 1em; }
.hero-trust-micro-sep { opacity: 0.3; }

.hero-mobile-cta { display: none; }

.hero-secondary-cta {
  display: block;
  margin-top: var(--sp-3);
  font-size: var(--fs-sm);
  color: rgba(255,255,255,0.7);
}
.hero-secondary-cta a { color: rgba(255,255,255,0.9); font-weight: var(--fw-medium); }

/* Trust badge band at bottom of hero */
.hero-badge-band {
  margin-top: var(--sp-10);
  padding-top: var(--sp-6);
  border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-badge-band-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--sp-6);
}
.hero-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-1);
  text-align: center;
}
.hero-badge-label {
  font-size: var(--fs-xs);
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.hero-badge-value {
  font-size: var(--fs-sm);
  font-weight: var(--fw-semi);
  color: rgba(255,255,255,0.9);
}
.hero-badge-value a {
  color: rgba(255,255,255,0.7);
  font-size: var(--fs-xs);
  font-weight: var(--fw-normal);
  text-decoration: underline;
  display: block;
  margin-top: 2px;
}

/* ════════════════════════════════════════════════════════════════════
   QUOTE WIDGET
   ════════════════════════════════════════════════════════════════════ */
.widget-card {
  background: var(--c-white);
  border-radius: var(--r-xl);
  box-shadow: var(--sh-xl);
  position: relative;   /* anchor for the top-right close (X) */
  /* No overflow:hidden — allows autocomplete dropdown to escape the card bounds */
}


.widget-top {
  padding: var(--sp-5) var(--sp-5) var(--sp-3);
  background: var(--c-forest);
  color: var(--c-white);
  border-radius: var(--r-xl) var(--r-xl) 0 0;
}
.widget-progress-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--sp-2);
}
.widget-step-label {
  font-size: var(--fs-xs);
  font-weight: var(--fw-medium);
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.widget-restart-btn {
  font-size: var(--fs-xs);
  color: rgba(255,255,255,0.55);
  background: none;
  border: none;
  padding: var(--sp-1) var(--sp-2);
  border-radius: var(--r-sm);
  min-height: 44px;
  transition: color var(--t-fast);
}
.widget-restart-btn:hover { color: rgba(255,255,255,0.9); }

.widget-progress-bar {
  height: 4px;
  background: rgba(255,255,255,0.15);
  border-radius: var(--r-full);
  overflow: hidden;
}
.widget-progress-fill {
  height: 100%;
  background: var(--c-cedar);
  border-radius: var(--r-full);
  transition: width 300ms cubic-bezier(.4,0,.2,1);
  width: 20%;
}

.widget-body {
  padding: var(--sp-5) var(--sp-5) var(--sp-6);
  background: var(--c-bg);
  border-radius: 0 0 var(--r-xl) var(--r-xl);
}
/* When back button is visible it becomes the card's bottom, so un-round widget-body */
.widget-card:has(.wg-back-btn:not([hidden])) .widget-body {
  border-radius: 0;
}
.widget-eyebrow {
  font-family: var(--font-display);
  font-size: var(--fs-xl);
  font-weight: var(--fw-bold);
  color: var(--c-white);
  text-align: center;
  margin-bottom: var(--sp-4);
}

/* Widget step */
.wg-step { animation: fadeSlideIn 180ms cubic-bezier(0.16, 1, 0.3, 1) both; }
@keyframes fadeSlideIn {
  from { opacity: 0; transform: translateX(12px); }
  to   { opacity: 1; transform: translateX(0); }
}

.wg-step h3 {
  font-size: var(--fs-xl);
  font-weight: var(--fw-bold);
  color: var(--c-slate);
  margin-bottom: var(--sp-2);
  line-height: var(--lh-snug);
}
.wg-step p {
  font-size: var(--fs-sm);
  color: var(--c-text-muted);
  margin-bottom: var(--sp-4);
}

/* New Places Autocomplete element (PlaceAutocompleteElement)
   Target both possible tag names — Google's docs are inconsistent between versions */
gmp-placeautocomplete,
gmp-place-autocomplete {
  width: 100%;
  display: block;
  min-height: 52px;
  color-scheme: light;
  --gmp-input-padding: 0.875rem 1rem;
  --gmp-input-font-size: var(--fs-base);
  --gmp-input-font-family: var(--font);
  --gmp-input-border-color: var(--c-border);
  --gmp-input-border-radius: var(--r-md);
  --gmp-input-background-color: var(--c-white);
  --gmp-input-background: var(--c-white);
  --gmp-input-placeholder-color: var(--c-text-muted);
  --gmp-input-outline-color: var(--c-forest);
  --gmp-color-surface: var(--c-white);
  --gmp-color-on-surface: var(--c-text);
}

/* Autocomplete suggestions dropdown (injected at body level by Google) */
.pac-container {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-top: none;
  border-radius: 0 0 var(--r-md) var(--r-md);
  box-shadow: var(--sh-lg);
  font-family: var(--font);
  font-size: var(--fs-sm);
  z-index: 9999;
}
.pac-item {
  color: var(--c-text);
  padding: var(--sp-2) var(--sp-3);
  border-top: 1px solid var(--c-border-light);
  cursor: pointer;
  line-height: 1.5;
}
.pac-item:hover,
.pac-item.pac-item-selected { background: var(--c-bg); }
.pac-item-query { color: var(--c-slate); font-weight: var(--fw-medium); }
.pac-matched { font-weight: var(--fw-bold); }

/* Address input */
.wg-address-group {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  scroll-margin-top: 84px;   /* clear the sticky header when scrolled into view on focus */
}

.wg-input {
  width: 100%;
  padding: 0.875rem var(--sp-4);
  font-size: var(--fs-base);
  font-family: var(--font);
  color: var(--c-text);
  background: var(--c-white);
  border: 1.5px solid var(--c-border);
  border-radius: var(--r-md);
  min-height: 52px;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.wg-input:focus {
  outline: none;
  border-color: var(--c-forest);
  box-shadow: 0 0 0 3px rgba(27, 58, 45, 0.12);
}
.wg-input--error {
  border-color: var(--c-error);
  box-shadow: 0 0 0 3px rgba(185, 28, 28, 0.1);
}
.wg-input::placeholder { color: var(--c-text-muted); }

/* Magnifying-glass icon in the address search bar (like the Google Maps input) */
#wg-address {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23707070' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='7'/%3E%3Cline x1='21' y1='21' x2='16.65' y2='16.65'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: left 0.95rem center;
  background-size: 18px 18px;
  padding-left: 2.9rem;
}

/* Custom address autocomplete dropdown (Place Autocomplete Data API — our own UI, not the
   fullscreen-on-mobile PlaceAutocompleteElement widget). Positioned right under the input. */
.wg-ac-wrap { position: relative; }
.wg-ac {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  z-index: 50;
  margin: 0;
  padding: 0;
  list-style: none;
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  box-shadow: var(--sh-lg);
  max-height: 340px;
  overflow-y: auto;
}
.wg-ac-item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-2);
  padding: var(--sp-2) var(--sp-3);
  font-size: var(--fs-sm);
  line-height: 1.4;
  border-top: 1px solid var(--c-border-light);
  cursor: pointer;
}
.wg-ac-item:first-child { border-top: none; }
.wg-ac-item.is-active,
.wg-ac-item:hover { background: var(--c-bg); }
.wg-ac-pin {
  flex: 0 0 16px;
  height: 20px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23707070'%3E%3Cpath d='M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5a2.5 2.5 0 1 1 0-5 2.5 2.5 0 0 1 0 5z'/%3E%3C/svg%3E") no-repeat center;
  background-size: 15px;
  opacity: 0.7;
}
.wg-ac-text { min-width: 0; }
.wg-ac-main { color: var(--c-slate); font-weight: var(--fw-medium); }
.wg-ac-sec { color: var(--c-text-muted); margin-left: 0.4em; }
.wg-ac-attr {
  display: flex;
  justify-content: flex-end;
  padding: 6px var(--sp-3);
  border-top: 1px solid var(--c-border-light);
}
.wg-ac-attr img { height: 14px; display: block; }
/* Clear (×) button inside the address field */
.wg-ac-wrap .wg-input { padding-right: 2.75rem; }
.wg-ac-clear {
  position: absolute;
  top: 26px;                 /* center of the 52px input (wrap height = input height) */
  right: var(--sp-3);
  transform: translateY(-50%);
  margin: 0;
  width: 26px;
  height: 26px;
  border: none;
  border-radius: var(--r-full);
  background: var(--c-bg-alt);
  color: var(--c-text-muted);
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.wg-ac-clear:hover { background: var(--c-border); color: var(--c-text); }

/* .wg-step .wg-error needed to beat ".wg-step p" muted color */
.wg-error,
.wg-step .wg-error {
  font-size: var(--fs-sm);
  color: #DC2626;
  font-weight: var(--fw-semi);
  margin-top: var(--sp-1);
}

.wg-micro {
  text-align: center;
  font-size: var(--fs-xs);
  color: var(--c-text-muted);
  margin-top: var(--sp-3);
}
.wg-micro a { color: var(--c-forest); }

/* Tap cards */
.wg-cards {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  margin-top: var(--sp-4);
}
.wg-cards--grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-2);
}
@media (min-width: 360px) {
  .wg-cards--grid { grid-template-columns: 1fr 1fr; }
}

.wg-card {
  width: 100%;
  padding: var(--sp-4) var(--sp-4);
  padding-right: 2.5rem;
  background: var(--c-white);
  border: 1.5px solid var(--c-border);
  border-radius: var(--r-lg);
  cursor: pointer;
  text-align: left;
  transition: border-color var(--t-fast), background var(--t-fast),
              box-shadow var(--t-fast), transform var(--t-fast);
  min-height: 62px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  box-shadow: var(--sh-sm);
}
.wg-card:nth-child(even) {
  filter: brightness(0.98);
}
.wg-card:hover {
  border-color: var(--c-forest-mid);
  background: rgba(27,58,45,0.05);
  box-shadow: var(--sh-md);
}
.wg-card:active {
  transform: scale(0.985);
  background: rgba(27,58,45,0.09);
  border-color: var(--c-forest);
  box-shadow: var(--sh-sm);
}
.wg-card--selected {
  border-color: var(--c-forest);
  border-width: 2px;
  background: rgba(27,58,45,0.07);
  box-shadow: 0 0 0 3px rgba(27,58,45,0.12), var(--sh-sm);
}
.wg-card-name {
  display: block;
  font-size: var(--fs-base);
  font-weight: var(--fw-bold);
  color: var(--c-slate);
  line-height: var(--lh-snug);
}
/* Material cards with a texture thumbnail */
.wg-card--thumb {
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: var(--sp-3);
  padding: var(--sp-3);
  padding-right: 2.5rem;
}
.wg-card-thumb {
  flex: 0 0 auto;
  width: 56px;
  height: 56px;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--c-bg-alt);
}
.wg-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* "Not sure" swatch */
.wg-card-thumb--help {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fs-xl);
  font-weight: var(--fw-bold);
  color: var(--c-text-muted);
}
.wg-card-body { min-width: 0; }
.wg-card-note {
  display: block;
  font-size: var(--fs-sm);
  color: var(--c-text-muted);
  margin-top: 3px;
}
.wg-card-badge {
  position: absolute;
  top: 7px;
  right: 9px;
  font-size: 0.62rem;
  font-weight: var(--fw-bold);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--c-forest);
  background: rgba(27,58,45,0.09);
  border-radius: var(--r-full);
  padding: 2px 7px;
  line-height: 1.4;
}
.wg-card-arrow {
  position: absolute;
  right: var(--sp-3);
  top: 50%;
  transform: translateY(-50%);
  color: var(--c-cedar);
  font-size: var(--fs-lg);
  opacity: 0;
  transition: opacity var(--t-fast), transform var(--t-fast);
  pointer-events: none;
}
.wg-card:hover .wg-card-arrow {
  opacity: 1;
  transform: translateY(-50%) translateX(3px);
}
/* Always show arrow on touch devices */
@media (hover: none) {
  .wg-card-arrow { opacity: 0.7; }
}

/* Contact form */
.wg-form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-3);
}
@media (min-width: 400px) {
  .wg-form-row { grid-template-columns: 1fr 1fr; }
}
.wg-form-group {
  display: flex;
  flex-direction: column;
  gap: var(--sp-1);
  margin-bottom: var(--sp-3);
}

.wg-tcpa {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-2);
  font-size: var(--fs-xs);
  color: var(--c-text-muted);
  line-height: var(--lh-normal);
  margin-block: var(--sp-4);
  cursor: pointer;
}
.wg-tcpa input[type="checkbox"] {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--c-forest);
  cursor: pointer;
}

/* Soft deflection (under-10yr) */
.wg-deflect-actions {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  margin-top: var(--sp-5);
}

/* Result screen — two-column layout */
.wg-result-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-8);
}

@media (min-width: 640px) {
  .wg-result-layout {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

/* The standalone estimate page caps the card at 560px, so a two-column result is too
   cramped (body copy ransom-wraps, the booking CTA clips). Keep it single-column there;
   the wider homepage modal still gets two columns. */
.estimator-standalone .wg-result-layout {
  grid-template-columns: 1fr;
}

/* The booking CTA label is long; let it wrap instead of overflowing its column and
   clipping (mirrors .compare-card .btn). .btn defaults to white-space: nowrap. */
.wg-booking-form .btn--full,
.wg-sched .btn { white-space: normal; }

.wg-result-estimate {
  text-align: center;
}

.wg-result-label {
  font-size: var(--fs-sm);
  color: var(--c-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--sp-2);
}
/* .wg-result prefix raises specificity above ".wg-step p" (line ~492), which would
   otherwise force the headline price down to --fs-sm (14px). */
.wg-result .wg-result-price {
  font-size: 1.6875rem;   /* 27px — keeps even a 6-figure range on one line at 390px */
  font-weight: var(--fw-bold);
  color: var(--c-forest);
  line-height: 1;
  margin-bottom: var(--sp-2);
}
/* Suppressed state: no dollar figure — smaller, lighter, not a giant number */
.wg-result .wg-result-price--suppressed {
  font-size: var(--fs-xl);
  font-weight: var(--fw-semi);
}
.wg-result-sqft {
  font-size: var(--fs-xs);
  color: var(--c-text-muted);
  margin-bottom: var(--sp-1);
}
.wg-result-material {
  font-size: var(--fs-sm);
  color: var(--c-text-mid);
  font-weight: var(--fw-medium);
  margin-bottom: var(--sp-4);
}
/* Highlighted box around the headline estimate — the focal point of the result */
.wg-estimate-box {
  border: 2px solid var(--c-cedar);
  background: var(--c-cedar-light);
  border-radius: var(--r-md);
  padding: var(--sp-5) var(--sp-4) var(--sp-4);
  margin-bottom: var(--sp-4);
}
.wg-estimate-box .wg-result-material { margin-bottom: 0; }
.wg-result-note {
  font-size: var(--fs-xs);
  color: var(--c-text-muted);
  margin-bottom: var(--sp-4);
  line-height: var(--lh-normal);
  text-align: left;
}
.wg-result-note a { color: var(--c-forest); font-weight: var(--fw-semi); }

/* Roof-analysis loading state — calm, determinate bar + a checklist of the real
   measurement stages that ticks off as it works. No sheen/flash/rotating copy. */
.wg-analyzing {
  padding: var(--sp-8) var(--sp-5);
  max-width: 440px;
  margin: 0 auto;
}
.wg-analyzing-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: var(--sp-3);
}
.wg-analyzing-title {
  font-size: var(--fs-lg);
  font-weight: var(--fw-semi);
  color: var(--c-text);
}
.wg-analyzing-pct {
  font-variant-numeric: tabular-nums;
  font-weight: var(--fw-bold);
  font-size: var(--fs-lg);
  color: var(--c-forest);
}
.wg-analyzing-bar {
  height: 6px;
  width: 100%;
  background: var(--c-bg-alt);
  border-radius: var(--r-full);
  overflow: hidden;
  margin-bottom: var(--sp-6);
}
.wg-analyzing-fill {
  height: 100%;
  width: 0%;
  background: var(--c-forest);
  border-radius: var(--r-full);
  transition: width 600ms cubic-bezier(0.33, 1, 0.68, 1);
}
.wg-analyzing-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: left;
}
.wg-astep {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding: var(--sp-2) 0;
  font-size: var(--fs-sm);
  color: var(--c-text-muted);
  transition: color var(--t-slow);
}
.wg-astep-mark {
  flex: none;
  box-sizing: border-box;
  width: 18px;
  height: 18px;
  border-radius: var(--r-full);
  border: 2px solid var(--c-border);
  position: relative;
  transition: border-color var(--t-slow), background var(--t-slow);
}
/* active stage: forest ring with a quiet spinner */
.wg-astep.is-active {
  color: var(--c-text);
  font-weight: var(--fw-medium);
}
.wg-astep.is-active .wg-astep-mark {
  border-color: var(--c-forest);
  border-top-color: transparent;
  animation: wg-spin 0.8s linear infinite;
}
/* completed stage: filled green with a check */
.wg-astep.is-done {
  color: var(--c-text-mid);
}
.wg-astep.is-done .wg-astep-mark {
  background: var(--c-success);
  border-color: var(--c-success);
  animation: none;
}
.wg-astep.is-done .wg-astep-mark::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 2px;
  width: 4px;
  height: 8px;
  border: solid var(--c-white);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
@keyframes wg-spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) {
  .wg-analyzing-fill { transition: none; }
  .wg-astep.is-active .wg-astep-mark {
    animation: none;
    border-top-color: var(--c-forest);
  }
}

/* Estimate caveats — honest expectations, reinforces the inspection */
.wg-result-disclaimer {
  text-align: left;
  font-size: var(--fs-xs);
  color: var(--c-text-muted);
  line-height: var(--lh-normal);
  background: var(--c-bg-alt);
  border-radius: var(--r-md);
  padding: var(--sp-3) var(--sp-4);
  margin-bottom: var(--sp-4);
}
.wg-result-disclaimer a { color: var(--c-forest); font-weight: var(--fw-semi); }
/* Collapsible: the long "what could change this price" detail is available on tap but
   doesn't wall off the booking form below the estimate. */
.wg-result-disclaimer-title {
  font-weight: var(--fw-semi);
  font-size: var(--fs-sm);
  color: var(--c-text-mid);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-2);
}
.wg-result-disclaimer-title::-webkit-details-marker { display: none; }
/* Expand/collapse icon reuses the FAQ's .faq-question-icon (circular "+" that rotates to
   "×" and fills green on open) so the two accordions look identical. */
.wg-result-disclaimer[open] .wg-result-disclaimer-title { margin-bottom: var(--sp-2); }
.wg-result-disclaimer ul {
  list-style: none;
  margin: 0 0 var(--sp-2);
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--sp-1);
}
.wg-result-disclaimer li {
  padding-left: 1.1em;
  position: relative;
  font-size: var(--fs-sm);
}
.wg-result-disclaimer li::before {
  content: '•';
  position: absolute;
  left: 0.2em;
  color: var(--c-cedar);
}

.wg-result-bullets {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  background: var(--c-bg);
  border-radius: var(--r-md);
  padding: var(--sp-4);
  font-size: var(--fs-sm);
  color: var(--c-text-mid);
}
.wg-result-bullets li::before {
  content: '✓ ';
  color: var(--c-success);
  font-weight: var(--fw-bold);
}

/* Booking column */
.wg-result-book {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}
.wg-result-book-heading {
  font-size: var(--fs-lg);
  font-weight: var(--fw-semi);
  color: var(--c-text);
  margin-bottom: var(--sp-1);
  text-align: center;
}
/* Trust reassurance under the booking button */
.wg-trust-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: var(--sp-2);
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  color: var(--c-text-mid);
}
.wg-trust-icon {
  flex: 0 0 auto;
  color: var(--c-forest);
}

/* Pre-filled read-only address field */
.wg-input--prefilled {
  background: var(--c-bg-alt);
  color: var(--c-text-muted);
  cursor: default;
}
.wg-input--prefilled:focus {
  outline: none;
  border-color: var(--c-border);
}

/* Custom scheduler — compact "pick a day → time → details" flow (content-height, no big iframe) */
/* min-width:0 lets the horizontal date scroller actually scroll instead of forcing the column
   (and the whole card) wider than the viewport — otherwise the content clips off the right edge. */
.wg-result-estimate,
.wg-result-book,
.wg-booking-form,
.wg-sched { min-width: 0; }
.wg-sched {
  width: 100%;
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: var(--sp-4);
}
/* date row: clickable "›" cue on the right that scrolls the dates forward */
.wg-sched-dates-wrap { position: relative; }
.wg-sched-scroll {
  position: absolute;
  top: 0;
  right: 0;
  bottom: var(--sp-2);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 var(--sp-1) 0 var(--sp-6);
  border: 0;
  cursor: pointer;
  font-size: var(--fs-2xl);
  font-weight: var(--fw-semi);
  line-height: 1;
  color: var(--c-forest);
  background: linear-gradient(to right, transparent, var(--c-white) 55%);
  transition: color var(--t-fast);
}
.wg-sched-scroll:hover { color: var(--c-forest-mid); }
.wg-sched-scroll[hidden] { display: none; }
/* back arrow (mirror): sits on the left, fades the other way */
.wg-sched-scroll--prev {
  right: auto;
  left: 0;
  justify-content: flex-start;
  padding: 0 var(--sp-6) 0 var(--sp-1);
  background: linear-gradient(to left, transparent, var(--c-white) 55%);
}
.wg-sched-status,
.wg-sched-hint {
  font-size: var(--fs-sm);
  color: var(--c-text-muted);
  text-align: center;
  padding: var(--sp-3);
  margin: 0;
}
/* dates: a single horizontally-scrollable row of pills */
.wg-sched-dates {
  display: flex;
  gap: var(--sp-2);
  overflow-x: auto;
  padding-bottom: var(--sp-2);
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}
.wg-date-pill {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 58px;
  padding: var(--sp-2) var(--sp-3);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  background: var(--c-white);
  cursor: pointer;
  transition: border-color var(--t-fast), background var(--t-fast);
}
.wg-date-pill:hover { border-color: var(--c-forest-mid); }
.wg-date-pill.is-sel { border-color: var(--c-forest); background: var(--c-forest); }
.wg-date-pill.is-sel .wg-date-wd,
.wg-date-pill.is-sel .wg-date-md { color: var(--c-white); }
.wg-date-wd { font-size: var(--fs-xs); color: var(--c-text-muted); text-transform: uppercase; letter-spacing: 0.04em; }
.wg-date-md { font-size: var(--fs-sm); font-weight: var(--fw-semi); color: var(--c-text); white-space: nowrap; }
/* times: wrapping chips */
.wg-sched-times { margin-top: var(--sp-2); }
.wg-tz-note { font-size: var(--fs-xs); color: var(--c-text-muted); margin: 0 0 var(--sp-2); }
/* label inline, left of the chips; fixed-width label column aligns every group's chips */
.wg-time-block { display: flex; align-items: flex-start; gap: var(--sp-2); margin-bottom: var(--sp-2); }
.wg-time-group {
  flex: 0 0 76px;            /* = widest label ("Afternoon") so all chip columns line up */
  padding-top: 9px;
  font-size: var(--fs-xs);
  font-weight: var(--fw-semi);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--c-text-muted);
  white-space: nowrap;
}
/* chips: 3 aligned columns that fill the remaining width */
.wg-time-row { flex: 1 1 0; min-width: 0; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: var(--sp-2); }
/* confirmation screen extras */
.wg-success-when { font-size: var(--fs-lg); font-weight: var(--fw-semi); color: var(--c-forest); margin: var(--sp-1) 0; }
/* Stack the "Reschedule or cancel" link UNDER the "Add to calendar" button */
.wg-success-actions { display: flex; flex-direction: column; align-items: center; gap: var(--sp-3); margin-top: var(--sp-4); }
.wg-success-manage { font-size: var(--fs-sm); color: var(--c-text-muted); text-decoration: underline; }
.wg-time-chip {
  width: 100%;            /* fill the grid cell so every chip is the same size */
  box-sizing: border-box;
  display: flex;          /* center the time within the capsule, vertically + horizontally */
  align-items: center;
  justify-content: center;
  padding: var(--sp-2) var(--sp-3);
  border: 1px solid var(--c-border);
  border-radius: var(--r-full);
  background: var(--c-white);
  font-size: var(--fs-sm);
  color: var(--c-text);
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
  transition: border-color var(--t-fast), background var(--t-fast), color var(--t-fast);
}
.wg-time-chip:hover { border-color: var(--c-forest-mid); }
.wg-time-chip.is-sel { border-color: var(--c-forest); background: var(--c-forest); color: var(--c-white); }
/* details form (name / phone / email) */
.wg-sched-form {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  margin-top: var(--sp-4);
}
/* .wg-step .wg-sched-err needed to beat ".wg-step p" muted color (same reason as .wg-error) */
.wg-sched-err,
.wg-step .wg-sched-err { font-size: var(--fs-sm); color: var(--c-error); font-weight: var(--fw-semi); margin: 0; text-align: center; }

/* Booking success state */
.wg-book-success {
  text-align: center;
  padding: var(--sp-8) var(--sp-4);
}
.wg-book-success-icon {
  font-size: 2.25rem;
  color: var(--c-success);
  margin-bottom: var(--sp-3);
  line-height: 1;
}
.wg-book-success h3 {
  font-size: var(--fs-xl);
  font-weight: var(--fw-semi);
  color: var(--c-text);
  margin-bottom: var(--sp-3);
}
.wg-book-success p {
  font-size: var(--fs-sm);
  color: var(--c-text-muted);
  line-height: var(--lh-normal);
}

/* Widget back button */
.wg-back-btn {
  display: block;
  background: none;
  border: none;
  color: var(--c-text-muted);
  font-size: var(--fs-sm);
  padding: var(--sp-3) var(--sp-5);
  border-top: 1px solid var(--c-border-light);
  width: 100%;
  text-align: left;
  min-height: 44px;
  border-radius: 0 0 var(--r-xl) var(--r-xl);
  transition: color var(--t-fast);
}
.wg-back-btn:hover { color: var(--c-text); }

/* ════════════════════════════════════════════════════════════════════
   SOCIAL PROOF (Trust band #2)
   ════════════════════════════════════════════════════════════════════ */
.testimonial-grid {
  display: grid;
  gap: var(--sp-4);
  margin-bottom: var(--sp-10);
}
@media (min-width: 640px) {
  .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .testimonial-grid { grid-template-columns: repeat(3, 1fr); }
}

.review-card {
  background: var(--c-white);
  border: 1px solid var(--c-border-light);
  border-radius: var(--r-lg);
  padding: var(--sp-5);
  box-shadow: var(--sh-sm);
}
.review-card .stars { margin-bottom: var(--sp-3); font-size: var(--fs-lg); }
.review-card blockquote {
  font-family: var(--font-display);
  font-size: var(--fs-base);
  font-weight: 400;
  color: var(--c-text-mid);
  line-height: var(--lh-normal);
  margin-bottom: var(--sp-4);
  font-style: italic;
}
.review-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-3);
}
.review-card-author strong {
  display: block;
  font-size: var(--fs-sm);
  font-weight: var(--fw-semi);
  color: var(--c-text);
}
.review-card-author span {
  display: block;
  font-size: var(--fs-xs);
  color: var(--c-text-muted);
  margin-top: 2px;
}
.review-platform {
  font-size: var(--fs-xs);
  color: var(--c-text-muted);
  background: var(--c-bg);
  border: 1px solid var(--c-border-light);
  border-radius: var(--r-sm);
  padding: var(--sp-1) var(--sp-2);
  white-space: nowrap;
}

/* Why us grid */
.why-us-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-4);
}
@media (min-width: 768px) {
  .why-us-grid { grid-template-columns: repeat(3, 1fr); }
}

.why-us-item {
  text-align: center;
  padding: var(--sp-6) var(--sp-5);
  background: var(--c-bg);
  border: 1px solid var(--c-border-light);
  border-radius: var(--r-lg);
}
.why-us-icon {
  width: 48px;
  height: 48px;
  background: rgba(27,58,45,0.15);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--sp-3);
  color: var(--c-forest);
}
.why-us-title {
  font-size: var(--fs-base);
  font-weight: var(--fw-bold);
  color: var(--c-slate);
  margin-bottom: var(--sp-1);
}
.why-us-desc {
  font-size: var(--fs-xs);
  color: var(--c-text-muted);
  line-height: var(--lh-normal);
}

/* ════════════════════════════════════════════════════════════════════
   PROCESS
   ════════════════════════════════════════════════════════════════════ */
.about-layout {
  display: grid;
  gap: var(--sp-8);
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .about-layout { grid-template-columns: 2fr 1fr; align-items: start; }
}
.about-body { text-align: left; max-width: 680px; margin-inline: auto; }
.about-body p {
  font-size: var(--fs-base);
  color: var(--c-text-mid);
  line-height: var(--lh-loose);
  margin-bottom: var(--sp-4);
}
.about-credentials {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: var(--sp-3) var(--sp-6);
  margin-top: var(--sp-5);
  padding: 0;
  text-align: center;
}
.about-credentials li {
  position: relative;
  font-size: var(--fs-sm);
  font-weight: var(--fw-semi);
  color: var(--c-forest);
}
/* vertical separators between items (not before the first) */
.about-credentials li:not(:last-child)::after {
  content: '';
  position: absolute;
  right: calc(var(--sp-6) / -2);
  top: 50%;
  transform: translateY(-50%);
  height: 1em;
  border-right: 1px solid var(--c-border);
}
@media (max-width: 560px) {
  .about-credentials { flex-direction: column; gap: var(--sp-2); }
  .about-credentials li:not(:last-child)::after { display: none; }
}
.about-map-label {
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-text-muted);
  text-align: center;
  margin-bottom: var(--sp-2);
}
.about-map {
  height: 200px;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-md);
}
.about-map-wrap { display: flex; flex-direction: column; }
@media (min-width: 768px) {
  .about-map { height: 100%; min-height: 180px; }
  .about-map-wrap { height: 100%; }
}
.about-facts {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--sp-6) var(--sp-10);
  margin-top: var(--sp-8);
}
.about-fact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-1);
}
.about-fact-num {
  font-family: var(--font-display);
  font-size: var(--fs-xl);
  font-weight: var(--fw-bold);
  color: var(--c-forest);
}
.about-fact-label {
  font-size: var(--fs-xs);
  color: var(--c-text-muted);
  letter-spacing: 0.04em;
}
.about-steps {
  display: flex;
  gap: 0;
  margin-top: var(--sp-8);
  text-align: center;
}
.about-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  padding: 0 var(--sp-3);
}
.about-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 14px;
  left: calc(50% + 14px);
  right: calc(-50% + 14px);
  height: 1px;
  background: var(--c-border);
  z-index: 0;
}
.about-step strong {
  font-size: var(--fs-sm);
  font-weight: var(--fw-semi);
  color: var(--c-slate);
  display: block;
  margin-top: var(--sp-3);
  margin-bottom: var(--sp-2);
  line-height: var(--lh-snug);
}
.about-step-num {
  width: 28px;
  height: 28px;
  border-radius: var(--r-full);
  background: var(--c-cedar);
  color: var(--c-white);
  font-size: var(--fs-sm);
  font-weight: var(--fw-bold);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  margin-bottom: var(--sp-3);
  flex-shrink: 0;
}
.about-step p {
  font-size: var(--fs-xs);
  color: var(--c-text-muted);
  line-height: var(--lh-normal);
  margin: 0;
}
.about-cta {
  margin-top: var(--sp-8);
  display: inline-block;
}

/* ════════════════════════════════════════════════════════════════════
   PORTFOLIO GRID
   ════════════════════════════════════════════════════════════════════ */
.portfolio-scroll-wrap {
  position: relative;
}
.scroll-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(calc(-50% - 1.25rem));
  width: 48px;
  height: 48px;
  border-radius: var(--r-full);
  background: rgba(0,0,0,0.4);   /* translucent, like the lightbox nav arrows */
  border: 1px solid rgba(255,255,255,0.25);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #fff;
  z-index: 3;
  transition: opacity var(--t-fast), background var(--t-fast);
}
.scroll-arrow:hover {
  background: rgba(0,0,0,0.6);
}
.scroll-arrow--prev {
  left: var(--sp-2);
  opacity: 0;
  pointer-events: none;
}
.scroll-arrow--next {
  right: var(--sp-2);
}
.portfolio-grid {
  display: flex;
  gap: var(--sp-4);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.portfolio-grid::-webkit-scrollbar {
  display: none;
}
.portfolio-grid .portfolio-tile {
  flex: 0 0 calc(50% - var(--sp-2));
  scroll-snap-align: start;
}
@media (min-width: 768px) {
  .portfolio-grid .portfolio-tile {
    flex: 0 0 calc(25% - var(--sp-3));
  }
}
.portfolio-tile {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}
.portfolio-tile-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--c-bg-alt);
}
.portfolio-tile-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.portfolio-tile-img--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px dashed var(--c-border);
}
.portfolio-placeholder-label {
  font-size: var(--fs-xs);
  color: var(--c-text-muted);
}
.portfolio-tile-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.portfolio-tile-city {
  font-size: var(--fs-xs);
  color: var(--c-text-muted);
}
.portfolio-tile-detail {
  font-size: var(--fs-xs);
  color: var(--c-text-muted);
}
.portfolio-section {
  margin-bottom: var(--sp-10);
}
.portfolio-section:last-child {
  margin-bottom: 0;
}
.portfolio-section-label {
  font-size: var(--fs-xs);
  font-weight: var(--fw-semi);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--c-text-muted);
  margin: 0 0 var(--sp-4);
}
/* Before/after split frame */
.portfolio-tile--split {
  position: relative;
}
.portfolio-tile--split .split-before,
.portfolio-tile--split .split-after {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.portfolio-tile--split .split-before {
  clip-path: inset(0 50% 0 0);
}
.portfolio-tile--split .split-after {
  clip-path: inset(0 0 0 50%);
}
/* Variant: show the LEFT (first) half of the after photo in the right panel */
.portfolio-tile--split-left .split-before {
  clip-path: inset(0 50% 0 0);
  background-size: 125% auto;
  background-repeat: no-repeat;
  background-position: 100% center;
}
.portfolio-tile--split-left .split-after {
  clip-path: none;
  inset: 0 0 0 50%;
  width: auto;
  object-position: left center;
}
.portfolio-tile--split-r2 .split-after {
  clip-path: inset(0 0 0 50%);
  background-size: 130% auto;
  background-repeat: no-repeat;
  background-position: 25% center;
}
.split-divider {
  position: absolute;
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  background: rgba(255,255,255,0.9);
  transform: translateX(-50%);
  z-index: 1;
  pointer-events: none;
}
.split-lbl {
  position: absolute;
  bottom: var(--sp-2);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semi);
  background: rgba(0,0,0,0.52);
  color: #fff;
  padding: 2px 7px;
  border-radius: var(--r-sm);
  z-index: 2;
  pointer-events: none;
}
.split-lbl--before { left: var(--sp-2); }
.split-lbl--after  { right: var(--sp-2); }
.portfolio-cta {
  text-align: center;
  margin-top: var(--sp-8);
}

/* ════════════════════════════════════════════════════════════════════
   COMPARISON GRID
   ════════════════════════════════════════════════════════════════════ */
.compare-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-4);
}
@media (min-width: 768px) {
  .compare-grid { grid-template-columns: repeat(3, 1fr); }
}
.compare-card .btn { white-space: normal; }

.compare-card {
  background: var(--c-white);
  border: 2px solid var(--c-border);
  border-radius: var(--r-xl);
  padding: var(--sp-5);
  display: flex;
  flex-direction: column;
  transition: border-color var(--t-base), box-shadow var(--t-base);
}
.compare-card:hover {
  border-color: var(--c-forest-mid);
  box-shadow: var(--sh-md);
}
.compare-card--popular {
  border-color: var(--c-forest);
  background: #f2f7f3;
  background: oklch(98% 0.012 158);
  position: relative;
}
.compare-card-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--c-forest);
  color: var(--c-white);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semi);
  padding: 3px 12px;
  border-radius: var(--r-full);
  white-space: nowrap;
}
.compare-card-img {
  margin: calc(-1 * var(--sp-5)) calc(-1 * var(--sp-5)) var(--sp-4);
  height: 110px;
  overflow: hidden;
  border-radius: var(--r-xl) var(--r-xl) 0 0;
  background: var(--c-bg-alt);
}
.compare-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.compare-card-name {
  font-size: var(--fs-xl);
  font-weight: var(--fw-bold);
  color: var(--c-slate);
  margin-bottom: var(--sp-4);
}
.compare-card-specs {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  margin-bottom: var(--sp-5);
}
.compare-spec {
  display: flex;
  flex-direction: column;
  gap: var(--sp-1);
  font-size: var(--fs-sm);
}
.compare-spec-label {
  color: var(--c-text-muted);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semi);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.compare-spec-value {
  color: var(--c-text);
  font-weight: var(--fw-medium);
  line-height: var(--lh-normal);
}
.compare-price-note {
  font-size: var(--fs-xs);
  color: var(--c-text-muted);
  margin-bottom: var(--sp-3);
  font-style: italic;
}



/* ════════════════════════════════════════════════════════════════════
   FAQ ACCORDION (native <details>)
   ════════════════════════════════════════════════════════════════════ */
.faq-list {
  max-width: 720px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

details.faq-item {
  background: var(--c-white);
  border: 1px solid var(--c-border-light);
  border-radius: var(--r-lg);
  overflow: hidden;
}
details.faq-item[open] {
  border-color: var(--c-forest-mid);
}
summary.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  padding: var(--sp-4) var(--sp-5);
  font-size: var(--fs-base);
  font-weight: var(--fw-semi);
  color: var(--c-slate);
  cursor: pointer;
  list-style: none;
  min-height: 56px;
  transition: background var(--t-fast);
}
summary.faq-question::-webkit-details-marker { display: none; }
summary.faq-question:hover { background: rgba(27,58,45,0.03); }
.faq-question-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--c-bg);
  border-radius: var(--r-full);
  color: var(--c-forest);
  font-size: 1.2em;
  font-weight: var(--fw-bold);
  transition: transform var(--t-base), background var(--t-base);
}
details[open] .faq-question-icon {
  transform: rotate(45deg);
  background: var(--c-forest);
  color: var(--c-white);
}
.faq-answer {
  padding: 0 var(--sp-5) var(--sp-5);
  font-size: var(--fs-base);
  color: var(--c-text-mid);
  line-height: var(--lh-loose);
  border-top: 1px solid var(--c-border-light);
  padding-top: var(--sp-4);
  background: rgba(27,58,45,0.025);
}

/* ════════════════════════════════════════════════════════════════════
   FINAL CTA BAND
   ════════════════════════════════════════════════════════════════════ */
.service-cta {
  background: #d5dcd9;
  background: oklch(89% 0.01 158);
  color: var(--c-text);
  padding-block: clamp(2rem, 3vw + 1rem, 3.5rem);
}
.service-cta-inner {
  display: grid;
  gap: var(--sp-8);
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 768px) {
  .service-cta-inner { grid-template-columns: 2fr 3fr; }
}
.service-cta-map .about-map-label { color: var(--c-text-muted); }
.service-cta-map .about-map { height: 320px; }
.service-cta-map .about-map iframe { display: block; width: 100%; height: 100%; }
@media (min-width: 768px) {
  .service-cta-map .about-map { height: 300px; }
}
.service-cta-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--sp-4);
}
.service-cta-btn { display: block; width: 100%; }
/* Wrapper sizes to the button so the "or" + call block stay the button's width */
.service-cta-actions {
  display: inline-flex;
  flex-direction: column;
  align-items: stretch;
  text-align: center;
  gap: var(--sp-2);
}
.service-cta-or {
  font-size: var(--fs-sm);
  color: var(--c-text-muted);
  margin: var(--sp-1) 0;
}
.service-cta-hours {
  font-size: var(--fs-sm);
  color: var(--c-text-muted);
  margin-top: var(--sp-1);
}
.service-cta-heading {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 2.5vw + 0.5rem, 2.25rem);
  font-weight: var(--fw-bold);
  line-height: var(--lh-tight);
  color: var(--c-forest);
}
.service-cta-sub {
  font-size: var(--fs-base);
  color: var(--c-text-mid);
  line-height: var(--lh-normal);
}
.service-cta-call {
  font-size: var(--fs-lg);
  font-weight: var(--fw-semi);
  color: var(--c-text-mid);
}
.service-cta-call a { color: var(--c-forest); font-weight: var(--fw-bold); }
.booking-cta {
  background: var(--c-forest);
  color: var(--c-white);
  padding-block: clamp(2rem, 3vw + 1rem, 3.5rem);
}
.booking-cta-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.booking-cta-heading {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 2.5vw + 0.5rem, 2.25rem);
  font-weight: var(--fw-bold);
  line-height: var(--lh-tight);
  letter-spacing: -0.02em;
  margin-bottom: var(--sp-2);
  color: var(--c-white);
}
.booking-cta-sub {
  font-size: var(--fs-base);
  color: rgba(255,255,255,0.75);
  margin-bottom: var(--sp-6);
  max-width: 440px;
  margin-inline: auto;
}
.booking-cta-form {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  max-width: 460px;
}
.bc-field { position: relative; }
.bc-input {
  width: 100%;
  padding: var(--sp-3) var(--sp-4);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--r-md);
  color: var(--c-white);
  font-size: var(--fs-base);
  font-family: var(--font);
  transition: border-color var(--t-fast), background var(--t-fast);
  box-sizing: border-box;
}
.bc-input::placeholder { color: rgba(255,255,255,0.4); }
.bc-input:focus {
  outline: none;
  border-color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.12);
}
.bc-input--error { border-color: #f87171; }
.bc-datetime-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  text-align: left;
}
.bc-datetime-btn.bc-selected {
  border-color: var(--c-cedar);
  background: rgba(184,118,47,0.2);
}
.bc-submit { margin-top: var(--sp-2); }
.bc-error {
  font-size: var(--fs-xs);
  color: #fca5a5;
  margin-top: var(--sp-1);
}
.bc-call-alt {
  margin-top: var(--sp-4);
  font-size: var(--fs-sm);
  color: rgba(255,255,255,0.45);
  text-align: center;
}
.bc-call-alt a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-weight: var(--fw-medium);
}
.bc-call-alt a:hover { color: var(--c-white); }

/* ════════════════════════════════════════════════════════════════════
   SITE FOOTER (slim landing-page variant)
   ════════════════════════════════════════════════════════════════════ */
.site-footer {
  background: var(--c-footer);
  color: rgba(255,255,255,0.6);
  padding-block: var(--sp-5);
  font-size: var(--fs-sm);
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-5);
  text-align: center;
}
@media (min-width: 768px) {
  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
    gap: var(--sp-8);
  }
}
.footer-logo {
  display: flex;
  align-items: center;
}
/* Hide the ARQ logo in the footer on mobile */
@media (max-width: 767px) {
  .footer-logo { display: none; }
}
.footer-logo-img {
  height: 34px;
  width: auto;
  display: block;
}
.footer-info { line-height: var(--lh-loose); }
/* Hide the phone number in the footer on mobile (the sticky bottom bar already has Call) */
@media (max-width: 767px) {
  .footer-phone-part { display: none; }
}
.footer-info a {
  color: rgba(255,255,255,0.55);
  text-decoration: underline;
}
.footer-info a:hover { color: rgba(255,255,255,0.85); }
.footer-legal { display: flex; gap: var(--sp-4); flex-wrap: wrap; justify-content: center; }
@media (min-width: 768px) { .footer-legal { justify-content: flex-end; } }

/* ════════════════════════════════════════════════════════════════════
   STICKY MOBILE BOTTOM BAR
   ════════════════════════════════════════════════════════════════════ */
.mobile-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 300;
  display: flex;
  box-shadow: 0 -2px 12px rgba(0,0,0,0.15);
  /* Safe area for newer iPhones */
  padding-bottom: env(safe-area-inset-bottom);
}
@media (min-width: 1024px) { .mobile-bar { display: none; } }

.mobile-bar-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  min-height: 60px;
  font-size: var(--fs-base);
  font-weight: var(--fw-semi);
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: opacity var(--t-fast);
  font-family: var(--font);
}
.mobile-bar-btn:active { opacity: 0.85; }
.mobile-bar-btn--call {
  background: var(--c-forest);
  color: var(--c-white);
}
.mobile-bar-btn--quote {
  background: var(--c-cedar);
  color: var(--c-white);
}

/* ════════════════════════════════════════════════════════════════════
   UTILITIES
   ════════════════════════════════════════════════════════════════════ */
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.text-center { text-align: center; }
.mt-4 { margin-top: var(--sp-4); }
.mt-6 { margin-top: var(--sp-6); }
.mt-8 { margin-top: var(--sp-8); }

/* ─── Widget micro text on dark background ──────────────────────── */
.wg-micro--light { color: rgba(255,255,255,0.6); }

/* ─── Widget scroll target — clear sticky header ────────────────── */
#quote-widget { scroll-margin-top: 72px; }

/* ─── Inline restart confirmation bar ───────────────────────────── */
.wg-restart-confirm {
  background: var(--c-forest-dark);
  padding: var(--sp-3) var(--sp-5);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-3);
  flex-wrap: wrap;
  font-size: var(--fs-xs);
  color: rgba(255,255,255,0.85);
}
.wg-restart-actions { display: flex; gap: var(--sp-2); }
.wg-restart-action {
  background: none;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: var(--r-sm);
  color: rgba(255,255,255,0.9);
  font-size: var(--fs-xs);
  font-family: var(--font);
  padding: var(--sp-1) var(--sp-3);
  cursor: pointer;
  min-height: 32px;
}
.wg-restart-action--keep {
  background: var(--c-cedar);
  border-color: var(--c-cedar);
}

/* ─── Submission error notice (shown on catch in widget) ─────────── */
.wg-submit-error {
  background: var(--c-cedar-light);
  border: 1px solid rgba(184,118,47,0.3);
  border-radius: var(--r-md);
  padding: var(--sp-3) var(--sp-4);
  font-size: var(--fs-sm);
  color: var(--c-text-mid);
  margin-bottom: var(--sp-4);
  text-align: center;
  line-height: var(--lh-normal);
}
.wg-submit-error a { color: var(--c-forest); font-weight: var(--fw-semi); }


/* ─── Satellite confirm step ─────────────────────────────────────── */
.wg-satellite-wrap {
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--c-bg-alt);
  margin-bottom: var(--sp-3);
  min-height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wg-satellite-map {
  width: 100%;
  height: 220px;
}
.wg-satellite-loading {
  font-size: var(--fs-sm);
  color: var(--c-text-muted);
  text-align: center;
  padding: var(--sp-5);
}
.wg-satellite-address {
  font-size: var(--fs-sm);
  color: var(--c-text-muted);
  text-align: center;
  margin-bottom: var(--sp-4);
  font-weight: var(--fw-medium);
  line-height: var(--lh-snug);
}
.wg-confirm-no {
  display: block;
  width: 100%;
  background: none;
  border: none;
  color: var(--c-text-muted);
  font-size: var(--fs-sm);
  font-family: var(--font);
  text-align: center;
  margin-top: var(--sp-3);
  cursor: pointer;
  padding: var(--sp-2);
  min-height: 44px;
  transition: color var(--t-fast);
}
.wg-confirm-no:hover { color: var(--c-text); }

/* ─── Reduced motion ───────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ════════════════════════════════════════════════════════════════════
   LIGHTBOX
   ════════════════════════════════════════════════════════════════════ */
.portfolio-tile-img {
  cursor: pointer;
}
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.88);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-slow);
  cursor: zoom-out;
}
.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}
.lightbox-img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--r-md);
  box-shadow: 0 24px 80px rgba(0,0,0,0.55);
  cursor: default;
}
.lightbox-close {
  position: absolute;
  top: var(--sp-4);
  right: var(--sp-4);
  width: 44px;
  height: 44px;
  border-radius: var(--r-full);
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--t-fast);
}
.lightbox-close:hover {
  background: rgba(255,255,255,0.24);
}
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: var(--r-full);
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: background var(--t-fast);
}
.lightbox-prev { left: var(--sp-4); }
.lightbox-next { right: var(--sp-4); }
.lightbox-nav:hover { background: rgba(255,255,255,0.24); }
.lightbox-split {
  display: flex;
  gap: var(--sp-2);
  max-width: 92vw;
  max-height: 88vh;
}
.lightbox-split-panel {
  position: relative;
  flex: 1;
  overflow: hidden;
  border-radius: var(--r-md);
}
.lightbox-split-panel img {
  width: 100%;
  height: 100%;
  max-height: 88vh;
  object-fit: cover;
  display: block;
}
.lightbox-split-lbl {
  position: absolute;
  bottom: var(--sp-2);
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0,0,0,0.55);
  color: #fff;
  font-size: var(--fs-xs);
  font-weight: var(--fw-semi);
  padding: 3px 10px;
  border-radius: var(--r-sm);
  white-space: nowrap;
}

/* ════════════════════════════════════════════════════════════════════
   TRUST STRIP
   ════════════════════════════════════════════════════════════════════ */
.trust-strip {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--sp-10);
  padding: var(--sp-6) 0;
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
  margin-block: var(--sp-10);
}
.trust-strip-item {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semi);
  color: var(--c-text-mid);
}
.trust-strip-item svg {
  color: var(--c-cedar);
  flex-shrink: 0;
}
@media (max-width: 540px) {
  .trust-strip {
    flex-direction: column;
    gap: var(--sp-4);
  }
}

/* ─── Widget fullscreen overlay ──────────────────────────────────── */
.widget-header-actions {
  display: flex;
  align-items: center;
  gap: var(--sp-1);
}

.wg-close-btn {
  position: absolute;
  top: var(--sp-3);
  right: var(--sp-3);
  z-index: 5;
  background: rgba(255,255,255,0.12);
  border: none;
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  line-height: 1;
  width: 32px;
  height: 32px;
  border-radius: var(--r-full);
  transition: color var(--t-fast), background var(--t-fast);
  display: flex;
  align-items: center;
  justify-content: center;
}
.wg-close-btn:hover {
  color: var(--c-white);
  background: rgba(255,255,255,0.28);
}

.widget-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 34, 24, 0.78);
  z-index: 350;
  opacity: 0;
  pointer-events: none;
  transition: opacity 250ms cubic-bezier(0.16, 1, 0.3, 1);
}
.widget-backdrop.is-active {
  opacity: 1;
  pointer-events: auto;
}

/* Widget fullscreen modal container (body-level — avoids stacking context trap) */
.widget-modal {
  position: fixed;
  inset: 0;
  z-index: 351;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.widget-modal .widget-card {
  width: 100%;
  border-radius: 0;
  flex-shrink: 0;
  animation: widgetExpand 230ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes widgetExpand {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (min-width: 560px) {
  .widget-modal {
    align-items: center;
    padding: var(--sp-6) var(--sp-4);
  }
  .widget-modal .widget-card {
    width: min(520px, 92vw);
    border-radius: var(--r-xl);
    animation: widgetExpandDesktop 230ms cubic-bezier(0.16, 1, 0.3, 1) both;
  }
  .widget-modal .widget-card--wide {
    width: min(860px, 95vw);
  }
  @keyframes widgetExpandDesktop {
    from { opacity: 0; transform: translateY(12px); }
    to   { opacity: 1; transform: translateY(0); }
  }
}
