/* ============================================================
   FRIGORÍFICO SARUÊ — Design System Styles
   ============================================================ */

/* ---------- RESET & BASE ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Palette */
  --primary: #7A1218;
  --primary-dark: #4B070B;
  --accent: #C89B3C;
  --accent-light: #F2D48A;
  --bg-cream: #FFF8EC;
  --bg-light: #FAFAF7;
  --text-dark: #1E1E1E;
  --text-muted: #6B6B6B;
  --white: #FFFFFF;
  --border: #E8DED2;
  --footer-bg: #2A0507;

  /* Typography */
  --font-heading: 'Playfair Display', 'Merriweather', Georgia, serif;
  --font-body: 'Inter', 'Montserrat', system-ui, sans-serif;

  /* Spacing (8px scale) */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;
  --space-4xl: 96px;

  /* Layout */
  --container-max: 1200px;
  --section-pad-desktop: 96px 24px;
  --section-pad-mobile: 64px 20px;
  --radius-card: 20px;
  --radius-btn: 999px;
  --shadow-card: 0 20px 50px rgba(0, 0, 0, .08);
  --shadow-elevated: 0 10px 40px rgba(0, 0, 0, .12);

  /* Transitions */
  --transition: all .25s ease;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--bg-light);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

address {
  font-style: normal;
}

/* ---------- CONTAINER ---------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- SECTION ---------- */
.section {
  padding: var(--section-pad-desktop);
}

.section__header {
  text-align: center;
  margin-bottom: var(--space-3xl);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.section__tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--accent);
  background: rgba(200, 155, 60, .08);
  padding: 6px 18px;
  border-radius: var(--radius-btn);
  margin-bottom: var(--space-md);
}

.section__title {
  font-family: var(--font-heading);
  font-size: clamp(30px, 4.5vw, 48px);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: var(--space-md);
}

.section__desc {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: var(--radius-btn);
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
  line-height: 1.2;
}

.btn--primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.btn--primary:hover,
.btn--primary:focus-visible {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(122, 18, 24, .3);
}

.btn--secondary {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}

.btn--secondary:hover,
.btn--secondary:focus-visible {
  background: var(--accent-light);
  color: var(--primary-dark);
  border-color: var(--accent-light);
  transform: translateY(-2px);
}

.btn--accent {
  background: var(--accent);
  color: var(--primary-dark);
  border-color: var(--accent);
}

.btn--accent:hover,
.btn--accent:focus-visible {
  background: #d4a844;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(200, 155, 60, .35);
}

.btn--outline-light {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn--outline-light:hover,
.btn--outline-light:focus-visible {
  background: var(--white);
  color: var(--primary);
  transform: translateY(-2px);
}

.btn--lg {
  padding: 18px 40px;
  font-size: 16px;
}

.btn:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

/* ---------- HEADER ---------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, .85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.header--scrolled {
  box-shadow: 0 4px 30px rgba(0, 0, 0, .06);
  background: rgba(255, 255, 255, .95);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: var(--space-lg);
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 700;
  color: var(--primary);
  flex-shrink: 0;
}

.header__logo-icon {
  font-size: 32px;
}

.header__menu {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.header__link {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
  padding: 8px 0;
  position: relative;
  transition: var(--transition);
}

.header__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: var(--transition);
}

.header__link:hover,
.header__link:focus-visible,
.header__link.active {
  color: var(--primary);
}

.header__link:hover::after,
.header__link:focus-visible::after,
.header__link.active::after {
  width: 100%;
}

.header__cta {
  flex-shrink: 0;
  padding: 10px 22px;
  font-size: 13px;
}

/* Hamburger */
.header__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.header__hamburger-line {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: var(--transition);
}

.header__hamburger.active .header__hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.header__hamburger.active .header__hamburger-line:nth-child(2) {
  opacity: 0;
}

.header__hamburger.active .header__hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(75, 7, 11, .92) 0%, rgba(122, 18, 24, .82) 50%, rgba(30, 30, 30, .7) 100%),
    url('../images/bovino.jpg') center/cover no-repeat;
  z-index: 0;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 0%, rgba(0, 0, 0, .3) 100%);
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 120px 24px 80px;
}

.hero__badge {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--accent-light);
  background: rgba(200, 155, 60, .12);
  padding: 8px 22px;
  border-radius: var(--radius-btn);
  margin-bottom: var(--space-lg);
  border: 1px solid rgba(200, 155, 60, .25);
}

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(38px, 7vw, 72px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: var(--space-lg);
}

.hero__subtitle {
  font-size: clamp(16px, 2vw, 18px);
  color: rgba(255, 255, 255, .75);
  max-width: 650px;
  margin: 0 auto var(--space-2xl);
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.hero__scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 32px;
  height: 52px;
  border: 2px solid rgba(255, 255, 255, .3);
  border-radius: 16px;
  display: flex;
  justify-content: center;
  padding-top: 10px;
}

.hero__scroll-indicator span {
  display: block;
  width: 4px;
  height: 10px;
  background: var(--white);
  border-radius: 2px;
  animation: scrollBounce 1.8s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 0.4; }
  50% { transform: translateY(6px); opacity: 1; }
}

/* ---------- PRODUTOS ---------- */
.produtos {
  background: var(--white);
}

.produtos__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: var(--space-xl);
}

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

.card-produto:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-elevated);
}

.card-produto__img {
  height: 220px;
  background: #e0d5c8 center/cover no-repeat;
  position: relative;
  overflow: hidden;
}

.card-produto:hover .card-produto__img {
  transform: scale(1.05);
}

.card-produto__img {
  transition: transform .4s ease;
}

.card-produto__cat {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--primary);
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 5px 14px;
  border-radius: var(--radius-btn);
}

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

.card-produto__name {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: var(--space-sm);
}

.card-produto__desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: var(--space-md);
}

.card-produto__link {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  transition: var(--transition);
}

.card-produto__link:hover {
  color: var(--primary-dark);
  gap: 6px;
}

/* ---------- INSTITUCIONAL ---------- */
.institucional {
  background: var(--bg-cream);
}

.institucional__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: center;
}

.institucional__img-placeholder {
  width: 100%;
  height: 520px;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  border-radius: var(--radius-card);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 120px;
  box-shadow: var(--shadow-elevated);
}

.institucional__text .section__tag {
  margin-left: 0;
}

.institucional__text .section__title {
  text-align: left;
}

.institucional__text .section__desc {
  margin: 0 0 var(--space-md);
  max-width: 100%;
  font-size: 16px;
}

.institucional__metricas {
  display: flex;
  gap: var(--space-xl);
  margin-top: var(--space-2xl);
  flex-wrap: wrap;
}

.metrica {
  text-align: center;
  flex: 1;
  min-width: 140px;
  padding: var(--space-lg);
  background: var(--white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
}

.metrica__numero {
  display: block;
  font-family: var(--font-heading);
  font-size: 34px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.1;
}

.metrica__label {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
  margin-top: var(--space-xs);
  line-height: 1.4;
}

/* ---------- MISSÃO / VISÃO / VALORES ---------- */
.mvv {
  background: var(--white);
}

.mvv__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.card-mvv {
  background: var(--bg-cream);
  border-radius: var(--radius-card);
  padding: var(--space-2xl);
  text-align: center;
  border: 1px solid var(--border);
  transition: var(--transition);
}

.card-mvv:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
  border-color: var(--accent);
}

.card-mvv__icon {
  font-size: 48px;
  margin-bottom: var(--space-md);
}

.card-mvv__title {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: var(--space-md);
}

.card-mvv__desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ---------- LOGÍSTICA ---------- */
.logistica {
  background: var(--bg-cream);
}

.logistica__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.card-logistica {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: var(--space-2xl) var(--space-lg);
  text-align: center;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}

.card-logistica:hover {
  transform: translateY(-6px);
  border-color: var(--accent);
}

.card-logistica__icon {
  font-size: 42px;
  margin-bottom: var(--space-md);
}

.card-logistica__title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: var(--space-sm);
}

.card-logistica__desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ---------- TRABALHE CONOSCO ---------- */
.trabalhe {
  background: var(--white);
}

.trabalhe__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: center;
}

.trabalhe__text .section__tag {
  margin-left: 0;
}

.trabalhe__text .section__title {
  text-align: left;
}

.trabalhe__text .section__desc {
  margin: 0 0 var(--space-md);
  max-width: 100%;
  font-size: 16px;
}

.trabalhe__text .btn {
  margin-top: var(--space-md);
}

.trabalhe__beneficios {
  background: var(--bg-cream);
  border-radius: var(--radius-card);
  padding: var(--space-2xl);
  border: 1px solid var(--border);
}

.trabalhe__beneficios-title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: var(--space-lg);
}

.trabalhe__lista {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.trabalhe__lista li {
  font-size: 16px;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

/* ---------- CTA COMERCIAL ---------- */
.cta-comercial {
  background: var(--primary);
  padding: var(--space-4xl) 24px;
}

.cta-comercial__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3xl);
  flex-wrap: wrap;
}

.cta-comercial__title {
  font-family: var(--font-heading);
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: var(--space-sm);
}

.cta-comercial__desc {
  font-size: 16px;
  color: rgba(255, 255, 255, .7);
  max-width: 500px;
  line-height: 1.6;
}

.cta-comercial__actions {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}

/* ---------- CONTATO ---------- */
.contato {
  background: var(--bg-cream);
}

.contato__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: start;
}

.contato__info {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.contato__item {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
}

.contato__icon {
  font-size: 24px;
  flex-shrink: 0;
  margin-top: 2px;
}

.contato__label {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.contato__value {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
}

.contato__value a {
  color: var(--primary);
  font-weight: 500;
  transition: var(--transition);
}

.contato__value a:hover {
  color: var(--primary-dark);
}

.contato__horarios {
  margin-top: var(--space-xs);
}

.contato__horario {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text-dark);
}

.contato__horario:last-child {
  border-bottom: none;
}

.contato__fechado {
  color: var(--primary);
  font-weight: 600;
}

.contato__mapa {
  min-height: 480px;
  border-radius: var(--radius-card);
  overflow: hidden;
}

.contato__mapa iframe {
  border: none;
  width: 100%;
  min-height: 480px;
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--footer-bg);
  color: rgba(255, 255, 255, .75);
  padding-top: var(--space-4xl);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-2xl);
  padding-bottom: var(--space-3xl);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.footer__logo {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 700;
  color: var(--white);
  display: block;
  margin-bottom: var(--space-md);
}

.footer__desc {
  font-size: 14px;
  line-height: 1.7;
  max-width: 300px;
  margin-bottom: var(--space-lg);
}

.footer__social {
  display: flex;
  gap: var(--space-sm);
}

.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, .08);
  border-radius: 50%;
  font-size: 18px;
  transition: var(--transition);
}

.footer__social-link:hover {
  background: var(--primary);
  transform: translateY(-2px);
}

.footer__heading {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: var(--space-lg);
}

.footer__links ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer__links a {
  font-size: 14px;
  color: rgba(255, 255, 255, .6);
  transition: var(--transition);
}

.footer__links a:hover {
  color: var(--accent-light);
}

.footer__links address p {
  font-size: 14px;
  line-height: 1.6;
}

.footer__bottom {
  padding: var(--space-lg) 0;
  text-align: center;
}

.footer__bottom p {
  font-size: 13px;
  color: rgba(255, 255, 255, .35);
}

/* ---------- ANIMATIONS ---------- */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.fade-up:nth-child(1) { transition-delay: 0s; }
.fade-up:nth-child(2) { transition-delay: .1s; }
.fade-up:nth-child(3) { transition-delay: .2s; }
.fade-up:nth-child(4) { transition-delay: .3s; }
.fade-up:nth-child(5) { transition-delay: .4s; }
.fade-up:nth-child(6) { transition-delay: .5s; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .institucional__grid {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  .institucional__img-placeholder {
    height: 360px;
  }

  .logistica__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .contato__grid {
    grid-template-columns: 1fr;
  }

  .contato__mapa {
    min-height: 350px;
  }

  .contato__mapa iframe {
    min-height: 350px;
  }

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

  .hero__title {
    font-size: clamp(32px, 6vw, 56px);
  }
}

@media (max-width: 768px) {
  :root {
    --section-pad-desktop: 64px 20px;
  }

  .section {
    padding: var(--section-pad-mobile);
  }

  /* Header mobile */
  .header__nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 360px;
    height: 100vh;
    background: var(--white);
    box-shadow: -10px 0 40px rgba(0, 0, 0, .15);
    padding: 100px 32px 40px;
    transition: right .35s ease;
    z-index: 999;
  }

  .header__nav.open {
    right: 0;
  }

  .header__menu {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-lg);
  }

  .header__link {
    font-size: 18px;
  }

  .header__hamburger {
    display: flex;
  }

  .header__cta {
    display: none;
  }

  .header__nav .header__cta {
    display: inline-flex;
    margin-top: var(--space-lg);
  }

  .hero {
    min-height: 90vh;
  }

  .hero__actions {
    flex-direction: column;
    align-items: center;
  }

  .hero__actions .btn {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }

  .mvv__grid {
    grid-template-columns: 1fr;
  }

  .logistica__grid {
    grid-template-columns: 1fr;
  }

  .produtos__grid {
    grid-template-columns: 1fr;
  }

  .institucional__metricas {
    flex-direction: column;
  }

  .cta-comercial__inner {
    flex-direction: column;
    text-align: center;
  }

  .cta-comercial__desc {
    max-width: 100%;
  }

  .cta-comercial__actions {
    flex-direction: column;
    width: 100%;
  }

  .cta-comercial__actions .btn {
    width: 100%;
    justify-content: center;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer__desc {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .footer__social {
    justify-content: center;
  }

  .footer__links ul {
    align-items: center;
  }
}

@media (max-width: 480px) {
  .header__logo {
    font-size: 20px;
  }

  .header__logo-icon {
    font-size: 26px;
  }

  .section__title {
    font-size: 26px;
  }

  .hero {
    min-height: 85vh;
  }

  .hero__content {
    padding: 100px 16px 60px;
  }

  .institucional__img-placeholder {
    height: 260px;
    font-size: 80px;
  }

  .contato__mapa {
    min-height: 280px;
  }

  .contato__mapa iframe {
    min-height: 280px;
  }

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

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

/* Skip to main content (hidden but accessible) */
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  background: var(--primary);
  color: var(--white);
  padding: 12px 20px;
  border-radius: var(--radius-btn);
  z-index: 10000;
  font-weight: 600;
  transition: top .2s ease;
}

.skip-link:focus {
  top: 16px;
}
