﻿/* AgroQuipu360Â® â€” Landing: navbar, hero, footer */

.agro-landing::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 70% 50% at 15% 0%, rgba(47, 122, 74, 0.12) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 85% 100%, rgba(217, 164, 65, 0.08) 0%, transparent 50%);
}

/* â”€â”€â”€ Navbar â”€â”€â”€ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  height: var(--navbar-height);
  background: transparent;
  transition:
    background var(--transition),
    border-color var(--transition),
    box-shadow var(--transition),
    backdrop-filter var(--transition);
  border-bottom: 1px solid transparent;
}

.navbar.is-scrolled {
  background: rgba(15, 23, 32, 0.72);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom-color: var(--glass-border);
  box-shadow: var(--shadow-md);
}

.navbar.is-scrolled::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--green-glow), var(--gold-glow), transparent);
  opacity: 0.6;
}

.navbar__inner {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
  height: 100%;
  padding: 0 var(--section-pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

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

.navbar__logo {
  width: var(--navbar-logo-width);
  height: auto;
  max-height: none;
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.3));
}

.navbar__nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
   padding: 10px 18px;
    border-radius: 18px;

    background: rgba(15, 23, 32, 0.18);

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    border: 1px solid rgba(248,250,246,0.08);

    box-shadow:
        0 8px 32px rgba(0,0,0,0.18),
        inset 0 1px 0 rgba(255,255,255,0.05);
}

.navbar__links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.navbar__links a {
  font-size: 0.72rem;
  white-space: nowrap;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  transition: color var(--transition), background var(--transition), border-color var(--transition);
}

.navbar__links a:hover {
  color: var(--white-soft);
  background: var(--surface);
  border-color: var(--glass-border);
}

.navbar__links a.is-active {
  color: var(--harvest-gold);
  background: var(--gold-dim);
  border-color: rgba(217, 164, 65, 0.28);
}

.navbar__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 4px;
  border-radius: var(--radius-pill);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-saturate));
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-saturate));
  box-shadow: var(--shadow-sm);
}

.lang-switch__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-width: 52px;
  padding: 0.4rem 0.65rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--text-subtle);
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  transition:
    color var(--transition),
    background var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
}

.lang-switch__flag {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.lang-switch__btn:hover {
  color: var(--white-soft);
  background: var(--surface);
}

.lang-switch__btn.is-active {
  color: var(--harvest-gold);
  background: var(--gold-dim);
  border-color: rgba(217, 164, 65, 0.38);
  box-shadow: 0 0 14px rgba(217, 164, 65, 0.14);
}

.lang-switch__btn.is-active .lang-switch__flag {
  box-shadow: 0 0 0 1px rgba(217, 164, 65, 0.28);
}

.navbar__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--glass-border);
  background: var(--surface);
}

.navbar__toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--cream);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.navbar__toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.navbar__toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.navbar__toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* â”€â”€â”€ Hero cinematogrÃ¡fico full screen â”€â”€â”€ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 75%;
  filter: none;
}

.hero__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: none;
  opacity: 0;
  transition: opacity 1.4s ease-in-out;
  will-change: opacity;
}

.hero__slide.is-active {
  opacity: 1;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(15, 23, 32, 0.36) 0%, rgba(15, 23, 32, 0.17) 42%, rgba(15, 23, 32, 0.47) 100%),
    linear-gradient(105deg, rgba(15, 23, 32, 0.49) 0%, rgba(15, 23, 32, 0.24) 42%, transparent 68%);
}

.hero__watermark {
  position: absolute;
  right: var(--section-pad-x);
  bottom: clamp(4.5rem, 24vh, 6.25rem);
  z-index: 1;
  width: clamp(150px, 21vw, 285px);
  height: auto;
  opacity: 0.1;
  pointer-events: none;
  object-fit: contain;
  object-position: bottom right;
  filter: none;
  user-select: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  max-width: min(var(--container), 52rem);
  margin: 0 auto;
  padding: calc(var(--navbar-height) + 3.5rem) var(--section-pad-x) 5.75rem;
  animation: heroReveal 1s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--harvest-gold);
  margin-bottom: 1.625rem;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
  animation: fadeUp 0.9s ease 0.15s both;
}

.hero__eyebrow::before {
  content: "";
  width: 2.5rem;
  height: 2px;
  background: linear-gradient(90deg, var(--harvest-gold), var(--agro-green-soft));
  border-radius: 2px;
}

.hero__title {
  font-size: clamp(2.25rem, 5.5vw, 3.75rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--white-soft);
  margin-bottom: 1.75rem;
  max-width: 14ch;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.45);
  animation: fadeUp 0.9s ease 0.25s both;
}

.hero__title-accent {
  display: inline;
  background: linear-gradient(135deg, var(--cream) 0%, var(--harvest-gold) 55%, #e8c878 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero__lead {
  font-size: clamp(1rem, 1.8vw, 1.125rem);
  line-height: 1.75;
  color: var(--text-muted);
  max-width: 38rem;
  margin-bottom: 2.5rem;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.4);
  animation: fadeUp 0.9s ease 0.35s both;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 3.25rem;
  animation: fadeUp 0.9s ease 0.45s both;
}

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  animation: fadeUp 0.9s ease 0.55s both;
}

.hero__scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.hero__scroll-hint span {
  display: block;
  width: 1px;
  height: 48px;
  background: linear-gradient(180deg, transparent, var(--harvest-gold));
  animation: scrollPulse 2s ease-in-out infinite;
}

/* Scroll reveal (bloques post-hero) */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}

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

/* â”€â”€â”€ Narrativa: EmociÃ³n Â· IdentificaciÃ³n Â· Marca (pantallas 2â€“4) â”€â”€â”€ */
.story-screen {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  min-height: 100dvh;
  overflow: hidden;
}

.story-screen.reveal-on-scroll {
  transform: none;
}

.story-screen.reveal-on-scroll:not(.is-visible) {
  opacity: 1;
}

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

.story-screen__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-screen--producer .story-screen__fallback {
  position: absolute;
  inset: 0;
  z-index: 1;
  object-position: center center;
  opacity: 1;
  transition: opacity 1.2s ease-in-out;
}

.story-screen__video {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}

.story-screen--producer.is-video-active .story-screen__fallback {
  opacity: 0;
}

.story-screen--producer.is-video-active .story-screen__video {
  opacity: 1;
}

.story-screen__veil {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.story-screen__veil--emotion {
  background:
    linear-gradient(180deg, rgba(15, 23, 32, 0.25) 0%, rgba(15, 23, 32, 0.45) 55%, rgba(15, 23, 32, 0.62) 100%),
    linear-gradient(90deg, rgba(15, 23, 32, 0.35) 0%, transparent 55%);
}

.story-screen__veil--ident {
  background:
    linear-gradient(105deg, rgba(15, 23, 32, 0.72) 0%, rgba(15, 23, 32, 0.35) 45%, transparent 72%),
    linear-gradient(180deg, rgba(15, 23, 32, 0.3) 0%, transparent 40%, rgba(15, 23, 32, 0.5) 100%);
}

.story-screen__veil--brand {
  background:
    radial-gradient(ellipse 70% 60% at 50% 50%, rgba(15, 23, 32, 0.55) 0%, rgba(15, 23, 32, 0.82) 100%),
    linear-gradient(180deg, rgba(15, 23, 32, 0.4) 0%, transparent 35%, rgba(15, 23, 32, 0.55) 100%);
}

.story-screen--emotion .story-screen__photo {
  object-position: 55% center;
}

.story-screen--ident .story-screen__photo {
  object-position: center 40%;
}

.story-screen--brand .story-screen__photo {
  object-position: center center;
}

.story-screen__content {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  min-height: 100dvh;
  padding: calc(var(--navbar-height) + 3rem) var(--section-pad-x) clamp(3rem, 8vh, 5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: var(--container);
  margin: 0 auto;
}

.story-rise {
  opacity: 0;
  transform: translateY(28px);
}

.story-screen.is-visible .story-rise {
  animation: storyRise 1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.story-screen.is-visible .story-rise--1 { animation-delay: 0.12s; }
.story-screen.is-visible .story-rise--2 { animation-delay: 0.28s; }
.story-screen.is-visible .story-rise--3 { animation-delay: 0.44s; }
.story-screen.is-visible .story-rise--4 { animation-delay: 0.58s; }
.story-screen.is-visible .story-rise--5 { animation-delay: 0.72s; }
.story-screen.is-visible .story-rise--6 { animation-delay: 0.86s; }
.story-screen.is-visible .story-rise--7 { animation-delay: 1s; }

.story-screen.is-visible .story-brand__spokes-draw line {
  animation: storyLineDraw 1.2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.story-screen.is-visible .story-brand__spokes-draw line:nth-child(1) { animation-delay: 0.5s; }
.story-screen.is-visible .story-brand__spokes-draw line:nth-child(2) { animation-delay: 0.58s; }
.story-screen.is-visible .story-brand__spokes-draw line:nth-child(3) { animation-delay: 0.66s; }
.story-screen.is-visible .story-brand__spokes-draw line:nth-child(4) { animation-delay: 0.74s; }
.story-screen.is-visible .story-brand__spokes-draw line:nth-child(5) { animation-delay: 0.82s; }

.story-screen.is-visible .story-brand__ring {
  animation: storyRingIn 1.4s cubic-bezier(0.22, 1, 0.36, 1) 0.35s forwards;
  opacity: 0;
}

@keyframes storyRise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes storyLineDraw {
  from {
    stroke-dashoffset: 220;
    opacity: 0;
  }
  to {
    stroke-dashoffset: 0;
    opacity: 1;
  }
}

@keyframes storyRingIn {
  to {
    opacity: 0.35;
  }
}

@keyframes producerFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-2px);
  }
}

/* Pantalla 2 â€” EmociÃ³n */
.story-screen__content--emotion {
  justify-content: flex-end;
  padding-bottom: clamp(4rem, 12vh, 7rem);
}

.story-screen--producer .story-screen__photo {
  object-position: center 60%;
}

.story-screen__veil--producer {
  z-index: 3;
  background:
    radial-gradient(ellipse 55% 48% at 18% 42%, rgba(217, 164, 65, 0.14) 0%, transparent 58%),
    radial-gradient(ellipse 40% 36% at 12% 55%, rgba(47, 122, 74, 0.12) 0%, transparent 62%),
    radial-gradient(ellipse 58% 52% at 72% 40%, rgba(217, 164, 65, 0.08) 0%, transparent 62%),
    linear-gradient(104deg, rgba(15, 23, 32, 0.78) 0%, rgba(15, 23, 32, 0.32) 46%, rgba(15, 23, 32, 0.65) 100%),
    linear-gradient(180deg, rgba(15, 23, 32, 0.22) 0%, rgba(15, 23, 32, 0.58) 100%);
}

.story-screen__content--producer {
  justify-content: center;
  align-items: flex-start;
  gap: clamp(1.1rem, 2.6vh, 1.8rem);
  max-width: 1100px;
    width: 100%;
}

.story-screen--producer .producer-headline {
  max-width: 100%;
  width: 100%;
  margin-bottom: 0;
  font-size: clamp(2rem, 4.5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.14;
  letter-spacing: -0.03em;
  color: var(--white-soft);
  text-shadow:
    0 4px 28px rgba(0, 0, 0, 0.45),
    0 0 40px rgba(217, 164, 65, 0.12);
}

.producer-headline__accent {
  display: inline;
  background: linear-gradient(135deg, var(--cream) 0%, var(--harvest-gold) 52%, #e8c878 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 22px rgba(217, 164, 65, 0.2));
}

.producer-headline__accent_livestock {
  display: inline;
  background: linear-gradient(135deg, var(--cream) 0%, #3ca741 52%, #06690b 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 22px rgba(217, 164, 65, 0.2));
}

.story-screen--producer .producer-sub {
  max-width: 28ch;
  margin: 0;
  font-size: clamp(1.08rem, 2.05vw, 1.38rem);
  font-weight: 500;
  line-height: 1.62;
  letter-spacing: -0.015em;
  color: rgba(248, 250, 246, 0.82);
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.35);
}

.producer-sub__accent {
  color: var(--harvest-gold);
  font-weight: 600;
  text-shadow: 0 0 20px rgba(217, 164, 65, 0.22);
}

.producer-cloud {
  list-style: none;
width: 100% !important;
 max-width: 820px !important;
  margin: 0.35rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: nowrap;
  gap: 0.6rem 0.7rem;
}

.producer-cloud__word {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.48rem 0.9rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(248, 250, 246, 0.14);
  background: linear-gradient(145deg, rgba(15, 23, 32, 0.62) 0%, rgba(15, 23, 32, 0.42) 100%);
  backdrop-filter: blur(12px) saturate(150%);
  -webkit-backdrop-filter: blur(12px) saturate(150%);
  color: rgba(248, 250, 246, 0.9);
  font-size: clamp(0.8rem, 1.35vw, 0.45rem);
  font-weight: 600;
  letter-spacing: 0.01em;
  text-transform: none;
  box-shadow:
    0 8px 22px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition:
    border-color var(--transition),
    box-shadow var(--transition),
    transform var(--transition-fast);
  animation: producerFloat 7.5s ease-in-out infinite;
}

.producer-cloud__word:hover {
  transform: translateY(-2px);
  border-color: rgba(217, 164, 65, 0.42);
  box-shadow:
    0 10px 26px rgba(0, 0, 0, 0.26),
    0 0 20px rgba(217, 164, 65, 0.14);
}

.producer-cloud__icon {
  width: 0.9rem;
  height: 0.9rem;
  flex-shrink: 0;
  stroke: var(--harvest-gold);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.95;
}

.producer-cloud__word:nth-child(2) { animation-delay: 0.7s; }
.producer-cloud__word:nth-child(3) { animation-delay: 1.4s; }
.producer-cloud__word:nth-child(4) { animation-delay: 2.1s; }
.producer-cloud__word:nth-child(5) { animation-delay: 2.8s; }

.story-screen__closing {
  margin: 0.4rem 0 0;
  font-size: clamp(1.02rem, 1.95vw, 1.24rem);
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: -0.012em;
  color: rgba(248, 250, 246, 0.9);
  max-width: 34ch;
  text-wrap: balance;
}

.story-screen--producer .producer-closing {
  margin: 0.5rem 0 0;
  padding: 1rem 1.15rem 1rem 1.1rem;
  max-width: 760px !important;
  width: fit-content;
  border: none;
  border-left: 3px solid var(--harvest-gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  background: linear-gradient(90deg, rgba(217, 164, 65, 0.1) 0%, rgba(15, 23, 32, 0.42) 28%, rgba(15, 23, 32, 0.32) 100%);
  backdrop-filter: blur(8px) saturate(140%);
  -webkit-backdrop-filter: blur(8px) saturate(140%);
  box-shadow:
    0 8px 28px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.story-screen--producer .producer-closing p {
  margin: 0;
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  font-weight: 600;
  line-height: 1.55;
  letter-spacing: -0.015em;
  color: rgba(248, 250, 246, 0.92);
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.32);
  white-space: nowrap;
}

.producer-closing__accent {
  color: var(--harvest-gold);
  font-weight: 700;
  text-shadow: 0 0 18px rgba(217, 164, 65, 0.25);
}

.story-screen__headline {
  font-size: clamp(2.1rem, 5.2vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.035em;
  color: var(--white-soft);
  max-width: 15ch;
  text-wrap: balance;
  margin-bottom: clamp(1.5rem, 4vh, 2.5rem);
}

.story-screen__sub {
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.01em;
  color: rgba(248, 250, 246, 0.78);
  max-width: 22ch;
}

/* Pantalla 3 â€” IdentificaciÃ³n */
.story-screen__content--ident {
  justify-content: space-between;
  padding-bottom: clamp(3.5rem, 9vh, 6rem);
}

.story-ident__verse {
  display: flex;
  flex-direction: column;
  gap: clamp(1.75rem, 4.5vh, 2.75rem);
  max-width: 22rem;
}

.story-ident__line {
  font-size: clamp(1.35rem, 2.8vw, 2rem);
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: -0.025em;
  color: var(--white-soft);
  margin: 0;
}

.story-ident__sources {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.25rem 0;
  margin: 0;
  font-size: clamp(0.68rem, 1.15vw, 0.78rem);
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(248, 250, 246, 0.42);
}

.story-ident__sources span:not(:last-child)::after {
  content: "Â·";
  margin: 0 0.85rem;
  color: rgba(248, 250, 246, 0.2);
  font-weight: 300;
}

/* Pantalla 4 â€” AgroQuipu360Â® */
.story-brand__stage {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: calc(var(--navbar-height) + 2rem) var(--section-pad-x) 3rem;
  overflow: hidden;
}

.story-brand__hub {
  position: relative;
  width: min(88vw, 500px);
  height: min(88vw, 500px);
  flex-shrink: 0;
  --orbit-r: min(44vw, 210px);
}

.story-brand__orbit {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.story-brand__ring {
  opacity: 0;
}

.story-brand__spokes-draw line {
  stroke-dasharray: 220;
  stroke-dashoffset: 220;
  opacity: 0;
}

.story-brand__name {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  transform: translate(-50%, -50%);
  font-size: clamp(2rem, 6.5vw, 3.75rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.04em;
  text-align: center;
  margin: 0;
  max-width: 11ch;
  background: linear-gradient(135deg, var(--white-soft) 0%, var(--harvest-gold) 52%, #f0d48a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.story-brand__labels {
  position: absolute;
  inset: 0;
  list-style: none;
  margin: 0;
  padding: 0;
  pointer-events: none;
}

.story-brand__label {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(var(--angle)) translateY(calc(-1 * var(--orbit-r))) rotate(calc(-1 * var(--angle)));
  font-size: clamp(0.68rem, 1.2vw, 0.82rem);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(248, 250, 246, 0.72);
  white-space: nowrap;
}

.story-brand__promise {
  position: relative;
  z-index: 2;
  margin: clamp(2rem, 5vh, 3rem) 0 0;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: -0.02em;
  text-align: center;
  color: rgba(248, 250, 246, 0.88);
  max-width: 24ch;
  text-wrap: balance;
}

@media (prefers-reduced-motion: reduce) {
  .story-rise,
  .story-brand__spokes-draw line,
  .story-brand__ring {
    opacity: 1;
    transform: none;
    animation: none !important;
  }

  .story-brand__label {
    transform: translate(-50%, -50%) rotate(var(--angle)) translateY(calc(-1 * var(--orbit-r))) rotate(calc(-1 * var(--angle)));
  }

  .producer-cloud__word {
    animation: none !important;
  }
}
/* â”€â”€â”€ Footer temporal â”€â”€â”€ */
.site-footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--glass-border);
  background: var(--bg-elevated);
  padding: 2.5rem var(--section-pad-x);
}

.site-footer__inner {
  max-width: var(--container);
  margin: 0 auto;
  text-align: center;
}

.site-footer__brand {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 0.35rem;
}

.site-footer__tagline {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.site-footer__motto {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--harvest-gold);
}

.producer-checklist {
  list-style: none;
  max-width: 720px !important;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.producer-checklist li {
  position: relative;
  padding-left: 1.55rem;
  font-size: clamp(1.05rem, 1.7vw, 1.28rem);
  line-height: 1.45;
  color: rgba(248, 250, 246, 0.9);
}

.producer-checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--harvest-gold);
  font-weight: 800;
}