/* ============ Reset & Base ============ */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: oklch(0.17 0.012 240);
  font-family: 'Barlow', sans-serif;
  color: oklch(0.75 0.012 225);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3, p { margin: 0; }

:root {
  --bg-dark-a: oklch(0.185 0.013 238);
  --bg-dark-b: oklch(0.155 0.011 242);
  --bg-alt-a: oklch(0.225 0.015 238);
  --bg-alt-b: oklch(0.195 0.013 242);
  --footer-a: oklch(0.145 0.013 243);
  --footer-b: oklch(0.115 0.011 247);
  --card: oklch(0.21 0.014 240);
  --card-border: oklch(0.3 0.02 230);
  --input-border: oklch(0.34 0.02 230);
  --input-bg: oklch(0.19 0.013 240);
  --white: oklch(0.96 0.006 220);
  --white-soft: oklch(0.95 0.006 220);
  --body-text: oklch(0.75 0.012 225);
  --body-text-2: oklch(0.78 0.012 225);
  --muted: oklch(0.65 0.015 225);
  --muted-2: oklch(0.55 0.015 225);
  --muted-3: oklch(0.62 0.015 225);
  --accent: oklch(0.8 0.13 195);
  --accent-hover: oklch(0.86 0.12 195);
  --ink-on-accent: oklch(0.18 0.03 220);
  --font-display: 'Anton', sans-serif;
  --font-body: 'Barlow', sans-serif;
}

.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
}
.section-head { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.section-head h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(34px, 4.5vw, 54px);
  line-height: 1.05;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
  text-wrap: balance;
}
.section-head p { font-size: 17px; line-height: 1.65; color: var(--body-text); }

.section-dark {
  position: relative;
  background: linear-gradient(165deg, var(--bg-dark-a), var(--bg-dark-b));
  padding: 80px 24px 100px;
  overflow: hidden;
}
.section-alt {
  position: relative;
  background: linear-gradient(165deg, var(--bg-alt-a), var(--bg-alt-b));
  padding: 80px 24px 100px;
  overflow: hidden;
}
.section-dark > .container, .section-alt > .container { position: relative; z-index: 1; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 17px 32px;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  transition: background 0.25s ease, transform 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}
.btn-accent { background: var(--accent); color: var(--ink-on-accent); }
.btn-accent:hover { background: var(--accent-hover); transform: translateY(-2px); }
.btn-outline {
  border: 1px solid oklch(0.45 0.02 225);
  color: var(--white-soft);
  background: transparent;
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }

/* ============ Noise overlay (anti-hairline utility) ============ */
@keyframes riseIn { 0% { opacity: 0; transform: translateY(26px); } 100% { opacity: 1; transform: translateY(0); } }
@keyframes sheenSweep { 0% { transform: translateX(-160%) skewX(-18deg); } 55% { transform: translateX(360%) skewX(-18deg); } 100% { transform: translateX(360%) skewX(-18deg); } }
@keyframes tickerMove { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
@keyframes footerFlow { 0% { background-position: 0% 50%; } 100% { background-position: 200% 50%; } }

.noise-overlay {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/></svg>");
}
.section-dark::before, .section-alt::before {
  content: "";
  position: absolute; inset: 0;
  opacity: 0.035;
  mix-blend-mode: overlay;
  pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/></svg>");
}

details > summary { list-style: none; }
details > summary::-webkit-details-marker { display: none; }

/* ============ Nav ============ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.35s ease, border-color 0.35s ease;
}
.site-header.is-solid {
  background: oklch(0.17 0.012 240 / 0.85);
  backdrop-filter: blur(14px);
  border-bottom-color: oklch(0.3 0.02 230 / 0.5);
}
.nav-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.brand-mark {
  width: 34px; height: 34px;
  background: var(--accent);
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-size: 17px;
  color: var(--ink-on-accent);
  letter-spacing: 0.5px;
}
.brand-word {
  font-family: var(--font-display);
  font-size: 19px; letter-spacing: 1.5px;
  color: var(--white-soft);
}
.brand-accent { color: var(--accent); }

.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a {
  color: oklch(0.85 0.01 220);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.4px;
}
.nav-links a:hover { color: var(--accent); }

.nav-right { display: flex; align-items: center; gap: 18px; }
.nav-phone {
  color: var(--white-soft);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.4px;
}
.nav-cta-btn {
  background: var(--accent);
  color: var(--ink-on-accent);
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 11px 20px;
  border-radius: 2px;
  transition: background 0.25s ease;
}
.nav-cta-btn:hover { background: var(--accent-hover); }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid oklch(0.35 0.02 230);
  border-radius: 2px;
  padding: 9px 11px;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  min-height: 44px;
  justify-content: center;
}
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--white-soft); }
.nav-toggle span:nth-child(2) { background: var(--accent); }

.nav-mobile {
  display: none;
  flex-direction: column;
  padding: 8px 24px 20px;
  gap: 4px;
  border-top: 1px solid oklch(0.3 0.02 230 / 0.5);
}
.nav-mobile.is-open { display: flex; }
.nav-mobile a {
  color: oklch(0.9 0.008 220);
  text-decoration: none;
  font-weight: 500;
  font-size: 17px;
  padding: 12px 4px;
}
.nav-mobile .nav-phone-mobile { color: var(--accent); font-weight: 600; }
.nav-mobile .nav-cta-btn { text-align: center; margin-top: 8px; }

@media (max-width: 920px) {
  .nav-links, .nav-right { display: none; }
  .nav-toggle { display: flex; }
}

/* ============ Hero ============ */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: repeating-linear-gradient(45deg, oklch(0.2 0.015 235), oklch(0.2 0.015 235) 16px, oklch(0.23 0.02 230) 16px, oklch(0.23 0.02 230) 32px);
}
.hero-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.6;
}
.hero-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(100deg, oklch(0.15 0.015 240 / 0.95) 0%, oklch(0.15 0.015 240 / 0.85) 45%, oklch(0.15 0.015 240 / 0.5) 100%);
}
.hero::after {
  content: "";
  position: absolute; inset: 0;
  opacity: 0.035;
  mix-blend-mode: overlay;
  pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/></svg>");
}
.hero-sheen-wrap { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 1; }
.hero-sheen {
  position: absolute; top: -20%; bottom: -20%; width: 140px;
  background: linear-gradient(90deg, transparent, oklch(0.9 0.06 200 / 0.07), transparent);
  animation: sheenSweep 7s ease-in-out infinite;
}
.hero-inner {
  position: relative; z-index: 3;
  max-width: 1240px; margin: 0 auto;
  padding: 130px 24px 90px;
  width: 100%; box-sizing: border-box;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 48px;
  align-items: center;
}
.hero-copy { max-width: 640px; animation: riseIn 0.9s ease-out both; }
.hero-copy .eyebrow { margin-bottom: 18px; }
.hero-copy h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(44px, 7vw, 84px);
  line-height: 1.02;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--white);
  text-wrap: balance;
  margin-bottom: 22px;
}
.hero-copy h1 .accent { color: var(--accent); }
.hero-copy > p {
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.6;
  color: var(--body-text-2);
  max-width: 520px;
  margin-bottom: 32px;
}
.hero-badges {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 12px 24px;
  margin-bottom: 36px;
  max-width: 520px;
  list-style: none;
  padding: 0;
}
.hero-badges li { display: flex; align-items: center; gap: 10px; }
.hero-badges .diamond { width: 10px; height: 10px; background: var(--accent); transform: rotate(45deg); flex-shrink: 0; }
.hero-badges .label { color: oklch(0.9 0.008 220); font-weight: 500; font-size: 15px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 30px; }
.hero-stars { margin: 0; color: var(--muted-3); font-size: 14px; }
.hero-stars .stars { color: var(--accent); letter-spacing: 2px; }

/* Quote card */
.quote-card {
  background: oklch(0.24 0.015 238 / 0.93);
  backdrop-filter: blur(8px);
  border: 1px solid var(--input-border);
  border-top: 3px solid var(--accent);
  padding: clamp(22px, 3vw, 34px);
  border-radius: 3px;
  max-width: 500px; width: 100%;
  box-sizing: border-box;
  justify-self: end;
  animation: riseIn 0.9s ease-out 0.15s both;
  position: relative; z-index: 4;
}
.quote-card h2 {
  font-family: var(--font-display);
  font-weight: 400; font-size: 26px;
  letter-spacing: 1px; text-transform: uppercase;
  color: var(--white);
  margin-bottom: 8px;
}
.quote-card > p { color: var(--body-text); font-size: 15px; line-height: 1.5; margin-bottom: 20px; }
.quote-form { display: grid; gap: 13px; }
.quote-form label {
  display: grid; gap: 6px;
  color: oklch(0.82 0.01 222);
  font-size: 13.5px; font-weight: 600; letter-spacing: 0.5px;
}
.quote-form label .optional { font-weight: 400; color: var(--muted-3); }
.quote-form input, .quote-form select, .quote-form textarea {
  background: var(--input-bg);
  border: 1px solid var(--input-border);
  border-radius: 2px;
  padding: 12px 13px;
  color: var(--white-soft);
  font-size: 16px;
  font-family: var(--font-body);
  width: 100%;
  box-sizing: border-box;
}
.quote-form input:focus, .quote-form select:focus, .quote-form textarea:focus {
  border-color: var(--accent);
  outline: none;
}
.quote-form textarea { resize: vertical; }
.quote-submit {
  background: var(--accent);
  color: var(--ink-on-accent);
  border: none; cursor: pointer;
  font-family: var(--font-body);
  font-weight: 700; font-size: 15px;
  letter-spacing: 1px; text-transform: uppercase;
  padding: 15px 20px; border-radius: 2px;
  min-height: 44px;
}
.quote-submit:hover { background: var(--accent-hover); }
.quote-fineprint { text-align: center; color: var(--muted-3); font-size: 12.5px; margin: 0; }
.quote-success { text-align: center; padding: 34px 10px; }
.quote-success h3 {
  font-family: var(--font-display); font-size: 24px;
  text-transform: uppercase; letter-spacing: 1px; color: var(--accent);
  margin-bottom: 10px;
}
.quote-success p { color: oklch(0.8 0.01 222); font-size: 16px; line-height: 1.6; }
.quote-success a { color: var(--accent); font-weight: 600; text-decoration: none; }
.quote-card[data-sent="true"] .quote-form-wrap { display: none; }
.quote-card[data-sent="true"] .quote-success { display: block; }
.quote-card:not([data-sent="true"]) .quote-success { display: none; }

/* ============ Ticker ============ */
.ticker-wrap {
  background: var(--accent);
  transform: skewY(-1.2deg);
  margin: -26px 0;
  position: relative;
  z-index: 10;
  overflow: hidden;
  padding: 13px 0;
}
.ticker-track { display: flex; width: max-content; animation: tickerMove 26s linear infinite; white-space: nowrap; }
.ticker-track span {
  font-family: var(--font-display);
  font-size: 17px; letter-spacing: 2.5px;
  color: var(--ink-on-accent);
  text-transform: uppercase;
}

/* Diagonal dividers */
.divider { height: 90px; position: relative; }
.divider--dark-to-alt { background: linear-gradient(to bottom left, var(--bg-dark-b) 49.7%, var(--bg-alt-a) 50.3%); }
.divider--alt-to-dark { background: linear-gradient(to bottom right, var(--bg-alt-b) 49.7%, var(--bg-dark-a) 50.3%); }
.divider-bar { position: absolute; width: 90px; height: 6px; background: var(--accent); top: 34px; }
.divider-bar--right { right: 8%; transform: skewY(3.1deg); }
.divider-bar--left { left: 8%; transform: skewY(-3.1deg); }

/* ============ Services ============ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr));
  gap: 24px;
}
.service-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 3px;
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.service-card:hover { border-color: oklch(0.8 0.13 195 / 0.6); transform: translateY(-4px); }
.service-card img { aspect-ratio: 16/10; width: 100%; object-fit: cover; }
.service-body { padding: 26px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.service-body h3 {
  font-family: var(--font-display); font-weight: 400; font-size: 22px;
  letter-spacing: 0.8px; text-transform: uppercase; color: var(--white);
}
.service-body p { color: var(--body-text); font-size: 15.5px; line-height: 1.6; flex: 1; }
.service-link {
  color: var(--accent); text-decoration: none; font-weight: 700;
  font-size: 14px; letter-spacing: 1px; text-transform: uppercase;
  transition: letter-spacing 0.25s ease;
}
.service-link:hover { letter-spacing: 2px; }

/* ============ About ============ */
.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 48px;
  align-items: center;
}
.about-media { position: relative; }
.about-media img {
  aspect-ratio: 4/5; max-height: 560px; width: 100%; object-fit: cover;
  border-radius: 3px;
}
.about-badge {
  position: absolute; left: -1px; bottom: -1px;
  background: var(--accent); color: var(--ink-on-accent);
  font-family: var(--font-display); font-size: 15px;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 12px 20px;
}
.about-copy > p.lead { font-size: 17px; line-height: 1.65; color: var(--body-text); margin-bottom: 34px; }
.about-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 22px;
}
.about-feature { border-left: 2px solid var(--accent); padding-left: 16px; }
.about-feature h3 {
  font-family: var(--font-display); font-weight: 400; font-size: 18px;
  letter-spacing: 1px; text-transform: uppercase; color: var(--white);
  margin-bottom: 6px;
}
.about-feature p { color: oklch(0.73 0.012 225); font-size: 15px; line-height: 1.55; }

/* ============ Gallery ============ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr));
  gap: 18px;
}
.gallery-grid img {
  aspect-ratio: 4/3; width: 100%; object-fit: cover;
  border-radius: 3px; border: 1px solid var(--card-border);
}
.gallery-cta { text-align: center; margin-top: 40px; }

/* ============ Reviews ============ */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 24px;
}
.review-card {
  background: oklch(0.24 0.015 238); border: 1px solid var(--input-border);
  border-radius: 3px; padding: 30px;
  display: flex; flex-direction: column; gap: 16px;
}
.review-card .stars { color: var(--accent); letter-spacing: 3px; font-size: 16px; }
.review-card p { color: oklch(0.85 0.01 222); font-size: 16px; line-height: 1.65; flex: 1; }
.review-card .attribution { color: var(--muted); font-size: 14px; font-weight: 600; }

/* ============ FAQ ============ */
.faq-list { max-width: 820px; margin: 0 auto; display: grid; gap: 14px; }
.faq-item {
  background: var(--card); border: 1px solid var(--card-border);
  border-radius: 3px; padding: 0 24px;
}
.faq-item summary {
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px; cursor: pointer; padding: 20px 0;
  color: var(--white-soft); font-weight: 600; font-size: 17px;
}
.faq-item summary .icon {
  color: var(--accent); font-family: var(--font-display);
  font-size: 20px; flex-shrink: 0;
}
.faq-item[open] summary .icon { transform: rotate(45deg); display: inline-block; }
.faq-item p { margin: 0; padding: 0 0 22px; color: var(--body-text); font-size: 16px; line-height: 1.65; }

/* ============ CTA banner ============ */
.cta {
  position: relative;
  background: linear-gradient(120deg, oklch(0.23 0.03 220), oklch(0.19 0.02 235));
  border-top: 3px solid var(--accent);
  padding: 90px 24px; text-align: center;
  overflow: hidden;
}
.cta::before {
  content: "";
  position: absolute; inset: 0;
  opacity: 0.035; mix-blend-mode: overlay; pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/></svg>");
}
.cta-inner { max-width: 760px; margin: 0 auto; position: relative; z-index: 1; }
.cta-inner h2 {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(36px, 5vw, 60px); line-height: 1.05;
  letter-spacing: 0.5px; text-transform: uppercase; color: var(--white);
  text-wrap: balance; margin-bottom: 18px;
}
.cta-inner > p { font-size: 18px; line-height: 1.6; color: var(--body-text-2); margin-bottom: 34px; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* ============ Footer ============ */
.footer {
  position: relative;
  background: linear-gradient(170deg, var(--footer-a), var(--footer-b));
  overflow: hidden;
}
.footer::before {
  content: "";
  position: absolute; inset: 0;
  opacity: 0.035; mix-blend-mode: overlay; pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/></svg>");
}
.footer-grid {
  position: relative; z-index: 1;
  max-width: 1240px; margin: 0 auto;
  padding: 80px 24px 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 40px;
}
.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-brand .brand-mark { width: 30px; height: 30px; font-size: 15px; }
.footer-brand .brand-word { font-size: 17px; }
.footer-col p { color: var(--muted); font-size: 15px; line-height: 1.65; }
.footer-col h3 {
  font-family: var(--font-display); font-weight: 400; font-size: 16px;
  letter-spacing: 1.5px; text-transform: uppercase; color: oklch(0.85 0.01 220);
  margin-bottom: 16px;
}
.footer-col .links { display: grid; gap: 10px; }
.footer-col .links a { color: var(--muted); text-decoration: none; font-size: 15px; }
.footer-col .links a:hover { color: var(--accent); }
.footer-contact { display: grid; gap: 10px; }
.footer-contact span { color: var(--muted); font-size: 15px; }
.footer-contact .phone { color: var(--accent); text-decoration: none; font-size: 15px; font-weight: 600; }
.footer-contact .quote-link { color: var(--white-soft); text-decoration: underline; text-underline-offset: 4px; font-size: 15px; font-weight: 600; }
.footer-contact .quote-link:hover { color: var(--accent); }
.footer-wordmark {
  position: relative; z-index: 1;
  text-align: center; padding: 0 24px; user-select: none;
  font-family: var(--font-display);
  font-size: clamp(58px, 13vw, 180px);
  line-height: 0.95; letter-spacing: 2px; text-transform: uppercase;
  background: linear-gradient(90deg, oklch(0.3 0.04 230), var(--accent), oklch(0.3 0.04 230));
  background-size: 200% 100%;
  animation: footerFlow 7s linear infinite;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  margin-bottom: -10px;
}
.footer-bottom {
  position: relative; z-index: 1;
  border-top: 1px solid oklch(0.24 0.015 240);
  padding: 22px 24px; display: flex; flex-wrap: wrap; gap: 12px;
  justify-content: space-between; align-items: center;
  max-width: 1240px; margin: 0 auto; box-sizing: border-box;
}
.footer-bottom p { color: var(--muted-2); font-size: 13.5px; }
.footer-bottom a { color: var(--muted); text-decoration: underline; text-underline-offset: 4px; font-size: 13.5px; }
.footer-bottom a:hover { color: var(--accent); }

@media (max-width: 600px) {
  .footer-bottom { justify-content: center; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-sheen, .ticker-track, .footer-wordmark { animation: none; }
}
