@font-face {
  font-family: "Archivo";
  src: url("assets/fonts/archivo-variable.ttf") format("truetype");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

@font-face {
  font-family: "Archivo";
  src: url("assets/fonts/archivo-variable-italic.ttf") format("truetype");
  font-style: italic;
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --cream: #f4e7d3;
  --cream-deep: #ead4b8;
  --yellow: #ffd83d;
  --yellow-hover: #ffcf0a;
  --olive: #68763c;
  --sage: #b9c3a3;
  --deep-green: #26351b;
  --ink: #11130f;
  --white: #fffdf8;
  --max-width: 1440px;
  --page-gutter: clamp(1.25rem, 4vw, 4.5rem);
  --section-space: clamp(5rem, 10vw, 10rem);
  --focus: #0866d9;
}

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

html {
  overflow-x: clip;
  scroll-padding-top: 6.5rem;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "Archivo", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

p,
h1,
h2,
h3 {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-weight: 900;
  line-height: 0.96;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

ul,
ol {
  margin-top: 0;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.8rem 1rem;
  background: var(--white);
  color: var(--ink);
  font-weight: 800;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

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

.section-shell {
  width: min(100%, var(--max-width));
  margin-inline: auto;
  padding-inline: var(--page-gutter);
}

.section-kicker,
.eyebrow {
  margin-bottom: 1.25rem;
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
}

.section-kicker--light {
  color: var(--cream);
}

.button,
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  font-size: 0.92rem;
  font-weight: 750;
  line-height: 1.2;
  text-decoration: none;
}

.button {
  gap: 0.8rem;
  padding: 0.85rem 1.3rem;
  border: 0;
  border-radius: 999px;
  transition:
    background-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

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

.button:active {
  transform: translateY(0);
}

.button--primary,
.button--yellow {
  color: var(--ink);
  background: var(--yellow);
}

.button--primary:hover,
.button--yellow:hover {
  background: var(--yellow-hover);
}

.button--dark {
  color: var(--white);
  background: var(--ink);
}

.button--dark:hover {
  color: var(--yellow);
}

.text-link {
  position: relative;
  justify-content: flex-start;
  padding-inline: 0;
}

.text-link::after {
  position: absolute;
  right: 0;
  bottom: 0.45rem;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform-origin: left;
  transition: transform 180ms ease;
}

.text-link:hover::after {
  transform: scaleX(0.45);
}

.text-link--arrow {
  gap: 0.5rem;
}

.olive-shadow::after {
  position: absolute;
  z-index: 0;
  top: 3%;
  right: -3rem;
  width: min(35vw, 29rem);
  height: min(36vw, 30rem);
  background:
    radial-gradient(ellipse at 15% 26%, rgb(38 53 27 / 16%) 0 3%, transparent 3.8%),
    radial-gradient(ellipse at 32% 18%, rgb(38 53 27 / 14%) 0 3%, transparent 3.8%),
    radial-gradient(ellipse at 50% 31%, rgb(38 53 27 / 13%) 0 4%, transparent 4.8%),
    radial-gradient(ellipse at 68% 20%, rgb(38 53 27 / 12%) 0 3%, transparent 3.8%),
    radial-gradient(ellipse at 73% 48%, rgb(38 53 27 / 11%) 0 4%, transparent 4.8%),
    linear-gradient(118deg, transparent 45%, rgb(38 53 27 / 9%) 45.5% 46.3%, transparent 47%);
  content: "";
  filter: blur(7px);
  opacity: 0.75;
  pointer-events: none;
  transform: rotate(-16deg);
}

/* Header */

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  width: 100%;
  min-height: 5.5rem;
  padding: 0.85rem var(--page-gutter);
  border-bottom: 1px solid transparent;
  background: var(--cream);
  isolation: isolate;
  transition:
    box-shadow 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease;
}

.site-header[data-scrolled] {
  border-bottom-color: rgb(17 19 15 / 10%);
  box-shadow: 0 0.75rem 2rem rgb(38 53 27 / 10%);
}

html[data-capture="true"] .site-header {
  position: relative;
  border-bottom-color: transparent;
  box-shadow: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  min-height: 2.75rem;
  text-decoration: none;
}

.brand__council {
  width: clamp(7.5rem, 11vw, 10.5rem);
  height: auto;
}

.brand__seals {
  display: flex;
  gap: 0.25rem;
}

.brand__seals img {
  width: 2.3rem;
  height: 2.3rem;
}

.site-nav {
  display: flex;
  grid-column: 3;
  align-items: center;
  gap: clamp(0.9rem, 1.7vw, 2rem);
  font-size: 0.82rem;
  font-weight: 670;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 2.75rem;
  text-decoration: none;
}

.site-nav a:not(.site-nav__featured) {
  position: relative;
}

.site-nav a:not(.site-nav__featured)::after {
  position: absolute;
  right: 0;
  bottom: 0.3rem;
  left: 0;
  height: 1px;
  background: var(--ink);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-nav a:not(.site-nav__featured):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.site-nav__featured {
  padding: 0.45rem 1rem;
  border-radius: 999px;
  color: var(--white);
  background: var(--ink);
}

.site-nav__featured:hover {
  color: var(--yellow);
}

.menu-toggle {
  display: none;
}

/* Hero */

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(18rem, 0.74fr) minmax(30rem, 1.26fr);
  grid-template-rows: 1fr auto;
  min-height: min(53rem, calc(100svh - 5.5rem));
  padding: clamp(3.5rem, 7vw, 7.5rem) var(--page-gutter) 0;
  overflow: hidden;
  isolation: isolate;
}

.hero__copy {
  position: relative;
  z-index: 3;
  align-self: center;
  padding: 0 clamp(0rem, 1vw, 1.5rem) clamp(5rem, 10vw, 8.5rem) 0;
}

.hero h1 {
  max-width: 8ch;
  margin-bottom: 1.5rem;
  color: var(--yellow);
  font-size: clamp(4rem, 7.1vw, 7.9rem);
  line-height: 0.83;
  text-transform: uppercase;
}

.hero h1 span {
  display: block;
}

.hero__lead {
  max-width: 31rem;
  margin-bottom: 1rem;
  font-size: clamp(1.25rem, 2vw, 2rem);
  font-weight: 780;
  line-height: 1.1;
  letter-spacing: -0.025em;
}

.hero__text {
  max-width: 36rem;
  margin-bottom: 1.7rem;
  font-size: clamp(1rem, 1.2vw, 1.15rem);
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  flex-wrap: wrap;
}

.hero__byline {
  margin-top: 2rem;
  margin-bottom: 0;
  font-size: 0.9rem;
  font-weight: 320;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.hero__visual {
  position: relative;
  z-index: 2;
  align-self: end;
  height: 100%;
  min-height: 38rem;
  margin-right: calc(var(--page-gutter) * -1);
}

.hero__visual::after {
  position: absolute;
  inset: 0 auto 0 0;
  width: 32%;
  background: linear-gradient(90deg, var(--cream), transparent);
  content: "";
  pointer-events: none;
}

.hero__visual img {
  width: 100%;
  height: 100%;
  min-height: 38rem;
  object-fit: cover;
  object-position: 53% center;
}

.hero__rhythm {
  position: absolute;
  z-index: 3;
  bottom: clamp(2.5rem, 5vw, 4.5rem);
  left: clamp(2.5rem, 5vw, 5rem);
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.35rem, 2.35vw, 2.8rem);
  font-weight: 890;
  line-height: 0.9;
  letter-spacing: -0.045em;
  text-align: left;
  text-transform: uppercase;
  text-shadow: 0 1px 0 rgb(244 231 211 / 35%);
}

.hero__rhythm span {
  display: block;
}

.hero__formula {
  position: relative;
  z-index: 4;
  grid-column: 1 / -1;
  margin: 0 calc(var(--page-gutter) * -1);
  padding: 1.1rem var(--page-gutter);
  color: var(--cream);
  background: var(--ink);
  font-size: clamp(0.82rem, 1.2vw, 1rem);
  font-weight: 620;
  letter-spacing: 0.13em;
  text-align: center;
  text-transform: uppercase;
}

.hero__formula b {
  padding-inline: 0.5rem;
  color: var(--yellow);
}

/* Campaign state */

.campaign-state {
  display: grid;
  grid-template-columns: minmax(17rem, 0.55fr) minmax(24rem, 1.45fr);
  align-items: center;
  gap: clamp(2rem, 6vw, 7rem);
  width: min(100%, var(--max-width));
  margin-inline: auto;
  padding: clamp(3rem, 5vw, 5.5rem) var(--page-gutter);
}

.campaign-state__label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: start;
  min-height: 4rem;
  padding: 0.8rem 1.8rem;
  border-radius: 999px;
  background: var(--yellow);
  font-size: clamp(1rem, 1.65vw, 1.45rem);
  font-weight: 850;
  line-height: 1.05;
  text-transform: uppercase;
}

.campaign-state__message {
  max-width: 46rem;
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 3rem);
  font-weight: 780;
  line-height: 1.06;
  letter-spacing: -0.04em;
}

.state-content--after {
  display: none;
}

html[data-campaign-state="after"] .state-content--upcoming {
  display: none;
}

html[data-campaign-state="after"] .state-content--after {
  display: inline;
}

html[data-campaign-state="after"] p.state-content--after {
  display: block;
}

/* Manifesto */

.manifesto {
  padding-top: var(--section-space);
  padding-bottom: var(--section-space);
  background: var(--white);
}

.manifesto__heading {
  display: grid;
  grid-template-columns: minmax(17rem, 0.85fr) minmax(18rem, 0.55fr);
  justify-content: space-between;
  gap: clamp(3rem, 8vw, 10rem);
  align-items: end;
}

.manifesto h2 {
  margin-bottom: 0;
  font-size: clamp(4.4rem, 9vw, 10rem);
  line-height: 0.79;
  text-transform: uppercase;
}

.manifesto__heading > p {
  max-width: 32rem;
  margin-bottom: 0;
  font-size: clamp(1.15rem, 1.8vw, 1.55rem);
  font-weight: 570;
  line-height: 1.32;
}

.manifesto__statement {
  max-width: 63rem;
  margin: clamp(5rem, 10vw, 10rem) auto;
}

.manifesto__statement p {
  margin: 0;
  font-size: clamp(2rem, 4.6vw, 4.8rem);
  font-weight: 280;
  line-height: 1.06;
  letter-spacing: -0.045em;
  text-align: center;
}

.manifesto__statement strong {
  font-weight: 850;
}

.pillars {
  display: grid;
  grid-template-columns: 0.85fr 1fr 1.15fr;
  gap: clamp(1.5rem, 4vw, 5rem);
}

.pillar {
  padding-top: 1.2rem;
  border-top: 1px solid rgb(17 19 15 / 42%);
}

.pillar:nth-child(2) {
  margin-top: 4rem;
}

.pillar:nth-child(3) {
  margin-top: 8rem;
}

.pillar__word {
  margin-bottom: 1.8rem;
  color: var(--olive);
  font-size: clamp(1.5rem, 2.6vw, 2.75rem);
  font-weight: 850;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.pillar > p:last-child {
  max-width: 24rem;
  margin-bottom: 0;
  font-size: 1.05rem;
}

/* IGP */

.igp-story {
  display: grid;
  grid-template-columns: minmax(20rem, 0.8fr) minmax(25rem, 1fr);
  min-height: 46rem;
  color: var(--white);
  background: var(--deep-green);
  overflow: hidden;
}

.igp-story__seals {
  position: relative;
  min-height: 35rem;
}

.igp-story__seals::before {
  position: absolute;
  top: 12%;
  right: 7%;
  width: 26rem;
  height: 26rem;
  border: 1px solid rgb(255 255 255 / 22%);
  border-radius: 50%;
  content: "";
}

.igp-story__seal {
  position: absolute;
  width: clamp(11rem, 19vw, 18rem);
  height: auto;
  filter: drop-shadow(0 1.2rem 1.8rem rgb(0 0 0 / 20%));
}

.igp-story__seal--manzanilla {
  top: 12%;
  left: 17%;
  transform: rotate(-7deg);
}

.igp-story__seal--gordal {
  right: 10%;
  bottom: 11%;
  transform: rotate(7deg);
}

.igp-story__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: var(--section-space) var(--page-gutter) var(--section-space) clamp(2rem, 5vw, 6rem);
}

.igp-story h2 {
  max-width: 12ch;
  margin-bottom: 2rem;
  color: var(--yellow);
  font-size: clamp(3.3rem, 6vw, 6.8rem);
  text-transform: uppercase;
}

.igp-story__copy > p:not(.section-kicker) {
  max-width: 41rem;
  margin-bottom: 2rem;
  font-size: clamp(1.05rem, 1.45vw, 1.3rem);
}

/* Varieties */

.varieties {
  position: relative;
  padding-top: var(--section-space);
  padding-bottom: var(--section-space);
  background: var(--cream);
  overflow: hidden;
}

.varieties__intro {
  display: grid;
  grid-template-columns: minmax(12rem, 0.38fr) minmax(0, 1fr);
  gap: clamp(2rem, 6vw, 7rem);
  align-items: start;
}

.varieties h2 {
  max-width: 11ch;
  margin-bottom: 1.5rem;
  font-size: clamp(4rem, 7.6vw, 8.5rem);
  line-height: 0.86;
  text-transform: uppercase;
}

.varieties__lead {
  max-width: 38rem;
  margin: 0;
  font-size: clamp(1.05rem, 1.45vw, 1.3rem);
}

.varieties__comparison {
  margin-top: clamp(4rem, 8vw, 8rem);
  border-bottom: 1px solid rgb(17 19 15 / 32%);
}

.variety {
  display: grid;
  grid-template-columns: minmax(18rem, 0.88fr) minmax(24rem, 1.12fr);
  gap: clamp(3rem, 8vw, 9rem);
  align-items: center;
  padding: clamp(3rem, 6vw, 6.5rem) 0;
  border-top: 1px solid rgb(17 19 15 / 32%);
}

.variety--gordal .variety__identity {
  order: 2;
}

.variety--gordal .variety__facts {
  order: 1;
}

.variety__eyebrow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 1.4rem;
  color: var(--olive);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.variety__eyebrow img {
  width: clamp(4.8rem, 7vw, 6.8rem);
  height: auto;
}

.variety h3 {
  max-width: 100%;
  margin-bottom: 1.3rem;
  font-size: clamp(3rem, 5.2vw, 6.2rem);
  line-height: 0.88;
  letter-spacing: -0.065em;
  text-transform: uppercase;
}

.variety h3 span {
  display: block;
  margin-top: 0.42rem;
  color: var(--olive);
  font-size: 0.42em;
  letter-spacing: 0.08em;
}

.variety__identity > p {
  max-width: 31rem;
  margin: 0;
  font-size: clamp(1.05rem, 1.4vw, 1.24rem);
}

.variety__shape-study {
  display: flex;
  align-items: flex-end;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.variety__shape-study p {
  margin: 0 0 0.4rem;
  font-size: 0.76rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.variety__shape-study strong {
  display: block;
  margin-bottom: 0.22rem;
  font-weight: 850;
}

.variety__fruit-outline {
  position: relative;
  display: block;
  flex: 0 0 auto;
  border: 2px solid var(--ink);
  background: rgb(255 255 255 / 42%);
}

.variety__fruit-outline::before {
  position: absolute;
  top: -0.65rem;
  left: 49%;
  width: 0.28rem;
  height: 1rem;
  border-radius: 999px;
  background: var(--ink);
  content: "";
  transform: rotate(12deg);
}

.variety__fruit-outline::after {
  position: absolute;
  right: 18%;
  bottom: 22%;
  width: 0.42rem;
  height: 0.42rem;
  border: 1px solid var(--ink);
  border-radius: 50%;
  content: "";
}

.variety__fruit-outline--manzanilla {
  width: 5.4rem;
  height: 5.9rem;
  border-radius: 48% 52% 49% 51% / 53% 49% 51% 47%;
  transform: rotate(-4deg);
}

.variety__fruit-outline--gordal {
  width: 6.2rem;
  height: 8.1rem;
  border-radius: 45% 55% 51% 49% / 58% 45% 55% 42%;
  transform: rotate(6deg);
}

.variety__facts {
  min-width: 0;
  margin: 0;
  border-top: 1px solid rgb(17 19 15 / 24%);
}

.variety__fact {
  display: grid;
  grid-template-columns: minmax(8rem, 0.42fr) minmax(0, 1fr);
  gap: 1.5rem;
  align-items: start;
  padding: 1.7rem 0;
  border-bottom: 1px solid rgb(17 19 15 / 24%);
}

.variety__fact dt {
  padding-top: 0.34rem;
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.variety__fact dd {
  min-width: 0;
  margin: 0;
}

.variety__fact dd > strong {
  display: block;
  font-size: clamp(1.5rem, 2.5vw, 2.6rem);
  line-height: 1;
  letter-spacing: -0.045em;
}

.variety__fact--number dd > strong {
  color: var(--olive);
  font-size: clamp(3.7rem, 7vw, 7rem);
}

.variety__fact dd > span:not(.variety__swatches) {
  display: block;
  max-width: 27rem;
  margin-top: 0.45rem;
  line-height: 1.42;
}

.variety__swatches {
  display: flex;
  margin-bottom: 0.9rem;
}

.variety__swatches i {
  width: 2.25rem;
  height: 2.25rem;
  border: 2px solid var(--cream);
  border-radius: 50%;
  background: #1f762e;
}

.variety__swatches i + i {
  margin-left: -0.45rem;
}

.variety__swatches i:nth-child(2) {
  background: #89a63a;
}

.variety__swatches i:nth-child(3) {
  background: #c8b73c;
}

.variety__fact--gordal-color .variety__swatches i:first-child {
  background:
    radial-gradient(circle at 38% 35%, #f2ecd8 0 3%, transparent 4%),
    radial-gradient(circle at 68% 58%, #f2ecd8 0 3%, transparent 4%),
    #3f702b;
}

.varieties > .text-link {
  margin-top: clamp(2.5rem, 5vw, 4.5rem);
  margin-left: auto;
}

/* Journey */

.classroom-journey {
  padding-block: var(--section-space);
  color: var(--white);
  background: var(--ink);
}

.classroom-journey h2 {
  max-width: 13ch;
  margin-bottom: clamp(4rem, 8vw, 8rem);
  color: var(--yellow);
  font-size: clamp(3.6rem, 7vw, 8rem);
  text-transform: uppercase;
}

.journey {
  display: grid;
  grid-template-columns: repeat(6, minmax(9rem, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: journey;
}

.journey li {
  position: relative;
  min-height: 17rem;
  padding: 4.5rem 1.2rem 1.5rem;
  border-top: 1px solid rgb(255 253 248 / 35%);
  counter-increment: journey;
  font-size: 0.92rem;
}

.journey li:nth-child(even) {
  margin-top: 4rem;
}

.journey li::before {
  position: absolute;
  top: -1.1rem;
  left: 0;
  display: grid;
  place-items: center;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  color: var(--ink);
  background: var(--yellow);
  content: counter(journey, decimal-leading-zero);
  font-size: 0.7rem;
  font-weight: 850;
}

.journey li::after {
  position: absolute;
  top: 0.75rem;
  right: -0.3rem;
  width: 0.6rem;
  height: 0.6rem;
  border-top: 1px solid rgb(255 253 248 / 55%);
  border-right: 1px solid rgb(255 253 248 / 55%);
  content: "";
  transform: rotate(45deg);
}

.journey li:last-child::after {
  display: none;
}

.journey span {
  display: block;
  margin-bottom: 0.65rem;
  font-size: clamp(1.2rem, 1.5vw, 1.45rem);
  font-weight: 820;
  line-height: 1;
  text-transform: uppercase;
}

/* Cooking */

.cooking {
  display: grid;
  grid-template-columns: minmax(20rem, 0.94fr) minmax(18rem, 0.68fr);
  gap: clamp(3rem, 7vw, 8rem);
  padding-top: var(--section-space);
  padding-bottom: var(--section-space);
}

.cooking__image {
  position: relative;
  align-self: start;
}

.cooking__image img {
  width: 100%;
  min-height: 34rem;
  object-fit: cover;
}

.cooking__image p {
  position: absolute;
  right: -2rem;
  bottom: 2rem;
  margin: 0;
  padding: 0.85rem 1.5rem;
  color: var(--ink);
  background: var(--yellow);
  font-size: 0.8rem;
  font-weight: 420;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transform: rotate(-3deg);
}

.cooking__copy {
  align-self: center;
}

.cooking h2 {
  margin-bottom: 2rem;
  font-size: clamp(3.5rem, 6vw, 7rem);
  text-transform: uppercase;
}

.cooking__copy > p:not(.section-kicker) {
  max-width: 34rem;
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
}

.video-posters {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(2, minmax(0, 25rem));
  align-items: start;
  justify-content: center;
  gap: clamp(1.2rem, 4vw, 4rem);
  margin-top: clamp(1rem, 4vw, 3rem);
}

.video-embed {
  min-width: 0;
  color: var(--white);
  background: var(--ink);
}

.video-embed--gilda {
  margin-top: 4.5rem;
}

.video-embed__frame {
  position: relative;
  aspect-ratio: 9 / 16;
  background: var(--white);
  overflow: hidden;
}

.video-embed iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-embed__caption {
  min-height: 7.7rem;
  padding: 1.35rem 1.5rem 1.55rem;
}

.video-embed__type {
  display: block;
  margin-bottom: 0.7rem;
  color: var(--yellow);
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.video-embed h3 {
  max-width: 18ch;
  margin: 0;
  font-size: clamp(1.4rem, 2.4vw, 2.2rem);
  line-height: 1;
  letter-spacing: -0.035em;
}

/* Recipe book */

.recipe-book {
  background: var(--sage);
  overflow: hidden;
}

.recipe-book__layout {
  display: grid;
  grid-template-columns: minmax(25rem, 1.08fr) minmax(20rem, 0.92fr);
  align-items: center;
  gap: clamp(3.5rem, 7vw, 8rem);
  min-height: 54rem;
  padding-top: var(--section-space);
  padding-bottom: var(--section-space);
}

.recipe-book__visual {
  position: relative;
  min-height: clamp(34rem, 43vw, 43rem);
}

.recipe-book__recipe-photo {
  position: absolute;
  background: var(--deep-green);
  overflow: hidden;
}

.recipe-book__recipe-photo::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgb(38 53 27 / 15%));
  content: "";
}

.recipe-book__recipe-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.recipe-book__recipe-photo--primary {
  top: 2%;
  right: 0;
  width: 49%;
  height: 58%;
}

.recipe-book__recipe-photo--primary img {
  object-position: center 54%;
}

.recipe-book__recipe-photo--secondary {
  right: 3%;
  bottom: 5%;
  width: 58%;
  height: 27%;
}

.recipe-book__recipe-photo--secondary img {
  object-position: center;
}

.recipe-book__mockup {
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: -4%;
  width: min(76%, 29rem);
  height: auto;
  filter: drop-shadow(0 2rem 2.2rem rgb(38 53 27 / 28%));
}

.recipe-book h2 {
  max-width: 13ch;
  margin-bottom: 2rem;
  font-size: clamp(3.1rem, 3.75vw, 5.2rem);
  text-transform: uppercase;
}

.recipe-book__copy > p:not(.section-kicker) {
  max-width: 37rem;
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
}

.button-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2.2rem;
  flex-wrap: wrap;
}

/* Home bridge */

.home-bridge {
  position: relative;
  padding-top: var(--section-space);
  padding-bottom: var(--section-space);
  overflow: hidden;
}

.home-bridge__heading {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 0.42fr;
  align-items: end;
  gap: clamp(2rem, 7vw, 8rem);
}

.home-bridge__heading .section-kicker {
  grid-column: 1 / -1;
}

.home-bridge h2 {
  margin-bottom: 0;
  font-size: clamp(4rem, 8.6vw, 9.5rem);
  text-transform: uppercase;
}

.home-bridge h2 span {
  color: var(--olive);
}

.home-bridge__heading > p:last-child {
  max-width: 30rem;
  margin-bottom: 0.8rem;
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
}

.home-actions {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(2rem, 6vw, 7rem);
  margin-top: clamp(5rem, 10vw, 10rem);
}

.home-actions::before {
  position: absolute;
  top: 1.2rem;
  right: 0;
  left: 0;
  height: 1px;
  background: rgb(17 19 15 / 35%);
  content: "";
}

.home-actions article {
  position: relative;
  padding-top: 4rem;
}

.home-actions__number {
  position: absolute;
  top: 0;
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  color: var(--white);
  background: var(--olive);
  font-size: 0.7rem;
  font-weight: 850;
}

.home-actions h3 {
  margin-bottom: 0.8rem;
  font-size: clamp(2rem, 3.3vw, 3.6rem);
  text-transform: uppercase;
}

.home-actions p {
  max-width: 20rem;
  margin-bottom: 0;
}

/* Teachers */

.teacher-resources {
  padding-block: var(--section-space);
  background: var(--yellow);
}

.teacher-resources__layout {
  display: grid;
  grid-template-columns: minmax(22rem, 1fr) minmax(20rem, 0.75fr);
  gap: clamp(4rem, 10vw, 11rem);
  align-items: end;
}

.teacher-resources h2 {
  max-width: 11ch;
  margin-bottom: 2rem;
  font-size: clamp(4rem, 7.5vw, 8rem);
  text-transform: uppercase;
}

.teacher-resources__copy > p:not(.section-kicker) {
  max-width: 42rem;
  font-size: clamp(1.05rem, 1.45vw, 1.25rem);
}

.teacher-resources .button {
  margin-top: 1rem;
}

.resource-index {
  margin: 0;
  padding: 0;
  list-style: none;
}

.resource-index li {
  border-top: 1px solid rgb(17 19 15 / 44%);
}

.resource-index li:last-child {
  border-bottom: 1px solid rgb(17 19 15 / 44%);
}

.resource-index a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4.3rem;
  padding-block: 0.8rem;
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  font-weight: 700;
  text-decoration: none;
  transition: padding 180ms ease;
}

.resource-index a:hover {
  padding-left: 0.6rem;
}

/* Explore */

.explore {
  padding-top: var(--section-space);
  padding-bottom: var(--section-space);
  background: var(--white);
}

.explore__heading {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  align-items: end;
}

.explore h2 {
  margin-bottom: 0;
  font-size: clamp(4.5rem, 10vw, 11rem);
  text-transform: uppercase;
}

.explore__feature {
  display: grid;
  grid-template-columns: minmax(28rem, 1.15fr) minmax(20rem, 0.85fr);
  align-items: center;
  gap: clamp(3.5rem, 7vw, 8rem);
  max-width: 82rem;
  margin: clamp(5rem, 10vw, 10rem) auto;
}

.explore__cover {
  display: block;
  justify-self: center;
  width: min(100%, 34rem);
  text-decoration: none;
}

.explore__cover img {
  width: 100%;
  height: auto;
  transition:
    filter 250ms ease,
    transform 250ms ease;
}

.explore__cover:hover img {
  filter: drop-shadow(0 1.2rem 1.8rem rgb(17 19 15 / 14%));
  transform: translateY(-0.35rem) scale(1.008);
}

.explore__feature-copy {
  position: relative;
  padding-left: clamp(1.5rem, 3vw, 3rem);
  border-left: 1px solid rgb(17 19 15 / 28%);
}

.explore__number {
  margin-bottom: 2rem;
  color: var(--olive);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.explore h3 {
  margin-bottom: 1.3rem;
  font-size: clamp(2.6rem, 5vw, 5.6rem);
  text-transform: uppercase;
}

.explore__feature p:not(.explore__number) {
  max-width: 34rem;
}

.explore__links {
  display: grid;
  grid-template-columns: 0.75fr 1fr;
  gap: clamp(3rem, 8vw, 10rem);
  max-width: 69rem;
  margin-left: auto;
}

.explore__links article {
  padding-top: 2rem;
  border-top: 1px solid rgb(17 19 15 / 38%);
}

.explore__links h3 {
  font-size: clamp(2.4rem, 4.2vw, 4.5rem);
}

/* Closing */

.closing {
  position: relative;
  min-height: 45rem;
  padding: var(--section-space) var(--page-gutter);
  color: var(--white);
  background: var(--ink);
  overflow: hidden;
}

.closing__marquee {
  position: absolute;
  top: 7%;
  left: 0;
  width: 100%;
  color: transparent;
  font-size: clamp(6rem, 15vw, 14rem);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  -webkit-text-stroke: 1px rgb(255 216 61 / 35%);
  overflow: hidden;
}

.closing__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  width: min(100%, var(--max-width));
  min-height: 27rem;
  margin-inline: auto;
}

.closing h2 {
  max-width: 11ch;
  margin-bottom: 2rem;
  font-size: clamp(4rem, 8vw, 9rem);
  text-transform: uppercase;
}

.closing h2 span {
  color: var(--yellow);
}

.closing__content > p:not(.section-kicker) {
  max-width: 38rem;
  font-size: clamp(1.1rem, 1.6vw, 1.35rem);
}

.closing .button {
  margin-top: 1rem;
}

/* Footer */

.site-footer {
  background: var(--cream);
}

.site-footer__main {
  padding: clamp(2.75rem, 5vw, 4.5rem) var(--page-gutter) clamp(2rem, 4vw, 3.5rem);
}

.social-nav {
  display: flex;
  justify-content: center;
  gap: 0.45rem;
}

.social-nav a {
  display: inline-flex;
  width: 2.75rem;
  height: 2.75rem;
  align-items: center;
  justify-content: center;
  border: 1px solid rgb(17 19 15 / 68%);
  border-radius: 50%;
  color: var(--ink);
  transition:
    color 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.social-nav a:hover {
  border-color: var(--deep-green);
  color: var(--cream);
  background: var(--deep-green);
  transform: translateY(-2px);
}

.social-nav a:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 3px;
}

.social-nav svg {
  width: 1.2rem;
  height: 1.2rem;
  fill: currentColor;
}

.social-nav rect,
.social-nav circle {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.social-nav circle:last-child {
  fill: currentColor;
  stroke: none;
}

.social-nav .social-nav__play {
  fill: currentColor;
  stroke: none;
}

.site-footer__divider {
  width: min(100%, var(--max-width));
  height: 1px;
  margin: clamp(1.5rem, 3vw, 2.25rem) auto clamp(2.5rem, 5vw, 4.5rem);
  background: rgb(104 118 60 / 42%);
}

.site-footer__logos {
  display: grid;
  grid-template-columns: auto auto auto;
  align-items: center;
  justify-content: center;
  gap: clamp(2rem, 4vw, 4.5rem);
  width: min(100%, var(--max-width));
  margin-inline: auto;
}

.site-footer__council {
  width: min(100%, 19rem);
}

.site-footer__seals {
  display: flex;
  gap: 1rem;
}

.site-footer__seals img {
  width: clamp(4.5rem, 7vw, 6.5rem);
  height: auto;
}

.site-footer__junta {
  width: min(100%, 13rem);
}

.legal-nav {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: clamp(2.25rem, 4vw, 3.5rem);
  font-size: 0.78rem;
}

.legal-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 2.75rem;
}

.site-footer__bar {
  display: flex;
  min-height: 3.5rem;
  align-items: center;
  justify-content: center;
  padding: 0.8rem var(--page-gutter);
  color: #fff;
  background: var(--olive);
  text-align: center;
}

.site-footer__bar p {
  margin: 0;
  font-size: clamp(0.72rem, 1.2vw, 0.85rem);
  line-height: 1.45;
}

/* Back to top */

.back-to-top {
  position: fixed;
  z-index: 90;
  right: clamp(1rem, 2.5vw, 2.25rem);
  bottom: clamp(1rem, 2.5vw, 2.25rem);
  display: grid;
  width: 3.25rem;
  height: 3.25rem;
  place-items: center;
  border: 1px solid rgb(255 216 61 / 55%);
  border-radius: 50%;
  color: var(--yellow);
  background: var(--ink);
  box-shadow: 0 0.8rem 2rem rgb(17 19 15 / 20%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  text-decoration: none;
  transform: translateY(0.75rem);
  transition:
    opacity 180ms ease,
    visibility 180ms ease,
    transform 180ms ease,
    color 180ms ease,
    background-color 180ms ease;
}

.back-to-top[data-visible] {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover {
  color: var(--ink);
  background: var(--yellow);
  transform: translateY(-0.2rem);
}

.back-to-top:active {
  transform: translateY(0);
}

.back-to-top svg {
  width: 1.35rem;
  height: 1.35rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Tablet and navigation breakpoint */

@media (max-width: 1039px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .brand__seals {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    min-width: 5.4rem;
    min-height: 2.75rem;
    padding: 0.4rem 0.75rem;
    border: 0;
    border-radius: 999px;
    color: var(--white);
    background: var(--ink);
    font-size: 0.76rem;
    font-weight: 750;
  }

  .menu-toggle__lines,
  .menu-toggle__lines::before {
    display: block;
    width: 1rem;
    height: 1px;
    background: currentColor;
    content: "";
    transition: transform 180ms ease;
  }

  .menu-toggle__lines::before {
    transform: translateY(-0.28rem);
  }

  .menu-toggle[aria-expanded="true"] .menu-toggle__lines {
    transform: rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] .menu-toggle__lines::before {
    transform: rotate(90deg);
  }

  .site-nav {
    position: fixed;
    z-index: 99;
    top: 5.5rem;
    right: 0;
    bottom: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 2rem var(--page-gutter);
    background: var(--yellow);
    overflow-y: auto;
  }

  .site-nav[data-open] {
    display: flex;
  }

  .site-nav a {
    justify-content: space-between;
    min-height: 4.2rem;
    border-bottom: 1px solid rgb(17 19 15 / 35%);
    font-size: clamp(1.5rem, 5vw, 2.8rem);
    font-weight: 850;
    letter-spacing: -0.04em;
  }

  .site-nav__featured {
    margin-top: 1.2rem;
    padding: 0.8rem 1.2rem;
    border-radius: 0;
  }

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

  .hero__visual {
    min-height: 34rem;
  }

  .hero__visual img {
    min-height: 34rem;
  }

  .journey {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 2rem;
  }

  .journey li:nth-child(even) {
    margin-top: 0;
  }

  .journey li:nth-child(2),
  .journey li:nth-child(5) {
    margin-top: 3rem;
  }

  .cooking {
    gap: 3.5rem;
  }
}

/* Mobile */

@media (max-width: 767px) {
  :root {
    --page-gutter: 1.25rem;
    --section-space: 5.5rem;
  }

  html {
    scroll-padding-top: 5rem;
  }

  .site-header {
    min-height: 4.75rem;
    padding-block: 0.65rem;
  }

  .site-nav {
    top: 4.75rem;
  }

  .brand__council {
    width: 7.8rem;
  }

  .brand__seals {
    display: flex;
    gap: 0.15rem;
  }

  .brand__seals img {
    width: 1.55rem;
    height: 1.55rem;
  }

  .button {
    min-height: 3.25rem;
  }

  .hero {
    display: flex;
    flex-direction: column;
    min-height: 0;
    padding-top: 3.2rem;
  }

  .hero__copy {
    padding: 0 0 2.5rem;
  }

  .hero .eyebrow {
    margin-bottom: 1rem;
  }

  .hero h1 {
    max-width: none;
    margin-bottom: 1.4rem;
    font-size: clamp(2.95rem, 12.8vw, 3.9rem);
  }

  .hero__lead {
    max-width: 22rem;
    font-size: 1.25rem;
  }

  .hero__text {
    font-size: 1rem;
  }

  .hero__actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.65rem;
  }

  .hero__byline {
    margin-top: 1.4rem;
    font-size: 0.72rem;
  }

  .hero__visual {
    width: calc(100% + (var(--page-gutter) * 2));
    height: 23rem;
    min-height: 0;
    margin: 0 calc(var(--page-gutter) * -1);
  }

  .hero__visual::after {
    inset: 0 0 auto;
    width: auto;
    height: 22%;
    background: linear-gradient(180deg, var(--cream), transparent);
  }

  .hero__visual img {
    min-height: 0;
    object-position: 61% center;
  }

  .hero__rhythm {
    top: 1.35rem;
    right: auto;
    bottom: auto;
    left: 1.25rem;
    max-width: 8ch;
    font-size: 1.35rem;
  }

  .hero__formula {
    margin: 0 calc(var(--page-gutter) * -1);
    font-size: 0.64rem;
    letter-spacing: 0.08em;
  }

  .olive-shadow::after {
    width: 18rem;
    height: 18rem;
  }

  .campaign-state {
    grid-template-columns: 1fr;
    gap: 1.6rem;
    padding-block: 3.5rem;
  }

  .campaign-state__label {
    min-height: 3.3rem;
    padding: 0.7rem 1.2rem;
    font-size: 0.9rem;
  }

  .campaign-state__message {
    font-size: 1.7rem;
  }

  .manifesto__heading,
  .varieties__intro,
  .home-bridge__heading,
  .explore__heading {
    grid-template-columns: 1fr;
  }

  .manifesto h2 {
    font-size: clamp(3.7rem, 17vw, 5.2rem);
  }

  .manifesto__heading {
    gap: 2rem;
  }

  .manifesto__statement {
    margin-block: 5rem;
  }

  .manifesto__statement p {
    font-size: 2rem;
    text-align: left;
  }

  .pillars {
    grid-template-columns: 1fr;
    gap: 3.2rem;
  }

  .pillar:nth-child(2),
  .pillar:nth-child(3) {
    margin-top: 0;
  }

  .pillar__word {
    font-size: 1.8rem;
  }

  .igp-story {
    grid-template-columns: 1fr;
  }

  .igp-story__seals {
    min-height: 24rem;
  }

  .igp-story__seals::before {
    top: 10%;
    right: 5%;
    width: 18rem;
    height: 18rem;
  }

  .igp-story__seal {
    width: 10rem;
  }

  .igp-story__copy {
    padding: 0 var(--page-gutter) 5.5rem;
  }

  .igp-story h2 {
    font-size: clamp(3.2rem, 15vw, 4.5rem);
  }

  .varieties h2 {
    margin-bottom: 1.5rem;
    font-size: clamp(3rem, 12vw, 4rem);
  }

  .varieties__intro > *,
  .explore__heading > * {
    min-width: 0;
  }

  .varieties__comparison {
    margin-top: 4rem;
  }

  .variety {
    grid-template-columns: minmax(0, 1fr);
    gap: 3rem;
    padding-block: 3.5rem;
  }

  .variety--gordal .variety__identity,
  .variety--gordal .variety__facts {
    order: initial;
  }

  .variety h3 {
    max-width: none;
    font-size: clamp(2.65rem, 12vw, 5rem);
  }

  .variety__fact {
    grid-template-columns: 1fr;
    gap: 0.65rem;
  }

  .variety__fact--number dd > strong {
    font-size: clamp(3.5rem, 18vw, 6rem);
  }

  .classroom-journey h2 {
    font-size: clamp(3.2rem, 15vw, 4.5rem);
  }

  .journey {
    grid-template-columns: 1fr;
    gap: 0;
    padding-left: 1.2rem;
    border-left: 1px solid rgb(255 253 248 / 35%);
  }

  .journey li,
  .journey li:nth-child(2),
  .journey li:nth-child(5) {
    min-height: 0;
    margin: 0;
    padding: 0 0 2.8rem 2.2rem;
    border-top: 0;
  }

  .journey li::before {
    top: -0.2rem;
    left: -2.35rem;
  }

  .journey li::after {
    display: none;
  }

  .cooking {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  .cooking__image {
    order: 2;
    margin-inline: calc(var(--page-gutter) * -1);
  }

  .cooking__image img {
    min-height: 24rem;
  }

  .cooking__image p {
    right: 1rem;
  }

  .cooking__copy {
    order: 1;
  }

  .cooking h2 {
    font-size: clamp(3.2rem, 15vw, 4.5rem);
  }

  .video-posters {
    grid-column: auto;
    order: 3;
    grid-template-columns: 1fr;
    gap: 2rem;
    width: 100%;
    margin-top: 0;
  }

  .video-embed {
    width: 100%;
  }

  .video-embed--gilda {
    margin-top: 0;
  }

  .recipe-book__layout {
    grid-template-columns: 1fr;
    gap: 3rem;
    min-height: 0;
  }

  .recipe-book__visual {
    min-height: 30rem;
  }

  .recipe-book__recipe-photo--primary {
    top: 0;
    right: calc(var(--page-gutter) * -1);
    width: 55%;
    height: 55%;
  }

  .recipe-book__recipe-photo--secondary {
    right: calc(var(--page-gutter) * -1);
    bottom: 3%;
    width: 65%;
    height: 25%;
  }

  .recipe-book__mockup {
    bottom: 0;
    left: -4%;
    width: min(74%, 19rem);
    transform: none;
  }

  .recipe-book h2 {
    font-size: clamp(2.9rem, 12vw, 4rem);
  }

  .button-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .home-bridge__heading {
    gap: 2rem;
  }

  .home-bridge h2 {
    font-size: clamp(3.4rem, 15vw, 4.8rem);
  }

  .home-actions {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 5rem;
    padding-left: 1.2rem;
    border-left: 1px solid rgb(17 19 15 / 35%);
  }

  .home-actions::before {
    display: none;
  }

  .home-actions article {
    padding: 0 0 3rem 2.2rem;
  }

  .home-actions__number {
    top: -0.1rem;
    left: -2.5rem;
  }

  .home-actions h3 {
    font-size: 2.5rem;
  }

  .teacher-resources__layout {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .teacher-resources h2 {
    font-size: clamp(3.4rem, 15vw, 4.8rem);
  }

  .explore__heading {
    gap: 0;
  }

  .explore h2 {
    font-size: clamp(3.7rem, 15vw, 5.2rem);
  }

  .explore__feature {
    grid-template-columns: 1fr;
    gap: 3.5rem;
    margin-block: 5rem;
  }

  .explore__cover {
    justify-self: center;
    width: min(92%, 24rem);
  }

  .explore__cover img {
    filter: drop-shadow(0 1.4rem 1.8rem rgb(17 19 15 / 18%));
  }

  .explore__feature-copy {
    padding-top: 2.2rem;
    padding-left: 0;
    border-top: 1px solid rgb(17 19 15 / 28%);
    border-left: 0;
  }

  .explore h3 {
    font-size: 3rem;
  }

  .explore__links {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .closing {
    min-height: 43rem;
  }

  .closing__marquee {
    top: 8%;
    font-size: 7.5rem;
  }

  .closing h2 {
    font-size: clamp(2.7rem, 11vw, 3.8rem);
  }

  .site-footer__logos {
    grid-template-areas:
      "council council"
      "seals junta";
    grid-template-columns: auto auto;
    justify-content: center;
    justify-items: center;
    gap: 1.15rem clamp(1.1rem, 5vw, 1.6rem);
    max-width: 19rem;
    padding-inline: 0;
  }

  .site-footer__council,
  .site-footer__junta {
    height: auto;
    object-fit: contain;
    justify-self: center;
  }

  .site-footer__council {
    grid-area: council;
    width: clamp(11.5rem, 58vw, 14rem);
    aspect-ratio: 1796 / 664;
  }

  .site-footer__seals {
    grid-area: seals;
    align-items: center;
    gap: 0.45rem;
  }

  .site-footer__seals img {
    width: clamp(3rem, 14vw, 3.5rem);
    aspect-ratio: 1;
    object-fit: contain;
  }

  .site-footer__junta {
    grid-area: junta;
    width: clamp(5.5rem, 26vw, 6.5rem);
    aspect-ratio: 1058 / 650;
  }

  .legal-nav {
    gap: 0.7rem 1.2rem;
    flex-wrap: wrap;
  }

  .site-footer__main {
    padding-inline: max(1.25rem, var(--page-gutter));
  }
}

@media (max-width: 380px) {
  .hero h1 {
    font-size: 3.45rem;
  }

  .hero__formula b {
    padding-inline: 0.2rem;
  }

  .variety__fact {
    grid-template-columns: 1fr;
    gap: 0.65rem;
  }
}

@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;
  }

}

@media print {
  .site-header,
  .hero__actions,
  .button,
  .text-link,
  .legal-nav,
  .back-to-top {
    display: none !important;
  }

  body {
    color: #000;
    background: #fff;
  }
}
