:root {
  --verde-mate: #496a52;
  --arena: #dcc8a5;
  --fondo-claro: #f7f4ef;
  --verde-profundo: #354735;
  --verde-sombra: #2d3d30;
  --texto-principal: #20251f;
  --texto-suave: #596158;
  --ivory: var(--fondo-claro);
  --paper: var(--fondo-claro);
  --charcoal: var(--texto-principal);
  --ink-soft: var(--texto-suave);
  --sage: var(--verde-mate);
  --sage-deep: var(--verde-profundo);
  --brand-green: var(--verde-mate);
  --header-paper: var(--fondo-claro);
  --amber: #c6a26a;
  --clay: var(--arena);
  --line: rgba(73, 106, 82, 0.18);
  --sand-line: rgba(220, 200, 165, 0.62);
  --shadow: 0 18px 48px rgba(53, 71, 53, 0.14);
  --motion-ease: cubic-bezier(0.19, 1, 0.22, 1);
  --motion-soft: cubic-bezier(0.22, 0.61, 0.36, 1);
  --font-heading: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-body: "Montserrat", "Segoe UI", system-ui, -apple-system, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--charcoal);
  font-family: var(--font-body);
  line-height: 1.5;
}

.motion-ready [data-reveal] {
  opacity: 0;
  transform: translateY(var(--reveal-y, 14px));
  transition:
    opacity var(--reveal-duration, 760ms) var(--motion-soft),
    transform var(--reveal-duration, 760ms) var(--motion-ease);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.motion-ready [data-reveal="title"] {
  --reveal-duration: 860ms;
  --reveal-y: 12px;
}

.motion-ready [data-reveal="text"] {
  --reveal-duration: 780ms;
  --reveal-y: 13px;
}

.motion-ready [data-reveal="card"] {
  --reveal-duration: 720ms;
  --reveal-y: 16px;
}

.motion-ready [data-reveal="image"] {
  --reveal-duration: 900ms;
  --reveal-y: 10px;
}

.motion-ready [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.home-splash {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 28px;
  background:
    radial-gradient(circle at 50% 46%, rgba(220, 200, 165, 0.18), transparent 36%),
    var(--fondo-claro);
  pointer-events: none;
  animation: home-splash-hide 2600ms ease forwards;
}

.home-splash-inner {
  display: grid;
  justify-items: center;
  gap: 18px;
  text-align: center;
  opacity: 0;
  transform: translateY(10px) scale(0.985);
  animation: home-splash-mark 1900ms ease forwards;
}

.home-splash img {
  width: clamp(138px, 17vw, 238px);
  height: auto;
  object-fit: contain;
}

.home-splash p {
  max-width: 520px;
  margin: 0;
  color: var(--verde-mate);
  font-family: var(--font-heading);
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 500;
  line-height: 1.08;
}

@keyframes home-splash-mark {
  0% {
    opacity: 0;
    transform: translateY(10px) scale(0.985);
  }

  30%,
  82% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }

  100% {
    opacity: 0;
    transform: translateY(-6px) scale(1.01);
  }
}

@keyframes home-splash-hide {
  0%,
  78% {
    opacity: 1;
    visibility: visible;
  }

  100% {
    opacity: 0;
    visibility: hidden;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }

  .home-splash,
  .home-splash-inner {
    animation-duration: 1ms;
  }
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  align-items: center;
  gap: 28px;
  min-height: 130px;
  padding: 8px clamp(22px, 3vw, 58px) 10px;
  color: var(--charcoal);
  background: rgba(245, 241, 233, 0.98);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.brand,
.header-tools,
.site-header nav,
.social-links {
  display: flex;
  align-items: center;
}

.brand {
  width: 132px;
  height: 108px;
  align-self: center;
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.header-tools {
  min-width: 0;
  align-self: stretch;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 10px;
}

.social-links {
  min-height: 44px;
  justify-content: flex-end;
  gap: 9px;
}

.social-link {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  color: var(--brand-green);
  transition: color 240ms ease, opacity 240ms ease, transform 240ms var(--motion-soft);
}

.social-link:hover,
.social-link:focus-visible {
  color: var(--verde-profundo);
  opacity: 0.84;
  transform: translateY(-2px);
}

.social-icon {
  width: 34px;
  height: 34px;
  background: currentColor;
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
}

.social-icon-instagram {
  mask-image: url("assets/icons/instagram.svg");
}

.social-icon-facebook {
  mask-image: url("assets/icons/facebook.svg");
}

.social-icon-whatsapp {
  mask-image: url("assets/icons/whatsapp.svg");
}

.social-link-linkedin {
  width: 35px;
  height: 35px;
  border-radius: 3px;
  background: var(--brand-green);
  color: var(--header-paper);
  font-family: Arial, sans-serif;
  font-size: 26px;
  font-weight: 800;
  line-height: 1;
}

.social-link-linkedin:hover,
.social-link-linkedin:focus-visible {
  background: var(--verde-profundo);
  color: var(--header-paper);
}

.site-header nav {
  justify-content: flex-end;
  gap: clamp(18px, 2vw, 38px);
  font-size: 15px;
}

.site-header nav > a,
.nav-dropdown-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  color: inherit;
  font: inherit;
  opacity: 0.88;
  transition:
    color 240ms ease,
    opacity 240ms ease,
    transform 240ms var(--motion-soft);
}

.site-header nav > a::before,
.nav-dropdown-toggle::before {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: var(--verde-mate);
  content: "";
  opacity: 0.64;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 260ms var(--motion-ease), opacity 260ms ease;
}

.site-header nav > a:hover,
.site-header nav > a:focus-visible,
.nav-dropdown-toggle:hover,
.nav-dropdown-toggle:focus-visible,
.nav-dropdown.is-open .nav-dropdown-toggle {
  color: var(--verde-mate);
  opacity: 1;
  transform: translateY(-2px);
}

.site-header nav > a:hover::before,
.site-header nav > a:focus-visible::before,
.site-header nav > a[aria-current="page"]::before,
.nav-dropdown-toggle:hover::before,
.nav-dropdown-toggle:focus-visible::before,
.nav-dropdown.is-open .nav-dropdown-toggle::before {
  opacity: 0.78;
  transform: scaleX(1);
}

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

.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 0;
}

.nav-dropdown-toggle::after {
  color: var(--brand-green);
  content: "⌄";
  font-size: 15px;
  line-height: 1;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  z-index: 30;
  display: grid;
  min-width: 238px;
  padding: 10px;
  border: 1px solid var(--line);
  background: rgba(247, 244, 239, 0.98);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.nav-dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 10px;
  color: var(--sage-deep);
  white-space: nowrap;
  transition: background 220ms ease, color 220ms ease, transform 220ms var(--motion-soft);
}

.nav-product-icon {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  object-fit: contain;
  opacity: 0.78;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus-visible {
  background: rgba(220, 200, 165, 0.22);
  color: var(--verde-mate);
  transform: translateX(2px);
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown.is-open .nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--paper);
  cursor: pointer;
}

.menu-toggle span {
  width: 17px;
  height: 2px;
  background: var(--sage-deep);
}

section[id] {
  scroll-margin-top: 142px;
}

.section-anchor {
  display: block;
  height: 0;
  scroll-margin-top: 142px;
}

.hero {
  min-height: calc(100svh - 130px);
  display: grid;
  margin-top: 130px;
  padding: 0;
  color: var(--paper);
  background-color: var(--verde-sombra);
  background-image: url("assets/portada-esencia-ritual.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  animation: hero-image-arrival 1200ms var(--motion-soft) 260ms both;
}

@keyframes hero-image-arrival {
  0% {
    opacity: 0.92;
    filter: saturate(0.88) brightness(0.94);
  }

  100% {
    opacity: 1;
    filter: saturate(1) brightness(1);
  }
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--verde-mate);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  font-family: var(--font-heading);
  font-weight: 500;
  letter-spacing: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(58px, 10vw, 128px);
  line-height: 0.9;
}

.history-title {
  margin-bottom: 18px;
  font-size: clamp(40px, 6vw, 76px);
  line-height: 0.98;
}

.site-header nav a[aria-current="page"] {
  color: var(--brand-green);
  font-weight: 800;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1;
}

h3 {
  margin-bottom: 14px;
  font-size: 30px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 13px 22px;
  font-weight: 800;
  box-shadow: 0 0 0 rgba(53, 71, 53, 0);
  transition:
    transform 240ms var(--motion-soft),
    border-color 240ms ease,
    background 240ms ease,
    box-shadow 240ms ease,
    color 240ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(53, 71, 53, 0.11);
}

.button-primary {
  background: var(--sage);
  color: var(--paper);
}

.button-secondary {
  border-color: rgba(247, 244, 238, 0.58);
  color: var(--paper);
  background: rgba(247, 244, 238, 0.08);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: rgba(247, 244, 238, 0.82);
  background: rgba(247, 244, 238, 0.14);
}

.intro,
.section,
.experience,
.podcast,
.community,
.contact {
  padding: clamp(56px, 8vw, 108px) clamp(20px, 6vw, 76px);
}

.podcast {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 0.45fr);
  gap: clamp(30px, 7vw, 100px);
  align-items: center;
  background: var(--sage-deep);
  color: var(--paper);
}

.podcast-copy {
  max-width: 760px;
}

.podcast-copy > p:not(.eyebrow) {
  max-width: 650px;
  color: rgba(255, 253, 248, 0.76);
  font-size: 18px;
}

.coming-soon {
  display: inline-block;
  margin-top: 16px;
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(255, 253, 248, 0.5);
  font-weight: 800;
}

.podcast-mark {
  display: grid;
  width: min(260px, 58vw);
  aspect-ratio: 1;
  place-items: center;
  justify-self: center;
  border: 1px solid rgba(255, 253, 248, 0.42);
  border-radius: 50%;
}

.podcast-mark span {
  font-family: var(--font-heading);
  font-size: 62px;
}

.community {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 36px;
  background: rgba(220, 200, 165, 0.18);
}

.community .section-heading {
  margin-bottom: 0;
}

.community .section-heading p:last-child {
  max-width: 680px;
  color: var(--ink-soft);
  font-size: 18px;
}

.community .button {
  flex: 0 0 auto;
}

.history {
  background: var(--paper);
}

.history-home > :not(.history-opening) {
  display: none;
}

.history-home .history-opening-copy .button {
  margin-top: 14px;
}

.history-page main {
  padding-top: 130px;
}

.history-manifesto,
.history-opening,
.history-chapters article,
.history-ritual,
.history-dreamers {
  scroll-margin-top: 210px;
}

.history-page-intro {
  position: relative;
  display: flex;
  min-height: clamp(620px, 76vh, 820px);
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  padding: clamp(38px, 5.5vw, 64px) clamp(20px, 6vw, 76px) clamp(320px, 42vh, 460px);
  text-align: center;
  background: var(--fondo-claro);
  border-bottom: 1px solid var(--line);
}

.history-page-intro-copy {
  position: relative;
  z-index: 2;
  width: 100%;
}

.history-page-intro .history-title,
.history-page-intro .history-lead {
  max-width: 860px;
  margin-right: auto;
  margin-left: auto;
}

.history-page-intro .history-title {
  color: var(--verde-mate);
}

.history-page-intro .history-lead {
  max-width: 680px;
}

.history-hero-photo {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: clamp(320px, 44vh, 500px);
  overflow: hidden;
}

.history-hero-photo::before,
.history-hero-photo::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  pointer-events: none;
}

.history-hero-photo::before {
  background: linear-gradient(
    180deg,
    var(--fondo-claro) 0%,
    rgba(247, 244, 239, 0.82) 18%,
    rgba(247, 244, 239, 0.22) 44%,
    rgba(247, 244, 239, 0) 100%
  );
}

.history-hero-photo::after {
  background: rgba(220, 200, 165, 0.15);
}

.history-hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
  filter: blur(2px) saturate(0.82) contrast(0.96);
  transform: scale(1.018);
  transition: transform 1800ms var(--motion-ease), filter 1200ms ease;
}

.history-page-intro:hover .history-hero-photo img {
  filter: blur(2px) saturate(0.88) contrast(0.98);
  transform: scale(1.032);
}

.history-index {
  position: sticky;
  top: 130px;
  z-index: 8;
  display: flex;
  gap: 8px;
  justify-content: center;
  overflow-x: auto;
  padding: 14px clamp(18px, 5vw, 64px);
  background: rgba(247, 244, 239, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.history-index a {
  flex: 0 0 auto;
  padding: 9px 13px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--sage-deep);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: border-color 160ms ease, background 160ms ease;
}

.history-index a:hover,
.history-index a:focus-visible {
  background: rgba(220, 200, 165, 0.28);
  border-color: var(--sand-line);
}

.history-manifesto {
  display: grid;
  grid-template-columns: minmax(230px, 0.56fr) minmax(0, 1fr);
  gap: clamp(38px, 8vw, 112px);
  padding: clamp(64px, 9vw, 124px) clamp(20px, 6vw, 76px);
  background: linear-gradient(90deg, rgba(220, 200, 165, 0.22), rgba(247, 244, 238, 0.96));
}

.history-manifesto .history-section-heading,
.history-dreamers .history-section-heading {
  position: sticky;
  top: 206px;
  align-self: start;
}

.manifesto-text {
  max-width: 820px;
}

.manifesto-text p {
  margin: 0 0 18px;
  color: var(--ink-soft);
  font-size: 18px;
}

.manifesto-text p:first-child,
.manifesto-closing {
  color: var(--sage-deep) !important;
  font-family: var(--font-heading);
  font-size: clamp(25px, 2.8vw, 38px) !important;
  line-height: 1.16;
}

.manifesto-signature {
  display: grid;
  justify-items: start;
  margin: 30px 0 40px;
  text-align: left;
}

.manifesto-signature p {
  margin-bottom: 18px;
  color: var(--sage-deep);
  font-family: var(--font-heading);
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.1;
}

.manifesto-signature img {
  width: clamp(180px, 18vw, 240px);
  height: auto;
}

.history-opening {
  display: grid;
  grid-template-columns: minmax(300px, 0.88fr) minmax(0, 1fr);
  gap: clamp(34px, 7vw, 96px);
  align-items: center;
  padding: clamp(64px, 9vw, 124px) clamp(20px, 6vw, 76px);
  background: var(--paper);
}

.history-opening-image {
  aspect-ratio: 1;
  overflow: hidden;
}

.history-opening-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1400ms var(--motion-ease), filter 900ms ease;
}

.history-opening-image:hover img {
  filter: saturate(0.95) contrast(1.01);
  transform: scale(1.024);
}

.history-opening-copy {
  max-width: 720px;
}

.history-opening-copy > p:not(.eyebrow),
.history-principles p,
.history-chapters p,
.history-ritual-copy p,
.history-dreamers-copy p,
.values-list p {
  color: var(--ink-soft);
  font-size: 18px;
}

.history-lead {
  margin-bottom: 24px;
  color: var(--sage-deep) !important;
  font-family: var(--font-heading);
  font-size: clamp(26px, 3vw, 40px) !important;
  line-height: 1.12;
}

.history-principles {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.72fr) minmax(0, 1fr);
  overflow: hidden;
  background: var(--fondo-claro);
}

.history-principles article {
  position: relative;
  z-index: 0;
  min-width: 0;
  overflow: hidden;
  padding: clamp(46px, 6vw, 84px) clamp(24px, 4vw, 58px);
}

.history-principles article::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url("assets/textures/papel-lino-premium-sutil.jpg");
  background-size: 620px 620px;
  background-position: center;
  content: "";
  pointer-events: none;
}

.history-principles article::before {
  opacity: 0.026;
  mix-blend-mode: multiply;
}

.history-principles article > * {
  position: relative;
  z-index: 1;
}

.history-principles article + article {
  border-left: 1px solid var(--line);
}

.history-principles h2,
.history-principles h3 {
  font-size: clamp(28px, 3vw, 42px);
}

.history-principles .belief {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--verde-mate);
  color: var(--paper);
}

.history-principles .belief::before {
  opacity: 0.05;
  mix-blend-mode: soft-light;
}

.history-principles .belief .eyebrow {
  color: var(--arena);
}

.history-principles blockquote,
.history-chapters blockquote {
  margin: 0;
  font-family: var(--font-heading);
  line-height: 1.15;
}

.history-principles blockquote {
  font-size: clamp(25px, 3vw, 40px);
}

.history-values {
  display: grid;
  grid-template-columns: minmax(240px, 0.56fr) minmax(0, 1fr);
  gap: clamp(42px, 8vw, 120px);
  padding: clamp(64px, 9vw, 124px) clamp(20px, 6vw, 76px);
  background: var(--paper);
}

.history-section-heading {
  position: sticky;
  top: 164px;
  align-self: start;
}

.values-list {
  display: grid;
}

.values-list article {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 20px;
  padding: 26px 0;
  border-top: 1px solid var(--line);
}

.values-list article:last-child {
  border-bottom: 1px solid var(--line);
}

.value-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(220, 200, 165, 0.25);
  font-size: 22px;
}

.values-list h3 {
  margin-bottom: 7px;
  font-size: 28px;
}

.values-list p {
  margin-bottom: 0;
}

.history-chapters {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  background: rgba(220, 200, 165, 0.22);
}

.history-chapters article {
  padding: clamp(58px, 8vw, 112px) clamp(24px, 5vw, 76px);
}

.history-chapters article + article {
  border-left: 1px solid var(--line);
  background: rgba(220, 200, 165, 0.34);
}

.history-chapters blockquote {
  margin: 28px 0;
  padding-left: 22px;
  border-left: 2px solid var(--clay);
  color: var(--sage-deep);
  font-size: clamp(24px, 2.6vw, 36px);
}

.history-emphasis {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--sage-deep) !important;
  font-family: var(--font-heading);
  font-size: clamp(23px, 2.5vw, 34px) !important;
  line-height: 1.2;
}

.history-ritual {
  display: grid;
  grid-template-columns: minmax(240px, 0.68fr) minmax(0, 1fr);
  gap: clamp(40px, 8vw, 120px);
  padding: clamp(64px, 9vw, 124px) clamp(20px, 6vw, 76px);
  background: var(--sage-deep);
  color: var(--paper);
}

.history-ritual .eyebrow {
  color: var(--arena);
}

.history-ritual-copy p {
  color: rgba(255, 253, 248, 0.78);
}

.history-closing {
  grid-column: 1 / -1;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 26px;
  margin-top: 20px;
  padding-top: 38px;
  border-top: 1px solid rgba(255, 253, 248, 0.25);
}

.history-closing strong {
  font-family: var(--font-heading);
  font-size: clamp(36px, 6vw, 82px);
  font-weight: 500;
  line-height: 1;
}

.history-closing span {
  color: rgba(255, 253, 248, 0.74);
  font-size: 18px;
}

.history-dreamers {
  display: grid;
  grid-template-columns: minmax(240px, 0.56fr) minmax(0, 1fr);
  gap: clamp(42px, 8vw, 120px);
  padding: clamp(64px, 9vw, 124px) clamp(20px, 6vw, 76px);
  background: var(--fondo-claro);
  border-top: 1px solid var(--line);
}

.history-dreamers-copy {
  max-width: 960px;
  padding-top: 10px;
}

.history-dreamers-copy p:last-child {
  margin-bottom: 0;
}

.dreamers-photos {
  display: grid;
  grid-template-columns: minmax(0, 1.24fr) minmax(180px, 0.56fr);
  gap: 16px;
  align-items: end;
  margin-bottom: clamp(34px, 5vw, 58px);
}

.dreamers-photo {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--sand-line);
  background: rgba(220, 200, 165, 0.18);
}

.dreamers-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(0.98) sepia(0.08);
  transition: transform 1400ms var(--motion-ease), filter 900ms ease;
}

.dreamers-photo:hover img {
  filter: saturate(0.96) contrast(1) sepia(0.05);
  transform: scale(1.026);
}

.dreamers-photo-wide {
  aspect-ratio: 16 / 9;
}

.dreamers-photo-tall {
  aspect-ratio: 4 / 5;
  max-height: 430px;
}

.dreamers-photos > p {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--sage-deep);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.dreamers-text {
  max-width: 820px;
}

.dreamers-text blockquote {
  margin: 30px 0;
  padding: 26px 0 26px 26px;
  border-left: 2px solid var(--clay);
  color: var(--sage-deep);
  font-family: var(--font-heading);
  font-size: clamp(24px, 2.6vw, 38px);
  line-height: 1.16;
}

.dreamers-closing {
  margin-top: 32px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
  color: var(--sage-deep) !important;
  font-family: var(--font-heading);
  font-size: clamp(26px, 3vw, 42px) !important;
  line-height: 1.16;
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(380px, 1fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: center;
  background: var(--fondo-claro);
  color: var(--charcoal);
}

.intro-text h2 {
  max-width: 820px;
  margin-bottom: 0;
  font-size: clamp(32px, 5vw, 66px);
  line-height: 1.08;
}

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

.pillar-grid article {
  display: grid;
  min-height: 154px;
  place-items: center;
  gap: 14px;
  padding: 22px 12px;
  border: 1px solid var(--sand-line);
  background: rgba(255, 250, 241, 0.56);
  text-align: center;
}

.pillar-grid strong {
  color: var(--verde-profundo);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-line-icon {
  display: inline-block;
  width: 46px;
  height: 46px;
  color: var(--verde-mate);
  background: currentColor;
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
}

.icon-natural {
  -webkit-mask-image: url("assets/icons/brand-natural.svg");
  mask-image: url("assets/icons/brand-natural.svg");
}

.icon-bienestar {
  -webkit-mask-image: url("assets/icons/brand-bienestar.svg");
  mask-image: url("assets/icons/brand-bienestar.svg");
}

.icon-equilibrio {
  -webkit-mask-image: url("assets/icons/brand-equilibrio.svg");
  mask-image: url("assets/icons/brand-equilibrio.svg");
}

.icon-conexion {
  -webkit-mask-image: url("assets/icons/brand-conexion.svg");
  mask-image: url("assets/icons/brand-conexion.svg");
}

.icon-taza {
  -webkit-mask-image: url("assets/icons/brand-taza.svg");
  mask-image: url("assets/icons/brand-taza.svg");
}

.icon-loto {
  -webkit-mask-image: url("assets/icons/brand-loto.svg");
  mask-image: url("assets/icons/brand-loto.svg");
}

.icon-destello {
  -webkit-mask-image: url("assets/icons/brand-destello.svg");
  mask-image: url("assets/icons/brand-destello.svg");
}

.icon-target {
  -webkit-mask-image: url("assets/icons/brand-target.svg");
  mask-image: url("assets/icons/brand-target.svg");
}

.products {
  background: var(--fondo-claro);
}

.products-heading {
  max-width: 940px;
  margin: 0 auto clamp(44px, 7vw, 82px);
  text-align: center;
}

.products-heading h2 {
  color: var(--verde-mate);
}

.products-intro {
  max-width: 760px;
  margin: 24px auto 0;
}

.products-intro p {
  margin-bottom: 18px;
  color: var(--ink-soft);
  font-size: clamp(17px, 1.45vw, 20px);
  line-height: 1.72;
}

.products-intro p:first-child,
.products-intro p:last-child {
  color: var(--sage-deep);
  font-family: var(--font-heading);
  font-size: clamp(23px, 2.35vw, 34px);
  line-height: 1.18;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 24px);
}

.product-card {
  min-height: 310px;
  scroll-margin-top: 142px;
  padding: clamp(26px, 3vw, 36px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 250, 241, 0.58);
  box-shadow: 0 0 0 rgba(53, 71, 53, 0);
  transition:
    transform 260ms var(--motion-soft),
    border-color 260ms ease,
    background 260ms ease,
    box-shadow 260ms ease;
}

.product-card:hover,
.product-card:focus-within {
  border-color: rgba(73, 106, 82, 0.32);
  background: rgba(247, 244, 239, 0.92);
  box-shadow: 0 16px 34px rgba(53, 71, 53, 0.09);
  transform: translateY(-4px);
}

.product-card-icon {
  width: 38px;
  height: 38px;
  margin-bottom: 30px;
  object-fit: contain;
  opacity: 0.86;
  transition: opacity 260ms ease, transform 260ms var(--motion-soft);
}

.product-card:hover .product-card-icon,
.product-card:focus-within .product-card-icon {
  opacity: 1;
  transform: translateY(-2px);
}

.product-card h3 {
  color: var(--verde-profundo);
  font-size: clamp(27px, 2.7vw, 38px);
}

.product-card p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 16px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

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

.ritual-card {
  min-height: 300px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.card-number {
  display: inline-block;
  margin-bottom: 42px;
  color: var(--amber);
  font-weight: 900;
}

.ritual-card p,
.experience-copy p,
.contact p,
.experience-panel span {
  color: var(--ink-soft);
}

.experience {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
  gap: clamp(32px, 6vw, 76px);
  align-items: start;
  background: rgba(220, 200, 165, 0.22);
}

.experience-copy p {
  max-width: 680px;
  font-size: 18px;
}

.experience-panel {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.experience-panel div {
  display: grid;
  gap: 6px;
  padding: 24px;
}

.experience-panel div + div {
  border-top: 1px solid var(--line);
}

.experience-panel strong {
  font-size: 18px;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 0.72fr);
  gap: clamp(32px, 6vw, 76px);
  align-items: start;
  background: var(--paper);
}

.contact-form {
  display: grid;
  gap: 16px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 800;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(247, 244, 238, 0.88);
  color: var(--charcoal);
  font: inherit;
  padding: 14px 15px;
}

textarea {
  resize: vertical;
}

.contact .button-primary {
  width: fit-content;
  border: 0;
  cursor: pointer;
}

.form-note {
  min-height: 24px;
  margin: 0;
  color: var(--sage-deep);
  font-weight: 700;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 26px clamp(20px, 6vw, 76px);
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  background: var(--ivory);
  font-size: 14px;
}

.site-footer img {
  width: 86px;
  height: 74px;
  object-fit: contain;
}

@media (max-width: 1040px) {
  .site-header {
    position: fixed;
    grid-template-columns: 100px minmax(0, 1fr) 44px;
    min-height: 92px;
    padding-top: 6px;
    padding-bottom: 6px;
  }

  .brand {
    width: 92px;
    height: 76px;
  }

  .history-page main {
    padding-top: 92px;
  }

  .history-page-intro {
    min-height: 620px;
    padding-top: clamp(38px, 8vw, 58px);
    padding-bottom: 310px;
  }

  .history-hero-photo {
    height: 330px;
  }

  .history-hero-photo img {
    object-position: center bottom;
  }

  .history-manifesto,
  .history-opening,
  .history-chapters article,
  .history-ritual,
  .history-dreamers {
    scroll-margin-top: 154px;
  }

  .history-index {
    top: 92px;
    justify-content: flex-start;
    padding-right: 20px;
    padding-left: 20px;
  }

  .menu-toggle {
    display: flex;
    grid-column: 3;
  }

  .header-tools {
    position: absolute;
    top: 92px;
    left: 0;
    right: 0;
    max-height: 0;
    align-items: stretch;
    overflow: hidden;
    padding: 0 clamp(20px, 5vw, 64px);
    background: var(--ivory);
    border-bottom: 1px solid transparent;
    opacity: 0;
    pointer-events: none;
    transition: max-height 180ms ease, padding 180ms ease, opacity 180ms ease;
  }

  .header-tools.is-open {
    max-height: 560px;
    padding-top: 14px;
    padding-bottom: 18px;
    border-bottom-color: var(--line);
    opacity: 1;
    pointer-events: auto;
  }

  .social-links {
    justify-content: flex-start;
  }

  .site-header nav {
    display: grid;
    width: 100%;
    gap: 0;
    justify-content: stretch;
  }

  .site-header nav a,
  .nav-dropdown-toggle {
    padding: 8px 0;
    text-align: left;
  }

  .nav-dropdown {
    display: grid;
    align-items: stretch;
  }

  .nav-dropdown-toggle {
    justify-content: space-between;
    width: 100%;
  }

  .nav-dropdown-menu {
    position: static;
    display: grid;
    max-height: 0;
    min-width: 0;
    overflow: hidden;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: none;
    transform: none;
    transition: max-height 180ms ease, padding 180ms ease;
  }

  .nav-dropdown.is-open .nav-dropdown-menu,
  .nav-dropdown:focus-within .nav-dropdown-menu {
    max-height: 280px;
    padding: 2px 0 10px 14px;
    pointer-events: auto;
  }

  .nav-dropdown-menu a {
    padding: 7px 0;
    white-space: normal;
  }

  .nav-product-icon {
    width: 15px;
    height: 15px;
  }

  .hero {
    min-height: 0;
    aspect-ratio: 1.35;
    margin-top: 92px;
    padding: 0;
    background-size: 110% auto;
    background-position: center;
  }

  .intro,
  .experience,
  .podcast,
  .contact {
    grid-template-columns: 1fr;
  }

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

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

  .history-opening,
  .history-manifesto,
  .history-values,
  .history-ritual,
  .history-dreamers {
    grid-template-columns: 1fr;
  }

  .history-principles {
    grid-template-columns: 1fr;
  }

  .history-principles article + article {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .history-section-heading {
    position: static;
  }

  .history-manifesto .history-section-heading,
  .history-dreamers .history-section-heading {
    position: static;
  }

  .history-chapters {
    grid-template-columns: 1fr;
  }

  .history-chapters article + article {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .history-closing {
    flex-direction: column;
  }

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

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

  .ritual-card {
    min-height: 0;
  }

  .card-number {
    margin-bottom: 28px;
  }

  .site-footer {
    align-items: center;
  }
}

@media (max-width: 680px) {
  .products-grid {
    grid-template-columns: 1fr;
  }

  .product-card {
    min-height: 0;
  }

  .dreamers-photos {
    grid-template-columns: 1fr;
  }

  .dreamers-photo-tall {
    max-height: none;
  }
}

@media (max-width: 460px) {
  .history-page-intro {
    min-height: 560px;
    padding-top: 34px;
    padding-bottom: 270px;
  }

  .manifesto-signature img {
    max-width: 60vw;
  }

  .history-hero-photo {
    height: 285px;
  }

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

  .button,
  .contact .button-primary {
    width: 100%;
  }

}
