/* =========================================================
   OFICINA DO CAPACETE — Design tokens
   Paleta estritamente baseada na logo: Preto, Laranja, Branco
   (nenhuma seção é um bloco sólido de uma única cor —
   preto e laranja e branco convivem em cada seção, como na logo)
   Tipografia: Bebas Neue (display, racing/garagem) + Inter (corpo)
   Assinatura: faixas diagonais racing + moldura laranja nas fotos
   ========================================================= */

:root {
  --black: #0A0A0A;
  --black-soft: #161616;
  --panel: #171717;
  --panel-2: #1e1e1e;
  --white: #ffffff;
  --off-white: #FAFAFA;
  --text-soft: rgba(255,255,255,0.55);
  --orange: #FF5000;
  --orange-dark: #D64500;
  --orange-light: #FF7A3D;
  --orange-glow: rgba(255,80,0,0.35);
  --green: #25D366;
  --green-dark: #1ba851;
  --radius: 10px;
  --shadow-card: 0 14px 32px -14px rgba(0,0,0,0.5);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--white);
  background: var(--black);
  margin: 0;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; }

h1, h2, .display-font {
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 400;
  letter-spacing: 0.5px;
}

.text-orange { color: var(--orange); }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===================== SCROLL PROGRESS ===================== */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--orange), #ff8a3d);
  z-index: 200;
  box-shadow: 0 0 8px var(--orange-glow);
  transition: width 0.1s linear;
}

/* ===================== TOP BAR ===================== */
.topbar {
  background: var(--black);
  color: var(--white);
  font-size: 12.5px;
  padding: 7px 16px;
  text-align: center;
  letter-spacing: 0.2px;
  border-bottom: 1px solid rgba(255,80,0,0.25);
}
.topbar-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
.topbar-sep { color: var(--orange); }

/* ===================== HEADER ===================== */
.header {
  background: var(--black);
  border-bottom: 3px solid var(--orange);
  position: sticky;
  top: 0;
  z-index: 50;
}
.header-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 8px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo img {
  height: 58px; width: 58px; object-fit: cover;
  border-radius: 50%;
  border: 2px solid var(--orange);
}

.btn-header {
  background: var(--orange);
  color: var(--black);
  font-weight: 800;
  font-size: 14px;
  padding: 10px 22px;
  border-radius: 999px;
  border: 2px solid var(--orange);
  transition: background 0.25s var(--ease), transform 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
}
.btn-header:hover { background: var(--white); border-color: var(--white); color: var(--black); transform: translateY(-1px); }

/* ===================== HERO ===================== */
.hero {
  position: relative;
  background: var(--black);
  overflow: hidden;
  padding: 56px 0 64px 0;
}
.hero-stripe {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background-image: repeating-linear-gradient(
    115deg,
    rgba(255,255,255,0.03) 0px,
    rgba(255,255,255,0.03) 2px,
    transparent 2px,
    transparent 60px
  );
}
.hero-stripe-orange {
  position: absolute;
  top: 0; right: -10%;
  width: 55%; height: 100%;
  z-index: 1;
  pointer-events: none;
  background: repeating-linear-gradient(
    115deg,
    rgba(255,80,0,0.10) 0px,
    rgba(255,80,0,0.10) 3px,
    transparent 3px,
    transparent 46px
  );
  -webkit-mask-image: linear-gradient(to left, black, transparent);
  mask-image: linear-gradient(to left, black, transparent);
}
.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}
.hero-content { max-width: 580px; }
.tag-selo {
  display: inline-block;
  background: var(--orange);
  color: var(--black);
  font-size: 13px;
  font-weight: 800;
  padding: 8px 18px;
  border-radius: 999px;
  margin-bottom: 22px;
  letter-spacing: 0.3px;
  animation: badge-in 0.7s var(--ease) both;
}
.hero h1 {
  font-size: clamp(34px, 4.6vw, 54px);
  line-height: 1.05;
  color: var(--white);
  margin: 0 0 18px 0;
  text-transform: uppercase;
  animation: rise-in 0.8s var(--ease) 0.1s both;
}
.hero-sub {
  font-family: 'Inter', sans-serif;
  font-size: clamp(15px, 1.5vw, 17px);
  font-weight: 300;
  color: rgba(255,255,255,0.78);
  line-height: 1.65;
  margin: 0 0 32px 0;
  animation: rise-in 0.8s var(--ease) 0.2s both;
  border-left: 2px solid var(--orange);
  padding-left: 16px;
}
.btn-cta-hero {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--green);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: clamp(15px, 1.7vw, 17px);
  padding: 18px 34px;
  border-radius: 999px;
  box-shadow: 0 14px 30px -8px rgba(37,211,102,0.55);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease);
  animation: rise-in 0.8s var(--ease) 0.3s both;
}
.btn-cta-hero:hover {
  transform: translateY(-2px) scale(1.02);
  background: var(--green-dark);
  box-shadow: 0 18px 36px -8px rgba(37,211,102,0.65);
}
.wa-icon { width: 22px; height: 22px; flex-shrink: 0; }

.hero-stats {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 40px;
  animation: rise-in 0.8s var(--ease) 0.4s both;
}
.hero-stat { display: flex; flex-direction: column; }
.hero-stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 34px;
  color: var(--orange);
  line-height: 1;
}
.hero-stat-label {
  font-size: 11.5px;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-top: 4px;
}
.hero-stat-sep { width: 1px; height: 34px; background: rgba(255,255,255,0.18); }

.hero-media-wrap {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  animation: rise-in 0.9s var(--ease) 0.25s both;
}
.hero-media {
  position: relative;
  width: 100%;
  max-width: 400px;
  aspect-ratio: 3 / 4;
  border-radius: 16px;
  overflow: hidden;
  background: var(--black-soft);
  box-shadow: 0 24px 60px -16px rgba(255,80,0,0.35);
  border: 3px solid var(--orange);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.hero-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.hero-media-badge {
  position: absolute;
  bottom: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  color: var(--black);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 15px;
  letter-spacing: 0.5px;
  padding: 7px 20px;
  border-radius: 999px;
  border: 2px solid var(--orange);
  white-space: nowrap;
}

/* Tilt / hover lift for cards with images (desktop only) */
@media (hover: hover) and (pointer: fine) {
  .tilt-card { transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease); }
  .hero-media:hover { transform: translateY(-6px) scale(1.015); box-shadow: 0 30px 70px -14px rgba(255,80,0,0.5); }
  .portfolio-item.tilt-card:hover { transform: translateY(-6px); }
}

@keyframes rise-in {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes badge-in {
  from { opacity: 0; transform: translateY(10px) scale(0.9); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

/* ===================== BRANDS MARQUEE ===================== */
.brands-section {
  background: var(--black);
  padding: 22px 0;
  border-top: 1px solid rgba(255,80,0,0.2);
  border-bottom: 3px solid var(--orange);
  overflow: hidden;
}
.brands-marquee { width: 100%; overflow: hidden; }
.brands-track {
  display: flex;
  align-items: center;
  gap: 22px;
  width: max-content;
  animation: marquee 18s linear infinite;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.brand-pill {
  background: transparent;
  color: var(--white);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 1.5px;
  padding: 6px 4px;
  white-space: nowrap;
}
.brand-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
}
@media (prefers-reduced-motion: reduce) {
  .brands-track { animation: none; }
}

/* ===================== SECTION SHARED ===================== */
.section { padding: 76px 0; position: relative; }
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--orange-light);
  text-align: center;
  margin: 0 0 10px 0;
  font-family: 'Inter', sans-serif;
}
.section-title {
  text-align: center;
  font-size: clamp(28px, 3.6vw, 40px);
  color: var(--white);
  margin: 0 0 48px 0;
  text-transform: uppercase;
}

/* ===================== BENEFITS ===================== */
.benefits-section { background: var(--black); }
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.benefit-card {
  text-align: center;
  padding: 34px 20px;
  background: var(--panel);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  border-bottom: 3px solid var(--orange);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.benefit-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); }
.benefit-icon {
  width: 58px; height: 58px;
  margin: 0 auto 20px auto;
  background: var(--orange);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--black);
}
.benefit-icon svg { width: 26px; height: 26px; }
.benefit-card h3 { font-size: 16px; font-weight: 700; margin: 0 0 10px 0; font-family: 'Inter', sans-serif; color: var(--white); }
.benefit-card p { font-size: 13.5px; font-weight: 300; color: rgba(255,255,255,0.65); line-height: 1.6; margin: 0; }

/* ===================== PORTFOLIO ===================== */
.portfolio-section { background: var(--black); position: relative; overflow: hidden; }
.portfolio-stripe {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    115deg,
    rgba(255,80,0,0.05) 0px,
    rgba(255,80,0,0.05) 2px,
    transparent 2px,
    transparent 50px
  );
  pointer-events: none;
}
.portfolio-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.portfolio-item { margin: 0; }
.portfolio-frame {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--panel);
  border: 2px solid var(--orange);
  box-shadow: var(--shadow-card);
}
.portfolio-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.5s var(--ease);
}
.portfolio-item:hover .portfolio-frame img { transform: scale(1.08); }
.portfolio-item figcaption {
  text-align: center;
  color: var(--white);
  font-size: 13px;
  font-weight: 500;
  padding: 12px 8px 0 8px;
  letter-spacing: 0.3px;
}

/* ===================== REVIEWS ===================== */
.reviews-section { background: var(--black); }
.reviews-featured {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  max-width: 860px;
  margin: 0 auto;
}
.review-card-big {
  position: relative;
  background: var(--panel);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 32px 28px 26px 28px;
  border-top: 4px solid var(--orange);
  overflow: hidden;
}
.review-quote-mark {
  position: absolute;
  top: -6px; right: 18px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 90px;
  color: rgba(255,80,0,0.14);
  line-height: 1;
}
.stars { color: var(--orange); font-size: 17px; letter-spacing: 2px; margin-bottom: 14px; }
.review-card-big p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--white);
  margin: 0 0 20px 0;
  font-weight: 500;
  position: relative;
  z-index: 1;
}
.review-author-row { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--black);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 15px;
  flex-shrink: 0;
}
.review-avatar.small { width: 32px; height: 32px; font-size: 13px; }
.review-author { display: block; font-weight: 700; font-size: 13.5px; color: var(--white); font-family: 'Inter', sans-serif; }
.review-meta { display: block; font-size: 11.5px; color: rgba(255,255,255,0.5); margin-top: 2px; }

.reviews-more-label {
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-soft);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 46px 0 18px 0;
}
.reviews-strip {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding: 6px 6px 16px 6px;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
}
.reviews-strip::-webkit-scrollbar { height: 5px; }
.reviews-strip::-webkit-scrollbar-thumb { background: var(--orange); border-radius: 10px; }
.review-chip {
  scroll-snap-align: start;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--panel);
  border: 1px solid rgba(255,255,255,0.08);
  border-left: 3px solid var(--orange);
  border-radius: 999px;
  padding: 8px 18px 8px 8px;
  min-width: 250px;
}

.google-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 34px;
  font-weight: 600;
  font-size: 14px;
  color: var(--white);
}

/* ===================== PROMO BANNER ===================== */
.promo-banner {
  background: var(--black);
  padding: 50px 0;
  position: relative;
  overflow: hidden;
  border-top: 3px solid var(--orange);
  border-bottom: 3px solid var(--orange);
}
.promo-stripes {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    115deg,
    rgba(255,80,0,0.10) 0px,
    rgba(255,80,0,0.10) 4px,
    transparent 4px,
    transparent 42px
  );
  animation: stripe-shift 14s linear infinite;
}
@keyframes stripe-shift {
  from { background-position: 0 0; }
  to { background-position: 400px 0; }
}
.promo-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 22px;
}
.promo-tag {
  display: inline-block;
  background: var(--orange);
  color: var(--black);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 10px;
}
.promo-text h2 {
  color: var(--white);
  font-size: clamp(26px, 3.4vw, 36px);
  margin: 0 0 4px 0;
  text-transform: uppercase;
  line-height: 1.05;
}
.promo-text p {
  color: rgba(255,255,255,0.7);
  font-size: 15px;
  font-weight: 500;
  margin: 0;
  font-family: 'Inter', sans-serif;
}
.btn-promo {
  background: var(--orange);
  color: var(--black);
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 15px;
  padding: 16px 28px;
  border-radius: 999px;
  white-space: nowrap;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease);
}
.btn-promo:hover { transform: translateY(-2px); background: var(--white); }

/* ===================== STEPS ===================== */
.steps-section { background: var(--black); }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.step-card { text-align: center; padding: 10px; }
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px; height: 54px;
  border-radius: 50%;
  background: var(--panel);
  color: var(--orange);
  border: 2px solid var(--orange);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  margin-bottom: 20px;
}
.step-card h3 { font-size: 17px; font-weight: 700; margin: 0 0 10px 0; color: var(--white); }
.step-card p { font-size: 14px; font-weight: 300; color: var(--text-soft); line-height: 1.6; margin: 0 auto; max-width: 280px; }

/* ===================== MAP ===================== */
.map-section { background: var(--black); }
.map-wrap {
  width: 100%;
  height: 380px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 3px solid var(--orange);
}
.map-address {
  text-align: center;
  margin-top: 22px;
  font-size: 14px;
  font-weight: 400;
  color: var(--text-soft);
}

/* ===================== CTA FINAL ===================== */
.cta-final {
  background: var(--black);
  padding: 84px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-decor {
  position: absolute;
  top: 50%; left: 50%;
  width: 900px; height: 900px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(255,80,0,0.12) 0%, transparent 60%);
  pointer-events: none;
}
.cta-stripe {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    115deg,
    rgba(255,80,0,0.06) 0px,
    rgba(255,80,0,0.06) 2px,
    transparent 2px,
    transparent 50px
  );
  pointer-events: none;
}
.cta-final-inner { position: relative; z-index: 1; }
.cta-final h2 {
  color: var(--white);
  font-size: clamp(28px, 3.6vw, 40px);
  margin: 0 0 14px 0;
  text-transform: uppercase;
  max-width: 720px;
  margin-left: auto; margin-right: auto;
}
.cta-final p {
  color: rgba(255,255,255,0.6);
  font-size: 15px;
  font-weight: 300;
  margin: 0 0 36px 0;
}
.btn-cta-final {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--green);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 17px;
  padding: 19px 38px;
  border-radius: 999px;
  border: 2px solid var(--orange);
}
.pulse { animation: pulse-cta 2.1s infinite; }
@keyframes pulse-cta {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.55); }
  70% { box-shadow: 0 0 0 18px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* ===================== FOOTER ===================== */
.footer {
  background: var(--black);
  color: rgba(255,255,255,0.6);
  padding: 56px 0 30px 0;
  border-top: 3px solid var(--orange);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 36px;
}
.footer-logo-img { height: 56px; width: 56px; object-fit: cover; margin-bottom: 14px; border-radius: 50%; border: 2px solid var(--orange); }
.footer-col h4 {
  color: var(--orange);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin: 0 0 16px 0;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
}
.footer-col p { font-size: 13.5px; line-height: 1.8; margin: 0 0 8px 0; font-weight: 300; }
.footer-col a { color: rgba(255,255,255,0.75); }
.footer-col a:hover { color: var(--orange); }

/* ===================== WHATSAPP FLOAT ===================== */
.whatsapp-float {
  position: fixed;
  bottom: 22px;
  right: 22px;
  width: 60px; height: 60px;
  background: var(--green);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px -6px rgba(37,211,102,0.6);
  z-index: 100;
  animation: pulse-cta 2.5s infinite;
  border: 2px solid var(--orange);
}
.whatsapp-float svg { width: 30px; height: 30px; color: var(--white); }

/* ===================== SCROLL REVEAL (JS-driven) ===================== */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; gap: 36px; }
  .hero-content { max-width: 100%; }
  .hero-media-wrap { order: -1; }
  .hero-media { max-width: 320px; }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-featured { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; gap: 42px; }
  .footer-inner { grid-template-columns: 1fr; gap: 30px; }
  .promo-inner { justify-content: center; text-align: center; }
}

@media (max-width: 640px) {
  .topbar-inner { flex-direction: column; gap: 2px; }
  .topbar-sep { display: none; }
  .logo img { height: 46px; width: 46px; }
  .btn-header { font-size: 12.5px; padding: 8px 16px; }
  .hero { padding: 36px 0 50px 0; }
  .btn-cta-hero { width: 100%; justify-content: center; padding: 18px 20px; }
  .hero-stats { gap: 14px; flex-wrap: wrap; }
  .hero-stat-num { font-size: 28px; }
  .section { padding: 52px 0; }
  .benefits-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .map-wrap { height: 280px; }
  .whatsapp-float { width: 54px; height: 54px; bottom: 16px; right: 16px; }
  .whatsapp-float svg { width: 26px; height: 26px; }
  .cta-final { padding: 60px 0; }
  .btn-cta-final { width: calc(100% - 40px); justify-content: center; padding: 18px 20px; font-size: 15.5px; }
  .promo-text h2 { font-size: 28px; }
  .btn-promo { width: 100%; text-align: center; }
  .review-chip { min-width: 220px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .pulse, .whatsapp-float, .brands-track, .promo-stripes { animation: none; }
  * { transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}

/* Visible focus for accessibility */
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
}
