:root {
  --color-navy: #0b1b2b;
  --color-navy-deep: #07111d;
  --color-paper: #ffffff;
  --color-white: #ffffff;
  --color-gold: #a87b2d;
  --color-gold-dark: #76551d;
  --color-action-blue: #2f5f93;
  --color-action-blue-dark: #24486f;
  --color-wood: #6b4b2f;
  --color-text: #1e252c;
  --color-muted: #59636f;
  --color-line: #aeb7c2;
  --color-placeholder: #e5e8ec;
  --color-whatsapp: #25d366;
  --font-title: Georgia, "Times New Roman", serif;
  --font-body: Tahoma, Arial, "Segoe UI", sans-serif;
  --container: 1180px;
  --shadow-soft: 0 2px 5px rgba(11, 27, 43, 0.14);
  --shadow-card: 0 3px 8px rgba(11, 27, 43, 0.18);
  --radius: 2px;
  --header-height: 116px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-paper);
  line-height: 1.6;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

input,
textarea {
  width: 100%;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--font-title);
  line-height: 1.1;
  color: var(--color-navy);
}

h1 {
  font-size: 2.55rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.45rem;
}

p {
  margin: 0;
}

.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 9999;
  padding: 10px 14px;
  background: var(--color-gold);
  color: var(--color-navy);
  border-radius: var(--radius);
  transform: translateY(-140%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--color-white);
  border-bottom: 1px solid var(--color-line);
  box-shadow: 0 2px 5px rgba(7, 17, 29, 0.14);
}

.top-bar {
  background: linear-gradient(#10253a, var(--color-navy-deep));
  color: var(--color-white);
  padding: 8px 16px;
  text-align: center;
}

.top-bar p {
  font-size: 0.78rem;
  letter-spacing: 0;
  text-transform: uppercase;
  font-weight: 600;
}

.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.brand-logo {
  display: block;
  width: auto;
  height: 66px;
  max-width: 170px;
  object-fit: contain;
}

.primary-nav {
  position: fixed;
  inset: var(--header-height) 0 auto 0;
  display: grid;
  gap: 6px;
  padding: 18px 16px 22px;
  background: var(--color-white);
  border-top: 1px solid var(--color-line);
  box-shadow: 0 3px 8px rgba(7, 17, 29, 0.16);
  transform: translateY(-130%);
  opacity: 0;
  pointer-events: none;
  transition: transform 220ms ease, opacity 220ms ease;
}

.primary-nav.is-open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.primary-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  color: var(--color-navy);
  font-size: 0.92rem;
  font-weight: 700;
  text-transform: uppercase;
}

.primary-nav a.active,
.primary-nav a:not(.btn):hover,
.primary-nav a:not(.btn):focus {
  color: var(--color-gold-dark);
}

.nav-toggle {
  display: inline-grid;
  gap: 5px;
  width: 44px;
  height: 44px;
  place-content: center;
  padding: 0;
  border: 1px solid #8e99a6;
  border-radius: var(--radius);
  background: linear-gradient(#ffffff, #e9edf2);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-navy);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 0.86rem;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.2;
  transition: box-shadow 160ms ease, background-color 160ms ease, color 160ms ease, border-color 160ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: none;
}

.btn-gold {
  background: linear-gradient(#c0933f, var(--color-gold));
  color: var(--color-navy);
  border-color: var(--color-gold-dark);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35), 0 1px 2px rgba(11, 27, 43, 0.16);
}

.btn-gold:hover,
.btn-gold:focus-visible {
  background: linear-gradient(#b48635, #916722);
  border-color: #624615;
}

.btn-light {
  background: linear-gradient(#ffffff, #e9edf2);
  color: var(--color-navy);
  border-color: #b9c2cc;
}

.btn-light:hover,
.btn-light:focus-visible {
  background: linear-gradient(#f7f9fb, #dce2e8);
}

.btn-outline {
  background: #ffffff;
  color: var(--color-navy);
  border-color: var(--color-gold-dark);
}

.btn-outline:hover,
.btn-outline:focus-visible {
  background: linear-gradient(#f7f2e8, #e1cfaa);
}

.nav-cta {
  width: 100%;
}

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  align-items: center;
  overflow: hidden;
  background-color: var(--color-navy);
  background-position: center;
  background-size: cover;
}

/* IMAGEM/HOME:
   Trocar esta URL por uma foto real de textura de madeira nobre, preferencialmente hospedada em /img/hero-madeira.webp.
   Exemplo final: background-image: url("../../img/hero-madeira.webp"); */
.hero-home {
  min-height: calc(100vh - var(--header-height));
  background-image: url("https://images.unsplash.com/photo-1519710164239-da123dc03ef4?auto=format&fit=crop&w=1920&q=80");
}

/* IMAGEM/INTERNAS:
   Trocar esta URL por foto real da fachada, fábrica ou detalhe de produção da Madeferro. */
.hero-internal {
  min-height: 40vh;
  background-image: url("https://images.unsplash.com/photo-1504917595217-d4dc5ebe6122?auto=format&fit=crop&w=1600&q=80");
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(7, 17, 29, 0.82), rgba(7, 17, 29, 0.60)), rgba(7, 17, 29, 0.52);
}

.hero-content {
  max-width: 900px;
  padding-block: 72px;
  text-align: center;
  color: var(--color-white);
}

.hero-home-content {
  max-width: 1120px;
  padding-block: 58px 54px;
}

.hero-content h1 {
  color: var(--color-white);
  text-wrap: balance;
}

.hero-home-content h1 {
  max-width: 980px;
  margin-inline: auto;
  font-size: 2.35rem;
  line-height: 1.05;
}

.hero-content > p:not(.eyebrow) {
  max-width: 680px;
  margin: 22px auto 0;
  font-size: 1.05rem;
}

.hero-content > p.hero-lead {
  max-width: 920px;
  margin-top: 20px;
}

.hero-meta {
  display: grid;
  gap: 0;
  max-width: 920px;
  margin: 28px auto 0;
  border: 1px solid rgba(255, 255, 255, 0.44);
  background: rgba(7, 17, 29, 0.44);
}

.hero-meta div {
  padding: 16px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.26);
}

.hero-meta div:last-child {
  border-bottom: 0;
}

.hero-meta strong {
  display: block;
  color: var(--color-gold);
  font-family: var(--font-title);
  font-size: 1.45rem;
  line-height: 1;
}

.hero-meta span {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.90);
  font-size: 0.84rem;
  font-weight: 700;
  text-transform: uppercase;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 30px;
}

.hero-actions .btn {
  min-width: 218px;
}

.eyebrow {
  margin-bottom: 12px;
  color: var(--color-gold);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.section {
  padding: 72px 0;
}

.section-muted {
  background: #f3f5f7;
  border-block: 1px solid var(--color-line);
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 36px;
  text-align: center;
}

.section-heading.align-left {
  margin-inline: 0;
  text-align: left;
}

.section-heading p:not(.eyebrow) {
  margin-top: 14px;
  color: var(--color-muted);
}

.featured-grid,
.product-grid,
.benefit-grid,
.principles-grid {
  display: grid;
  gap: 22px;
}

.featured-card,
.product-card,
.benefit-card,
.principle-card,
.form-panel,
.contact-card,
.summary-panel {
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: var(--color-white);
  box-shadow: var(--shadow-soft);
}

.featured-card {
  overflow: hidden;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.featured-card:hover {
  border-color: #7f8b99;
  box-shadow: var(--shadow-card);
}

.card-body,
.product-card-body {
  padding: 22px;
}

.card-body p,
.product-card-body p,
.benefit-card p,
.principle-card p {
  margin-top: 10px;
  color: var(--color-muted);
}

.benefit-card,
.principle-card {
  padding: 24px;
}

.benefit-card {
  border-top: 4px solid var(--color-action-blue);
}

.history-copy {
  max-width: 920px;
  padding: 24px;
  border: 1px solid var(--color-line);
  border-left: 4px solid var(--color-gold);
  background: var(--color-white);
  box-shadow: var(--shadow-soft);
}

.history-copy p + p {
  margin-top: 16px;
}

.principle-card {
  border-top: 4px solid var(--color-gold);
}

.values-card {
  grid-column: 1 / -1;
}

.values-list {
  display: grid;
  gap: 12px;
  margin: 14px 0 0;
  padding-left: 20px;
  color: var(--color-muted);
}

.values-list strong {
  color: var(--color-navy);
}

.product-photo {
  min-height: 210px;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.50), rgba(255, 255, 255, 0) 42%),
    var(--color-placeholder);
  border-bottom: 1px solid var(--color-line);
}

.product-photo.has-image {
  min-height: 0;
  height: 220px;
  background: #d9dde2;
}

.product-photo.has-image::before {
  display: none;
}

.product-photo.has-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.86) contrast(1.02);
}

.photo-note {
  position: absolute;
  left: 10px;
  bottom: 10px;
  padding: 5px 8px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  background: rgba(7, 17, 29, 0.78);
  color: var(--color-white);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
}

.product-photo::before {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  top: 28%;
  height: 44%;
  border-radius: var(--radius);
  border: 1px solid #9aa5b2;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.28), rgba(0, 0, 0, 0.04));
  box-shadow: inset 0 -24px 36px rgba(7, 17, 29, 0.10);
}

.product-photo-wood {
  background-color: #d9dde2;
}

.product-photo-dark {
  background-color: #c7cdd4;
}

.product-photo-gold {
  background-color: #d9d2c2;
}

.product-photo-soft {
  background-color: #eceff2;
}

.company-summary {
  display: grid;
  gap: 32px;
}

.summary-copy p:not(.eyebrow) {
  margin-top: 16px;
  color: var(--color-muted);
}

.summary-copy .btn {
  margin-top: 28px;
}

.summary-panel {
  display: grid;
  gap: 1px;
  overflow: hidden;
  align-self: start;
  background: var(--color-line);
}

.summary-panel div {
  padding: 28px;
  background: var(--color-white);
}

.summary-panel strong {
  display: block;
  color: var(--color-gold-dark);
  font-family: var(--font-title);
  font-size: 2.4rem;
  line-height: 1;
}

.summary-panel span {
  display: block;
  margin-top: 8px;
  color: var(--color-muted);
  font-weight: 600;
}

.timeline {
  position: relative;
  display: grid;
  gap: 24px;
  margin-top: 36px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 32px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: var(--color-line);
}

.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 66px 1fr;
  gap: 18px;
}

.timeline-year {
  position: relative;
  z-index: 1;
  display: inline-grid;
  place-items: center;
  width: 66px;
  height: 66px;
  border: 2px solid var(--color-gold);
  border-radius: var(--radius);
  background: var(--color-paper);
  color: var(--color-navy);
  font-weight: 800;
}

.timeline-content {
  padding: 24px;
  border-left: 4px solid var(--color-gold);
  border-radius: var(--radius);
  background: var(--color-white);
  box-shadow: var(--shadow-soft);
}

.timeline-content p {
  margin-top: 12px;
  color: var(--color-muted);
}

.structure-grid {
  display: grid;
  gap: 18px;
}

.structure-item {
  position: relative;
  min-height: 250px;
  overflow: hidden;
  margin: 0;
  border-radius: var(--radius);
  background: var(--color-navy);
  border: 1px solid var(--color-line);
  box-shadow: var(--shadow-soft);
}

.structure-item img {
  height: 100%;
  min-height: 250px;
  object-fit: cover;
  opacity: 0.86;
  transition: opacity 160ms ease;
}

.structure-item:hover img {
  opacity: 1;
}

.structure-item figcaption {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 8px 12px;
  border-radius: var(--radius);
  background: rgba(7, 17, 29, 0.82);
  color: var(--color-white);
  font-size: 0.86rem;
  font-weight: 700;
}

.catalog-intro,
.contact-hero {
  padding: 58px 0 42px;
  background: linear-gradient(#ffffff, #f3f5f7);
  border-bottom: 1px solid var(--color-line);
}

.catalog-intro h1,
.contact-hero h1 {
  max-width: 780px;
  font-size: 2.3rem;
}

.catalog-intro p:not(.eyebrow),
.contact-hero p:not(.eyebrow) {
  max-width: 700px;
  margin-top: 14px;
  color: var(--color-muted);
}

.filter-bar {
  position: sticky;
  top: var(--header-height);
  z-index: 900;
  padding: 12px 0;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--color-line);
  backdrop-filter: blur(10px);
}

.filter-actions {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 2px;
}

.filter-button {
  min-width: max-content;
  padding: 11px 18px;
  border: 1px solid #8e99a6;
  border-radius: var(--radius);
  background: linear-gradient(#ffffff, #e8edf3);
  color: var(--color-navy);
  font-weight: 800;
  cursor: pointer;
  transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.filter-button:hover,
.filter-button:focus-visible,
.filter-button.active {
  border-color: var(--color-action-blue-dark);
  background: linear-gradient(#3b72ad, var(--color-action-blue));
  color: var(--color-white);
}

.product-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.catalog-notice {
  margin-bottom: 24px;
  padding: 20px 22px;
  border: 1px solid var(--color-line);
  border-left: 4px solid var(--color-action-blue);
  background: #f3f5f7;
  box-shadow: var(--shadow-soft);
}

.catalog-notice h2 {
  font-size: 1.7rem;
}

.catalog-notice p {
  max-width: 880px;
  margin-top: 8px;
  color: var(--color-muted);
}

.product-card[hidden] {
  display: none;
}

.product-category {
  margin: 0;
  color: var(--color-gold-dark);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.product-card h2 {
  margin-top: 6px;
  font-size: 1.65rem;
}

.btn-product {
  width: 100%;
  margin-top: 20px;
  background: linear-gradient(#163453, var(--color-navy));
  color: var(--color-white);
  border-color: #06101a;
}

.btn-product:hover,
.btn-product:focus-visible {
  background: linear-gradient(#3b72ad, var(--color-action-blue));
  color: var(--color-white);
  border-color: var(--color-action-blue-dark);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28), 0 1px 3px rgba(11, 27, 43, 0.20);
}

.contact-layout {
  display: grid;
  gap: 28px;
}

.contact-info h2 {
  margin-bottom: 16px;
}

.contact-info > p:not(.eyebrow) {
  color: var(--color-muted);
}

.contact-card-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.contact-card {
  padding: 18px;
}

.contact-card span {
  display: block;
  color: var(--color-muted);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
}

.contact-card a {
  display: inline-block;
  margin-top: 6px;
  color: var(--color-navy);
  font-size: 1.12rem;
  font-weight: 800;
}

.contact-whatsapp {
  width: 100%;
  margin-top: 20px;
}

.form-panel {
  padding: 22px;
}

.form-panel > p {
  margin-top: 8px;
  color: var(--color-muted);
}

.lead-form {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.form-field {
  display: grid;
  gap: 8px;
}

.form-field label {
  color: var(--color-navy);
  font-size: 0.88rem;
  font-weight: 800;
}

.form-field input,
.form-field textarea {
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid #9aa5b2;
  border-radius: var(--radius);
  background: var(--color-white);
  color: var(--color-text);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.form-field textarea {
  min-height: 140px;
  resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--color-action-blue);
  box-shadow: 0 0 0 2px rgba(47, 95, 147, 0.20);
}

.form-submit {
  width: 100%;
  min-height: 54px;
  margin-top: 4px;
}

.form-status {
  min-height: 24px;
  color: var(--color-navy);
  font-weight: 700;
}

.site-footer {
  padding: 52px 0;
  background: var(--color-navy);
  color: rgba(255, 255, 255, 0.86);
}

.footer-grid {
  display: grid;
  gap: 30px;
}

.site-footer h2 {
  margin-bottom: 16px;
  color: var(--color-white);
  font-size: 1.35rem;
}

.footer-links {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links a,
.site-footer address a {
  color: rgba(255, 255, 255, 0.86);
  transition: color 180ms ease;
}

.footer-links a:hover,
.footer-links a:focus-visible,
.site-footer address a:hover,
.site-footer address a:focus-visible {
  color: var(--color-gold);
}

.site-footer address {
  font-style: normal;
}

.map-frame {
  width: 100%;
  min-height: 220px;
  border: 1px solid #324358;
  border-radius: var(--radius);
  filter: grayscale(18%);
}

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 1200;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  padding: 0;
  border: 1px solid #0c8f3f;
  border-radius: 50%;
  background: var(--color-whatsapp);
  color: var(--color-white);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.28);
  transition: box-shadow 160ms ease, filter 160ms ease;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  filter: brightness(0.96);
  box-shadow: 0 3px 7px rgba(0, 0, 0, 0.32);
}

.whatsapp-icon {
  display: block;
  width: 44px;
  height: 44px;
}

.whatsapp-icon path:first-child {
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
}

.whatsapp-icon path:last-child {
  fill: currentColor;
}

@media (min-width: 640px) {
  h1 {
    font-size: 3.7rem;
  }

  h2 {
    font-size: 2.35rem;
  }

  .catalog-intro h1,
  .contact-hero h1 {
    font-size: 3rem;
  }

  .hero-home-content h1 {
    font-size: 3.25rem;
  }

  .hero-meta {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero-meta div {
    border-right: 1px solid rgba(255, 255, 255, 0.26);
    border-bottom: 0;
  }

  .hero-meta div:last-child {
    border-right: 0;
  }

  .featured-grid,
  .product-grid,
  .benefit-grid,
  .principles-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lead-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .form-field.full,
  .form-submit,
  .form-status {
    grid-column: 1 / -1;
  }
}

@media (min-width: 860px) {
  :root {
    --header-height: 124px;
  }

  .header-inner {
    min-height: 90px;
  }

  .brand-logo {
    height: 74px;
    max-width: 190px;
  }

  .nav-toggle {
    display: none;
  }

  .primary-nav {
    position: static;
    display: flex;
    align-items: center;
    gap: 22px;
    padding: 0;
    border: 0;
    box-shadow: none;
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }

  .primary-nav a {
    justify-content: flex-start;
    min-height: auto;
  }

  .nav-cta {
    width: auto;
  }

  .hero-content {
    padding-block: 96px;
  }

  .hero-home-content {
    padding-block: 70px 64px;
  }

  .hero-content > p:not(.eyebrow) {
    font-size: 1.22rem;
  }

  .hero-content > p.hero-lead {
    font-size: 1.08rem;
  }

  .contact-card a {
    font-size: 1.35rem;
  }

  .company-summary,
  .contact-layout {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
    align-items: start;
  }

  .summary-copy {
    padding-right: 24px;
  }

  .structure-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .structure-item.large {
    grid-column: span 2;
    grid-row: span 2;
  }

  .structure-item.wide {
    grid-column: span 2;
  }

  .footer-grid {
    grid-template-columns: 0.8fr 1fr 1.2fr;
  }
}

@media (min-width: 1080px) {
  h1 {
    font-size: 5.4rem;
  }

  h2 {
    font-size: 3rem;
  }

  .hero-content > p:not(.eyebrow) {
    font-size: 1.35rem;
  }

  .hero-home-content h1 {
    font-size: 4.05rem;
  }

  .hero-content > p.hero-lead {
    font-size: 1.12rem;
  }

  .catalog-intro h1,
  .contact-hero h1 {
    font-size: 4rem;
  }

  .contact-card a {
    font-size: 1.55rem;
  }

  .featured-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .benefit-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

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