/* Francês Veículos Oficina — steel grey + safety amber + off-white, industrial */
@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@400;500;600;700&family=Oswald:wght@500;600;700&display=swap');

:root {
  --steel-900: #1a1d23;
  --steel-800: #2a2f38;
  --steel-700: #3d4450;
  --steel-600: #525a68;
  --amber: #f5a623;
  --amber-dark: #d4890f;
  --amber-glow: rgba(245, 166, 35, 0.18);
  --off-white: #f5f4f0;
  --white: #ffffff;
  --surface: #ebeae6;
  --french-blue: #0055a4;
  --french-red: #ef4135;
  --text: #1a1d23;
  --text-muted: #5c6370;
  --text-light: #e8eaed;
  --border: rgba(26, 29, 35, 0.12);
  --whatsapp: #25d366;
  --font-display: 'Oswald', 'Bebas Neue', sans-serif;
  --font-body: 'Barlow', 'Inter', system-ui, sans-serif;
  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3.5rem;
  --space-3xl: 5rem;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --shadow-sm: 0 2px 16px rgba(26, 29, 35, 0.08);
  --shadow-md: 0 16px 48px rgba(26, 29, 35, 0.14);
  --shadow-lg: 0 28px 72px rgba(26, 29, 35, 0.2);
  --header-h: 72px;
  --mobile-bar-h: 64px;
  --max-width: 720px;
  --max-width-wide: 1100px;
  --transition: 0.28s ease;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; font-size: 100%; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--off-white);
  -webkit-font-smoothing: antialiased;
  padding-bottom: var(--mobile-bar-h);
}

body.menu-open { overflow: hidden; }

@media (min-width: 768px) {
  body { padding-bottom: 0; }
}

img { max-width: 100%; height: auto; display: block; }

a {
  color: var(--amber-dark);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover { color: var(--amber); }

:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 3px;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 var(--space-md);
  color: var(--steel-900);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

h1 { font-size: clamp(2rem, 5.5vw, 3.25rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.25rem); }
h3 { font-size: clamp(1.0625rem, 2vw, 1.25rem); text-transform: none; letter-spacing: 0; }

p { margin: 0 0 var(--space-md); }

.container {
  width: min(100% - 2rem, var(--max-width));
  margin-inline: auto;
}

.container--wide {
  width: min(100% - 2rem, var(--max-width-wide));
  margin-inline: auto;
}

.section { padding: var(--space-3xl) 0; }
.section--tight { padding: var(--space-2xl) 0; }
.section--light { background: var(--surface); }

.section__label {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber-dark);
  margin-bottom: var(--space-sm);
}

.section__label::before {
  content: '';
  width: 28px;
  height: 3px;
  background: var(--amber);
  border-radius: 2px;
}

.section__lead {
  font-size: 1.0625rem;
  color: var(--text-muted);
  max-width: 58ch;
}

.text-center { text-align: center; }
.mb-0 { margin-bottom: 0; }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }

.stripe-accent {
  height: 4px;
  background: linear-gradient(90deg, var(--french-blue) 33%, var(--white) 33%, var(--white) 66%, var(--french-red) 66%);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--steel-900);
  border-bottom: 1px solid rgba(245, 166, 35, 0.2);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  min-height: var(--header-h);
  padding: 0 var(--space-md);
  max-width: var(--max-width-wide);
  margin-inline: auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  text-decoration: none;
  color: var(--white);
  flex-shrink: 0;
}

.logo:hover { color: var(--white); }

.logo__mark {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--steel-800);
  border: 2px solid var(--amber);
  border-radius: var(--radius-sm);
}

.logo__mark svg { width: 28px; height: 28px; }

.logo__text { display: flex; flex-direction: column; line-height: 1.2; }

.logo__name {
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.logo__tag {
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--amber);
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 48px;
  height: 48px;
  padding: 12px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 200;
}

.nav-toggle__bar {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  border-radius: 1px;
  transition: transform var(--transition), opacity var(--transition);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.site-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  min-height: 100dvh;
  z-index: 150;
  background: var(--steel-900);
  padding: calc(var(--header-h) + var(--space-lg)) var(--space-md) calc(var(--mobile-bar-h) + var(--space-lg));
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.site-nav.is-open { display: block; }

.site-nav__list { list-style: none; margin: 0; padding: 0; }

.site-nav__link {
  display: block;
  padding: var(--space-md) 0;
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  min-height: 48px;
}

.site-nav__link:hover,
.site-nav__link[aria-current="page"] { color: var(--amber); }

.header-cta {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  flex-shrink: 0;
}

@media (max-width: 991px) {
  .header-cta .btn--outline { display: none; }
  .header-cta .btn--sm {
    padding: 0 0.65rem;
    font-size: 0.6875rem;
    min-height: 40px;
    max-width: 9rem;
    white-space: normal;
    line-height: 1.2;
    text-align: center;
  }
}

@media (min-width: 992px) {
  .nav-toggle { display: none; }
  .site-nav {
    display: block;
    position: static;
    min-height: auto;
    background: transparent;
    padding: 0;
    overflow: visible;
  }
  .site-nav__list {
    display: flex;
    gap: var(--space-md);
    align-items: center;
    flex-wrap: wrap;
  }
  .site-nav__link {
    font-size: 0.75rem;
    padding: var(--space-xs) 0;
    border: none;
    min-height: auto;
  }
}

@media (min-width: 1100px) {
  .site-nav__list { gap: var(--space-lg); }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  min-height: 48px;
  padding: 0 var(--space-lg);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}

.btn--sm {
  min-height: 44px;
  padding: 0 var(--space-md);
  font-size: 0.8125rem;
}

.btn--whatsapp {
  background: var(--whatsapp);
  color: #fff;
  border-color: var(--whatsapp);
}

.btn--whatsapp:hover {
  background: #1fb855;
  border-color: #1fb855;
  color: #fff;
}

.btn--primary {
  background: var(--amber);
  color: var(--steel-900);
  border-color: var(--amber);
}

.btn--primary:hover {
  background: var(--amber-dark);
  border-color: var(--amber-dark);
  color: var(--steel-900);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
}

.btn--outline:hover {
  border-color: var(--amber);
  color: var(--amber);
}

.btn--dark-outline {
  background: transparent;
  color: var(--steel-900);
  border-color: var(--steel-600);
}

.btn--dark-outline:hover {
  border-color: var(--amber-dark);
  color: var(--amber-dark);
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  align-items: center;
}

/* Full-bleed hero */
.hero {
  position: relative;
  min-height: clamp(420px, 75vh, 640px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: var(--text-light);
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(26, 29, 35, 0.72) 0%,
    rgba(26, 29, 35, 0.85) 50%,
    rgba(26, 29, 35, 0.92) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: var(--space-3xl) var(--space-md);
  max-width: 52rem;
}

.hero__content h1 {
  color: var(--white);
  margin-bottom: var(--space-md);
}

.hero__kicker {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--amber);
  background: rgba(245, 166, 35, 0.12);
  padding: var(--space-xs) var(--space-md);
  border-radius: 999px;
  margin-bottom: var(--space-md);
  border: 1px solid rgba(245, 166, 35, 0.35);
}

.hero__promise {
  font-size: 1.125rem;
  color: rgba(232, 234, 237, 0.9);
  max-width: 48ch;
  margin: 0 auto var(--space-xl);
}

.hero .btn-group { justify-content: center; }

/* Trust bar */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: var(--space-xl) 0;
}

.trust-bar__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
}

@media (min-width: 768px) {
  .trust-bar__grid { grid-template-columns: repeat(4, 1fr); }
}

.trust-bar__item { text-align: center; }

.trust-bar__value {
  font-family: var(--font-display);
  font-size: clamp(1.375rem, 3vw, 1.875rem);
  font-weight: 700;
  color: var(--steel-900);
  margin: 0;
  line-height: 1.2;
}

.trust-bar__label {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin: var(--space-xs) 0 0;
}

/* Cards */
.card-stack {
  display: grid;
  gap: var(--space-lg);
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .card-stack--3 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 992px) {
  .card-stack--3 { grid-template-columns: repeat(3, 1fr); }
}

.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: box-shadow var(--transition), transform var(--transition);
}

.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.card__img {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--surface);
}

.card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card__body { padding: var(--space-lg); }

.card__price {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--amber-dark);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: var(--space-xs);
}

/* Benefits */
.benefits {
  display: grid;
  gap: var(--space-lg);
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .benefits--4 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 992px) {
  .benefits--4 { grid-template-columns: repeat(4, 1fr); }
}

.benefit {
  padding: var(--space-lg);
  background: var(--white);
  border-radius: var(--radius-md);
  border-top: 4px solid var(--amber);
  box-shadow: var(--shadow-sm);
}

.benefit h3 { margin-bottom: var(--space-sm); }

/* Testimonials */
.rating-badge {
  display: inline-block;
  font-weight: 700;
  color: var(--amber-dark);
  background: var(--amber-glow);
  padding: var(--space-xs) var(--space-md);
  border-radius: 999px;
  border: 1px solid rgba(245, 166, 35, 0.35);
}

.testimonials {
  display: grid;
  gap: var(--space-lg);
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .testimonials--3 { grid-template-columns: repeat(3, 1fr); }
}

.testimonial {
  background: var(--white);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  margin: 0;
}

.testimonial__text {
  font-size: 1rem;
  font-style: italic;
  margin-bottom: var(--space-md);
}

.testimonial__author {
  font-style: normal;
  font-weight: 700;
  color: var(--steel-900);
}

.testimonial__meta {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin: 0;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

@media (min-width: 768px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--surface);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-item__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-sm) var(--space-md);
  background: linear-gradient(transparent, rgba(26, 29, 35, 0.88));
  color: #fff;
  font-size: 0.8125rem;
  font-weight: 600;
}

/* Location */
.location-block {
  display: grid;
  gap: var(--space-xl);
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .location-block { grid-template-columns: 1fr 1.2fr; align-items: start; }
}

.hours-list {
  list-style: none;
  margin: 0 0 var(--space-lg);
  padding: 0;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: var(--space-sm) 0;
  border-bottom: 1px solid var(--border);
}

.map-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4/3;
  background: var(--surface);
}

.map-embed iframe,
.footer__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  min-height: 280px;
}

/* FAQ */
.faq-list { max-width: 720px; margin-inline: auto; }

.faq-item {
  border-bottom: 1px solid var(--border);
  background: var(--white);
}

.faq-item__question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: var(--space-lg);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  text-align: left;
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--steel-900);
  min-height: 48px;
  gap: var(--space-md);
}

.faq-item__question:hover { color: var(--amber-dark); }

.faq-item__icon {
  font-size: 1.5rem;
  color: var(--amber);
  flex-shrink: 0;
  transition: transform var(--transition);
}

.faq-item.is-open .faq-item__icon { transform: rotate(45deg); }

.faq-item__answer {
  display: none;
  padding: 0 var(--space-lg) var(--space-lg);
}

.faq-item.is-open .faq-item__answer { display: block; }

.faq-item__answer p { color: var(--text-muted); margin: 0; }

/* CTA band */
.cta-band {
  background: linear-gradient(135deg, var(--steel-900) 0%, var(--steel-800) 100%);
  color: var(--text-light);
  padding: var(--space-3xl) 0;
  text-align: center;
}

.cta-band h2 { color: var(--white); }

.cta-band p {
  color: rgba(232, 234, 237, 0.85);
  max-width: 52ch;
  margin-inline: auto;
  margin-bottom: var(--space-xl);
}

/* Page hero */
.page-hero {
  background: var(--steel-900);
  color: var(--text-light);
  padding: var(--space-2xl) 0;
}

.page-hero h1 { color: var(--white); }

.page-hero p,
.page-hero .section__lead {
  color: rgba(232, 234, 237, 0.85);
  max-width: 60ch;
  font-size: 1.0625rem;
}

.page-hero__breadcrumb {
  font-size: 0.875rem;
  margin-bottom: var(--space-md);
}

.page-hero__breadcrumb a {
  color: var(--amber);
  text-decoration: none;
}

.page-hero__breadcrumb a:hover { text-decoration: underline; }

/* Price table */
.price-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.price-table th,
.price-table td {
  padding: var(--space-md) var(--space-lg);
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.price-table th {
  background: var(--steel-900);
  color: var(--white);
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.875rem;
}

.price-table tr:last-child td { border-bottom: none; }

.price-table td:last-child {
  font-weight: 700;
  color: var(--amber-dark);
  white-space: nowrap;
}

/* Area tags */
.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.area-tag {
  display: inline-block;
  padding: var(--space-xs) var(--space-md);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--steel-700);
}

/* Orçamento */
.orcamento-steps {
  display: grid;
  gap: var(--space-xl);
  margin: var(--space-xl) 0;
}

.orcamento-step {
  display: flex;
  gap: var(--space-lg);
  align-items: flex-start;
}

.orcamento-step__num {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--steel-900);
  background: var(--amber);
  border-radius: 50%;
}

.orcamento-cta {
  text-align: center;
  padding: var(--space-2xl);
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  margin-top: var(--space-xl);
}

/* Team */
.team-grid {
  display: grid;
  gap: var(--space-xl);
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .team-grid { grid-template-columns: repeat(3, 1fr); }
}

.team-member {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}

.team-member__img img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.team-member__role {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--amber-dark);
  margin: var(--space-lg) var(--space-lg) var(--space-xs);
}

.team-member h3 {
  margin: 0 var(--space-lg) var(--space-sm);
  text-transform: none;
}

.team-member p {
  margin: 0 var(--space-lg) var(--space-lg);
  color: var(--text-muted);
  font-size: 0.9375rem;
}

/* Legal */
.legal-content h2 {
  margin-top: var(--space-2xl);
  font-size: 1.25rem;
  text-transform: none;
}

.legal-content ul { padding-left: var(--space-lg); }

/* Footer */
.site-footer {
  background: var(--steel-900);
  color: rgba(232, 234, 237, 0.8);
  padding: var(--space-3xl) 0 var(--space-xl);
}

.footer-grid {
  display: grid;
  gap: var(--space-xl);
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 992px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
}

.footer__title {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--space-md);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.footer__nap { line-height: 1.8; }

.footer__nap a { color: var(--amber); text-decoration: none; }
.footer__nap a:hover { text-decoration: underline; }

.footer__list { list-style: none; margin: 0; padding: 0; }
.footer__list li { margin-bottom: var(--space-sm); }

.footer__list a {
  color: rgba(232, 234, 237, 0.8);
  text-decoration: none;
}

.footer__list a:hover { color: var(--amber); }

.footer__map {
  margin-top: var(--space-md);
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 16/9;
}

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--space-md);
  margin-top: var(--space-2xl);
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.8125rem;
}

/* Mobile bar */
.mobile-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  display: flex;
  height: var(--mobile-bar-h);
  background: var(--steel-900);
  border-top: 1px solid rgba(245, 166, 35, 0.2);
  box-shadow: 0 -4px 20px rgba(26, 29, 35, 0.25);
}

@media (min-width: 768px) {
  .mobile-bar { display: none; }
}

.mobile-bar__btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9375rem;
  text-decoration: none;
  color: #fff;
  min-height: 48px;
}

.mobile-bar__btn--wa { background: var(--whatsapp); }
.mobile-bar__btn--wa:hover { background: #1fb855; color: #fff; }
.mobile-bar__btn--call { background: var(--amber); color: var(--steel-900); }
.mobile-bar__btn--call:hover { background: var(--amber-dark); color: var(--steel-900); }
