/* ============================================
   ACTON — Arquitetura Metálica
   Design: Uma (UX-Design-Expert)
   Tema: Dark Premium · Charcoal + Bronze Gold
============================================ */

:root {
  /* Paleta */
  --bg: #0a0a0a;
  --bg-soft: #111111;
  --bg-elev: #161616;
  --bg-alt: #0f0f0f;
  --line: #1f1f1f;
  --line-2: #2a2a2a;
  --text: #f3f1ec;
  --text-soft: #b8b3a8;
  --text-mute: #7a766d;
  --gold: #c9a961;
  --gold-2: #e0bf76;
  --gold-deep: #8c7338;
  --whatsapp: #25d366;
  --whatsapp-d: #128c4f;

  /* Tipo */
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;

  /* Sombras */
  --shadow-1: 0 6px 18px rgba(0,0,0,.35);
  --shadow-2: 0 18px 60px rgba(0,0,0,.55);
  --shadow-gold: 0 10px 30px rgba(201,169,97,.18);

  /* Ritmo */
  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 20px;
  --r-xl: 28px;
}

/* ===== RESET ===== */
*,*::before,*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; border: 0; cursor: pointer; background: none; color: inherit; }
ul { padding: 0; margin: 0; list-style: none; }
h1,h2,h3,h4 { margin: 0; font-weight: 600; line-height: 1.2; letter-spacing: -.01em; }

.container {
  width: 100%;
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: 24px;
}

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 18px 0;
  background: rgba(10,10,10,.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: padding .25s ease, background .25s ease, border-color .25s ease;
}
.header.is-scrolled {
  padding: 12px 0;
  background: rgba(10,10,10,.85);
  border-bottom-color: var(--line);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.brand__logo {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border-radius: 10px;
  background: #fff;
  padding: 4px;
  box-shadow: 0 6px 18px rgba(0,0,0,.45), 0 0 0 1px rgba(201,169,97,.35);
  transition: transform .25s ease, box-shadow .25s ease;
  flex-shrink: 0;
}
.brand:hover .brand__logo {
  transform: scale(1.05);
  box-shadow: 0 10px 26px rgba(0,0,0,.5), 0 0 0 1px var(--gold);
}
.brand__name {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: .12em;
}
.brand--lg .brand__logo { width: 56px; height: 56px; border-radius: 12px; }
.brand--lg .brand__name { font-size: 26px; }

.nav { display: flex; align-items: center; gap: 30px; }
.nav__link {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-soft);
  letter-spacing: .04em;
  transition: color .2s ease;
  position: relative;
}
.nav__link:hover { color: var(--text); }
.nav__link::after {
  content: '';
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width .25s ease;
}
.nav__link:hover::after { width: 100%; }
.nav__link--cta {
  padding: 10px 22px;
  border: 1px solid var(--gold);
  border-radius: 999px;
  color: var(--gold);
}
.nav__link--cta:hover {
  background: var(--gold);
  color: var(--bg);
}
.nav__link--cta::after { display: none; }

.nav__toggle {
  display: none;
  width: 44px; height: 44px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  border: 1px solid var(--line-2);
  border-radius: 8px;
}
.nav__toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text);
  transition: transform .25s ease, opacity .25s ease;
}
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-radius: 999px;
  transition: transform .2s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
  cursor: pointer;
  white-space: nowrap;
}
.btn--lg { padding: 20px 40px; font-size: 15px; }
.btn--gold {
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  color: var(--bg);
  box-shadow: var(--shadow-gold);
}
.btn--gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(201,169,97,.32);
}
.btn--ghost {
  border: 1px solid rgba(255,255,255,.18);
  color: var(--text);
  backdrop-filter: blur(8px);
}
.btn--ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0 80px;
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0;
  z-index: 0;
}
.hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(.18) contrast(1.05) brightness(.55);
  animation: heroZoom 22s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}
.hero__overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(201,169,97,.18), transparent 55%),
    linear-gradient(180deg, rgba(10,10,10,.4) 0%, rgba(10,10,10,.7) 60%, var(--bg) 100%);
}
.hero__content {
  position: relative;
  z-index: 1;
  max-width: 880px;
}
.hero__eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 8px 18px;
  border: 1px solid rgba(201,169,97,.4);
  border-radius: 999px;
  margin-bottom: 28px;
}
.hero__title {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 28px;
}
.hero__brand {
  font-family: var(--font-serif);
  font-size: clamp(60px, 11vw, 140px);
  font-weight: 700;
  letter-spacing: .04em;
  background: linear-gradient(135deg, #fff 30%, var(--gold) 80%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: .9;
}
.hero__sub {
  font-family: var(--font-serif);
  font-size: clamp(18px, 2.4vw, 28px);
  font-weight: 400;
  font-style: italic;
  color: var(--text-soft);
  letter-spacing: .02em;
}
.hero__lead {
  max-width: 680px;
  font-size: clamp(15px, 1.4vw, 18px);
  color: var(--text-soft);
  line-height: 1.75;
  margin: 0 0 32px;
}
.hero__lead strong { color: var(--text); font-weight: 600; }
.hero__lead em { color: var(--gold); font-style: normal; }
.hero__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin-bottom: 40px;
  font-size: 12px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--text-mute);
}
.hero__tags li::before {
  content: '◆ ';
  color: var(--gold);
  margin-right: 8px;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 24px; height: 40px;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 12px;
}
.hero__scroll span {
  display: block;
  width: 4px; height: 8px;
  background: var(--gold);
  border-radius: 2px;
  margin: 8px auto;
  animation: scrollPulse 1.6s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(10px); opacity: 0; }
}

/* ===== QUICK GRID ===== */
.quickgrid {
  padding: 80px 0;
  background: var(--bg);
}
.quickgrid__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.quickgrid__item {
  position: relative;
  margin: 0;
  border-radius: var(--r-md);
  overflow: hidden;
  aspect-ratio: 4/5;
  cursor: zoom-in;
}
.quickgrid__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s ease, filter .4s ease;
  filter: grayscale(.15) contrast(1.05);
}
.quickgrid__item:hover img { transform: scale(1.08); filter: none; }
.quickgrid__item figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 24px;
  background: linear-gradient(0deg, rgba(0,0,0,.85), transparent);
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: .02em;
}

/* ===== SECTIONS ===== */
.section { padding: 110px 0; }
.section--alt { background: var(--bg-soft); }

.section__head {
  text-align: left;
  max-width: 720px;
  margin-bottom: 64px;
}
.section__head--center {
  text-align: center;
  margin-inline: auto;
}
.section__eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.section__eyebrow::before {
  content: '— ';
  color: var(--gold-deep);
}
.section__title {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4.5vw, 54px);
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: -.01em;
}
.section__intro {
  font-size: 16px;
  color: var(--text-soft);
  line-height: 1.8;
  margin: 0;
}

/* ===== SERVICES ===== */
.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.service {
  position: relative;
  padding: 44px 36px;
  background: var(--bg);
  transition: background .35s ease, transform .35s ease;
}
.service:hover {
  background: var(--bg-elev);
  transform: translateY(-4px);
}
.service::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity .35s ease;
}
.service:hover::before { opacity: 1; }
.service__num {
  display: block;
  font-family: var(--font-serif);
  font-size: 14px;
  color: var(--gold);
  letter-spacing: .2em;
  margin-bottom: 16px;
}
.service h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 14px;
  color: var(--text);
}
.service p {
  font-size: 14.5px;
  color: var(--text-mute);
  line-height: 1.7;
  margin: 0;
}

/* ===== PORTFOLIO ===== */
.portfolio__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 48px;
  justify-content: flex-start;
}
.filter {
  padding: 12px 24px;
  font-size: 12.5px;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--text-mute);
  border: 1px solid var(--line-2);
  border-radius: 999px;
  transition: all .25s ease;
}
.filter:hover { color: var(--text); border-color: var(--text-mute); }
.filter.is-active {
  background: var(--gold);
  color: var(--bg);
  border-color: var(--gold);
}

.portfolio__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.portfolio__item {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: var(--r-sm);
  cursor: zoom-in;
  background: var(--bg-elev);
}
.portfolio__item.is-tall { grid-row: span 2; aspect-ratio: 1/2; }
.portfolio__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .7s ease, filter .4s ease;
  filter: grayscale(.2);
}
.portfolio__item:hover img {
  transform: scale(1.08);
  filter: none;
}
.portfolio__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,.6) 0%, transparent 40%);
  opacity: 0;
  transition: opacity .35s ease;
}
.portfolio__item:hover::after { opacity: 1; }
.portfolio__item.is-hidden { display: none; }

/* ===== DIFERENCIAIS ===== */
.diff__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.diff__item {
  padding: 36px 32px;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  transition: transform .3s ease, border-color .3s ease;
}
.diff__item:hover {
  transform: translateY(-6px);
  border-color: var(--gold-deep);
}
.diff__icon {
  font-size: 28px;
  color: var(--gold);
  margin-bottom: 18px;
}
.diff__item h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  margin-bottom: 12px;
}
.diff__item p {
  margin: 0;
  font-size: 14.5px;
  color: var(--text-mute);
  line-height: 1.7;
}

/* ===== ABOUT ===== */
.about__inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.about__media {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-2);
}
.about__media::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(201,169,97,.25);
  border-radius: var(--r-lg);
  z-index: 2;
  pointer-events: none;
}
.about__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(.12) contrast(1.05);
}
.about__content p {
  font-size: 16px;
  color: var(--text-soft);
  line-height: 1.85;
  margin: 0 0 20px;
}
.about__content strong { color: var(--text); }
.about__content em { color: var(--gold); font-style: normal; }

/* ===== MVV ===== */
.mvv__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.mvv__card {
  padding: 44px 36px;
  background: linear-gradient(160deg, var(--bg-elev), var(--bg-soft));
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  position: relative;
}
.mvv__card::before {
  content: '';
  position: absolute;
  top: 0; left: 36px; right: 36px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
}
.mvv__card h3 {
  font-family: var(--font-serif);
  font-size: 26px;
  margin-bottom: 18px;
  color: var(--gold);
}
.mvv__card p, .mvv__card li {
  font-size: 14.5px;
  color: var(--text-soft);
  line-height: 1.75;
}
.mvv__card ul li {
  padding: 6px 0;
  border-bottom: 1px solid var(--line);
}
.mvv__card ul li:last-child { border-bottom: 0; }
.mvv__card ul li strong { color: var(--text); }

/* ===== CTA / QUOTE ===== */
.cta {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(201,169,97,.1), transparent 60%),
    var(--bg);
  border-top: 1px solid var(--line);
}
.quote {
  max-width: 720px;
  margin: 0 auto;
  padding: 48px;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-2);
}
.quote__field { margin-bottom: 32px; }
.quote__field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.quote__options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.chip {
  padding: 12px 22px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-soft);
  background: var(--bg);
  border: 1px solid var(--line-2);
  border-radius: 999px;
  transition: all .2s ease;
}
.chip:hover { border-color: var(--gold-deep); color: var(--text); }
.chip.is-selected {
  background: var(--gold);
  color: var(--bg);
  border-color: var(--gold);
}
.quote__field input {
  width: 100%;
  padding: 16px 20px;
  font-family: inherit;
  font-size: 15px;
  color: var(--text);
  background: var(--bg);
  border: 1px solid var(--line-2);
  border-radius: var(--r-md);
  transition: border-color .2s ease;
}
.quote__field input:focus {
  outline: none;
  border-color: var(--gold);
}
.quote__submit { width: 100%; }

/* ===== FOOTER ===== */
.footer {
  background: #060606;
  border-top: 1px solid var(--line);
  padding-top: 80px;
}
.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
}
.footer__brand p {
  margin: 16px 0 8px;
  color: var(--text-soft);
  font-style: italic;
  font-family: var(--font-serif);
}
.footer__desc {
  font-style: normal !important;
  font-family: var(--font-sans) !important;
  font-size: 14px;
  color: var(--text-mute) !important;
  max-width: 320px;
}
.footer__col h4 {
  font-family: var(--font-serif);
  font-size: 18px;
  margin-bottom: 20px;
  color: var(--text);
}
.footer__col ul li {
  padding: 6px 0;
  font-size: 14px;
  color: var(--text-mute);
  transition: color .2s ease;
}
.footer__col ul li a:hover { color: var(--gold); }
.footer__bottom {
  border-top: 1px solid var(--line);
  padding: 24px 0;
}
.footer__bottom p {
  margin: 0;
  font-size: 12.5px;
  color: var(--text-mute);
  letter-spacing: .04em;
  text-align: center;
}

/* ===== WHATSAPP FLOAT ===== */
.wa-float {
  position: fixed;
  right: 24px; bottom: 24px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 24px 16px 20px;
  background: var(--whatsapp);
  color: #fff;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .04em;
  box-shadow: 0 12px 30px rgba(37,211,102,.35), 0 0 0 0 rgba(37,211,102,.5);
  transition: transform .25s ease, box-shadow .25s ease;
  animation: waPulse 2.4s ease-in-out infinite;
}
.wa-float:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 18px 40px rgba(37,211,102,.45);
}
@keyframes waPulse {
  0% { box-shadow: 0 12px 30px rgba(37,211,102,.35), 0 0 0 0 rgba(37,211,102,.55); }
  70% { box-shadow: 0 12px 30px rgba(37,211,102,.35), 0 0 0 18px rgba(37,211,102,0); }
  100% { box-shadow: 0 12px 30px rgba(37,211,102,.35), 0 0 0 0 rgba(37,211,102,0); }
}

/* ===== LIGHTBOX ===== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(0,0,0,.92);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
  backdrop-filter: blur(8px);
}
.lightbox.is-open { display: flex; }
.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--r-md);
  box-shadow: 0 30px 80px rgba(0,0,0,.6);
}
.lightbox__close,
.lightbox__nav {
  position: absolute;
  width: 56px; height: 56px;
  display: grid; place-items: center;
  font-size: 28px;
  color: var(--text);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 50%;
  transition: all .25s ease;
}
.lightbox__close:hover,
.lightbox__nav:hover { background: var(--gold); color: var(--bg); border-color: var(--gold); }
.lightbox__close { top: 30px; right: 30px; font-size: 22px; }
.lightbox__nav--prev { left: 30px; top: 50%; transform: translateY(-50%); }
.lightbox__nav--next { right: 30px; top: 50%; transform: translateY(-50%); }

/* ===== REVEAL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 980px) {
  .nav {
    position: fixed;
    top: 0; right: -100%;
    width: 80%; max-width: 340px;
    height: 100vh;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 100px 32px 32px;
    background: var(--bg-soft);
    border-left: 1px solid var(--line);
    transition: right .35s ease;
  }
  .nav.is-open { right: 0; }
  .nav__link { font-size: 18px; padding: 14px 0; width: 100%; }
  .nav__link--cta { margin-top: 16px; align-self: stretch; text-align: center; padding: 14px 22px; }
  .nav__toggle { display: flex; }

  .quickgrid__grid { grid-template-columns: 1fr; gap: 14px; }
  .portfolio__grid { grid-template-columns: repeat(2, 1fr); }
  .about__inner { grid-template-columns: 1fr; gap: 50px; }
  .mvv__grid { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; gap: 40px; }
  .section { padding: 80px 0; }
  .quickgrid { padding: 50px 0; }

  .quote { padding: 32px 24px; }
  .wa-float span { display: none; }
  .wa-float { padding: 16px; }

  .lightbox__nav, .lightbox__close { width: 44px; height: 44px; }
  .lightbox__close { top: 16px; right: 16px; }
  .lightbox__nav--prev { left: 12px; }
  .lightbox__nav--next { right: 12px; }
}

@media (max-width: 540px) {
  .container { padding-inline: 18px; }
  .hero { padding: 120px 0 60px; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { width: 100%; }
  .portfolio__grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .service { padding: 32px 26px; }
  .diff__item { padding: 28px 24px; }
  .mvv__card { padding: 32px 26px; }
}

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}
::selection { background: var(--gold); color: var(--bg); }
