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

/* Informe de entregas de newsletter. */
.newsletter-audience-actions details > form + form {
  margin-top: 0;
  border-top: 0;
}

.newsletter-audience-actions select {
  width: 100%;
  min-height: 39px;
  padding: 8px 9px;
  border: 1px solid rgba(35, 71, 55, .25);
  color: var(--forest);
  background: white;
}

.newsletter-admin-confirm {
  margin: 10px 0;
  display: grid;
  grid-template-columns: 16px 1fr;
  gap: 8px;
  align-items: start;
  color: #58665e;
  font-size: 10px;
}

.newsletter-admin-confirm input {
  width: 15px;
  height: 15px;
  margin: 0;
}

.newsletter-delivery-shell {
  display: grid;
  gap: 34px;
}

.newsletter-delivery-metrics {
  margin-bottom: 0;
}

.admin-directory-filters.newsletter-delivery-filters {
  grid-template-columns: 2fr 1fr 1fr;
}

.newsletter-delivery-table {
  border: 1px solid rgba(35, 71, 55, .2);
  background: white;
}

.newsletter-delivery-table-head,
.newsletter-delivery-table > article {
  display: grid;
  grid-template-columns:
    minmax(220px, 1.45fr)
    minmax(105px, .6fr)
    minmax(100px, .55fr)
    minmax(150px, .8fr)
    minmax(175px, 1fr)
    minmax(115px, .55fr);
  gap: 20px;
  align-items: center;
}

.newsletter-delivery-table-head {
  min-height: 48px;
  padding: 0 22px;
  color: white;
  background: var(--forest);
  font: 650 9px/1.2 var(--display);
  letter-spacing: .06em;
  text-transform: uppercase;
}

.newsletter-delivery-table > article {
  min-height: 118px;
  padding: 22px;
  border-bottom: 1px solid rgba(35, 71, 55, .14);
}

.newsletter-delivery-table > article:last-child {
  border-bottom: 0;
}

.newsletter-delivery-table article > div:first-child strong,
.newsletter-delivery-table article > div:first-child span,
.newsletter-delivery-table article > div:first-child small,
.newsletter-delivery-table article > div:nth-child(3) strong,
.newsletter-delivery-table article > div:nth-child(3) small,
.newsletter-delivery-table article > div:nth-child(4) strong,
.newsletter-delivery-table article > div:nth-child(4) small {
  display: block;
}

.newsletter-delivery-table article > div:first-child strong {
  margin-bottom: 5px;
  color: var(--forest);
  font: 650 17px/1.2 var(--display);
}

.newsletter-delivery-table article > div:first-child span {
  overflow-wrap: anywhere;
  color: #44554b;
  font-size: 13px;
}

.newsletter-delivery-table article small {
  margin-top: 5px;
  color: #748078;
  font-size: 10px;
}

.newsletter-delivery-sent {
  color: #235333;
  background: #dcebdd;
}

.newsletter-delivery-queued,
.newsletter-delivery-sending {
  color: #765819;
  background: #f5e9c6;
}

.newsletter-delivery-failed {
  color: #742b21;
  background: #f5d9d3;
}

.newsletter-delivery-skipped {
  color: #46544c;
  background: #e9ecea;
}

.newsletter-delivery-result summary,
.newsletter-delivery-actions summary {
  width: max-content;
  cursor: pointer;
  color: var(--forest);
  font: 650 10px/1.3 var(--display);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.newsletter-delivery-result p {
  max-width: 300px;
  margin: 8px 0 0;
  overflow-wrap: anywhere;
  color: #742b21;
  font: 11px/1.45 var(--body);
}

.newsletter-delivery-result > span,
.newsletter-delivery-actions > span {
  color: #68766e;
  font-size: 11px;
}

.newsletter-delivery-actions form {
  width: 230px;
  margin-top: 9px;
  padding: 13px;
  border: 1px solid rgba(35, 71, 55, .2);
  background: #f1eee6;
}

.newsletter-delivery-actions label {
  display: grid;
  grid-template-columns: 16px 1fr;
  gap: 8px;
  color: #58665e;
  font-size: 10px;
}

.newsletter-delivery-actions label input {
  width: 15px;
  height: 15px;
  margin: 0;
}

.newsletter-delivery-actions .text-button {
  margin-top: 10px;
  color: var(--forest);
  text-decoration: underline;
}

@media (max-width: 1100px) {
  .newsletter-delivery-table-head {
    display: none;
  }

  .newsletter-delivery-table > article {
    grid-template-columns: 1.4fr .7fr .7fr;
  }

  .newsletter-delivery-table > article > div:nth-child(n + 4) {
    grid-column: auto;
  }
}

@media (max-width: 700px) {
  .admin-directory-filters.newsletter-delivery-filters,
  .newsletter-delivery-table > article {
    grid-template-columns: 1fr;
  }
}

/* Native editorial blog and administration */
.editorial-preview-bar {
  min-height: 58px;
  padding: 12px max(24px, calc((100vw - var(--container)) / 2));
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--forest);
  background: var(--gold);
  font-size: 13px;
}

.editorial-preview-bar strong {
  font: 700 12px/1 var(--display);
  text-transform: uppercase;
}

.editorial-preview-bar a {
  margin-left: auto;
  color: var(--forest);
  font: 650 12px/1 var(--display);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.editorial-gallery {
  padding-top: 20px;
}

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

.editorial-gallery-grid figure {
  margin: 0;
}

.editorial-gallery-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  display: block;
  object-fit: cover;
}

.editorial-gallery-grid figcaption {
  padding-top: 9px;
  color: #657269;
  font-size: 12px;
}

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

.admin-blog-filters {
  grid-template-columns: minmax(0, 2fr) minmax(190px, .7fr) auto;
}

.admin-blog-list {
  border: 1px solid rgba(35, 71, 55, .2);
  background: white;
}

.admin-blog-list > article {
  min-height: 190px;
  padding: 22px;
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  border-bottom: 1px solid rgba(35, 71, 55, .16);
}

.admin-blog-list > article:last-child {
  border-bottom: 0;
}

.admin-blog-thumb {
  height: 145px;
  display: grid;
  place-items: center;
  color: #728077;
  background: #e8e3d9;
  font: 650 11px/1 var(--display);
}

.admin-blog-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.admin-blog-list h2 {
  margin: 12px 0 8px;
  color: var(--forest);
  font-size: 27px;
  line-height: 1.05;
}

.admin-blog-list p {
  max-width: 760px;
  margin: 0 0 12px;
  color: #627168;
  font-size: 14px;
  line-height: 1.5;
}

.admin-blog-list small {
  color: #7a857e;
  font-size: 11px;
}

.admin-blog-actions {
  min-width: 125px;
  display: grid;
  gap: 13px;
  justify-items: start;
}

.admin-blog-actions > a:not(.button) {
  color: var(--forest);
  font: 650 11px/1.2 var(--display);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.admin-editorial-hero > div > a {
  color: white;
  font: 650 11px/1.2 var(--display);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.admin-editorial-shell > .form-errors {
  margin-bottom: 30px;
}

.admin-editorial-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 35px;
  align-items: start;
}

.admin-editorial-main,
.admin-editorial-sidebar {
  display: grid;
  gap: 24px;
}

.admin-editorial-main > section,
.admin-editorial-sidebar > section {
  padding: 34px;
  border: 1px solid rgba(35, 71, 55, .2);
  background: white;
}

.admin-editorial-sidebar {
  position: sticky;
  top: 25px;
}

.admin-editorial-form label,
.editorial-editor-field {
  margin-top: 21px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: var(--forest);
  font: 650 11px/1.3 var(--display);
}

.admin-editorial-form input,
.admin-editorial-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  border: 1px solid rgba(35, 71, 55, .28);
  border-radius: 0;
  color: var(--ink);
  background: white;
  font: 15px/1.5 var(--body);
}

.admin-editorial-form textarea {
  resize: vertical;
}

.admin-editorial-form label > small,
.editorial-editor-field > small {
  color: #718078;
  font: 12px/1.45 var(--body);
}

.editorial-toolbar {
  padding: 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  border: 1px solid rgba(35, 71, 55, .25);
  border-bottom: 0;
  background: #eae5da;
}

.editorial-toolbar button {
  min-height: 34px;
  padding: 7px 10px;
  border: 1px solid rgba(35, 71, 55, .2);
  color: var(--forest);
  background: white;
  cursor: pointer;
  font: 650 10px/1 var(--display);
}

.editorial-rich-editor {
  min-height: 520px;
  padding: 28px;
  overflow: auto;
  border: 1px solid rgba(35, 71, 55, .28);
  background: white;
  color: var(--ink);
  font: 17px/1.7 var(--body);
}

.editorial-rich-editor:focus {
  outline: 2px solid rgba(214, 176, 93, .7);
  outline-offset: 1px;
}

.editorial-rich-editor h2,
.editorial-rich-editor h3 {
  color: var(--forest);
  font-family: var(--display);
  line-height: 1.05;
}

.editorial-rich-editor img {
  max-width: 100%;
  height: auto;
}

.editorial-source.is-enhanced {
  display: none;
}

.admin-editorial-cover {
  width: min(100%, 520px);
  max-height: 340px;
  margin-top: 16px;
  display: block;
  object-fit: cover;
}

.admin-editorial-gallery {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.admin-editorial-gallery article {
  padding: 12px;
  border: 1px solid rgba(35, 71, 55, .18);
  background: #f3efe7;
}

.admin-editorial-gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  display: block;
  object-fit: cover;
}

.admin-editorial-gallery .text-button {
  margin-top: 6px;
  font-size: 10px;
}

.admin-editorial-gallery label {
  margin-top: 10px;
}

.admin-editorial-actions {
  margin-top: 20px;
  display: grid;
  gap: 13px;
  justify-items: stretch;
}

.admin-editorial-actions .button {
  width: 100%;
  text-align: center;
}

.admin-editorial-actions .text-button,
.admin-editorial-danger .text-button {
  justify-self: start;
}

.admin-editorial-danger p:not(.eyebrow) {
  color: #6e766f;
  font-size: 13px;
  line-height: 1.5;
}

@media (max-width: 980px) {
  .admin-editorial-form {
    grid-template-columns: 1fr;
  }

  .admin-editorial-sidebar {
    position: static;
  }

  .admin-blog-list > article {
    grid-template-columns: 180px minmax(0, 1fr);
  }

  .admin-blog-actions {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
  }
}

@media (max-width: 700px) {
  .editorial-preview-bar {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .editorial-preview-bar a {
    width: 100%;
    margin-left: 0;
  }

  .editorial-gallery-grid,
  .admin-editorial-gallery {
    grid-template-columns: 1fr;
  }

  .admin-blog-metrics,
  .admin-blog-filters,
  .admin-blog-list > article {
    grid-template-columns: 1fr;
  }

  .admin-blog-thumb {
    height: 190px;
  }

  .admin-editorial-main > section,
  .admin-editorial-sidebar > section {
    padding: 25px 20px;
  }

  .editorial-rich-editor {
    min-height: 420px;
    padding: 20px 16px;
  }
}

@font-face {
  font-family: "Source Serif";
  src: url("../fonts/source-serif.ttf") format("truetype");
  font-style: normal;
  font-weight: 200 900;
  font-display: swap;
}

:root {
  --forest: #234737;
  --forest-dark: #173326;
  --moss: #506c60;
  --cream: #e9dec9;
  --paper: #fbf8f0;
  --sand: #d2c6b1;
  --yellow: #fbd68c;
  --terracotta: #dd3c1f;
  --brown: #553b2c;
  --ink: #17291f;
  --white: #fff;
  --display: "Lexend", system-ui, sans-serif;
  --serif: "Source Serif", Georgia, serif;
  --container: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

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

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

button,
input,
textarea {
  font: inherit;
}

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

h1,
h2,
h3,
h4 {
  font-family: var(--display);
  line-height: .98;
  letter-spacing: -.045em;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 8px;
  left: 8px;
  padding: 10px 16px;
  background: white;
  color: var(--forest);
  transform: translateY(-160%);
}

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

.site-header {
  position: absolute;
  z-index: 100;
  width: 100%;
  top: 0;
  left: 0;
  color: var(--forest-dark);
  transition: background .25s ease, box-shadow .25s ease;
}

.site-header.is-scrolled {
  position: fixed;
  background: rgba(251, 248, 240, .96);
  box-shadow: 0 2px 20px rgba(18, 43, 30, .08);
  backdrop-filter: blur(15px);
}

body:has(.hero, .page-hero, .route-hero, .farm-detail-hero, .contact-layout) .site-header:not(.is-scrolled):not(.menu-open) {
  color: white;
}

body:has(.hero, .page-hero, .route-hero, .farm-detail-hero, .contact-layout) .site-header:not(.is-scrolled):not(.menu-open) .brand img {
  filter: brightness(0) invert(1);
}

.header-inner {
  min-height: 92px;
  max-width: 1440px;
  margin: 0 auto;
  padding: 14px 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  position: relative;
  z-index: 2;
  width: 220px;
}

.brand img {
  width: 100%;
  max-height: 62px;
  object-fit: contain;
  object-position: left center;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font: 600 13px/1 var(--display);
}

.main-nav > a,
.nav-group > a {
  padding: 18px 0;
}

.main-nav a {
  transition: opacity .2s ease;
}

.main-nav a:hover {
  opacity: .6;
}

.nav-group {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-group button {
  padding: 5px 0 5px 6px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.submenu {
  position: absolute;
  top: 48px;
  left: -22px;
  width: 280px;
  padding: 12px;
  color: var(--forest-dark);
  background: var(--paper);
  border: 1px solid rgba(35, 71, 55, .16);
  box-shadow: 0 20px 50px rgba(18, 43, 30, .2);
  visibility: hidden;
  opacity: 0;
  transform: translateY(8px);
  transition: .2s ease;
}

.submenu a {
  display: block;
  padding: 12px 10px;
  color: var(--forest-dark);
  line-height: 1.3;
}

.submenu a:hover,
.submenu a:focus-visible {
  color: white;
  background: var(--brown);
  opacity: 1;
  outline: none;
}

.nav-group:hover .submenu,
.nav-group:focus-within .submenu,
.nav-group.open .submenu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.main-nav .nav-cta {
  padding: 13px 20px;
  border: 1px solid currentColor;
}

.menu-toggle {
  display: none;
  width: 45px;
  height: 45px;
  padding: 10px;
  border: 0;
  background: transparent;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--forest);
  font: 700 11px/1.2 var(--display);
  letter-spacing: .13em;
  text-transform: uppercase;
}

.eyebrow.light {
  color: rgba(255, 255, 255, .76);
}

.button {
  display: inline-flex;
  min-height: 52px;
  padding: 0 25px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  font: 650 12px/1 var(--display);
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}

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

.button-light {
  background: var(--paper);
  color: var(--forest-dark);
}

.button-ghost {
  border-color: rgba(255, 255, 255, .65);
  color: white;
}

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

.text-link {
  display: inline-flex;
  gap: 20px;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid currentColor;
  font: 650 12px/1 var(--display);
  text-transform: uppercase;
}

.text-link span {
  transition: transform .2s ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

.hero {
  position: relative;
  min-height: 770px;
  color: white;
  background: var(--forest);
}

.hero-home {
  background-image: url("../img/hero-sheep.jpg");
  background-position: 50% 48%;
  background-size: cover;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(22, 48, 35, .82) 0%, rgba(22, 48, 35, .34) 56%, rgba(22, 48, 35, .08) 100%),
    linear-gradient(0deg, rgba(15, 37, 26, .4), transparent 55%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(790px, calc(100% - 48px));
  margin-left: max(24px, calc((100vw - var(--container)) / 2));
  padding-top: 210px;
}

.hero-content h1 {
  max-width: 900px;
  margin-bottom: 30px;
  font-size: clamp(64px, 8.7vw, 132px);
  font-weight: 750;
}

.hero-content > p:not(.eyebrow) {
  max-width: 600px;
  margin-bottom: 36px;
  font-size: 24px;
  line-height: 1.38;
}

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

.scroll-hint {
  position: absolute;
  right: 40px;
  bottom: 36px;
  z-index: 1;
  writing-mode: vertical-rl;
  font: 600 10px/1 var(--display);
  letter-spacing: .12em;
  text-transform: uppercase;
}

.scroll-hint span {
  margin-top: 12px;
}

.intro-band {
  padding: 40px 24px;
  background: var(--cream);
  text-align: center;
}

.intro-band p {
  max-width: 960px;
  margin: 0 auto;
  font: italic 400 clamp(25px, 3vw, 42px)/1.15 var(--serif);
}

.three-portals {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.portal {
  position: relative;
  min-height: 510px;
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  color: white;
  isolation: isolate;
}

.portal::before {
  position: absolute;
  z-index: -2;
  inset: 0;
  content: "";
  background: var(--portal-image) center/cover;
  transition: transform .55s ease;
}

.portal::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgba(18, 43, 30, .9), rgba(18, 43, 30, .1) 70%);
}

.portal:hover::before {
  transform: scale(1.035);
}

.portal-number {
  position: absolute;
  top: 35px;
  left: 42px;
  font: 600 12px/1 var(--display);
}

.portal h2 {
  max-width: 440px;
  margin-bottom: 28px;
  font-size: clamp(30px, 3vw, 47px);
  font-weight: 650;
}

.portal-link {
  font: 650 11px/1 var(--display);
  letter-spacing: .04em;
  text-transform: uppercase;
}

.section {
  max-width: var(--container);
  margin: 0 auto;
  padding: 120px 24px;
}

.section-heading {
  margin-bottom: 75px;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 80px;
  align-items: end;
}

.section-heading.compact {
  margin-bottom: 45px;
}

.section-heading h2 {
  margin-bottom: 0;
  font-size: clamp(48px, 6vw, 84px);
  color: var(--forest);
}

.section-heading > p {
  max-width: 520px;
  margin-bottom: 6px;
  font-size: 24px;
  line-height: 1.35;
}

.section-heading > a {
  justify-self: end;
}

.route-stack {
  border-top: 1px solid var(--sand);
}

.route-row {
  padding: 45px 0;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 65px;
  align-items: center;
  border-bottom: 1px solid var(--sand);
}

.route-image-wrap {
  position: relative;
  display: block;
  overflow: hidden;
}

.route-image-wrap img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: transform .45s ease;
}

.route-image-wrap:hover img {
  transform: scale(1.025);
}

.route-index {
  position: absolute;
  z-index: 1;
  top: 16px;
  left: 18px;
  color: white;
  font: 700 12px/1 var(--display);
}

.route-copy h3 {
  max-width: 660px;
  margin-bottom: 20px;
  color: var(--forest);
  font-size: clamp(35px, 4.1vw, 62px);
}

.route-copy > p:not(.route-meta) {
  max-width: 660px;
  margin-bottom: 25px;
  font-size: 20px;
}

.route-meta,
.route-territory {
  color: var(--moss);
  font: 650 11px/1.35 var(--display);
  letter-spacing: .07em;
  text-transform: uppercase;
}

.partner-types {
  padding: 100px max(24px, calc((100vw - var(--container)) / 2));
  display: grid;
  grid-template-columns: .65fr 1.35fr;
  gap: 80px;
  background: var(--forest);
  color: white;
}

.partner-intro h2 {
  font-size: clamp(47px, 5vw, 76px);
}

.partner-intro > p:last-child {
  max-width: 380px;
  font-size: 21px;
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, .25);
  border-left: 1px solid rgba(255, 255, 255, .25);
}

.partner-grid a {
  min-height: 190px;
  padding: 25px;
  display: flex;
  flex-direction: column;
  gap: 21px;
  align-items: center;
  justify-content: center;
  border-right: 1px solid rgba(255, 255, 255, .25);
  border-bottom: 1px solid rgba(255, 255, 255, .25);
  font: 600 15px/1.2 var(--display);
  text-align: center;
  transition: background .2s ease;
}

.partner-grid a:hover {
  background: rgba(255, 255, 255, .08);
}

.partner-grid img {
  width: 82px;
  height: 82px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.post-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px 24px;
}

.post-card {
  min-width: 0;
}

.post-card-image {
  display: block;
  margin-bottom: 25px;
  overflow: hidden;
  background: var(--cream);
}

.post-card-image img {
  width: 100%;
  height: 285px;
  object-fit: cover;
  transition: transform .4s ease;
}

.post-card:hover .post-card-image img {
  transform: scale(1.025);
}

/* Directory */
.directory-hero {
  min-height: 430px;
  padding: 150px max(24px, calc((100vw - var(--container)) / 2)) 75px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 60px;
  background: var(--forest);
  color: white;
}

.directory-hero > div:first-child {
  max-width: 790px;
}

.directory-hero h1 {
  margin: 8px 0 18px;
  font-size: clamp(64px, 8vw, 126px);
  line-height: .88;
}

.directory-hero > div:first-child > p:last-child {
  max-width: 700px;
  margin: 0;
  font-size: clamp(19px, 2vw, 25px);
}

.directory-total {
  padding-bottom: 6px;
  flex: 0 0 auto;
  text-align: right;
}

.directory-total strong {
  display: block;
  font: 700 clamp(48px, 5vw, 80px)/.9 var(--display);
}

.directory-total span {
  font: 650 11px/1 var(--display);
  letter-spacing: .09em;
  text-transform: uppercase;
}

.directory-shell {
  padding: 65px max(24px, calc((100vw - var(--container)) / 2)) 120px;
}

.directory-filters {
  padding: 28px;
  display: grid;
  grid-template-columns: 1.35fr repeat(3, 1fr) auto;
  gap: 16px;
  align-items: end;
  background: #ece6d9;
}

.directory-filters label {
  min-width: 0;
}

.directory-filters label > span {
  margin-bottom: 8px;
  display: block;
  color: var(--forest);
  font: 700 10px/1 var(--display);
  letter-spacing: .08em;
  text-transform: uppercase;
}

.directory-filters input,
.directory-filters select {
  width: 100%;
  height: 50px;
  padding: 0 14px;
  border: 1px solid rgba(35, 71, 55, .23);
  border-radius: 0;
  background: #fff;
  color: var(--forest);
  font: 500 14px/1 var(--display);
}

.directory-filters button {
  min-height: 50px;
  border: 0;
  cursor: pointer;
}

.directory-clear {
  grid-column: 1 / -1;
  justify-self: end;
  color: var(--forest);
  font: 650 12px/1 var(--display);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.directory-heading {
  margin: 46px 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.directory-heading p,
.directory-heading a {
  margin: 0;
  color: var(--forest);
  font: 650 13px/1.3 var(--display);
}

.directory-heading a {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.directory-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(35, 71, 55, .25);
  border-left: 1px solid rgba(35, 71, 55, .25);
}

.directory-card {
  min-height: 350px;
  display: flex;
  flex-direction: column;
  border-right: 1px solid rgba(35, 71, 55, .25);
  border-bottom: 1px solid rgba(35, 71, 55, .25);
  background: #f7f3eb;
}

.directory-card.is-featured {
  background: #efe2c3;
  box-shadow: inset 0 6px 0 #d6b05d;
}

.directory-card.is-ambassador {
  background: var(--forest);
  box-shadow: inset 0 6px 0 var(--yellow);
}

.directory-card.is-ambassador .directory-category,
.directory-card.is-ambassador .directory-route {
  color: rgba(255, 255, 255, .72);
}

.directory-card.is-ambassador h2 {
  color: white;
}

.directory-card.is-ambassador .directory-location {
  color: var(--yellow);
}

.directory-card.is-ambassador .directory-card-main > p:not(.directory-location) {
  color: rgba(255, 255, 255, .82);
}

.directory-card.is-ambassador .directory-card-footer {
  border-top-color: rgba(255, 255, 255, .22);
  color: rgba(255, 255, 255, .7);
}

.directory-card.is-ambassador .directory-card-footer a {
  color: white;
}

.directory-card-main {
  padding: 30px;
  display: flex;
  flex: 1;
  flex-direction: column;
}

.directory-card-top {
  min-height: 24px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.directory-category,
.directory-badge,
.directory-route {
  color: var(--moss);
  font: 700 10px/1.3 var(--display);
  letter-spacing: .07em;
  text-transform: uppercase;
}

.directory-badge {
  padding: 6px 8px;
  background: var(--forest);
  color: #fff;
}

.directory-badge.is-ambassador {
  color: var(--forest);
  background: var(--yellow);
}

.directory-badge.is-featured {
  background: var(--brown);
}

.directory-level-legend {
  margin: 0 0 20px;
  display: flex;
  justify-content: flex-end;
  gap: 24px;
  color: var(--moss);
  font: 650 10px/1.2 var(--display);
  letter-spacing: .05em;
  text-transform: uppercase;
}

.directory-level-legend span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.directory-level-legend i {
  width: 13px;
  height: 13px;
  display: inline-block;
  border: 1px solid rgba(35, 71, 55, .25);
  background: #f7f3eb;
}

.directory-level-legend i.is-featured {
  background: #efe2c3;
  box-shadow: inset 0 3px 0 #d6b05d;
}

.directory-level-legend i.is-ambassador {
  border-color: var(--forest);
  background: var(--forest);
  box-shadow: inset 0 3px 0 var(--yellow);
}

.directory-card h2 {
  margin: 26px 0 8px;
  color: var(--forest);
  font-size: clamp(25px, 2.3vw, 36px);
  line-height: 1.02;
}

.directory-card-main > p:not(.directory-location) {
  margin: 20px 0 24px;
  color: #3d5148;
  font-size: 16px;
  line-height: 1.5;
}

.directory-location {
  margin: 0;
  color: var(--brown);
  font: 650 12px/1.35 var(--display);
}

.directory-route {
  margin-top: auto;
}

.directory-card-footer {
  padding: 16px 30px;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  border-top: 1px solid rgba(35, 71, 55, .18);
  color: #647269;
  font: 600 10px/1.3 var(--display);
  text-transform: uppercase;
}

.directory-card-footer a {
  color: var(--forest);
  font-weight: 700;
}

.directory-pagination {
  margin-top: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  color: var(--forest);
  font: 650 13px/1 var(--display);
}

.directory-pagination a {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.directory-join-cta {
  margin-top: 72px;
  padding: 55px 60px;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(270px, .65fr);
  align-items: end;
  gap: 70px;
  color: white;
  background: var(--forest);
}

.directory-join-cta h2 {
  max-width: 820px;
  margin: 10px 0 20px;
  font-size: clamp(40px, 4.3vw, 64px);
  line-height: .96;
}

.directory-join-cta > div:first-child > p:last-child {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, .76);
  font-size: 18px;
}

.directory-join-actions {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 22px;
}

.directory-join-actions > a:last-child {
  color: white;
  font: 650 12px/1.3 var(--display);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.directory-entry-hero {
  position: relative;
  min-height: 540px;
  padding: 150px max(24px, calc((100vw - var(--container)) / 2)) 75px;
  display: flex;
  align-items: flex-end;
  background: var(--forest);
  color: #fff;
  isolation: isolate;
  overflow: hidden;
}

.directory-entry-hero.has-cover {
  min-height: min(760px, 86vh);
  background: #183528;
}

.directory-entry-hero.has-cover::before,
.directory-entry-hero.has-cover::after {
  position: absolute;
  inset: 0;
  z-index: -2;
  content: "";
}

.directory-entry-hero.has-cover::before {
  background: var(--directory-cover) center 56% / cover no-repeat;
}

.directory-entry-hero.has-cover::after {
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(12, 35, 25, .2) 10%, rgba(12, 35, 25, .28) 42%, rgba(12, 35, 25, .9) 100%),
    linear-gradient(90deg, rgba(12, 35, 25, .45), transparent 62%);
}

.directory-entry-hero-inner {
  width: 100%;
}

.directory-entry-breadcrumb {
  margin-bottom: clamp(58px, 10vh, 110px);
  display: flex;
  gap: 10px;
  font: 650 11px/1 var(--display);
  text-transform: uppercase;
}

.directory-entry-breadcrumb a {
  opacity: .8;
}

.directory-entry-title {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 55px;
}

.directory-entry-title > div {
  max-width: 1050px;
}

.directory-entry-badges {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 9px;
}

.directory-entry-badges span {
  padding: 8px 11px 7px;
  border: 1px solid rgba(255, 255, 255, .48);
  color: #fff;
  font: 700 10px/1 var(--display);
  letter-spacing: .1em;
  text-transform: uppercase;
}

.directory-entry-badges .is-demo {
  border-color: var(--yellow);
  background: var(--yellow);
  color: var(--forest-dark);
}

.directory-entry-badges .is-complete {
  border-color: rgba(255, 255, 255, .22);
  background: rgba(255, 255, 255, .14);
}

.directory-entry-title h1 {
  max-width: 980px;
  margin: 18px 0 24px;
  font-size: clamp(54px, 7vw, 106px);
  line-height: .92;
}

.directory-entry-title > div > p:last-child {
  margin: 0;
  font: 650 15px/1.3 var(--display);
}

.directory-entry-seal {
  width: 185px;
  height: 185px;
  padding: 20px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, .45);
  border-radius: 50%;
  font: 700 12px/1.35 var(--display);
  text-align: center;
  text-transform: uppercase;
}

.directory-entry-logo {
  width: 190px;
  height: 190px;
  padding: 24px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  background: var(--paper);
}

.directory-entry-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.directory-demo-notice {
  padding: 17px max(24px, calc((100vw - var(--container)) / 2));
  display: flex;
  justify-content: space-between;
  gap: 30px;
  background: var(--yellow);
  color: var(--forest-dark);
  font: 600 12px/1.4 var(--display);
}

.directory-demo-notice strong {
  text-transform: uppercase;
}

.directory-preview-bar {
  position: sticky;
  top: 0;
  z-index: 30;
  padding: 14px max(24px, calc((100vw - var(--container)) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  color: white;
  background: var(--brown);
  font: 600 12px/1.4 var(--display);
}

.directory-preview-bar > div {
  display: flex;
  align-items: center;
  gap: 18px;
}

.directory-preview-bar strong {
  color: var(--yellow);
  text-transform: uppercase;
}

.directory-preview-bar a {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.directory-preview-bar .directory-preview-publish,
.account-workspace-nav .account-workspace-publish {
  min-height: 40px;
  padding: 0 17px;
  display: inline-flex;
  align-items: center;
  border: 0;
  color: var(--forest-dark);
  background: var(--yellow);
  font: 700 10px/1 var(--display);
  letter-spacing: .04em;
  text-decoration: none;
  text-transform: uppercase;
}

.directory-preview-bar .directory-preview-unpublish,
.account-workspace-nav .account-workspace-unpublish {
  color: #ffc9bc;
  font-weight: 700;
}

.directory-entry-layout {
  padding: 95px max(24px, calc((100vw - var(--container)) / 2)) 105px;
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(290px, .7fr);
  gap: 90px;
}

.directory-entry-content h2 {
  max-width: 890px;
  margin: 18px 0 60px;
  color: var(--forest);
  font-size: clamp(34px, 4.1vw, 62px);
}

.directory-entry-description {
  max-width: 820px;
  margin: 18px 0 55px;
  color: #3f5148;
  font-family: var(--serif);
  font-size: clamp(19px, 1.65vw, 23px);
  line-height: 1.55;
}

.directory-entry-services {
  margin-bottom: 42px;
}

.directory-entry-services ul {
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  list-style: none;
}

.directory-entry-services li {
  padding: 11px 14px;
  border-radius: 30px;
  background: #e7e1d5;
  color: var(--forest);
  font: 650 12px/1 var(--display);
}

.directory-entry-routes {
  padding: 30px 0;
  border-top: 1px solid rgba(35, 71, 55, .2);
  border-bottom: 1px solid rgba(35, 71, 55, .2);
}

.directory-entry-routes a,
.directory-entry-routes span {
  margin: 10px 18px 0 0;
  display: inline-block;
  color: var(--forest);
  font: 650 15px/1.3 var(--display);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.directory-entry-placeholder {
  margin-top: 50px;
  padding: 30px;
  background: #ece6d9;
}

.directory-entry-placeholder p {
  max-width: 720px;
  margin: 0;
  color: #4d5f56;
  font-size: 17px;
}

.directory-entry-aside {
  position: sticky;
  top: 105px;
  align-self: start;
  padding: 34px;
  border: 1px solid rgba(35, 71, 55, .28);
  background: rgba(250, 247, 239, .7);
}

.directory-entry-aside dl {
  margin: 0 0 30px;
}

.directory-entry-aside dl > div {
  padding: 18px 0;
  border-bottom: 1px solid rgba(35, 71, 55, .15);
}

.directory-entry-aside dt {
  margin-bottom: 8px;
  color: var(--moss);
  font: 700 10px/1 var(--display);
  letter-spacing: .08em;
  text-transform: uppercase;
}

.directory-entry-aside dd {
  margin: 0;
  color: var(--forest);
  font: 650 17px/1.35 var(--display);
  overflow-wrap: anywhere;
}

.directory-entry-actions {
  display: grid;
  gap: 18px;
}

.directory-entry-actions .button {
  width: 100%;
}

.directory-entry-actions .text-link {
  justify-content: space-between;
}

.directory-section-heading {
  margin-bottom: 44px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 45px;
}

.directory-section-heading h2 {
  margin: 0;
  color: var(--forest);
  font-size: clamp(45px, 5.6vw, 78px);
  line-height: .95;
}

.directory-section-heading > span,
.directory-section-heading > p {
  max-width: 430px;
  margin: 0;
  color: #66756d;
  font: 600 13px/1.5 var(--display);
}

.directory-showcase,
.directory-products,
.directory-partner-news {
  padding: 95px max(24px, calc((100vw - var(--container)) / 2)) 110px;
}

.directory-showcase {
  background: #e9e3d8;
}

.directory-gallery {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: repeat(2, minmax(190px, 285px));
  gap: 12px;
}

.directory-gallery a {
  position: relative;
  display: block;
  min-height: 0;
  overflow: hidden;
}

.directory-gallery a:first-child {
  grid-row: 1 / span 2;
}

.directory-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.directory-gallery a:hover img {
  transform: scale(1.025);
}

.directory-gallery a > span {
  position: absolute;
  right: 15px;
  bottom: 15px;
  padding: 10px 12px;
  background: rgba(26, 57, 43, .88);
  color: white;
  font: 650 10px/1 var(--display);
  text-transform: uppercase;
}

.directory-products {
  background: var(--paper);
}

.directory-partner-news {
  background: #f1ecdf;
}

.directory-news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.directory-news-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  background: white;
}

.directory-news-image {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #ddd7ca;
}

.directory-news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

.directory-news-card:hover .directory-news-image img {
  transform: scale(1.025);
}

.directory-news-card > div {
  padding: 28px;
  display: flex;
  flex: 1;
  flex-direction: column;
}

.directory-news-card h2,
.directory-news-card h3 {
  margin: 10px 0 14px;
  color: var(--forest);
  font-size: clamp(25px, 2.3vw, 34px);
  line-height: 1;
}

.directory-news-card h2 a,
.directory-news-card h3 a {
  color: inherit;
}

.directory-news-card > div > p:not(.eyebrow) {
  margin: 0 0 28px;
  color: #5d6a63;
  font-size: 15px;
}

.directory-news-card > div > a:last-child {
  margin-top: auto;
  color: var(--brown);
  font: 700 11px/1 var(--display);
  text-transform: uppercase;
}

.partner-news-index-hero {
  min-height: 420px;
  padding: 155px max(24px, calc((100vw - var(--container)) / 2)) 75px;
  display: flex;
  align-items: flex-end;
  color: white;
  background: var(--forest);
}

.partner-news-index-hero > div {
  max-width: 900px;
}

.partner-news-index-hero a,
.partner-news-detail-hero a {
  color: white;
  font: 700 12px/1 var(--display);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.partner-news-index-hero h1 {
  margin: 24px 0 20px;
  font-size: clamp(48px, 6vw, 84px);
  line-height: .94;
}

.partner-news-index-hero > div > p:last-child {
  max-width: 680px;
  margin: 0;
  color: rgba(255, 255, 255, .8);
  font-size: 18px;
}

.partner-news-index {
  padding: 90px max(24px, calc((100vw - var(--container)) / 2)) 115px;
  background: var(--paper);
}

.partner-news-detail-hero {
  min-height: 430px;
  display: grid;
  color: white;
  background: var(--forest);
}

.partner-news-detail-hero.has-image {
  min-height: 590px;
  grid-template-columns: minmax(0, 1.05fr) minmax(460px, .95fr);
}

.partner-news-detail-hero > img {
  width: 100%;
  height: 100%;
  min-height: 590px;
  object-fit: cover;
}

.partner-news-detail-hero > div {
  padding: 150px max(30px, calc((100vw - var(--container)) / 2)) 80px;
  align-self: end;
}

.partner-news-detail-hero.has-image > div {
  padding: 145px max(35px, calc((100vw - var(--container)) / 4)) 75px 65px;
}

.partner-news-detail-hero h1 {
  margin: 25px 0 24px;
  font-size: clamp(46px, 5.3vw, 76px);
  line-height: .95;
}

.partner-news-detail-hero > div > p:last-child {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, .82);
  font-size: 19px;
}

.partner-news-detail-layout {
  padding: 90px max(24px, calc((100vw - var(--container)) / 2)) 115px;
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(280px, .65fr);
  align-items: start;
  gap: 80px;
  background: var(--paper);
}

.partner-news-detail-body {
  max-width: 780px;
}

.partner-news-date {
  margin: 0 0 38px;
  color: var(--moss);
  font: 700 11px/1.3 var(--display);
  text-transform: uppercase;
}

.partner-news-detail-body > div {
  margin-bottom: 42px;
  color: #37493f;
  font-size: 19px;
  line-height: 1.75;
  white-space: pre-line;
}

.partner-news-detail-layout aside {
  padding: 32px;
  border-top: 4px solid var(--forest);
  background: white;
}

.partner-news-detail-layout aside h2 {
  margin: 10px 0 8px;
  color: var(--forest);
  font-size: 30px;
  line-height: 1;
}

.partner-news-detail-layout aside p:not(.eyebrow) {
  color: #637168;
  font-size: 14px;
}

.partner-news-detail-layout aside a {
  color: var(--brown);
  font: 700 11px/1 var(--display);
  text-transform: uppercase;
}

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

.directory-product-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  border: 1px solid rgba(35, 71, 55, .2);
  background: #fff;
}

.directory-product-image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #ddd7ca;
}

.directory-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}

.directory-product-card:hover .directory-product-image img {
  transform: scale(1.025);
}

.directory-product-copy {
  padding: 28px;
  display: flex;
  flex: 1;
  flex-direction: column;
}

.directory-product-copy > span {
  color: var(--moss);
  font: 700 10px/1 var(--display);
  letter-spacing: .1em;
  text-transform: uppercase;
}

.directory-product-copy h3 {
  margin: 13px 0 14px;
  color: var(--forest);
  font-size: clamp(25px, 2.4vw, 36px);
  line-height: 1;
}

.directory-product-copy > p {
  margin: 0 0 30px;
  color: #5c6a63;
  font-size: 15px;
  line-height: 1.55;
}

.directory-product-copy > div {
  margin-top: auto;
  padding-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid rgba(35, 71, 55, .15);
}

.directory-product-copy strong {
  color: var(--forest);
  font: 700 14px/1.2 var(--display);
}

.directory-product-copy a {
  color: var(--brown);
  font: 700 11px/1 var(--display);
  text-transform: uppercase;
}

.directory-experiences {
  padding: 100px max(24px, calc((100vw - var(--container)) / 2)) 115px;
  background: var(--forest);
  color: #fff;
}

.directory-experiences .directory-section-heading h2 {
  color: #fff;
}

.directory-experience-card {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(360px, .75fr);
  min-height: 525px;
  background: #1c3c2e;
  border: 1px solid rgba(255, 255, 255, .24);
}

.directory-experience-image {
  min-height: 420px;
  overflow: hidden;
}

.directory-experience-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.directory-experience-copy {
  padding: clamp(38px, 5vw, 72px);
  align-self: center;
}

.directory-experience-copy h3 {
  margin: 14px 0 22px;
  font-size: clamp(38px, 4.2vw, 62px);
  line-height: .96;
}

.directory-experience-copy > p:not(.eyebrow) {
  margin: 0 0 32px;
  color: rgba(255, 255, 255, .78);
  font-size: 17px;
  line-height: 1.55;
}

.directory-experience-copy dl {
  margin: 0 0 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 45px;
}

.directory-experience-copy dl div {
  min-width: 120px;
}

.directory-experience-copy dt {
  margin-bottom: 8px;
  color: rgba(255, 255, 255, .58);
  font: 700 9px/1 var(--display);
  letter-spacing: .1em;
  text-transform: uppercase;
}

.directory-experience-copy dd {
  margin: 0;
  font: 650 15px/1.3 var(--display);
}

.directory-demo-cta {
  padding: 90px max(24px, calc((100vw - 960px) / 2));
  background: var(--brown);
  color: #fff;
  text-align: center;
}

.directory-demo-cta h2 {
  margin: 12px auto 18px;
  font-size: clamp(40px, 5vw, 68px);
  line-height: .98;
}

.directory-demo-cta > p:not(.eyebrow) {
  max-width: 650px;
  margin: 0 auto 32px;
  color: rgba(255, 255, 255, .76);
  font-size: 18px;
  line-height: 1.5;
}

.directory-correction-prompt {
  margin-top: -62px;
  padding: 0 max(24px, calc((100vw - var(--container)) / 2)) 48px;
  color: #68766e;
  font: 600 12px/1.4 var(--display);
  text-align: right;
}

.directory-correction-prompt a {
  text-decoration: underline;
  text-decoration-color: rgba(104, 118, 110, .55);
  text-underline-offset: 4px;
  transition: color .2s ease, text-decoration-color .2s ease;
}

.directory-correction-prompt a:hover,
.directory-correction-prompt a:focus-visible {
  color: var(--forest);
  text-decoration-color: currentColor;
}

.directory-map-link {
  margin-top: 10px;
  display: block;
  color: var(--brown);
  font: 650 11px/1.3 var(--display);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.directory-claim {
  padding: 75px max(24px, calc((100vw - var(--container)) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  background: var(--brown);
  color: #fff;
}

.directory-claim > div {
  max-width: 750px;
}

.directory-claim h2 {
  margin: 12px 0 14px;
  font-size: clamp(38px, 4.5vw, 66px);
}

.directory-claim p:last-child {
  margin: 0;
  font-size: 19px;
}

.directory-claim.is-pending {
  background: var(--moss);
}

.onboarding-hero {
  min-height: 510px;
  padding: 155px max(24px, calc((100vw - var(--container)) / 2)) 75px;
  display: flex;
  align-items: flex-end;
  color: #fff;
  background: var(--forest);
}

.correction-hero {
  min-height: 440px;
}

.onboarding-hero > div {
  width: min(100%, 980px);
}

.onboarding-hero h1 {
  max-width: 1050px;
  margin: 14px 0 20px;
  font-size: clamp(48px, 7vw, 96px);
  line-height: .94;
}

.onboarding-hero p:last-child {
  max-width: 720px;
  margin-bottom: 0;
  font-size: 20px;
}

.onboarding-back {
  margin-bottom: 62px;
  display: inline-block;
  font: 650 12px/1 var(--display);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.onboarding-layout {
  padding: 90px max(24px, calc((100vw - var(--container)) / 2)) 120px;
  display: grid;
  grid-template-columns: minmax(250px, .72fr) minmax(0, 1.28fr);
  gap: clamp(55px, 8vw, 120px);
  align-items: start;
}

.onboarding-layout-wide {
  grid-template-columns: minmax(250px, .6fr) minmax(0, 1.4fr);
}

.onboarding-copy {
  position: sticky;
  top: 135px;
}

.onboarding-copy h2 {
  margin: 14px 0 24px;
  color: var(--forest);
  font-size: clamp(36px, 4vw, 58px);
  line-height: 1;
}

.onboarding-copy > p:not(.eyebrow) {
  color: #4d5f56;
  font-size: 18px;
}

.onboarding-steps {
  margin: 38px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(35, 71, 55, .2);
}

.onboarding-steps li {
  padding: 18px 0;
  display: flex;
  gap: 16px;
  align-items: center;
  border-bottom: 1px solid rgba(35, 71, 55, .2);
  color: var(--forest);
  font-family: var(--display);
  font-size: 13px;
}

.onboarding-steps strong {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  color: #fff;
  background: var(--forest);
  font-size: 11px;
}

.onboarding-note {
  margin-top: 38px;
  padding: 24px;
  color: var(--forest);
  background: #ece6d9;
}

.onboarding-note strong {
  font: 700 14px/1.3 var(--display);
}

.onboarding-note p {
  margin: 8px 0 0;
  font-size: 16px;
}

.onboarding-form {
  position: relative;
  padding: clamp(28px, 5vw, 55px);
  color: var(--ink);
  background: #fff;
  box-shadow: 0 25px 70px rgba(23, 51, 38, .1);
}

.onboarding-form fieldset {
  margin: 0 0 44px;
  padding: 0 0 34px;
  border: 0;
  border-bottom: 1px solid rgba(35, 71, 55, .18);
}

.onboarding-form legend {
  width: 100%;
  margin-bottom: 24px;
  color: var(--forest);
  font: 700 20px/1.2 var(--display);
}

.onboarding-form > label,
.onboarding-form fieldset > label,
.onboarding-form .form-row > label {
  display: block;
  margin-bottom: 24px;
  color: var(--forest);
  font: 650 12px/1.35 var(--display);
}

.onboarding-form input:not([type="checkbox"]):not([type="radio"]),
.onboarding-form select,
.onboarding-form textarea {
  width: 100%;
  margin-top: 9px;
  padding: 13px 14px;
  border: 1px solid rgba(35, 71, 55, .3);
  border-radius: 0;
  color: var(--ink);
  background: var(--paper);
}

.onboarding-form textarea {
  min-height: 120px;
  resize: vertical;
}

.onboarding-form small,
.field-help {
  margin-top: 7px;
  display: block;
  color: #68766e;
  font: 400 13px/1.45 var(--serif);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.route-checks {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.route-checks label,
.participation-options label {
  padding: 16px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  border: 1px solid rgba(35, 71, 55, .24);
  color: var(--forest);
  cursor: pointer;
  font: 650 13px/1.35 var(--display);
}

.route-checks input,
.participation-options input {
  margin-top: 3px;
  accent-color: var(--forest);
}

.participation-options {
  display: grid;
  gap: 12px;
}

.participation-options label {
  padding: 20px;
}

.participation-options span {
  display: grid;
  gap: 5px;
  color: #5b685f;
  font: 400 14px/1.45 var(--serif);
}

.participation-options strong {
  color: var(--forest);
  font: 700 15px/1.3 var(--display);
}

.onboarding-form .checkbox {
  margin: 0 0 28px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: #4d5f56;
  font: 400 14px/1.45 var(--serif);
}

.onboarding-form .checkbox input {
  margin-top: 4px;
  accent-color: var(--forest);
}

.onboarding-form .checkbox a {
  color: var(--forest);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-errors {
  margin-bottom: 32px;
  padding: 18px 20px;
  border-left: 4px solid var(--terracotta);
  color: #6e2418;
  background: #fce9e4;
  font-size: 15px;
}

.form-errors strong {
  font-family: var(--display);
}

.form-errors ul {
  margin: 8px 0 0;
  padding-left: 20px;
}

.form-trap {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.onboarding-confirmation {
  min-height: 570px;
  padding: 105px max(24px, calc((100vw - 900px) / 2)) 130px;
  text-align: center;
}

.onboarding-confirmation h2 {
  margin: 15px 0 24px;
  color: var(--forest);
  font-size: clamp(40px, 5vw, 70px);
  line-height: 1;
}

.onboarding-confirmation > p:not(.eyebrow) {
  max-width: 760px;
  margin: 0 auto 36px;
  color: #4d5f56;
  font-size: 20px;
}

.onboarding-confirmation > div {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: center;
}

.onboarding-confirmation .text-link {
  color: var(--forest);
  font: 650 13px/1 var(--display);
  text-decoration: underline;
  text-underline-offset: 4px;
}

@media (max-width: 1080px) {
  .directory-join-cta {
    grid-template-columns: 1fr;
    gap: 36px;
  }

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

  .directory-filters button {
    justify-self: start;
  }

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

  .directory-entry-layout {
    gap: 50px;
  }

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

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

  .partner-news-detail-hero.has-image {
    grid-template-columns: 1fr;
  }

  .partner-news-detail-hero > img {
    min-height: 440px;
    max-height: 560px;
  }

  .partner-news-detail-hero.has-image > div {
    padding: 65px max(24px, calc((100vw - var(--container)) / 2)) 75px;
  }

  .directory-experience-card {
    grid-template-columns: minmax(0, 1fr) minmax(320px, .85fr);
  }

  .onboarding-layout {
    gap: 50px;
  }
}

@media (max-width: 720px) {
  .directory-hero {
    min-height: 390px;
    padding-top: 125px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    gap: 32px;
  }

  .directory-total {
    text-align: left;
  }

  .directory-filters,
  .directory-grid {
    grid-template-columns: 1fr;
  }

  .directory-level-legend {
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 12px 18px;
  }

  .directory-heading,
  .directory-claim,
  .directory-entry-title {
    align-items: flex-start;
    flex-direction: column;
  }

  .directory-card {
    min-height: 310px;
  }

  .directory-join-cta {
    margin-top: 52px;
    padding: 42px 26px;
  }

  .directory-join-cta h2 {
    font-size: 40px;
  }

  .directory-join-cta > div:first-child > p:last-child {
    font-size: 16px;
  }

  .directory-entry-breadcrumb {
    margin-bottom: 46px;
    flex-wrap: wrap;
  }

  .directory-entry-hero {
    min-height: 520px;
    padding-top: 125px;
    padding-bottom: 50px;
  }

  .directory-entry-hero.has-cover {
    min-height: 650px;
  }

  .directory-entry-title h1 {
    font-size: clamp(48px, 15vw, 72px);
  }

  .directory-entry-seal {
    width: 118px;
    height: 118px;
    padding: 14px;
    font-size: 9px;
  }

  .directory-entry-logo {
    width: 130px;
    height: 130px;
  }

  .directory-demo-notice {
    flex-direction: column;
    gap: 5px;
  }

  .directory-entry-layout {
    padding-top: 70px;
    padding-bottom: 80px;
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .directory-entry-description {
    margin-bottom: 42px;
    font-size: 18px;
  }

  .directory-entry-aside {
    position: static;
    padding: 26px;
  }

  .directory-section-heading {
    margin-bottom: 30px;
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }

  .directory-showcase,
  .directory-products,
  .directory-partner-news,
  .directory-experiences {
    padding-top: 72px;
    padding-bottom: 78px;
  }

  .directory-gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 310px 175px 175px;
    gap: 8px;
  }

  .directory-gallery a:first-child {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .directory-product-grid {
    grid-template-columns: 1fr;
  }

  .directory-news-grid {
    grid-template-columns: 1fr;
  }

  .partner-news-index-hero {
    min-height: 360px;
    padding-top: 130px;
  }

  .partner-news-index,
  .partner-news-detail-layout {
    padding-top: 68px;
    padding-bottom: 78px;
  }

  .partner-news-detail-hero,
  .partner-news-detail-hero.has-image {
    min-height: 0;
  }

  .partner-news-detail-hero > img {
    min-height: 300px;
  }

  .partner-news-detail-hero > div,
  .partner-news-detail-hero.has-image > div {
    padding: 55px 24px 64px;
  }

  .partner-news-detail-layout {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .directory-product-copy {
    padding: 24px;
  }

  .directory-experience-card {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .directory-experience-image {
    min-height: 300px;
    aspect-ratio: 4 / 3;
  }

  .directory-experience-copy {
    padding: 34px 26px 40px;
  }

  .directory-experience-copy dl {
    gap: 26px;
    flex-wrap: wrap;
  }

  .directory-demo-cta {
    padding-top: 70px;
    padding-bottom: 75px;
  }

  .directory-correction-prompt {
    margin-top: -54px;
    padding-bottom: 42px;
    text-align: left;
  }

  .onboarding-hero {
    min-height: 450px;
    padding-top: 130px;
  }

  .correction-hero {
    min-height: 410px;
  }

  .onboarding-back {
    margin-bottom: 44px;
  }

  .onboarding-layout,
  .onboarding-layout-wide {
    padding-top: 60px;
    grid-template-columns: 1fr;
  }

  .onboarding-copy {
    position: static;
  }

  .form-row,
  .route-checks {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .route-checks {
    gap: 10px;
  }

  .onboarding-confirmation > div {
    flex-direction: column;
  }
}

.post-card h3 {
  margin-bottom: 14px;
  font-size: 27px;
  line-height: 1.07;
}

.post-card-body > p:not(.eyebrow) {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  color: #4b584f;
  font-size: 16px;
}

.closing-cta {
  padding: 110px 24px;
  background: var(--brown);
  color: white;
  text-align: center;
}

.closing-cta img {
  width: 150px;
  height: 85px;
  margin: 0 auto 30px;
  object-fit: contain;
}

.closing-cta h2 {
  max-width: 900px;
  margin: 0 auto 40px;
  font-size: clamp(45px, 6vw, 82px);
}

.page-hero {
  min-height: 660px;
  padding: 190px max(24px, calc((100vw - var(--container)) / 2)) 80px;
  display: flex;
  align-items: flex-end;
  color: white;
  background-position: center;
  background-size: cover;
  isolation: isolate;
  position: relative;
}

.page-hero::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgba(21, 50, 35, .82), rgba(21, 50, 35, .15));
}

.page-hero h1 {
  margin-bottom: 0;
  font-size: clamp(62px, 8vw, 122px);
}

.routes-hero {
  background-image: url("../img/about-sheep.jpg");
  background-position: center 60%;
}

.blog-hero {
  background-image: url("../img/footer-landscape.jpg");
}

.farms-hero {
  background-image: url("../img/route-plata.jpg");
}

.farms-main-hero {
  min-height: 520px;
  padding: 120px 24px 40px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--forest);
}

.farms-main-hero::after {
  display: none;
}

.farms-main-hero-fallback,
.farms-main-hero-video,
.farms-main-hero-shade {
  position: absolute;
  inset: 0;
}

.farms-main-hero-fallback {
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.farms-main-hero-video {
  z-index: -2;
  overflow: hidden;
  pointer-events: none;
}

.farms-main-hero-video iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: max(100%, 1000px);
  height: max(100%, 56.25vw);
  border: 0;
  transform: translate(-50%, -50%);
}

.farms-main-hero-shade {
  z-index: -1;
  background: rgba(20, 49, 35, .42);
}

.farms-main-hero-copy {
  text-align: center;
}

.farms-main-hero h1 {
  font-size: clamp(64px, 7.5vw, 98px);
  line-height: 1;
}

.farms-overview {
  padding: 72px 24px 78px;
  color: var(--brown);
  background: white;
}

.farms-overview-inner {
  max-width: 1040px;
  margin: 0 auto;
}

.farms-overview p {
  margin: 0;
  font-size: 20px;
  line-height: 1.58;
}

.farms-overview p:first-child {
  color: var(--forest);
  font: 650 clamp(25px, 2.4vw, 33px)/1.26 var(--display);
  letter-spacing: -.03em;
}

.farms-overview p + p {
  max-width: 900px;
  margin: 34px auto 0;
  padding-top: 34px;
  border-top: 1px solid var(--sand);
}

.farms-presentation {
  padding: 82px 24px 96px;
  background: var(--cream);
}

.farms-presentation-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: .68fr 1.32fr;
  gap: 72px;
  align-items: start;
}

.farms-presentation-heading h2 {
  margin: 0;
  color: var(--forest);
  font-size: clamp(43px, 5vw, 68px);
  line-height: .98;
}

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

.farms-presentation-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.about-hero {
  background-image: url("../img/about-sheep.jpg");
}

.editorial-intro {
  max-width: var(--container);
  margin: 0 auto;
  padding: 100px 24px;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 90px;
  border-bottom: 1px solid var(--sand);
}

.editorial-intro .lead {
  margin: 0;
  color: var(--forest);
  font: 600 clamp(34px, 4vw, 59px)/1.12 var(--display);
  letter-spacing: -.04em;
}

.editorial-intro > div {
  font-size: 21px;
}

.route-directory {
  max-width: var(--container);
  margin: 0 auto;
  padding: 110px 24px;
}

.route-feature {
  min-height: 500px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  background: var(--cream);
}

.route-feature:nth-child(even) .route-feature-image {
  order: 2;
}

.route-feature-image {
  position: relative;
  min-height: 500px;
}

.route-feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
}

.route-feature-image span {
  position: absolute;
  z-index: 1;
  top: 30px;
  left: 32px;
  color: white;
  font: 700 13px/1 var(--display);
}

.route-feature-copy {
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-top: 8px solid var(--accent);
}

.route-feature-copy h2 {
  margin-bottom: 24px;
  color: var(--forest);
  font-size: clamp(38px, 4vw, 60px);
}

.route-feature-copy > p:not(.eyebrow, .route-territory) {
  font-size: 20px;
}

.route-feature-copy .button {
  align-self: flex-start;
  margin-top: 18px;
}

.route-hero {
  min-height: 780px;
  padding: 190px max(24px, calc((100vw - var(--container)) / 2)) 90px;
  display: flex;
  align-items: flex-end;
  position: relative;
  color: white;
  background: var(--route-image) center/cover;
  isolation: isolate;
}

.route-hero::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgba(16, 42, 27, .86), rgba(16, 42, 27, .12) 68%);
  box-shadow: inset 0 -8px 0 var(--accent);
}

.route-hero-content {
  max-width: 960px;
}

.back-link {
  display: inline-block;
  margin-bottom: 50px;
  font: 650 11px/1 var(--display);
  letter-spacing: .05em;
  text-transform: uppercase;
}

.route-hero h1 {
  margin-bottom: 25px;
  font-size: clamp(60px, 7.5vw, 116px);
}

.route-hero-content > p:last-child {
  max-width: 710px;
  margin: 0;
  font-size: 23px;
  line-height: 1.4;
}

.route-overview {
  max-width: var(--container);
  margin: 0 auto;
  padding: 110px 24px;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 90px;
}

.route-story h2 {
  color: var(--forest);
  font-size: clamp(45px, 5vw, 70px);
}

.route-export-intro {
  font-size: 20px;
}

.map-card {
  align-self: start;
  background: var(--cream);
}

.map-card-image {
  height: 570px;
  overflow: hidden;
}

.map-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.map-card > div:last-child {
  padding: 32px;
}

.map-card h2 {
  font-size: 34px;
}

.stages-section {
  padding: 110px max(24px, calc((100vw - var(--container)) / 2));
  background: var(--forest);
  color: white;
}

.stages-section > h2 {
  max-width: 750px;
  margin-bottom: 60px;
  font-size: clamp(48px, 6vw, 80px);
}

.stage-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, .25);
  border-left: 1px solid rgba(255, 255, 255, .25);
}

.stage-grid article {
  min-height: 270px;
  padding: 30px;
  border-right: 1px solid rgba(255, 255, 255, .25);
  border-bottom: 1px solid rgba(255, 255, 255, .25);
}

.stage-grid span {
  font: 700 11px/1 var(--display);
}

.stage-grid h3 {
  margin-top: 100px;
  margin-bottom: 14px;
  font-size: 30px;
}

.stage-grid p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, .7);
  font-size: 15px;
}

.blog-controls {
  max-width: var(--container);
  margin: 0 auto;
  padding: 85px 24px 40px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 50px;
  align-items: end;
}

.blog-controls h2 {
  max-width: 680px;
  margin: 0;
  color: var(--forest);
  font-size: clamp(36px, 4vw, 58px);
}

.blog-controls form {
  display: flex;
}

.blog-controls input {
  width: min(330px, 45vw);
  padding: 14px 16px;
  border: 1px solid var(--sand);
  border-right: 0;
  background: transparent;
}

.blog-controls button {
  padding: 0 22px;
  border: 0;
  background: var(--forest);
  color: white;
  font: 650 11px var(--display);
  text-transform: uppercase;
}

.wordpress-blog-link {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px 38px;
  display: flex;
  gap: 28px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--sand);
}

.wordpress-blog-link p {
  margin: 0;
  color: var(--moss);
  font-style: italic;
}

.wordpress-blog-link .button {
  flex: 0 0 auto;
  gap: 12px;
}

.category-list {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px 28px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.category-list a {
  padding: 8px 13px;
  border: 1px solid var(--sand);
  font: 600 11px/1 var(--display);
}

.category-list a.active {
  background: var(--forest);
  color: white;
}

.blog-listing {
  padding-top: 30px;
}

.empty-state {
  padding: 70px 0;
  text-align: center;
}

.article-header {
  min-height: 720px;
  padding: 170px max(24px, calc((100vw - var(--container)) / 2)) 70px;
  display: grid;
  grid-template-columns: 1fr .8fr;
  gap: 70px;
  align-items: end;
  background: var(--cream);
}

.article-header-copy h1 {
  margin-bottom: 28px;
  color: var(--forest);
  font-size: clamp(50px, 6.2vw, 92px);
}

.article-header-copy > p:last-child {
  max-width: 690px;
  font-size: 21px;
}

.article-hero-image img {
  width: 100%;
  height: 510px;
  object-fit: cover;
}

.article-layout {
  max-width: 1050px;
  margin: 0 auto;
  padding: 100px 24px;
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 70px;
}

.article-aside {
  padding-top: 10px;
  font: 600 11px/1.5 var(--display);
}

.article-aside span,
.article-aside a {
  display: block;
  margin-top: 18px;
}

.prose {
  font-size: 21px;
  line-height: 1.65;
}

.prose h2 {
  margin: 1.7em 0 .6em;
  color: var(--forest);
  font-size: clamp(34px, 4vw, 52px);
}

.prose h3 {
  margin: 1.7em 0 .6em;
  color: var(--forest);
  font-size: 29px;
}

.prose p {
  margin-bottom: 1.35em;
}

.prose img {
  width: 100%;
  height: auto;
  margin: 45px 0;
}

.prose a {
  color: var(--forest);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.prose blockquote {
  margin: 50px 0;
  padding: 0 0 0 28px;
  border-left: 4px solid var(--yellow);
  color: var(--forest);
  font: italic 400 30px/1.35 var(--serif);
}

.prose iframe {
  max-width: 100%;
}

.related-posts {
  border-top: 1px solid var(--sand);
}

.farm-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px 24px;
}

.farm-card {
  min-width: 0;
}

.farm-card-image {
  position: relative;
  display: block;
  margin-bottom: 25px;
  overflow: hidden;
  background: var(--cream);
}

.farm-card-image::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgba(18, 43, 30, .25), transparent 50%);
}

.farm-card-image img {
  width: 100%;
  height: 245px;
  object-fit: cover;
  transition: transform .4s ease;
}

.farm-card:hover .farm-card-image img {
  transform: scale(1.025);
}

.farm-number {
  position: absolute;
  z-index: 2;
  top: 18px;
  left: 20px;
  color: white;
  font: 700 11px/1 var(--display);
}

.farm-card-copy h2 {
  margin-bottom: 14px;
  color: var(--forest);
  font-size: 34px;
}

.farm-card-copy > p {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  font-size: 16px;
}

.farm-card-copy .text-link {
  align-self: flex-start;
}

.farm-detail-hero {
  position: relative;
  min-height: 760px;
  color: white;
  overflow: hidden;
}

.farm-detail-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.farm-detail-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(15, 42, 27, .88), rgba(15, 42, 27, .08) 70%);
}

.farm-detail-title {
  position: absolute;
  z-index: 1;
  right: max(24px, calc((100vw - var(--container)) / 2));
  bottom: 80px;
  left: max(24px, calc((100vw - var(--container)) / 2));
}

.farm-detail-title h1 {
  max-width: 1050px;
  margin-bottom: 0;
  font-size: clamp(66px, 9vw, 130px);
}

.farm-video-section {
  max-width: var(--container);
  margin: 0 auto;
  padding: 110px 24px;
  display: grid;
  grid-template-columns: .65fr 1.35fr;
  gap: 75px;
  align-items: start;
}

.farm-video-section h2 {
  color: var(--forest);
  font-size: clamp(42px, 5vw, 67px);
}

.farm-video {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--forest);
}

.farm-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.farm-detail-content {
  max-width: 1080px;
  margin: 0 auto;
  padding: 20px 24px 110px;
  display: grid;
  grid-template-columns: 230px 1fr;
  gap: 75px;
}

.farm-detail-content aside {
  position: sticky;
  top: 120px;
  align-self: start;
  padding: 28px;
  background: var(--cream);
}

.farm-detail-content aside img {
  width: 75px;
  height: 75px;
  margin-bottom: 25px;
}

.farm-detail-content aside p {
  margin-bottom: 0;
  font-size: 16px;
}

.farm-detail-content .prose > h2:first-child {
  margin-top: 0;
}

.farm-detail-content .prose > h2 {
  padding-top: 28px;
  border-top: 1px solid var(--sand);
}

.farm-gallery-section {
  max-width: var(--container);
  margin: 0 auto;
  padding: 100px 24px 120px;
  border-top: 1px solid var(--sand);
}

.farm-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.farm-gallery a {
  display: block;
  overflow: hidden;
}

.farm-gallery img {
  width: 100%;
  height: 235px;
  object-fit: cover;
  transition: transform .4s ease;
}

.farm-gallery a:nth-child(1),
.farm-gallery a:nth-child(6) {
  grid-column: span 2;
}

.farm-gallery a:nth-child(1) img,
.farm-gallery a:nth-child(6) img {
  height: 482px;
}

.farm-gallery a:hover img {
  transform: scale(1.025);
}

.alvaro-hero {
  min-height: 300px;
  display: block;
  background: var(--forest);
}

.alvaro-hero-copy {
  max-width: var(--container);
  min-height: 300px;
  margin: 0 auto;
  padding: 135px 24px 38px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.alvaro-hero-copy h1 {
  max-width: 1100px;
  margin: 0;
  font-size: clamp(62px, 7.5vw, 102px);
  line-height: .92;
}

.farm-ambassador-heading {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 18px;
}

.farm-ambassador-heading p {
  margin: 0;
}

.farm-ambassador-heading span {
  padding: 7px 10px;
  color: var(--forest);
  background: var(--yellow);
  font: 700 9px/1.2 var(--display);
  letter-spacing: .08em;
  text-transform: uppercase;
}

.alvaro-facts {
  padding: 0 24px 64px;
  color: white;
  background: var(--forest);
}

.alvaro-facts-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr) .82fr;
  border: 1px solid rgba(255, 255, 255, .32);
}

.alvaro-fact,
.alvaro-brand {
  min-height: 190px;
  padding: 38px 30px;
  border-right: 1px solid rgba(255, 255, 255, .32);
}

.alvaro-fact p,
.alvaro-contact-band p,
.alvaro-visit-grid p {
  margin-bottom: 18px;
  font: 650 11px/1.2 var(--display);
  letter-spacing: .08em;
  text-transform: uppercase;
}

.alvaro-fact strong {
  color: white;
  font: 650 clamp(20px, 2vw, 27px)/1.12 var(--display);
}

.alvaro-fact p {
  color: rgba(255, 255, 255, .68);
}

.alvaro-brand {
  display: grid;
  place-items: center;
  border-right: 0;
}

.alvaro-brand img {
  width: 125px;
  height: 125px;
  object-fit: contain;
}

.alvaro-video-section {
  max-width: var(--container);
  margin: 0 auto;
  padding: 92px 24px 110px;
}

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

.alvaro-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.alvaro-video-cover {
  position: absolute;
  inset: 0;
  width: 100%;
  padding: 0;
  overflow: hidden;
  border: 0;
  cursor: pointer;
  background: var(--forest);
}

.alvaro-video-cover::after {
  position: absolute;
  inset: 0;
  content: "";
  background: rgba(14, 38, 25, .08);
  transition: background .25s ease;
}

.alvaro-video-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}

.alvaro-video-play {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  width: 76px;
  height: 76px;
  border: 2px solid white;
  border-radius: 50%;
  background: rgba(24, 54, 38, .78);
  transform: translate(-50%, -50%);
  transition: background .2s ease, transform .2s ease;
}

.alvaro-video-play::after {
  position: absolute;
  top: 50%;
  left: 53%;
  width: 0;
  height: 0;
  content: "";
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 16px solid white;
  transform: translate(-40%, -50%);
}

.alvaro-video-cover:hover img {
  transform: scale(1.015);
}

.alvaro-video-cover:hover::after {
  background: rgba(14, 38, 25, .18);
}

.alvaro-video-cover:hover .alvaro-video-play {
  background: var(--terracotta);
  transform: translate(-50%, -50%) scale(1.06);
}

.alvaro-video-cover:focus-visible {
  outline: 4px solid var(--yellow);
  outline-offset: 4px;
}

.alvaro-profile {
  padding: 96px max(24px, calc((100vw - var(--container)) / 2));
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(330px, .75fr);
  gap: 90px;
  color: var(--brown);
  background: var(--cream);
}

.alvaro-history h2 {
  margin-bottom: 42px;
  color: var(--forest);
  font-size: clamp(48px, 5.5vw, 74px);
  line-height: 1;
}

.alvaro-history > p:not(.eyebrow) {
  font-size: 20px;
  line-height: 1.62;
}

.alvaro-profile-aside {
  align-self: start;
}

.alvaro-location {
  margin-bottom: 46px;
  padding-bottom: 42px;
  border-bottom: 1px solid #d7cdb9;
}

.alvaro-location h2 {
  margin-bottom: 25px;
  color: var(--forest);
  font-size: 43px;
  line-height: 1;
}

.alvaro-location h2 span {
  font-size: .58em;
}

.alvaro-location img {
  width: 100%;
  height: auto;
}

.alvaro-aside-section + .alvaro-aside-section {
  margin-top: 42px;
  padding-top: 42px;
  border-top: 1px solid #d7cdb9;
}

.alvaro-aside-section > p:not(.eyebrow),
.alvaro-aside-section li {
  font-size: 17px;
  line-height: 1.55;
}

.alvaro-aside-section ul {
  display: grid;
  gap: 13px;
  list-style: none;
}

.alvaro-aside-section li {
  padding-left: 18px;
  position: relative;
}

.alvaro-aside-section li::before {
  position: absolute;
  top: .6em;
  left: 0;
  width: 6px;
  height: 6px;
  content: "";
  border-radius: 50%;
  background: var(--terracotta);
}

.alvaro-visits {
  color: white;
  background: var(--forest);
}

.alvaro-visits-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 80px 24px 70px;
}

.alvaro-visits h2 {
  margin-bottom: 48px;
  font-size: clamp(54px, 6vw, 82px);
}

.alvaro-visit-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid rgba(255, 255, 255, .32);
  border-bottom: 1px solid rgba(255, 255, 255, .32);
}

.alvaro-visit-grid > div {
  min-height: 140px;
  padding: 29px 24px;
  border-right: 1px solid rgba(255, 255, 255, .32);
}

.alvaro-visit-grid > div:last-child {
  border-right: 0;
}

.alvaro-visit-grid p,
.alvaro-contact-band p {
  color: rgba(255, 255, 255, .72);
}

.alvaro-visit-grid strong {
  font: 650 clamp(21px, 2.2vw, 29px)/1.12 var(--display);
}

.alvaro-contact-band {
  padding: 0 max(24px, calc((100vw - var(--container)) / 2));
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: #102e21;
}

.alvaro-contact-band.alvaro-contact-count-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.alvaro-contact-band > div {
  min-width: 0;
  padding: 35px 28px;
  border-right: 1px solid rgba(255, 255, 255, .22);
}

.alvaro-contact-band > div:last-child {
  border-right: 0;
}

.alvaro-contact-band a {
  font: 650 clamp(17px, 1.7vw, 23px)/1.25 var(--display);
  overflow-wrap: anywhere;
}

.alvaro-gallery-section {
  max-width: var(--container);
  margin: 0 auto;
  padding: 105px 24px 115px;
}

.alvaro-gallery-section .section-heading {
  grid-template-columns: 1fr;
}

.alvaro-gallery {
  gap: 14px;
}

.alvaro-gallery img,
.alvaro-gallery a:nth-child(1) img,
.alvaro-gallery a:nth-child(6) img {
  height: 300px;
}

.alvaro-gallery a:nth-child(1),
.alvaro-gallery a:nth-child(6) {
  grid-column: span 1;
}

.alvaro-gallery-section + .closing-cta > p:not(.eyebrow) {
  max-width: 720px;
  margin: -20px auto 34px;
  color: rgba(255, 255, 255, .78);
  font-size: 19px;
}

.about-manifesto {
  max-width: 1050px;
  margin: 0 auto;
  padding: 110px 24px;
  text-align: center;
}

.about-manifesto h2 {
  color: var(--forest);
  font-size: clamp(45px, 6vw, 80px);
}

.about-manifesto > p:last-child {
  max-width: 750px;
  margin: 30px auto 0;
  font-size: 22px;
}

.about-columns {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px 110px;
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 85px;
  align-items: start;
}

.about-photo {
  position: sticky;
  top: 120px;
}

.about-photo img {
  width: 100%;
  min-height: 590px;
  object-fit: cover;
}

.about-copy > h1:first-child,
.about-copy > h2:first-child {
  display: none;
}

.values {
  padding: 90px max(24px, calc((100vw - var(--container)) / 2));
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--cream);
}

.values article {
  min-height: 280px;
  padding: 35px;
  border-right: 1px solid var(--sand);
}

.values article:last-child {
  border-right: 0;
}

.values span {
  font: 700 11px/1 var(--display);
}

.values h3 {
  margin-top: 95px;
  margin-bottom: 14px;
  color: var(--forest);
  font-size: 35px;
}

.simple-page-hero {
  padding: 220px max(24px, calc((100vw - 900px) / 2)) 70px;
  background: var(--cream);
}

.simple-page-hero h1 {
  margin: 0;
  color: var(--forest);
  font-size: clamp(48px, 6vw, 85px);
}

.simple-page-content {
  max-width: 850px;
  margin: 0 auto;
  padding: 85px 24px 120px;
}

.contact-layout {
  min-height: 800px;
  padding: 180px max(24px, calc((100vw - var(--container)) / 2)) 100px;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 100px;
  background: var(--forest);
  color: white;
}

.contact-copy h1 {
  margin-bottom: 30px;
  font-size: clamp(52px, 6vw, 86px);
}

.contact-copy > p:not(.eyebrow) {
  max-width: 540px;
  font-size: 22px;
}

.contact-copy > a {
  display: inline-block;
  margin-top: 30px;
  border-bottom: 1px solid currentColor;
  font: 600 16px var(--display);
}

.contact-form {
  padding: 46px;
  background: var(--paper);
  color: var(--ink);
}

.contact-form label {
  display: block;
  margin-bottom: 22px;
  font: 600 12px/1.3 var(--display);
}

.contact-form input:not([type="checkbox"]),
.contact-form textarea {
  width: 100%;
  margin-top: 8px;
  padding: 13px 0;
  border: 0;
  border-bottom: 1px solid var(--sand);
  border-radius: 0;
  background: transparent;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form .checkbox {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-family: var(--serif);
  font-weight: 400;
}

.flash-wrap {
  position: fixed;
  z-index: 110;
  top: 100px;
  left: 50%;
  width: min(650px, calc(100% - 30px));
  transform: translateX(-50%);
}

.flash {
  padding: 16px 20px;
  background: var(--yellow);
  box-shadow: 0 15px 30px rgba(0, 0, 0, .15);
  font-family: var(--display);
  font-size: 14px;
}

.not-found {
  min-height: 760px;
  padding: 220px 24px 100px;
  background: var(--cream);
  text-align: center;
}

.not-found h1 {
  max-width: 800px;
  margin: 0 auto 25px;
  color: var(--forest);
  font-size: clamp(52px, 7vw, 95px);
}

.not-found p:not(.eyebrow) {
  margin-bottom: 35px;
}

.site-footer {
  color: white;
  background: var(--forest-dark);
}

.footer-landscape {
  height: 250px;
  background:
    linear-gradient(0deg, rgba(23, 51, 38, 1), rgba(23, 51, 38, .05)),
    url("../img/footer-landscape.jpg") center 54%/cover;
}

.footer-grid {
  max-width: var(--container);
  margin: 0 auto;
  padding: 65px 24px;
  display: grid;
  grid-template-columns: 1.8fr repeat(3, 1fr);
  gap: 65px;
}

.footer-grid > div:first-child {
  padding-right: 35px;
}

.footer-logo {
  width: 260px;
  margin-bottom: 25px;
}

.footer-grid p {
  max-width: 430px;
  color: rgba(255, 255, 255, .72);
  font-size: 16px;
}

.footer-grid h2 {
  margin-bottom: 25px;
  color: var(--yellow);
  font-size: 16px;
  letter-spacing: 0;
}

.footer-grid > div:not(:first-child) a {
  display: block;
  margin-bottom: 13px;
  color: rgba(255, 255, 255, .78);
  font: 500 12px/1.35 var(--display);
}

.social-links {
  display: flex;
  gap: 20px;
  font: 600 12px/1 var(--display);
}

.footer-bottom {
  max-width: var(--container);
  margin: 0 auto;
  padding: 22px 24px 28px;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, .15);
  color: rgba(255, 255, 255, .6);
  font: 500 10px/1.3 var(--display);
  text-transform: uppercase;
}

/* Portada: estructura y proporciones de la web publicada. */
.site-header,
.site-header.is-scrolled {
  position: sticky;
  top: 0;
  z-index: 100;
  color: white;
  background: var(--forest-dark);
  box-shadow: none;
  backdrop-filter: none;
}

.site-header .header-inner {
  min-height: 112px;
  max-width: 1180px;
  padding: 12px 0;
}

.site-header .brand {
  width: 315px;
}

.site-header .brand img,
body:has(.hero, .page-hero, .route-hero, .farm-detail-hero, .contact-layout) .site-header:not(.is-scrolled):not(.menu-open) .brand img {
  max-height: 86px;
  filter: brightness(0) invert(1);
}

.site-header .main-nav {
  gap: 24px;
  font-size: 14px;
}

.site-header .nav-group button {
  color: inherit;
  font: 700 25px/1 var(--display);
}

.nav-search {
  position: relative;
  width: 68px;
  height: 48px;
  margin-left: -10px;
  display: grid;
  place-items: center;
  background: var(--brown);
  opacity: 1;
}

.main-nav .nav-search:hover,
.main-nav .nav-search:focus-visible {
  background: #684837;
  opacity: 1;
  outline: 2px solid rgba(255, 255, 255, .72);
  outline-offset: -4px;
}

.nav-search svg {
  width: 26px;
  height: 26px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.15;
  stroke-linecap: round;
  stroke-linejoin: round;
  transform: translateY(-3px);
}

.home-video-hero {
  position: relative;
  min-height: 620px;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: white;
  background: var(--forest) url("/media/revslider/youtubehero/youtubebg.jpg") center/cover;
}

.home-video-media,
.home-video-shade {
  position: absolute;
  inset: 0;
}

.home-video-media {
  overflow: hidden;
  pointer-events: none;
}

.home-video-media iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: max(100%, 1104px);
  height: max(100%, 56.25vw);
  border: 0;
  transform: translate(-50%, -50%);
}

.home-video-shade {
  background: rgba(13, 31, 22, .28);
}

.home-video-content {
  position: relative;
  z-index: 1;
  max-width: 1160px;
  padding: 35px 24px 20px;
  text-align: center;
}

.home-video-content h1 {
  margin-bottom: 30px;
  font-size: clamp(52px, 5.1vw, 74px);
  font-weight: 750;
  line-height: .98;
  text-wrap: balance;
}

.home-hero-button {
  min-height: 38px;
  padding: 0 27px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, .75);
  font: 400 13px/1 var(--display);
  letter-spacing: .18em;
  text-transform: uppercase;
  transition: color .2s ease, background .2s ease;
}

.home-hero-button:hover {
  color: var(--forest-dark);
  background: white;
}

.three-portals {
  background: var(--brown);
}

.portal {
  min-height: 420px;
  padding: 48px 50px 72px;
  justify-content: flex-end;
}

.portal::after {
  background: var(--portal-overlay);
}

.portal-history {
  --portal-overlay: rgba(71, 47, 34, .78);
}

.portal-routes {
  --portal-overlay: rgba(42, 92, 71, .74);
}

.portal-farms {
  --portal-overlay: rgba(223, 65, 25, .76);
}

.portal h2 {
  max-width: 390px;
  margin-bottom: 20px;
  font-size: clamp(30px, 2.65vw, 42px);
  line-height: 1.02;
}

.portal-link {
  width: max-content;
  min-height: 43px;
  padding: 0 25px;
  display: inline-flex;
  gap: 7px;
  align-items: center;
  border-radius: 999px;
  background: var(--terracotta);
  font-size: 17px;
  letter-spacing: 0;
  text-transform: none;
}

.portal-link > span {
  font-size: 28px;
  line-height: 0;
}

.home-routes {
  padding: 42px max(24px, calc((100vw - 1200px) / 2)) 80px;
  background: white;
}

.home-routes > h2 {
  margin: 0 0 68px;
  color: var(--brown);
  font-size: clamp(53px, 5.4vw, 78px);
  text-align: center;
}

.home-route-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.home-route-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  text-align: center;
}

.home-route-image {
  position: relative;
  margin-bottom: 20px;
  display: block;
  overflow: hidden;
}

.home-route-image > img:first-child {
  width: 100%;
  aspect-ratio: 1.45;
  object-fit: cover;
  transition: transform .4s ease;
}

.home-route-image:hover > img:first-child {
  transform: scale(1.025);
}

.home-route-image .home-route-mark {
  position: absolute;
  width: 92px;
  height: 54px;
  left: -9px;
  bottom: -5px;
  object-fit: contain;
}

.home-route-card h3 {
  min-height: 62px;
  margin-bottom: 18px;
  color: #151824;
  font-size: 27px;
  line-height: 1.12;
  letter-spacing: -.03em;
}

.home-route-card p {
  margin-bottom: 20px;
  flex: 1;
  color: #171717;
  font-size: 16px;
  line-height: 1.26;
}

.home-route-button {
  min-height: 60px;
  padding: 9px 18px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: white;
  background: var(--brown);
  font: 700 20px/1 var(--display);
  text-transform: none;
  transition: background .2s ease;
}

.home-route-button:hover {
  background: var(--terracotta);
}

.merina-fact {
  padding: 50px 24px 65px;
  display: grid;
  place-items: center;
  background: white;
}

.merina-fact img {
  width: min(1062px, 100%);
}

.collaborators h2 {
  margin: 0;
  color: white;
  font-size: 18px;
  text-align: center;
  letter-spacing: 0;
}

.collaborators > div {
  min-height: 145px;
  padding: 20px 24px;
  display: flex;
  gap: 34px;
  align-items: center;
  justify-content: center;
  background: var(--moss);
}

.collaborators a {
  width: 118px;
  height: 98px;
  display: grid;
  place-items: center;
  border-radius: 4px;
  transition: background-color .2s ease, transform .2s ease;
}

.collaborators a:hover,
.collaborators a:focus-visible {
  background: rgba(255, 255, 255, .1);
  transform: translateY(-2px);
}

.collaborators a:focus-visible {
  outline: 2px solid white;
  outline-offset: 2px;
}

.collaborators img {
  width: 110px;
  height: 92px;
  object-fit: contain;
}

.site-footer {
  color: white;
  background: var(--brown);
}

.site-footer .footer-grid {
  max-width: 1180px;
  padding: 76px 24px 52px;
  grid-template-columns: 1.75fr .9fr .95fr 1.1fr;
  gap: 70px;
  align-items: start;
}

.footer-newsletter {
  max-width: 1180px;
  margin: 0 auto;
  padding: 62px 24px 58px;
  display: grid;
  grid-template-columns: .85fr 1.55fr;
  gap: 80px;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, .18);
}

.footer-newsletter-copy h2 {
  margin: 7px 0 15px;
  color: white;
  font-size: clamp(36px, 4vw, 55px);
  line-height: .96;
}

.footer-newsletter-copy > p:not(.eyebrow) {
  max-width: 440px;
  margin: 0;
  color: rgba(255, 255, 255, .7);
  font: 15px/1.6 var(--body);
}

.footer-newsletter-form {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.25fr auto;
  gap: 14px;
  align-items: end;
}

.footer-newsletter-form > label:not(.footer-newsletter-consent) {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, .82);
  font: 650 11px/1.2 var(--display);
}

.footer-newsletter-form label small {
  color: rgba(255, 255, 255, .55);
  font: inherit;
}

.footer-newsletter-form input[type="text"],
.footer-newsletter-form input[type="email"] {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: 0;
  color: var(--forest-dark);
  background: #fff;
  font: 15px/1 var(--body);
}

.footer-newsletter-form input:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: 2px;
}

.footer-newsletter-form > .button {
  min-height: 48px;
  white-space: nowrap;
}

.footer-newsletter-consent {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 17px 1fr;
  gap: 10px;
  align-items: start;
  color: rgba(255, 255, 255, .72);
  font: 11px/1.5 var(--body);
}

.footer-newsletter-consent input {
  width: 16px;
  height: 16px;
  margin: 1px 0 0;
  accent-color: var(--yellow);
}

.footer-newsletter-consent a {
  color: white;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer-newsletter-honeypot {
  position: absolute !important;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.newsletter-public-state {
  min-height: calc(100vh - 112px);
  padding: 110px 24px;
  display: grid;
  place-items: center;
  color: white;
  background:
    radial-gradient(circle at 80% 15%, rgba(217, 180, 104, .15), transparent 30%),
    var(--forest);
  text-align: center;
}

.newsletter-public-state > div {
  width: min(780px, 100%);
}

.newsletter-public-state h1 {
  margin: 12px 0 24px;
  color: white;
  font-size: clamp(50px, 7vw, 86px);
  line-height: .95;
  text-wrap: balance;
}

.newsletter-public-state p:not(.eyebrow) {
  max-width: 660px;
  margin: 0 auto 28px;
  color: rgba(255, 255, 255, .84);
  font-size: 18px;
  line-height: 1.6;
}

.newsletter-public-state .newsletter-state-note {
  margin-top: -12px;
  font-size: 13px;
}

.newsletter-public-state form {
  margin-top: 5px;
}

@media (max-width: 900px) {
  .footer-newsletter {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .footer-newsletter-form {
    grid-template-columns: 1fr 1fr;
  }

  .footer-newsletter-form > .button,
  .footer-newsletter-consent {
    grid-column: 1 / -1;
  }

  .footer-newsletter-form > .button {
    justify-self: start;
  }
}

@media (max-width: 600px) {
  .footer-newsletter {
    padding-block: 48px;
  }

  .footer-newsletter-form {
    grid-template-columns: 1fr;
  }

  .footer-newsletter-form > .button,
  .footer-newsletter-consent {
    grid-column: auto;
  }

  .footer-newsletter-form > .button {
    width: 100%;
  }

  .newsletter-public-state {
    padding-block: 78px;
  }

  .newsletter-public-state h1 {
    font-size: clamp(43px, 13vw, 60px);
  }
}

/* Audiencia de la newsletter. */
.newsletter-audience-shell {
  display: grid;
  gap: 34px;
}

.newsletter-audience-metrics {
  margin-bottom: 0;
}

.newsletter-audience-invite {
  display: grid;
  grid-template-columns: minmax(250px, .8fr) minmax(520px, 1.5fr);
  gap: 55px;
  align-items: end;
}

.newsletter-audience-invite h2 {
  margin: 6px 0 12px;
  color: var(--forest);
  font-size: 32px;
}

.newsletter-audience-invite > div > p:last-child {
  max-width: 500px;
  margin: 0;
  color: #5d6b63;
  font-size: 14px;
}

.newsletter-audience-invite > form {
  display: grid;
  grid-template-columns: .8fr 1.25fr auto;
  gap: 14px;
  align-items: end;
}

.newsletter-audience-invite label {
  display: grid;
  gap: 8px;
  color: var(--forest);
  font: 650 11px/1.3 var(--display);
}

.newsletter-audience-invite label small {
  color: #748078;
  font: inherit;
}

.newsletter-audience-invite input {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  border: 1px solid rgba(35, 71, 55, .28);
  border-radius: 0;
  color: var(--ink);
  background: white;
  font: 15px/1.4 var(--body);
}

.newsletter-audience-filters {
  grid-template-columns: 2fr 1fr 1fr;
}

.newsletter-audience-table {
  border: 1px solid rgba(35, 71, 55, .2);
  background: white;
}

.newsletter-audience-table-head,
.newsletter-audience-table > article {
  display: grid;
  grid-template-columns:
    minmax(230px, 1.5fr)
    minmax(115px, .65fr)
    minmax(160px, .9fr)
    minmax(170px, 1fr)
    minmax(125px, .65fr);
  gap: 22px;
  align-items: center;
}

.newsletter-audience-table-head {
  min-height: 48px;
  padding: 0 22px;
  color: white;
  background: var(--forest);
  font: 650 9px/1.2 var(--display);
  letter-spacing: .06em;
  text-transform: uppercase;
}

.newsletter-audience-table > article {
  min-height: 125px;
  padding: 22px;
  border-bottom: 1px solid rgba(35, 71, 55, .14);
}

.newsletter-audience-table > article:last-child {
  border-bottom: 0;
}

.newsletter-audience-table article > div:first-child strong,
.newsletter-audience-table article > div:first-child span,
.newsletter-audience-table article > div:first-child small,
.newsletter-audience-table article > div:nth-child(3) strong,
.newsletter-audience-table article > div:nth-child(3) small,
.newsletter-audience-table article > div:nth-child(4) > strong,
.newsletter-audience-table article > div:nth-child(4) > small {
  display: block;
}

.newsletter-audience-table article > div:first-child strong {
  margin-bottom: 5px;
  color: var(--forest);
  font: 650 17px/1.2 var(--display);
}

.newsletter-audience-table article > div:first-child span {
  overflow-wrap: anywhere;
  color: #44554b;
  font-size: 13px;
}

.newsletter-audience-table article small {
  margin-top: 5px;
  color: #748078;
  font-size: 10px;
}

.newsletter-status-active {
  color: #235333;
  background: #dcebdd;
}

.newsletter-status-pending {
  color: #765819;
  background: #f5e9c6;
}

.newsletter-status-unsubscribed,
.newsletter-status-invalid {
  color: #46544c;
  background: #e9ecea;
}

.newsletter-status-bounced,
.newsletter-status-complained {
  color: #742b21;
  background: #f5d9d3;
}

.newsletter-consent-history {
  margin-top: 8px;
}

.newsletter-consent-history summary,
.newsletter-audience-actions summary {
  width: max-content;
  cursor: pointer;
  color: var(--forest);
  font: 650 10px/1.3 var(--display);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.newsletter-consent-history ol {
  min-width: 245px;
  margin: 10px 0 0;
  padding: 12px 12px 12px 30px;
  background: #f1eee6;
}

.newsletter-consent-history li + li {
  margin-top: 9px;
}

.newsletter-consent-history li strong,
.newsletter-consent-history li time,
.newsletter-consent-history li span {
  display: block;
  color: #58675e;
  font: 10px/1.4 var(--body);
}

.newsletter-audience-actions {
  display: flex;
  justify-content: flex-end;
}

.newsletter-audience-actions details {
  position: relative;
}

.newsletter-audience-actions details > form {
  width: 230px;
  margin-top: 10px;
  padding: 14px;
  border: 1px solid rgba(35, 71, 55, .2);
  background: #f1eee6;
}

.newsletter-audience-actions details p {
  margin: 0 0 10px;
  color: #56655d;
  font-size: 11px;
}

.newsletter-audience-actions .text-button {
  color: #742b21;
  text-decoration: underline;
}

.newsletter-suppressed-note {
  color: #7a4a42;
  font: 650 10px/1.3 var(--display);
}

@media (max-width: 1050px) {
  .newsletter-audience-invite {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .newsletter-audience-table-head {
    display: none;
  }

  .newsletter-audience-table > article {
    grid-template-columns: 1.5fr .7fr 1fr;
  }

  .newsletter-audience-table > article > div:nth-child(4) {
    grid-column: 1 / 3;
  }
}

@media (max-width: 700px) {
  .newsletter-audience-invite > form,
  .newsletter-audience-filters,
  .newsletter-audience-table > article {
    grid-template-columns: 1fr;
  }

  .newsletter-audience-invite > form .button {
    width: 100%;
  }

  .newsletter-audience-table > article > div:nth-child(4) {
    grid-column: auto;
  }

  .newsletter-audience-actions {
    justify-content: flex-start;
  }

}

.site-footer .footer-logo {
  width: 175px;
}

.site-footer .footer-grid p {
  color: rgba(255, 255, 255, .62);
  font-size: 13px;
  line-height: 1.5;
}

.site-footer .footer-grid > div:not(:first-child) a {
  margin-bottom: 17px;
  color: white;
  font-size: 15px;
  font-weight: 600;
}

.site-footer .social-links {
  margin-top: 22px;
}

.site-footer .social-links a {
  width: 38px;
  height: 38px;
  display: grid;
  flex: 0 0 38px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .58);
  border-radius: 50%;
  color: white;
  transition: color .2s ease, background .2s ease, border-color .2s ease;
}

.site-footer .social-links a:hover {
  border-color: white;
  color: var(--brown);
  background: white;
}

.social-icon {
  position: relative;
  display: block;
}

.social-icon-facebook {
  margin-top: 2px;
  font: 700 25px/1 Arial, sans-serif;
}

.social-icon-youtube {
  width: 20px;
  height: 14px;
  border-radius: 4px;
  background: currentColor;
}

.social-icon-youtube::after {
  position: absolute;
  top: 4px;
  left: 8px;
  width: 0;
  height: 0;
  content: "";
  border-top: 3px solid transparent;
  border-bottom: 3px solid transparent;
  border-left: 6px solid var(--brown);
}

.social-links a:hover .social-icon-youtube::after {
  border-left-color: white;
}

.social-icon-instagram {
  width: 20px;
  height: 20px;
  border: 2px solid currentColor;
  border-radius: 6px;
}

.social-icon-instagram::before {
  position: absolute;
  width: 7px;
  height: 7px;
  top: 4px;
  left: 4px;
  content: "";
  border: 2px solid currentColor;
  border-radius: 50%;
}

.social-icon-instagram::after {
  position: absolute;
  width: 3px;
  height: 3px;
  top: 3px;
  right: 3px;
  content: "";
  border-radius: 50%;
  background: currentColor;
}

.social-icon-tiktok {
  margin: -2px 0 0 2px;
  font: 700 25px/1 Arial, sans-serif;
}

.funding-logos {
  display: grid;
  gap: 22px;
}

.funding-logos img {
  width: 100%;
  max-height: 70px;
  object-fit: contain;
  object-position: left center;
}

.site-footer .footer-bottom {
  max-width: 1180px;
}

@media (max-width: 1024px) {
  .header-inner {
    padding-inline: 24px;
  }

  .brand {
    width: 175px;
  }

  .main-nav {
    gap: 18px;
  }

  .three-portals {
    grid-template-columns: 1fr;
  }

  .portal {
    min-height: 390px;
  }

  .partner-types,
  .editorial-intro,
  .route-overview,
  .about-columns,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .partner-grid {
    max-width: 780px;
  }

  .article-header {
    grid-template-columns: 1fr;
  }

  .article-hero-image img {
    height: 430px;
  }

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

  .farm-video-section {
    grid-template-columns: 1fr;
  }

  .alvaro-hero-copy {
    padding-right: 32px;
  }

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

  .alvaro-fact,
  .alvaro-brand {
    border-bottom: 1px solid rgba(255, 255, 255, .32);
  }

  .alvaro-fact:nth-child(2) {
    border-right: 0;
  }

  .alvaro-profile {
    grid-template-columns: 1fr;
  }

  .alvaro-profile {
    gap: 65px;
  }

  .alvaro-visit-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .alvaro-visit-grid > div {
    border-bottom: 1px solid rgba(255, 255, 255, .32);
  }

  .alvaro-visit-grid > div:nth-child(3) {
    border-right: 0;
  }

  .farms-presentation-inner {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .farms-presentation-heading {
    max-width: 720px;
  }

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

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

  .footer-grid > div:last-child {
    grid-column: 2;
  }

  .site-header .header-inner {
    padding-inline: 24px;
  }

  .site-header .brand {
    width: 285px;
  }

  .site-header .main-nav {
    gap: 18px;
    font-size: 12px;
  }

  .home-route-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 55px 30px;
  }

  .site-footer .footer-grid {
    grid-template-columns: 1.45fr 1fr 1fr;
    gap: 50px;
  }

  .site-footer .funding-logos {
    grid-column: 2 / -1;
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 760px) {
  body {
    font-size: 17px;
  }

  .site-header {
    position: sticky;
  }

  .site-header.menu-open {
    position: fixed;
    min-height: 100dvh;
    background: var(--paper);
  }

  .header-inner {
    min-height: 76px;
    padding: 12px 18px;
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .brand {
    width: 155px;
  }

  .site-header .header-inner {
    min-height: 78px;
    padding: 10px 18px;
  }

  .site-header .brand {
    width: 220px;
  }

  .site-header.menu-open {
    color: var(--forest-dark);
  }

  .site-header.menu-open .brand img {
    filter: brightness(0);
  }

  .menu-toggle {
    display: block;
    color: inherit;
  }

  .main-nav {
    width: 100%;
    padding: 35px 0;
    display: none;
    align-items: stretch;
    gap: 0;
    font-size: 17px;
  }

  .menu-open .main-nav {
    display: flex;
    flex-direction: column;
  }

  .main-nav > a,
  .nav-group > a {
    padding: 15px 0;
    border-bottom: 1px solid var(--sand);
  }

  .nav-group {
    display: grid;
    grid-template-columns: 1fr auto;
  }

  .nav-group button {
    padding: 0 12px;
  }

  .submenu {
    position: static;
    grid-column: 1 / -1;
    width: 100%;
    padding: 0 0 0 15px;
    display: none;
    visibility: visible;
    opacity: 1;
    transform: none;
    border: 0;
    box-shadow: none;
  }

  .nav-group.open .submenu {
    display: block;
  }

  .main-nav .nav-cta {
    margin-top: 20px;
    padding: 15px 20px;
    text-align: center;
  }

  .nav-search {
    width: 100%;
    margin: 20px 0 0;
  }

  .alvaro-hero {
    min-height: 0;
  }

  .alvaro-hero-copy {
    min-height: 280px;
    padding: 105px 20px 32px;
  }

  .alvaro-hero-copy h1 {
    font-size: 58px;
  }

  .farm-ambassador-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .alvaro-facts {
    padding: 0 18px 44px;
  }

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

  .alvaro-fact,
  .alvaro-brand,
  .alvaro-fact:nth-child(2) {
    min-height: 0;
    padding: 28px 24px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .32);
  }

  .alvaro-brand {
    min-height: 150px;
    border-bottom: 0;
  }

  .alvaro-video-section {
    padding: 68px 18px 75px;
  }

  .alvaro-video-play {
    width: 58px;
    height: 58px;
  }

  .alvaro-profile {
    padding: 68px 20px 75px;
    gap: 55px;
  }

  .alvaro-history h2 {
    margin-bottom: 32px;
    font-size: 47px;
  }

  .alvaro-history > p:not(.eyebrow) {
    font-size: 18px;
    line-height: 1.55;
  }

  .alvaro-visits-inner {
    padding: 62px 18px 50px;
  }

  .alvaro-visits h2 {
    margin-bottom: 35px;
    font-size: 52px;
  }

  .alvaro-visit-grid {
    grid-template-columns: 1fr;
  }

  .alvaro-visit-grid > div,
  .alvaro-visit-grid > div:nth-child(3) {
    min-height: 0;
    padding: 24px 5px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .32);
  }

  .alvaro-visit-grid > div:last-child {
    border-bottom: 0;
  }

  .alvaro-contact-band {
    padding: 0 18px;
    grid-template-columns: 1fr;
  }

  .alvaro-contact-band.alvaro-contact-count-2 {
    grid-template-columns: 1fr;
  }

  .alvaro-contact-band > div {
    padding: 28px 5px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .22);
  }

  .alvaro-contact-band > div:last-child {
    border-bottom: 0;
  }

  .alvaro-gallery-section {
    padding: 75px 18px 82px;
  }

  .alvaro-gallery-section + .closing-cta > p:not(.eyebrow) {
    margin-top: -10px;
    font-size: 17px;
  }

  .farms-main-hero {
    min-height: 452px;
    padding: 95px 18px 35px;
  }

  .farms-main-hero-video {
    display: none;
  }

  .farms-main-hero h1 {
    font-size: 55px;
  }

  .farms-overview {
    padding: 52px 20px 58px;
  }

  .farms-overview p {
    font-size: 18px;
    line-height: 1.5;
  }

  .farms-overview p:first-child {
    font-size: 25px;
  }

  .farms-overview p + p {
    margin-top: 28px;
    padding-top: 28px;
  }

  .farms-presentation {
    padding: 58px 18px 68px;
  }

  .farms-presentation-inner {
    gap: 28px;
  }

  .farms-presentation-heading h2 {
    font-size: 42px;
  }

  .home-video-hero {
    min-height: 520px;
  }

  .home-video-media iframe {
    width: 925px;
    height: 520px;
  }

  .home-video-media {
    display: none;
  }

  .home-video-content {
    padding-inline: 18px;
  }

  .home-video-content h1 {
    margin-bottom: 28px;
    font-size: clamp(36px, 10.5vw, 46px);
    line-height: 1.02;
  }

  .home-video-content h1 br {
    display: none;
  }

  .home-hero-button {
    min-height: 42px;
    padding-inline: 18px;
    font-size: 10px;
    letter-spacing: .13em;
  }

  .hero {
    min-height: 720px;
  }

  .hero-content {
    width: calc(100% - 36px);
    margin-left: 18px;
    padding-top: 175px;
  }

  .hero-content h1 {
    font-size: clamp(52px, 17vw, 78px);
  }

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

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .scroll-hint {
    display: none;
  }

  .portal {
    min-height: 330px;
    padding: 32px 24px;
  }

  .portal h2 {
    font-size: 33px;
  }

  .home-routes {
    padding: 54px 20px 75px;
  }

  .home-routes > h2 {
    margin-bottom: 42px;
    font-size: 48px;
    line-height: 1;
  }

  .home-route-grid {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .home-route-card h3 {
    min-height: 0;
  }

  .home-route-card p {
    max-width: 520px;
    margin-inline: auto;
  }

  .home-route-button {
    min-height: 54px;
    font-size: 18px;
  }

  .merina-fact {
    display: none;
  }

  .blog-preview .post-card:nth-child(n+4) {
    display: none;
  }

  .section {
    padding-block: 80px;
  }

  .section-heading {
    margin-bottom: 45px;
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .section-heading > p {
    font-size: 20px;
  }

  .section-heading > a {
    justify-self: start;
  }

  .route-row {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .route-image-wrap img {
    height: 240px;
  }

  .partner-types {
    padding-block: 75px;
    gap: 45px;
  }

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

  .partner-grid a {
    min-height: 155px;
  }

  .partner-grid img {
    width: 74px;
    height: 74px;
  }

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

  .page-hero {
    min-height: 570px;
    padding-top: 150px;
  }

  .page-hero h1 {
    font-size: 58px;
  }

  .editorial-intro {
    padding-block: 70px;
    gap: 35px;
  }

  .route-directory {
    padding-block: 70px;
  }

  .route-feature {
    margin-bottom: 30px;
    grid-template-columns: 1fr;
  }

  .route-feature:nth-child(even) .route-feature-image {
    order: 0;
  }

  .route-feature-image {
    min-height: 320px;
  }

  .route-feature-copy {
    padding: 38px 28px;
  }

  .route-hero {
    min-height: 700px;
    padding-top: 150px;
  }

  .route-hero h1 {
    font-size: 55px;
  }

  .route-overview {
    padding-block: 75px;
    gap: 55px;
  }

  .map-card-image {
    height: 500px;
  }

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

  .stage-grid article {
    min-height: 220px;
  }

  .stage-grid h3 {
    margin-top: 60px;
  }

  .blog-controls {
    padding-top: 60px;
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .blog-controls input {
    width: 100%;
  }

  .blog-controls form {
    width: 100%;
  }

  .wordpress-blog-link {
    align-items: flex-start;
    flex-direction: column;
  }

  .article-header {
    padding-top: 140px;
    gap: 35px;
  }

  .article-header-copy h1 {
    font-size: 46px;
  }

  .article-hero-image img {
    height: 330px;
  }

  .article-layout {
    padding-block: 70px;
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .article-aside {
    padding-bottom: 25px;
    border-bottom: 1px solid var(--sand);
  }

  .prose {
    font-size: 18px;
  }

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

  .farm-detail-hero {
    min-height: 650px;
  }

  .farm-detail-title {
    bottom: 50px;
  }

  .farm-detail-title h1 {
    font-size: 56px;
  }

  .farm-video-section {
    padding-block: 75px;
    gap: 35px;
  }

  .farm-detail-content {
    padding-bottom: 75px;
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .farm-detail-content aside {
    position: static;
  }

  .farm-gallery-section {
    padding-block: 75px;
  }

  .farm-gallery a,
  .farm-gallery a:nth-child(1),
  .farm-gallery a:nth-child(6) {
    grid-column: auto;
  }

  .farm-gallery img,
  .farm-gallery a:nth-child(1) img,
  .farm-gallery a:nth-child(6) img {
    height: 220px;
  }

  .about-manifesto {
    padding-block: 75px;
  }

  .about-photo {
    position: static;
  }

  .about-photo img {
    min-height: 420px;
  }

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

  .values article {
    border-right: 0;
    border-bottom: 1px solid var(--sand);
  }

  .contact-layout {
    padding-top: 140px;
    gap: 55px;
  }

  .contact-form {
    padding: 30px 22px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 45px 25px;
  }

  .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }

  .footer-grid > div:last-child {
    grid-column: auto;
  }

  .footer-bottom {
    gap: 20px;
    flex-direction: column;
  }

  .collaborators > div {
    min-height: 128px;
    gap: 18px;
    flex-wrap: wrap;
  }

  .collaborators h2 {
    width: 100%;
    font-size: 16px;
  }

  .collaborators img {
    width: 82px;
    height: 75px;
  }

  .collaborators a {
    width: 90px;
    height: 80px;
  }

  .site-footer .footer-grid {
    padding-block: 58px 42px;
    grid-template-columns: 1fr 1fr;
    gap: 42px 24px;
  }

  .site-footer .footer-grid > div:first-child,
  .site-footer .funding-logos {
    grid-column: 1 / -1;
  }

  .site-footer .funding-logos {
    grid-template-columns: 1fr;
  }

  .site-footer .funding-logos img {
    max-width: 280px;
  }
}

/* Socios destacados: pertenencia, visor, productos y administración. */
.directory-entry-hero.is-featured {
  box-shadow: inset 0 -8px 0 #d6b05d;
}

.directory-entry-hero.is-ambassador {
  box-shadow: inset 0 -8px 0 var(--yellow);
}

.directory-entry-seal.is-featured {
  border-color: #d6b05d;
  color: var(--forest-dark);
  background: #d6b05d;
  box-shadow: 0 18px 45px rgba(0, 0, 0, .2);
}

.directory-entry-seal.is-ambassador {
  border-color: var(--yellow);
  color: var(--forest-dark);
  background: var(--yellow);
}

.directory-lightbox {
  width: 100vw;
  max-width: none;
  height: 100vh;
  max-height: none;
  margin: 0;
  padding: 0;
  border: 0;
  color: white;
  background: rgba(10, 24, 18, .96);
}

.directory-lightbox[open] {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr) 90px;
  align-items: center;
}

.directory-lightbox::backdrop {
  background: rgba(10, 24, 18, .96);
}

.directory-lightbox figure {
  width: min(100%, 1350px);
  height: min(84vh, 900px);
  margin: 0 auto;
  padding: 55px 0 30px;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 18px;
}

.directory-lightbox figure img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
}

.directory-lightbox figcaption {
  min-height: 22px;
  display: flex;
  justify-content: space-between;
  gap: 25px;
  color: rgba(255, 255, 255, .76);
  font: 500 12px/1.4 var(--display);
}

.directory-lightbox figcaption strong {
  color: white;
}

.directory-lightbox button {
  border: 0;
  color: white;
  background: transparent;
  cursor: pointer;
}

.directory-lightbox-close {
  position: fixed;
  z-index: 2;
  top: 24px;
  right: 30px;
  width: 48px;
  height: 48px;
  font: 300 40px/1 var(--display);
}

.directory-lightbox-nav {
  width: 60px;
  height: 60px;
  justify-self: center;
  border: 1px solid rgba(255, 255, 255, .32) !important;
  border-radius: 50% !important;
  font: 400 27px/1 var(--display);
}

.directory-product-image {
  display: block;
}

.directory-product-copy h3 a {
  color: inherit;
}

.product-detail-hero {
  padding: 58px max(24px, calc((100vw - var(--container)) / 2)) 90px;
  color: white;
  background: var(--forest);
}

.product-detail-hero.is-featured {
  box-shadow: inset 0 -8px 0 #d6b05d;
}

.product-detail-hero.is-ambassador {
  box-shadow: inset 0 -8px 0 var(--yellow);
}

.product-detail-breadcrumb {
  margin-bottom: 48px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: rgba(255, 255, 255, .72);
  font: 650 10px/1.2 var(--display);
  text-transform: uppercase;
}

.product-detail-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(390px, .85fr);
  align-items: center;
  gap: clamp(50px, 7vw, 105px);
}

.product-detail-image {
  min-height: 560px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #e4ded2;
}

.product-detail-image img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
}

.product-detail-image > span {
  color: var(--moss);
  font: 650 12px/1 var(--display);
}

.product-detail-heading h1 {
  margin: 14px 0 24px;
  font-size: clamp(54px, 6.5vw, 92px);
  line-height: .9;
}

.product-detail-heading > p:not(.eyebrow) {
  max-width: 640px;
  margin: 0 0 36px;
  color: rgba(255, 255, 255, .78);
  font-size: 19px;
  line-height: 1.55;
}

.product-detail-heading > div {
  padding-top: 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, .25);
  font-family: var(--display);
}

.product-detail-heading strong {
  font-size: 23px;
}

.product-detail-heading span {
  color: #d6b05d;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.product-detail-layout {
  padding: 100px max(24px, calc((100vw - var(--container)) / 2)) 120px;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(320px, .7fr);
  align-items: start;
  gap: clamp(55px, 8vw, 115px);
}

.product-detail-copy > h2 {
  max-width: 760px;
  margin: 12px 0 28px;
  color: var(--forest);
  font-size: clamp(42px, 5vw, 70px);
  line-height: .95;
}

.product-detail-copy > p:not(.eyebrow) {
  max-width: 790px;
  color: #42564c;
  font-size: 20px;
  line-height: 1.65;
  white-space: pre-line;
}

.product-detail-purchase-guide {
  margin-top: 65px;
  padding: 42px;
  background: #e9e2d5;
}

.product-detail-purchase-guide h3 {
  margin: 10px 0 18px;
  color: var(--forest);
  font-size: 38px;
}

.product-detail-purchase-guide > p:not(.eyebrow) {
  color: #4f6157;
  font-size: 17px;
}

.product-detail-purchase-guide ol {
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(35, 71, 55, .2);
}

.product-detail-purchase-guide li {
  padding: 18px 0;
  display: grid;
  grid-template-columns: 45px 1fr;
  gap: 16px;
  border-bottom: 1px solid rgba(35, 71, 55, .2);
}

.product-detail-purchase-guide li strong {
  color: var(--brown);
  font: 700 11px/1.4 var(--display);
}

.product-detail-purchase-guide li span {
  color: var(--forest);
  font-size: 15px;
}

.product-detail-contact {
  position: sticky;
  top: 130px;
  padding: 36px;
  border: 1px solid rgba(35, 71, 55, .24);
  background: white;
}

.product-detail-contact h2 {
  margin: 10px 0 8px;
  color: var(--forest);
  font-size: 35px;
  line-height: 1;
}

.product-detail-contact > p:not(.eyebrow) {
  color: var(--brown);
  font: 650 12px/1.4 var(--display);
}

.product-detail-contact dl {
  margin: 30px 0;
}

.product-detail-contact dl div {
  padding: 16px 0;
  border-top: 1px solid rgba(35, 71, 55, .15);
}

.product-detail-contact dt {
  margin-bottom: 6px;
  color: #6d7a72;
  font: 700 9px/1 var(--display);
  text-transform: uppercase;
}

.product-detail-contact dd {
  margin: 0;
  color: var(--forest);
  font: 650 15px/1.35 var(--display);
}

.product-detail-actions {
  display: grid;
  gap: 12px;
}

.product-detail-actions .button {
  width: 100%;
}

.product-detail-secondary {
  border: 1px solid rgba(35, 71, 55, .3);
  color: var(--forest);
  background: transparent;
}

.product-detail-actions > a:not(.button) {
  margin-top: 8px;
  color: var(--forest);
  font: 650 11px/1.4 var(--display);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.product-detail-contact > small {
  margin-top: 28px;
  display: block;
  color: #77827b;
  font-size: 11px;
  line-height: 1.5;
}

.product-detail-back {
  padding: 75px max(24px, calc((100vw - var(--container)) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 45px;
  color: white;
  background: var(--brown);
}

.product-detail-back h2 {
  max-width: 850px;
  margin: 10px 0 0;
  font-size: clamp(36px, 4vw, 58px);
  line-height: .98;
}

.membership-hero-actions {
  margin-top: 32px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.membership-hero > div > p:not(.eyebrow) {
  max-width: 780px;
  margin: 0;
  font-size: 20px;
  line-height: 1.55;
}

.membership-hero-actions > a:last-child {
  font: 650 12px/1.3 var(--display);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.membership-purpose {
  padding: 100px max(24px, calc((100vw - var(--container)) / 2));
  color: white;
  background: var(--brown);
}

.membership-purpose-heading {
  max-width: 950px;
}

.membership-purpose-heading h2 {
  margin: 12px 0 25px;
  font-size: clamp(48px, 6vw, 84px);
  line-height: .92;
}

.membership-purpose-heading > p:last-child {
  max-width: 780px;
  color: rgba(255, 255, 255, .76);
  font-size: 19px;
  line-height: 1.6;
}

.membership-purpose-grid {
  margin-top: 65px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, .3);
  border-left: 1px solid rgba(255, 255, 255, .3);
}

.membership-purpose-grid article {
  min-height: 280px;
  padding: 30px;
  border-right: 1px solid rgba(255, 255, 255, .3);
  border-bottom: 1px solid rgba(255, 255, 255, .3);
}

.membership-purpose-grid article > span {
  color: var(--yellow);
  font: 700 10px/1 var(--display);
}

.membership-purpose-grid h3 {
  margin: 65px 0 16px;
  font-size: 29px;
  line-height: 1;
}

.membership-purpose-grid p {
  margin: 0;
  color: rgba(255, 255, 255, .72);
  font-size: 15px;
}

.membership-purpose footer {
  margin-top: 45px;
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  gap: 45px;
  border-top: 1px solid rgba(255, 255, 255, .3);
}

.membership-purpose footer strong {
  max-width: 550px;
  font: 650 25px/1.2 var(--display);
}

.membership-purpose footer p {
  max-width: 520px;
  margin: 0;
  color: rgba(255, 255, 255, .7);
}

.membership-revenue-metrics {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.membership-revenue-note {
  margin: -20px 0 35px;
  color: #68766e;
  font-size: 13px;
}

.membership-revenue-months > div {
  grid-template-columns: minmax(0, 1fr) 120px 140px;
}

.membership-plan-list {
  display: grid;
  gap: 26px;
}

.membership-plan-list > form {
  border: 1px solid rgba(35, 71, 55, .22);
  background: white;
}

.membership-plan-list header {
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  color: white;
  background: var(--forest);
}

.membership-plan-list header h3 {
  margin: 8px 0 0;
  font-size: 32px;
}

.membership-plan-list header > div:last-child {
  text-align: right;
}

.membership-plan-list header > div:last-child strong,
.membership-plan-list header > div:last-child span {
  display: block;
  font-family: var(--display);
}

.membership-plan-list header > div:last-child strong {
  font-size: 30px;
}

.membership-plan-list header > div:last-child span {
  color: rgba(255, 255, 255, .7);
  font-size: 9px;
  text-transform: uppercase;
}

.membership-plan-fields {
  padding: 32px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.membership-plan-fields label {
  color: var(--forest);
  font: 650 10px/1.3 var(--display);
  text-transform: uppercase;
}

.membership-plan-fields input {
  width: 100%;
  min-height: 48px;
  margin-top: 8px;
  padding: 0 13px;
  border: 1px solid rgba(35, 71, 55, .25);
  border-radius: 0;
  background: var(--paper);
}

.membership-plan-fields label > span {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 25px;
  align-items: center;
}

.membership-plan-list footer {
  padding: 22px 32px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 28px;
  border-top: 1px solid rgba(35, 71, 55, .15);
}

.membership-plan-active {
  margin-right: auto;
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--forest);
  font: 650 11px/1.2 var(--display);
}

.membership-plan-list footer p {
  margin: 0;
  color: #68766e;
  font-size: 12px;
}

.membership-payment-register > div {
  grid-template-columns: 110px minmax(220px, 1fr) 110px 120px;
}

.admin-email-test {
  padding: 36px;
  border: 1px solid rgba(35, 71, 55, .2);
  background: #ece7dc;
}

.admin-email-test .admin-section-heading {
  margin-bottom: 26px;
}

.admin-email-test form {
  display: grid;
  grid-template-columns: minmax(210px, .8fr) minmax(280px, 1.2fr) auto;
  align-items: end;
  gap: 18px;
}

.admin-email-test label {
  color: var(--forest);
  font: 650 10px/1.3 var(--display);
  text-transform: uppercase;
}

.admin-email-test input,
.admin-email-test select {
  width: 100%;
  min-height: 50px;
  margin-top: 8px;
  padding: 0 14px;
  border: 1px solid rgba(35, 71, 55, .25);
  border-radius: 0;
  color: var(--forest);
  background: white;
}

.admin-email-test > p {
  margin: 17px 0 0;
  color: #68766e;
  font-size: 12px;
}

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

.admin-email-template-grid article {
  min-height: 235px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(35, 71, 55, .2);
  background: white;
}

.admin-email-template-grid article > span {
  color: var(--gold);
  font: 700 11px/1 var(--display);
}

.admin-email-template-grid h3 {
  margin: 22px 0 11px;
  color: var(--forest);
  font-size: 27px;
  line-height: 1.02;
}

.admin-email-template-grid p {
  margin: 0 0 22px;
  color: #68766e;
  font-size: 14px;
  line-height: 1.5;
}

.admin-email-template-grid a {
  margin-top: auto;
  color: var(--brown);
  font: 700 11px/1.3 var(--display);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.admin-email-outbox {
  overflow-x: auto;
  border: 1px solid rgba(35, 71, 55, .2);
  background: white;
}

.admin-email-outbox-head,
.admin-email-outbox article {
  min-width: 780px;
  padding: 18px 22px;
  display: grid;
  grid-template-columns: 115px minmax(180px, 1fr) minmax(180px, 1fr) 155px;
  gap: 18px;
  align-items: center;
}

.admin-email-outbox-head {
  color: white;
  background: var(--forest);
  font: 700 10px/1.2 var(--display);
  text-transform: uppercase;
}

.admin-email-outbox article {
  border-bottom: 1px solid rgba(35, 71, 55, .12);
  color: #536259;
  font-size: 13px;
}

.admin-email-outbox article:last-child {
  border-bottom: 0;
}

.admin-email-outbox article small {
  grid-column: 2 / -1;
  color: #8a392d;
}

.email-status {
  width: fit-content;
  padding: 6px 9px;
  color: var(--forest);
  background: #e7ede9;
  font: 700 9px/1 var(--display);
  text-transform: uppercase;
}

.email-status.is-sent {
  color: white;
  background: var(--moss);
}

.email-status.is-failed {
  color: white;
  background: #8a392d;
}

.email-status.is-cancelled {
  color: #68766e;
  background: #e8e5df;
}

@media (max-width: 900px) {
  .product-detail-hero-grid,
  .product-detail-layout {
    grid-template-columns: 1fr;
  }

  .product-detail-heading {
    order: -1;
  }

  .product-detail-image,
  .product-detail-image img {
    min-height: 430px;
  }

  .product-detail-contact {
    position: static;
  }

  .admin-email-test form,
  .admin-email-template-grid {
    grid-template-columns: 1fr;
  }

  .membership-purpose-grid {
    grid-template-columns: 1fr;
  }

  .membership-revenue-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .membership-plan-fields {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .directory-lightbox[open] {
    grid-template-columns: 54px minmax(0, 1fr) 54px;
  }

  .directory-lightbox figure {
    height: 86vh;
    padding-top: 70px;
  }

  .directory-lightbox figcaption {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

  .directory-lightbox-nav {
    width: 42px;
    height: 42px;
    font-size: 21px;
  }

  .product-detail-hero {
    padding-top: 38px;
    padding-bottom: 65px;
  }

  .product-detail-image,
  .product-detail-image img {
    min-height: 350px;
  }

  .product-detail-hero-grid {
    gap: 38px;
  }

  .product-detail-layout {
    padding-top: 70px;
    padding-bottom: 80px;
  }

  .product-detail-purchase-guide,
  .product-detail-contact {
    padding: 26px;
  }

  .product-detail-back,
  .membership-purpose footer,
  .membership-hero-actions,
  .membership-plan-list header,
  .membership-plan-list footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .membership-purpose {
    padding-top: 72px;
    padding-bottom: 75px;
  }

  .membership-purpose-grid {
    margin-top: 45px;
  }

  .membership-purpose-grid article {
    min-height: 230px;
  }

  .membership-purpose-grid h3 {
    margin-top: 45px;
  }

  .membership-revenue-metrics,
  .membership-plan-fields {
    grid-template-columns: 1fr;
  }

  .membership-plan-list footer {
    gap: 18px;
  }

  .membership-plan-active {
    margin-right: 0;
  }

  .membership-payment-register,
  .membership-revenue-months {
    overflow-x: auto;
  }

  .membership-payment-register > div {
    min-width: 680px;
  }
}

/* Sobre el proyecto: conserva la estructura editorial de la página publicada. */
.about-page-hero {
  position: relative;
  min-height: 610px;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: white;
  background: var(--forest) url("../img/about-sheep.jpg") center 56%/cover no-repeat;
  isolation: isolate;
}

.about-page-hero-shade {
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(12, 34, 24, .16), rgba(12, 34, 24, .42)),
    linear-gradient(90deg, rgba(12, 34, 24, .1), transparent 45%, rgba(12, 34, 24, .08));
}

.about-page-hero-inner {
  width: min(1180px, calc(100% - 48px));
  padding-top: 12px;
  text-align: center;
}

.about-page-hero h1 {
  max-width: 980px;
  margin: 0 auto;
  font-size: clamp(58px, 6.5vw, 94px);
  font-weight: 760;
  line-height: .94;
  text-wrap: balance;
}

.about-introduction {
  padding: 92px 24px 96px;
  color: var(--brown);
  background: var(--cream);
}

.about-introduction-inner {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}

.about-introduction .eyebrow {
  margin-bottom: 18px;
  color: var(--terracotta);
}

.about-introduction h2 {
  margin-bottom: 30px;
  font-size: clamp(42px, 4.7vw, 68px);
}

.about-introduction p:not(.eyebrow) {
  max-width: 900px;
  margin-right: auto;
  margin-left: auto;
}

.about-introduction-lead {
  margin-bottom: 24px;
  font: 650 clamp(21px, 2.05vw, 27px)/1.3 var(--display);
  letter-spacing: -.025em;
}

.about-introduction p:last-child {
  max-width: 810px;
  margin-bottom: 0;
  font-size: 20px;
  line-height: 1.5;
}

.about-pillars {
  padding: 88px max(24px, calc((100vw - 1280px) / 2)) 96px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  background: white;
}

.about-pillar {
  position: relative;
  min-width: 0;
  padding: 0 32px 12px;
  border-right: 1px solid rgba(85, 59, 44, .38);
  font-size: 16px;
  line-height: 1.42;
}

.about-pillar:first-child {
  padding-left: 0;
}

.about-pillar:last-child {
  padding-right: 0;
  border-right: 0;
}

.about-pillar-number {
  margin-bottom: 25px;
  color: var(--terracotta);
  font: 750 12px/1 var(--display);
  letter-spacing: .14em;
}

.about-pillar h2 {
  min-height: 2em;
  margin-bottom: 26px;
  color: var(--forest-dark);
  font-size: clamp(27px, 2.4vw, 35px);
  line-height: 1;
}

.about-pillar p {
  margin-bottom: 18px;
}

.about-pillar ul {
  margin: 0;
  padding-left: 25px;
}

.about-pillar li {
  margin-bottom: 7px;
  padding-left: 3px;
}

.about-pillar li::marker {
  color: var(--terracotta);
}

.about-mission {
  min-height: 980px;
  padding-bottom: 330px;
}

.about-sheep-cutout {
  position: absolute;
  bottom: -96px;
  left: -26px;
  width: min(350px, 100%);
  max-height: 390px;
  object-fit: contain;
  object-position: left bottom;
  pointer-events: none;
}

.about-join {
  margin-top: 32px;
  padding: 30px 24px 25px;
  color: var(--brown);
  background: var(--cream);
  text-align: center;
}

.about-join-button {
  min-width: 155px;
  margin-bottom: 22px;
  border-color: var(--terracotta);
  color: white;
  background: var(--terracotta);
  font-size: 19px;
}

.about-join-button:hover {
  border-color: var(--forest);
  background: var(--forest);
}

.about-join p {
  margin-bottom: 12px;
  font-size: 16px;
  line-height: 1.35;
}

.about-join p:last-child {
  margin-bottom: 0;
}

.about-video-callout {
  padding: 95px 24px 100px;
  color: var(--brown);
  background: var(--cream);
  text-align: center;
}

.about-video-callout .eyebrow {
  margin-bottom: 20px;
  color: var(--terracotta);
}

.about-video-callout h2 {
  max-width: 1050px;
  margin: 0 auto 36px;
  font: italic 500 clamp(42px, 5.3vw, 76px)/1.05 var(--serif);
  letter-spacing: -.035em;
  text-wrap: balance;
}

.about-video-button {
  min-height: 52px;
  padding: 0 22px 0 30px;
  display: inline-flex;
  gap: 18px;
  align-items: center;
  border-radius: 999px;
  color: white;
  background: var(--terracotta);
  font: 700 18px/1 var(--display);
  transition: transform .2s ease, background .2s ease;
}

.about-video-button:hover {
  background: var(--forest);
  transform: translateY(-2px);
}

.about-play-icon {
  position: relative;
  width: 27px;
  height: 27px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.about-play-icon::after {
  position: absolute;
  top: 7px;
  left: 10px;
  width: 0;
  height: 0;
  content: "";
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 8px solid currentColor;
}

.about-promoters {
  padding: 96px 24px 108px;
  color: white;
  background: var(--brown);
}

.about-promoters-inner {
  max-width: 1180px;
  margin: 0 auto;
  text-align: center;
}

.about-promoters .eyebrow {
  margin-bottom: 18px;
  color: var(--yellow);
}

.about-promoters h2 {
  max-width: 940px;
  margin: 0 auto 64px;
  font-size: clamp(42px, 5.1vw, 72px);
  text-wrap: balance;
}

.about-promoter-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, .36);
  border-bottom: 1px solid rgba(255, 255, 255, .36);
}

.about-promoter-grid article {
  border-right: 1px solid rgba(255, 255, 255, .36);
}

.about-promoter-grid article:last-child {
  border-right: 0;
}

.about-promoter-card {
  min-height: 390px;
  padding: 42px 22px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: inherit;
  text-decoration: none;
  transition: background-color .2s ease;
}

.about-promoter-card:hover,
.about-promoter-card:focus-visible {
  background: rgba(255, 255, 255, .08);
}

.about-promoter-card:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: -5px;
}

.about-promoter-logo {
  width: 100%;
  height: 190px;
  margin-bottom: 24px;
  display: grid;
  place-items: center;
}

.about-promoter-logo img {
  width: 160px;
  height: 160px;
  object-fit: contain;
}

.about-promoter-grid article:nth-child(2) img {
  width: 172px;
  height: 172px;
}

.about-promoter-grid article:nth-child(4) img {
  width: 176px;
  height: 176px;
}

.about-promoter-grid h3 {
  margin: auto 0 18px;
  font-size: clamp(21px, 1.8vw, 28px);
  line-height: 1.08;
}

.about-promoter-link {
  padding-top: 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  border-top: 1px solid rgba(255, 255, 255, .28);
}

.about-funding {
  padding: 68px 24px 76px;
  color: white;
  background: #050505;
}

.about-funding-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.about-funding h2 {
  margin-bottom: 38px;
  font-size: 20px;
  letter-spacing: 0;
  text-align: center;
}

.about-funding-logos {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: center;
}

.about-funding-logos img {
  width: 100%;
  height: 138px;
  padding: 22px 28px;
  object-fit: contain;
  border-right: 1px solid rgba(255, 255, 255, .38);
}

.about-funding-logos img:last-child {
  border-right: 0;
}

@media (max-width: 1024px) {
  .about-page-hero {
    min-height: 560px;
  }

  .about-pillars {
    padding-block: 72px;
    grid-template-columns: 1fr;
  }

  .about-pillar,
  .about-pillar:first-child,
  .about-pillar:last-child {
    min-height: 0;
    padding: 48px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(85, 59, 44, .28);
  }

  .about-pillar:first-child {
    padding-top: 0;
  }

  .about-pillar:last-child {
    padding-bottom: 0;
    border-bottom: 0;
  }

  .about-pillar h2 {
    min-height: 0;
  }

  .about-sheep-cutout {
    position: static;
    width: min(360px, 80%);
    max-height: none;
    margin: 35px auto -48px;
  }

  .about-join {
    max-width: 600px;
  }

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

  .about-promoter-grid article:nth-child(2n) {
    border-right: 0;
  }

  .about-promoter-grid article:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, .36);
  }
}

@media (max-width: 700px) {
  .about-page-hero {
    min-height: 460px;
    background-position: 58% center;
  }

  .about-page-hero-inner {
    width: min(100% - 32px, 580px);
  }

  .about-page-hero h1 {
    font-size: clamp(44px, 13.5vw, 62px);
  }

  .about-introduction {
    padding: 68px 20px 72px;
  }

  .about-introduction h2 {
    margin-bottom: 24px;
  }

  .about-introduction-lead {
    font-size: 20px;
  }

  .about-introduction p:last-child {
    font-size: 18px;
  }

  .about-pillars {
    padding: 52px 20px 62px;
  }

  .about-pillar {
    font-size: 16px;
  }

  .about-pillar-number {
    margin-bottom: 17px;
  }

  .about-pillar h2 {
    margin-bottom: 22px;
    font-size: 30px;
  }

  .about-join {
    padding: 28px 20px 24px;
  }

  .about-video-callout {
    padding: 70px 20px 76px;
  }

  .about-video-callout h2 {
    font-size: 42px;
  }

  .about-video-button {
    font-size: 16px;
  }

  .about-promoters {
    padding: 72px 20px 82px;
  }

  .about-promoters h2 {
    margin-bottom: 45px;
    font-size: 42px;
  }

  .about-promoter-grid {
    grid-template-columns: 1fr;
  }

  .about-promoter-grid article {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .36);
  }

  .about-promoter-card {
    min-height: 340px;
  }

  .about-promoter-grid article:last-child {
    border-bottom: 0;
  }

  .about-promoter-grid h3 {
    font-size: 28px;
  }

  .about-funding {
    padding-block: 58px 64px;
  }

  .about-funding-logos {
    grid-template-columns: 1fr;
  }

  .about-funding-logos img {
    height: 120px;
    padding: 24px 10px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .28);
  }

  .about-funding-logos img:last-child {
    border-bottom: 0;
  }
}

/* Fichas editoriales de las Cañadas Reales. */
.plata-hero {
  position: relative;
  min-height: 470px;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: white;
  background: var(--forest) url("/media/2025/04/ovejas_extremadura.jpg") center 58%/cover no-repeat;
  isolation: isolate;
}

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

.plata-hero-media {
  z-index: -2;
  overflow: hidden;
  pointer-events: none;
}

.plata-hero-media iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: max(100%, 1000px);
  height: max(100%, 56.25vw);
  border: 0;
  transform: translate(-50%, -50%);
}

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

.plata-hero-shade {
  z-index: -1;
  background: rgba(22, 50, 37, .48);
}

.plata-hero h1 {
  max-width: 900px;
  margin: 0;
  padding: 25px;
  font-size: clamp(68px, 8.4vw, 98px);
  font-weight: 760;
  line-height: 1;
  text-align: center;
  text-wrap: balance;
}

.plata-lead {
  padding: 52px 24px 58px;
  color: #101419;
  background: white;
}

.plata-lead p {
  max-width: 820px;
  margin: 0 auto;
  font: 720 clamp(24px, 2.35vw, 31px)/1.08 var(--display);
  letter-spacing: -.035em;
  text-align: center;
  text-wrap: balance;
}

.plata-story {
  padding: 70px 24px 78px;
  color: var(--brown);
  background: var(--cream);
}

.plata-story-inner {
  max-width: 1020px;
  margin: 0 auto;
}

.plata-story p {
  margin: 0;
  font: italic 500 clamp(23px, 2.35vw, 31px)/1.28 var(--serif);
  text-align: center;
}

.plata-story strong {
  font-weight: 750;
}

.plata-story hr {
  width: 310px;
  max-width: 42%;
  margin: 56px auto;
  border: 0;
  border-top: 3px solid var(--brown);
}

.plata-map {
  padding: 58px 24px 70px;
  background: white;
}

.plata-map-inner {
  max-width: 1180px;
  margin: 0 auto;
  text-align: center;
}

.plata-map h2,
.plata-stages h2 {
  margin-bottom: 46px;
  color: #101722;
  font-size: clamp(32px, 3.2vw, 43px);
  line-height: 1.08;
  letter-spacing: -.035em;
  text-align: center;
  text-wrap: balance;
}

.plata-map img {
  width: 100%;
  height: auto;
  margin-bottom: 30px;
  background: #f1eee7;
}

.plata-primary-button {
  min-height: 54px;
  padding: 0 37px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: white;
  background: var(--terracotta);
  font: 720 20px/1 var(--display);
  transition: background .2s ease, transform .2s ease;
}

.plata-primary-button:hover {
  background: var(--forest);
  transform: translateY(-2px);
}

.plata-stages {
  padding: 52px 10px 40px;
  background: var(--cream);
}

.plata-stages-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.plata-stages h2 {
  margin-bottom: 32px;
}

.plata-stage-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.plata-stage-card {
  position: relative;
  min-height: 220px;
  overflow: hidden;
  color: white;
  background: var(--forest);
}

.plata-stage-card > img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  transition: transform .35s ease;
}

.plata-stage-card:hover > img {
  transform: scale(1.025);
}

.plata-stage-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10, 21, 15, .86));
}

.plata-stage-label {
  position: absolute;
  left: 18px;
  bottom: 17px;
}

.plata-stage-label img {
  width: 43px;
  height: 25px;
  margin-bottom: 2px;
  object-fit: contain;
  object-position: left bottom;
}

.plata-stage-label h3 {
  margin: 0;
  font-size: clamp(24px, 2.3vw, 33px);
  line-height: 1;
}

.plata-stage-arrow {
  position: absolute;
  right: 10px;
  bottom: 10px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 2px solid white;
  border-radius: 50%;
  background: var(--terracotta);
  font: 650 22px/1 var(--display);
}

@media (max-width: 1024px) {
  .plata-stage-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .plata-stage-card,
  .plata-stage-card > img {
    min-height: 300px;
  }

}

@media (max-width: 700px) {
  .plata-hero {
    min-height: 430px;
    background-position: center;
  }

  .plata-hero-media iframe {
    display: none;
  }

  .plata-hero h1 {
    padding-inline: 18px;
    font-size: clamp(49px, 14vw, 66px);
  }

  .plata-lead {
    padding: 42px 20px 46px;
  }

  .plata-lead p {
    font-size: 24px;
    line-height: 1.12;
  }

  .plata-story {
    padding: 58px 20px 64px;
  }

  .plata-story p {
    font-size: 22px;
    line-height: 1.35;
  }

  .plata-story hr {
    margin-block: 38px;
  }

  .plata-map {
    padding: 52px 14px 60px;
  }

  .plata-map h2,
  .plata-stages h2 {
    margin-bottom: 30px;
    font-size: 34px;
  }

  .plata-map img {
    margin-bottom: 25px;
  }

  .plata-primary-button {
    min-height: 50px;
    padding-inline: 30px;
    font-size: 18px;
  }

  .plata-stages {
    padding: 48px 18px 55px;
  }

  .plata-stage-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .plata-stage-card,
  .plata-stage-card > img {
    min-height: 260px;
  }

  .plata-stage-label h3 {
    font-size: 32px;
  }

}

.main-nav .nav-account {
  padding: 11px 14px;
  border: 1px solid rgba(255, 255, 255, .5);
}

.account-auth {
  min-height: calc(100vh - 112px);
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(430px, .85fr);
  color: white;
  background: var(--forest);
}

.account-auth-copy {
  padding: clamp(80px, 10vw, 150px) max(40px, calc((100vw - var(--container)) / 2));
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.account-auth-copy h1 {
  max-width: 720px;
  margin: 12px 0 28px;
  font-size: clamp(52px, 6.5vw, 96px);
  line-height: .94;
}

.account-auth-copy > p:last-child {
  max-width: 600px;
  margin: 0;
  font-size: 20px;
}

.account-login-form {
  padding: clamp(55px, 8vw, 110px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--ink);
  background: var(--paper);
}

.account-login-form h2 {
  margin: 10px 0 38px;
  color: var(--forest);
  font-size: clamp(36px, 4vw, 54px);
  line-height: 1;
}

.account-login-form label {
  margin-bottom: 24px;
  color: var(--forest);
  font: 650 12px/1.35 var(--display);
}

.account-password-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
}

.account-password-heading > a {
  color: var(--brown);
  font-size: 11px;
  font-weight: 650;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.account-login-form input {
  width: 100%;
  margin-top: 9px;
  padding: 14px;
  border: 1px solid rgba(35, 71, 55, .3);
  border-radius: 0;
  background: white;
}

.account-login-form .button {
  align-self: flex-start;
}

.account-login-form .account-remember-choice {
  width: fit-content;
  margin: -5px 0 28px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: #58675f;
  cursor: pointer;
  font: 500 13px/1.3 var(--body);
}

.account-login-form .account-remember-choice input {
  width: 16px;
  height: 16px;
  margin: 0;
  accent-color: var(--forest);
}

.account-login-onboarding {
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid rgba(35, 71, 55, .18);
  color: #68766e;
  font-size: 13px;
  line-height: 1.6;
}

.account-login-onboarding p {
  margin: 0 0 3px;
  color: var(--forest);
  font-weight: 650;
}

.account-login-onboarding span {
  margin: 0 4px;
}

.account-login-onboarding a,
.account-login-other a,
.account-auth-back {
  color: var(--forest);
  font: 650 13px/1.3 var(--display);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.account-login-other {
  margin-top: 18px;
  color: var(--brown);
  font-size: 11px;
}

.account-login-other summary {
  width: fit-content;
  cursor: pointer;
  font: 600 11px/1.3 var(--display);
}

.account-login-other a {
  margin-top: 10px;
  display: block;
  color: var(--brown);
  font-size: 11px;
}

.account-auth-back {
  width: fit-content;
  margin-top: 26px;
}

.account-request-sent {
  max-width: 470px;
  margin-bottom: 28px;
  padding: 22px 24px;
  color: var(--forest);
  background: rgba(214, 176, 93, .14);
  border-left: 3px solid var(--gold);
}

.account-request-sent strong {
  font-family: var(--display);
  font-size: 18px;
}

.account-request-sent p {
  margin: 8px 0 0;
  color: #5f6d65;
  font-size: 14px;
  line-height: 1.55;
}

.login-error {
  margin: -15px 0 25px;
  padding: 14px 16px;
  color: #6e2418;
  background: #fce9e4;
  font-size: 15px;
}

.account-hero,
.admin-hero {
  min-height: 390px;
  padding: 120px max(24px, calc((100vw - var(--container)) / 2)) 70px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 45px;
  color: white;
  background: var(--forest);
}

.account-hero h1,
.admin-hero h1 {
  margin: 12px 0 16px;
  font-size: clamp(50px, 7vw, 92px);
  line-height: .94;
}

.account-hero p:last-child,
.admin-hero p:last-child {
  margin: 0;
  font-family: var(--display);
  font-size: 14px;
}

.account-hero-actions {
  display: flex;
  align-items: center;
  gap: 26px;
}

.account-hero-actions > a {
  color: white;
  font: 650 12px/1.2 var(--display);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.account-hero-actions form {
  margin: 0;
}

.text-button {
  padding: 8px 0;
  border: 0;
  border-bottom: 1px solid currentColor;
  color: var(--forest);
  background: transparent;
  cursor: pointer;
  font: 650 12px/1.2 var(--display);
}

.text-button.light {
  color: white;
}

.account-shell,
.admin-shell {
  padding: 90px max(24px, calc((100vw - var(--container)) / 2)) 120px;
}

.account-section-heading,
.admin-section-heading {
  margin-bottom: 38px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
}

.account-section-heading h2,
.admin-section-heading h2,
.account-claims h2 {
  margin: 10px 0 0;
  color: var(--forest);
  font-size: clamp(36px, 4vw, 58px);
  line-height: 1;
}

.account-entry-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.account-entry-card {
  min-height: 300px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(35, 71, 55, .22);
  background: white;
}

.account-entry-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  color: var(--moss);
  font: 700 10px/1.2 var(--display);
  letter-spacing: .06em;
  text-transform: uppercase;
}

.account-entry-card h3 {
  margin: 35px 0 12px;
  color: var(--forest);
  font-size: 32px;
  line-height: 1;
}

.account-entry-card > p {
  margin-bottom: 10px;
}

.account-entry-card > small {
  color: #68766e;
  font-size: 13px;
}

.account-card-actions {
  margin-top: auto;
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(35, 71, 55, .15);
}

.account-card-actions a {
  color: var(--forest);
  font: 650 12px/1.3 var(--display);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.status-pill {
  padding: 7px 9px;
  border-radius: 999px;
  color: #46544c;
  background: #e9ecea;
  font: 700 9px/1 var(--display);
  letter-spacing: .04em;
  text-transform: uppercase;
}

.status-pill.is-approved {
  color: #235333;
  background: #dcebdd;
}

.status-pill.is-pending {
  color: #69511a;
  background: #fae8b9;
}

.status-pill.is-rejected {
  color: #742b21;
  background: #f5d9d3;
}

.account-empty,
.admin-empty {
  padding: 46px;
  border: 1px solid rgba(35, 71, 55, .2);
  background: white;
}

.account-empty h3 {
  margin-bottom: 12px;
  color: var(--forest);
  font-size: 30px;
}

.account-claims {
  margin-top: 90px;
}

.account-claims > article {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  border-bottom: 1px solid rgba(35, 71, 55, .18);
}

.account-claims h3 {
  margin: 0 0 5px;
  color: var(--forest);
  font-size: 22px;
}

.account-claims article p {
  margin: 0;
  font-size: 15px;
}

.account-coming {
  margin-top: 90px;
  padding: 55px;
  color: white;
  background: var(--brown);
}

.account-coming h2 {
  margin: 12px 0 15px;
  font-size: clamp(34px, 4vw, 55px);
}

.account-coming p:last-child {
  max-width: 760px;
  margin: 0;
}

.account-edit-hero {
  min-height: 420px;
  padding: 130px max(24px, calc((100vw - var(--container)) / 2)) 70px;
  display: flex;
  align-items: flex-end;
  color: white;
  background: var(--forest);
}

.account-edit-hero a {
  margin-bottom: 55px;
  display: inline-block;
  font: 650 12px/1 var(--display);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.account-edit-hero h1 {
  margin: 12px 0 18px;
  font-size: clamp(48px, 7vw, 90px);
  line-height: .95;
}

.account-edit-hero p:last-child {
  max-width: 720px;
  margin-bottom: 0;
}

.account-edit-layout {
  padding: 85px max(24px, calc((100vw - var(--container)) / 2)) 120px;
  display: grid;
  grid-template-columns: minmax(230px, .55fr) minmax(0, 1.45fr);
  gap: 70px;
  align-items: start;
}

.account-edit-layout > aside {
  padding: 28px;
  border: 1px solid rgba(35, 71, 55, .24);
}

.account-edit-layout > aside strong {
  color: var(--forest);
  font: 700 20px/1.25 var(--display);
}

.account-edit-layout > aside p:last-child {
  margin: 12px 0 0;
  color: #68766e;
  font-size: 15px;
}

.account-edit-form {
  padding-top: 45px;
}

.account-workspace-hero {
  min-height: 380px;
}

.account-workspace-nav {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(35, 71, 55, .18);
  background: rgba(251, 248, 240, .97);
  backdrop-filter: blur(12px);
}

.account-workspace-nav > div {
  width: min(calc(100% - 48px), var(--container));
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  overflow-x: auto;
}

.account-workspace-nav a {
  min-height: 66px;
  padding: 0 19px;
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  border-bottom: 3px solid transparent;
  color: #647269;
  font: 650 12px/1 var(--display);
}

.account-nav-lock {
  width: 10px;
  height: 9px;
  margin-left: 7px;
  position: relative;
  display: inline-block;
  border-radius: 2px;
  background: currentColor;
  opacity: .72;
}

.account-nav-lock::before {
  content: "";
  width: 6px;
  height: 6px;
  position: absolute;
  left: 2px;
  top: -5px;
  border: 1.5px solid currentColor;
  border-bottom: 0;
  border-radius: 6px 6px 0 0;
}

.account-workspace-nav a:hover,
.account-workspace-nav a.is-active {
  color: var(--forest);
  border-bottom-color: var(--forest);
}

.account-workspace-nav .account-workspace-preview {
  margin-left: auto;
  color: var(--brown);
}

.account-workspace-nav .account-workspace-public {
  color: var(--brown);
}

.account-workspace-nav .account-workspace-publish {
  min-height: 40px;
  margin: 13px 0 13px 10px;
  flex: 0 0 auto;
}

.account-workspace-nav .account-workspace-unpublish {
  margin-left: 4px;
  color: #8a392d;
}

.account-workspace-shell {
  padding: 80px max(24px, calc((100vw - var(--container)) / 2)) 120px;
}

.account-overview-heading {
  margin-bottom: 52px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 50px;
}

.account-overview-heading h2,
.account-management-heading h2 {
  margin: 9px 0 15px;
  color: var(--forest);
  font-size: clamp(40px, 5vw, 66px);
  line-height: .96;
}

.account-overview-heading > div:first-child > p:last-child,
.account-management-heading > div:first-child > p:last-child {
  max-width: 670px;
  margin: 0;
  color: #637168;
  font-size: 16px;
}

.account-completion {
  width: 145px;
  height: 145px;
  display: grid;
  place-content: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background:
    radial-gradient(circle closest-side, var(--paper) 78%, transparent 79% 99%),
    conic-gradient(var(--forest) var(--completion), #dedbd1 0);
  color: var(--forest);
  text-align: center;
}

.account-completion strong,
.account-completion span {
  display: block;
  font-family: var(--display);
}

.account-completion strong {
  font-size: 29px;
  line-height: 1;
}

.account-completion span {
  margin-top: 5px;
  font-size: 9px;
  text-transform: uppercase;
}

.account-overview-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.account-module-card {
  min-height: 245px;
  padding: 28px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 22px;
  border: 1px solid rgba(35, 71, 55, .22);
  background: white;
  transition: transform .2s ease, border-color .2s ease;
}

.account-module-card:hover {
  border-color: var(--forest);
  transform: translateY(-3px);
}

.account-module-card.is-premium-locked {
  border-color: rgba(111, 76, 58, .35);
  background:
    linear-gradient(135deg, rgba(111, 76, 58, .06), transparent 58%),
    white;
}

.account-module-card.is-premium-locked:hover {
  border-color: var(--brown);
}

.account-module-card > span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: var(--forest);
  font: 700 10px/1 var(--display);
}

.account-module-card > .account-card-lock {
  position: relative;
  overflow: visible;
  background: var(--brown);
}

.account-card-lock::before {
  content: "";
  width: 16px;
  height: 14px;
  position: absolute;
  left: 13px;
  top: 9px;
  border: 3px solid white;
  border-bottom: 0;
  border-radius: 12px 12px 0 0;
}

.account-card-lock::after {
  content: "";
  width: 20px;
  height: 15px;
  position: absolute;
  left: 11px;
  top: 20px;
  border-radius: 3px;
  background: white;
}

.account-module-card > div > p {
  margin: 2px 0 12px;
  color: var(--moss);
  font: 700 9px/1 var(--display);
  letter-spacing: .09em;
  text-transform: uppercase;
}

.account-module-card h3 {
  margin: 0 0 12px;
  color: var(--forest);
  font-size: 30px;
  line-height: 1;
}

.account-module-card small {
  color: #6b766f;
  font-size: 13px;
}

.account-module-card > strong {
  grid-column: 2;
  align-self: end;
  color: var(--brown);
  font: 700 11px/1 var(--display);
  text-transform: uppercase;
}

.account-premium-preview {
  margin-top: 24px;
  padding: 52px;
  color: white;
  background: var(--forest);
}

.account-premium-preview-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
}

.account-premium-preview-heading > div {
  max-width: 720px;
}

.account-premium-preview-heading h2 {
  max-width: 620px;
  margin: 10px 0 16px;
  color: white;
  font-size: clamp(38px, 4vw, 58px);
  line-height: .98;
}

.account-premium-preview-heading p:last-child {
  margin: 0;
  color: rgba(255, 255, 255, .77);
  font-size: 15px;
  line-height: 1.65;
}

.account-premium-preview-heading .button {
  flex: 0 0 auto;
}

.account-premium-benefits {
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, .2);
  border-left: 1px solid rgba(255, 255, 255, .2);
}

.account-premium-benefits > a {
  min-height: 150px;
  padding: 28px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: 20px;
  border-right: 1px solid rgba(255, 255, 255, .2);
  border-bottom: 1px solid rgba(255, 255, 255, .2);
  color: white;
  transition: background .2s ease;
}

.account-premium-benefits > a:hover {
  background: rgba(255, 255, 255, .08);
}

.account-premium-lock {
  width: 32px;
  height: 27px;
  margin-top: 11px;
  position: relative;
  display: block;
  border-radius: 4px;
  background: var(--brown);
}

.account-premium-lock::before {
  content: "";
  width: 17px;
  height: 14px;
  position: absolute;
  left: 7.5px;
  top: -11px;
  border: 3px solid white;
  border-bottom: 0;
  border-radius: 12px 12px 0 0;
}

.account-premium-benefits h3 {
  margin: 0 0 8px;
  color: white;
  font-size: 22px;
  line-height: 1.1;
}

.account-premium-benefits p {
  margin: 0;
  color: rgba(255, 255, 255, .68);
  font-size: 13px;
  line-height: 1.55;
}

.account-autopublish-note {
  margin-top: 75px;
  padding: 52px;
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  gap: 60px;
  color: white;
  background: var(--brown);
}

.account-autopublish-note h2 {
  margin: 8px 0 0;
  font-size: clamp(34px, 4vw, 52px);
  line-height: .98;
}

.account-autopublish-note > p {
  margin: 0;
  align-self: center;
  color: rgba(255, 255, 255, .8);
  font-size: 17px;
}

.account-management-heading {
  margin-bottom: 45px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 45px;
}

.account-management-heading > span,
.account-management-heading > div:last-child > span {
  color: var(--moss);
  font: 700 11px/1 var(--display);
  text-transform: uppercase;
}

.account-management-heading > div:last-child {
  display: flex;
  align-items: center;
  gap: 20px;
}

.account-news-quota {
  margin-bottom: 42px;
  padding: 24px 28px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 24px;
  border: 1px solid rgba(35, 71, 55, .22);
  background: white;
}

.account-news-quota > div {
  min-width: 130px;
  padding-right: 24px;
  border-right: 1px solid rgba(35, 71, 55, .18);
}

.account-news-quota strong {
  display: block;
  color: var(--forest);
  font: 700 36px/1 var(--display);
}

.account-news-quota span {
  color: var(--moss);
  font: 700 9px/1.2 var(--display);
  text-transform: uppercase;
}

.account-news-quota p {
  margin: 0;
  color: #5d6962;
  font-size: 14px;
}

.account-news-quota.is-exhausted {
  border-color: rgba(138, 57, 45, .35);
  background: #f4e9e4;
}

.account-news-upgrade {
  margin-bottom: 50px;
  padding: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  color: white;
  background: var(--forest);
}

.account-news-upgrade h2 {
  margin: 8px 0 12px;
  font-size: 38px;
}

.account-news-upgrade p:last-child {
  max-width: 700px;
  margin: 0;
  color: rgba(255, 255, 255, .78);
}

.account-news-list {
  margin-top: 18px;
}

.account-newsletter-pill {
  padding: 5px 8px;
  border-radius: 999px;
  color: var(--forest);
  background: #e7e1b8;
  font: 700 8px/1 var(--display);
  letter-spacing: .05em;
  text-transform: uppercase;
}

.account-newsletter-note {
  background: var(--moss);
}

.account-form-status {
  margin: 22px 0 0;
  color: var(--moss);
  font-size: 13px;
}

.partner-newsletter-selector {
  display: grid;
  gap: 28px;
}

.partner-newsletter-date {
  padding: 24px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 35px;
  border: 1px solid rgba(35, 71, 55, .2);
  background: white;
}

.partner-newsletter-date label {
  color: var(--forest);
  font: 700 11px/1.3 var(--display);
}

.partner-newsletter-date input {
  margin-top: 9px;
}

.partner-newsletter-date p {
  max-width: 510px;
  margin: 0;
  color: #637168;
  font-size: 13px;
}

.partner-news-admin-list,
.partner-newsletter-history {
  display: grid;
  gap: 12px;
}

.partner-news-admin-list > article {
  padding: 22px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 30px;
  border: 1px solid rgba(35, 71, 55, .2);
  background: white;
}

.partner-news-admin-list > article > label {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: 18px;
  cursor: pointer;
}

.partner-news-admin-list > article > label > input {
  width: 20px;
  height: 20px;
  margin-top: 4px;
}

.partner-news-admin-list label > span {
  display: grid;
  gap: 6px;
}

.partner-news-admin-list small {
  color: var(--moss);
  font: 700 9px/1 var(--display);
  text-transform: uppercase;
}

.partner-news-admin-list strong {
  color: var(--forest);
  font: 700 22px/1.05 var(--display);
}

.partner-news-admin-list em {
  color: var(--brown);
  font: 700 11px/1 var(--display);
}

.partner-news-admin-list label span span {
  color: #657168;
  font-size: 13px;
}

.partner-news-admin-list article > div {
  display: grid;
  justify-items: end;
  gap: 13px;
}

.partner-news-admin-list article > div a,
.partner-news-admin-list .text-button {
  color: var(--forest);
  font: 700 10px/1 var(--display);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.partner-newsletter-history article {
  padding: 20px 22px;
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr) auto;
  align-items: center;
  gap: 26px;
  border: 1px solid rgba(35, 71, 55, .18);
  background: white;
}

.partner-newsletter-history article > div {
  display: flex;
  align-items: center;
  gap: 12px;
}

.partner-newsletter-history article > div:nth-child(2) {
  align-items: flex-start;
  flex-direction: column;
  gap: 4px;
}

.partner-newsletter-history article > div:nth-child(2) a {
  color: var(--forest);
  font: 700 16px/1.15 var(--display);
}

.partner-newsletter-history article > div:nth-child(2) span {
  color: #68746d;
  font-size: 12px;
}

.partner-newsletter-history article > div:last-child {
  align-items: flex-end;
  flex-direction: column;
}

.newsletter-issue-overview .admin-section-heading {
  align-items: center;
}

.newsletter-issue-overview .admin-section-heading > div > p:last-child,
.newsletter-editor .admin-section-heading > div > p:last-child {
  max-width: 720px;
  margin: 14px 0 0;
  color: #68766e;
  font-size: 14px;
  line-height: 1.55;
}

.newsletter-issue-list {
  display: grid;
  gap: 15px;
}

.newsletter-issue-list article {
  padding: 25px 28px;
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  border: 1px solid rgba(35, 71, 55, .2);
  background: white;
}

.newsletter-issue-list article > div:first-child,
.newsletter-issue-list article > div:last-child {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.newsletter-issue-list time {
  color: #68766e;
  font: 650 11px/1.2 var(--display);
}

.newsletter-issue-list h3 {
  margin: 0 0 7px;
  color: var(--forest);
  font-size: 24px;
  line-height: 1.08;
}

.newsletter-issue-list p {
  margin: 0;
  color: #536259;
  font-size: 14px;
}

.newsletter-issue-list small {
  display: block;
  margin-top: 8px;
  color: var(--moss);
  font: 700 9px/1.2 var(--display);
  text-transform: uppercase;
}

.newsletter-issue-list article > div:last-child {
  align-items: flex-end;
}

.newsletter-issue-list a {
  color: var(--forest);
  font: 700 11px/1.3 var(--display);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.newsletter-empty-state {
  padding: 36px;
  border-left: 5px solid var(--gold);
  background: #e9dec9;
}

.newsletter-empty-state strong {
  color: var(--forest);
  font: 700 24px/1.2 var(--display);
}

.newsletter-empty-state p {
  max-width: 780px;
  margin: 11px 0 0;
  color: #536259;
}

.newsletter-editor {
  padding-bottom: 50px;
}

.newsletter-editor-fields {
  padding: 34px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 25px;
  border: 1px solid rgba(35, 71, 55, .2);
  background: #ece7dc;
}

.newsletter-editor-fields label {
  color: var(--forest);
  font: 650 10px/1.3 var(--display);
  text-transform: uppercase;
}

.newsletter-editor-fields .is-wide {
  grid-column: 1 / -1;
}

.newsletter-editor-fields input,
.newsletter-editor-fields textarea {
  width: 100%;
  margin-top: 9px;
  padding: 14px;
  border: 1px solid rgba(35, 71, 55, .25);
  border-radius: 0;
  color: #263b31;
  background: white;
  font: 15px/1.5 var(--body);
}

.newsletter-choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.newsletter-choice-grid label,
.newsletter-itinerary-select label {
  position: relative;
  min-width: 0;
  display: grid;
  cursor: pointer;
  border: 1px solid rgba(35, 71, 55, .2);
  background: white;
}

.newsletter-choice-grid label {
  grid-template-columns: 155px minmax(0, 1fr);
}

.newsletter-choice-grid label > input,
.newsletter-itinerary-select label > input {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  width: 21px;
  height: 21px;
  accent-color: var(--forest);
}

.newsletter-choice-grid label:has(input:checked),
.newsletter-itinerary-select label:has(input:checked) {
  outline: 3px solid var(--gold);
  outline-offset: -3px;
}

.newsletter-choice-image,
.newsletter-choice-image img {
  min-height: 175px;
}

.newsletter-choice-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.newsletter-choice-grid label > span:last-child,
.newsletter-itinerary-select label > span {
  padding: 25px 48px 25px 23px;
}

.newsletter-choice-grid small,
.newsletter-itinerary-select small {
  display: block;
  margin-bottom: 10px;
  color: var(--moss);
  font: 700 9px/1.3 var(--display);
  text-transform: uppercase;
}

.newsletter-choice-grid strong,
.newsletter-itinerary-select strong {
  display: block;
  color: var(--forest);
  font: 700 20px/1.1 var(--display);
}

.newsletter-choice-grid em,
.newsletter-itinerary-select em {
  margin-top: 10px;
  display: -webkit-box;
  overflow: hidden;
  color: #68766e;
  font-size: 12px;
  font-style: normal;
  line-height: 1.45;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.newsletter-choice-grid.is-partner label {
  min-height: 160px;
  grid-template-columns: 1fr;
}

.newsletter-partner-search {
  margin-bottom: 38px;
  padding: 24px;
  border: 1px solid rgba(35, 71, 55, .2);
  background: #e9dec9;
}

.newsletter-partner-search > label {
  display: block;
  margin-bottom: 9px;
  color: var(--forest);
  font: 700 10px/1.3 var(--display);
  text-transform: uppercase;
}

.newsletter-partner-search > div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
}

.newsletter-partner-search input {
  width: 100%;
  min-height: 50px;
  padding: 0 15px;
  border: 1px solid rgba(35, 71, 55, .25);
  border-radius: 0;
  color: var(--forest);
  background: white;
}

.newsletter-partner-search span {
  color: #657168;
  font-size: 12px;
}

.newsletter-partner-options label:not(.is-visible) {
  display: none;
}

.newsletter-custom-simple {
  padding: 30px;
  border: 1px solid rgba(35, 71, 55, .18);
  background: #f1ebdf;
}

.newsletter-custom-button {
  padding-bottom: 28px;
  display: grid;
  grid-template-columns: minmax(220px, .8fr) repeat(2, minmax(0, 1fr));
  align-items: end;
  gap: 20px;
  border-bottom: 1px solid rgba(35, 71, 55, .16);
}

.newsletter-custom-button strong {
  display: block;
  margin-bottom: 7px;
  color: var(--forest);
  font: 700 17px/1.2 var(--display);
}

.newsletter-custom-button p {
  margin: 0;
  color: #68766e;
  font-size: 12px;
  line-height: 1.5;
}

.newsletter-custom-simple label {
  color: var(--forest);
  font: 650 10px/1.3 var(--display);
  text-transform: uppercase;
}

.newsletter-html-field {
  margin-top: 28px;
  display: block;
}

.newsletter-custom-simple input,
.newsletter-custom-simple textarea {
  width: 100%;
  margin-top: 8px;
  padding: 13px;
  border: 1px solid rgba(35, 71, 55, .25);
  border-radius: 0;
  color: #263b31;
  background: var(--paper);
  font: 14px/1.5 var(--body);
}

.newsletter-custom-simple textarea {
  min-height: 235px;
  resize: vertical;
  color: #23372d;
  background: white;
  font: 13px/1.55 ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  text-transform: none;
}

.newsletter-html-field small {
  margin-top: 9px;
  display: block;
  color: #68766e;
  font: 11px/1.5 var(--body);
  text-transform: none;
}

.newsletter-itinerary-select {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.newsletter-itinerary-select img {
  width: 100%;
  height: 190px;
  display: block;
  object-fit: cover;
}

.newsletter-itinerary-select label > span {
  padding: 24px 28px 28px;
}

.newsletter-itinerary-none {
  min-height: 100%;
  display: flex !important;
  align-items: center;
  border-style: dashed !important;
  background: #ece7dc !important;
}

.newsletter-editor-actions {
  position: sticky;
  z-index: 8;
  bottom: 0;
  margin-top: 75px;
  padding: 22px 26px;
  display: flex;
  align-items: center;
  gap: 15px;
  border: 1px solid rgba(35, 71, 55, .2);
  background: rgba(251, 248, 240, .96);
  box-shadow: 0 -10px 32px rgba(23, 51, 38, .08);
  backdrop-filter: blur(8px);
}

.newsletter-editor-actions > div {
  margin-right: auto;
}

.newsletter-editor-actions p {
  margin: 7px 0 0;
  color: #68766e;
  font-size: 11px;
}

.newsletter-test-panel {
  margin-top: 28px;
  padding: 30px;
  display: grid;
  grid-template-columns: minmax(260px, .75fr) minmax(360px, 1.25fr);
  align-items: end;
  gap: 42px;
  border: 1px solid rgba(35, 71, 55, .2);
  background: #e9dec9;
}

.newsletter-test-panel h2 {
  margin: 5px 0 8px;
  color: var(--forest);
  font: 700 28px/1.08 var(--display);
}

.newsletter-test-panel p {
  margin: 0;
  color: #5f6e65;
  font-size: 13px;
  line-height: 1.55;
}

.newsletter-test-panel form > label {
  display: block;
  margin-bottom: 9px;
  color: var(--forest);
  font: 650 10px/1.3 var(--display);
  text-transform: uppercase;
}

.newsletter-test-panel form > div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
}

.newsletter-test-panel input {
  width: 100%;
  min-height: 51px;
  padding: 0 15px;
  border: 1px solid rgba(35, 71, 55, .25);
  border-radius: 0;
  color: var(--forest);
  background: white;
}

.newsletter-publication-actions {
  padding: 0 max(24px, calc((100vw - var(--container)) / 2)) 110px;
}

.newsletter-schedule-card {
  width: 100%;
  padding: 32px;
  display: grid;
  grid-template-columns: minmax(270px, 1.25fr) minmax(190px, .65fr) minmax(250px, 1fr) auto;
  gap: 28px;
  align-items: end;
  border: 1px solid rgba(35, 71, 55, .2);
  background: #e9dec9;
}

.newsletter-schedule-card h2 {
  margin: 6px 0 10px;
  color: var(--forest);
  font-size: 30px;
}

.newsletter-schedule-card p {
  max-width: 560px;
  margin: 0;
  color: #59685f;
  font-size: 13px;
}

.newsletter-schedule-card > label:not(.newsletter-send-confirmation) {
  display: grid;
  gap: 8px;
  color: var(--forest);
  font: 650 10px/1.3 var(--display);
  text-transform: uppercase;
}

.newsletter-schedule-card input[type="datetime-local"] {
  width: 100%;
  min-height: 49px;
  padding: 10px 12px;
  border: 1px solid rgba(35, 71, 55, .28);
  border-radius: 0;
  color: var(--forest);
  background: white;
}

.newsletter-send-confirmation {
  display: grid;
  grid-template-columns: 17px 1fr;
  gap: 10px;
  align-items: start;
  color: #4f5e55;
  font: 11px/1.45 var(--body);
}

.newsletter-send-confirmation input {
  width: 16px;
  height: 16px;
  margin: 0;
  accent-color: var(--forest);
}

.newsletter-schedule-card .button:disabled {
  cursor: not-allowed;
  opacity: .45;
}

.newsletter-schedule-card.is-scheduled {
  grid-template-columns: minmax(300px, 1.2fr) 1fr minmax(260px, .9fr);
  align-items: center;
  background: #eef0e8;
}

.newsletter-schedule-card dl {
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(35, 71, 55, .18);
}

.newsletter-schedule-card dl div {
  padding: 15px 12px;
  border-right: 1px solid rgba(35, 71, 55, .18);
  text-align: center;
}

.newsletter-schedule-card dl div:last-child {
  border-right: 0;
}

.newsletter-schedule-card dt {
  color: #647168;
  font: 650 9px/1.2 var(--display);
  text-transform: uppercase;
}

.newsletter-schedule-card dd {
  margin: 6px 0 0;
  color: var(--forest);
  font: 700 24px/1 var(--display);
}

.newsletter-schedule-card.is-scheduled > form {
  display: grid;
  gap: 12px;
}

.newsletter-schedule-card.is-scheduled .text-button {
  width: max-content;
  color: #742b21;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.newsletter-schedule-card.is-sent {
  grid-template-columns: 1fr;
  background: #dcebdd;
}

@media (max-width: 900px) {
  .newsletter-issue-list article,
  .newsletter-choice-grid,
  .newsletter-itinerary-select {
    grid-template-columns: 1fr;
  }

  .newsletter-schedule-card,
  .newsletter-schedule-card.is-scheduled {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .newsletter-issue-list article > div:last-child {
    align-items: flex-start;
  }
}

@media (max-width: 700px) {
  .newsletter-issue-overview .admin-section-heading,
  .newsletter-editor-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .newsletter-editor-fields {
    padding: 24px;
    grid-template-columns: 1fr;
  }

  .newsletter-editor-fields .is-wide {
    grid-column: auto;
  }

  .newsletter-partner-search > div,
  .newsletter-custom-button {
    grid-template-columns: 1fr;
  }

  .newsletter-custom-simple {
    padding: 22px;
  }

  .newsletter-test-panel,
  .newsletter-test-panel form > div {
    grid-template-columns: 1fr;
  }

  .newsletter-choice-grid label {
    grid-template-columns: 115px minmax(0, 1fr);
  }

  .newsletter-choice-image,
  .newsletter-choice-image img {
    min-height: 150px;
  }

  .newsletter-editor-actions > div {
    margin-right: 0;
  }

  .newsletter-schedule-card {
    padding: 24px 20px;
  }

  .newsletter-schedule-card > .button {
    width: 100%;
  }

  .newsletter-schedule-card dl {
    grid-template-columns: repeat(2, 1fr);
  }

  .newsletter-schedule-card dl div:nth-child(2) {
    border-right: 0;
  }

  .newsletter-schedule-card dl div:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(35, 71, 55, .18);
  }
}

.account-media-uploader {
  margin-bottom: 55px;
  padding: 28px;
  display: grid;
  grid-template-columns: .8fr 1.2fr 1.3fr auto;
  align-items: end;
  gap: 18px;
  border: 1px solid rgba(35, 71, 55, .22);
  background: white;
}

.account-media-uploader label {
  color: var(--forest);
  font: 650 11px/1.3 var(--display);
}

.account-media-uploader input,
.account-media-uploader select {
  width: 100%;
  min-height: 48px;
  margin-top: 8px;
  padding: 10px 12px;
  border: 1px solid rgba(35, 71, 55, .3);
  border-radius: 0;
  background: var(--paper);
}

.account-media-uploader input[type="file"] {
  padding: 9px;
  font-size: 11px;
}

.account-media-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.account-media-grid article {
  border: 1px solid rgba(35, 71, 55, .2);
  background: white;
}

.account-media-image {
  aspect-ratio: 4 / 3;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #e7e1d5;
}

.account-media-image.is-logo {
  padding: 25px;
}

.account-media-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.account-media-image.is-logo img {
  object-fit: contain;
}

.account-media-grid article > div:last-child {
  padding: 20px;
}

.account-media-grid article span {
  color: var(--moss);
  font: 700 9px/1 var(--display);
  letter-spacing: .08em;
  text-transform: uppercase;
}

.account-media-grid article p {
  min-height: 44px;
  margin: 9px 0 14px;
  color: var(--forest);
  font-size: 14px;
}

.account-content-empty {
  text-align: center;
}

.account-content-empty p {
  max-width: 650px;
  margin: 0 auto 25px;
}

.account-content-list {
  display: grid;
  gap: 16px;
}

.account-content-list > article {
  min-height: 205px;
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr) 110px;
  border: 1px solid rgba(35, 71, 55, .2);
  background: white;
}

.account-content-thumb {
  min-height: 205px;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: #7b847e;
  background: #e8e2d7;
  font: 650 11px/1 var(--display);
  text-transform: uppercase;
}

.account-content-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.account-content-main {
  padding: 26px 30px;
}

.account-content-main > div {
  display: flex;
  align-items: center;
  gap: 13px;
}

.account-content-main > div > span:first-child {
  color: var(--moss);
  font: 700 9px/1 var(--display);
  letter-spacing: .07em;
  text-transform: uppercase;
}

.account-content-main h3 {
  margin: 15px 0 9px;
  color: var(--forest);
  font-size: 29px;
  line-height: 1;
}

.account-content-main p {
  margin: 0 0 12px;
  color: #5d6962;
  font-size: 14px;
  line-height: 1.45;
}

.account-content-main small {
  color: var(--brown);
  font: 700 12px/1 var(--display);
}

.account-content-actions {
  padding: 25px 22px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  gap: 18px;
  border-left: 1px solid rgba(35, 71, 55, .15);
}

.account-content-actions > a {
  color: var(--forest);
  font: 700 12px/1 var(--display);
  text-decoration: underline;
  text-underline-offset: 4px;
  text-align: center;
}

.account-content-actions .text-button {
  width: 100%;
}

.account-form-shell {
  display: grid;
  place-items: start center;
}

.account-content-form {
  width: min(100%, 920px);
  padding-top: 45px;
}

.account-publication-confirm {
  min-height: 570px;
  padding: 85px max(24px, calc((100vw - 900px) / 2)) 110px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.account-publication-icon {
  width: 66px;
  height: 66px;
  margin-bottom: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: var(--forest);
  font: 700 27px/1 var(--display);
}

.account-publication-confirm h2 {
  max-width: 850px;
  margin: 12px auto 22px;
  color: var(--forest);
  font-size: clamp(40px, 5vw, 66px);
  line-height: .98;
}

.account-publication-confirm > p:not(.eyebrow) {
  max-width: 710px;
  margin: 0 auto 38px;
  color: #5f6d65;
  font-size: 18px;
}

.account-publication-confirm > div:last-child {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.account-publication-confirm form {
  margin: 0;
}

.account-cancel-button {
  border-color: rgba(35, 71, 55, .3);
}

.account-unpublish-button {
  color: white;
  background: #8a392d;
}

.admin-hero h1 {
  max-width: 850px;
}

.admin-hero form {
  display: flex;
  align-items: center;
  gap: 24px;
}

.admin-hero-link {
  color: white;
  font: 650 12px/1.3 var(--display);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.admin-section + .admin-section {
  margin-top: 100px;
}

.admin-section-heading > span {
  min-width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: var(--forest);
  font: 700 18px/1 var(--display);
}

.admin-list {
  display: grid;
  gap: 18px;
}

.admin-card {
  padding: 30px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 35px;
  border: 1px solid rgba(35, 71, 55, .2);
  background: white;
}

.admin-card.is-priority {
  border-left: 5px solid var(--brown);
}

.admin-card-main > span {
  color: var(--moss);
  font: 700 10px/1.2 var(--display);
  letter-spacing: .08em;
  text-transform: uppercase;
}

.admin-card h3 {
  margin: 12px 0 8px;
  color: var(--forest);
  font-size: 30px;
}

.admin-card-main > p {
  margin-bottom: 22px;
}

.admin-card dl {
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.admin-card dl > div {
  min-width: 0;
}

.admin-card dt {
  margin-bottom: 5px;
  color: var(--moss);
  font: 700 9px/1.2 var(--display);
  text-transform: uppercase;
}

.admin-card dd {
  margin: 0;
  overflow-wrap: anywhere;
  font-size: 14px;
}

.admin-card dd a {
  color: var(--forest);
  text-decoration: underline;
}

.admin-card-actions {
  min-width: 190px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  gap: 14px;
}

.admin-card-actions form,
.admin-card-actions .button {
  width: 100%;
}

.admin-card-actions .text-button {
  width: 100%;
}

.admin-contact-search {
  max-width: 760px;
  margin-bottom: 45px;
}

.admin-contact-search label {
  display: block;
  margin-bottom: 10px;
  color: var(--forest);
  font: 650 12px/1.3 var(--display);
}

.admin-contact-search > div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
}

.admin-contact-search input {
  min-width: 0;
  padding: 14px 16px;
  border: 1px solid rgba(35, 71, 55, .3);
  border-right: 0;
  border-radius: 0;
  font: 16px/1.4 var(--body);
}

.admin-contact-list {
  display: grid;
  gap: 18px;
}

.admin-contact-card {
  padding: 32px;
  border: 1px solid rgba(35, 71, 55, .2);
  background: white;
}

.admin-contact-card.is-blocked {
  border-color: rgba(116, 43, 33, .35);
  background: #fff8f6;
}

.admin-contact-heading {
  margin-bottom: 28px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 25px;
}

.admin-contact-heading h2 {
  margin: 7px 0 6px;
  color: var(--forest);
  font-size: 30px;
}

.admin-contact-heading h2 a {
  color: inherit;
}

.admin-contact-heading p {
  margin-bottom: 0;
}

.admin-contact-card dl {
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px 30px;
}

.admin-contact-card dt {
  margin-bottom: 6px;
  color: var(--moss);
  font: 700 9px/1.2 var(--display);
  letter-spacing: .05em;
  text-transform: uppercase;
}

.admin-contact-card dd {
  margin: 0;
  overflow-wrap: anywhere;
  font-size: 14px;
}

.admin-contact-card dd a {
  color: var(--forest);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.admin-contact-notes {
  margin: 25px 0 0;
  padding-top: 20px;
  border-top: 1px solid rgba(35, 71, 55, .14);
  font-size: 14px;
}

.admin-subnav {
  overflow-x: auto;
  color: white;
  background: var(--brown);
}

.admin-subnav > div {
  width: min(100%, var(--container));
  margin: 0 auto;
  padding-inline: 24px;
  display: flex;
}

.admin-subnav a {
  min-height: 62px;
  padding: 0 24px;
  display: flex;
  align-items: center;
  border-bottom: 4px solid transparent;
  color: rgba(255, 255, 255, .72);
  font: 650 12px/1.2 var(--display);
  white-space: nowrap;
}

.admin-subnav a:hover,
.admin-subnav a.is-active {
  border-bottom-color: white;
  color: white;
}

.admin-hero-actions {
  display: flex;
  align-items: center;
  gap: 25px;
}

.admin-metric-grid,
.admin-entry-summary {
  margin-bottom: 45px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border: 1px solid rgba(35, 71, 55, .2);
  background: white;
}

.admin-metric-grid article,
.admin-entry-summary article {
  min-height: 115px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid rgba(35, 71, 55, .15);
}

.admin-metric-grid article:last-child,
.admin-entry-summary article:last-child {
  border-right: 0;
}

.admin-metric-grid strong,
.admin-entry-summary strong {
  color: var(--forest);
  font: 700 31px/1 var(--display);
}

.admin-metric-grid span,
.admin-entry-summary span {
  margin-top: 8px;
  color: #68766e;
  font: 650 10px/1.2 var(--display);
  text-transform: uppercase;
}

.admin-directory-filters {
  margin-bottom: 45px;
  padding: 28px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  border: 1px solid rgba(35, 71, 55, .18);
  background: #ece7dc;
}

.admin-directory-filters label,
.admin-entry-form label,
.admin-entry-sidebar label,
.admin-user-search label,
.admin-audit-filters label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: var(--forest);
  font: 650 11px/1.3 var(--display);
}

.admin-directory-filters input,
.admin-directory-filters select,
.admin-entry-form input,
.admin-entry-form select,
.admin-entry-form textarea,
.admin-entry-sidebar input,
.admin-entry-sidebar select,
.admin-user-search input,
.admin-user-search select,
.admin-audit-filters input,
.admin-audit-filters select {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  border: 1px solid rgba(35, 71, 55, .28);
  border-radius: 0;
  color: var(--ink);
  background: white;
  font: 15px/1.4 var(--body);
}

.admin-entry-form textarea {
  min-height: 0;
  resize: vertical;
}

.admin-filter-search {
  grid-column: span 2;
}

.admin-filter-actions {
  display: flex;
  align-items: flex-end;
  gap: 18px;
}

.admin-filter-actions a {
  margin-bottom: 17px;
  color: var(--forest);
  font: 650 11px/1 var(--display);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.admin-catalog-heading {
  margin-bottom: 17px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: #68766e;
  font-size: 13px;
}

.admin-catalog-heading p {
  margin: 0;
}

.admin-entry-table {
  border: 1px solid rgba(35, 71, 55, .2);
  background: white;
}

.admin-entry-table-head,
.admin-entry-table > article {
  display: grid;
  grid-template-columns: minmax(260px, 2.1fr) minmax(135px, .8fr) minmax(110px, .65fr) minmax(165px, 1fr) auto;
  gap: 25px;
  align-items: center;
}

.admin-entry-table-head {
  min-height: 48px;
  padding: 0 24px;
  color: white;
  background: var(--forest);
  font: 650 9px/1.2 var(--display);
  letter-spacing: .06em;
  text-transform: uppercase;
}

.admin-entry-table > article {
  min-height: 128px;
  padding: 24px;
  border-bottom: 1px solid rgba(35, 71, 55, .14);
}

.admin-entry-table > article:last-child {
  border-bottom: 0;
}

.admin-entry-table article > div:first-child strong,
.admin-entry-table article > div:first-child span,
.admin-entry-table article > div:first-child small,
.admin-entry-content-counts span,
.admin-entry-content-counts small {
  display: block;
}

.admin-entry-table article > div:first-child strong {
  margin-bottom: 6px;
  color: var(--forest);
  font: 650 18px/1.15 var(--display);
}

.admin-entry-table article > div:first-child span,
.admin-entry-content-counts span {
  color: #4f5e55;
  font-size: 13px;
}

.admin-entry-table article > div:first-child small,
.admin-entry-content-counts small {
  margin-top: 5px;
  color: #7b847e;
  font-size: 11px;
}

.admin-entry-statuses small {
  display: block;
  margin-top: 8px;
  color: #68766e;
  font-size: 11px;
}

.status-pill.is-published {
  color: #235333;
  background: #dcebdd;
}

.status-pill.is-suspended {
  color: #742b21;
  background: #f5d9d3;
}

.status-pill.is-draft {
  color: #46544c;
  background: #e9ecea;
}

.admin-table-action {
  color: var(--forest);
  font: 700 11px/1.2 var(--display);
  text-decoration: underline;
  text-underline-offset: 4px;
  white-space: nowrap;
}

.admin-pagination {
  margin-top: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  color: #68766e;
  font: 650 11px/1.2 var(--display);
}

.admin-pagination a {
  color: var(--forest);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.admin-entry-edit-shell > .form-errors {
  margin-bottom: 40px;
}

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

.admin-entry-columns {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(330px, .55fr);
  gap: 45px;
  align-items: start;
}

.admin-entry-form {
  display: grid;
  gap: 24px;
}

.admin-entry-form > section,
.admin-entry-sidebar > section {
  padding: 34px;
  border: 1px solid rgba(35, 71, 55, .2);
  background: white;
}

.admin-entry-form h2,
.admin-entry-sidebar h2,
.admin-user-list h2,
.admin-audit-list h2 {
  margin: 9px 0 26px;
  color: var(--forest);
  font-size: 31px;
  line-height: 1;
}

.admin-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.admin-form-grid .is-wide {
  grid-column: 1 / -1;
}

.admin-route-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 11px;
}

.admin-route-options label {
  padding: 15px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  border: 1px solid rgba(35, 71, 55, .2);
  cursor: pointer;
}

.admin-route-options input {
  width: auto;
  min-height: 0;
  margin: 0;
  accent-color: var(--forest);
}

.admin-entry-form > section > label {
  margin-top: 20px;
}

.admin-entry-sidebar {
  display: grid;
  gap: 24px;
}

.admin-manager-list {
  margin-bottom: 28px;
  border-top: 1px solid rgba(35, 71, 55, .15);
}

.admin-manager-list article {
  padding: 17px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  border-bottom: 1px solid rgba(35, 71, 55, .15);
}

.admin-manager-list strong,
.admin-manager-list span,
.admin-manager-list small {
  display: block;
}

.admin-manager-list strong {
  color: var(--forest);
  font: 650 13px/1.3 var(--display);
}

.admin-manager-list span,
.admin-manager-list small {
  margin-top: 4px;
  color: #68766e;
  font-size: 11px;
}

.admin-manager-add,
.admin-duplicate-panel form {
  display: grid;
  gap: 16px;
}

.admin-manager-add .button {
  justify-self: start;
}

.admin-duplicate-panel {
  border-color: rgba(116, 43, 33, .28) !important;
  background: #fff8f6 !important;
}

.admin-duplicate-panel > p:not(.eyebrow) {
  font-size: 14px;
}

.admin-duplicate-panel ul {
  margin: 9px 0 23px;
  padding: 0;
  list-style: none;
}

.admin-duplicate-panel li + li {
  margin-top: 5px;
}

.admin-duplicate-panel li button {
  padding: 0;
  border: 0;
  color: var(--forest);
  background: transparent;
  cursor: pointer;
  font: 12px/1.35 var(--body);
  text-decoration: underline;
  text-align: left;
}

.admin-danger-button {
  color: white;
  background: #742b21;
}

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

.admin-user-search,
.admin-audit-filters {
  margin-bottom: 40px;
  padding: 25px;
  display: grid;
  grid-template-columns: minmax(280px, 1fr) 220px auto;
  gap: 18px;
  align-items: end;
  border: 1px solid rgba(35, 71, 55, .18);
  background: #ece7dc;
}

.admin-user-list,
.admin-audit-list {
  display: grid;
  gap: 16px;
}

.admin-user-list > article {
  padding: 30px;
  display: grid;
  grid-template-columns: minmax(240px, .8fr) minmax(0, 1.4fr) auto;
  gap: 30px;
  align-items: center;
  border: 1px solid rgba(35, 71, 55, .2);
  background: white;
}

.admin-user-list > article.is-suspended {
  border-left: 5px solid #742b21;
  background: #fff8f6;
}

.admin-user-list h2 {
  margin-bottom: 8px;
  font-size: 25px;
}

.admin-user-list a {
  color: var(--forest);
  font-size: 13px;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.admin-user-list dl {
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.admin-user-list dt {
  margin-bottom: 5px;
  color: var(--moss);
  font: 700 9px/1.2 var(--display);
  text-transform: uppercase;
}

.admin-user-list dd {
  margin: 0;
  font-size: 13px;
}

.admin-user-entries {
  grid-column: 1 / -1;
  margin: -10px 0 0;
  color: #68766e;
  font-size: 12px;
}

.admin-audit-list article {
  padding: 25px 30px;
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr) 220px;
  gap: 30px;
  align-items: start;
  border: 1px solid rgba(35, 71, 55, .18);
  background: white;
}

.admin-audit-list time,
.admin-audit-list > article > span {
  color: #68766e;
  font-size: 12px;
}

.admin-audit-list h2 {
  margin-bottom: 7px;
  font-size: 25px;
}

.admin-audit-list p {
  margin: 0;
}

.admin-audit-list p a {
  color: var(--forest);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.admin-audit-list details {
  margin-top: 16px;
}

.admin-audit-list summary {
  color: var(--forest);
  cursor: pointer;
  font: 650 11px/1.3 var(--display);
}

.admin-audit-list pre {
  max-width: 100%;
  margin: 12px 0 0;
  padding: 14px;
  overflow-x: auto;
  color: #e7ede9;
  background: #203d30;
  font-size: 11px;
  white-space: pre-wrap;
}

.account-security-shell {
  padding: 85px max(24px, calc((100vw - var(--container)) / 2)) 120px;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(300px, .6fr);
  gap: 70px;
  align-items: start;
}

.account-security-main {
  display: grid;
  gap: 58px;
}

.account-security-main > section {
  padding-bottom: 58px;
  border-bottom: 1px solid rgba(35, 71, 55, .18);
}

.account-security-main h2,
.account-danger-zone h2,
.account-delete-summary h2 {
  margin: 10px 0 16px;
  color: var(--forest);
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1;
}

.account-security-main > section > p:not(.eyebrow) {
  max-width: 680px;
}

.account-security-form {
  max-width: 700px;
  margin-top: 32px;
  display: grid;
  gap: 22px;
}

.account-security-form label,
.account-delete-form > label {
  color: var(--forest);
  font: 650 12px/1.35 var(--display);
}

.account-security-form input,
.account-delete-form > label input {
  width: 100%;
  margin-top: 9px;
  padding: 14px;
  border: 1px solid rgba(35, 71, 55, .3);
  border-radius: 0;
  background: white;
}

.account-security-form .button {
  justify-self: start;
}

.account-danger-zone {
  position: sticky;
  top: 95px;
  padding: 34px;
  border: 1px solid rgba(116, 43, 33, .3);
  background: #fff8f6;
}

.account-danger-zone h2 {
  font-size: 35px;
}

.account-danger-zone p:not(.eyebrow) {
  font-size: 15px;
}

.account-danger-zone small {
  color: #6e2418;
}

.account-danger-zone a {
  display: inline-block;
  margin-top: 14px;
  color: #742b21;
  font: 700 12px/1.3 var(--display);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.account-delete-shell {
  padding: 85px max(24px, calc((100vw - var(--container)) / 2)) 120px;
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(460px, 1.15fr);
  gap: 70px;
  align-items: start;
}

.account-delete-shell > .form-errors {
  grid-column: 1 / -1;
  margin: 0;
}

.account-delete-summary ul {
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(35, 71, 55, .18);
}

.account-delete-summary li {
  padding: 18px 0;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid rgba(35, 71, 55, .18);
  color: var(--forest);
  font: 650 15px/1.35 var(--display);
}

.account-delete-summary li span {
  color: #68766e;
  font: 13px/1.35 var(--body);
  text-align: right;
}

.account-delete-form {
  padding: 38px;
  display: grid;
  gap: 28px;
  border: 1px solid rgba(35, 71, 55, .22);
  background: white;
}

.account-delete-form fieldset {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
  border: 0;
}

.account-delete-form legend {
  margin-bottom: 13px;
  color: var(--forest);
  font: 700 15px/1.3 var(--display);
}

.account-delete-form fieldset label {
  padding: 18px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 13px;
  border: 1px solid rgba(35, 71, 55, .2);
  cursor: pointer;
}

.account-delete-form fieldset input {
  margin-top: 4px;
  accent-color: var(--forest);
}

.account-delete-form fieldset span {
  color: #68766e;
  font-size: 14px;
}

.account-delete-form fieldset strong {
  display: block;
  margin-bottom: 5px;
  color: var(--forest);
  font: 650 14px/1.3 var(--display);
}

.account-delete-actions {
  margin-top: 8px;
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}

.account-delete-button {
  color: white;
  background: #742b21;
}

.account-delete-button:hover {
  background: #5e2119;
}

.account-deletion-result {
  min-height: calc(100vh - 112px);
  padding: 120px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  background: var(--forest);
  text-align: center;
}

.account-deletion-result h1 {
  max-width: 900px;
  margin: 14px 0 25px;
  font-size: clamp(52px, 7vw, 92px);
  line-height: .94;
}

.account-deletion-result > p:not(.eyebrow) {
  max-width: 680px;
  margin-bottom: 34px;
  font-size: 18px;
}

.account-deletion-result > div {
  display: flex;
  align-items: center;
  gap: 25px;
}

.account-deletion-result .text-link {
  color: white;
  font: 650 12px/1.3 var(--display);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.directory-heading > div {
  display: flex;
  align-items: center;
  gap: 22px;
}

.membership-hero {
  min-height: 600px;
  padding: 130px max(24px, calc((100vw - var(--container)) / 2)) 85px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 270px;
  align-items: end;
  gap: 70px;
  color: white;
  background: var(--forest);
}

.membership-hero h1 {
  max-width: 950px;
  margin: 14px 0 28px;
  font-size: clamp(64px, 8vw, 118px);
  line-height: .86;
}

.membership-hero > div > p:last-child {
  max-width: 780px;
  margin: 0;
  font-size: 20px;
  line-height: 1.55;
}

.membership-hero aside {
  min-height: 240px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid rgba(255, 255, 255, .35);
  background: rgba(255, 255, 255, .05);
}

.membership-hero aside strong {
  font: 700 64px/.9 var(--display);
}

.membership-hero aside span,
.membership-hero aside small {
  margin-top: 9px;
  font-family: var(--display);
}

.membership-hero aside span {
  font-weight: 650;
}

.membership-hero aside small {
  color: rgba(255, 255, 255, .7);
  font-size: 11px;
}

.membership-plan-choices {
  padding: 95px max(24px, calc((100vw - var(--container)) / 2)) 105px;
  background: #f0eadf;
}

.membership-plan-choices-heading {
  max-width: 900px;
  margin-bottom: 52px;
}

.membership-plan-choices-heading h2 {
  margin: 10px 0 22px;
  color: var(--forest);
  font-size: clamp(44px, 5.5vw, 72px);
  line-height: .95;
}

.membership-plan-choices-heading > p:last-child {
  max-width: 760px;
  color: #5d6d64;
  font-size: 18px;
}

.membership-plan-choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.membership-plan-choice-grid article {
  min-height: 540px;
  padding: 45px;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  border: 1px solid rgba(35, 71, 55, .25);
  background: #f9f6ef;
}

.membership-plan-choice-grid article.is-featured {
  color: white;
  border-color: var(--forest);
  background: var(--forest);
}

.membership-plan-choice-grid article > strong {
  margin-top: 34px;
  color: var(--forest);
  font: 700 clamp(54px, 6vw, 82px)/.9 var(--display);
}

.membership-plan-choice-grid article.is-featured > strong {
  color: white;
}

.membership-plan-choice-grid article > span {
  margin-top: 10px;
  color: #68766e;
  font: 650 12px/1.3 var(--display);
}

.membership-plan-choice-grid article.is-featured > span {
  color: rgba(255, 255, 255, .68);
}

.membership-plan-choice-grid ul {
  width: 100%;
  margin: 35px 0 38px;
  padding: 28px 0 0 20px;
  border-top: 1px solid rgba(35, 71, 55, .2);
}

.membership-plan-choice-grid article.is-featured ul {
  border-top-color: rgba(255, 255, 255, .25);
}

.membership-plan-choice-grid li {
  margin-bottom: 13px;
  line-height: 1.45;
}

.membership-plan-choice-grid .button {
  margin-top: auto;
}

.membership-plan-choices > aside {
  margin-top: 22px;
  padding: 24px 28px;
  display: grid;
  grid-template-columns: minmax(210px, .35fr) minmax(0, 1fr);
  gap: 35px;
  border-left: 4px solid var(--brown);
  background: #e4dccd;
}

.membership-plan-choices > aside strong {
  color: var(--forest);
  font: 700 16px/1.3 var(--display);
}

.membership-plan-choices > aside p {
  margin: 0;
  color: #5d6d64;
  font-size: 14px;
}

.membership-shell {
  padding: 100px max(24px, calc((100vw - var(--container)) / 2)) 125px;
}

.membership-intro {
  max-width: 820px;
  margin-bottom: 60px;
}

.membership-intro h2,
.membership-cta h2,
.membership-upgrade-layout h2 {
  margin: 10px 0 22px;
  color: var(--forest);
  font-size: clamp(42px, 5.5vw, 72px);
  line-height: .94;
}

.membership-intro > p:last-child,
.membership-cta > div > p:last-child,
.membership-upgrade-layout > div > p {
  color: #627067;
  font-size: 17px;
  line-height: 1.65;
}

.membership-intro .membership-offer-note {
  margin-top: 24px;
  padding: 18px 20px;
  border-left: 4px solid var(--brown);
  background: #e9e2d5;
  color: var(--forest);
  font-size: 14px;
}

.membership-benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(35, 71, 55, .25);
  border-left: 1px solid rgba(35, 71, 55, .25);
}

.membership-benefit-grid article {
  position: relative;
  min-height: 275px;
  padding: 28px;
  border-right: 1px solid rgba(35, 71, 55, .25);
  border-bottom: 1px solid rgba(35, 71, 55, .25);
}

.membership-benefit-grid article > span {
  color: var(--brown);
  font: 700 10px/1 var(--display);
}

.membership-benefit-grid article > small {
  position: absolute;
  top: 23px;
  right: 24px;
  padding: 5px 7px 4px;
  color: rgba(85, 59, 44, .72);
  border: 1px solid rgba(85, 59, 44, .2);
  border-radius: 2px;
  font: 700 8px/1 var(--display);
  letter-spacing: .08em;
  text-transform: uppercase;
}

.membership-benefit-grid h3 {
  margin: 55px 0 15px;
  color: var(--forest);
  font-size: 26px;
  line-height: 1;
}

.membership-benefit-grid p {
  margin: 0;
  color: #637168;
  font-size: 14px;
  line-height: 1.55;
}

.membership-conditions {
  margin-top: 70px;
  padding: 55px;
  display: grid;
  grid-template-columns: .8fr 1fr .9fr;
  gap: 55px;
  color: white;
  background: var(--brown);
}

.membership-conditions h2 {
  margin: 10px 0 0;
  font-size: 42px;
  line-height: .95;
}

.membership-conditions ul {
  margin: 0;
  padding-left: 20px;
}

.membership-conditions li {
  margin-bottom: 13px;
}

.membership-conditions > p {
  margin: 0;
  color: rgba(255, 255, 255, .72);
  font-size: 14px;
  line-height: 1.65;
}

.membership-cta {
  margin-top: 90px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 50px;
}

.membership-cta > div:first-child {
  max-width: 750px;
}

.membership-cta > div:last-child {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.membership-cta > div:last-child > a:last-child {
  color: var(--forest);
  font: 650 12px/1.3 var(--display);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.membership-current-badge {
  padding: 12px 17px;
  color: white;
  background: var(--forest);
  font: 700 10px/1 var(--display);
  text-transform: uppercase;
}

.membership-current-badge.is-expired {
  background: #8a392d;
}

.membership-renewal-card {
  margin: -15px 0 55px;
  padding: 38px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 45px;
  color: white;
  background: var(--brown);
}

.membership-renewal-card h2 {
  margin: 9px 0 14px;
  font-size: clamp(34px, 4vw, 52px);
  line-height: .95;
}

.membership-renewal-card p:last-child {
  max-width: 770px;
  margin: 0;
  color: rgba(255, 255, 255, .76);
}

.membership-renewal-card form {
  margin: 0;
}

.membership-renewal-card button {
  border: 0;
  cursor: pointer;
  white-space: nowrap;
}

.membership-delivery-list {
  border-top: 1px solid rgba(35, 71, 55, .2);
}

.membership-delivery-list article {
  min-height: 120px;
  padding: 25px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border-bottom: 1px solid rgba(35, 71, 55, .2);
}

.membership-delivery-list article > div {
  display: flex;
  align-items: center;
  gap: 24px;
}

.membership-delivery-list article > div > span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: var(--forest);
  font: 700 10px/1 var(--display);
}

.membership-delivery-list h3 {
  margin: 0 0 7px;
  color: var(--forest);
  font-size: 25px;
}

.membership-delivery-list p,
.membership-delivery-list small {
  margin: 0;
  color: #647168;
}

.membership-analytics {
  margin-top: 95px;
  padding-top: 75px;
  border-top: 1px solid rgba(35, 71, 55, .2);
}

.membership-analytics .account-overview-heading {
  margin-bottom: 42px;
}

.membership-analytics-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(35, 71, 55, .2);
  border-left: 1px solid rgba(35, 71, 55, .2);
  background: white;
}

.membership-analytics-grid article {
  min-height: 145px;
  padding: 25px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid rgba(35, 71, 55, .2);
  border-bottom: 1px solid rgba(35, 71, 55, .2);
}

.membership-analytics-grid strong {
  color: var(--forest);
  font: 700 42px/1 var(--display);
}

.membership-analytics-grid span {
  margin-top: 10px;
  color: #68766e;
  font: 650 10px/1.25 var(--display);
  text-transform: uppercase;
}

.membership-analytics-breakdown {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.membership-analytics-breakdown article {
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  border: 1px solid rgba(35, 71, 55, .18);
}

.membership-analytics-breakdown span {
  color: #68766e;
  font: 650 10px/1.2 var(--display);
  text-transform: uppercase;
}

.membership-analytics-breakdown strong {
  color: var(--forest);
  font: 700 24px/1 var(--display);
}

.membership-analytics-months {
  margin-top: 35px;
  border: 1px solid rgba(35, 71, 55, .18);
  background: white;
}

.membership-analytics-months > div {
  min-height: 54px;
  padding: 0 20px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 110px 110px;
  align-items: center;
  gap: 20px;
  border-bottom: 1px solid rgba(35, 71, 55, .13);
}

.membership-analytics-months > div:first-child {
  color: white;
  background: var(--forest);
  font: 650 10px/1 var(--display);
  text-transform: uppercase;
}

.membership-analytics-months > div:last-child {
  border-bottom: 0;
}

.membership-analytics-months span,
.membership-analytics-months a {
  color: #53645a;
  font-size: 13px;
}

.membership-analytics-months a {
  color: var(--forest);
  font-family: var(--display);
  font-weight: 650;
}

.membership-analytics-empty {
  margin: 35px 0 0;
  padding: 25px;
  border: 1px solid rgba(35, 71, 55, .18);
  color: #68766e;
  background: white;
}

.membership-payment-history {
  margin-top: 75px;
  padding-top: 65px;
  border-top: 1px solid rgba(35, 71, 55, .2);
}

.membership-payment-history h2 {
  margin: 9px 0 25px;
  color: var(--forest);
  font-size: 42px;
  line-height: 1;
}

.membership-payment-history .membership-analytics-months > div {
  grid-template-columns: 130px minmax(260px, 1fr) 100px;
}

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

.membership-notification-list {
  display: grid;
  gap: 12px;
}

.membership-notification-list > article {
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border: 1px solid rgba(35, 71, 55, .18);
  background: white;
}

.membership-notification-list article > div:first-child > span {
  color: #8a392d;
  font: 700 9px/1 var(--display);
  letter-spacing: .06em;
  text-transform: uppercase;
}

.membership-notification-list h3 {
  margin: 7px 0;
  color: var(--forest);
  font-size: 25px;
}

.membership-notification-list p {
  margin: 0;
  color: #68766e;
  font-size: 13px;
}

.membership-notification-list article > div:last-child {
  display: flex;
  align-items: center;
  gap: 20px;
}

.membership-notification-list a {
  color: var(--forest);
  font: 650 11px/1.2 var(--display);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.membership-notification-list form {
  margin: 0;
}

.membership-upgrade-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(340px, .8fr);
  gap: 65px;
  align-items: start;
}

.membership-upgrade-layout ul {
  margin: 28px 0;
  padding-left: 20px;
  color: var(--forest);
}

.membership-upgrade-layout li {
  margin-bottom: 11px;
}

.membership-upgrade-layout > div > a {
  color: var(--forest);
  font: 650 12px/1.3 var(--display);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.membership-upgrade-layout aside {
  padding: 36px;
  border: 1px solid rgba(35, 71, 55, .22);
  background: white;
}

.membership-upgrade-layout aside h3 {
  margin: 10px 0 18px;
  color: var(--forest);
  font-size: 32px;
  line-height: 1;
}

.membership-upgrade-layout form,
.membership-upgrade-layout label {
  display: flex;
  flex-direction: column;
}

.membership-upgrade-layout form {
  gap: 20px;
}

.membership-upgrade-layout label {
  gap: 8px;
  color: var(--forest);
  font: 650 11px/1.3 var(--display);
}

.membership-upgrade-layout textarea {
  width: 100%;
  padding: 14px;
  resize: vertical;
  border: 1px solid rgba(35, 71, 55, .28);
  border-radius: 0;
  font: 14px/1.5 var(--serif);
}

.membership-upgrade-layout button {
  border: 0;
  cursor: pointer;
}

.membership-admin-groups {
  display: grid;
  gap: 22px;
}

.membership-admin-groups > article {
  border: 1px solid rgba(35, 71, 55, .2);
  background: white;
}

.membership-admin-groups header {
  padding: 25px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: white;
  background: var(--forest);
}

.membership-admin-groups header span {
  font: 700 9px/1 var(--display);
  letter-spacing: .08em;
  text-transform: uppercase;
}

.membership-admin-groups header h3 {
  margin: 7px 0 0;
  font-size: 28px;
}

.membership-admin-groups header a {
  color: white;
  font: 650 11px/1 var(--display);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.membership-admin-groups form {
  padding: 20px 28px;
  display: grid;
  grid-template-columns: minmax(180px, 1.1fr) minmax(130px, .6fr) minmax(145px, .6fr) minmax(220px, 1.2fr) auto;
  align-items: end;
  gap: 16px;
  border-bottom: 1px solid rgba(35, 71, 55, .15);
}

.membership-admin-groups form:last-child {
  border-bottom: 0;
}

.membership-admin-groups form > strong {
  align-self: center;
  color: var(--forest);
  font: 650 13px/1.3 var(--display);
}

.membership-admin-groups label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: var(--forest);
  font: 650 9px/1 var(--display);
  text-transform: uppercase;
}

.membership-admin-groups input,
.membership-admin-groups select {
  width: 100%;
  min-height: 42px;
  padding: 0 11px;
  border: 1px solid rgba(35, 71, 55, .25);
  border-radius: 0;
  background: white;
  font: 13px/1 var(--display);
}

.membership-admin-groups button {
  min-height: 42px;
  cursor: pointer;
}

@media (max-width: 900px) {
  .membership-plan-choices > aside {
    grid-template-columns: 1fr;
    gap: 10px;
  }

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

  .membership-conditions,
  .membership-upgrade-layout,
  .membership-renewal-card {
    grid-template-columns: 1fr;
  }

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

  .membership-analytics-grid,
  .membership-admin-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .membership-analytics-breakdown {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .membership-admin-groups form > strong,
  .membership-admin-groups form .is-wide {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  .directory-heading > div,
  .membership-cta,
  .membership-delivery-list article,
  .membership-admin-groups header,
  .membership-notification-list > article,
  .membership-notification-list article > div:last-child {
    align-items: flex-start;
    flex-direction: column;
  }

  .membership-hero {
    min-height: 650px;
    padding-top: 105px;
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .membership-hero aside {
    width: 100%;
    min-height: 180px;
  }

  .membership-plan-choices {
    padding: 70px 18px 80px;
  }

  .membership-plan-choice-grid {
    grid-template-columns: 1fr;
  }

  .membership-plan-choice-grid article {
    min-height: 0;
    padding: 34px 26px;
  }

  .membership-plan-choice-grid .button {
    margin-top: 0;
  }

  .membership-shell {
    padding-top: 70px;
    padding-bottom: 90px;
  }

  .membership-benefit-grid {
    grid-template-columns: 1fr;
  }

  .membership-benefit-grid article {
    min-height: 230px;
  }

  .membership-conditions {
    padding: 34px 26px;
    gap: 28px;
  }

  .membership-cta {
    margin-top: 65px;
  }

  .membership-upgrade-layout {
    gap: 35px;
  }

  .membership-admin-groups form {
    grid-template-columns: 1fr;
  }

  .membership-analytics-grid,
  .membership-admin-metrics,
  .membership-analytics-breakdown {
    grid-template-columns: 1fr;
  }

  .membership-analytics-months {
    overflow-x: auto;
  }

  .membership-analytics-months > div {
    min-width: 520px;
  }

  .membership-admin-groups form > strong,
  .membership-admin-groups form .is-wide {
    grid-column: auto;
  }
}

@media (max-width: 1180px) {
  .site-header .header-inner {
    padding-inline: 24px;
  }

  .site-header .brand {
    width: 245px;
  }

  .site-header .main-nav {
    gap: 14px;
    font-size: 11px;
  }

  .main-nav .nav-account {
    padding-inline: 10px;
  }
}

@media (max-width: 900px) {
  .account-auth {
    grid-template-columns: 1fr;
  }

  .account-auth-copy,
  .account-login-form {
    padding: 75px 24px;
  }

  .account-auth-copy {
    min-height: 470px;
  }

  .account-edit-layout {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .account-security-shell,
  .account-delete-shell {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .account-danger-zone {
    position: static;
  }

  .account-media-uploader {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .account-content-list > article {
    grid-template-columns: 190px minmax(0, 1fr);
  }

  .account-content-actions {
    grid-column: 1 / -1;
    padding: 18px 24px;
    flex-direction: row;
    justify-content: flex-end;
    border-top: 1px solid rgba(35, 71, 55, .15);
    border-left: 0;
  }

  .admin-card {
    grid-template-columns: 1fr;
  }

  .admin-directory-filters {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .admin-entry-table-head {
    display: none;
  }

  .admin-entry-table > article {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .admin-entry-table > article > div:first-child {
    grid-column: 1 / -1;
  }

  .admin-entry-columns {
    grid-template-columns: 1fr;
  }

  .admin-user-list > article {
    grid-template-columns: 1fr auto;
  }

  .admin-user-list dl,
  .admin-user-entries {
    grid-column: 1 / -1;
  }

  .admin-audit-list article {
    grid-template-columns: 120px minmax(0, 1fr);
  }

  .admin-audit-list > article > span {
    grid-column: 2;
  }

  .admin-contact-card dl {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .admin-card-actions {
    flex-direction: row;
  }
}

@media (max-width: 760px) {
  .main-nav .nav-account {
    padding: 15px 0;
    border-width: 0 0 1px;
  }

  .account-auth {
    min-height: 0;
  }

  .account-auth-copy h1 {
    font-size: 48px;
  }

  .account-hero,
  .admin-hero {
    min-height: 350px;
    padding-top: 90px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: flex-end;
    gap: 28px;
  }

  .account-hero h1,
  .admin-hero h1 {
    font-size: 47px;
  }

  .account-hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 15px;
  }

  .admin-subnav > div {
    padding-inline: 8px;
  }

  .admin-subnav a {
    min-height: 56px;
    padding-inline: 15px;
  }

  .admin-hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .admin-metric-grid,
  .admin-entry-summary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .admin-metric-grid article,
  .admin-entry-summary article {
    border-bottom: 1px solid rgba(35, 71, 55, .15);
  }

  .admin-directory-filters,
  .admin-form-grid,
  .admin-route-options,
  .admin-user-search,
  .admin-audit-filters {
    grid-template-columns: 1fr;
  }

  .admin-filter-search,
  .admin-form-grid .is-wide {
    grid-column: auto;
  }

  .admin-entry-table > article {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .admin-entry-table > article > div:first-child {
    grid-column: auto;
  }

  .admin-entry-form > section,
  .admin-entry-sidebar > section {
    padding: 26px 20px;
  }

  .admin-user-list > article,
  .admin-audit-list article {
    grid-template-columns: 1fr;
  }

  .admin-user-list dl,
  .admin-user-entries,
  .admin-audit-list > article > span {
    grid-column: auto;
  }

  .admin-user-list dl {
    grid-template-columns: 1fr;
  }

  .account-section-heading,
  .admin-section-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .account-entry-grid {
    grid-template-columns: 1fr;
  }

  .account-entry-card {
    min-height: 280px;
  }

  .account-card-actions,
  .account-claims > article {
    align-items: flex-start;
    flex-direction: column;
  }

  .account-coming {
    padding: 35px 25px;
  }

  .account-security-shell,
  .account-delete-shell {
    padding-top: 60px;
    padding-bottom: 85px;
  }

  .account-delete-form {
    padding: 26px 20px;
  }

  .account-delete-actions,
  .account-deletion-result > div {
    align-items: stretch;
    flex-direction: column;
  }

  .account-edit-hero {
    min-height: 390px;
    padding-top: 95px;
  }

  .account-edit-hero a {
    margin-bottom: 42px;
  }

  .account-workspace-nav > div {
    width: 100%;
    padding-inline: 12px;
  }

  .account-workspace-nav a {
    min-height: 58px;
    padding-inline: 13px;
  }

  .account-workspace-nav .account-workspace-preview {
    margin-left: 0;
  }

  .account-workspace-nav .account-workspace-publish {
    margin-left: 5px;
  }

  .directory-preview-bar {
    align-items: flex-start;
    flex-direction: column;
  }

  .directory-preview-bar > div:last-child,
  .account-publication-confirm > div:last-child {
    align-items: stretch;
    flex-direction: column;
  }

  .account-workspace-shell {
    padding-top: 60px;
    padding-bottom: 85px;
  }

  .account-overview-heading,
  .account-management-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .account-completion {
    width: 125px;
    height: 125px;
  }

  .account-overview-grid {
    grid-template-columns: 1fr;
  }

  .account-module-card {
    min-height: 215px;
  }

  .account-premium-preview {
    padding: 36px 28px;
  }

  .account-premium-preview-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 26px;
  }

  .account-premium-preview-heading .button {
    width: 100%;
  }

  .account-premium-benefits {
    grid-template-columns: 1fr;
  }

  .account-autopublish-note {
    padding: 36px 28px;
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .account-management-heading > div:last-child {
    width: 100%;
    align-items: flex-start;
    flex-direction: column;
  }

  .account-media-uploader,
  .account-media-grid {
    grid-template-columns: 1fr;
  }

  .account-media-uploader {
    padding: 22px;
  }

  .account-content-list > article {
    grid-template-columns: 1fr;
  }

  .account-news-upgrade {
    align-items: flex-start;
    flex-direction: column;
  }

  .account-news-quota {
    grid-template-columns: 1fr;
  }

  .account-news-quota > div {
    padding: 0 0 18px;
    border-right: 0;
    border-bottom: 1px solid rgba(35, 71, 55, .18);
  }

  .partner-newsletter-date,
  .partner-news-admin-list > article,
  .partner-newsletter-history article {
    align-items: stretch;
    grid-template-columns: 1fr;
  }

  .partner-newsletter-date {
    flex-direction: column;
    align-items: flex-start;
  }

  .partner-news-admin-list article > div,
  .partner-newsletter-history article > div:last-child {
    justify-items: start;
    align-items: flex-start;
  }

  .account-content-thumb {
    min-height: 240px;
    aspect-ratio: 4 / 3;
  }

  .account-content-main {
    padding: 24px;
  }

  .account-content-actions {
    grid-column: auto;
    align-items: center;
    justify-content: space-between;
  }

  .admin-card dl {
    grid-template-columns: 1fr;
  }

  .admin-card-actions {
    flex-direction: column;
  }

  .admin-hero form {
    align-items: flex-start;
    flex-direction: column;
  }

  .admin-contact-search > div,
  .admin-contact-card dl {
    grid-template-columns: 1fr;
  }

  .admin-contact-search input {
    border-right: 1px solid rgba(35, 71, 55, .3);
    border-bottom: 0;
  }

  .admin-contact-heading {
    flex-direction: column;
  }
}

/* Las fichas sin fotografía no necesitan una cabecera de proporción hero. */
.directory-entry-hero:not(.has-cover) {
  min-height: 400px;
  padding-top: 55px;
  padding-bottom: 55px;
}

.directory-entry-hero:not(.has-cover) .directory-entry-breadcrumb {
  margin-bottom: 42px;
}

.directory-entry-hero:not(.has-cover) .directory-entry-title h1 {
  font-size: clamp(48px, 6vw, 84px);
}

@media (max-width: 720px) {
  .directory-entry-hero:not(.has-cover) {
    min-height: 0;
    padding-top: 42px;
    padding-bottom: 46px;
  }

  .directory-entry-hero:not(.has-cover) .directory-entry-breadcrumb {
    margin-bottom: 30px;
  }

  .directory-entry-hero:not(.has-cover) .directory-entry-title {
    gap: 30px;
  }
}

/* Itinerarios */
.itinerary-index-hero,
.itinerary-hero {
  min-height: 720px;
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: white;
  background: var(--forest-dark);
}

.itinerary-index-hero > img,
.itinerary-hero > img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
}

.itinerary-index-shade,
.itinerary-hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 32, 22, .82) 0%, rgba(10, 32, 22, .38) 55%, rgba(10, 32, 22, .08) 100%),
    linear-gradient(0deg, rgba(10, 32, 22, .72) 0%, transparent 55%);
}

.itinerary-index-hero > div:last-child,
.itinerary-hero-copy {
  width: min(calc(100% - 48px), var(--container));
  margin: 0 auto;
  padding: 170px 0 92px;
  position: relative;
  z-index: 1;
}

.itinerary-index-hero h1 {
  max-width: 980px;
  margin: 0;
  font-size: clamp(62px, 8.5vw, 128px);
  line-height: .84;
}

.itinerary-index-hero > div:last-child > p:last-child {
  max-width: 560px;
  margin: 35px 0 0;
  color: rgba(255, 255, 255, .82);
  font-size: 23px;
}

.itinerary-index-intro {
  width: min(calc(100% - 48px), var(--container));
  margin: 0 auto;
  padding: 115px 0;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 90px;
}

.itinerary-index-intro .lead {
  margin: 0;
  color: var(--forest);
  font-size: clamp(35px, 4.6vw, 64px);
  line-height: 1.03;
}

.itinerary-index-intro > div {
  padding-top: 10px;
}

.itinerary-index-intro > div p {
  margin-bottom: 24px;
  color: #53645b;
  font-size: 19px;
}

.itinerary-index-list {
  padding: 85px max(24px, calc((100vw - var(--container)) / 2)) 105px;
  background: #f0eadf;
}

.itinerary-index-heading {
  margin-bottom: 52px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}

.itinerary-index-heading h2 {
  max-width: 800px;
  margin: 0;
  color: var(--forest);
  font-size: clamp(45px, 6vw, 78px);
}

.itinerary-index-heading > span {
  padding-bottom: 7px;
  color: #67766e;
  font: 650 11px/1 var(--display);
  letter-spacing: .08em;
  text-transform: uppercase;
}

.itinerary-feature-card {
  min-height: 480px;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(440px, 1.08fr);
  background: white;
}

.itinerary-feature-card + .itinerary-feature-card {
  margin-top: 18px;
}

.itinerary-feature-image {
  min-height: 480px;
  position: relative;
  overflow: hidden;
}

.itinerary-feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.itinerary-feature-image:hover img {
  transform: scale(1.025);
}

.itinerary-feature-image > span {
  position: absolute;
  top: 28px;
  left: 28px;
  padding: 11px 15px;
  color: white;
  background: var(--brown);
  font: 700 9px/1 var(--display);
  letter-spacing: .1em;
  text-transform: uppercase;
}

.itinerary-feature-copy {
  padding: 38px 44px 40px;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}

.itinerary-feature-copy h3 {
  margin: 5px 0 8px;
  color: var(--forest);
  font-size: clamp(35px, 4vw, 52px);
}

.itinerary-feature-subtitle {
  margin: 0 0 18px;
  color: var(--brown);
  font: 650 16px/1.3 var(--display);
}

.itinerary-feature-copy > p:not(.eyebrow):not(.itinerary-feature-subtitle) {
  color: #5d6d64;
  font-size: 15px;
}

.itinerary-feature-copy dl {
  width: 100%;
  margin: 18px 0 24px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid rgba(35, 71, 55, .2);
  border-left: 1px solid rgba(35, 71, 55, .2);
}

.itinerary-feature-copy dl > div {
  min-height: 68px;
  padding: 14px 16px;
  border-right: 1px solid rgba(35, 71, 55, .2);
  border-bottom: 1px solid rgba(35, 71, 55, .2);
}

.itinerary-feature-copy dt,
.itinerary-facts dt {
  margin-bottom: 8px;
  color: #748178;
  font: 700 8px/1 var(--display);
  letter-spacing: .11em;
  text-transform: uppercase;
}

.itinerary-feature-copy dd,
.itinerary-facts dd {
  margin: 0;
  color: var(--forest);
  font: 650 14px/1.25 var(--display);
}

.itinerary-coming-soon {
  padding: 105px max(24px, calc((100vw - var(--container)) / 2)) 120px;
  color: white;
  background: var(--forest);
}

.itinerary-coming-soon > div:first-child {
  max-width: 800px;
  margin-bottom: 55px;
}

.itinerary-coming-soon h2 {
  margin: 0;
  font-size: clamp(48px, 6vw, 82px);
}

.itinerary-coming-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, .24);
  border-left: 1px solid rgba(255, 255, 255, .24);
}

.itinerary-coming-grid article {
  min-height: 230px;
  padding: 30px;
  border-right: 1px solid rgba(255, 255, 255, .24);
  border-bottom: 1px solid rgba(255, 255, 255, .24);
}

.itinerary-coming-grid article > span {
  color: var(--yellow);
  font: 700 10px/1 var(--display);
}

.itinerary-coming-grid h3 {
  max-width: 290px;
  margin: 75px 0 11px;
  font-size: 27px;
}

.itinerary-coming-grid p {
  margin: 0;
  color: rgba(255, 255, 255, .62);
  font-size: 14px;
}

.itinerary-hero {
  min-height: 800px;
}

.itinerary-hero-copy {
  padding-bottom: 88px;
}

.itinerary-breadcrumb {
  display: inline-block;
  margin-bottom: 70px;
  color: rgba(255, 255, 255, .76);
  font: 650 11px/1 var(--display);
  letter-spacing: .04em;
}

.itinerary-hero h1 {
  max-width: 1120px;
  margin: 0;
  font-size: clamp(60px, 8.3vw, 118px);
  line-height: .86;
}

.itinerary-hero h1 span {
  color: var(--yellow);
  font-size: .43em;
  letter-spacing: -.02em;
}

.itinerary-hero-copy > p:not(.eyebrow) {
  max-width: 680px;
  margin: 35px 0 38px;
  color: rgba(255, 255, 255, .8);
  font-size: 20px;
}

.itinerary-facts {
  padding: 0 max(24px, calc((100vw - var(--container)) / 2));
  color: white;
  background: var(--brown);
}

.itinerary-facts dl {
  margin: 0;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  border-left: 1px solid rgba(255, 255, 255, .22);
}

.itinerary-facts dl > div {
  min-height: 126px;
  padding: 27px 23px;
  border-right: 1px solid rgba(255, 255, 255, .22);
}

.itinerary-facts dt {
  color: rgba(255, 255, 255, .58);
}

.itinerary-facts dd {
  color: white;
  font-size: 13px;
}

.itinerary-opening {
  width: min(calc(100% - 48px), var(--container));
  margin: 0 auto;
  padding: 115px 0;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 100px;
}

.itinerary-opening h2 {
  max-width: 650px;
  margin: 0;
  color: var(--forest);
  font-size: clamp(44px, 5.5vw, 74px);
}

.itinerary-opening > div:last-child > p:first-child {
  color: #53645b;
  font-size: 21px;
}

.itinerary-status-note {
  margin: 30px 0 0;
  padding: 22px 24px;
  border-left: 4px solid var(--brown);
  color: #5c675f;
  background: #eee7da;
  font-size: 14px;
}

.itinerary-day-nav {
  position: sticky;
  top: 91px;
  z-index: 18;
  border-top: 1px solid rgba(35, 71, 55, .16);
  border-bottom: 1px solid rgba(35, 71, 55, .16);
  background: rgba(251, 248, 240, .97);
  backdrop-filter: blur(12px);
}

.itinerary-day-nav > div {
  width: min(calc(100% - 48px), var(--container));
  margin: 0 auto;
  display: flex;
  overflow-x: auto;
}

.itinerary-day-nav button,
.itinerary-day-nav a {
  min-height: 66px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  border: 0;
  border-bottom: 3px solid transparent;
  color: #68766d;
  background: transparent;
  font: 650 11px/1 var(--display);
  cursor: pointer;
}

.itinerary-day-nav button:hover,
.itinerary-day-nav button.is-active,
.itinerary-day-nav a:hover {
  color: var(--forest);
  border-bottom-color: var(--forest);
}

.itinerary-day-nav a {
  margin-left: auto;
  color: var(--brown);
}

.itinerary-explorer {
  width: min(calc(100% - 48px), 1440px);
  margin: 0 auto;
  padding: 100px 0 130px;
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(430px, .97fr);
  align-items: start;
  gap: 58px;
}

.itinerary-day {
  scroll-margin-top: 180px;
}

.itinerary-day[hidden] {
  display: none;
}

.itinerary-day + .itinerary-day {
  margin-top: 105px;
}

.itinerary-day > header {
  margin-bottom: 42px;
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 28px;
}

.itinerary-day-number {
  width: 92px;
  height: 92px;
  display: grid;
  place-content: center;
  color: white;
  background: var(--forest);
  text-align: center;
}

.itinerary-day-number span,
.itinerary-day-number strong {
  display: block;
  font-family: var(--display);
}

.itinerary-day-number span {
  font-size: 8px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.itinerary-day-number strong {
  margin-top: 4px;
  font-size: 29px;
  line-height: 1;
}

.itinerary-day > header h2 {
  margin: 0 0 15px;
  color: var(--forest);
  font-size: clamp(36px, 4vw, 54px);
}

.itinerary-day > header p {
  margin-bottom: 14px;
  color: #5c6b63;
  font-size: 16px;
}

.itinerary-day > header div:last-child > span {
  color: var(--brown);
  font: 650 10px/1.3 var(--display);
  text-transform: uppercase;
}

.itinerary-stop-list {
  margin-left: 45px;
  padding-left: 74px;
  position: relative;
}

.itinerary-stop-list::before {
  content: "";
  width: 1px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 21px;
  background: rgba(35, 71, 55, .24);
}

.itinerary-stop-card {
  margin-bottom: 18px;
  position: relative;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  border: 1px solid rgba(35, 71, 55, .18);
  background: white;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
  scroll-margin-top: 150px;
}

.itinerary-stop-card::before {
  content: "";
  width: 18px;
  height: 18px;
  position: absolute;
  top: 34px;
  left: -62px;
  z-index: 1;
  border: 5px solid var(--paper);
  border-radius: 50%;
  background: var(--sand);
  box-shadow: 0 0 0 1px rgba(35, 71, 55, .3);
}

.itinerary-stop-card.is-active {
  border-color: var(--brown);
  box-shadow: 0 18px 45px rgba(32, 54, 42, .09);
  transform: translateX(5px);
}

.itinerary-stop-card.is-active::before {
  background: var(--brown);
}

.itinerary-stop-index {
  padding: 29px 0;
  color: white;
  background: var(--forest);
  text-align: center;
}

.itinerary-stop-index span {
  writing-mode: vertical-rl;
  font: 700 9px/1 var(--display);
  letter-spacing: .1em;
}

.itinerary-stop-body {
  padding: 28px 30px 30px;
}

.itinerary-stop-meta {
  margin-bottom: 25px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.itinerary-stop-meta > span {
  padding: 7px 9px;
  color: #65736a;
  background: #eee9df;
  font: 650 8px/1 var(--display);
  letter-spacing: .05em;
  text-transform: uppercase;
}

.itinerary-stop-meta > .is-optional {
  color: white;
  background: var(--brown);
}

.itinerary-stop-body .eyebrow {
  margin-bottom: 9px;
  font-size: 8px;
}

.itinerary-stop-body h3 {
  margin: 0 0 13px;
  color: var(--forest);
  font-size: 31px;
  line-height: 1.02;
}

.itinerary-stop-body > p:not(.eyebrow) {
  margin: 0;
  color: #5d6c63;
  font-size: 15px;
}

.itinerary-reservation {
  margin-top: 17px;
  display: block;
  color: var(--brown);
  font: 700 9px/1 var(--display);
  letter-spacing: .05em;
  text-transform: uppercase;
}

.itinerary-stop-actions {
  margin-top: 25px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px 22px;
}

.itinerary-stop-actions button,
.itinerary-stop-actions a,
.itinerary-stop-card summary {
  color: var(--brown);
  font: 700 9px/1 var(--display);
  letter-spacing: .05em;
  text-transform: uppercase;
}

.itinerary-stop-actions button {
  padding: 0 0 5px;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  cursor: pointer;
}

.itinerary-stop-card details {
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid rgba(35, 71, 55, .14);
}

.itinerary-stop-card summary {
  width: max-content;
  cursor: pointer;
}

.itinerary-stop-card details p {
  margin: 17px 0 0;
  color: #5d6c63;
  font-size: 14px;
}

.itinerary-map {
  position: sticky;
  top: 180px;
  color: white;
  background: var(--forest);
}

.itinerary-map-heading {
  padding: 30px 34px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
}

.itinerary-map-heading h2 {
  margin: 0;
  color: white;
  font-size: 31px;
}

.itinerary-map-heading > span {
  color: rgba(255, 255, 255, .57);
  font: 650 8px/1 var(--display);
  letter-spacing: .08em;
  text-transform: uppercase;
}

.itinerary-map-canvas {
  position: relative;
  overflow: hidden;
  background: #ece9e0;
}

.itinerary-map-canvas > img {
  width: 100%;
  height: auto;
}

.itinerary-map-marker {
  width: 34px;
  height: 34px;
  padding: 0;
  position: absolute;
  top: var(--map-y);
  left: var(--map-x);
  z-index: 2;
  display: grid;
  place-items: center;
  border: 3px solid white;
  border-radius: 50%;
  color: white;
  background: var(--brown);
  box-shadow: 0 5px 15px rgba(18, 43, 30, .3);
  transform: translate(-50%, -50%);
  cursor: pointer;
  transition: transform .2s ease, background .2s ease;
}

.itinerary-map-marker:hover,
.itinerary-map-marker:focus-visible,
.itinerary-map-marker.is-active {
  z-index: 3;
  color: var(--forest);
  background: var(--yellow);
  transform: translate(-50%, -50%) scale(1.22);
}

.itinerary-map-marker span {
  font: 750 8px/1 var(--display);
}

.itinerary-map-marker[hidden] {
  display: none;
}

.itinerary-map-legend {
  padding: 17px 25px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  border-top: 1px solid rgba(255, 255, 255, .18);
  border-bottom: 1px solid rgba(255, 255, 255, .18);
}

.itinerary-map-legend > span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, .68);
  font: 650 8px/1 var(--display);
  text-transform: uppercase;
}

.itinerary-map-legend i {
  width: 15px;
  height: 4px;
  display: block;
  background: #db713a;
}

.itinerary-map-legend .is-stop {
  height: 15px;
  border: 3px solid white;
  border-radius: 50%;
  background: var(--brown);
}

.itinerary-map-legend .is-optional {
  height: 15px;
  border: 3px solid white;
  border-radius: 50%;
  background: var(--yellow);
}

.itinerary-map-selection {
  min-height: 205px;
  padding: 27px 34px 30px;
}

.itinerary-map-selection > span {
  color: var(--yellow);
  font: 700 8px/1 var(--display);
  letter-spacing: .1em;
  text-transform: uppercase;
}

.itinerary-map-selection h3 {
  margin: 10px 0 10px;
  color: white;
  font-size: 25px;
}

.itinerary-map-selection p {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, .68);
  font-size: 13px;
}

.itinerary-map-selection small {
  color: rgba(255, 255, 255, .5);
  font: 650 9px/1 var(--display);
}

.itinerary-map-selection a {
  margin-top: 19px;
  display: block;
  color: var(--yellow);
  font: 700 9px/1 var(--display);
  text-transform: uppercase;
}

.itinerary-map-selection a[hidden] {
  display: none;
}

.itinerary-map-download {
  min-height: 58px;
  padding: 0 34px;
  display: flex;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, .18);
  color: white;
  background: var(--brown);
  font: 700 9px/1 var(--display);
  letter-spacing: .05em;
  text-transform: uppercase;
}

.itinerary-services {
  padding: 115px max(24px, calc((100vw - var(--container)) / 2)) 130px;
  background: #eee7da;
}

.itinerary-services-heading {
  margin-bottom: 55px;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, .85fr);
  align-items: end;
  gap: 75px;
}

.itinerary-services-heading h2 {
  margin: 0;
  color: var(--forest);
  font-size: clamp(48px, 6vw, 78px);
}

.itinerary-services-heading > p {
  margin: 0 0 8px;
  color: #5b6a61;
  font-size: 16px;
}

.itinerary-service-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid rgba(35, 71, 55, .24);
  border-left: 1px solid rgba(35, 71, 55, .24);
}

.itinerary-service-grid > a {
  min-height: 285px;
  padding: 27px;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  border-right: 1px solid rgba(35, 71, 55, .24);
  border-bottom: 1px solid rgba(35, 71, 55, .24);
  transition: color .2s ease, background .2s ease;
}

.itinerary-service-grid > a:hover {
  color: white;
  background: var(--forest);
}

.itinerary-service-grid > a > span,
.itinerary-service-grid > a > p {
  font: 700 8px/1 var(--display);
  letter-spacing: .09em;
  text-transform: uppercase;
}

.itinerary-service-grid > a > span {
  color: var(--brown);
}

.itinerary-service-grid > a > p {
  margin: 40px 0 10px;
  color: #718078;
}

.itinerary-service-grid h3 {
  margin: 0 0 15px;
  color: var(--forest);
  font-size: 24px;
}

.itinerary-service-grid > a:hover h3,
.itinerary-service-grid > a:hover > span,
.itinerary-service-grid > a:hover > p {
  color: white;
}

.itinerary-service-grid small {
  color: #637169;
  font-size: 13px;
}

.itinerary-service-grid > a:hover small {
  color: rgba(255, 255, 255, .68);
}

.itinerary-service-grid strong {
  margin-top: auto;
  padding-top: 25px;
  color: var(--brown);
  font: 700 9px/1 var(--display);
  text-transform: uppercase;
}

.itinerary-service-grid > a:hover strong {
  color: var(--yellow);
}

.itinerary-practical {
  padding: 100px max(24px, calc((100vw - var(--container)) / 2));
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 90px;
  color: white;
  background: var(--brown);
}

.itinerary-practical h2 {
  margin: 0;
  font-size: clamp(40px, 5vw, 65px);
}

.itinerary-practical > div:last-child {
  padding-top: 25px;
}

.itinerary-practical > div:last-child p {
  color: rgba(255, 255, 255, .72);
}

.route-itinerary-promo {
  width: min(calc(100% - 48px), var(--container));
  margin: 0 auto 120px;
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
  color: white;
  background: var(--brown);
}

.route-itinerary-promo > div {
  padding: 62px;
}

.route-itinerary-promo h2 {
  margin: 0 0 20px;
  font-size: clamp(44px, 5vw, 70px);
}

.route-itinerary-promo > div > p:not(.eyebrow) {
  color: rgba(255, 255, 255, .72);
}

.route-itinerary-promo .button {
  margin-top: 20px;
}

.route-itinerary-promo > img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
}

.route-itinerary-promo.is-reversed > div {
  order: 2;
}

.route-itinerary-promo.is-reversed > img {
  order: 1;
}

@media (max-width: 1120px) {
  .itinerary-feature-card {
    grid-template-columns: 1fr;
  }

  .itinerary-feature-image {
    min-height: 390px;
  }

  .itinerary-explorer {
    grid-template-columns: minmax(0, 1fr) minmax(360px, .72fr);
    gap: 35px;
  }

  .itinerary-stop-list {
    margin-left: 20px;
    padding-left: 55px;
  }

  .itinerary-stop-card::before {
    left: -44px;
  }

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

@media (max-width: 900px) {
  .itinerary-index-intro,
  .itinerary-opening,
  .itinerary-practical {
    grid-template-columns: 1fr;
    gap: 42px;
  }

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

  .itinerary-coming-grid article {
    min-height: 180px;
  }

  .itinerary-coming-grid h3 {
    margin-top: 48px;
  }

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

  .itinerary-explorer {
    grid-template-columns: 1fr;
  }

  .itinerary-map {
    position: static;
  }

  .itinerary-services-heading {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .route-itinerary-promo {
    grid-template-columns: 1fr;
  }

  .route-itinerary-promo.is-reversed > div,
  .route-itinerary-promo.is-reversed > img {
    order: initial;
  }

  .route-itinerary-promo > img {
    min-height: 360px;
  }
}

@media (max-width: 720px) {
  .itinerary-index-hero,
  .itinerary-hero {
    min-height: 650px;
  }

  .itinerary-index-hero > div:last-child,
  .itinerary-hero-copy {
    width: calc(100% - 36px);
    padding: 100px 0 55px;
  }

  .itinerary-index-hero h1 {
    font-size: 55px;
  }

  .itinerary-index-hero > div:last-child > p:last-child {
    margin-top: 24px;
    font-size: 18px;
  }

  .itinerary-index-intro {
    width: calc(100% - 36px);
    padding: 75px 0;
  }

  .itinerary-index-intro .lead {
    font-size: 36px;
  }

  .itinerary-index-list {
    padding: 70px 18px 85px;
  }

  .itinerary-index-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .itinerary-index-heading h2 {
    font-size: 43px;
  }

  .itinerary-feature-image {
    min-height: 300px;
  }

  .itinerary-feature-copy {
    padding: 34px 25px 36px;
  }

  .itinerary-feature-copy h3 {
    font-size: 39px;
  }

  .itinerary-feature-copy dl {
    grid-template-columns: 1fr;
  }

  .itinerary-coming-grid {
    grid-template-columns: 1fr;
  }

  .itinerary-coming-soon {
    padding: 75px 18px 85px;
  }

  .itinerary-coming-soon h2 {
    font-size: 43px;
  }

  .itinerary-hero {
    min-height: 680px;
  }

  .itinerary-breadcrumb {
    margin-bottom: 45px;
  }

  .itinerary-hero h1 {
    font-size: 52px;
  }

  .itinerary-hero h1 span {
    margin-top: 12px;
    display: block;
    font-size: .48em;
    line-height: 1.05;
  }

  .itinerary-hero-copy > p:not(.eyebrow) {
    margin-top: 25px;
    font-size: 17px;
  }

  .itinerary-facts {
    padding-inline: 18px;
  }

  .itinerary-facts dl {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .itinerary-opening {
    width: calc(100% - 36px);
    padding: 75px 0;
  }

  .itinerary-opening h2 {
    font-size: 42px;
  }

  .itinerary-day-nav {
    top: 78px;
  }

  .itinerary-day-nav > div {
    width: 100%;
    padding-inline: 8px;
  }

  .itinerary-day-nav button,
  .itinerary-day-nav a {
    min-height: 56px;
    padding-inline: 15px;
  }

  .itinerary-day-nav a {
    margin-left: 0;
  }

  .itinerary-explorer {
    width: calc(100% - 36px);
    padding: 70px 0 90px;
  }

  .itinerary-day > header {
    grid-template-columns: 65px minmax(0, 1fr);
    gap: 18px;
  }

  .itinerary-day-number {
    width: 65px;
    height: 65px;
  }

  .itinerary-day-number strong {
    font-size: 22px;
  }

  .itinerary-day > header h2 {
    font-size: 34px;
  }

  .itinerary-stop-list {
    margin-left: 0;
    padding-left: 25px;
  }

  .itinerary-stop-list::before {
    left: 7px;
  }

  .itinerary-stop-card {
    grid-template-columns: 32px minmax(0, 1fr);
  }

  .itinerary-stop-card::before {
    width: 13px;
    height: 13px;
    top: 30px;
    left: -24px;
    border-width: 4px;
  }

  .itinerary-stop-body {
    padding: 24px 20px 26px;
  }

  .itinerary-stop-body h3 {
    font-size: 27px;
  }

  .itinerary-map-heading {
    padding: 25px 22px;
    align-items: flex-start;
    flex-direction: column;
  }

  .itinerary-map-marker {
    width: 29px;
    height: 29px;
    border-width: 2px;
  }

  .itinerary-map-selection {
    padding-inline: 24px;
  }

  .itinerary-map-download {
    padding-inline: 24px;
  }

  .itinerary-services {
    padding: 75px 18px 90px;
  }

  .itinerary-services-heading h2 {
    font-size: 43px;
  }

  .itinerary-service-grid {
    grid-template-columns: 1fr;
  }

  .itinerary-service-grid > a {
    min-height: 230px;
  }

  .itinerary-practical {
    padding: 75px 18px;
  }

  .itinerary-practical h2 {
    font-size: 42px;
  }

  .route-itinerary-promo {
    width: calc(100% - 36px);
    margin-bottom: 75px;
  }

  .route-itinerary-promo > div {
    padding: 38px 26px;
  }

  .route-itinerary-promo > img {
    min-height: 260px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}

/* Itinerarios v2: resumen del viaje, fichas diarias y fichas de lugar */
.itinerary-index-hero {
  min-height: 560px;
  padding: 0;
}

.itinerary-index-hero > div:last-child {
  padding: 76px 0 55px;
}

.itinerary-index-hero h1 {
  font-size: clamp(48px, 6vw, 78px);
  line-height: .94;
}

.itinerary-overview-hero,
.itinerary-day-hero,
.place-hero {
  min-height: 520px;
  max-height: none;
  padding: 0;
}

.place-hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--forest-dark);
}

.place-hero > img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
}

.itinerary-overview-hero .itinerary-hero-copy,
.itinerary-day-hero .itinerary-hero-copy,
.place-hero-copy {
  width: min(calc(100% - 48px), var(--container));
  margin: 0 auto;
  padding: 76px 0 55px;
  position: relative;
  z-index: 2;
  align-self: end;
}

.itinerary-overview-hero .itinerary-breadcrumb,
.itinerary-day-hero .itinerary-breadcrumb,
.place-hero .itinerary-breadcrumb {
  margin-bottom: 30px;
}

.itinerary-overview-hero h1,
.itinerary-day-hero h1,
.place-hero h1 {
  max-width: 1000px;
  margin: 0;
  font-size: clamp(48px, 6vw, 78px);
  line-height: .94;
}

.itinerary-overview-hero .itinerary-hero-copy > p:not(.eyebrow),
.itinerary-day-hero .itinerary-hero-copy > p:not(.eyebrow),
.place-hero-copy > p:not(.eyebrow) {
  max-width: 760px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, .82);
  font: 600 clamp(17px, 2vw, 22px)/1.35 var(--display);
}

.itinerary-overview-facts dl > div {
  min-height: 98px;
  padding-block: 22px;
}

.itinerary-overview-intro {
  width: min(calc(100% - 48px), var(--container));
  margin: 0 auto;
  padding: 82px 0 90px;
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr);
  gap: 80px;
}

.itinerary-overview-intro h2 {
  max-width: 620px;
  margin: 0;
  color: var(--forest);
  font-size: clamp(42px, 5vw, 66px);
}

.itinerary-overview-intro .lead {
  margin-top: 0;
  color: var(--forest);
  font: 650 23px/1.35 var(--display);
}

.itinerary-overview-intro div:last-child > p:last-child {
  margin: 25px 0 0;
  padding: 20px 22px;
  border-left: 3px solid var(--brown);
  color: #5e6b63;
  background: #eee7da;
  font-size: 14px;
}

.itinerary-day-index,
.day-schedule,
.day-recommended,
.place-highlights {
  padding: 95px max(24px, calc((100vw - var(--container)) / 2)) 110px;
}

.itinerary-day-index {
  background: #efe9de;
}

.itinerary-section-heading {
  margin-bottom: 48px;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, .85fr);
  align-items: end;
  gap: 70px;
}

.itinerary-section-heading h2 {
  max-width: 820px;
  margin: 0;
  color: var(--forest);
  font-size: clamp(42px, 5.2vw, 68px);
}

.itinerary-section-heading > p {
  margin: 0 0 7px;
  color: #5b6a61;
  font-size: 16px;
}

.itinerary-day-index-grid {
  display: grid;
  gap: 24px;
}

.itinerary-day-summary {
  display: grid;
  grid-template-columns: minmax(330px, .82fr) minmax(0, 1.18fr);
  background: white;
}

.itinerary-day-summary-image {
  min-height: 430px;
  position: relative;
  overflow: hidden;
}

.itinerary-day-summary-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.itinerary-day-summary-image:hover img {
  transform: scale(1.025);
}

.itinerary-day-summary-image > span {
  position: absolute;
  top: 25px;
  left: 25px;
  padding: 11px 14px;
  color: white;
  background: var(--brown);
  font: 700 9px/1 var(--display);
  letter-spacing: .09em;
  text-transform: uppercase;
}

.itinerary-day-summary-copy {
  padding: 42px 48px 45px;
}

.itinerary-day-summary-copy h3 {
  max-width: 760px;
  margin: 5px 0 12px;
  color: var(--forest);
  font-size: clamp(35px, 4vw, 53px);
}

.itinerary-day-summary-copy > p:not(.eyebrow) {
  max-width: 760px;
  color: #5f6d65;
  font-size: 16px;
}

.itinerary-day-summary-copy ul {
  margin: 25px 0 0;
  padding: 0;
  border-top: 1px solid rgba(35, 71, 55, .16);
  list-style: none;
}

.itinerary-day-summary-copy li {
  min-height: 42px;
  padding: 9px 0;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  align-items: center;
  gap: 15px;
  border-bottom: 1px solid rgba(35, 71, 55, .16);
  color: var(--forest);
  font: 650 13px/1.25 var(--display);
}

.itinerary-day-summary-copy li span {
  color: var(--brown);
  font-size: 10px;
}

.itinerary-day-summary-meta {
  margin: 22px 0 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.itinerary-day-summary-meta span {
  padding: 8px 10px;
  color: #617168;
  background: #efe9de;
  font: 700 9px/1 var(--display);
  text-transform: uppercase;
}

.itinerary-overview-map {
  display: grid;
  grid-template-columns: minmax(360px, .72fr) minmax(0, 1.28fr);
  color: white;
  background: var(--forest);
}

.itinerary-overview-map-copy {
  padding: 68px max(35px, calc((100vw - var(--container)) / 2)) 68px max(35px, calc((100vw - var(--container)) / 2));
  padding-right: 55px;
}

.itinerary-overview-map-copy h2 {
  margin: 0 0 20px;
  color: white;
  font-size: clamp(42px, 5vw, 66px);
}

.itinerary-overview-map-copy > p:not(.eyebrow) {
  color: rgba(255, 255, 255, .68);
}

.itinerary-full-route-link {
  margin-top: 24px;
}

.itinerary-overview-map-copy ol {
  margin: 38px 0 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, .2);
  list-style: none;
}

.itinerary-overview-map-copy li {
  padding: 18px 0;
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, .2);
}

.itinerary-overview-map-copy li > span {
  color: var(--yellow);
  font: 700 10px/1.4 var(--display);
}

.itinerary-overview-map-copy li strong,
.itinerary-overview-map-copy li small {
  display: block;
}

.itinerary-overview-map-copy li strong {
  color: white;
  font: 650 15px/1.2 var(--display);
}

.itinerary-overview-map-copy li small {
  margin-top: 5px;
  color: rgba(255, 255, 255, .54);
  font-size: 11px;
}

.itinerary-overview-map-canvas {
  min-height: 0;
  aspect-ratio: 1100 / 850;
  position: relative;
  overflow: hidden;
  background: #e8e4dc;
}

.itinerary-overview-map-canvas .map-zoom-content {
  height: 100%;
}

.itinerary-overview-map-canvas .map-zoom-content > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.itinerary-overview-marker {
  width: 44px;
  height: 44px;
  position: absolute;
  top: var(--map-y);
  left: var(--map-x);
  display: grid;
  place-items: center;
  border: 4px solid white;
  border-radius: 50%;
  color: white;
  background: var(--brown);
  box-shadow: 0 8px 22px rgba(24, 49, 35, .3);
  transform: translate(-50%, -50%);
  font: 750 11px/1 var(--display);
  transition: background .2s ease, transform .2s ease;
}

.itinerary-overview-marker:hover,
.itinerary-overview-marker:focus-visible {
  color: var(--forest);
  background: var(--yellow);
  transform: translate(-50%, -50%) scale(1.12);
}

.itinerary-place-links {
  padding: 90px max(24px, calc((100vw - var(--container)) / 2)) 105px;
}

.itinerary-place-links > div:first-child {
  margin-bottom: 38px;
}

.itinerary-place-links h2 {
  max-width: 760px;
  margin: 0;
  color: var(--forest);
  font-size: clamp(42px, 5vw, 65px);
}

.itinerary-place-link-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(35, 71, 55, .22);
  border-left: 1px solid rgba(35, 71, 55, .22);
}

.itinerary-place-link-grid a {
  min-height: 210px;
  padding: 26px;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  border-right: 1px solid rgba(35, 71, 55, .22);
  border-bottom: 1px solid rgba(35, 71, 55, .22);
  transition: color .2s ease, background .2s ease;
}

.itinerary-place-link-grid a:hover {
  color: white;
  background: var(--forest);
}

.itinerary-place-link-grid span {
  color: var(--brown);
  font: 700 9px/1 var(--display);
}

.itinerary-place-link-grid strong {
  margin-top: auto;
  color: var(--forest);
  font: 650 26px/1.05 var(--display);
}

.itinerary-place-link-grid small {
  margin-top: 8px;
  color: #6c7971;
  font-size: 12px;
}

.itinerary-place-link-grid a:hover span,
.itinerary-place-link-grid a:hover strong,
.itinerary-place-link-grid a:hover small {
  color: white;
}

.itinerary-custom-trip {
  padding: 90px max(24px, calc((100vw - var(--container)) / 2));
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: 80px;
  color: white;
  background: var(--brown);
}

.itinerary-custom-trip > div:first-child {
  padding-right: 40px;
}

.itinerary-custom-trip h2 {
  max-width: 680px;
  margin: 0 0 22px;
  color: white;
  font-size: clamp(42px, 5vw, 66px);
}

.itinerary-custom-trip > div:first-child > p:last-child {
  max-width: 650px;
  color: rgba(255, 255, 255, .68);
  font-size: 16px;
}

.itinerary-custom-trip > div:last-child {
  padding: 38px 42px 42px;
  border: 1px solid rgba(255, 255, 255, .25);
  background: rgba(255, 255, 255, .08);
}

.itinerary-custom-trip img {
  width: 150px;
  height: 62px;
  margin-bottom: 28px;
  object-fit: contain;
  object-position: left center;
  filter: brightness(0) invert(1);
}

.itinerary-custom-trip h3 {
  margin: 0 0 13px;
  color: white;
  font-size: 31px;
}

.itinerary-custom-trip > div:last-child > p {
  max-width: 590px;
  color: rgba(255, 255, 255, .72);
  font-size: 15px;
}

.itinerary-custom-trip .button {
  margin-top: 18px;
}

.day-practical-strip {
  padding: 0 max(24px, calc((100vw - var(--container)) / 2));
  color: white;
  background: var(--brown);
}

.day-practical-strip dl {
  margin: 0;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  border-left: 1px solid rgba(255, 255, 255, .2);
}

.day-practical-strip dl > div {
  min-height: 105px;
  padding: 23px 18px;
  border-right: 1px solid rgba(255, 255, 255, .2);
}

.day-practical-strip dt {
  margin-bottom: 8px;
  color: rgba(255, 255, 255, .56);
  font: 700 8px/1 var(--display);
  letter-spacing: .09em;
  text-transform: uppercase;
}

.day-practical-strip dd {
  margin: 0;
  color: white;
  font: 650 13px/1.3 var(--display);
}

.day-practical-strip > p {
  margin: 0;
  padding: 11px 0 13px;
  border-top: 1px solid rgba(255, 255, 255, .2);
  color: rgba(255, 255, 255, .62);
  font-size: 11px;
}

.itinerary-day-switcher {
  padding: 0 max(24px, calc((100vw - var(--container)) / 2));
  position: sticky;
  top: 91px;
  z-index: 15;
  display: flex;
  overflow-x: auto;
  border-bottom: 1px solid rgba(35, 71, 55, .16);
  background: rgba(251, 248, 240, .97);
  backdrop-filter: blur(12px);
}

.itinerary-day-switcher a {
  min-height: 58px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  border-bottom: 3px solid transparent;
  color: #69776e;
  font: 650 10px/1 var(--display);
}

.itinerary-day-switcher a:first-child {
  padding-left: 0;
}

.itinerary-day-switcher a:hover,
.itinerary-day-switcher a.is-active {
  color: var(--forest);
  border-bottom-color: var(--forest);
}

.day-schedule {
  background: var(--paper);
}

.day-schedule-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, .62fr);
  align-items: start;
  gap: 55px;
}

.day-period + .day-period {
  margin-top: 50px;
}

.day-period > header {
  margin-bottom: 22px;
  padding-bottom: 18px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  border-bottom: 1px solid rgba(35, 71, 55, .22);
}

.day-period > header span {
  color: var(--brown);
  font: 700 9px/1 var(--display);
  letter-spacing: .09em;
  text-transform: uppercase;
}

.day-period > header h2 {
  margin: 0;
  color: var(--forest);
  font-size: 27px;
}

.day-activity-card {
  min-height: 235px;
  margin-bottom: 16px;
  position: relative;
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr);
  border: 1px solid rgba(35, 71, 55, .18);
  background: white;
  scroll-margin-top: 170px;
}

.day-activity-time {
  padding: 29px 17px;
  color: white;
  background: var(--forest);
}

.day-activity-time strong,
.day-activity-time span {
  display: block;
}

.day-activity-time strong {
  font: 650 23px/1 var(--display);
}

.day-activity-time span {
  margin-top: 10px;
  color: rgba(255, 255, 255, .58);
  font-size: 11px;
}

.day-activity-copy {
  padding: 28px 30px 30px;
}

.day-activity-copy h3 {
  margin: 5px 0 12px;
  color: var(--forest);
  font-size: clamp(27px, 3vw, 35px);
}

.day-activity-copy > p:not(.eyebrow) {
  margin: 0;
  color: #5c6b62;
  font-size: 15px;
}

.day-activity-copy details {
  margin-top: 18px;
  padding-top: 17px;
  border-top: 1px solid rgba(35, 71, 55, .14);
}

.day-activity-copy summary {
  width: max-content;
  color: var(--brown);
  font: 700 9px/1 var(--display);
  letter-spacing: .05em;
  text-transform: uppercase;
  cursor: pointer;
}

.day-activity-copy details p {
  margin: 14px 0 0;
  color: #5f6d65;
  font-size: 14px;
}

.day-activity-actions {
  margin-top: 20px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 20px;
}

.day-activity-actions span,
.day-activity-actions a {
  color: var(--brown);
  font: 700 9px/1.2 var(--display);
  text-transform: uppercase;
}

.day-activity-actions a {
  padding-bottom: 3px;
  border-bottom: 1px solid currentColor;
}

.day-activity-index {
  position: absolute;
  right: 18px;
  bottom: 15px;
  color: rgba(35, 71, 55, .28);
  font: 700 9px/1 var(--display);
}

.day-service-stop {
  margin: 42px 0;
  border: 1px solid rgba(91, 56, 42, .24);
  background: #e9ddcb;
}

.day-service-stop > summary {
  min-height: 104px;
  padding: 18px 25px;
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;
  color: var(--forest);
  cursor: pointer;
  list-style: none;
}

.day-service-stop > summary::-webkit-details-marker {
  display: none;
}

.day-service-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: var(--brown);
  font: 700 7px/1 var(--display);
  letter-spacing: .06em;
}

.day-service-stop summary small,
.day-service-stop summary strong {
  display: block;
  font-family: var(--display);
}

.day-service-stop summary small {
  margin-bottom: 5px;
  color: var(--brown);
  font-size: 8px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.day-service-stop summary strong {
  font-size: 29px;
}

.day-service-stop summary em {
  color: var(--brown);
  font: 700 9px/1 var(--display);
  text-transform: uppercase;
}

.day-service-options {
  padding: 0 25px 25px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.day-service-options article {
  min-height: 210px;
  padding: 22px;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  background: white;
}

.day-service-options article > span {
  color: var(--brown);
  font: 700 8px/1 var(--display);
}

.day-service-options h3 {
  margin: 6px 0 10px;
  color: var(--forest);
  font-size: 21px;
}

.day-service-options article > p:not(.eyebrow) {
  margin: 0;
  color: #647168;
  font-size: 13px;
}

.day-service-options article > a,
.day-service-options article > small:last-child {
  margin-top: auto;
  padding-top: 20px;
  color: var(--brown);
  font: 700 8px/1.2 var(--display);
  text-transform: uppercase;
}

.day-map-card {
  position: sticky;
  top: 180px;
  color: white;
  background: var(--forest);
}

.day-map-card > div:first-child {
  padding: 27px 30px;
}

.day-map-card h2 {
  margin: 0;
  color: white;
  font-size: 28px;
}

.day-map-canvas {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #e9e5dc;
}

.day-map-canvas .map-zoom-content {
  height: 100%;
}

.day-map-canvas .map-zoom-content > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.map-zoom-viewport {
  position: relative;
  overflow: hidden;
}

.map-zoom-content {
  width: 100%;
  position: relative;
  transform-origin: 0 0;
  will-change: transform;
}

.map-zoom-content > img {
  display: block;
  pointer-events: none;
  user-select: none;
}

.map-zoom-viewport.is-zoomed {
  cursor: grab;
  touch-action: none;
}

.map-zoom-viewport.is-dragging {
  cursor: grabbing;
}

.map-zoom-controls {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 8;
  display: grid;
  border: 1px solid rgba(35, 71, 55, .22);
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(24, 49, 35, .2);
}

.map-zoom-controls button {
  width: 44px;
  height: 44px;
  padding: 0;
  display: grid;
  place-items: center;
  border: 0;
  border-bottom: 1px solid rgba(35, 71, 55, .16);
  color: var(--forest);
  background: rgba(255, 255, 255, .96);
  cursor: pointer;
}

.map-zoom-controls button:last-child {
  border-bottom: 0;
}

.map-zoom-controls button:hover:not(:disabled),
.map-zoom-controls button:focus-visible {
  color: white;
  background: var(--brown);
}

.map-zoom-controls button:focus-visible {
  position: relative;
  z-index: 1;
  outline: 3px solid var(--yellow);
  outline-offset: -3px;
}

.map-zoom-controls button:disabled {
  color: rgba(35, 71, 55, .32);
  cursor: default;
}

.map-zoom-controls span {
  font: 500 26px/1 Arial, sans-serif;
}

.day-map-card > p {
  margin: 0;
  padding: 22px 30px 25px;
  border-top: 1px solid rgba(255, 255, 255, .18);
  color: rgba(255, 255, 255, .58);
  font-size: 12px;
}

.day-map-full-route {
  min-height: 58px;
  padding: 0 30px;
  display: flex;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, .18);
  color: white;
  background: var(--brown);
  font: 700 9px/1 var(--display);
  letter-spacing: .05em;
  text-transform: uppercase;
}

.day-map-full-route:hover {
  color: var(--yellow);
}

.day-recommended {
  background: #eee7da;
}

.day-recommended-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(35, 71, 55, .22);
  border-left: 1px solid rgba(35, 71, 55, .22);
}

.day-recommended-grid article {
  min-height: 260px;
  padding: 25px;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  border-right: 1px solid rgba(35, 71, 55, .22);
  border-bottom: 1px solid rgba(35, 71, 55, .22);
}

.day-recommended-grid article > span {
  color: var(--brown);
  font: 700 8px/1 var(--display);
}

.day-recommended-grid article .eyebrow {
  margin-top: 42px;
}

.day-recommended-grid h3 {
  margin: 4px 0 12px;
  color: var(--forest);
  font-size: 25px;
}

.day-recommended-grid article > p:not(.eyebrow) {
  margin: 0;
  color: #5d6b63;
  font-size: 13px;
}

.day-recommended-grid a {
  margin-top: auto;
  padding-top: 23px;
  color: var(--brown);
  font: 700 8px/1 var(--display);
  text-transform: uppercase;
}

.day-pagination {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  color: white;
  background: var(--forest);
}

.day-pagination a {
  min-height: 170px;
  padding: 38px max(30px, calc((100vw - var(--container)) / 2));
  display: flex;
  justify-content: center;
  flex-direction: column;
  border-right: 1px solid rgba(255, 255, 255, .2);
}

.day-pagination a:last-child {
  align-items: flex-end;
  text-align: right;
}

.day-pagination span,
.day-pagination strong {
  display: block;
}

.day-pagination span {
  margin-bottom: 9px;
  color: var(--yellow);
  font: 700 9px/1 var(--display);
  text-transform: uppercase;
}

.day-pagination strong {
  color: white;
  font: 650 clamp(24px, 3vw, 38px)/1.05 var(--display);
}

.place-intro {
  width: min(calc(100% - 48px), var(--container));
  margin: 0 auto;
  padding: 90px 0;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr);
  gap: 85px;
}

.place-intro h2 {
  max-width: 820px;
  margin: 0;
  color: var(--forest);
  font-size: clamp(36px, 4.6vw, 58px);
}

.place-intro > div:last-child {
  padding-top: 25px;
}

.place-intro > div:last-child > p {
  color: #5b6961;
  font-size: 17px;
}

.place-intro .button {
  margin-top: 20px;
}

.place-facts {
  padding: 0 max(24px, calc((100vw - var(--container)) / 2));
  color: white;
  background: var(--brown);
}

.place-facts dl {
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-left: 1px solid rgba(255, 255, 255, .2);
}

.place-facts dl > div {
  min-height: 110px;
  padding: 25px;
  border-right: 1px solid rgba(255, 255, 255, .2);
}

.place-facts dt {
  margin-bottom: 9px;
  color: rgba(255, 255, 255, .56);
  font: 700 8px/1 var(--display);
  letter-spacing: .09em;
  text-transform: uppercase;
}

.place-facts dd {
  margin: 0;
  color: white;
  font: 650 15px/1.25 var(--display);
}

.place-highlights {
  background: #efe9de;
}

.place-highlight-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(35, 71, 55, .22);
  border-left: 1px solid rgba(35, 71, 55, .22);
}

.place-highlight-grid article {
  min-height: 285px;
  padding: 28px;
  border-right: 1px solid rgba(35, 71, 55, .22);
  border-bottom: 1px solid rgba(35, 71, 55, .22);
}

.place-highlight-grid article > span {
  color: var(--brown);
  font: 700 8px/1 var(--display);
}

.place-highlight-grid h3 {
  margin: 70px 0 14px;
  color: var(--forest);
  font-size: 28px;
}

.place-highlight-grid p {
  margin: 0;
  color: #5c6a62;
  font-size: 14px;
}

.place-practical {
  padding: 85px max(24px, calc((100vw - var(--container)) / 2));
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
  gap: 80px;
  color: white;
  background: var(--forest);
}

.place-practical h2 {
  margin: 0;
  color: white;
  font-size: clamp(40px, 5vw, 62px);
}

.place-practical ul {
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
}

.place-practical li {
  padding: 13px 0 13px 28px;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, .18);
  color: rgba(255, 255, 255, .72);
}

.place-practical li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--yellow);
}

.place-practical a {
  color: var(--yellow);
  font: 700 9px/1 var(--display);
  text-transform: uppercase;
}

.place-route-return {
  padding: 85px max(24px, calc((100vw - var(--container)) / 2));
  text-align: center;
  color: white;
  background: var(--brown);
}

.place-route-return h2 {
  margin: 4px auto 28px;
  color: white;
  font-size: clamp(38px, 5vw, 62px);
}

@media (max-width: 1120px) {
  .itinerary-day-summary {
    grid-template-columns: minmax(280px, .72fr) minmax(0, 1.28fr);
  }

  .day-schedule-layout {
    grid-template-columns: minmax(0, 1fr) 350px;
    gap: 34px;
  }

  .day-recommended-grid,
  .place-highlight-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .itinerary-overview-intro,
  .itinerary-section-heading,
  .place-intro,
  .place-practical,
  .itinerary-custom-trip {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .itinerary-day-summary {
    grid-template-columns: 1fr;
  }

  .itinerary-day-summary-image {
    min-height: 380px;
  }

  .itinerary-overview-map {
    grid-template-columns: 1fr;
  }

  .itinerary-overview-map-copy {
    padding: 55px 36px;
  }

  .itinerary-overview-map-canvas {
    min-height: 0;
  }

  .day-practical-strip dl {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .day-schedule-layout {
    grid-template-columns: 1fr;
  }

  .day-map-card {
    position: static;
  }

  .place-intro > div:last-child {
    padding-top: 0;
  }
}

@media (max-width: 720px) {
  .itinerary-index-hero,
  .itinerary-overview-hero,
  .itinerary-day-hero,
  .place-hero {
    min-height: 440px;
  }

  .itinerary-index-hero > div:last-child,
  .itinerary-overview-hero .itinerary-hero-copy,
  .itinerary-day-hero .itinerary-hero-copy,
  .place-hero-copy {
    width: calc(100% - 36px);
    padding: 62px 0 36px;
  }

  .itinerary-overview-hero .itinerary-breadcrumb,
  .itinerary-day-hero .itinerary-breadcrumb,
  .place-hero .itinerary-breadcrumb {
    margin-bottom: 22px;
  }

  .itinerary-index-hero h1,
  .itinerary-overview-hero h1,
  .itinerary-day-hero h1,
  .place-hero h1 {
    font-size: 44px;
  }

  .itinerary-overview-hero .itinerary-hero-copy > p:not(.eyebrow),
  .itinerary-day-hero .itinerary-hero-copy > p:not(.eyebrow),
  .place-hero-copy > p:not(.eyebrow) {
    margin-top: 14px;
    font-size: 16px;
  }

  .itinerary-overview-facts {
    padding-inline: 18px;
  }

  .itinerary-overview-facts dl {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .itinerary-overview-facts dl > div {
    min-height: 88px;
    padding: 19px 15px;
  }

  .itinerary-overview-intro {
    width: calc(100% - 36px);
    padding: 62px 0 68px;
  }

  .itinerary-overview-intro h2,
  .itinerary-section-heading h2,
  .itinerary-place-links h2 {
    font-size: 39px;
  }

  .itinerary-overview-intro .lead {
    font-size: 19px;
  }

  .itinerary-day-index,
  .day-schedule,
  .day-recommended,
  .place-highlights {
    padding: 65px 18px 75px;
  }

  .itinerary-section-heading {
    margin-bottom: 34px;
  }

  .itinerary-day-summary-image {
    min-height: 265px;
  }

  .itinerary-day-summary-copy {
    padding: 30px 23px 34px;
  }

  .itinerary-day-summary-copy h3 {
    font-size: 34px;
  }

  .itinerary-day-summary-copy li {
    grid-template-columns: 56px minmax(0, 1fr);
    font-size: 12px;
  }

  .itinerary-overview-map-copy {
    padding: 52px 18px;
  }

  .itinerary-overview-map-copy h2 {
    font-size: 39px;
  }

  .itinerary-overview-map-canvas {
    min-height: 0;
  }

  .itinerary-place-links {
    padding: 65px 18px 75px;
  }

  .itinerary-place-link-grid {
    grid-template-columns: 1fr;
  }

  .itinerary-place-link-grid a {
    min-height: 150px;
  }

  .itinerary-custom-trip {
    padding: 65px 18px;
  }

  .itinerary-custom-trip > div:first-child {
    padding-right: 0;
  }

  .itinerary-custom-trip h2 {
    font-size: 39px;
  }

  .itinerary-custom-trip > div:last-child {
    padding: 29px 24px 32px;
  }

  .itinerary-custom-trip h3 {
    font-size: 27px;
  }

  .day-practical-strip {
    padding-inline: 18px;
  }

  .day-practical-strip dl {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .day-practical-strip dl > div {
    min-height: 92px;
    padding: 19px 14px;
  }

  .itinerary-day-switcher {
    top: 78px;
    padding-inline: 8px;
  }

  .itinerary-day-switcher a {
    min-height: 54px;
    padding-inline: 14px;
  }

  .itinerary-day-switcher a:first-child {
    padding-left: 10px;
  }

  .day-period > header {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .day-activity-card {
    grid-template-columns: 1fr;
  }

  .day-activity-time {
    padding: 18px 20px;
    display: flex;
    align-items: center;
    gap: 18px;
  }

  .day-activity-time strong {
    font-size: 20px;
  }

  .day-activity-time span {
    margin: 0;
  }

  .day-activity-copy {
    padding: 24px 21px 27px;
  }

  .day-activity-copy h3 {
    font-size: 29px;
  }

  .day-service-stop > summary {
    min-height: 90px;
    padding: 15px 17px;
    grid-template-columns: 50px minmax(0, 1fr);
    gap: 13px;
  }

  .day-service-icon {
    width: 46px;
    height: 46px;
    font-size: 6px;
  }

  .day-service-stop summary strong {
    font-size: 23px;
  }

  .day-service-stop summary em {
    display: none;
  }

  .day-service-options {
    padding: 0 14px 14px;
    grid-template-columns: 1fr;
  }

  .day-service-options article {
    min-height: 190px;
  }

  .day-recommended-grid,
  .place-highlight-grid {
    grid-template-columns: 1fr;
  }

  .day-recommended-grid article {
    min-height: 230px;
  }

  .day-pagination {
    grid-template-columns: 1fr;
  }

  .day-pagination a {
    min-height: 135px;
    padding: 30px 18px;
  }

  .day-pagination a:last-child {
    align-items: flex-start;
    border-top: 1px solid rgba(255, 255, 255, .2);
    text-align: left;
  }

  .place-intro {
    width: calc(100% - 36px);
    padding: 65px 0;
  }

  .place-intro h2 {
    font-size: 34px;
  }

  .place-facts {
    padding-inline: 18px;
  }

  .place-facts dl {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .place-facts dl > div {
    min-height: 98px;
    padding: 20px 15px;
  }

  .place-highlight-grid article {
    min-height: 245px;
  }

  .place-highlight-grid h3 {
    margin-top: 52px;
  }

  .place-practical,
  .place-route-return {
    padding: 65px 18px;
  }
}
