/* ============================================================
   NQA DETAILS — SITE LAYOUT
   ------------------------------------------------------------
   Page components for: index · services · gallery · areas
   Palette, typography, buttons, nav, footer and motion all live
   in css/theme.css, which MUST be loaded before this file.
   Sections opt into a band with .tone-dark / .tone-light.
   ============================================================ */

/* ============================================================
   HOME HERO — obsidian band, lit from the top right
   ============================================================ */
.hero {
  position: relative;
  padding: 78px 0 84px;
  overflow: hidden;
}
/* burgundy light pool, slowly breathing */
.hero::before {
  content: "";
  position: absolute;
  top: -300px; right: -200px;
  width: 950px; height: 950px;
  background:
    radial-gradient(circle at 50% 50%, rgba(200, 50, 63, .26) 0%, transparent 62%),
    radial-gradient(circle at 70% 70%, rgba(201, 204, 211, .05) 0%, transparent 60%);
  pointer-events: none;
  animation: hero-breathe 13s ease-in-out infinite alternate;
}
@keyframes hero-breathe {
  from { transform: scale(1) translate(0, 0); opacity: .82; }
  to   { transform: scale(1.12) translate(-30px, 24px); opacity: 1; }
}
/* hairline grid, barely there — reads as a detailing bay floor */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .026) 1px, transparent 1px);
  background-size: 74px 74px;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 40%, #000 20%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 40%, #000 20%, transparent 78%);
  pointer-events: none;
}

/* ============================================================
   HOME HERO — full-bleed shot, copy over it, rates along the base
   ============================================================ */
/* Two classes on purpose: the responsive `.hero { padding: … }` rules further
   down the file would otherwise win on ordering and re-add ~96px of dead space
   above the headline on phones. */
.hero.hero-shot {
  padding: 0;
  min-height: min(76vh, 660px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
/* the photo replaces the glow-and-grid treatment — no point painting both */
.hero-shot::before, .hero-shot::after { display: none; }
/* the photo sits behind everything, dimmed enough for white text to hold */
.hero-shot .hs-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-shot .hs-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 58%;
  transform: scale(1.04);
}
.hero-shot .hs-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6, 6, 8, .84) 0%, rgba(6, 6, 8, .5) 42%, rgba(6, 6, 8, .93) 100%),
    linear-gradient(96deg, rgba(6, 6, 8, .9) 8%, rgba(6, 6, 8, .25) 62%, transparent 100%),
    radial-gradient(680px 420px at 18% 42%, rgba(158, 27, 43, .3), transparent 72%);
}

.hero-shot .hs-inner {
  position: relative;
  z-index: 2;
  padding: 44px 0 32px;
  max-width: 1180px;
}
.hero-shot .hs-loc {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--brand-bright);
  margin-bottom: 18px;
}
.hero-shot h1 {
  font-size: clamp(2.5rem, 6vw, 4.7rem);
  line-height: .96;
  color: #fff;
  max-width: 17ch;
}
.hero-shot .hs-sub {
  margin: 22px 0 0;
  font-size: 1.06rem;
  color: #c6cad3;
  max-width: 46ch;
}

.hero-shot .hs-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  margin-top: 34px;
}
/* the phone number is a real target, not a line of text — this is a
   call-and-text business and half the traffic arrives on a phone */
.hero-shot .hs-call {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  padding: 10px 4px;
  color: #fff;
  transition: color .2s ease;
}
.hero-shot .hs-call svg {
  width: 42px; height: 42px;
  padding: 11px;
  border-radius: 50%;
  fill: var(--brand-bright);
  background: rgba(200, 50, 63, .16);
  border: 1px solid var(--brand-line);
  flex-shrink: 0;
  transition: background .25s ease, fill .25s ease, transform .25s var(--ease);
}
.hero-shot .hs-call:hover svg { background: var(--brand); fill: #fff; transform: translateY(-2px); }
.hero-shot .hs-call span {
  display: flex;
  flex-direction: column;
  font-family: var(--fd);
  font-weight: 600;
  font-size: 1.3rem;
  letter-spacing: .02em;
  line-height: 1.1;
}
.hero-shot .hs-call small {
  font-family: var(--fb);
  font-weight: 600;
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 3px;
}

/* rate rail pinned to the base of the shot — the price is the first thing
   people came for, so it never sits below the fold */
.hero-shot .hs-rates {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(255, 255, 255, .12);
  background: rgba(6, 6, 8, .55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.hero-shot .hs-rates .container {
  display: flex;
  align-items: stretch;
  gap: 0;
}
.hero-shot .hs-rates a {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 3px;
  padding: 17px 22px;
  border-left: 1px solid rgba(255, 255, 255, .09);
  transition: background .25s ease;
}
.hero-shot .hs-rates a:first-child { border-left: none; }
.hero-shot .hs-rates a:hover { background: rgba(200, 50, 63, .16); }
.hero-shot .hs-rates span {
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted);
}
.hero-shot .hs-rates strong {
  font-family: var(--fd);
  font-weight: 600;
  font-size: 1.3rem;
  color: #fff;
}
.hero-shot .hs-rates .hs-rates-all {
  flex: 0 0 auto;
  justify-content: center;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--brand-bright);
}

@media (max-width: 880px) {
  .hero.hero-shot { min-height: auto; }
  .hero-shot .hs-inner { padding: 38px 0 30px; }
  .hero-shot .hs-media img { object-position: center 62%; }
  .hero-shot .hs-actions { gap: 16px; margin-top: 28px; }
  .hero-shot .hs-actions .btn { width: 100%; }
  .hero-shot .hs-call { width: 100%; }
}
@media (max-width: 620px) {
  /* claw back vertical space so the rate rail still lands in the fold */
  .hero-shot .hs-inner { padding: 40px 0 28px; }
  .hero-shot .hs-loc { margin-bottom: 13px; }
  .hero-shot .hs-sub { margin-top: 16px; }
  .hero-shot .hs-actions { margin-top: 24px; }
  .hero-shot h1 { font-size: clamp(2.1rem, 9vw, 2.9rem); max-width: none; }
  .hero-shot .hs-sub { font-size: .99rem; }
  /* four items won't fit across a phone — drop the link and let the three
     prices share the row */
  .hero-shot .hs-rates .hs-rates-all { display: none; }
  .hero-shot .hs-rates a { padding: 13px 6px; text-align: center; align-items: center; }
  /* these three labels tell you which price is which — they were the smallest
     type on the page at 9.9px, which is unreadable on a phone. Letter-spacing
     comes down so "Full Detail" still fits a third of a 375px screen. */
  .hero-shot .hs-rates span { font-size: .72rem; letter-spacing: .06em; }
  .hero-shot .hs-rates strong { font-size: 1.06rem; }
}

.hero-copy {
  position: relative;
  max-width: 600px;
  padding-left: 26px;
}
/* the vertical brand rule beside the headline */
.hero-copy::before {
  content: "";
  position: absolute;
  left: 0; top: 6px; bottom: 6px;
  width: 3px;
  border-radius: 3px;
  background: linear-gradient(180deg, var(--brand-lift), rgba(200, 50, 63, .04));
}
.hero h1 { margin-top: 14px; }
.hero-copy .lead { margin: 22px 0 32px; color: #bcc0c9; }
.hero-actions { display: flex; gap: 15px; flex-wrap: wrap; align-items: center; }
.hero .trust-row { margin-top: 28px; }

/* the "from $X" price flag under the hero CTAs */
.hero-price {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  margin-top: 26px;
  padding: 11px 20px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid var(--line-2);
}
.hero-price .hp-lbl {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
}
.hero-price .hp-amt {
  font-family: var(--fd);
  font-weight: 600;
  font-size: 1.4rem;
  color: #fff;
  letter-spacing: .02em;
}

/* photo: square corners + open bracket */
.hero-media { position: relative; }
.hero-media::after {
  content: "";
  position: absolute;
  left: -11px; top: -12px; bottom: -14px;
  width: 68%;
  border-left: 2px solid rgba(201, 204, 211, .75);
  border-top: 2px solid rgba(201, 204, 211, .75);
  border-bottom: 2px solid rgba(201, 204, 211, .75);
  pointer-events: none;
}
.hero-media .frame {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 40px 90px rgba(0, 0, 0, .8), 0 0 0 1px rgba(255, 255, 255, .07);
  transform: perspective(1400px) rotateY(var(--ry, 0deg)) rotateX(var(--rx, 0deg));
  transition: transform .5s var(--ease);
  will-change: transform;
}
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
/* slow sheen crossing the paint */
.hero-media .frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(104deg, transparent 40%, rgba(255, 255, 255, .14) 50%, transparent 60%);
  transform: translateX(-100%);
  animation: paint-sheen 9s ease-in-out 2s infinite;
  pointer-events: none;
}
@keyframes paint-sheen {
  0%, 72% { transform: translateX(-100%); }
  100%    { transform: translateX(100%); }
}

.hero-badge {
  position: absolute;
  left: 15px; bottom: 15px;
  z-index: 2;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  padding: 9px 15px 10px;
  border-radius: 5px;
  background: rgba(6, 6, 8, .85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--brand-line);
  color: #fff;
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  line-height: 1.25;
}
.hero-badge span:first-child { color: var(--brand-bright); font-size: .66rem; letter-spacing: .22em; }

/* hero entrance */
.hero h1 .word { display: inline-block; white-space: nowrap; }
.hero h1 .ltr {
  display: inline-block;
  opacity: 0;
  transform: translateY(.4em);
  animation: letter-in .34s var(--ease) forwards;
}
@keyframes letter-in { to { opacity: 1; transform: none; } }
.hero-follow { opacity: 0; animation: follow-in .55s ease forwards; }
@keyframes follow-in { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }
.hero .hero-media.hero-follow.reveal { transition: none; }
@media (prefers-reduced-motion: reduce) {
  .hero h1 .ltr, .hero-follow { opacity: 1; transform: none; animation: none; }
  .hero::before, .hero-media .frame::after { animation: none; }
}

/* ============================================================
   SECTIONS
   ============================================================ */
.section { padding: 88px 0; position: relative; }
.section.tight { padding: 56px 0; }
.section-head { max-width: 800px; margin-bottom: 48px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.section-head.center .eyebrow::before { display: none; }
.section-head h2 { margin: 14px 0 12px; }

/* thin rule under centred section heads */
.section-head.center h2::after {
  content: "";
  display: block;
  width: 84px; height: 2px;
  border-radius: 3px;
  margin: 20px auto 0;
  background: linear-gradient(90deg, transparent, var(--brand-lift), transparent);
}

/* Grid items default to min-width:auto, so a card with a wide minimum
   refuses to shrink and punches out of its track at in-between widths.
   minmax(0,1fr) semantics for every grid. */
.services-grid > *, .matrix-grid > *, .standard-grid > *,
.benefits-grid > *, .numbered-services > *, .pricing-grid > *,
.gallery-grid > *, .proof-strip > *, .future-grid > *,
.hero-grid > *, .future-media > *, .areas-grid > *,
.steps-grid > *, .incl-grid > * { min-width: 0; }

/* ============================================================
   SERVICE CARDS
   ============================================================ */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.service-card { overflow: hidden; display: flex; flex-direction: column; }
.service-card .media { position: relative; height: 218px; overflow: hidden; }
.service-card .media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(102, 16, 28, .55));
  opacity: 0;
  transition: opacity .45s ease;
}
.service-card:hover .media::after { opacity: 1; }
.service-card .media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .7s var(--ease);
}
.service-card:hover .media img { transform: scale(1.07); }
.service-card .body { padding: 28px 28px 32px; display: flex; flex-direction: column; flex: 1; }
.service-card h3 { margin-bottom: 6px; }
.service-card .from {
  font-family: var(--fd);
  font-weight: 500;
  font-size: 1.05rem;
  letter-spacing: .06em;
  color: var(--brand-bright);
  margin-bottom: 12px;
}
.service-card .from strong { font-weight: 700; font-size: 1.35rem; color: #fff; }
.service-card p { font-size: .95rem; color: var(--muted); flex: 1; }
.service-card .btn { margin-top: 24px; align-self: flex-start; }

/* ============================================================
   PRICE MATRIX — the flyer's grid, rebuilt as a live component
   ============================================================ */
.matrix-grid { display: grid; gap: 22px; max-width: 1000px; margin-inline: auto; }
.matrix {
  padding: 0;
  overflow: hidden;
}
.matrix-head {
  display: grid;
  grid-template-columns: 1.25fr repeat(3, 1fr);
  align-items: center;
  gap: 12px;
  padding: 22px 28px;
  background: linear-gradient(100deg, rgba(200, 50, 63, .16), rgba(255, 255, 255, .02));
  border-bottom: 1px solid var(--line);
}
.matrix-head .m-name {
  display: flex;
  align-items: center;
  gap: 14px;
}
.matrix-head .m-name::before {
  content: "";
  width: 4px; height: 30px;
  border-radius: 3px;
  background: linear-gradient(180deg, var(--brand-bright), var(--brand-deep));
  flex-shrink: 0;
}
.matrix-head h3 { font-size: clamp(1.3rem, 2.4vw, 1.8rem); line-height: 1; }
.matrix-head h3 small {
  display: block;
  font-family: var(--fb);
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .18em;
  color: var(--muted);
  margin-top: 5px;
}
/* The tier prices are direct children of the head grid on desktop; below
   720px the wrapper becomes a real grid of its own (see the media query
   at the foot of this file) so they can reflow into their own row. */
.matrix-head .m-tiers { display: contents; }
.m-tier { text-align: center; }
.m-tier .t-lbl {
  display: block;
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 3px;
  line-height: 1.3;
}
.m-tier .t-amt {
  font-family: var(--fd);
  font-weight: 600;
  font-size: clamp(1.25rem, 2.6vw, 1.75rem);
  color: var(--brand-bright);
  letter-spacing: .01em;
  white-space: nowrap;
}
.matrix-body { padding: 26px 28px 28px; display: grid; grid-template-columns: 1.6fr 1fr; gap: 26px; }
.matrix-body.solo { grid-template-columns: 1fr; }
.matrix-body h4 {
  font-family: var(--fb);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .2em;
  color: var(--brand-bright);
  margin-bottom: 14px;
}
.incl { list-style: none; display: grid; gap: 9px; }
.incl li {
  position: relative;
  padding-left: 27px;
  font-size: .92rem;
  color: var(--ink-soft);
}
.incl li::before {
  content: "";
  position: absolute;
  left: 0; top: .42em;
  width: 15px; height: 15px;
  border-radius: 4px;
  background: rgba(200, 50, 63, .18);
  border: 1px solid var(--brand-line);
}
.incl li::after {
  content: "";
  position: absolute;
  left: 5px; top: .58em;
  width: 4px; height: 8px;
  border: solid var(--brand-bright);
  border-width: 0 2px 2px 0;
  transform: rotate(42deg);
}
.incl li em { font-style: italic; color: var(--muted); font-size: .85em; display: block; }

.addon-box {
  border-radius: var(--radius-sm);
  border: 1px solid var(--brand-line);
  background: rgba(200, 50, 63, .07);
  padding: 20px 22px;
  align-self: start;
}
.addon-box h4 { text-align: center; margin-bottom: 16px; }
.addon-item { display: flex; gap: 12px; padding: 11px 0; border-bottom: 1px solid var(--line); }
.addon-item:last-child { border-bottom: none; padding-bottom: 0; }
.addon-item .ai-ico { font-size: 1.15rem; line-height: 1.2; flex-shrink: 0; }
.addon-item .ai-name { font-size: .89rem; color: var(--ink); font-weight: 600; }
.addon-item .ai-price { font-size: .85rem; color: var(--brand-bright); font-weight: 700; }
.addon-item .ai-price.quote { color: var(--muted); font-weight: 500; font-style: italic; }

.matrix-foot {
  padding: 18px 28px;
  border-top: 1px solid var(--line);
  background: rgba(0, 0, 0, .25);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}
.matrix-foot p { font-size: .86rem; color: var(--muted); margin: 0; }
.matrix.featured { border-color: var(--brand-line); box-shadow: var(--shadow-md), 0 0 60px rgba(158, 27, 43, .16); }
.matrix.featured .matrix-head { background: linear-gradient(100deg, rgba(200, 50, 63, .28), rgba(255, 255, 255, .03)); }
.m-flag {
  display: inline-block;
  background: linear-gradient(180deg, var(--chrome-soft), var(--chrome-deep));
  color: var(--chrome-ink);
  font-size: .6rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 9px;
}

/* ============================================================
   RATE CARD — the whole price list as one scannable table
   ============================================================ */
.ratecard {
  max-width: 980px;
  margin-inline: auto;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: linear-gradient(168deg, rgba(255, 255, 255, .055), rgba(255, 255, 255, .016));
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
/* A four-column price table can't compress below roughly 620px without
   the numbers colliding, so it scrolls inside its own frame rather than
   pushing the page sideways. */
.ratecard-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.ratecard table { width: 100%; border-collapse: collapse; min-width: 600px; }
.ratecard thead th {
  font-family: var(--fb);
  font-size: .64rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--chrome);
  text-align: center;
  padding: 18px 14px;
  background: linear-gradient(100deg, rgba(200, 50, 63, .2), rgba(255, 255, 255, .02));
  border-bottom: 1px solid var(--brand-line);
  white-space: nowrap;
}
.ratecard thead th:first-child { text-align: left; padding-left: 26px; }
.ratecard tbody th {
  font-family: var(--fd);
  font-weight: 600;
  font-size: 1.08rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--ink);
  text-align: left;
  padding: 20px 14px 20px 26px;
  white-space: nowrap;
}
.ratecard tbody th small {
  display: block;
  font-family: var(--fb);
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .02em;
  text-transform: none;
  color: var(--muted);
  margin-top: 3px;
}
.ratecard tbody td {
  text-align: center;
  padding: 20px 14px;
  font-family: var(--fd);
  font-weight: 600;
  font-size: 1.3rem;
  color: var(--brand-bright);
  white-space: nowrap;
}
.ratecard tbody tr { border-bottom: 1px solid var(--line); transition: background .25s ease; }
.ratecard tbody tr:last-child { border-bottom: none; }
.ratecard tbody tr:hover { background: rgba(200, 50, 63, .07); }
.ratecard tbody tr.hero-row { background: rgba(200, 50, 63, .1); }
.ratecard tbody tr.hero-row td { color: #fff; }
.ratecard tbody tr.hero-row th { color: #fff; }
.ratecard-foot {
  padding: 18px 26px;
  border-top: 1px solid var(--line);
  background: rgba(0, 0, 0, .28);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}
.ratecard-foot p { font-size: .85rem; color: var(--muted); margin: 0; max-width: 60ch; }
.ratecard-hint {
  display: none;
  text-align: center;
  font-size: .76rem;
  color: var(--muted);
  padding: 10px 0 0;
  letter-spacing: .06em;
}
@media (max-width: 640px) { .ratecard-hint { display: block; } }

/* ============================================================
   ADD-ON CARDS
   ============================================================ */
.addons-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; max-width: 860px; margin-inline: auto; }
.addon-card { padding: 30px 28px; display: flex; gap: 18px; align-items: flex-start; }
.addon-card .ac-ico {
  width: 50px; height: 50px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  background: linear-gradient(160deg, rgba(200, 50, 63, .22), rgba(200, 50, 63, .04));
  border: 1px solid var(--brand-line);
  flex-shrink: 0;
}
.addon-card h3 { font-size: 1.2rem; margin-bottom: 4px; }
.addon-card .ac-price {
  font-family: var(--fd);
  font-weight: 600;
  font-size: 1.35rem;
  color: var(--brand-bright);
  margin-bottom: 8px;
}
.addon-card .ac-price.quote { font-size: 1rem; color: var(--chrome); letter-spacing: .04em; }
.addon-card p { font-size: .9rem; color: var(--muted); }

/* ============================================================
   THE NQA STANDARD  (replaces a reviews block until the client
   has reviews of his own to publish)
   ============================================================ */
.standard-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.standard { padding: 32px 26px; display: flex; flex-direction: column; }
.standard .s-ico {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: linear-gradient(160deg, rgba(200, 50, 63, .22), rgba(200, 50, 63, .04));
  border: 1px solid var(--brand-line);
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  transition: transform .35s var(--ease), box-shadow .35s ease;
}
.standard:hover .s-ico { transform: translateY(-3px) rotate(-4deg); box-shadow: 0 10px 26px rgba(158, 27, 43, .4); }
.standard .s-ico svg { width: 24px; height: 24px; fill: var(--brand-bright); }
.standard h3 { font-size: 1.22rem; margin-bottom: 10px; }
.standard p { font-size: .91rem; color: var(--muted); flex: 1; }

/* ============================================================
   STATS + "STANDARD" SPLIT
   ============================================================ */
.future-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 58px; align-items: center; }
.stats { display: flex; flex-direction: column; gap: 30px; }
.stat { position: relative; padding-left: 24px; }
.stat::before {
  content: "";
  position: absolute;
  left: 0; top: 8px; bottom: 8px;
  width: 3px;
  border-radius: 3px;
  background: linear-gradient(180deg, var(--brand-lift), transparent);
}
.stat .num {
  font-family: var(--fd);
  font-weight: 700;
  font-size: clamp(2.5rem, 4.6vw, 3.8rem);
  color: var(--brand-bright);
  line-height: 1;
}
.stat .label {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 8px;
}
.future-copy h2 { margin-bottom: 18px; }
.future-copy .lead { margin-bottom: 30px; }
.future-media { display: grid; grid-template-columns: 1.4fr 1fr; gap: 18px; margin-top: 46px; }
.future-media .frame {
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}
.future-media img { width: 100%; height: 244px; object-fit: cover; transition: transform .7s var(--ease); }
.future-media .frame:hover img { transform: scale(1.05); }

/* ============================================================
   PROOF STRIP
   ============================================================ */
.proof-strip { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; margin-top: 36px; }
.proof-strip a {
  display: block;
  aspect-ratio: 1;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  position: relative;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.proof-strip a::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(158, 27, 43, .6));
  opacity: 0;
  transition: opacity .35s ease;
}
.proof-strip a:hover { transform: translateY(-6px) scale(1.02); box-shadow: var(--shadow-md); }
.proof-strip a:hover::after { opacity: 1; }
.proof-strip img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s var(--ease); }
.proof-strip a:hover img { transform: scale(1.09); }

/* ============================================================
   REELS — vertical clips, sized like the phone footage they are
   ============================================================ */
.reels {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  max-width: 720px;
  margin-inline: auto;
}
.reel {
  position: relative;
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: #000;
  box-shadow: var(--shadow-md);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .3s ease;
}
.reel:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--brand-line); }
.reel video {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  background: #000;
}
/* a burgundy edge-light so the clips read as part of the brand, not embeds */
.reel::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  box-shadow: inset 0 0 60px rgba(158, 27, 43, .22), inset 0 -70px 60px -50px rgba(6, 6, 8, .9);
}
.reel-sound {
  position: absolute;
  right: 12px; bottom: 12px;
  z-index: 2;
  width: 44px; height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  cursor: pointer;
  background: rgba(6, 6, 8, .62);
  border: 1px solid rgba(255, 255, 255, .22);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background .2s ease, border-color .2s ease, transform .2s var(--ease);
}
.reel-sound:hover { background: var(--brand); border-color: var(--brand-lift); transform: scale(1.06); }
.reel-sound svg { width: 20px; height: 20px; fill: #fff; color: #fff; }
/* the crossed-out icon shows while muted, the plain one once sound is on */
.reel-sound .ico-on { display: none; }
.reel-sound[aria-pressed="true"] .ico-on { display: block; }
.reel-sound[aria-pressed="true"] .ico-off { display: none; }

@media (max-width: 620px) {
  .reels { grid-template-columns: 1fr; gap: 18px; max-width: 330px; }
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.step {
  position: relative;
  padding: 34px 28px 30px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: linear-gradient(168deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, .015));
}
.step .s-num {
  position: absolute;
  top: -20px; left: 26px;
  width: 44px; height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, var(--brand-lift), var(--brand-deep));
  color: #fff;
  font-family: var(--fd);
  font-weight: 700;
  font-size: 1.2rem;
  box-shadow: 0 10px 26px rgba(158, 27, 43, .5);
}
.step h3 { font-size: 1.24rem; margin: 12px 0 10px; }
.step p { font-size: .93rem; color: var(--muted); }

/* ============================================================
   BIG CTA BAND (photo)
   ============================================================ */
.cta-band {
  position: relative;
  padding: 150px 0;
  background-size: cover;
  background-position: center 55%;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6, 6, 8, .92) 0%, rgba(6, 6, 8, .6) 48%, rgba(6, 6, 8, .96) 100%),
    radial-gradient(760px 380px at 50% 46%, rgba(158, 27, 43, .38), transparent 70%);
}
.cta-band .container { position: relative; text-align: center; }
.cta-band h2 { color: #fff; font-size: clamp(2.4rem, 5.6vw, 4.4rem); }
.cta-band .lead { color: #c3c7d0; margin: 18px auto 0; }
.cta-band .lead strong { color: #fff; }
.cta-band .trust-row li { color: #c3c7d0; }

/* ============================================================
   INNER PAGE HERO
   ============================================================ */
.page-hero {
  position: relative;
  padding: 76px 0 66px;
  text-align: center;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  top: -220px; left: 50%;
  transform: translateX(-50%);
  width: 900px; height: 620px;
  background: radial-gradient(ellipse at center, rgba(200, 50, 63, .26), transparent 66%);
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero .lead { margin: 20px auto 0; }
.page-hero.compact { padding: 62px 0 52px; }

/* variant sitting on a photo */
.page-hero.with-photo {
  background-size: cover;
  background-position: center 55%;
}
.page-hero.with-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 6, 8, .86) 0%, rgba(6, 6, 8, .6) 55%, rgba(6, 6, 8, .95) 100%);
}
.page-hero.with-photo::before { z-index: 1; }
.page-hero.with-photo .container { z-index: 2; }
.page-hero.with-photo h1 { color: #fff; }
.page-hero.with-photo .lead { color: #d3d7de; }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.gallery-grid a {
  display: block;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  position: relative;
  cursor: zoom-in;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.gallery-grid a:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.gallery-grid img { width: 100%; height: 300px; object-fit: cover; transition: transform .6s var(--ease); }
.gallery-grid a:hover img { transform: scale(1.07); }
.gallery-grid a::after {
  content: "＋";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 2.4rem;
  color: #fff;
  background: linear-gradient(180deg, rgba(158, 27, 43, .5), rgba(102, 16, 28, .78));
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  opacity: 0;
  transition: opacity .35s ease;
}
.gallery-grid a:hover::after { opacity: 1; }

/* placeholder tile — the client's own shots drop straight in here */
.gallery-grid .slot-soon {
  display: grid;
  place-items: center;
  height: 300px;
  border-radius: var(--radius-sm);
  border: 1.5px dashed rgba(200, 50, 63, .35);
  background: rgba(200, 50, 63, .05);
  text-align: center;
  padding: 26px;
  cursor: default;
}
.gallery-grid .slot-soon:hover { transform: none; box-shadow: var(--shadow); }
.gallery-grid .slot-soon::after { display: none; }
.slot-soon .ss-mark {
  font-family: var(--fd);
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: .18em;
  color: var(--brand-bright);
  text-transform: uppercase;
}
.slot-soon p { font-size: .86rem; color: var(--muted); margin-top: 8px; }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(6, 6, 8, .97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 4vh 4vw;
}
.lightbox.open { display: flex; animation: lb-in .3s var(--ease); }
@keyframes lb-in { from { opacity: 0; } to { opacity: 1; } }
.lightbox img {
  max-width: 92vw;
  max-height: 88vh;
  border-radius: var(--radius-sm);
  box-shadow: 0 30px 100px rgba(0, 0, 0, .8);
  animation: lb-pop .38s var(--ease);
}
@keyframes lb-pop { from { transform: scale(.94); opacity: 0; } to { transform: none; opacity: 1; } }
.lightbox .lb-close, .lightbox .lb-prev, .lightbox .lb-next {
  position: absolute;
  background: rgba(255, 255, 255, .09);
  border: 1px solid rgba(255, 255, 255, .26);
  color: #fff;
  border-radius: 999px;
  width: 52px; height: 52px;
  font-size: 1.3rem;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background .2s ease, transform .2s var(--ease), border-color .2s ease;
}
.lightbox .lb-close:hover, .lightbox .lb-prev:hover, .lightbox .lb-next:hover {
  background: var(--brand);
  border-color: var(--brand);
  transform: scale(1.08);
}
.lb-close { top: 22px; right: 22px; }
.lb-prev { left: 22px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 22px; top: 50%; transform: translateY(-50%); }
.lightbox .lb-prev:hover { transform: translateY(-50%) scale(1.08); }
.lightbox .lb-next:hover { transform: translateY(-50%) scale(1.08); }

/* ============================================================
   PRICING LISTS
   ============================================================ */
.pricing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.price-list { padding: 38px 34px; }
.price-list h3 { margin-bottom: 10px; }
.price-list .desc { color: var(--muted); font-size: .95rem; margin-bottom: 24px; }
.price-list ul { list-style: none; }
.price-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: .98rem;
  transition: padding-left .25s var(--ease), color .25s ease;
}
.price-list li:last-child { border-bottom: none; }
.price-list li:hover { padding-left: 8px; color: var(--ink); }
.price-list li .amount {
  font-family: var(--fd);
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--brand-bright);
  white-space: nowrap;
}

.numbered-services { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.numbered-services > .numbered-card:last-child:nth-child(odd) {
  grid-column: 1 / -1;
  max-width: 580px;
  width: 100%;
  margin-inline: auto;
}
.numbered-card { overflow: hidden; }
.numbered-card .media { height: 266px; overflow: hidden; position: relative; }
.numbered-card .media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.numbered-card:hover .media img { transform: scale(1.06); }
.numbered-card .body { padding: 32px; }
.numbered-card .num {
  font-family: var(--fd);
  font-weight: 600;
  color: var(--brand-bright);
  font-size: 1rem;
  letter-spacing: .16em;
}
.numbered-card h3 { margin: 6px 0 12px; }
.numbered-card p { color: var(--muted); font-size: .95rem; }

/* ============================================================
   SERVICE AREAS
   ============================================================ */
.areas-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.area-card { padding: 34px 30px; display: flex; flex-direction: column; }
.area-card .a-pin {
  width: 46px; height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(200, 50, 63, .16);
  border: 1px solid var(--brand-line);
  margin-bottom: 18px;
}
.area-card .a-pin svg { width: 21px; height: 21px; fill: var(--brand-bright); }
.area-card h3 { font-size: 1.4rem; margin-bottom: 4px; }
.area-card .a-state {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
}
.area-card p { font-size: .92rem; color: var(--muted); flex: 1; }
.area-card .a-list { list-style: none; margin-top: 16px; display: flex; flex-wrap: wrap; gap: 7px; }
.area-card .a-list li {
  font-size: .74rem;
  padding: 5px 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid var(--line);
  color: var(--ink-soft);
}

/* what we need on arrival */
.need-band {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 860px;
  margin-inline: auto;
}
/* three-up variant (the availability band) — a class rather than an inline
   style, so the responsive rules below can actually win */
.need-band.three { grid-template-columns: repeat(3, 1fr); max-width: 960px; }
.need-band.three .need { flex-direction: column; gap: 10px; }
.need {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px 26px;
  border-radius: var(--radius);
  border: 1px solid var(--brand-line);
  background: rgba(200, 50, 63, .07);
}
.need svg { width: 30px; height: 30px; fill: var(--brand-bright); flex-shrink: 0; margin-top: 2px; }
.need h4 { font-family: var(--fb); font-size: .96rem; font-weight: 700; letter-spacing: .02em; text-transform: none; margin-bottom: 5px; color: #fff; }
.need p { font-size: .89rem; color: var(--muted); margin: 0; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list, .faq { max-width: 820px; margin-inline: auto; display: grid; gap: 14px; }
.faq-item {
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: linear-gradient(168deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, .015));
  overflow: hidden;
  transition: border-color .3s ease, box-shadow .3s ease;
}
.faq-item[open] { border-color: var(--brand-line); box-shadow: var(--shadow-md); }
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 21px 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: var(--fd);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .04em;
  font-size: 1.06rem;
  color: var(--ink);
  transition: color .2s ease;
}
.faq-item summary:hover { color: var(--brand-bright); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "＋";
  color: var(--brand-bright);
  font-size: 1.3rem;
  flex-shrink: 0;
  transition: transform .3s var(--ease);
}
.faq-item[open] summary::after { transform: rotate(135deg); }
.faq-item .faq-body {
  padding: 0 26px 24px;
  color: var(--muted);
  font-size: .95rem;
  animation: faq-in .35s var(--ease);
}
@keyframes faq-in { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1020px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .standard-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .areas-grid { grid-template-columns: 1fr; }
}

@media (max-width: 880px) {
  .hero { padding: 44px 0 52px; }
  .hero-grid, .future-grid, .pricing-grid, .numbered-services { grid-template-columns: 1fr; gap: 36px; }
  .hero-copy { max-width: none; padding-left: 20px; }
  .hero-media img { max-height: 430px; }
  .hero-media::after { left: -7px; top: -8px; bottom: -9px; }
  .stats { flex-direction: row; justify-content: space-between; flex-wrap: wrap; gap: 20px; }
  .steps-grid { grid-template-columns: 1fr; gap: 34px; }
  .section { padding: 62px 0; }
  .matrix-body { grid-template-columns: 1fr; gap: 20px; }
  /* two add-on cards side by side can't hold their icon + copy below this */
  .addons-grid { grid-template-columns: 1fr; max-width: 560px; }
  .need-band.three { grid-template-columns: 1fr; max-width: 560px; }
}

/* The matrix is the page's most information-dense block. Below 720px the
   four-column head can't hold, so the tier prices reflow into their own
   row of cards under the service name. */
@media (max-width: 720px) {
  .matrix-head { grid-template-columns: 1fr; gap: 16px; padding: 20px 20px 18px; }
  .matrix-head .m-tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .m-tier {
    padding: 10px 6px;
    border-radius: 10px;
    background: rgba(0, 0, 0, .3);
    border: 1px solid var(--line);
  }
  .m-tier .t-amt { font-size: 1.15rem; }
  .matrix-body { padding: 22px 20px 24px; }
  .matrix-foot { padding: 16px 20px; }
}

/* ---------- mobile legibility floor ----------
   Several labels sit at 9–10px on desktop, which is fine alongside a big price
   but genuinely hard to read on a phone. These are the ones that carry meaning
   (which size tier a price belongs to, which column is which), so they get
   lifted to ~11.5px on small screens rather than shrunk with everything else. */
@media (max-width: 620px) {
  .m-tier .t-lbl { font-size: .72rem; }
  .matrix-head h3 small { font-size: .7rem; }
  .m-flag { font-size: .7rem; }
  .ratecard thead th { font-size: .72rem; }
  .ratecard tbody th small { font-size: .74rem; }
  .area-card .a-state { font-size: .72rem; }
  .hero-price .hp-lbl { font-size: .72rem; }
  .hero-badge span:first-child { font-size: .7rem; }
  .stat .label { font-size: .72rem; letter-spacing: .2em; }
}

/* the placeholder tiles carry real links — give them a proper tap area */
.slot-soon p a {
  display: inline-block;
  padding-block: 10px;
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 620px) {
  .section { padding: 50px 0; }
  .section-head { margin-bottom: 30px; }
  .page-hero, .page-hero.compact { padding: 50px 0 44px; }
  .services-grid, .standard-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-grid img { height: 250px; }
  .cta-band { padding: 96px 0; }
  .future-media { grid-template-columns: 1fr; }
  .need-band { grid-template-columns: 1fr; }
  .price-list { padding: 30px 24px; }
  .numbered-card .body { padding: 26px 22px; }
  .faq-item summary { padding: 17px 20px; font-size: .98rem; }
  .faq-item .faq-body { padding: 0 20px 20px; }
  .proof-strip { grid-template-columns: repeat(3, 1fr); gap: 9px; }
  .lightbox .lb-close, .lightbox .lb-prev, .lightbox .lb-next { width: 44px; height: 44px; }
  .lb-prev { left: 10px; }
  .lb-next { right: 10px; }
}
