:root {
  --ink: #1d1d1f;
  --muted: #62656a;
  --paper: #fbfaf7;
  --surface: #ffffff;
  --line: #e5e0d8;
  --wine: #7a1f2b;
  --wine-dark: #451019;
  --leaf: #315842;
  --gold: #b99048;
  --slate: #27333f;
  --shadow: 0 18px 50px rgba(39, 51, 63, 0.12);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid rgba(229, 224, 216, 0.78);
  background: rgba(251, 250, 247, 0.94);
  backdrop-filter: blur(16px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: min(100% - 32px, var(--max));
  min-height: 74px;
  margin: 0 auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 178px;
}

.brand img {
  width: clamp(154px, 14vw, 214px);
  height: auto;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: var(--wine);
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  content: "";
}

.nav-toggle span {
  margin: 5px 0;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2vw, 28px);
  color: var(--slate);
  font-size: 0.94rem;
  font-weight: 650;
}

.nav-links a {
  padding: 8px 0;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.language-switcher {
  display: inline-flex;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
}

.language-switcher a {
  min-width: 42px;
  padding: 8px 10px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  text-align: center;
}

.language-switcher a[aria-current="true"] {
  background: var(--wine);
  color: #fff;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.94rem;
  font-weight: 760;
  line-height: 1;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--wine);
  color: #fff;
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.58);
  color: #fff;
}

.button-outline {
  border-color: var(--line);
  background: var(--surface);
  color: var(--wine);
}

.button-small {
  min-height: 38px;
  padding: 0 14px;
  font-size: 0.86rem;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: min(720px, calc(92vh - 74px));
  color: #fff;
  background: var(--wine-dark);
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.11) 44%, transparent 58%);
  transform: translateX(-130%);
  animation: hero-shine 7s ease-in-out infinite;
  content: "";
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(39, 19, 23, 0.88) 0%, rgba(39, 19, 23, 0.62) 48%, rgba(39, 19, 23, 0.18) 100%),
    linear-gradient(0deg, rgba(29, 29, 31, 0.68), rgba(29, 29, 31, 0.08) 34%);
  content: "";
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(430px, 0.7fr);
  align-items: center;
  gap: 34px;
  width: min(100% - 32px, var(--max));
  min-height: min(720px, calc(92vh - 74px));
  margin: 0 auto;
  padding: clamp(64px, 8vw, 118px) 0 clamp(36px, 6vw, 74px);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 820;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1,
.section-head h2,
.split-copy h2,
.contact-copy h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 520;
  line-height: 1.04;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(3.2rem, 8vw, 7.4rem);
}

.hero-lede {
  max-width: 680px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.08rem, 2vw, 1.32rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-facts {
  display: grid;
  gap: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.08));
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(14px);
  padding: clamp(18px, 3vw, 26px);
}

.hero-facts-head {
  display: grid;
  gap: 6px;
}

.hero-facts-head span {
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero-facts-head strong {
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.22rem, 1.7vw, 1.72rem);
  font-weight: 520;
  line-height: 1.08;
}

.hero-facts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.hero-fact {
  min-height: 124px;
  display: grid;
  align-content: space-between;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(29, 29, 31, 0.22);
}

.hero-fact strong {
  display: block;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 3vw, 2.72rem);
  font-weight: 520;
  line-height: 0.95;
}

.hero-fact span {
  display: block;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  font-weight: 720;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-proof span {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.82);
  padding: 0 10px;
  font-size: 0.78rem;
  font-weight: 760;
}

.hero-proof span::before {
  width: 6px;
  height: 6px;
  margin-right: 7px;
  border-radius: 50%;
  background: var(--gold);
  content: "";
}

.section {
  padding: clamp(64px, 8vw, 104px) 0;
}

.section-alt {
  background: #f2f4ef;
}

.section-dark {
  background: var(--slate);
  color: #fff;
}

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

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 34px;
}

.section-head h2,
.split-copy h2,
.contact-copy h2 {
  max-width: 760px;
  color: var(--wine-dark);
  font-size: clamp(2.1rem, 4.5vw, 4.2rem);
}

.section-dark .section-head h2 {
  color: #fff;
}

.section-head p,
.split-copy p,
.contact-copy p {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.02rem;
}

.section-dark .section-head p {
  color: rgba(255, 255, 255, 0.76);
}

.kpi-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.kpi {
  padding: clamp(22px, 3vw, 32px);
  background: var(--surface);
}

.kpi strong {
  display: block;
  color: var(--wine);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 520;
  line-height: 1;
}

.kpi span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
}

.motion-section {
  overflow: hidden;
  background: #1f2931;
  color: #fff;
}

.motion-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(420px, 1.16fr);
  gap: clamp(30px, 6vw, 78px);
  align-items: center;
}

.motion-copy h2 {
  margin: 0;
  max-width: 680px;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 5vw, 4.7rem);
  font-weight: 520;
  line-height: 1.04;
}

.motion-copy p:not(.eyebrow) {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.74);
}

.region-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 26px 0;
}

.region-tabs button {
  min-height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  padding: 0 15px;
  font-weight: 780;
  cursor: pointer;
}

.region-tabs button.is-active {
  border-color: var(--gold);
  background: var(--gold);
  color: #1f2931;
}

.capability-track {
  overflow: hidden;
  max-width: 620px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
}

.capability-track-inner {
  display: flex;
  width: max-content;
  gap: 22px;
  padding: 10px 0;
  animation: capability-scroll 28s linear infinite;
}

.capability-track span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.84rem;
  font-weight: 760;
  white-space: nowrap;
}

.capability-track span::before {
  color: var(--gold);
  content: "• ";
}

.motion-stage {
  position: relative;
  min-height: 560px;
}

.motion-stage::before {
  position: absolute;
  inset: 52px 40px 22px auto;
  width: 62%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  transform: rotate(-16deg);
  content: "";
}

.region-card {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: #111a21;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.28);
  opacity: 0;
  transform: translateX(32px) scale(0.97);
  transition: opacity 0.48s ease, transform 0.48s ease;
}

.region-card.is-active {
  z-index: 2;
  opacity: 1;
  transform: translateX(0) scale(1);
}

.region-card img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  opacity: 0.84;
  animation: image-drift 12s ease-in-out infinite alternate;
}

.region-card div {
  position: relative;
  z-index: 1;
  padding: clamp(22px, 4vw, 34px);
  background: linear-gradient(0deg, rgba(17, 26, 33, 0.96), rgba(17, 26, 33, 0.72));
}

.region-card span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.region-card h3 {
  max-width: 560px;
  margin: 10px 0 8px;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.7rem, 3vw, 2.9rem);
  font-weight: 520;
  line-height: 1.08;
}

.region-card p {
  max-width: 570px;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: clamp(30px, 6vw, 74px);
}

.split-media {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.split-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.feature-list {
  display: grid;
  gap: 14px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  color: var(--slate);
}

.feature-list li::before {
  display: inline-flex;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(122, 31, 43, 0.1);
  color: var(--wine);
  font-size: 0.92rem;
  font-weight: 800;
  content: "✓";
}

.bodega-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.bodega-card,
.product-card,
.award-card,
.download-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 10px 30px rgba(39, 51, 63, 0.06);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.bodega-card:hover,
.product-card:hover,
.award-card:hover,
.download-card:hover {
  transform: translateY(-4px);
  border-color: rgba(122, 31, 43, 0.22);
  box-shadow: var(--shadow);
}

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

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

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(49, 88, 66, 0.1);
  color: var(--leaf);
  font-size: 0.78rem;
  font-weight: 760;
}

.bodega-card h3,
.product-card h3,
.award-card h3,
.download-card h3 {
  margin: 14px 0 8px;
  color: var(--wine-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.56rem;
  font-weight: 520;
  line-height: 1.16;
}

.bodega-card p,
.product-card p,
.award-card p,
.download-card p {
  margin: 0;
  color: var(--muted);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.product-tools {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: -8px 0 24px;
}

.filter-button {
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--slate);
  padding: 0 15px;
  font-size: 0.86rem;
  font-weight: 780;
  cursor: pointer;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.filter-button:hover {
  transform: translateY(-1px);
  border-color: rgba(122, 31, 43, 0.28);
}

.filter-button.is-active {
  border-color: var(--wine);
  background: var(--wine);
  color: #fff;
}

.product-card {
  display: grid;
  grid-template-rows: auto 1fr;
  position: relative;
}

.product-card-featured::before {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 1;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 6px rgba(185, 144, 72, 0.15);
  content: "";
}

.product-figure {
  display: grid;
  min-height: 265px;
  place-items: center;
  background:
    radial-gradient(circle at 50% 30%, rgba(255, 255, 255, 0.96), rgba(246, 243, 238, 0.88) 58%),
    linear-gradient(180deg, #f9f7f2, #efeae1);
}

.product-figure img {
  width: min(72%, 240px);
  height: 240px;
  object-fit: contain;
  mix-blend-mode: multiply;
  transition: transform 0.24s ease;
}

.product-card:hover .product-figure img {
  transform: translateY(-5px) scale(1.025);
}

.product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0;
  padding: 0;
  list-style: none;
}

.product-meta li {
  padding: 5px 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--slate);
  font-size: 0.82rem;
  font-weight: 700;
}

.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.product-empty {
  grid-column: 1 / -1;
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.58);
  color: var(--muted);
  padding: 28px;
  text-align: center;
}

.award-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.award-card {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 100%;
}

.award-card img {
  width: 74px;
  height: 74px;
  object-fit: contain;
}

.download-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.updates-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.updates-column {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 10px 30px rgba(39, 51, 63, 0.06);
}

.updates-column-head {
  padding: 22px 22px 10px;
}

.updates-column h3 {
  margin: 14px 0 0;
  color: var(--wine-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.46rem;
  font-weight: 520;
  line-height: 1.16;
}

.updates-list {
  display: grid;
  gap: 1px;
  padding: 0 22px 22px;
}

.update-item {
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.update-date {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.update-item h4 {
  margin: 8px 0 6px;
  color: var(--slate);
  font-size: 1rem;
  line-height: 1.25;
}

.update-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.update-link {
  display: inline-flex;
  margin-top: 12px;
  color: var(--wine);
  font-size: 0.84rem;
  font-weight: 800;
}

.update-empty {
  padding: 18px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.92rem;
}

.download-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.download-card h3 {
  margin: 0;
  font-size: 1.08rem;
}

.download-card p {
  margin-top: 3px;
  font-size: 0.9rem;
}

.contact-wrap {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.78fr);
  gap: clamp(28px, 5vw, 60px);
  align-items: start;
}

.contact-panel {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  padding: clamp(22px, 4vw, 34px);
}

.contact-panel label {
  display: block;
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.88rem;
  font-weight: 700;
}

.contact-panel input,
.contact-panel textarea {
  width: 100%;
  margin-top: 6px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  padding: 12px 13px;
  outline: none;
}

.contact-panel textarea {
  min-height: 138px;
  resize: vertical;
}

.contact-panel input:focus,
.contact-panel textarea:focus {
  border-color: var(--gold);
}

.contact-copy h2 {
  color: #fff;
}

.contact-copy p,
.contact-details {
  color: rgba(255, 255, 255, 0.76);
}

.contact-details {
  display: grid;
  gap: 16px;
  margin-top: 30px;
}

.contact-details strong {
  display: block;
  color: #fff;
}

.form-note {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.86rem;
}

.hidden-field {
  position: absolute;
  left: -100vw;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #fff;
}

.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.55s ease, transform 0.55s ease;
  transition-delay: var(--delay, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes hero-shine {
  0%, 48% {
    transform: translateX(-130%);
  }
  78%, 100% {
    transform: translateX(130%);
  }
}

@keyframes capability-scroll {
  to {
    transform: translateX(-50%);
  }
}

@keyframes image-drift {
  from {
    transform: scale(1.03) translate3d(-1%, 0, 0);
  }
  to {
    transform: scale(1.09) translate3d(1.5%, -1%, 0);
  }
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
  padding: 28px 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

@media (max-width: 1020px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: absolute;
    top: 74px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: var(--shadow);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    padding: 14px 18px;
    border-bottom: 1px solid var(--line);
  }

  .nav-links a:last-child {
    border-bottom: 0;
  }

  .hero-inner,
  .split,
  .motion-shell,
  .contact-wrap {
    grid-template-columns: 1fr;
  }

  .motion-stage {
    min-height: 520px;
  }

  .hero-facts {
    grid-template-columns: 1fr;
  }

  .kpi-grid,
  .bodega-grid,
  .product-grid,
  .award-strip,
  .updates-grid,
  .download-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 720px) {
  .nav {
    min-height: 68px;
  }

  .brand {
    min-width: 138px;
  }

  .nav-actions .button {
    display: none;
  }

  .nav-links {
    top: 68px;
  }

  .hero,
  .hero-inner {
    min-height: auto;
  }

  .hero-inner {
    padding-top: 74px;
  }

  .hero h1 {
    font-size: clamp(2.7rem, 14vw, 4.6rem);
  }

  .motion-stage {
    min-height: 500px;
  }

  .region-card img {
    min-height: 290px;
  }

  .hero-facts-grid,
  .kpi-grid,
  .bodega-grid,
  .product-grid,
  .award-strip,
  .updates-grid,
  .download-grid {
    grid-template-columns: 1fr;
  }

  .hero-fact {
    min-height: 96px;
  }

  .section-head {
    display: block;
  }

  .product-figure {
    min-height: 220px;
  }

  .product-figure img {
    width: min(68%, 190px);
    height: 190px;
  }

  .footer-inner {
    display: block;
  }

  .footer-links {
    margin-top: 12px;
  }
}

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