/* ============================================================
   SJ AUTOWERKX — styles
   Dark premium garage aesthetic. Animation language borrowed
   from the Wet Cactus build: levitate, drift, reveal, ticker.
   ============================================================ */

:root {
  --bg: #0C0D0F;
  --panel: #101216;
  --card: #16191F;
  --line: #262B33;
  --text: #F2F0EA;
  --muted: #A0A5AD;
  --amber: #F5A623;
  --amber-deep: #E8820C;
  --amber-grad: linear-gradient(100deg, #F5A623, #F97316);
  --font-display: "Bebas Neue", "Arial Narrow", sans-serif;
  --font-body: "Barlow", "Helvetica Neue", sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, monospace;
  --wrap: 1160px;
  --ease-out: cubic-bezier(.16, 1, .3, 1);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: var(--amber); color: #171308; }

a { color: inherit; text-decoration: none; }
img, svg { display: block; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
.muted { color: var(--muted); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 15px 28px;
  border-radius: 4px;
  border: 1px solid transparent;
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out),
              background-color .35s, border-color .35s, color .35s;
  cursor: pointer;
}
.btn-amber {
  background: var(--amber-grad);
  color: #17130A;
  box-shadow: 0 6px 24px rgba(245, 166, 35, .25);
}
.btn-amber:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(245, 166, 35, .4); }
.btn-ghost {
  border-color: var(--line);
  color: var(--text);
  background: transparent;
}
.btn-ghost:hover { border-color: var(--amber); color: var(--amber); transform: translateY(-2px); }
.btn-sm { padding: 11px 20px; font-size: 12.5px; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background-color .4s, border-color .4s, backdrop-filter .4s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(12, 13, 15, .82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}
.nav-inner {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--amber);
}
.brand-mark { width: 30px; height: 30px; }
.brand-word {
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: .06em;
  color: var(--text);
}
.nav-links {
  display: flex;
  gap: 30px;
  margin-left: auto;
}
.nav-links a {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color .3s;
  position: relative;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 100%; height: 1px;
  background: var(--amber);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s var(--ease-out);
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a[aria-current="page"] { color: var(--text); }
.nav-links a[aria-current="page"]::after { transform: scaleX(1); }
.nav-cta { display: flex; align-items: center; gap: 20px; }
.nav-phone {
  font-family: var(--font-mono);
  font-size: 13.5px;
  color: var(--muted);
  transition: color .3s;
}
.nav-phone:hover { color: var(--amber); }

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  padding: 8px;
  cursor: pointer;
}
.nav-burger span {
  width: 24px; height: 2px;
  background: var(--text);
  transition: transform .3s, opacity .3s;
}
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 22px;
  padding: 28px 24px 40px;
  background: rgba(12, 13, 15, .97);
  border-bottom: 1px solid var(--line);
}
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 30px;
  letter-spacing: .05em;
}
.mobile-menu .btn { font-family: var(--font-mono); font-size: 14px; }
.mobile-phone { font-family: var(--font-mono) !important; font-size: 15px !important; color: var(--muted); }
.nav.menu-open .mobile-menu { display: flex; }
.nav.menu-open { background: rgba(12, 13, 15, .97); }
.nav.menu-open .nav-burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.menu-open .nav-burger span:nth-child(2) { opacity: 0; }
.nav.menu-open .nav-burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  overflow: hidden;
  background:
    radial-gradient(1100px 520px at 50% -10%, rgba(245, 166, 35, .07), transparent 60%),
    radial-gradient(900px 600px at 50% 115%, rgba(249, 115, 22, .05), transparent 60%),
    var(--bg);
}
.hero-glow {
  position: absolute;
  left: 50%; top: 42%;
  width: 640px; height: 640px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(245, 166, 35, .10), transparent 62%);
  pointer-events: none;
}
.hero-ring {
  position: absolute;
  left: 50%; top: 42%;
  width: min(640px, 92vw);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  color: rgba(242, 240, 234, .05);
  pointer-events: none;
}
.hero-ring svg { width: 100%; height: 100%; animation: ring-spin 90s linear infinite; }
@keyframes ring-spin { to { transform: rotate(360deg); } }

/* spark particles (populated by JS) */
.sparks { position: absolute; inset: 0; pointer-events: none; }
.spark {
  position: absolute;
  width: 3px; height: 3px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 8px 1px rgba(245, 166, 35, .6);
  opacity: 0;
  animation: twinkle var(--tw-dur, 4s) ease-in-out var(--tw-delay, 0s) infinite;
}
@keyframes twinkle {
  0%, 100% { opacity: 0; transform: scale(.4); }
  50% { opacity: var(--tw-max, .8); transform: scale(1); }
}

.hero-content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 860px;
}

.kicker {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 8px;
}

/* ---------- floating centerpiece ---------- */
.float-stage {
  position: relative;
  width: 250px;
  height: 300px;
  margin: 6px 0 10px;
}
.levitate {
  position: absolute;
  inset: 0 0 34px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: levitate 6.5s ease-in-out infinite;
  will-change: transform;
}
.wrench { width: 168px; height: auto; transform: rotate(34deg); filter: drop-shadow(0 18px 30px rgba(0,0,0,.45)); }
@keyframes levitate {
  0%, 100% { transform: translateY(0) rotate(-2.5deg); }
  50% { transform: translateY(-20px) rotate(2.5deg); }
}
.levitate-shadow {
  position: absolute;
  bottom: 6px; left: 50%;
  width: 150px; height: 26px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse, rgba(0, 0, 0, .55), transparent 70%);
  animation: levitate-shadow 6.5s ease-in-out infinite;
}
@keyframes levitate-shadow {
  0%, 100% { transform: translateX(-50%) scale(1); opacity: .85; }
  50% { transform: translateX(-50%) scale(.72); opacity: .45; }
}

/* drifting hex nuts */
.nut { position: absolute; color: rgba(245, 166, 35, .4); }
.nut-1 { width: 26px; top: 12%; left: -14%; animation-delay: -1s; }
.nut-2 { width: 18px; top: 4%; right: -10%; animation-delay: -3s; }
.nut-3 { width: 14px; bottom: 18%; right: -22%; animation-delay: -5s; }
.drift { animation: drift 9s ease-in-out infinite; }
.drift-alt { animation: drift-alt 11s ease-in-out infinite; }
@keyframes drift {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(7px, -12px) rotate(4deg); }
  66% { transform: translate(-6px, 8px) rotate(-3deg); }
}
@keyframes drift-alt {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(-9px, 10px) rotate(-4deg); }
  66% { transform: translate(8px, -8px) rotate(3deg); }
}

/* ---------- hero text ---------- */
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(52px, 8.5vw, 108px);
  line-height: .96;
  letter-spacing: .015em;
  text-transform: uppercase;
  font-weight: 400;
  margin: 18px 0 22px;
}
.hero-title em, .section-title em {
  font-style: normal;
  background: var(--amber-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-sub {
  max-width: 560px;
  color: var(--muted);
  font-size: 18px;
  margin-bottom: 26px;
}
.rating-chip {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 13.5px;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 22px;
  margin-bottom: 34px;
  transition: border-color .3s, color .3s, transform .3s var(--ease-out),
              opacity .9s var(--ease-out) var(--d, 0s);
  background: rgba(22, 25, 31, .55);
}
.rating-chip:hover { border-color: var(--amber); color: var(--text); transform: translateY(-2px); }
.rating-chip strong { color: var(--text); }
.stars { color: var(--amber); letter-spacing: 3px; font-size: 14px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }

.scroll-cue {
  position: absolute;
  bottom: 26px; left: 50%;
  transform: translateX(-50%);
  width: 28px; height: 52px;
  display: flex;
  justify-content: center;
  opacity: .55;
  transition: opacity .3s;
}
.scroll-cue:hover { opacity: 1; }
.scroll-line {
  width: 1px; height: 100%;
  background: linear-gradient(var(--text), transparent);
  animation: cue 2.2s ease-in-out infinite;
  transform-origin: top;
}
@keyframes cue {
  0% { transform: scaleY(0); }
  45% { transform: scaleY(1); }
  100% { transform: scaleY(1); opacity: 0; }
}

/* ============================================================
   TICKER
   ============================================================ */
.ticker {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--panel);
  overflow: hidden;
  padding: 18px 0;
}
.ticker-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: ticker-scroll 32s linear infinite;
}
.ticker-track span {
  font-family: var(--font-display);
  font-size: 26px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text);
  white-space: nowrap;
  margin: 0 17px;
}
.ticker-track i {
  font-style: normal;
  color: var(--amber);
  font-size: 15px;
  margin: 0 17px;
}
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================================
   SECTIONS — shared
   ============================================================ */
.section { padding: 130px 0; position: relative; }
section[id], div[id] { scroll-margin-top: 72px; }

.section-label {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 18px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(44px, 6vw, 76px);
  line-height: .98;
  letter-spacing: .015em;
  text-transform: uppercase;
  font-weight: 400;
  margin-bottom: 22px;
}
.section-sub {
  max-width: 540px;
  color: var(--muted);
  font-size: 18px;
  margin-bottom: 56px;
}

/* ---------- scroll reveal system ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .9s var(--ease-out) var(--d, 0s),
              transform .9s var(--ease-out) var(--d, 0s);
}
.reveal.in { opacity: 1; transform: translateY(0); }

.mask-line {
  display: block;
  overflow: hidden;
  padding-bottom: .06em;
  margin-bottom: -.06em;
}
.mask-inner {
  display: inline-block;
  transform: translateY(112%);
  transition: transform 1s var(--ease-out) var(--d, 0s);
}
.mask-line:nth-child(2) .mask-inner { transition-delay: .12s; }
.mask-line:nth-child(3) .mask-inner { transition-delay: .24s; }
.in-view .mask-inner { transform: translateY(0); }

/* ============================================================
   SERVICES
   ============================================================ */
.services { background: var(--bg); }
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.service-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 30px 28px;
  transition: border-color .35s, transform .45s var(--ease-out),
              opacity .9s var(--ease-out) var(--d, 0s), box-shadow .35s;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: var(--amber-grad);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform .4s var(--ease-out);
}
.service-card:hover { border-color: rgba(245, 166, 35, .45); transform: translateY(-4px); box-shadow: 0 18px 40px rgba(0, 0, 0, .35); }
.service-card:hover::before { transform: scaleY(1); }
.svc-icon {
  width: 40px; height: 40px;
  color: var(--amber);
  margin-bottom: 18px;
  transition: transform .4s var(--ease-out);
}
.service-card:hover .svc-icon { transform: translateY(-3px) scale(1.06); }
.service-card h3 {
  font-family: var(--font-display);
  font-size: 27px;
  letter-spacing: .04em;
  font-weight: 400;
  margin-bottom: 8px;
}
.service-card p { color: var(--muted); font-size: 15.5px; line-height: 1.6; }

.service-note {
  margin-top: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-family: var(--font-mono);
  font-size: 14.5px;
  color: var(--muted);
  border: 1px dashed var(--line);
  border-radius: 8px;
  padding: 20px 26px;
}
.service-note svg { width: 22px; height: 22px; color: var(--amber); flex-shrink: 0; }
.service-note strong { color: var(--text); font-weight: 500; }

/* ============================================================
   REVIEWS — the floating field
   ============================================================ */
.reviews {
  background: var(--panel);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.reviews-glow {
  position: absolute;
  left: 50%; top: 55%;
  width: 900px; height: 700px;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse, rgba(245, 166, 35, .06), transparent 62%);
  pointer-events: none;
}
.reviews .section-title { margin-bottom: 0; }

.review-field {
  position: relative;
  max-width: 1240px;
  margin: 40px auto 0;
  min-height: 720px;
  padding: 0 24px;
}
.review-core {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 2;
}
.reveal.review-core { transform: translate(-50%, calc(-50% + 26px)); }
.reveal.review-core.in { transform: translate(-50%, -50%); }
.big-rating {
  font-family: var(--font-display);
  font-size: clamp(120px, 16vw, 200px);
  line-height: .9;
  background: var(--amber-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.big-stars { color: var(--amber); font-size: 26px; letter-spacing: 8px; margin: 10px 0 6px; text-indent: 8px; }
.rating-meta { font-family: var(--font-mono); font-size: 14px; color: var(--muted); }
.rating-link {
  display: inline-block;
  margin-top: 14px;
  font-family: var(--font-mono);
  font-size: 13.5px;
  letter-spacing: .06em;
  color: var(--amber);
  border-bottom: 1px solid transparent;
  transition: border-color .3s;
}
.rating-link:hover { border-color: var(--amber); }

.review-card {
  position: absolute;
  width: 300px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 24px 26px;
  box-shadow: 0 24px 50px rgba(0, 0, 0, .35);
  z-index: 3;
}
/* drift + reveal combine: reveal transitions opacity only, drift owns transform */
.review-card.reveal { transform: none; }
.rc-stars { color: var(--amber); letter-spacing: 3px; font-size: 14px; margin-bottom: 12px; }
.review-card blockquote {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text);
  margin-bottom: 14px;
}
.review-card figcaption {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--text);
}
.review-card figcaption span { color: var(--muted); }

/* positions around the core */
.review-card:nth-of-type(1) { top: 4%; left: 3%; transform: rotate(-2deg); }
.review-card:nth-of-type(2) { top: 0%; right: 4%; transform: rotate(1.5deg); }
.review-card:nth-of-type(3) { bottom: 6%; left: 6%; transform: rotate(1deg); }
.review-card:nth-of-type(4) { bottom: 2%; right: 7%; transform: rotate(-1.5deg); }
.review-card:nth-of-type(5) { top: 40%; right: 0%; transform: rotate(2deg); width: 240px; }

/* ============================================================
   ABOUT
   ============================================================ */
.about { background: var(--bg); }
.about-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 70px;
  align-items: start;
}
.about-copy p { color: var(--muted); margin-bottom: 20px; max-width: 560px; }
.about-copy .section-title { margin-bottom: 30px; }
.about-quote {
  margin-top: 34px;
  padding: 28px 32px;
  border-left: 3px solid var(--amber);
  background: var(--card);
  border-radius: 0 10px 10px 0;
  font-size: 19px;
  line-height: 1.6;
  color: var(--text);
  font-style: italic;
}
.about-quote cite {
  display: block;
  margin-top: 16px;
  font-family: var(--font-mono);
  font-size: 13.5px;
  font-style: normal;
  color: var(--amber);
}
.about-chips {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding-top: 90px;
}
.chip-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 26px 30px;
  transition: border-color .35s, transform .45s var(--ease-out),
              opacity .9s var(--ease-out) var(--d, 0s);
}
.chip-card:hover { border-color: rgba(245, 166, 35, .45); transform: translateY(-3px); }
.chip-num {
  font-family: var(--font-display);
  font-size: 54px;
  line-height: 1;
  display: block;
}
.chip-num i {
  font-style: normal;
  background: var(--amber-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.chip-label {
  font-family: var(--font-mono);
  font-size: 13.5px;
  color: var(--muted);
  letter-spacing: .04em;
}

/* ---------- owner photo ---------- */
.about-photo {
  grid-column: 1 / -1;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  background: var(--card);
}
.about-photo img { width: 100%; height: auto; }
.about-photo figcaption {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  border-top: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: .04em;
  color: var(--muted);
}
.about-photo figcaption::before {
  content: "";
  flex: none;
  width: 20px;
  height: 2px;
  background: var(--amber-grad);
}

/* ============================================================
   VISIT
   ============================================================ */
.visit {
  background: var(--panel);
  border-top: 1px solid var(--line);
}
.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  margin-top: 40px;
}
.info-row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}
.info-row:first-child { padding-top: 0; }
.info-label {
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--amber);
}
.info-row a, .info-row p { font-size: 17px; color: var(--text); line-height: 1.55; }
.info-row a { transition: color .3s; }
.info-row a:hover { color: var(--amber); }
.info-row .muted { font-size: 14.5px; }
.socials { display: flex; gap: 14px; margin-top: 28px; }
.socials a {
  width: 44px; height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  transition: color .3s, border-color .3s, transform .3s var(--ease-out);
}
.socials a:hover { color: var(--amber); border-color: var(--amber); transform: translateY(-3px); }
.socials svg { width: 20px; height: 20px; }

.visit-cta { display: flex; flex-direction: column; gap: 20px; }
.cta-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 38px 40px;
  position: relative;
  overflow: hidden;
}
.cta-card::after {
  content: "";
  position: absolute;
  top: -60px; right: -60px;
  width: 180px; height: 180px;
  background: radial-gradient(circle, rgba(245, 166, 35, .14), transparent 65%);
  pointer-events: none;
}
.cta-card h3 {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 400;
  letter-spacing: .03em;
  margin-bottom: 10px;
}
.cta-card p { color: var(--muted); margin-bottom: 24px; max-width: 380px; }
.cta-or {
  display: block;
  margin-top: 16px;
  font-family: var(--font-mono);
  font-size: 13.5px;
  color: var(--muted);
}
.cta-or a { color: var(--amber); }
.cta-or a:hover { text-decoration: underline; }

.map-frame {
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  min-height: 260px;
  flex: 1;
}
.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 260px;
  border: 0;
  filter: grayscale(1) invert(.9) contrast(.9) hue-rotate(180deg);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  padding: 90px 0 50px;
  text-align: center;
  border-top: 1px solid var(--line);
  background: var(--bg);
}
.footer-word {
  font-family: var(--font-display);
  font-size: clamp(64px, 12vw, 150px);
  line-height: 1;
  letter-spacing: .04em;
  text-transform: uppercase;
  background: linear-gradient(180deg, rgba(242, 240, 234, .16), rgba(242, 240, 234, .02));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  user-select: none;
}
.footer-tag {
  font-family: var(--font-mono);
  font-size: 13.5px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--amber);
  margin: 18px 0 34px;
}
.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 28px;
  margin-bottom: 34px;
}
.footer-links a {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color .3s;
}
.footer-links a:hover { color: var(--text); }
.footer-legal { font-size: 13.5px; color: var(--muted); opacity: .7; }

/* ============================================================
   FAQ (sub-page)
   ============================================================ */
.page-head {
  padding: 150px 0 70px;
  border-bottom: 1px solid var(--line);
  background: var(--panel);
}
.page-head .section-sub { margin-bottom: 0; }

.faq-group { margin-top: 64px; }
.faq-group:first-of-type { margin-top: 0; }
.faq-group h3 {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--amber);
  font-weight: 500;
  margin-bottom: 20px;
}
.faq-list { border-top: 1px solid var(--line); }
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item summary {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 4px;
  cursor: pointer;
  list-style: none;
  font-size: 19px;
  font-weight: 600;
  line-height: 1.4;
  transition: color .3s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--amber); }
.faq-item summary:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 4px;
  border-radius: 4px;
}
.faq-sign {
  flex: none;
  position: relative;
  width: 18px;
  height: 18px;
  margin-top: 6px;
}
.faq-sign::before, .faq-sign::after {
  content: "";
  position: absolute;
  inset: 50% 0 auto 0;
  height: 2px;
  background: var(--amber);
  transform: translateY(-50%);
  transition: transform .35s var(--ease-out), opacity .35s;
}
.faq-sign::after { transform: translateY(-50%) rotate(90deg); }
.faq-item[open] .faq-sign::after { transform: translateY(-50%) rotate(0deg); opacity: 0; }
.faq-answer {
  padding: 0 60px 26px 4px;
  color: var(--muted);
  max-width: 760px;
}
.faq-answer p + p { margin-top: 14px; }
.faq-answer a { color: var(--amber); text-decoration: underline; text-underline-offset: 3px; }

.faq-foot {
  margin-top: 72px;
  padding: 40px 44px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.faq-foot h3 {
  font-family: var(--font-display);
  font-size: 38px;
  line-height: 1;
  letter-spacing: .015em;
  text-transform: uppercase;
  font-weight: 400;
}
.faq-foot p { color: var(--muted); margin-top: 8px; }
.faq-foot .btn { flex: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .review-card:nth-of-type(5) { display: none; }
}

@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; margin-left: auto; }

  .section { padding: 90px 0; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-chips { padding-top: 0; flex-direction: row; flex-wrap: wrap; }
  .chip-card { flex: 1 1 160px; }
  .visit-grid { grid-template-columns: 1fr; gap: 48px; }

  .page-head { padding: 120px 0 56px; }
  .faq-foot { padding: 32px 28px; }

  /* reviews collapse to a stacked flow */
  .review-field { min-height: 0; display: flex; flex-direction: column; gap: 18px; margin-top: 48px; }
  .review-core { position: static; transform: none; margin-bottom: 26px; }
  .reveal.review-core { transform: translateY(26px); }
  .reveal.review-core.in { transform: translateY(0); }
  .review-card { position: static; width: 100%; transform: none !important; animation: none; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .service-grid { grid-template-columns: 1fr; }
  .float-stage { width: 200px; height: 240px; }
  .wrench { width: 132px; }
  .hero-sub { font-size: 16.5px; }
  .ticker-track span { font-size: 21px; }
  .cta-card { padding: 30px 26px; }
  .info-row { grid-template-columns: 1fr; gap: 6px; }
  .about-photo figcaption { font-size: 12px; padding: 14px 18px; }
  .faq-item summary { font-size: 17px; gap: 16px; }
  .faq-answer { padding-right: 24px; }
  .faq-foot h3 { font-size: 32px; }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .levitate, .levitate-shadow, .drift, .drift-alt,
  .ticker-track, .hero-ring svg, .scroll-line, .spark {
    animation: none !important;
  }
  .reveal, .mask-inner {
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}
