/* ==========================================================================
   PAGES — Hale Custom Signs
   Page- and section-specific composition. Components live in components.css;
   this file arranges them and owns the one-off layouts.
   ========================================================================== */

/* ==========================================================================
   HEADER EXTRAS
   ========================================================================== */
.header__actions {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  flex: none;
}
.header__cta {
  display: none;
}
@media (min-width: 560px) {
  .header__cta {
    display: inline-flex;
  }
}
@media (max-width: 900px) {
  .topbar__hide-sm {
    display: none;
  }
}
@media (max-width: 560px) {
  .topbar {
    font-size: 0.72rem;
  }
  .topbar__group {
    gap: var(--sp-3);
  }
}

.link-inline {
  color: var(--gold-400);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(248, 192, 8, 0.4);
  transition: color var(--d-fast) var(--e-out);
}
.link-inline:hover {
  color: var(--gold-300);
  text-decoration-color: var(--gold-400);
}

/* ==========================================================================
   HOME HERO
   The logo's own composition — gold script over block letters — at page
   scale, over real gold-leaf work. Four parallax planes.
   ========================================================================== */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: clamp(620px, 92svh, 1000px);
  padding-block: var(--sp-9) var(--sp-8);
  overflow: hidden;
  isolation: isolate;
}
.hero__layers {
  position: absolute;
  inset: -12% 0;
  z-index: -1;
  pointer-events: none;
}
.hero__media {
  position: absolute;
  inset: 0;
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
  filter: saturate(0.85) brightness(0.5) contrast(1.05);
}
/* Scrim: the photo must never fight the type. */
.hero__scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      100deg,
      rgba(6, 4, 13, 0.96) 0%,
      rgba(10, 6, 20, 0.88) 38%,
      rgba(36, 21, 80, 0.62) 70%,
      rgba(6, 4, 13, 0.8) 100%
    ),
    linear-gradient(to top, var(--ink-900) 2%, transparent 40%);
}
.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.5;
}
.hero__orb--purple {
  width: min(46vw, 620px);
  aspect-ratio: 1;
  top: -10%;
  left: -8%;
  background: radial-gradient(circle, var(--purple-400) 0%, transparent 68%);
}
.hero__orb--crimson {
  width: min(38vw, 500px);
  aspect-ratio: 1;
  bottom: -12%;
  right: -6%;
  background: radial-gradient(circle, var(--crimson-500) 0%, transparent 66%);
  opacity: 0.34;
}
.hero__grid {
  position: absolute;
  inset: 0;
  opacity: 0.5;
}

.hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
}
.hero__title {
  display: flex;
  flex-direction: column;
  margin-bottom: var(--sp-5);
}
.hero__script {
  font-size: clamp(1.9rem, 1rem + 4.4vw, 4.6rem);
  line-height: 1;
  margin-bottom: -0.12em;
  margin-left: 0.06em;
  align-self: flex-start;
  /* sits over the block letters exactly as "Hale" sits over "SIGNS" */
  position: relative;
  z-index: 2;
}
.hero__mega {
  font-family: var(--font-display);
  font-size: clamp(2.9rem, 0.4rem + 11.2vw, 9.4rem);
  line-height: 0.86;
  letter-spacing: var(--tr-mega);
  text-transform: uppercase;
  color: var(--gold-100);
  max-width: 15ch;
}
.hero__lines {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  margin-bottom: var(--sp-5);
}
.hero__lines-txt {
  font-family: var(--font-body);
  font-size: clamp(0.62rem, 0.5rem + 0.4vw, 0.78rem);
  font-weight: 600;
  letter-spacing: var(--tr-eyebrow);
  text-transform: uppercase;
  color: var(--text-low);
  white-space: nowrap;
}
@media (max-width: 640px) {
  .hero__lines-txt {
    white-space: normal;
    letter-spacing: 0.14em;
  }
}
.hero__lede {
  max-width: 56ch;
  margin-bottom: var(--sp-6);
}
.hero__btns {
  display: flex;
  gap: var(--sp-4);
  flex-wrap: wrap;
  margin-bottom: var(--sp-6);
}
.hero__trust {
  /* flex (not inline-flex) + fit-content: owns its own line in the
     eyebrow -> badge -> title stack instead of floating beside the eyebrow */
  display: flex;
  width: fit-content;
  align-items: center;
  flex-wrap: wrap; /* the 51-years text wraps on narrow phones instead of overflowing */
  gap: var(--sp-3);
  margin-bottom: var(--sp-5); /* sits above the title now */
  padding: var(--sp-3) var(--sp-4);
  background: var(--glass-bg);
  -webkit-backdrop-filter: blur(var(--glass-blur));
  backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  font-size: 0.8rem;
  color: var(--text-low);
  box-shadow: var(--sh-1);
}
.hero__trust svg {
  width: 16px;
  height: 16px;
  color: var(--gold-500);
  flex: none;
}
.hero__trust b {
  color: var(--gold-300);
}
/* BBB badge — 32px native asset; never scale it up or it blurs */
.hero__trust img {
  width: 30px;
  height: 30px;
  flex: none;
  border-radius: var(--r-xs);
}
a.hero__trust {
  transition:
    border-color var(--d-base) var(--e-out),
    box-shadow var(--d-base) var(--e-out),
    color var(--d-base) var(--e-out),
    transform var(--d-base) var(--e-out);
}
a.hero__trust:hover {
  border-color: var(--gold-500);
  color: var(--text-mid);
  box-shadow:
    var(--sh-2),
    0 0 22px rgba(248, 192, 8, 0.18);
  transform: translateY(-2px);
}

.hero__cue {
  position: absolute;
  left: 50%;
  bottom: var(--sp-5);
  z-index: 2;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-2);
  color: var(--text-low);
  transition: color var(--d-fast) var(--e-out);
}
.hero__cue:hover {
  color: var(--gold-400);
}
.hero__cue-line {
  width: 1px;
  height: 42px;
  background: linear-gradient(var(--gold-500), transparent);
  position: relative;
  overflow: hidden;
}
.hero__cue-line::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gold-300);
  animation: cueDrop 2.2s var(--e-in-out) infinite;
  box-shadow: var(--glow-gold);
}
@keyframes cueDrop {
  0% {
    transform: translateY(-100%);
  }
  60%,
  100% {
    transform: translateY(100%);
  }
}
.hero__cue-txt {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}
@media (max-width: 640px) {
  .hero__cue {
    display: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero__cue-line::after {
    animation: none;
    transform: translateY(0);
    height: 100%;
    opacity: 0.4;
  }
}

/* ==========================================================================
   MARQUEE BAND
   ========================================================================== */
.marquee--band {
  padding-block: var(--sp-4);
  border-block: 1px solid var(--border);
  background: linear-gradient(
    90deg,
    var(--ink-950),
    var(--purple-800) 50%,
    var(--ink-950)
  );
  position: relative;
  z-index: var(--z-base);
}

/* ==========================================================================
   SECTION HEADS
   ========================================================================== */
.sec-head {
  display: grid;
  gap: var(--sp-5);
  align-items: end;
  margin-bottom: var(--sp-7);
}
@media (min-width: 900px) {
  .sec-head {
    grid-template-columns: 1.15fr 1fr;
    gap: var(--sp-7);
  }
}
.sec-head--center {
  grid-template-columns: 1fr !important;
  justify-items: center;
  text-align: center;
}

/* ==========================================================================
   STATS
   ========================================================================== */
.stats-sec {
  border-block: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(36, 24, 72, 0.34), transparent);
}
.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-4);
}
@media (min-width: 860px) {
  .stats {
    grid-template-columns: repeat(4, 1fr);
  }
}
/* The vertical divider is wrong at the row break on 2-col mobile. */
@media (max-width: 859px) {
  .stat:nth-child(odd)::before {
    display: none;
  }
}

/* ==========================================================================
   SERVICE GRID (home)
   ========================================================================== */
.svc-grid .card__body {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}
.card__icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: var(--sp-2);
  border: 1px solid var(--border-strong);
  border-radius: var(--r-sm);
  background: rgba(6, 4, 13, 0.6);
  color: var(--gold-500);
  transition:
    background var(--d-base) var(--e-out),
    color var(--d-base) var(--e-out),
    box-shadow var(--d-base) var(--e-out),
    transform var(--d-base) var(--e-spring);
}
.card__icon svg {
  width: 20px;
  height: 20px;
}
.card:hover .card__icon {
  background: var(--grad-gold);
  color: var(--ink-950);
  box-shadow: var(--glow-gold);
  transform: translateY(-2px) rotate(-4deg);
}
.card__link {
  margin-top: var(--sp-3);
  font-size: 0.86rem;
}

/* ==========================================================================
   FEATURED WORK COLLAGE
   Deliberately asymmetric — a grid of equal cards is the thing we are
   avoiding. Each tile parallaxes at its own rate.
   ========================================================================== */
.work-sec {
  position: relative;
}
.work-collage {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-4);
}
@media (min-width: 900px) {
  .work-collage {
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 90px;
    gap: var(--sp-5);
  }
  .work-tile--1 {
    grid-column: 1 / span 5;
    grid-row: 1 / span 4;
  }
  .work-tile--2 {
    grid-column: 6 / span 4;
    grid-row: 1 / span 3;
    margin-top: var(--sp-7);
  }
  .work-tile--3 {
    grid-column: 10 / span 3;
    grid-row: 1 / span 3;
  }
  .work-tile--4 {
    grid-column: 1 / span 3;
    grid-row: 5 / span 3;
  }
  .work-tile--5 {
    grid-column: 4 / span 5;
    grid-row: 4 / span 4;
    margin-top: var(--sp-5);
  }
  .work-tile--6 {
    grid-column: 9 / span 4;
    grid-row: 4 / span 4;
  }
}
.work-tile {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-3);
  background: var(--ink-800);
  cursor: pointer;
}
.work-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform var(--d-slower) var(--e-out),
    filter var(--d-slower) var(--e-out);
}
.work-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6, 4, 13, 0.9), transparent 55%);
  transition: opacity var(--d-slow) var(--e-out);
}
.work-tile:hover img {
  transform: scale(1.06);
  filter: saturate(1.15);
}
.work-tile:hover::after {
  opacity: 0.6;
}
.work-tile figcaption {
  position: absolute;
  left: var(--sp-4);
  bottom: var(--sp-4);
  z-index: 2;
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: var(--tr-label);
  text-transform: uppercase;
  color: var(--text-hi);
  transition:
    color var(--d-base) var(--e-out),
    transform var(--d-base) var(--e-out);
}
.work-tile:hover figcaption {
  color: var(--gold-300);
  transform: translateX(4px);
}
@media (max-width: 899px) {
  .work-tile {
    aspect-ratio: 4 / 3;
  }
  .work-tile--1 {
    grid-column: span 2;
  }
}

/* ==========================================================================
   REVIEWS
   ========================================================================== */
.reviews-sec .eyebrow svg {
  width: 14px;
  height: 14px;
}
/* The placeholder warning. Loud on purpose: fake reviews must never ship
   unnoticed on a real business's site. */
.reviews__notice {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  padding: var(--sp-4) var(--sp-5);
  margin-bottom: var(--sp-5);
  border: 1px solid var(--crimson-400);
  border-left: 4px solid var(--crimson-500);
  border-radius: var(--r-sm);
  background: rgba(232, 24, 48, 0.1);
  font-size: 0.82rem;
  color: var(--text-mid);
}
.reviews__notice strong {
  color: var(--crimson-300);
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: var(--tr-label);
  text-transform: uppercase;
}
.reviews__notice code {
  font-family: var(--font-mono);
  font-size: 0.76rem;
  padding: 1px 5px;
  background: rgba(6, 4, 13, 0.6);
  border-radius: var(--r-xs);
  color: var(--gold-300);
}
/* Sits in flow at the end of .review-card__top, where the Google badge would
   be on a real review — the two are mutually exclusive by design. */
.review-card__sample {
  margin-left: auto;
  padding: 3px 8px;
  font-family: var(--font-mono);
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-950);
  background: var(--crimson-500);
  border-radius: var(--r-xs);
}

/* ==========================================================================
   PROCESS
   ========================================================================== */
.process-sec {
  position: relative;
  background: linear-gradient(180deg, transparent, rgba(36, 24, 72, 0.3), transparent);
}
.steps {
  display: grid;
  gap: var(--sp-5);
  list-style: none;
  counter-reset: step;
}
@media (min-width: 780px) {
  .steps {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--sp-6);
  }
}
@media (min-width: 1180px) {
  .steps {
    grid-template-columns: repeat(4, 1fr);
  }
}
.step {
  position: relative;
  padding-top: var(--sp-5);
  border-top: 1px solid var(--border-strong);
}
/* The gold node that marks each step on the rule */
.step::before {
  content: "";
  position: absolute;
  top: -4px;
  left: 0;
  width: 7px;
  height: 7px;
  background: var(--gold-500);
  transform: rotate(45deg);
  box-shadow: var(--glow-gold);
}
/* Real bench photo per step — desaturated until hover, so the row reads as
   type first and the image rewards attention. */
.step__media {
  position: relative;
  margin-bottom: var(--sp-4);
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--sh-1);
  background: var(--ink-800);
}
.step__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  filter: saturate(0.3) brightness(0.72);
  transition:
    filter var(--d-slower) var(--e-out),
    transform var(--d-slower) var(--e-out);
}
.step:hover .step__media img {
  filter: saturate(1.05) brightness(0.95);
  transform: scale(1.05);
}
.step__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6, 4, 13, 0.7), transparent 60%);
  pointer-events: none;
}

.step__n {
  display: block;
  font-family: var(--font-display);
  font-size: 2.6rem;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px var(--border-strong);
  margin-bottom: var(--sp-3);
  transition: -webkit-text-stroke-color var(--d-slow) var(--e-out);
}
.step:hover .step__n {
  -webkit-text-stroke-color: var(--gold-500);
}
.step__body h3 {
  color: var(--text-hi);
  margin-bottom: var(--sp-2);
}

/* ==========================================================================
   ABOUT TEASER
   ========================================================================== */
.about-tease__grid {
  display: grid;
  gap: var(--sp-7);
  align-items: center;
}
@media (min-width: 940px) {
  .about-tease__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-8);
  }
}
.about-tease__media {
  position: relative;
}
.about-tease__frame {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border-strong);
  box-shadow: var(--sh-4);
}
.about-tease__frame img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}
.about-tease__badge {
  position: absolute;
  right: var(--sp-4);
  bottom: var(--sp-4);
  z-index: 2;
  display: grid;
  place-items: center;
  padding: var(--sp-4);
  min-width: 110px;
  background: var(--glass-bg-strong);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border: 1px solid var(--gold-500);
  border-radius: var(--r-md);
  box-shadow:
    var(--sh-3),
    0 0 30px rgba(248, 192, 8, 0.24);
  transform: translateZ(50px);
}
.about-tease__badge b {
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1;
  color: var(--gold-400);
  text-shadow: var(--glow-text-gold);
}
.about-tease__badge span {
  font-size: 0.66rem;
  letter-spacing: var(--tr-label);
  text-transform: uppercase;
  color: var(--text-low);
}
.about-tease__orb {
  position: absolute;
  z-index: -1;
  inset: -14% -10% auto auto;
  width: 62%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, var(--purple-400), transparent 66%);
  filter: blur(60px);
  opacity: 0.5;
}
.about-tease__script {
  font-size: 0.66em;
}
.brand-strip {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  margin-block: var(--sp-5);
}
.brand-chip {
  padding: 0.42em 0.9em;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-low);
  border: 1px solid var(--border);
  border-radius: var(--r-xs);
  background: rgba(248, 248, 248, 0.03);
  transition:
    color var(--d-fast) var(--e-out),
    border-color var(--d-fast) var(--e-out);
}
.brand-chip:hover {
  color: var(--gold-300);
  border-color: var(--gold-500);
}

/* ==========================================================================
   FORM SECTION
   ========================================================================== */
.form-sec {
  position: relative;
}
.form-sec__grid {
  display: grid;
  gap: var(--sp-7);
  align-items: start;
}
@media (min-width: 980px) {
  .form-sec__grid {
    grid-template-columns: 1fr 1.05fr;
    gap: var(--sp-8);
  }
}
.form-sec__card {
  padding: clamp(1.25rem, 0.6rem + 2.4vw, 2.5rem);
  background: var(--glass-bg);
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(150%);
  backdrop-filter: blur(var(--glass-blur)) saturate(150%);
  border: 1px solid var(--border-strong);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-4);
  position: relative;
  overflow: hidden;
}
/* Illuminated top edge on the form card */
.form-sec__card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-500), transparent);
  box-shadow: 0 0 12px rgba(248, 192, 8, 0.5);
}
.form__row {
  display: grid;
  gap: var(--sp-5);
}
@media (min-width: 560px) {
  .form__row {
    grid-template-columns: 1fr 1fr;
  }
}
.form-sec__call {
  margin-top: var(--sp-6);
  padding-top: var(--sp-5);
  border-top: 1px solid var(--border);
}

.tick-list {
  display: grid;
  gap: var(--sp-3);
  list-style: none;
  margin-block: var(--sp-5);
}
.tick-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  font-size: var(--fs-body-sm);
  color: var(--text-mid);
  line-height: 1.6;
}
.tick-list svg {
  width: 16px;
  height: 16px;
  flex: none;
  margin-top: 5px;
  color: var(--gold-500);
}
.tick-list b {
  color: var(--text-hi);
}

/* ==========================================================================
   CTA BAND
   Treated as an illuminated signage moment, never a plain bar.
   ========================================================================== */
.cta-band {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border-block: 1px solid var(--border-strong);
  background: linear-gradient(180deg, var(--ink-950), var(--purple-800) 55%, var(--ink-950));
}
.cta-band__glow {
  position: absolute;
  z-index: -1;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(120%, 1100px);
  aspect-ratio: 2 / 1;
  background: radial-gradient(
    ellipse at center,
    rgba(248, 192, 8, 0.2) 0%,
    rgba(122, 84, 224, 0.16) 40%,
    transparent 70%
  );
  filter: blur(50px);
}
.cta-band__grid {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(248, 192, 8, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(248, 192, 8, 0.06) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: radial-gradient(70% 70% at 50% 50%, #000, transparent 75%);
  -webkit-mask-image: radial-gradient(70% 70% at 50% 50%, #000, transparent 75%);
}
.cta-band__inner {
  display: grid;
  justify-items: center;
  gap: var(--sp-4);
  text-align: center;
}
.cta-band__inner .h2 {
  max-width: 16ch;
}
.cta-band__btns {
  display: flex;
  gap: var(--sp-4);
  flex-wrap: wrap;
  justify-content: center;
  margin-top: var(--sp-3);
}

/* ==========================================================================
   PAGE HERO (inner pages)
   ========================================================================== */
.phero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: clamp(440px, 62svh, 700px);
  padding-block: var(--sp-9) var(--sp-8);
  overflow: hidden;
  isolation: isolate;
}
.phero__media {
  position: absolute;
  inset: -10% 0;
  z-index: -2;
}
.phero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.8) brightness(0.42);
}
.phero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(
      100deg,
      rgba(6, 4, 13, 0.95) 0%,
      rgba(10, 6, 20, 0.82) 45%,
      rgba(36, 21, 80, 0.5) 100%
    ),
    linear-gradient(to top, var(--ink-900) 1%, transparent 45%);
}
.phero__glow {
  position: absolute;
  z-index: -1;
  left: -10%;
  bottom: -40%;
  width: min(60vw, 700px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, var(--purple-400), transparent 65%);
  filter: blur(70px);
  opacity: 0.4;
}
.phero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
}
.phero__inner .crumbs {
  margin-bottom: var(--sp-5);
}
.phero__inner .h1 {
  max-width: 18ch;
  margin-bottom: var(--sp-5);
}
.phero__inner .lede {
  max-width: 60ch;
}
.phero__rule {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--gold-500) 30%,
    var(--crimson-500) 60%,
    transparent
  );
  opacity: 0.5;
}

/* ==========================================================================
   TIMELINE (about)
   ========================================================================== */
.tl {
  list-style: none;
  position: relative;
  padding-left: var(--sp-6);
}
.tl::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: linear-gradient(
    var(--gold-500),
    var(--purple-400) 50%,
    transparent
  );
}
.tl__item {
  position: relative;
  padding-bottom: var(--sp-7);
}
.tl__item:last-child {
  padding-bottom: 0;
}
.tl__item::before {
  content: "";
  position: absolute;
  left: calc(var(--sp-6) * -1 + 1px);
  top: 9px;
  width: 9px;
  height: 9px;
  background: var(--ink-900);
  border: 1px solid var(--gold-500);
  transform: rotate(45deg);
  transition:
    background var(--d-base) var(--e-out),
    box-shadow var(--d-base) var(--e-out);
}
.tl__item:hover::before {
  background: var(--gold-500);
  box-shadow: var(--glow-gold);
}
.tl__year {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: var(--gold-400);
  margin-bottom: var(--sp-2);
}
.tl__body h3 {
  color: var(--text-hi);
  margin-bottom: var(--sp-2);
}

/* ==========================================================================
   VALUES
   ========================================================================== */
.value {
  position: relative;
  padding: var(--sp-5);
  background: linear-gradient(
    165deg,
    rgba(36, 24, 72, 0.55) 0%,
    rgba(14, 9, 32, 0.7) 100%
  );
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-1);
  transition:
    transform var(--d-slow) var(--e-out),
    border-color var(--d-slow) var(--e-out),
    box-shadow var(--d-slow) var(--e-out);
}
.value:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
  box-shadow:
    var(--sh-3),
    0 0 30px rgba(122, 84, 224, 0.18);
}
.value__icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: var(--sp-4);
  border: 1px solid var(--border-strong);
  border-radius: var(--r-sm);
  background: rgba(6, 4, 13, 0.5);
  color: var(--gold-500);
  transition:
    background var(--d-base) var(--e-out),
    color var(--d-base) var(--e-out),
    box-shadow var(--d-base) var(--e-out);
}
.value__icon svg {
  width: 21px;
  height: 21px;
}
.value:hover .value__icon {
  background: var(--grad-gold);
  color: var(--ink-950);
  box-shadow: var(--glow-gold);
}
.value h2,
.value h3 {
  color: var(--text-hi);
  margin-bottom: var(--sp-3);
}

/* ==========================================================================
   SHOP SECTION (about)
   ========================================================================== */
.shop-sec__grid {
  display: grid;
  gap: var(--sp-7);
  align-items: center;
}
@media (min-width: 940px) {
  .shop-sec__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-8);
  }
}
.shop-sec__frame {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border-strong);
  box-shadow: var(--sh-4);
}
.shop-sec__frame img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}
.shop-sec__facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-4);
  margin-top: var(--sp-6);
  padding-top: var(--sp-5);
  border-top: 1px solid var(--border);
}
.shop-sec__facts b {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold-400);
  line-height: 1.1;
}
.shop-sec__facts span {
  font-size: 0.7rem;
  letter-spacing: var(--tr-label);
  text-transform: uppercase;
  color: var(--text-low);
}

/* ==========================================================================
   SERVICE ROWS (services hub)
   ========================================================================== */
.svc-rows {
  display: grid;
  gap: var(--sp-10);
}
.svc-row {
  display: grid;
  gap: var(--sp-6);
  align-items: center;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
  width: 100%;
}
@media (min-width: 960px) {
  .svc-row {
    grid-template-columns: 1.05fr 1fr;
    gap: var(--sp-8);
  }
  .svc-row--alt .svc-row__media {
    order: 2;
  }
}
.svc-row__main {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border-strong);
  box-shadow: var(--sh-4);
}
.svc-row__main img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform var(--d-slower) var(--e-out);
}
.svc-row__media:hover .svc-row__main img {
  transform: scale(1.04);
}
.svc-row__thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-3);
  margin-top: var(--sp-3);
}
.svc-row__thumbs img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--r-sm);
  border: 1px solid var(--border);
  opacity: 0.62;
  transition:
    opacity var(--d-base) var(--e-out),
    transform var(--d-base) var(--e-out),
    border-color var(--d-base) var(--e-out);
}
.svc-row__thumbs img:hover {
  opacity: 1;
  transform: translateY(-3px);
  border-color: var(--gold-500);
}
.svc-row__n {
  font-family: var(--font-mono);
  color: var(--text-low);
  margin-right: var(--sp-2);
}
.svc-row__foot {
  display: flex;
  align-items: center;
  gap: var(--sp-5);
  flex-wrap: wrap;
  margin-top: var(--sp-5);
}
.svc-row__body .tick-list li {
  align-items: flex-start;
}

/* ==========================================================================
   FAQ
   ========================================================================== */
.faqs {
  display: grid;
  gap: var(--sp-3);
}
.faq {
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  background: rgba(20, 12, 40, 0.5);
  overflow: hidden;
  transition:
    border-color var(--d-base) var(--e-out),
    background var(--d-base) var(--e-out);
}
.faq[open] {
  border-color: var(--border-strong);
  background: rgba(36, 24, 72, 0.6);
}
.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  padding: var(--sp-4) var(--sp-5);
  min-height: 60px;
  cursor: pointer;
  list-style: none;
  font-family: var(--font-display);
  font-size: 1.18rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-hi);
  transition: color var(--d-fast) var(--e-out);
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq summary:hover {
  color: var(--gold-300);
}
/* Plus -> minus */
.faq__mark {
  position: relative;
  width: 14px;
  height: 14px;
  flex: none;
}
.faq__mark::before,
.faq__mark::after {
  content: "";
  position: absolute;
  inset: 50% 0 auto 0;
  height: 2px;
  background: var(--gold-500);
  transition: transform var(--d-base) var(--e-out);
}
.faq__mark::after {
  transform: rotate(90deg);
}
.faq[open] .faq__mark::after {
  transform: rotate(0);
}
.faq__body {
  padding: 0 var(--sp-5) var(--sp-5);
  color: var(--text-mid);
  font-size: var(--fs-body-sm);
  line-height: 1.75;
  max-width: 68ch;
}

/* ==========================================================================
   MINI GRID (service pages)
   ========================================================================== */
.mini-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 210px), 1fr));
  gap: var(--sp-4);
}
.mini-tile {
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--sh-1);
  background: var(--ink-800);
  transition:
    transform var(--d-slow) var(--e-out),
    box-shadow var(--d-slow) var(--e-out),
    border-color var(--d-slow) var(--e-out);
}
.mini-tile img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform var(--d-slower) var(--e-out);
}
.mini-tile:hover {
  transform: translateY(-4px);
  border-color: var(--gold-500);
  box-shadow:
    var(--sh-3),
    0 0 26px rgba(248, 192, 8, 0.18);
}
.mini-tile:hover img {
  transform: scale(1.07);
}
.mini-tile figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: var(--sp-4) var(--sp-3) var(--sp-3);
  font-size: 0.72rem;
  color: var(--text-mid);
  background: linear-gradient(to top, rgba(6, 4, 13, 0.94), transparent);
  opacity: 0;
  transform: translateY(6px);
  transition:
    opacity var(--d-base) var(--e-out),
    transform var(--d-base) var(--e-out);
}
.mini-tile:hover figcaption {
  opacity: 1;
  transform: none;
}

/* ==========================================================================
   GALLERY (portfolio)
   ========================================================================== */
.gal-bar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--sp-4);
  flex-wrap: wrap;
  margin-bottom: var(--sp-6);
}
.gal-bar .chips {
  margin-bottom: 0;
  flex: 1;
}
.gal-bar__count {
  font-family: var(--font-mono);
  white-space: nowrap;
  padding-top: var(--sp-3);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 260px), 1fr));
  gap: var(--sp-4);
}
.gallery-item {
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--ink-800);
  box-shadow: var(--sh-1);
  transition:
    transform var(--d-slow) var(--e-out),
    box-shadow var(--d-slow) var(--e-out),
    border-color var(--d-slow) var(--e-out);
}
.gallery-item:hover {
  transform: translateY(-5px);
  border-color: var(--border-strong);
  box-shadow:
    var(--sh-3),
    0 0 30px rgba(122, 84, 224, 0.2);
}
.gallery-item__btn {
  display: block;
  width: 100%;
  position: relative;
  padding: 0;
  background: none;
  border: 0;
  cursor: pointer;
}
.gallery-item__btn img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition:
    transform var(--d-slower) var(--e-out),
    filter var(--d-slower) var(--e-out);
}
.gallery-item:hover .gallery-item__btn img {
  transform: scale(1.06);
  filter: saturate(1.12) brightness(1.04);
}
.gallery-item__hover {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(6, 4, 13, 0.5);
  opacity: 0;
  transition: opacity var(--d-base) var(--e-out);
}
.gallery-item:hover .gallery-item__hover,
.gallery-item__btn:focus-visible .gallery-item__hover {
  opacity: 1;
}
.gallery-item__zoom {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--grad-gold);
  color: var(--ink-950);
  box-shadow: var(--glow-gold);
  transform: scale(0.7);
  transition: transform var(--d-base) var(--e-spring);
}
.gallery-item__zoom svg {
  width: 19px;
  height: 19px;
}
.gallery-item:hover .gallery-item__zoom {
  transform: scale(1);
}
.gallery-item figcaption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-3);
  padding: var(--sp-3) var(--sp-4);
  border-top: 1px solid var(--border);
}
.gallery-item__cap {
  font-size: 0.76rem;
  color: var(--text-mid);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.gallery-item__tag {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--purple-200);
  white-space: nowrap;
  flex: none;
}

/* ==========================================================================
   CONTACT
   ========================================================================== */
.contact-sec__grid {
  display: grid;
  gap: var(--sp-7);
  align-items: start;
}
@media (min-width: 980px) {
  .contact-sec__grid {
    grid-template-columns: 1fr 1.05fr;
    gap: var(--sp-8);
  }
}
.contact-cards {
  display: grid;
  gap: var(--sp-3);
  margin-top: var(--sp-6);
}
.contact-card {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  padding: var(--sp-4);
  min-height: 76px;
  background: rgba(20, 12, 40, 0.5);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  transition:
    transform var(--d-base) var(--e-out),
    border-color var(--d-base) var(--e-out),
    background var(--d-base) var(--e-out),
    box-shadow var(--d-base) var(--e-out);
}
a.contact-card:hover {
  transform: translateX(5px);
  border-color: var(--gold-500);
  background: rgba(36, 24, 72, 0.66);
  box-shadow: 0 0 26px rgba(248, 192, 8, 0.14);
}
.contact-card--static {
  cursor: default;
}
.contact-card__icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  flex: none;
  border-radius: var(--r-sm);
  border: 1px solid var(--border-strong);
  background: rgba(6, 4, 13, 0.6);
  color: var(--gold-500);
  transition:
    background var(--d-base) var(--e-out),
    color var(--d-base) var(--e-out);
}
.contact-card__icon svg {
  width: 19px;
  height: 19px;
}
a.contact-card:hover .contact-card__icon {
  background: var(--grad-gold);
  color: var(--ink-950);
}
.contact-card__body {
  flex: 1;
  min-width: 0;
}
.contact-card__body b {
  display: block;
  font-size: 0.98rem;
  color: var(--text-hi);
  overflow: hidden;
  text-overflow: ellipsis;
}
.contact-card__body span {
  font-size: 0.76rem;
  color: var(--text-low);
}
.contact-card__go {
  width: 16px;
  height: 16px;
  color: var(--text-low);
  flex: none;
  transition:
    transform var(--d-base) var(--e-out),
    color var(--d-base) var(--e-out);
}
a.contact-card:hover .contact-card__go {
  color: var(--gold-400);
  transform: translateX(4px);
}
.contact-sec__social {
  margin-top: var(--sp-6);
  padding-top: var(--sp-5);
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  flex-wrap: wrap;
}

.map-frame {
  position: relative;
  border: 1px solid var(--border-strong);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-3);
}
.map-frame iframe {
  display: block;
  width: 100%;
  height: clamp(280px, 40vw, 460px);
  /* The OSM tile layer is bright white; tone it into the dark palette. */
  filter: invert(0.9) hue-rotate(180deg) saturate(0.55) contrast(0.9);
}
.map-frame__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  flex-wrap: wrap;
  padding: var(--sp-4) var(--sp-5);
  background: var(--glass-bg-strong);
  border-top: 1px solid var(--border);
  font-size: 0.82rem;
  color: var(--text-mid);
}
.map-frame__bar > span {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
}
.map-frame__bar svg {
  width: 15px;
  height: 15px;
  color: var(--gold-500);
}

/* ==========================================================================
   UTILITY PAGES (thank-you / 404)
   ========================================================================== */
.utility-sec {
  position: relative;
  display: grid;
  place-items: center;
  min-height: clamp(600px, 78svh, 900px);
  overflow: hidden;
  isolation: isolate;
}
.utility-sec__glow {
  position: absolute;
  z-index: -1;
  left: 50%;
  top: 40%;
  transform: translate(-50%, -50%);
  width: min(110%, 900px);
  aspect-ratio: 1;
  background: radial-gradient(
    circle,
    rgba(122, 84, 224, 0.34) 0%,
    rgba(232, 24, 48, 0.12) 42%,
    transparent 68%
  );
  filter: blur(70px);
}
.utility-sec__mark {
  display: grid;
  place-items: center;
  width: 78px;
  height: 78px;
  margin: 0 auto var(--sp-5);
  border: 2px solid var(--gold-500);
  border-radius: 50%;
  color: var(--gold-400);
  box-shadow: var(--glow-gold);
}
.utility-sec__mark svg {
  width: 34px;
  height: 34px;
}
.utility-sec__code {
  line-height: 0.9;
  margin-bottom: var(--sp-3);
}
.next-steps {
  display: grid;
  gap: var(--sp-4);
  list-style: none;
  max-width: 46ch;
  margin: var(--sp-7) auto;
  text-align: left;
}
.next-steps li {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-4);
  padding: var(--sp-4);
  background: rgba(20, 12, 40, 0.5);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
}
.next-steps li > span {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  flex: none;
  border-radius: 50%;
  background: var(--grad-gold);
  color: var(--ink-950);
  font-family: var(--font-display);
  font-size: 0.95rem;
}
.next-steps b {
  display: block;
  color: var(--text-hi);
  margin-bottom: 2px;
}

/* 404 service chips are links, not buttons — keep the target size */
.chips a.chip {
  text-decoration: none;
}

/* ==========================================================================
   TRUST GRID (reviews page)
   ========================================================================== */
.trust-grid .value {
  text-align: left;
}

/* ==========================================================================
   PRINT — someone will print the contact page
   ========================================================================== */
@media print {
  .topbar,
  .header,
  .mobile-menu,
  .sticky-bar,
  .hero__cue,
  .cta-band,
  .marquee,
  .cursor,
  .cursor__dot,
  .map-frame iframe {
    display: none !important;
  }
  body {
    background: #fff;
    color: #000;
  }
  body::before {
    display: none;
  }
  .h1,
  .h2,
  .h3,
  .h4,
  .display {
    color: #000 !important;
    text-shadow: none !important;
  }
  .gold-leaf,
  .neon,
  .dimensional {
    color: #000 !important;
    -webkit-text-fill-color: #000 !important;
    text-shadow: none !important;
    filter: none !important;
  }
  a {
    color: #000;
    text-decoration: underline;
  }
  [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
  }
}
