/* First Place Finish - Liquid Obsidian
   One theme (dark, locked page-wide). One accent (FPF red, rationed).
   Type: Archivo variable (wdth axis). Motion: transform/opacity only, custom ease-out. */

@font-face {
  font-family: "Archivo";
  src: url("/microsites/first-place-finish-mobile-detail/assets/archivo-variable.woff2")
    format("woff2");
  font-weight: 100 900;
  font-stretch: 62.5% 125%;
  font-style: normal;
  font-display: swap;
}

:root {
  color-scheme: dark;

  --obsidian: #0b0b0c;
  --obsidian-2: #101013;
  --obsidian-3: #16161a;
  --hairline: rgba(255, 255, 255, 0.09);
  --hairline-soft: rgba(255, 255, 255, 0.055);
  --text: #ececea;
  --text-dim: #a2a2aa;
  --text-faint: #7c7c85;
  --red: #bf2117;
  --red-bright: #f13b2f;
  --chrome-solid: #eef0f2;

  --radius-media: 20px;
  --radius-pill: 999px;

  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);

  --shell: 1160px;
  --section-pad: clamp(5rem, 9vw, 8.25rem);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

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

body {
  font-family: "Archivo", "SF Pro Text", "Segoe UI", system-ui, sans-serif;
  font-stretch: 100%;
  background: var(--obsidian);
  color: var(--text);
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 430;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

::selection {
  background: rgba(241, 59, 47, 0.32);
  color: #fff;
}

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

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

.shell {
  width: min(100% - 3rem, var(--shell));
  margin-inline: auto;
}

/* ---------- Reveal choreography ---------- */

html.reveal-ready [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 650ms var(--ease-out),
    transform 650ms var(--ease-out);
  transition-delay: var(--reveal-delay, 0ms);
}

html.reveal-ready [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html.reveal-ready [data-reveal] {
    transform: none;
    transition: opacity 200ms ease;
  }
}

/* ---------- Display type ---------- */

.chrome-type {
  color: #f4f1eb;
}

/* ---------- Buttons ---------- */

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: var(--radius-pill);
  padding: 0.95rem 1.75rem;
  font-size: 0.95rem;
  font-weight: 560;
  letter-spacing: 0.005em;
  white-space: nowrap;
  transition:
    transform 140ms var(--ease-out),
    background-color 180ms ease,
    border-color 180ms ease;
}

.button:active {
  transform: scale(0.97);
}

.button-primary {
  background: var(--red);
  color: #fff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 12px 32px rgba(191, 33, 23, 0.28);
}

.button-ghost {
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--text);
  background: transparent;
}

.button-small {
  padding: 0.62rem 1.25rem;
  font-size: 0.88rem;
}

@media (hover: hover) and (pointer: fine) {
  .button-primary:hover {
    background: #cd2419;
  }
  .button-ghost:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.3);
  }
}

.button:focus-visible,
a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
  border-radius: 4px;
}

.button:focus-visible {
  border-radius: var(--radius-pill);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 540;
  font-size: 0.95rem;
  color: var(--text);
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  padding-bottom: 2px;
  transition: border-color 180ms ease, color 180ms ease;
}

/* 44px minimum hit areas for sparse text links without changing the visual box.
   Dense stacks (footer, mobile menu) get real padding instead so zones never overlap. */
.text-link,
.review-proof,
.work-source,
.agency-offer a,
.phone-link,
.brand {
  position: relative;
}

.text-link::after,
.review-proof::after,
.work-source::after,
.agency-offer a::after,
.phone-link::after,
.brand::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  width: max(100%, 44px);
  height: max(100%, 44px);
}

@media (hover: hover) and (pointer: fine) {
  .text-link:hover {
    border-color: var(--red-bright);
  }
}

/* ---------- Skip link ---------- */

.skip-link {
  position: fixed;
  top: -100%;
  left: 1rem;
  z-index: 60;
  background: var(--red);
  color: #fff;
  padding: 0.65rem 1.1rem;
  border-radius: var(--radius-pill);
  font-weight: 560;
  transition: top 180ms var(--ease-out);
}

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

/* ---------- Header ---------- */

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  transition: background-color 240ms ease, border-color 240ms ease;
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
  background: rgba(11, 11, 12, 0.72);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  backdrop-filter: blur(18px) saturate(140%);
  border-color: var(--hairline-soft);
}

@media (prefers-reduced-transparency: reduce) {
  .site-header.is-scrolled {
    background: #0e0e10;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  height: 68px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  min-width: 0;
}

.brand-mark {
  width: 100px;
  height: auto;
  flex-shrink: 0;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 0.32rem;
  line-height: 1;
}

.brand-copy strong {
  font-size: 0.82rem;
  font-stretch: 92%;
  font-weight: 760;
  line-height: 1;
  letter-spacing: 0.018em;
  text-transform: uppercase;
  white-space: nowrap;
}

.brand-copy small {
  font-size: 0.54rem;
  color: var(--text-dim);
  font-weight: 520;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  white-space: nowrap;
}

.desktop-nav {
  display: flex;
  gap: 1.9rem;
}

.desktop-nav a {
  font-size: 0.9rem;
  font-weight: 480;
  color: var(--text-dim);
  transition: color 160ms ease;
}

@media (hover: hover) and (pointer: fine) {
  .desktop-nav a:hover {
    color: var(--text);
  }
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}

.phone-link {
  font-size: 0.9rem;
  font-weight: 540;
  color: var(--text-dim);
  font-variant-numeric: tabular-nums;
  transition: color 160ms ease;
}

@media (hover: hover) and (pointer: fine) {
  .phone-link:hover {
    color: var(--text);
  }
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: none;
  border: 1px solid var(--hairline);
  border-radius: 12px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 1.5px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 220ms var(--ease-out);
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3.75px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3.75px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background: #0e0e10;
  border-bottom: 1px solid var(--hairline);
  padding: 0.75rem 1.5rem 1.5rem;
}

.mobile-menu a {
  padding: 0.85rem 0;
  font-size: 1.05rem;
  font-weight: 520;
  border-bottom: 1px solid var(--hairline-soft);
}

.mobile-menu a:last-child {
  border-bottom: 0;
  color: var(--text-dim);
}

body.menu-open {
  overflow: hidden;
}

/* ---------- Eyebrow ---------- */

.eyebrow {
  font-size: 0.72rem;
  font-weight: 560;
  text-transform: uppercase;
  letter-spacing: 0.19em;
  color: var(--text-dim);
  margin-bottom: 1.35rem;
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  padding-top: clamp(7.25rem, 11vh, 8.5rem);
  padding-bottom: clamp(3.25rem, 5vw, 4.75rem);
  overflow: hidden;
}

.hero-sheen {
  position: absolute;
  inset: -20% -30%;
  pointer-events: none;
  background:
    radial-gradient(52% 42% at 74% 18%, rgba(255, 255, 255, 0.055), transparent 68%),
    radial-gradient(40% 34% at 12% 82%, rgba(241, 59, 47, 0.05), transparent 70%);
}

.hero-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.88fr);
  gap: clamp(2rem, 4.5vw, 4.25rem);
  align-items: center;
}

.hero h1 {
  font-size: clamp(3.15rem, 5.15vw, 4.9rem);
  line-height: 0.98;
  font-weight: 660;
  font-stretch: 115%;
  letter-spacing: -0.038em;
  text-wrap: balance;
}

.hero-lede {
  margin-top: 1.65rem;
  font-size: 1.1rem;
  color: var(--text-dim);
  max-width: 46ch;
}

.hero-rating {
  width: fit-content;
  display: grid;
  grid-template-columns: auto auto auto;
  align-items: baseline;
  column-gap: 0.65rem;
  margin-top: 1.65rem;
  padding: 0.75rem 0.9rem 0.7rem;
  border: 1px solid var(--hairline);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.025);
  transition:
    border-color 180ms ease,
    background-color 180ms ease;
}

.hero-stars {
  grid-column: 1 / -1;
  color: var(--red-bright);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  line-height: 1;
  margin-bottom: 0.35rem;
}

.hero-rating strong {
  font-size: 0.9rem;
  font-weight: 620;
}

.hero-rating span:not(.hero-stars) {
  color: var(--text-dim);
  font-size: 0.84rem;
}

.hero-rating small {
  color: var(--text-faint);
  font-size: 0.72rem;
  white-space: nowrap;
}

@media (hover: hover) and (pointer: fine) {
  .hero-rating:hover {
    border-color: rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.045);
  }
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2.2rem;
}

/* Showroom plinth: framed hero image + floor reflection */

.plinth {
  position: relative;
  max-width: 500px;
  margin-left: auto;
}

.plinth-frame {
  position: relative;
  border-radius: var(--radius-media);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 34px 90px rgba(0, 0, 0, 0.6);
  isolation: isolate;
}

.plinth-frame img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: 52% 50%;
  transform: scale(1.002);
}

.plinth-glare {
  position: absolute;
  inset: -12%;
  pointer-events: none;
  background: linear-gradient(
    112deg,
    transparent 42%,
    rgba(255, 255, 255, 0.14) 50%,
    transparent 58%
  );
  transform: translateX(-130%);
}

.media-provenance {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  padding: 0.42rem 0.65rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius-pill);
  background: rgba(8, 8, 10, 0.72);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.finish-stamp {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  min-width: 158px;
  padding: 0.85rem 1rem 0.9rem;
  background: rgba(11, 11, 12, 0.88);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-left: 1px solid rgba(255, 255, 255, 0.16);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.finish-stamp strong {
  color: var(--red-bright);
  font-size: 1.05rem;
  font-weight: 760;
  font-style: italic;
  letter-spacing: -0.04em;
}

.finish-stamp small {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.54rem;
  letter-spacing: 0.14em;
}

@media (prefers-reduced-motion: no-preference) {
  .plinth-glare {
    animation: glare-pass 1.4s var(--ease-out) 700ms both;
  }
}

@keyframes glare-pass {
  from {
    transform: translateX(-130%);
  }
  to {
    transform: translateX(130%);
  }
}

.plinth-reflection {
  height: 120px;
  overflow: hidden;
  border-radius: 0 0 var(--radius-media) var(--radius-media);
  opacity: 0.4;
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), transparent 82%);
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), transparent 82%);
}

.plinth-reflection img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  transform: scaleY(-1) translateY(-0.5px);
  filter: blur(1.5px) saturate(0.85);
}

.plinth figcaption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 0.7rem;
  font-size: 0.78rem;
  color: var(--text-faint);
}

.plinth figcaption a {
  color: var(--text-dim);
  text-align: right;
  transition: color 160ms ease;
}

@media (hover: hover) and (pointer: fine) {
  .plinth figcaption a:hover {
    color: var(--text);
  }
}

/* ---------- Fact strip ---------- */

.fact-strip {
  border-top: 1px solid var(--hairline-soft);
  border-bottom: 1px solid var(--hairline-soft);
  background: var(--obsidian-2);
}

.fact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.fact-grid > * {
  padding: 1.6rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.fact-grid > * + * {
  border-left: 1px solid var(--hairline-soft);
}

.fact-grid > a {
  transition: background-color 160ms ease;
}

@media (hover: hover) and (pointer: fine) {
  .fact-grid > a:hover {
    background: rgba(255, 255, 255, 0.025);
  }
}

.fact-grid strong {
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: -0.012em;
}

.fact-grid span {
  font-size: 0.86rem;
  color: var(--text-dim);
}

/* ---------- Sections ---------- */

section {
  padding-block: var(--section-pad);
}

.hero {
  padding-top: clamp(7.25rem, 11vh, 8.5rem);
  padding-bottom: clamp(3.25rem, 5vw, 4.75rem);
}

.fact-strip,
.final-cta {
  padding-block: 0;
}

.section-heading {
  max-width: 620px;
  margin-bottom: clamp(2.75rem, 5vw, 4rem);
}

.section-heading h2,
.story h2,
.review-intro h2,
.faq-intro h2,
.final-content h2 {
  font-size: clamp(1.95rem, 3.4vw, 2.75rem);
  line-height: 1.08;
  font-weight: 650;
  font-stretch: 112%;
  letter-spacing: -0.022em;
  text-wrap: balance;
}

.section-heading p {
  margin-top: 1.1rem;
  color: var(--text-dim);
  max-width: 52ch;
}

/* ---------- Services ledger ---------- */

.service-ledger {
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}

.service-row {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 1.5rem;
  padding: 1.9rem 1.5rem;
  overflow: hidden;
  isolation: isolate;
  transition: background-color 200ms ease, transform 140ms var(--ease-out);
}

.service-row + .service-row {
  border-top: 1px solid var(--hairline);
}

.service-row::after {
  content: "";
  position: absolute;
  inset: -20%;
  z-index: -1;
  background: linear-gradient(
    108deg,
    transparent 42%,
    rgba(255, 255, 255, 0.06) 50%,
    transparent 58%
  );
  transform: translateX(-130%);
}

.service-row:active {
  transform: scale(0.995);
}

@media (hover: hover) and (pointer: fine) {
  .service-row:hover {
    background: rgba(255, 255, 255, 0.028);
  }
}

@media (hover: hover) and (pointer: fine) and (prefers-reduced-motion: no-preference) {
  .service-row:hover::after {
    transform: translateX(130%);
    transition: transform 700ms var(--ease-out);
  }
  .service-row:hover .service-arrow {
    transform: translate(3px, -3px);
  }
  .service-row:hover .service-name {
    transform: translateX(6px);
  }
}

.service-name {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  transition: transform 260ms var(--ease-out);
}

.service-name strong {
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  font-weight: 630;
  font-stretch: 110%;
  letter-spacing: -0.018em;
  line-height: 1.1;
}

.service-name small {
  font-size: 0.9rem;
  color: var(--text-dim);
}

.service-price {
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.service-price small {
  font-size: 0.78rem;
  font-weight: 460;
  color: var(--text-faint);
}

.service-arrow {
  font-size: 1.25rem;
  color: var(--text-dim);
  transition: transform 260ms var(--ease-out);
}

/* ---------- Service gallery ---------- */

.service-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
  margin-top: clamp(3rem, 5vw, 4.25rem);
}

.service-media {
  border-radius: var(--radius-media);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
  isolation: isolate;
}

.service-media img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  width: 100%;
  transition: transform 600ms var(--ease-out);
}

@media (hover: hover) and (pointer: fine) and (prefers-reduced-motion: no-preference) {
  .service-gallery article:hover .service-media img {
    transform: scale(1.035);
  }
}

.service-media-label {
  margin-top: 0.55rem;
  font-size: 0.76rem;
  color: var(--text-faint);
}

.service-card-meta {
  margin-top: 0.55rem;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.service-card-meta strong {
  font-size: 1.02rem;
  font-weight: 600;
  letter-spacing: -0.015em;
}

.service-card-meta span {
  font-size: 0.86rem;
  color: var(--text-dim);
}

.service-card-meta em {
  font-style: normal;
  font-size: 0.92rem;
  font-weight: 560;
  font-variant-numeric: tabular-nums;
  margin-top: 0.4rem;
}

.service-disclosure {
  margin-top: 2rem;
  font-size: 0.84rem;
  color: var(--text-faint);
  max-width: 60ch;
}

.center-action {
  margin-top: 2.4rem;
}

/* ---------- Real work ---------- */

.work-section {
  background: var(--obsidian-2);
  border-top: 1px solid var(--hairline-soft);
  border-bottom: 1px solid var(--hairline-soft);
}

.work-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
  gap: 1.4rem;
  align-items: start;
}

.work-reel {
  border-radius: var(--radius-media);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--obsidian-3);
}

.work-video video {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  background: #000;
}

.work-meta {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.25rem 1.2rem;
}

.work-kicker {
  font-size: 0.78rem;
  color: var(--text-faint);
}

.work-meta h3 {
  font-size: 1.05rem;
  font-weight: 610;
  letter-spacing: -0.015em;
  margin-top: 0.15rem;
}

.work-source {
  font-size: 0.82rem;
  font-weight: 520;
  color: var(--text-dim);
  white-space: nowrap;
  transition: color 160ms ease;
}

@media (hover: hover) and (pointer: fine) {
  .work-source:hover {
    color: var(--text);
  }
}

.work-stills {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
}

.work-stills figure {
  display: flex;
  flex-direction: column;
}

.work-stills img {
  border-radius: var(--radius-media);
  border: 1px solid rgba(255, 255, 255, 0.1);
  aspect-ratio: 4 / 5;
  object-fit: cover;
  width: 100%;
}

.work-stills figcaption {
  margin-top: 0.7rem;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.work-stills figcaption strong {
  font-size: 0.95rem;
  font-weight: 590;
}

.work-stills figcaption span {
  font-size: 0.82rem;
  color: var(--text-dim);
}

.work-stills figcaption a {
  width: fit-content;
  font-size: 0.82rem;
  color: var(--text-dim);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

/* ---------- Process ---------- */

.process-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.process-grid li {
  border-top: 1px solid var(--hairline);
  padding-top: 1.5rem;
}

.process-grid h3 {
  font-size: 1.12rem;
  font-weight: 620;
  letter-spacing: -0.018em;
}

.process-grid p {
  margin-top: 0.55rem;
  font-size: 0.93rem;
  color: var(--text-dim);
  max-width: 34ch;
}

.location-card {
  margin-top: clamp(3rem, 5.5vw, 4.5rem);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(1.5rem, 3.5vw, 3rem);
  background: var(--obsidian-2);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-media);
  padding: clamp(1.5rem, 3.2vw, 2.4rem);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.location-flag {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.15rem;
  width: 84px;
  height: 84px;
  border-radius: 18px;
  background: var(--red);
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.location-flag span {
  font-size: 0.68rem;
  font-weight: 620;
  letter-spacing: 0.14em;
}

.location-flag strong {
  font-size: 1.25rem;
  font-weight: 680;
  letter-spacing: -0.01em;
}

.location-copy h3 {
  font-size: 1.35rem;
  font-weight: 630;
  letter-spacing: -0.022em;
}

.location-copy p {
  margin-top: 0.45rem;
  color: var(--text-dim);
  font-size: 0.95rem;
}

.location-copy address {
  margin-top: 0.55rem;
  font-style: normal;
  font-size: 0.88rem;
  color: var(--text-faint);
}

/* ---------- Maintenance plans ---------- */

.maintenance {
  background: var(--obsidian-2);
  border-top: 1px solid var(--hairline-soft);
  border-bottom: 1px solid var(--hairline-soft);
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  align-items: stretch;
}

.plan-card {
  display: flex;
  flex-direction: column;
  background: var(--obsidian);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-media);
  padding: 1.9rem 1.75rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.plan-featured {
  border: 1px solid transparent;
  background:
    linear-gradient(var(--obsidian-3), var(--obsidian-3)) padding-box,
    linear-gradient(
        128deg,
        rgba(255, 255, 255, 0.34),
        rgba(255, 255, 255, 0.07) 42%,
        rgba(241, 59, 47, 0.42)
      )
      border-box;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 26px 70px rgba(0, 0, 0, 0.45);
}

.plan-level {
  font-size: 0.78rem;
  font-weight: 580;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-dim);
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 0.15rem;
  margin-top: 1.1rem;
  font-variant-numeric: tabular-nums;
}

.plan-price span {
  font-size: 1.2rem;
  font-weight: 540;
  color: var(--text-dim);
}

.plan-price strong {
  font-size: 3rem;
  font-weight: 650;
  font-stretch: 108%;
  letter-spacing: -0.025em;
  line-height: 1;
}

.plan-price small {
  font-size: 0.95rem;
  color: var(--text-dim);
}

.plan-cadence {
  margin-top: 0.45rem;
  font-size: 0.88rem;
  color: var(--text-dim);
}

.plan-tagline {
  margin-top: 0.7rem;
  font-size: 0.86rem;
  line-height: 1.45;
  color: var(--text-faint);
}

.plan-card ul {
  list-style: none;
  margin-top: 1.4rem;
  margin-bottom: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  flex-grow: 1;
}

.plan-card li {
  position: relative;
  padding-left: 1.3rem;
  font-size: 0.92rem;
  color: var(--text-dim);
}

.plan-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 14px;
  height: 1px;
  background: rgba(255, 255, 255, 0.32);
}

.plan-card > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-pill);
  padding: 0.8rem 1.4rem;
  font-size: 0.92rem;
  font-weight: 560;
  border: 1px solid rgba(255, 255, 255, 0.18);
  transition:
    transform 140ms var(--ease-out),
    background-color 180ms ease,
    border-color 180ms ease;
}

.plan-card > a:active {
  transform: scale(0.97);
}

.plan-featured > a {
  background: var(--red);
  border-color: transparent;
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

@media (hover: hover) and (pointer: fine) {
  .plan-card > a:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.3);
  }
  .plan-featured > a:hover {
    background: #cd2419;
    border-color: transparent;
  }
}

/* ---------- Story ---------- */

.story-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: center;
}

.story-image img {
  border-radius: var(--radius-media);
  border: 1px solid rgba(255, 255, 255, 0.1);
  aspect-ratio: 1;
  object-fit: cover;
  width: 100%;
}

.story-image span {
  display: block;
  margin-top: 0.55rem;
  font-size: 0.82rem;
  color: var(--text-faint);
}

.story-copy > p {
  margin-top: 1.2rem;
  color: var(--text-dim);
  max-width: 46ch;
}

.story-copy blockquote {
  margin-top: 2rem;
  border-left: 2px solid var(--red);
  padding-left: 1.4rem;
}

.story-copy blockquote p {
  font-size: 1.12rem;
  line-height: 1.5;
  font-weight: 480;
  color: var(--text);
}

.story-copy blockquote footer,
.review footer {
  margin-top: 0.9rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.9rem;
  font-weight: 560;
}

.review-proof {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-dim);
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  padding-bottom: 1px;
  transition: color 160ms ease, border-color 160ms ease;
}

@media (hover: hover) and (pointer: fine) {
  .review-proof:hover {
    color: var(--text);
    border-color: var(--red-bright);
  }
}

.story-copy .text-link {
  margin-top: 2rem;
}

/* ---------- Reviews ---------- */

.review-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: center;
}

.review-intro p {
  margin-top: 1.1rem;
  color: var(--text-dim);
  max-width: 40ch;
}

.review-intro .text-link {
  margin-top: 1.8rem;
}

.review {
  border-left: 2px solid var(--red);
  padding-left: clamp(1.5rem, 3vw, 2.25rem);
}

.review p {
  font-size: clamp(1.35rem, 2.3vw, 1.8rem);
  line-height: 1.4;
  font-weight: 500;
  letter-spacing: -0.018em;
  color: var(--chrome-solid);
  text-wrap: balance;
}

/* ---------- FAQ ---------- */

.faq-section {
  background: var(--obsidian-2);
  border-top: 1px solid var(--hairline-soft);
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: start;
}

.faq-list details {
  border-top: 1px solid var(--hairline);
}

.faq-list details:last-child {
  border-bottom: 1px solid var(--hairline);
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.35rem 0.25rem;
  cursor: pointer;
  list-style: none;
  font-size: 1.02rem;
  font-weight: 560;
  letter-spacing: -0.012em;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  font-size: 1.25rem;
  font-weight: 380;
  color: var(--text-dim);
  transition: transform 240ms var(--ease-out);
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-body p {
  padding: 0 2.5rem 1.35rem 0.25rem;
  color: var(--text-dim);
  font-size: 0.95rem;
}

@media (prefers-reduced-motion: no-preference) {
  .faq-list details[open] .faq-body p {
    animation: faq-open 260ms var(--ease-out);
  }
}

@keyframes faq-open {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* ---------- Final CTA ---------- */

.final-cta {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.final-cta > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.final-shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    180deg,
    rgba(11, 11, 12, 0.88) 0%,
    rgba(11, 11, 12, 0.66) 48%,
    rgba(11, 11, 12, 0.92) 100%
  );
}

.final-content {
  padding-block: clamp(6.5rem, 12vw, 10.5rem);
}

.final-content > p:not(.eyebrow) {
  margin-top: 1.2rem;
  color: var(--text-dim);
  max-width: 44ch;
}

.final-content .hero-actions {
  margin-top: 2.1rem;
}

/* ---------- Footer ---------- */

.site-footer {
  border-top: 1px solid var(--hairline);
  padding-top: clamp(3.5rem, 6vw, 5rem);
  padding-bottom: 7rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem;
}

.footer-grid > div {
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: flex-start;
}

.footer-grid a,
.footer-grid > div > span {
  padding-block: 0.625rem;
}

.footer-grid p {
  color: var(--text-dim);
  font-size: 0.9rem;
}

.footer-brand {
  margin-bottom: 0.5rem;
}

.footer-label {
  font-size: 0.74rem;
  font-weight: 580;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-faint);
  margin-bottom: 0.35rem;
}

.footer-grid a,
.footer-grid span {
  font-size: 0.92rem;
  color: var(--text-dim);
  transition: color 160ms ease;
}

@media (hover: hover) and (pointer: fine) {
  .footer-grid a:hover {
    color: var(--text);
  }
}

.footer-base {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: clamp(3rem, 5vw, 4rem);
  padding-top: 1.5rem;
  border-top: 1px solid var(--hairline-soft);
  font-size: 0.82rem;
  color: var(--text-faint);
}

/* ---------- Mobile quick actions ---------- */

.mobile-actions {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 40;
  display: none;
  grid-template-columns: 1fr 1.4fr;
  gap: 0.6rem;
  padding: 0.7rem 1rem calc(0.7rem + env(safe-area-inset-bottom));
  background: rgba(11, 11, 12, 0.82);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--hairline);
}

@media (prefers-reduced-transparency: reduce) {
  .mobile-actions {
    background: #0e0e10;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }
}

.mobile-actions a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: var(--radius-pill);
  font-size: 0.95rem;
  font-weight: 580;
  transition: transform 140ms var(--ease-out);
}

.mobile-actions a:active {
  transform: scale(0.97);
}

.mobile-actions a:first-child {
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.mobile-actions a:last-child {
  background: var(--red);
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

/* ---------- Agency offer ---------- */

.agency-offer {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 45;
  max-width: 300px;
  background: var(--obsidian-3);
  border: 1px solid var(--hairline);
  border-radius: 16px;
  padding: 1.1rem 1.25rem;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
}

.agency-offer p {
  font-size: 0.9rem;
  color: var(--text-dim);
}

.agency-offer strong {
  color: var(--text);
}

.agency-offer a {
  display: inline-block;
  margin-top: 0.6rem;
  font-size: 0.9rem;
  font-weight: 570;
  color: var(--red-bright);
}

/* ---------- Responsive ---------- */

@media (max-width: 1024px) {
  .desktop-nav {
    display: none;
  }

  .brand-mark {
    width: 96px;
  }

  .hero {
    padding-top: 7rem;
  }

  .service-gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .plan-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 860px) {
  .hero-layout,
  .work-grid,
  .story-layout,
  .review-layout,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 680px;
  }

  .hero-visual,
  .story-image {
    max-width: 560px;
  }

  .hero-visual {
    width: 100%;
    margin-top: 0.5rem;
  }

  .plinth {
    max-width: none;
    margin-left: 0;
  }

  .plinth-frame img {
    aspect-ratio: 4 / 3;
    object-position: 50% 53%;
  }

  .work-reel {
    max-width: 560px;
  }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .location-card {
    grid-template-columns: 1fr;
    justify-items: start;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  .phone-link {
    display: none;
  }

  .nav-actions .button {
    display: none;
  }

  .mobile-menu:not([hidden]) {
    display: flex;
  }

  .mobile-actions {
    display: grid;
  }

  .fact-grid {
    grid-template-columns: 1fr;
  }

  .fact-grid > * {
    padding: 1.1rem 0;
  }

  .fact-grid > * + * {
    border-left: 0;
    border-top: 1px solid var(--hairline-soft);
  }

  .service-row {
    grid-template-columns: 1fr auto;
    padding: 1.5rem 0.5rem;
  }

  .service-arrow {
    display: none;
  }

  .service-gallery {
    grid-template-columns: 1fr;
  }

  .work-stills {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .shell {
    width: min(100% - 2.25rem, var(--shell));
  }

  .hero h1 {
    font-size: clamp(2.65rem, 11.5vw, 3.35rem);
  }

  .hero-rating {
    grid-template-columns: auto auto;
  }

  .hero-rating small {
    grid-column: 1 / -1;
  }

  .plinth-frame img {
    aspect-ratio: 3 / 4;
  }

  .finish-stamp {
    min-width: 140px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .brand-copy {
    display: none;
  }

  .brand-mark {
    width: 104px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-base {
    flex-direction: column;
    gap: 0.3rem;
  }
}
