/* Sembhi Real Estate — "The Restoration File"
   Editorial documentary in the client palette: Deep Space Blue ink, Dark Teal buttons, Pacific Cyan stamps, Mint Leaf highlights, Sky Reflection on the map. Newsreader for display,
   Source Sans 3 for reading, IBM Plex Mono for file stamps. */

:root {
  --paper: #F3F6F7;
  --paper-2: #E4ECEF;
  --surface: #FFFFFF;
  --ink: #172A3A;
  --ink-2: #3D4F5C;
  --muted: #66787F;
  --line: #D3DDE1;
  --line-strong: #AFC0C6;
  --forest: #004346;
  --forest-deep: #002E30;
  --moss: #DCEBF0;
  --brick: #508991;
  --brick-soft: #E3EEF0;
  --gold: #09BC8A;
  --focus: #09BC8A;
  --radius: 6px;
  --shadow: 0 1px 2px rgba(23,42,58,.05), 0 14px 40px rgba(23,42,58,.10);
  --max: 1200px;
  --gutter: clamp(18px, 4.5vw, 48px);
  --ease: cubic-bezier(.2,.7,.2,1);
  --grain: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 .07 0'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)'/%3E%3C/svg%3E");
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0; background: var(--paper); color: var(--ink);
  font-family: "Source Sans 3", "Segoe UI", system-ui, sans-serif; font-size: 1.0625rem; line-height: 1.55;
  -webkit-font-smoothing: antialiased; position: relative;
}
body::before { content: ""; position: fixed; inset: 0; background: var(--grain); pointer-events: none; z-index: 0; opacity: .8; }
body > * { position: relative; z-index: 1; }
img, video { max-width: 100%; height: auto; display: block; }
a { color: var(--forest); text-underline-offset: 3px; }
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, [tabindex]:focus-visible { outline: 3px solid var(--focus); outline-offset: 3px; }
h1, h2, h3 { font-family: "Newsreader", "Iowan Old Style", Georgia, serif; font-weight: 500; line-height: 1.04; letter-spacing: -0.012em; margin: 0; text-wrap: balance; }
h1 { font-size: clamp(2.6rem, 6.2vw, 4.6rem); font-variation-settings: "opsz" 72; }
h2 { font-size: clamp(2rem, 4.2vw, 3.1rem); font-variation-settings: "opsz" 60; }
h3 { font-size: 1.4rem; font-variation-settings: "opsz" 24; line-height: 1.15; }
p { margin: 0; } p + p { margin-top: .9em; }
strong { font-weight: 600; }
em { font-family: "Newsreader", Georgia, serif; font-style: italic; }
.mono { font-family: "IBM Plex Mono", ui-monospace, Consolas, monospace; font-size: .74rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.stamp { display: inline-flex; align-items: center; gap: .5rem; font-family: "IBM Plex Mono", ui-monospace, monospace; font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--brick); }
.stamp::before { content: ""; width: 22px; height: 1px; background: currentColor; }
.skip { position: absolute; left: -999px; top: 0; background: var(--ink); color: #fff; padding: .6rem 1rem; z-index: 100; }
.skip:focus { left: 8px; top: 8px; }
.wrap { max-width: var(--max); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(4rem, 9vw, 7.5rem); }
.section.alt { background: var(--surface); }
.section.dark { background: var(--ink); color: #D9E4EA; }
.section.dark h2, .section.dark h3 { color: #fff; }
.section.dark .mono { color: #8FA6B2; }
.rule { border: 0; border-top: 1px solid var(--line); margin: 0; }
.section-head { display: grid; gap: 1rem; max-width: 66ch; margin-bottom: clamp(2rem, 5vw, 3.5rem); }
.section-head p { color: var(--ink-2); font-size: 1.15rem; max-width: 60ch; }
.section.dark .section-head p { color: #B7C7D0; }
.head-row { display: grid; gap: 1.2rem; align-items: end; margin-bottom: clamp(2rem, 5vw, 3.5rem); }
@media (min-width: 860px) { .head-row { grid-template-columns: 1.2fr .8fr; gap: 3rem; } }
.head-row p { color: var(--ink-2); font-size: 1.1rem; max-width: 46ch; }

/* Reveal on scroll */
.rv { opacity: 0; transform: translateY(18px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.rv.in { opacity: 1; transform: none; }
.rv-d1 { transition-delay: .1s } .rv-d2 { transition-delay: .2s } .rv-d3 { transition-delay: .3s } .rv-d4 { transition-delay: .4s }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .rv { opacity: 1; transform: none; transition: none; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: .55rem; min-height: 50px; padding: .75rem 1.4rem; border-radius: 999px; font-weight: 600; font-size: 1.02rem; text-decoration: none; border: 1.5px solid transparent; cursor: pointer; transition: transform .2s var(--ease), background .2s, color .2s, border-color .2s, box-shadow .2s; will-change: transform; }
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-primary { background: var(--forest); color: #fff; box-shadow: 0 6px 18px -8px rgba(0,67,70,.7); }
.btn-primary:hover { background: var(--forest-deep); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.btn-ghost:hover { border-color: var(--ink); background: rgba(23,42,58,.04); }
.btn-paper { background: var(--paper); color: var(--ink); }
.btn-paper:hover { background: #fff; }
.btn .arrow { width: 18px; height: 18px; transition: transform .25s var(--ease); }
.btn:hover .arrow { transform: translateX(3px); }

/* Header */
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(243,246,247,.86); backdrop-filter: blur(12px); border-bottom: 1px solid transparent; transition: border-color .3s, box-shadow .3s; }
.site-header.scrolled { border-color: var(--line); box-shadow: 0 8px 30px -20px rgba(23,42,58,.3); }
.site-header .bar { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 72px; }
.brand { display: flex; align-items: center; gap: .7rem; text-decoration: none; color: var(--ink); }
.brand .mark { width: 92px; height: 44px; display: grid; place-items: center; flex: 0 0 auto; }
.brand .mark img { width: 100%; height: 100%; object-fit: contain; }
.brand .name { font-family: "Newsreader", Georgia, serif; font-size: 1.35rem; font-weight: 500; letter-spacing: -0.01em; line-height: 1; }
.brand small { display: block; font-family: "IBM Plex Mono", monospace; font-size: .62rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-top: .25rem; }
.header-actions { display: flex; align-items: center; gap: .5rem; }
.phone-link { display: inline-flex; align-items: center; gap: .5rem; font-weight: 600; color: var(--ink); text-decoration: none; padding: .55rem .8rem; border-radius: 999px; border: 1.5px solid var(--line-strong); transition: border-color .2s, background .2s; }
.phone-link:hover { border-color: var(--ink); background: rgba(23,42,58,.04); }
.phone-link svg { width: 17px; height: 17px; }
@media (max-width: 680px) {
  .brand .name, .brand small { display: none; }
  .header-actions .btn { padding-inline: 1rem; font-size: .95rem; min-height: 44px; }
  .phone-link .num { display: none; }
  .phone-link { padding: .55rem; min-width: 44px; justify-content: center; }
}

/* HERO: the restoration wipe */
.hero { padding-block: clamp(2rem, 5vw, 4rem) clamp(3rem, 6vw, 5rem); overflow: hidden; }
.hero-grid { display: grid; gap: 2.5rem; align-items: center; }
@media (min-width: 960px) { .hero-grid { grid-template-columns: 1fr 1.05fr; gap: 3.5rem; } }
.hero-copy { display: grid; gap: 1.4rem; }
.hero-copy h1 { max-width: 14ch; }
.hero-copy h1 .u { position: relative; display: inline-block; white-space: nowrap; }
.hero-copy h1 .u::after { content: ""; position: absolute; left: 0; right: 0; bottom: .06em; height: .08em; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform 1s var(--ease) .9s; border-radius: 2px; }
.loaded .hero-copy h1 .u::after { transform: scaleX(1); }
.hero-copy .lede { font-size: 1.25rem; color: var(--ink-2); max-width: 46ch; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: .2rem; }
.hero-entity { font-size: .95rem; color: var(--muted); max-width: 52ch; padding-top: 1.2rem; border-top: 1px solid var(--line); }
.hero-copy > * { opacity: 0; transform: translateY(14px); animation: rise .9s var(--ease) forwards; }
.hero-copy > *:nth-child(1) { animation-delay: .05s } .hero-copy > *:nth-child(2) { animation-delay: .15s } .hero-copy > *:nth-child(3) { animation-delay: .3s } .hero-copy > *:nth-child(4) { animation-delay: .42s } .hero-copy > *:nth-child(5) { animation-delay: .55s }
@keyframes rise { to { opacity: 1; transform: none; } }

.restore { position: relative; border-radius: 10px; overflow: hidden; aspect-ratio: 4 / 3; background: var(--paper-2); box-shadow: var(--shadow); user-select: none; -webkit-user-select: none; touch-action: pan-y; opacity: 0; animation: rise 1s var(--ease) .2s forwards; }
.restore img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.restore .after { clip-path: inset(0 0 0 var(--pos, 0%)); }
.restore .handle { position: absolute; top: 0; bottom: 0; left: var(--pos, 0%); width: 2px; background: #fff; transform: translateX(-1px); box-shadow: 0 0 0 1px rgba(0,0,0,.2); pointer-events: none; }
.restore .handle::after { content: ""; position: absolute; top: 50%; left: 50%; width: 52px; height: 52px; transform: translate(-50%,-50%); border-radius: 50%; background: #fff; box-shadow: 0 4px 16px rgba(0,0,0,.35); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23172A3A' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9 6l-5 6 5 6M15 6l5 6-5 6'/%3E%3C/svg%3E"); background-size: 24px; background-repeat: no-repeat; background-position: center; }
.restore input[type=range] { position: absolute; inset: 0; width: 100%; height: 100%; margin: 0; opacity: 0; cursor: ew-resize; }
.restore input[type=range]:focus-visible ~ .handle { outline: 3px solid var(--focus); }
.restore .tag { position: absolute; top: 14px; font-family: "IBM Plex Mono", monospace; font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; padding: .38rem .6rem; border-radius: 4px; pointer-events: none; }
.restore .tag.b { left: 14px; background: rgba(23,42,58,.8); color: #fff; }
.restore .tag.a { right: 14px; background: var(--gold); color: #0B2A24; }
.restore .cap { position: absolute; left: 14px; right: 14px; bottom: 14px; display: flex; justify-content: space-between; gap: 1rem; font-size: .85rem; color: #fff; text-shadow: 0 1px 8px rgba(0,0,0,.6); pointer-events: none; }
.restore .cap .hint { opacity: 0; transition: opacity .6s; }
.restore.ready .cap .hint { opacity: 1; }

/* Numbers */
.numbers { display: grid; gap: 1.4rem; padding-block: 2rem; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
@media (min-width: 720px) { .numbers { grid-template-columns: repeat(3, 1fr); gap: 2.5rem; } }
.num { display: grid; grid-template-columns: auto 1fr; gap: .2rem 1.1rem; align-items: center; }
.num .big { font-family: "Newsreader", Georgia, serif; font-size: clamp(3.4rem, 9vw, 4.4rem); line-height: .9; color: var(--forest); font-variation-settings: "opsz" 72; font-variant-numeric: tabular-nums; letter-spacing: -0.03em; display: grid; justify-items: start; }
.num .big small { font-family: "IBM Plex Mono", monospace; font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; color: var(--brick); margin-top: .35rem; }
.num .small { color: var(--ink-2); font-size: 1rem; max-width: 26ch; }
@media (min-width: 720px) { .num { grid-template-columns: 1fr; align-items: start; } .num .big { font-size: clamp(3rem, 4.6vw, 4rem); } }

/* Timeline (how it works): vertical rail on phones, horizontal track on wide screens */
.timeline { position: relative; display: grid; gap: 2.2rem; }
.timeline .track { position: absolute; background: var(--line); }
.timeline .track i { position: absolute; left: 0; top: 0; background: var(--forest); transition: width 1.6s var(--ease), height 1.6s var(--ease); }
.tl { display: grid; gap: .7rem; align-content: start; position: relative; }
.tl .dot { display: inline-flex; align-items: center; justify-content: center; min-width: 58px; height: 34px; padding-inline: .7rem; border-radius: 999px; border: 2px solid var(--line-strong); background: var(--paper); font-family: "IBM Plex Mono", monospace; font-size: .7rem; letter-spacing: .08em; white-space: nowrap; color: var(--muted); transition: border-color .4s, color .4s, background .4s; justify-self: start; position: relative; z-index: 1; }
.timeline.in .tl .dot { border-color: var(--forest); color: var(--forest); background: var(--moss); }
.timeline.in .tl:nth-child(3) .dot { transition-delay: .6s } .timeline.in .tl:nth-child(4) .dot { transition-delay: 1.2s }
.tl h3 { font-size: 1.45rem; }
.tl p { color: var(--ink-2); max-width: 34ch; }
.tl .when { font-family: "IBM Plex Mono", monospace; font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--brick); }
@media (max-width: 819px) {
  .timeline { padding-left: 2.4rem; }
  .timeline .track { left: 16px; top: 17px; bottom: 17px; width: 2px; }
  .timeline .track i { width: 100%; height: 0; }
  .timeline.in .track i { height: 100%; }
  .tl::before { content: ""; position: absolute; left: -2.4rem; top: 11px; width: 12px; height: 12px; border-radius: 50%; background: var(--paper); border: 2px solid var(--line-strong); transform: translateX(11px); transition: background .4s, border-color .4s; z-index: 1; }
  .timeline.in .tl::before { background: var(--forest); border-color: var(--forest); }
  .timeline.in .tl:nth-child(3)::before { transition-delay: .6s } .timeline.in .tl:nth-child(4)::before { transition-delay: 1.2s }
}
@media (min-width: 820px) {
  .timeline { grid-template-columns: repeat(3, 1fr); gap: 2.5rem; }
  .timeline .track { left: 29px; right: calc((100% - 5rem) / 3 - 29px); top: 16px; height: 2px; }
  .timeline .track i { height: 100%; width: 0; }
  .timeline.in .track i { width: 100%; }
}

/* As-found marquee */
.marquee-wrap { position: relative; overflow: hidden; width: 100%; -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); }
.marquee { display: flex; gap: 1rem; width: max-content; padding-block: .5rem; animation: slide 70s linear infinite; }
.marquee-wrap:hover .marquee, .marquee-wrap:focus-within .marquee, .marquee.paused { animation-play-state: paused; }
@keyframes slide { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee { animation: none; width: auto; overflow-x: auto; padding-inline: var(--gutter); } .marquee-wrap { mask-image: none; -webkit-mask-image: none; } }
.found { flex: 0 0 auto; width: min(70vw, 280px); margin: 0; display: grid; gap: .55rem; }
.found button { all: unset; cursor: zoom-in; display: block; border-radius: 6px; overflow: hidden; position: relative; background: var(--paper-2); }
.found button:focus-visible { outline: 3px solid var(--focus); outline-offset: 3px; }
.found img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; transition: transform .6s var(--ease), filter .6s; filter: saturate(.85); }
.found button:hover img { transform: scale(1.04); filter: saturate(1); }
.found .stampbox { position: absolute; top: 10px; left: 10px; font-family: "IBM Plex Mono", monospace; font-size: .66rem; letter-spacing: .12em; text-transform: uppercase; color: var(--brick); background: rgba(243,246,247,.92); padding: .3rem .5rem; border: 1px solid var(--brick); border-radius: 3px; transform: rotate(-3deg); }
.found figcaption { display: flex; justify-content: space-between; gap: .6rem; font-size: .9rem; color: var(--ink-2); }
.found figcaption .mono { font-size: .68rem; }

/* Lightbox */
dialog.lightbox { border: 0; padding: 0; background: transparent; max-width: min(96vw, 1100px); width: auto; }
dialog.lightbox::backdrop { background: rgba(10,14,12,.9); }
dialog.lightbox figure { margin: 0; display: grid; gap: .7rem; }
dialog.lightbox img { max-height: 84vh; width: auto; max-width: 100%; margin-inline: auto; border-radius: 8px; }
dialog.lightbox figcaption { color: #fff; text-align: center; font-size: .95rem; }
dialog.lightbox .close { position: absolute; top: -6px; right: -6px; width: 42px; height: 42px; border-radius: 50%; border: 0; background: #fff; cursor: pointer; font-size: 1.3rem; }

/* Before / after sliders */
.compare-grid { display: grid; gap: 1.6rem; }
@media (min-width: 900px) { .compare-grid { grid-template-columns: repeat(3, 1fr); gap: 1.4rem; } }
.compare { display: grid; gap: .7rem; margin: 0; }
.compare-frame { position: relative; aspect-ratio: 4 / 3; overflow: hidden; border-radius: 8px; background: var(--paper-2); user-select: none; -webkit-user-select: none; touch-action: pan-y; }
.compare-frame img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.compare-frame .after { clip-path: inset(0 0 0 var(--pos, 50%)); }
.compare-frame .handle { position: absolute; top: 0; bottom: 0; left: var(--pos, 50%); width: 2px; background: #fff; transform: translateX(-1px); box-shadow: 0 0 0 1px rgba(0,0,0,.25); pointer-events: none; }
.compare-frame .handle::after { content: ""; position: absolute; top: 50%; left: 50%; width: 44px; height: 44px; transform: translate(-50%,-50%); border-radius: 50%; background: #fff; box-shadow: 0 2px 10px rgba(0,0,0,.35); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23172A3A' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9 6l-5 6 5 6M15 6l5 6-5 6'/%3E%3C/svg%3E"); background-size: 22px; background-repeat: no-repeat; background-position: center; }
.compare-frame .label { position: absolute; top: 10px; font-family: "IBM Plex Mono", monospace; font-size: .66rem; letter-spacing: .12em; text-transform: uppercase; padding: .3rem .5rem; border-radius: 4px; pointer-events: none; }
.compare-frame .label.before { left: 10px; background: rgba(23,42,58,.8); color: #fff; }
.compare-frame .label.after { right: 10px; background: var(--gold); color: #0B2A24; }
.compare-frame input[type=range] { position: absolute; inset: 0; width: 100%; height: 100%; margin: 0; opacity: 0; cursor: ew-resize; }
.compare-frame input[type=range]:focus-visible ~ .handle { outline: 3px solid var(--focus); }
.compare figcaption { display: flex; justify-content: space-between; gap: .6rem; font-size: .98rem; color: var(--ink-2); }
.compare figcaption .mono { font-size: .68rem; }

/* Situations: pick yours */
.pick { display: grid; gap: 2rem; }
@media (min-width: 960px) { .pick { grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; } }
.chips { display: flex; flex-wrap: wrap; gap: .6rem; }
.chip { all: unset; cursor: pointer; display: inline-flex; align-items: center; gap: .5rem; padding: .7rem 1.1rem; border-radius: 999px; border: 1.5px solid var(--line-strong); background: var(--surface); font-weight: 600; font-size: 1rem; color: var(--ink); transition: border-color .2s, background .2s, color .2s, transform .2s var(--ease); }
.chip:hover { border-color: var(--ink); transform: translateY(-1px); }
.chip[aria-pressed="true"] { background: var(--ink); color: #fff; border-color: var(--ink); }
.chip:focus-visible { outline: 3px solid var(--focus); outline-offset: 3px; }
.pick-answer { position: relative; min-height: 220px; padding: 1.8rem 2rem 2rem; background: var(--surface); border: 1px solid var(--line); border-radius: 8px; display: grid; gap: .9rem; align-content: start; box-shadow: var(--shadow); }
.pick-answer::before { content: ""; position: absolute; left: 0; top: 1.5rem; bottom: 1.5rem; width: 3px; background: var(--forest); border-radius: 2px; }
.pick-answer h3 { font-size: 1.7rem; transition: opacity .35s; }
.pick-answer p { color: var(--ink-2); font-size: 1.1rem; max-width: 46ch; transition: opacity .35s; }
.pick-answer.swap h3, .pick-answer.swap p { opacity: 0; }
.pick-answer .btn { justify-self: start; margin-top: .4rem; }
.pick-note { font-size: .9rem; color: var(--muted); }

/* Values: three statements */
.values { display: grid; gap: 2.2rem; }
@media (min-width: 900px) { .values { grid-template-columns: repeat(3, 1fr); gap: 3rem; } }
.value { display: grid; gap: .9rem; }
.value .idx { font-family: "IBM Plex Mono", monospace; font-size: .72rem; letter-spacing: .14em; color: #74B3CE; }
.value h3 { font-size: clamp(1.6rem, 2.4vw, 2rem); position: relative; padding-bottom: .8rem; }
.value h3::after { content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 0; background: var(--gold); transition: width 1.1s var(--ease); }
.value.in h3::after { width: 64px; }
.value:nth-child(2).in h3::after { transition-delay: .2s } .value:nth-child(3).in h3::after { transition-delay: .4s }
.value p { color: #B7C7D0; font-size: 1.08rem; max-width: 36ch; }
.value .pull { font-family: "Newsreader", Georgia, serif; font-style: italic; font-size: 1.25rem; color: #fff; border-left: 2px solid var(--gold); padding-left: 1rem; margin-top: .3rem; }

/* Reviews */
.reviews { display: grid; gap: 1.4rem; }
@media (min-width: 800px) { .reviews { grid-template-columns: 1fr 1fr; gap: 2rem; } }
.review { position: relative; background: var(--surface); border: 1px solid var(--line); border-radius: 8px; padding: 2.4rem 2rem 1.8rem; display: grid; gap: 1.2rem; align-content: start; transition: transform .35s var(--ease), box-shadow .35s; }
.review:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.review .q { position: absolute; top: .4rem; left: 1.4rem; font-family: "Newsreader", Georgia, serif; font-size: 5rem; line-height: 1; color: var(--moss); }
.review blockquote { margin: 0; font-family: "Newsreader", Georgia, serif; font-size: 1.4rem; line-height: 1.4; font-variation-settings: "opsz" 24; position: relative; }
.review .who { display: flex; justify-content: space-between; align-items: center; gap: .6rem; flex-wrap: wrap; font-size: .95rem; color: var(--ink-2); border-top: 1px solid var(--line); padding-top: 1rem; }
.stars { color: var(--gold); letter-spacing: .12em; font-size: 1rem; }
.review-cta { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; color: var(--ink-2); }

/* Map */
.map-grid { display: grid; gap: 2rem; align-items: center; }
@media (min-width: 900px) { .map-grid { grid-template-columns: 1fr 1.1fr; gap: 3.5rem; } }
.map { position: relative; aspect-ratio: 1 / 1; max-width: 560px; margin-inline: auto; width: 100%; }
.map svg { width: 100%; height: 100%; overflow: visible; }
.map .border { stroke: var(--line-strong); stroke-width: 1.5; stroke-dasharray: 6 6; fill: none; }
.map .radius { fill: rgba(116,179,206,.14); stroke: #74B3CE; stroke-width: 1; stroke-dasharray: 3 5; }
.map .st { font-family: "IBM Plex Mono", monospace; font-size: 11px; letter-spacing: .12em; fill: var(--muted); text-transform: uppercase; }
.map .city circle { fill: var(--forest); stroke: var(--paper); stroke-width: 2; transition: r .25s var(--ease), fill .25s; }
.map .city.primary circle { fill: var(--gold); }
.map .city text { font-family: "Source Sans 3", sans-serif; font-size: 12.5px; fill: var(--ink-2); font-weight: 600; transition: fill .25s; }
.map .city.hot circle { r: 8; }
.map .city.hot text { fill: var(--ink); }
.map .pulse { fill: none; stroke: var(--gold); stroke-width: 1.5; opacity: 0; animation: pulse 2.8s ease-out infinite; transform-origin: center; }
@keyframes pulse { 0% { r: 6; opacity: .7 } 100% { r: 40; opacity: 0 } }
.city-list { display: grid; gap: 1.4rem; }
.city-list h3 { font-size: 1.05rem; font-family: "IBM Plex Mono", monospace; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); font-weight: 400; margin-bottom: .6rem; }
.city-list ul { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: .5rem; }
.city-list li { padding: .4rem .9rem; border: 1.5px solid var(--line); border-radius: 999px; font-size: .98rem; background: var(--surface); cursor: default; transition: border-color .2s, background .2s, transform .2s var(--ease); }
.city-list li:hover, .city-list li.hot { border-color: var(--forest); background: var(--moss); transform: translateY(-1px); }
.city-list li.primary { border-color: var(--gold); color: var(--forest); font-weight: 600; }

/* About */
.about-grid { display: grid; gap: 2.5rem; align-items: center; }
@media (min-width: 900px) { .about-grid { grid-template-columns: .85fr 1.15fr; gap: 4rem; } }
.about-photo { position: relative; border-radius: 8px; overflow: hidden; aspect-ratio: 4 / 5; background: var(--paper-2); display: grid; place-items: center; text-align: center; color: var(--muted); padding: 1.5rem; border: 1px dashed var(--line-strong); }
.about-photo img { width: 100%; height: 100%; object-fit: cover; }
.about-photo .pending { font-family: "IBM Plex Mono", monospace; font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; }
.about-copy { display: grid; gap: 1.2rem; }
.about-copy p { font-size: 1.15rem; color: var(--ink-2); max-width: 54ch; }
.about-copy .sig { font-family: "Newsreader", Georgia, serif; font-style: italic; font-size: 1.35rem; color: var(--ink); }

/* FAQ */
.faq { max-width: 800px; border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: 1.15rem 0; font-family: "Newsreader", Georgia, serif; font-size: 1.35rem; font-variation-settings: "opsz" 24; transition: color .2s; }
.faq summary:hover { color: var(--forest); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary .pm { flex: 0 0 auto; width: 30px; height: 30px; border-radius: 50%; border: 1.5px solid var(--line-strong); display: grid; place-items: center; position: relative; transition: transform .35s var(--ease), background .25s, border-color .25s; }
.faq summary .pm::before, .faq summary .pm::after { content: ""; position: absolute; background: var(--ink); width: 12px; height: 1.5px; }
.faq summary .pm::after { transform: rotate(90deg); }
.faq details[open] summary .pm { transform: rotate(45deg); background: var(--moss); border-color: var(--forest); }
.faq .answer { padding-bottom: 1.3rem; color: var(--ink-2); max-width: 66ch; font-size: 1.08rem; }
.faq details .answer { animation: fadein .4s var(--ease); }
@keyframes fadein { from { opacity: 0; transform: translateY(-4px) } to { opacity: 1; transform: none } }

/* Offer form */
.offer-grid { display: grid; gap: 2.5rem; align-items: start; }
@media (min-width: 960px) { .offer-grid { grid-template-columns: .9fr 1.1fr; gap: 4.5rem; } }
.offer-side { display: grid; gap: 1.4rem; }
.offer-side h2 { color: #fff; }
.offer-side p { color: #B7C7D0; font-size: 1.1rem; max-width: 44ch; }
.offer-side .call { display: grid; gap: .25rem; padding: 1.4rem 1.5rem; border: 1px solid rgba(255,255,255,.14); border-radius: 8px; }
.offer-side .call a { font-family: "Newsreader", Georgia, serif; font-size: 2rem; color: #fff; text-decoration: none; font-variation-settings: "opsz" 48; }
.offer-side .call small { color: #8FA6B2; }
.section.dark form.offer { box-shadow: 0 30px 80px -30px rgba(0,0,0,.7); }
.preview { font-family: "Newsreader", Georgia, serif; font-style: italic; font-size: 1.15rem; color: var(--ink-2); border-left: 2px solid var(--gold); padding-left: .9rem; min-height: 1.6em; transition: opacity .3s; }
.preview b { font-style: normal; font-weight: 500; color: var(--forest); }
form.offer { background: var(--paper); color: var(--ink); border-radius: 10px; padding: clamp(1.4rem, 3.5vw, 2.4rem); display: grid; gap: 1.1rem; box-shadow: 0 30px 80px -30px rgba(0,0,0,.7); }
form.offer .formhead { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; padding-bottom: .6rem; border-bottom: 1px solid var(--line); }
form.offer .formhead strong { font-family: "Newsreader", Georgia, serif; font-size: 1.3rem; font-weight: 500; }
.field { display: grid; gap: .35rem; }
.field label { font-weight: 600; font-size: .95rem; }
.field label small { font-weight: 400; color: var(--muted); }
.field input, .field textarea { width: 100%; font: inherit; padding: .8rem .95rem; border: 1.5px solid var(--line-strong); border-radius: 6px; background: #fff; color: var(--ink); min-height: 50px; transition: border-color .2s, box-shadow .2s; }
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field textarea:focus { border-color: var(--forest); outline: 0; box-shadow: 0 0 0 4px rgba(0,67,70,.15); }
.field .err { display: none; color: var(--brick); font-size: .9rem; }
.field.invalid input, .field.invalid textarea { border-color: var(--brick); }
.field.invalid .err { display: block; }
.consent { display: grid; grid-template-columns: auto 1fr; gap: .7rem; align-items: start; font-size: .93rem; color: var(--ink-2); }
.consent input { width: 20px; height: 20px; margin-top: .15rem; accent-color: var(--forest); }
.consent.invalid { color: var(--brick); }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-status { font-size: .98rem; color: var(--ink-2); min-height: 1.4em; }
.form-status.error { color: var(--brick); }
form.offer .btn { width: 100%; }
form.offer .btn[disabled] { opacity: .75; cursor: wait; }

/* Footer */
.site-footer { background: var(--forest-deep); color: #C9DBDC; padding-block: 3.5rem 2rem; }
.site-footer a { color: #fff; }
.footer-grid { display: grid; gap: 2rem; }
@media (min-width: 800px) { .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; gap: 3rem; } }
.footer-grid h3 { font-family: "IBM Plex Mono", monospace; font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; color: #74B3CE; margin-bottom: .9rem; font-weight: 400; }
.footer-grid p, .footer-grid li { color: #C9DBDC; font-size: .98rem; }
.footer-grid ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .45rem; }
.footer-logo { display: block; width: min(260px, 70%); margin-bottom: 1.2rem; }
.footer-logo img { width: 100%; height: auto; }
.footer-brand { font-family: "Newsreader", Georgia, serif; font-size: clamp(1.6rem, 3vw, 2.2rem); color: #fff; line-height: 1; margin-bottom: .8rem; font-variation-settings: "opsz" 60; }
.footer-bottom { margin-top: 2.5rem; padding-top: 1.2rem; border-top: 1px solid rgba(255,255,255,.14); display: flex; flex-wrap: wrap; gap: .6rem 1.5rem; justify-content: space-between; font-size: .88rem; color: #74B3CE; }
.footer-bottom .disclosure { flex-basis: 100%; max-width: 80ch; }

/* Mobile call bar */
.callbar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 40; display: none; gap: .6rem; padding: .6rem var(--gutter) calc(.6rem + env(safe-area-inset-bottom, 0px)); background: rgba(243,246,247,.96); border-top: 1px solid var(--line); backdrop-filter: blur(10px); transform: translateY(110%); transition: transform .4s var(--ease); }
.callbar.show { transform: none; }
.callbar .btn { flex: 1; min-height: 46px; }
@media (max-width: 680px) { .callbar { display: flex; } body { padding-bottom: 74px; } }

/* Simple pages */
.page { padding-block: clamp(2.5rem, 6vw, 5rem); }
.page .prose { max-width: 70ch; display: grid; gap: 1rem; }
.page .prose h2 { font-size: 1.7rem; margin-top: 1.2rem; }
.page .prose ul { padding-left: 1.3rem; margin: 0; display: grid; gap: .4rem; }
.page .prose p, .page .prose li { color: var(--ink-2); }
.page .updated { color: var(--muted); font-size: .95rem; }
.page .lede { font-size: 1.2rem; color: var(--ink-2); max-width: 58ch; }

/* Support-page aliases (thank-you, privacy, terms, 404) */
.eyebrow { display: inline-flex; align-items: center; gap: .5rem; font-family: "IBM Plex Mono", ui-monospace, monospace; font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--brick); }
.eyebrow::before { content: ""; width: 22px; height: 1px; background: currentColor; }
.proof { display: grid; gap: 1.2rem; padding-block: 2rem; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); margin-top: 2.5rem; }
@media (min-width: 720px) { .proof { grid-template-columns: repeat(3, 1fr); gap: 2.5rem; } }
.proof div { display: grid; gap: .3rem; }
.proof .big { font-family: "Newsreader", Georgia, serif; font-size: 2.2rem; line-height: 1; color: var(--forest); font-variation-settings: "opsz" 48; }
.proof .small { color: var(--ink-2); font-size: 1rem; }

/* Illustrations */
.tl-art { display: block; height: 150px; margin-block: .4rem .2rem; }
.tl-art img { height: 100%; width: auto; max-width: 100%; object-fit: contain; object-position: left; transition: transform .8s var(--ease); }
.timeline.in .tl-art img { transform: none; }
@media (min-width: 820px) { .tl-art { height: 170px; } }
.pick-answer { grid-template-columns: 1fr; }
.pick-art { display: block; width: min(220px, 60%); justify-self: end; margin-bottom: -.4rem; transition: opacity .35s, transform .35s var(--ease); }
.pick-art img { width: 100%; height: auto; }
.pick-answer.swap .pick-art { opacity: 0; transform: translateY(6px); }
@media (min-width: 640px) { .pick-answer { grid-template-columns: 1fr auto; column-gap: 1.5rem; } .pick-art { grid-column: 2; grid-row: 1 / span 3; align-self: start; width: 180px; margin: 0; } .pick-answer h3, .pick-answer p, .pick-answer .btn, .pick-note { grid-column: 1; } }
.street { position: relative; overflow: hidden; background: var(--surface); border-top: 1px solid var(--line); padding-block: 2rem 0; }
.street picture { display: block; width: min(1400px, 130%); margin-inline: auto; will-change: transform; }
.street img { width: 100%; height: auto; }
.street-cap { position: absolute; left: 0; right: 0; top: 1.4rem; margin: 0; }
@media (max-width: 700px) { .street picture { width: 190%; margin-left: -45%; } }

/* Offer CTA block (bottom of page) */
.offer-cta { display: grid; gap: 1rem; justify-items: start; align-self: center; padding: 2rem; border: 1px solid rgba(255,255,255,.14); border-radius: 10px; }
.offer-cta p { color: #B7C7D0; }
.btn-lg { min-height: 60px; font-size: 1.15rem; padding-inline: 1.8rem; }

/* Modal */
body.modal-open { overflow: hidden; }
dialog.modal { border: 0; padding: 0; background: transparent; width: min(94vw, 600px); max-height: 92vh; margin: auto; overflow: visible; }
dialog.modal::backdrop { background: rgba(23,42,58,.72); backdrop-filter: blur(6px); }
dialog.modal[open] { animation: modal-in .45s var(--ease); }
dialog.modal[open]::backdrop { animation: fadein .3s ease; }
@keyframes modal-in { from { opacity: 0; transform: translateY(24px) scale(.98); } to { opacity: 1; transform: none; } }
.modal-card { position: relative; background: var(--paper); color: var(--ink); border-radius: 12px; max-height: 92vh; overflow-y: auto; padding: clamp(1.3rem, 3vw, 2rem); box-shadow: 0 40px 100px -30px rgba(0,0,0,.7); display: grid; gap: 1.2rem; }
.modal-head { display: grid; gap: .6rem; padding-right: 2.5rem; }
.modal-head h2 { font-size: clamp(1.7rem, 3.5vw, 2.2rem); }
.modal-head p { color: var(--ink-2); }
.modal-close { position: absolute; top: .9rem; right: .9rem; width: 40px; height: 40px; border-radius: 50%; border: 1.5px solid var(--line-strong); background: var(--surface); cursor: pointer; font-size: 1.4rem; line-height: 1; color: var(--ink); transition: background .2s, border-color .2s; z-index: 2; }
.modal-close:hover { background: var(--paper-2); border-color: var(--ink); }
dialog.modal form.offer { box-shadow: none; padding: 0; background: transparent; }
@media (max-width: 640px) { dialog.modal { width: 100vw; max-height: 100dvh; margin: 0; } .modal-card { border-radius: 14px 14px 0 0; max-height: 100dvh; margin-top: auto; padding-bottom: calc(1.3rem + env(safe-area-inset-bottom, 0px)); } }

/* Dark header + hero band for contrast up top */
.site-header { background: rgba(23,42,58,.92); border-bottom-color: rgba(255,255,255,.08); }
.site-header.scrolled { border-color: rgba(255,255,255,.12); box-shadow: 0 8px 30px -18px rgba(0,0,0,.6); }
.site-header .brand { color: #fff; }
.site-header .brand small { color: #8FA6B2; }
.site-header .phone-link { color: #fff; border-color: rgba(255,255,255,.28); }
.site-header .phone-link:hover { border-color: #fff; background: rgba(255,255,255,.08); }
.site-header .btn-primary { background: var(--gold); color: #0B2A24; box-shadow: 0 6px 18px -8px rgba(9,188,138,.8); }
.site-header .btn-primary:hover { background: #0ACF98; }
.hero { background: var(--ink) radial-gradient(60% 80% at 85% 20%, rgba(80,137,145,.35), transparent 70%); color: #E6EDF1; }
.hero::after { content: ""; display: block; position: absolute; left: 0; right: 0; bottom: 0; height: 1px; background: rgba(255,255,255,.08); }
.hero { position: relative; }
.hero .stamp { color: #74B3CE; }
.hero h1 { color: #fff; }
.hero .lede { color: #C3D0D8; }
.hero .hero-entity { color: #8FA6B2; border-top-color: rgba(255,255,255,.12); }
.hero .btn-primary { background: var(--gold); color: #0B2A24; box-shadow: 0 10px 28px -10px rgba(9,188,138,.9); }
.hero .btn-primary:hover { background: #0ACF98; }
.hero .btn-ghost { color: #fff; border-color: rgba(255,255,255,.35); }
.hero .btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,.08); }
.restore { box-shadow: 0 30px 80px -30px rgba(0,0,0,.8), 0 0 0 1px rgba(255,255,255,.08); }
.numbers { border-top: 0; }

/* Glowing CTAs */
.btn-primary { position: relative; isolation: isolate; overflow: hidden; }
.btn-primary::before { content: ""; position: absolute; inset: -40%; background: conic-gradient(from 0deg, transparent 0 40%, rgba(255,255,255,.55) 50%, transparent 60% 100%); animation: sweep 3.2s linear infinite; z-index: -1; opacity: .9; }
.btn-primary::after { content: ""; position: absolute; inset: 2px; border-radius: inherit; background: inherit; z-index: -1; }
.btn-primary { animation: glow 2.6s ease-in-out infinite; }
@keyframes glow { 0%, 100% { box-shadow: 0 0 0 0 rgba(9,188,138,.0), 0 8px 24px -10px rgba(9,188,138,.7); } 50% { box-shadow: 0 0 0 6px rgba(9,188,138,.18), 0 12px 34px -8px rgba(9,188,138,.95); } }
@keyframes sweep { to { transform: rotate(360deg); } }
.btn-primary:hover { animation-play-state: paused; box-shadow: 0 0 0 8px rgba(9,188,138,.22), 0 14px 38px -8px rgba(9,188,138,1); }
.site-header .btn-primary::after, .hero .btn-primary::after { background: var(--gold); }
.site-header .btn-primary:hover::after, .hero .btn-primary:hover::after { background: #0ACF98; }
@media (prefers-reduced-motion: reduce) { .btn-primary, .btn-primary::before { animation: none !important; } }

/* Hero portrait */
.hero-portrait { position: relative; max-width: 460px; margin-inline: auto; opacity: 0; animation: rise 1s var(--ease) .2s forwards; }
.hero-portrait > picture img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; border-radius: 14px; box-shadow: 0 30px 80px -30px rgba(0,0,0,.85), 0 0 0 1px rgba(255,255,255,.08); }
.hero-portrait::before { content: ""; position: absolute; inset: -12% -8% auto auto; width: 62%; height: 62%; border-radius: 50%; background: radial-gradient(closest-side, rgba(9,188,138,.28), transparent); z-index: -1; filter: blur(10px); }
.hero-card { position: absolute; left: 14px; right: 14px; bottom: 14px; display: flex; align-items: center; gap: .8rem; padding: .7rem .9rem; border-radius: 10px; background: rgba(23,42,58,.86); backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,.1); color: #fff; }
.hero-card img { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; border: 2px solid var(--gold); }
.hero-card strong { display: block; font-family: "Newsreader", Georgia, serif; font-size: 1.15rem; font-weight: 500; line-height: 1.1; }
.hero-card span { display: block; font-size: .85rem; color: #B7C7D0; }
@media (min-width: 960px) { .hero-grid { grid-template-columns: 1.15fr .85fr; } .hero-portrait { margin-inline: 0 auto; justify-self: end; width: 100%; } }

/* Featured slider at the top of before/after */
.featured { display: grid; gap: 1rem; margin-bottom: 2.4rem; }
.featured .restore { aspect-ratio: 16 / 9; max-height: 640px; animation: none; opacity: 0; transform: translateY(18px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.featured .restore.in { opacity: 1; transform: none; }
.featured-cap { display: flex; flex-wrap: wrap; gap: .4rem 1.2rem; align-items: baseline; color: var(--ink-2); }
@media (max-width: 640px) { .featured .restore { aspect-ratio: 4 / 3; } }

/* Values band with photo */
.values-grid { display: grid; gap: 2rem; }
@media (min-width: 900px) { .values-grid { grid-template-columns: .8fr 2.2fr; gap: 3.5rem; align-items: start; } .values { grid-template-columns: 1fr; gap: 2.2rem; } }
@media (min-width: 1100px) { .values { grid-template-columns: repeat(3, 1fr); } }
.values-photo img { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; border-radius: 12px; box-shadow: 0 30px 70px -30px rgba(0,0,0,.8), 0 0 0 1px rgba(255,255,255,.08); max-width: 420px; }

/* Avatar beside the call preview */
.preview-row { display: flex; align-items: center; gap: .9rem; }
.preview-row .avatar img { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; border: 2px solid var(--gold); flex: 0 0 auto; }
.preview-row .preview { flex: 1; }

/* Hero background photo, faded into the band */
.hero { background-color: var(--ink); background-image: linear-gradient(180deg, rgba(23,42,58,.42) 0%, rgba(23,42,58,.7) 50%, rgba(23,42,58,.97) 100%), linear-gradient(90deg, rgba(23,42,58,.9) 0%, rgba(23,42,58,.5) 42%, rgba(23,42,58,.22) 100%), url("/assets/img/beloit-street-1600.jpg"); background-size: cover, cover, cover; background-position: center, center, center 60%; }
@supports (background-image: url("a.webp")) { .hero { background-image: linear-gradient(180deg, rgba(23,42,58,.42) 0%, rgba(23,42,58,.7) 50%, rgba(23,42,58,.97) 100%), linear-gradient(90deg, rgba(23,42,58,.9) 0%, rgba(23,42,58,.5) 42%, rgba(23,42,58,.22) 100%), url("/assets/img/beloit-street-1600.webp"); } }
@media (min-width: 1600px) { .hero { background-image: linear-gradient(180deg, rgba(23,42,58,.42) 0%, rgba(23,42,58,.7) 50%, rgba(23,42,58,.97) 100%), linear-gradient(90deg, rgba(23,42,58,.9) 0%, rgba(23,42,58,.5) 42%, rgba(23,42,58,.22) 100%), url("/assets/img/beloit-street-2400.webp"); } }
.hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(60% 80% at 85% 20%, rgba(80,137,145,.28), transparent 70%); pointer-events: none; }
.hero > .wrap { position: relative; }

.footer-bottom .disclosure { color: #8FA6B2; font-size: .82rem; }
.page .prose h2 { font-size: 1.45rem; }

/* Video review */
.reviews.has-video { grid-template-columns: 1fr; gap: 1.6rem; }
@media (min-width: 800px) { .reviews.has-video { grid-template-columns: 320px 1fr; gap: 2.5rem; align-items: stretch; } }
.review-stack { display: grid; gap: 1.4rem; align-content: stretch; }
.review-stack .review { min-height: 0; }
.review-video { margin: 0; display: grid; grid-template-rows: 1fr auto; gap: .8rem; max-width: 340px; width: 100%; }
@media (max-width: 799px) { .review-video { max-width: 300px; margin-inline: auto; } }
.review-video .vid { height: 100%; min-height: 420px; }
.vid { position: relative; border-radius: 10px; overflow: hidden; background: #000; aspect-ratio: 9 / 16; box-shadow: var(--shadow); }
.vid video { width: 100%; height: 100%; object-fit: cover; display: block; }
.vid .play { position: absolute; inset: 0; display: grid; place-items: center; background: linear-gradient(180deg, rgba(23,42,58,0) 40%, rgba(23,42,58,.55)); border: 0; cursor: pointer; color: #fff; transition: background .3s; }
.vid .play:hover { background: linear-gradient(180deg, rgba(23,42,58,.1) 40%, rgba(23,42,58,.65)); }
.vid .play span { width: 74px; height: 74px; border-radius: 50%; background: rgba(255,255,255,.94); display: grid; place-items: center; box-shadow: 0 6px 24px rgba(0,0,0,.4), 0 0 0 8px rgba(9,188,138,.25); transition: transform .3s var(--ease); }
.vid .play:hover span { transform: scale(1.06); }
.vid .play svg { width: 28px; height: 28px; margin-left: 4px; color: var(--ink); }
.vid .vid-tag { position: absolute; left: 12px; bottom: 12px; font-family: "IBM Plex Mono", monospace; font-size: .66rem; letter-spacing: .12em; text-transform: uppercase; color: #fff; background: rgba(23,42,58,.8); padding: .35rem .55rem; border-radius: 4px; pointer-events: none; }
.vid.playing .play, .vid.playing .vid-tag { display: none; }
.review-video figcaption { display: grid; gap: .3rem; font-size: .95rem; color: var(--ink-2); }
