/* =========================================================
   ALTORÉ — SISTEMA VISUAL COMPLETO
========================================================= */

:root {
  --bg-dark: #120d09;
  --bg-dark-soft: #1b140f;
  --bg-dark-card: #211810;

  --cream: #f5efe5;
  --cream-soft: #eee3d4;
  --cream-light: #fffaf2;

  --brown: #26180f;
  --brown-soft: #715e4f;
  --brown-light: #a68c76;

  --gold: #c98a42;
  --gold-light: #e2b06d;
  --gold-dark: #9d6126;

  --green: #264a31;
  --green-dark: #1e3927;

  --white: #fffaf2;
  --black: #0a0705;

  --border-dark: rgba(38, 24, 15, 0.16);
  --border-light: rgba(255, 250, 242, 0.15);

  --shadow-small: 0 10px 30px rgba(29, 18, 11, 0.11);
  --shadow-medium: 0 22px 55px rgba(29, 18, 11, 0.16);
  --shadow-large: 0 35px 90px rgba(19, 12, 8, 0.22);

  --radius-small: 12px;
  --radius: 22px;
  --radius-large: 34px;

  --container: 1240px;
  --header-height: 88px;

  --ease: cubic-bezier(0.22, 0.75, 0.25, 1);
  --transition: 280ms ease;
}

/* =========================================================
   RESET
========================================================= */

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;

  overflow-x: hidden;

  background: var(--cream);
  color: var(--brown);

  font-family: "Work Sans", sans-serif;
  font-size: 16px;
  line-height: 1.65;

  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

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

::selection {
  background: var(--gold);
  color: var(--black);
}

/* =========================================================
   UTILIDADES
========================================================= */

.wrap {
  width: min(var(--container), calc(100% - 64px));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 130px 0;
}

.section-kicker {
  margin: 0 0 18px;

  color: var(--gold);

  font-family: "IBM Plex Mono", monospace;
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-heading {
  max-width: 900px;
  margin-bottom: 66px;
}

.section-heading h2,
.contact-copy h2,
.promise-content h2 {
  margin: 0;

  font-family: "Fraunces", serif;
  font-size: clamp(3rem, 5.2vw, 5.6rem);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.section-description {
  max-width: 730px;
  margin: 24px 0 0;

  color: var(--brown-soft);

  font-size: 1.05rem;
  line-height: 1.75;
}

.section-heading-light {
  color: var(--white);
}

.section-heading-light .section-description {
  color: rgba(255, 250, 242, 0.68);
}

.skip-link {
  position: fixed;
  top: -100px;
  left: 18px;

  z-index: 2000;

  padding: 11px 18px;

  background: var(--white);
  color: var(--brown);
}

.skip-link:focus {
  top: 18px;
}

/* =========================================================
   CURSOR DECORATIVO
========================================================= */

.custom-cursor,
.custom-cursor-dot {
  position: fixed;

  z-index: 2000;

  pointer-events: none;

  border-radius: 50%;

  transform: translate(-50%, -50%);
}

.custom-cursor {
  width: 34px;
  height: 34px;

  border: 1px solid rgba(201, 138, 66, 0.7);

  transition:
    width 180ms ease,
    height 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.custom-cursor-dot {
  width: 5px;
  height: 5px;

  background: var(--gold);
}

.custom-cursor.hover {
  width: 56px;
  height: 56px;

  border-color: var(--gold);
  background: rgba(201, 138, 66, 0.12);
}

/* =========================================================
   PROGRESO DE SCROLL
========================================================= */

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;

  z-index: 1500;

  width: 100%;
  height: 3px;

  background: transparent;
}

.scroll-progress span {
  display: block;

  width: 0;
  height: 100%;

  background:
    linear-gradient(
      90deg,
      var(--gold-dark),
      var(--gold-light)
    );

  box-shadow: 0 0 15px rgba(226, 176, 109, 0.5);
}

/* =========================================================
   HEADER
========================================================= */

.site-header {
  position: fixed;
  top: 3px;
  left: 0;

  z-index: 500;

  width: 100%;
  height: var(--header-height);

  color: var(--white);

  transition:
    height 300ms ease,
    background 300ms ease,
    backdrop-filter 300ms ease,
    box-shadow 300ms ease,
    border-color 300ms ease;
}

.site-header.scrolled {
  height: 70px;

  background: rgba(17, 12, 8, 0.86);

  border-bottom: 1px solid rgba(255, 255, 255, 0.08);

  backdrop-filter: blur(18px);

  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.18);
}

.header-shell {
  width: min(1380px, calc(100% - 72px));
  height: 100%;

  margin-inline: auto;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 38px;
}

.brand {
  position: relative;
  z-index: 520;

  display: flex;
  align-items: center;

  width: 138px;

  flex-shrink: 0;

  transition:
    width 300ms ease,
    transform 300ms ease;
}

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

.site-header.scrolled .brand {
  width: 115px;
}

.brand img {
  width: auto;
  max-height: 100px;

  object-fit: contain;
  object-position: left center;
}

/* =========================================================
   NAVEGACIÓN
========================================================= */

.main-nav {
  display: flex;
  align-items: center;

  gap: clamp(20px, 2vw, 38px);
}

.nav-link {
  position: relative;

  display: inline-flex;
  align-items: center;

  min-height: 48px;

  color: rgba(255, 250, 242, 0.72);

  font-size: 0.84rem;
  font-weight: 500;

  transition:
    color 250ms ease,
    transform 250ms ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--white);
}

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

.nav-link::after {
  content: "";

  position: absolute;
  left: 50%;
  bottom: 3px;

  width: 0;
  height: 1px;

  background: var(--gold-light);

  transform: translateX(-50%);

  transition: width 260ms ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.header-contact {
  position: relative;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: 12px;

  min-height: 46px;

  padding: 10px 21px;

  overflow: hidden;

  border: 1px solid rgba(226, 176, 109, 0.65);

  color: var(--gold-light);

  font-size: 0.84rem;
  font-weight: 600;

  transition:
    color 280ms ease,
    border-color 280ms ease,
    transform 280ms ease;
}

.header-contact::before {
  content: "";

  position: absolute;
  inset: 0;

  z-index: -1;

  background: var(--gold);

  transform: translateY(105%);

  transition: transform 280ms ease;
}

.header-contact:hover {
  color: var(--black);
  border-color: var(--gold);

  transform: translateY(-2px);
}

.header-contact:hover::before {
  transform: translateY(0);
}

/* =========================================================
   MENÚ MÓVIL
========================================================= */

.nav-toggle {
  position: relative;
  z-index: 530;

  display: none;

  width: 48px;
  height: 48px;

  padding: 0;

  border: 1px solid rgba(255, 255, 255, 0.14);

  background: rgba(255, 255, 255, 0.03);
}

.nav-toggle span {
  position: absolute;
  left: 12px;

  width: 22px;
  height: 1px;

  background: var(--white);

  transition:
    top 280ms ease,
    opacity 280ms ease,
    transform 280ms ease;
}

.nav-toggle span:nth-child(1) {
  top: 15px;
}

.nav-toggle span:nth-child(2) {
  top: 23px;
}

.nav-toggle span:nth-child(3) {
  top: 31px;
}

.nav-toggle.active span:nth-child(1) {
  top: 23px;
  transform: rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  top: 23px;
  transform: rotate(-45deg);
}

.menu-backdrop {
  position: fixed;
  inset: 0;

  z-index: 450;

  visibility: hidden;
  opacity: 0;

  background: rgba(7, 5, 3, 0.6);

  backdrop-filter: blur(7px);

  transition:
    opacity 300ms ease,
    visibility 300ms ease;
}

.menu-backdrop.visible {
  visibility: visible;
  opacity: 1;
}

/* =========================================================
   HERO
========================================================= */

.hero {
  position: relative;

  min-height: 100svh;

  display: flex;
  align-items: center;

  overflow: hidden;
  isolation: isolate;

  color: var(--white);
  background: var(--bg-dark);
}

.hero-background {
  position: absolute;
  inset: -3%;

  z-index: -5;

  background:
    url("../images/hero-fondo.png")
    center center / cover no-repeat;

  transform: scale(1.05);

  animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from {
    transform: scale(1.05);
  }

  to {
    transform: scale(1.1);
  }
}

.hero-vignette {
  position: absolute;
  inset: 0;

  z-index: -4;

  background:
    linear-gradient(
      90deg,
      rgba(8, 6, 4, 0.97) 0%,
      rgba(8, 6, 4, 0.88) 35%,
      rgba(8, 6, 4, 0.56) 61%,
      rgba(8, 6, 4, 0.12) 100%
    ),
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.32),
      transparent 32%,
      transparent 68%,
      rgba(0, 0, 0, 0.66)
    );
}

.hero-noise {
  position: absolute;
  inset: 0;

  z-index: -3;

  opacity: 0.045;

  pointer-events: none;

  background-image:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='.8'/%3E%3C/svg%3E");
}

.hero-container {
  position: relative;

  width: min(1380px, calc(100% - 72px));
  min-height: 100svh;

  margin-inline: auto;

  display: flex;
  align-items: center;

  padding-top: 125px;
  padding-bottom: 96px;
}

.hero-content {
  position: relative;
  z-index: 20;

  width: min(690px, 54vw);
}

.hero-kicker {
  display: flex;
  align-items: center;
  flex-wrap: wrap;

  gap: 10px;

  margin: 0 0 22px;

  color: var(--gold-light);

  font-family: "IBM Plex Mono", monospace;
  font-size: 0.72rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.kicker-dot {
  width: 6px;
  height: 6px;

  border-radius: 50%;

  background: var(--gold);

  box-shadow: 0 0 12px rgba(201, 138, 66, 0.8);
}

.kicker-divider {
  width: 24px;
  height: 1px;

  background: rgba(226, 176, 109, 0.46);
}

.hero-title {
  margin: 0;

  font-family: "Fraunces", serif;
  font-size: clamp(4rem, 6.15vw, 7.1rem);
  font-weight: 500;
  line-height: 0.89;
  letter-spacing: -0.057em;
}

.hero-title-line {
  display: block;

  overflow: hidden;

  padding-bottom: 0.06em;
}

.hero-title-line > span {
  display: block;

  transform: translateY(120%);

  animation:
    heroTitleReveal
    900ms
    var(--ease)
    forwards;
}

.hero-title-line:nth-child(1) > span {
  animation-delay: 140ms;
}

.hero-title-line:nth-child(2) > span {
  animation-delay: 240ms;
}

.hero-title-line:nth-child(3) > span {
  animation-delay: 340ms;
}

.hero-title-line:nth-child(4) > span {
  animation-delay: 440ms;
}

.hero-title-line:nth-child(5) > span {
  animation-delay: 540ms;
}

@keyframes heroTitleReveal {
  to {
    transform: translateY(0);
  }
}

.hero-title-accent {
  color: var(--gold-light);
  font-style: italic;
}

.hero-description {
  max-width: 570px;

  margin: 27px 0 0;

  color: rgba(255, 250, 242, 0.77);

  font-size: 1rem;
  line-height: 1.75;
}

.hero-animate {
  opacity: 0;
  transform: translateY(24px);

  animation:
    heroFadeUp
    800ms
    ease
    forwards;
}

.hero-kicker {
  animation-delay: 100ms;
}

.hero-description {
  animation-delay: 650ms;
}

.hero-actions {
  animation-delay: 750ms;
}

.hero-metrics {
  animation-delay: 850ms;
}

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

/* =========================================================
   BOTONES HERO
========================================================= */

.hero-actions {
  display: flex;
  flex-wrap: wrap;

  gap: 14px;

  margin-top: 31px;
}

.button {
  position: relative;

  min-height: 55px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: 17px;

  padding: 12px 25px;

  overflow: hidden;

  font-size: 0.87rem;
  font-weight: 600;

  transition:
    transform 250ms ease,
    color 250ms ease,
    background 250ms ease,
    border-color 250ms ease;
}

.button-primary {
  color: var(--black);
  background: var(--gold);
}

.button-primary::before {
  content: "";

  position: absolute;
  inset: 0;

  background: var(--gold-light);

  transform: translateX(-102%);

  transition: transform 300ms ease;
}

.button-primary:hover::before {
  transform: translateX(0);
}

.button-outline {
  color: var(--white);

  border: 1px solid rgba(255, 250, 242, 0.56);

  background: rgba(16, 11, 7, 0.18);

  backdrop-filter: blur(8px);
}

.button-outline:hover {
  color: var(--brown);

  border-color: var(--white);
  background: var(--white);
}

.button span {
  position: relative;
  z-index: 1;
}

.button-arrow {
  transition: transform 250ms ease;
}

.button:hover .button-arrow {
  transform: translate(3px, 3px);
}

/* =========================================================
   MÉTRICAS HERO
========================================================= */

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));

  max-width: 670px;

  margin-top: 38px;

  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-metric {
  display: flex;
  align-items: flex-start;

  gap: 10px;

  padding: 19px 14px 0;

  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-metric:first-child {
  padding-left: 0;
  border-left: none;
}

.metric-symbol {
  color: var(--gold);

  font-size: 1.1rem;
  line-height: 1;
}

.hero-metric strong,
.hero-metric small {
  display: block;
}

.hero-metric strong {
  color: var(--white);

  font-size: 0.82rem;
}

.hero-metric small {
  margin-top: 3px;

  color: rgba(255, 250, 242, 0.56);

  font-size: 0.67rem;
}

/* =========================================================
   OBJETOS HERO
========================================================= */

.hero-scene {
  position: absolute;
  inset: 0 0 0 auto;

  z-index: 10;

  width: 58%;
  height: 100%;

  pointer-events: none;
}

.hero-object {
  position: absolute;

  will-change: transform;
}

.hero-object img {
  width: 100%;
  height: auto;

  object-fit: contain;

  filter:
    drop-shadow(
      0 28px 42px rgba(0, 0, 0, 0.36)
    );
}

.hero-object-branch {
  top: 15%;
  right: 4%;

  width: min(37vw, 560px);

  animation: branchFloat 7s ease-in-out infinite;
}

.hero-object-sack {
  right: 1%;
  bottom: -2%;

  width: min(29vw, 440px);

  animation: sackFloat 6.5s ease-in-out infinite;
}

.hero-object-cup {
  right: 31%;
  bottom: -1%;

  width: min(22vw, 340px);

  animation: cupFloat 5.7s ease-in-out infinite;
}

@keyframes branchFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(-1deg);
  }

  50% {
    transform: translate3d(-8px, -12px, 0) rotate(1deg);
  }
}

@keyframes sackFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -8px, 0);
  }
}

@keyframes cupFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(0);
  }

  50% {
    transform: translate3d(-7px, -10px, 0) rotate(-1deg);
  }
}

.hero-glow {
  position: absolute;
  right: 0;
  bottom: 0;

  z-index: -1;

  width: 560px;
  height: 560px;

  border-radius: 50%;

  background: rgba(211, 142, 65, 0.15);

  filter: blur(100px);
}

/* =========================================================
   HERO LATERAL Y SCROLL
========================================================= */

.hero-side-label {
  position: absolute;
  top: 50%;
  right: -76px;

  z-index: 25;

  display: flex;
  align-items: center;

  gap: 13px;

  color: rgba(255, 255, 255, 0.33);

  font-family: "IBM Plex Mono", monospace;
  font-size: 0.61rem;
  letter-spacing: 0.18em;

  transform:
    rotate(90deg)
    translateY(-50%);
}

.hero-side-label i {
  width: 48px;
  height: 1px;

  background: rgba(255, 255, 255, 0.22);
}

.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 18px;

  z-index: 30;

  display: flex;
  flex-direction: column;
  align-items: center;

  gap: 7px;

  color: rgba(255, 255, 255, 0.57);

  transform: translateX(-50%);
}

.hero-scroll-text {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.58rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero-scroll-mouse {
  position: relative;

  width: 25px;
  height: 40px;

  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 18px;
}

.hero-scroll-mouse i {
  position: absolute;
  top: 8px;
  left: 50%;

  width: 3px;
  height: 7px;

  border-radius: 10px;

  background: var(--gold-light);

  transform: translateX(-50%);

  animation: scrollMouse 1.8s ease infinite;
}

@keyframes scrollMouse {
  0% {
    opacity: 0;
    transform: translate(-50%, 0);
  }

  30% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translate(-50%, 14px);
  }
}

/* =========================================================
   NOSOTROS
========================================================= */

/* =========================================================
   NOSOTROS
========================================================= */

.about-section {
  overflow: hidden;

  background:
    linear-gradient(
      180deg,
      #f6f0e6 0%,
      #f2e9dc 100%
    );
}

.about-orb {
  position: absolute;

  border-radius: 50%;

  pointer-events: none;

  filter: blur(10px);
}

.about-orb-left {
  top: 80px;
  left: -280px;

  width: 520px;
  height: 520px;

  background:
    radial-gradient(
      circle,
      rgba(201, 138, 66, 0.13),
      transparent 68%
    );
}

.about-orb-right {
  right: -240px;
  bottom: 220px;

  width: 460px;
  height: 460px;

  background:
    radial-gradient(
      circle,
      rgba(38, 74, 49, 0.09),
      transparent 68%
    );
}

/* ENCABEZADO */

.about-header {
  display: grid;

  grid-template-columns:
    minmax(0, 1.15fr)
    minmax(320px, 0.85fr);

  gap: clamp(60px, 9vw, 140px);

  align-items: end;

  margin-bottom: 70px;
}

.about-header-title {
  max-width: 760px;
}

.about-header h2 {
  margin: 0;

  font-family: "Fraunces", serif;
  font-size: clamp(3rem, 5.4vw, 5.8rem);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.052em;
}

.about-header-intro {
  max-width: 470px;

  padding-bottom: 8px;
}

.about-header-line {
  display: block;

  width: 58px;
  height: 1px;

  margin-bottom: 21px;

  background: var(--gold);
}

.about-header-intro p {
  margin: 0;

  color: var(--brown-soft);

  font-size: 1rem;
  line-height: 1.75;
}

/* BLOQUE PRINCIPAL */

.about-main-grid {
  display: grid;

  grid-template-columns:
    minmax(0, 1.08fr)
    minmax(380px, 0.92fr);

  gap: clamp(35px, 5vw, 76px);

  align-items: stretch;
}

.about-main-image {
  position: relative;

  min-height: 640px;

  margin: 0;

  overflow: hidden;

  border-radius: 26px;

  background: var(--cream-soft);

  box-shadow: var(--shadow-medium);
}

.about-main-image img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  transition: transform 900ms var(--ease);
}

.about-main-image:hover img {
  transform: scale(1.04);
}

.about-main-image::before {
  content: "";

  position: absolute;
  inset: 0;

  z-index: 1;

  background:
    linear-gradient(
      180deg,
      transparent 55%,
      rgba(10, 7, 5, 0.76)
    );

  pointer-events: none;
}

.about-main-image figcaption {
  position: absolute;
  right: 25px;
  bottom: 24px;
  left: 25px;

  z-index: 2;

  display: flex;
  align-items: center;

  gap: 16px;

  color: var(--white);
}

.about-caption-number {
  display: grid;
  place-items: center;

  width: 44px;
  height: 44px;

  flex: 0 0 auto;

  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;

  font-family: "IBM Plex Mono", monospace;
  font-size: 0.67rem;
}

.about-main-image figcaption strong,
.about-main-image figcaption small {
  display: block;
}

.about-main-image figcaption strong {
  font-family: "Fraunces", serif;
  font-size: 1.32rem;
  font-weight: 500;
}

.about-main-image figcaption small {
  margin-top: 2px;

  color: rgba(255, 250, 242, 0.7);

  font-size: 0.74rem;
}

/* CONTENIDO DERECHO */

.about-main-content {
  display: flex;
  flex-direction: column;
  justify-content: center;

  padding: 35px 0;
}

.about-content-label {
  color: var(--gold-dark);

  font-family: "IBM Plex Mono", monospace;
  font-size: 0.7rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.about-main-content h3 {
  margin: 20px 0 0;

  font-family: "Fraunces", serif;
  font-size: clamp(2rem, 3.2vw, 3.5rem);
  font-weight: 500;
  line-height: 1.07;
  letter-spacing: -0.035em;
}

.about-main-content > p {
  max-width: 540px;

  margin: 25px 0 0;

  color: var(--brown-soft);

  line-height: 1.75;
}

.about-principles {
  margin-top: 38px;

  border-top: 1px solid var(--border-dark);
}

.about-principles article {
  display: grid;

  grid-template-columns: 40px 1fr;

  gap: 16px;

  padding: 20px 0;

  border-bottom: 1px solid var(--border-dark);

  transition:
    padding-left 260ms ease,
    background 260ms ease;
}

.about-principles article:hover {
  padding-left: 10px;

  background:
    linear-gradient(
      90deg,
      rgba(201, 138, 66, 0.07),
      transparent
    );
}

.about-principles article > span {
  color: var(--gold);

  font-family: "IBM Plex Mono", monospace;
  font-size: 0.67rem;
}

.about-principles strong {
  display: block;

  color: var(--green);

  font-size: 0.93rem;
}

.about-principles p {
  margin: 5px 0 0;

  color: var(--brown-soft);

  font-size: 0.83rem;
  line-height: 1.55;
}

.about-company {
  display: flex;
  align-items: center;

  gap: 16px;

  margin-top: 28px;
}

.about-company span {
  width: 43px;
  height: 1px;

  background: var(--gold);
}

.about-company p {
  margin: 0;

  color: var(--gold-dark);

  font-family: "IBM Plex Mono", monospace;
  font-size: 0.68rem;
  letter-spacing: 0.09em;
}

/* DOS IMÁGENES SECUNDARIAS */

.about-secondary-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);

  gap: 24px;

  margin-top: 26px;
}

.about-secondary-card {
  position: relative;

  min-height: 340px;

  margin: 0;

  overflow: hidden;

  border-radius: 22px;

  background: var(--cream-soft);
}

.about-secondary-card img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  transition: transform 850ms var(--ease);
}

.about-secondary-card:hover img {
  transform: scale(1.05);
}

.about-secondary-card::before {
  content: "";

  position: absolute;
  inset: 0;

  z-index: 1;

  background:
    linear-gradient(
      180deg,
      transparent 50%,
      rgba(10, 7, 5, 0.7)
    );

  pointer-events: none;
}

.about-secondary-card figcaption {
  position: absolute;
  right: 21px;
  bottom: 20px;
  left: 21px;

  z-index: 2;

  display: flex;
  align-items: center;

  gap: 14px;

  color: var(--white);
}

.about-secondary-card figcaption > span {
  color: var(--gold-light);

  font-family: "IBM Plex Mono", monospace;
  font-size: 0.67rem;
}

.about-secondary-card strong,
.about-secondary-card small {
  display: block;
}

.about-secondary-card strong {
  font-family: "Fraunces", serif;
  font-size: 1.23rem;
  font-weight: 500;
}

.about-secondary-card small {
  margin-top: 2px;

  color: rgba(255, 250, 242, 0.66);

  font-size: 0.72rem;
}

/* PANORÁMICA DE CIERRE */

.about-landscape-banner {
  position: relative;

  min-height: 440px;

  margin: 26px 0 0;

  overflow: hidden;

  border-radius: 26px;

  background: var(--cream-soft);
}

.about-landscape-banner img {
  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center 62%;

  transition: transform 1000ms var(--ease);
}

.about-landscape-banner:hover img {
  transform: scale(1.035);
}

.about-landscape-overlay {
  position: absolute;
  inset: 0;

  z-index: 1;

  background:
    linear-gradient(
      90deg,
      rgba(10, 7, 5, 0.78),
      rgba(10, 7, 5, 0.18) 62%,
      rgba(10, 7, 5, 0.28)
    );
}

.about-landscape-banner figcaption {
  position: absolute;
  right: 35px;
  bottom: 32px;
  left: 35px;

  z-index: 2;

  display: flex;
  justify-content: space-between;
  align-items: flex-end;

  gap: 30px;

  color: var(--white);
}

.about-landscape-label {
  display: block;

  margin-bottom: 8px;

  color: var(--gold-light);

  font-family: "IBM Plex Mono", monospace;
  font-size: 0.67rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.about-landscape-banner strong {
  display: block;

  max-width: 640px;

  font-family: "Fraunces", serif;
  font-size: clamp(1.75rem, 3.2vw, 3.25rem);
  font-weight: 500;
  line-height: 1.08;
}

.about-landscape-banner figcaption > p {
  margin: 0;

  color: rgba(255, 250, 242, 0.72);

  font-family: "IBM Plex Mono", monospace;
  font-size: 0.68rem;
  letter-spacing: 0.07em;
  white-space: nowrap;
}

/* =========================================================
   ORIGEN
========================================================= */

.origin-section {
  overflow: hidden;

  color: var(--white);
  background: var(--bg-dark);
}

.origin-section::before {
  content: "";

  position: absolute;
  inset: 0;

  background:
    radial-gradient(
      circle at 86% 13%,
      rgba(201, 138, 66, 0.13),
      transparent 34%
    ),
    linear-gradient(
      rgba(255, 255, 255, 0.02) 1px,
      transparent 1px
    );

  background-size:
    auto,
    100% 80px;

  pointer-events: none;
}

.origin-background-text {
  position: absolute;
  top: 80px;
  right: -50px;

  color: rgba(255, 255, 255, 0.018);

  font-family: "Fraunces", serif;
  font-size: clamp(9rem, 22vw, 22rem);
  line-height: 1;

  pointer-events: none;
}

.origin-gallery {
  position: relative;

  display: grid;

  grid-template-columns: 1.35fr 0.65fr 0.65fr;
  grid-template-rows: repeat(2, 285px);

  gap: 18px;
}

.origin-card {
  position: relative;

  margin: 0;

  overflow: hidden;

  border-radius: var(--radius);

  background: var(--bg-dark-card);
}

.origin-feature {
  grid-row: 1 / 3;
}

.origin-image {
  height: 100%;
  overflow: hidden;
}

.origin-image img {
  height: 100%;

  object-fit: cover;

  transition:
    transform 900ms var(--ease),
    filter 600ms ease;
}

.origin-card:hover img {
  transform: scale(1.055);
}

.origin-card::after {
  content: "";

  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      180deg,
      transparent 35%,
      rgba(8, 6, 4, 0.84)
    );

  pointer-events: none;
}

.origin-card figcaption {
  position: absolute;
  inset: auto 0 0;

  z-index: 2;

  padding: 22px;
}

.origin-feature figcaption {
  padding: 40px 30px 30px;
}

.origin-location {
  display: block;

  margin-bottom: 7px;

  color: var(--gold-light);

  font-family: "IBM Plex Mono", monospace;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.origin-feature strong {
  display: block;

  max-width: 470px;

  font-family: "Fraunces", serif;
  font-size: 2rem;
  line-height: 1.1;
}

.origin-card-arrow {
  position: absolute;
  right: 28px;
  bottom: 28px;

  display: grid;
  place-items: center;

  width: 40px;
  height: 40px;

  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;

  transition:
    transform 250ms ease,
    background 250ms ease;
}

.origin-card:hover .origin-card-arrow {
  transform: rotate(45deg);
  background: rgba(255, 255, 255, 0.12);
}

.origin-small figcaption strong,
.origin-small figcaption span {
  display: block;
}

.origin-small figcaption strong {
  font-size: 0.92rem;
}

.origin-small figcaption span {
  margin-top: 3px;

  color: rgba(255, 250, 242, 0.58);

  font-size: 0.73rem;
}

/* =========================================================
   ZONAS
========================================================= */

.origin-zones {
  display: grid;
  grid-template-columns: repeat(3, 1fr);

  gap: 18px;

  margin-top: 58px;
}

.origin-zone {
  position: relative;

  padding: 32px;

  overflow: hidden;

  border: 1px solid var(--border-light);

  background: rgba(255, 255, 255, 0.024);

  transition:
    transform 300ms ease,
    background 300ms ease,
    border-color 300ms ease;
}

.origin-zone::before {
  content: "";

  position: absolute;
  top: 0;
  left: 0;

  width: 0;
  height: 3px;

  background: var(--gold);

  transition: width 350ms ease;
}

.origin-zone:hover {
  transform: translateY(-8px);

  border-color: rgba(226, 176, 109, 0.4);

  background: rgba(255, 255, 255, 0.045);
}

.origin-zone:hover::before {
  width: 100%;
}

.origin-zone-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.origin-zone-number {
  color: var(--gold);

  font-family: "IBM Plex Mono", monospace;
  font-size: 0.72rem;
}

.origin-zone-icon {
  color: rgba(255, 255, 255, 0.34);

  font-size: 1.4rem;
}

.origin-zone h3 {
  margin: 26px 0 4px;

  font-family: "Fraunces", serif;
  font-size: 2.1rem;
  font-weight: 500;
}

.origin-altitude {
  margin: 0;

  color: var(--gold-light);

  font-family: "IBM Plex Mono", monospace;
  font-size: 0.73rem;
}

.origin-zone > p:not(.origin-altitude) {
  margin: 20px 0 0;

  color: rgba(255, 250, 242, 0.66);

  font-size: 0.9rem;
}

.origin-zone a {
  display: inline-flex;

  gap: 10px;

  margin-top: 24px;

  color: var(--white);

  font-size: 0.8rem;
  font-weight: 600;
}

.origin-zone a span {
  color: var(--gold);

  transition: transform 250ms ease;
}

.origin-zone a:hover span {
  transform: translateX(5px);
}

/* =========================================================
   PROCESO
========================================================= */

.process-section {
  overflow: hidden;

  background: var(--cream-soft);
}

.process-heading {
  max-width: 830px;
}

.process-timeline {
  position: relative;

  max-width: 1130px;

  margin-inline: auto;
  padding-top: 30px;
}

.process-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;

  width: 2px;

  overflow: hidden;

  background: rgba(38, 24, 15, 0.13);

  transform: translateX(-50%);
}

.process-line span {
  display: block;

  width: 100%;
  height: 0;

  background:
    linear-gradient(
      180deg,
      var(--gold),
      var(--green)
    );
}

.process-step {
  position: relative;

  display: grid;
  grid-template-columns: 1fr 1fr;

  gap: 80px;

  min-height: 440px;

  margin-bottom: 95px;

  align-items: center;
}

.process-step-left .process-step-image {
  grid-column: 1;
}

.process-step-left .process-step-content {
  grid-column: 2;
}

.process-step-right .process-step-image {
  grid-column: 2;
}

.process-step-right .process-step-content {
  grid-column: 1;
  grid-row: 1;
}

.process-step-number {
  position: absolute;
  top: 50%;
  left: 50%;

  z-index: 3;

  display: grid;
  place-items: center;

  width: 58px;
  height: 58px;

  border: 1px solid var(--gold);
  border-radius: 50%;

  background: var(--cream-soft);

  color: var(--gold-dark);

  transform: translate(-50%, -50%);

  box-shadow: 0 0 0 10px var(--cream-soft);
}

.process-step-number span {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.72rem;
}

.process-step-image {
  margin: 0;

  min-height: 390px;

  overflow: hidden;

  border-radius: var(--radius);

  box-shadow: var(--shadow-medium);
}

.process-step-image img {
  height: 100%;

  object-fit: cover;

  transition: transform 900ms var(--ease);
}

.process-step:hover .process-step-image img {
  transform: scale(1.045);
}

.process-step-content {
  max-width: 430px;
}

.process-step-label {
  color: var(--gold);

  font-family: "IBM Plex Mono", monospace;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.process-step-content h3 {
  margin: 12px 0 14px;

  font-family: "Fraunces", serif;
  font-size: clamp(2.2rem, 3vw, 3.4rem);
  font-weight: 500;
  line-height: 1;
}

.process-step-content > p {
  color: var(--brown-soft);

  line-height: 1.75;
}

.process-step-content ul {
  display: flex;
  flex-wrap: wrap;

  gap: 10px;

  margin: 24px 0 0;
  padding: 0;

  list-style: none;
}

.process-step-content li {
  padding: 7px 11px;

  border: 1px solid var(--border-dark);

  color: var(--green);

  font-size: 0.74rem;
}

/* =========================================================
   PRODUCTOS
========================================================= */

.products-section {
  overflow: hidden;

  background: var(--cream);
}

.products-heading {
  max-width: 850px;
}

.products-showcase {
  display: grid;

  gap: 32px;
}

.product-card {
  display: grid;
  grid-template-columns: 1fr 1fr;

  min-height: 540px;

  overflow: hidden;

  border: 1px solid var(--border-dark);

  background: var(--cream-light);

  box-shadow: var(--shadow-small);
}

.product-card-reverse .product-image {
  order: 2;
}

.product-card-reverse .product-content {
  order: 1;
}

.product-image {
  position: relative;

  overflow: hidden;
}

.product-image img {
  height: 100%;

  object-fit: cover;

  transition: transform 900ms var(--ease);
}

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

.product-badge {
  position: absolute;
  top: 22px;
  left: 22px;

  padding: 9px 12px;

  color: var(--white);
  background: rgba(18, 13, 9, 0.72);

  backdrop-filter: blur(8px);

  font-family: "IBM Plex Mono", monospace;
  font-size: 0.67rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-content {
  display: flex;
  flex-direction: column;
  justify-content: center;

  padding: 58px;
}

.product-number {
  color: var(--gold);

  font-family: "IBM Plex Mono", monospace;
  font-size: 0.7rem;
}

.product-category {
  margin: 22px 0 0;

  color: var(--gold-dark);

  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
}

.product-content h3 {
  margin: 9px 0 18px;

  font-family: "Fraunces", serif;
  font-size: clamp(2.7rem, 4vw, 4.7rem);
  font-weight: 500;
  line-height: 0.98;
}

.product-content > p:not(.product-category) {
  max-width: 460px;

  color: var(--brown-soft);

  line-height: 1.75;
}

.product-features {
  display: flex;
  flex-wrap: wrap;

  gap: 9px;

  margin-top: 25px;
}

.product-features span {
  padding: 7px 11px;

  border: 1px solid var(--border-dark);

  color: var(--green);

  font-size: 0.73rem;
}

.product-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;

  max-width: 250px;

  margin-top: 30px;
  padding: 15px 18px;

  background: var(--green);
  color: var(--white);

  font-size: 0.8rem;
  font-weight: 600;
}

/* =========================================================
   SERVICIOS
========================================================= */

.services-panel {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;

  gap: 70px;

  margin-top: 90px;
  padding: 64px;

  color: var(--white);
  background: var(--green);
}

.services-intro h3 {
  margin: 0;

  max-width: 420px;

  font-family: "Fraunces", serif;
  font-size: clamp(2.6rem, 4vw, 4.4rem);
  font-weight: 500;
  line-height: 0.98;
}

.services-intro > p:last-child {
  max-width: 420px;

  margin: 22px 0 0;

  color: rgba(255, 250, 242, 0.68);
}

.service-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.17);
}

.service-trigger {
  width: 100%;

  display: grid;
  grid-template-columns: 50px 1fr 34px;

  gap: 15px;

  align-items: center;

  padding: 22px 0;

  border: 0;

  text-align: left;

  color: var(--white);
  background: transparent;
}

.service-number {
  color: var(--gold-light);

  font-family: "IBM Plex Mono", monospace;
  font-size: 0.7rem;
}

.service-title {
  font-size: 1.08rem;
  font-weight: 600;
}

.service-icon {
  display: grid;
  place-items: center;

  width: 30px;
  height: 30px;

  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;

  transition: transform 280ms ease;
}

.service-item.active .service-icon {
  transform: rotate(45deg);
}

.service-content {
  display: grid;

  grid-template-rows: 0fr;

  transition: grid-template-rows 350ms var(--ease);
}

.service-content > * {
  overflow: hidden;
}

.service-item.active .service-content {
  grid-template-rows: 1fr;
}

.service-content p {
  margin: 0;

  max-width: 620px;

  color: rgba(255, 250, 242, 0.68);
}

.service-content a {
  display: inline-flex;

  gap: 10px;

  margin: 16px 0 22px;

  color: var(--gold-light);

  font-size: 0.8rem;
  font-weight: 600;
}

/* =========================================================
   PROMESA
========================================================= */

.promise-section {
  min-height: 760px;

  display: flex;
  align-items: center;

  overflow: hidden;

  color: var(--white);
  background: var(--bg-dark);
}

.promise-background {
  position: absolute;
  inset: -6%;

  background:
    url("../images/origen-neblina.png")
    center center / cover no-repeat;

  transform: scale(1.06);
}

.promise-overlay {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      90deg,
      rgba(12, 8, 5, 0.94),
      rgba(12, 8, 5, 0.55)
    ),
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.2),
      rgba(0, 0, 0, 0.42)
    );
}

.promise-container {
  position: relative;
  z-index: 2;
}

.promise-content {
  max-width: 900px;
}

.promise-content h2 {
  max-width: 800px;
}

.promise-content blockquote {
  max-width: 900px;

  margin: 36px 0 0;
  padding-left: 28px;

  border-left: 2px solid var(--gold);

  color: rgba(255, 250, 242, 0.88);

  font-family: "Fraunces", serif;
  font-size: clamp(1.55rem, 2.6vw, 2.5rem);
  line-height: 1.42;
}

.promise-values {
  display: grid;
  grid-template-columns: repeat(4, 1fr);

  gap: 1px;

  margin-top: 56px;

  background: rgba(255, 255, 255, 0.14);
}

.promise-value {
  padding: 28px;

  background: rgba(16, 11, 7, 0.72);

  backdrop-filter: blur(10px);

  transition:
    transform 280ms ease,
    background 280ms ease;
}

.promise-value:hover {
  transform: translateY(-7px);

  background: rgba(33, 24, 16, 0.86);
}

.promise-value-icon {
  display: block;

  margin-bottom: 18px;

  color: var(--gold-light);

  font-size: 1.4rem;
}

.promise-value strong {
  display: block;

  color: var(--gold-light);

  font-size: 1rem;
}

.promise-value p {
  margin: 8px 0 0;

  color: rgba(255, 250, 242, 0.64);

  font-size: 0.84rem;
}

/* =========================================================
   CONTACTO
========================================================= */

.contact-section {
  overflow: hidden;

  background: var(--cream);
}

.contact-decoration {
  position: absolute;
  top: -70px;
  right: -20px;

  color: rgba(38, 24, 15, 0.025);

  font-family: "Fraunces", serif;
  font-size: clamp(13rem, 30vw, 28rem);
  line-height: 1;

  pointer-events: none;
}

.contact-grid {
  position: relative;
  z-index: 2;

  display: grid;
  grid-template-columns: 0.85fr 1.15fr;

  gap: 85px;

  align-items: start;
}

.contact-copy h2 {
  max-width: 620px;
}

.contact-intro {
  max-width: 530px;

  margin: 24px 0 0;

  color: var(--brown-soft);

  font-size: 1.08rem;
}

.contact-details {
  margin-top: 38px;

  border-top: 1px solid var(--border-dark);
}

.contact-details article {
  display: grid;
  grid-template-columns: 135px 1fr;

  gap: 18px;

  padding: 16px 0;

  border-bottom: 1px solid var(--border-dark);
}

.contact-detail-label {
  color: var(--gold-dark);

  font-family: "IBM Plex Mono", monospace;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-details a,
.contact-details strong {
  font-size: 0.9rem;
}

.contact-details a:hover {
  color: var(--gold-dark);
}

.contact-socials {
  display: flex;
  flex-wrap: wrap;

  gap: 16px;

  margin-top: 30px;
}

.contact-socials a {
  display: inline-flex;

  gap: 9px;

  color: var(--green);

  font-size: 0.84rem;
  font-weight: 600;
}

.contact-socials a span:last-child {
  transition: transform 250ms ease;
}

.contact-socials a:hover span:last-child {
  transform: translate(3px, -3px);
}

/* =========================================================
   FORMULARIO
========================================================= */

.contact-form {
  padding: 46px;

  background: var(--cream-light);

  box-shadow: var(--shadow-large);
}

.form-heading {
  display: flex;
  align-items: center;

  gap: 16px;

  margin-bottom: 34px;
}

.form-heading-number {
  color: var(--gold);

  font-family: "IBM Plex Mono", monospace;
  font-size: 0.7rem;
}

.form-heading h3 {
  margin: 0;

  font-family: "Fraunces", serif;
  font-size: 2rem;
  font-weight: 500;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);

  gap: 20px;
}

.form-field {
  position: relative;

  margin-bottom: 24px;
}

.form-field input,
.form-field textarea {
  width: 100%;

  padding: 24px 0 11px;

  border: 0;
  border-bottom: 1px solid rgba(38, 24, 15, 0.27);

  outline: 0;

  color: var(--brown);
  background: transparent;
}

.form-field textarea {
  min-height: 150px;

  resize: vertical;
}

.form-field label {
  position: absolute;
  top: 21px;
  left: 0;

  color: var(--brown-soft);

  font-size: 0.84rem;

  pointer-events: none;

  transition:
    top 220ms ease,
    font-size 220ms ease,
    color 220ms ease;
}

.form-field input:focus + label,
.form-field input:not(:placeholder-shown) + label,
.form-field textarea:focus + label,
.form-field textarea:not(:placeholder-shown) + label {
  top: 0;

  color: var(--gold-dark);

  font-size: 0.67rem;
}

.form-line {
  position: absolute;
  left: 0;
  bottom: 0;

  width: 0;
  height: 1px;

  background: var(--gold);

  transition: width 280ms ease;
}

.form-field input:focus ~ .form-line,
.form-field textarea:focus ~ .form-line {
  width: 100%;
}

.form-error {
  display: none;

  margin-top: 6px;

  color: #9b3f2f;

  font-size: 0.7rem;
}

.form-field.invalid .form-error {
  display: block;
}

.form-field.invalid input,
.form-field.invalid textarea {
  border-color: #9b3f2f;
}

.form-submit {
  position: relative;

  width: 100%;
  min-height: 56px;

  display: flex;
  align-items: center;
  justify-content: center;

  gap: 18px;

  border: 0;

  color: var(--black);
  background: var(--gold);

  font-weight: 600;

  transition:
    background 250ms ease,
    transform 250ms ease;
}

.form-submit:hover {
  background: var(--gold-light);
}

.form-submit-loader {
  display: none;

  width: 18px;
  height: 18px;

  border: 2px solid rgba(0, 0, 0, 0.2);
  border-top-color: var(--black);
  border-radius: 50%;

  animation: loaderSpin 700ms linear infinite;
}

.form-submit.loading .form-submit-loader {
  display: block;
}

.form-submit.loading .form-submit-icon {
  display: none;
}

@keyframes loaderSpin {
  to {
    transform: rotate(360deg);
  }
}

.form-status {
  margin: 14px 0 0;

  color: var(--brown-soft);

  font-size: 0.76rem;
}

/* =========================================================
   WHATSAPP
========================================================= */

.whatsapp-button img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.whatsapp-button {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 400;

  display: inline-flex;
  align-items: center;
  gap: 10px;

  min-height: 54px;
  padding: 10px 20px;

  border-radius: 999px;

  color: #ffffff;
  background: #25d366;

  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.24);

  transition:
    transform 250ms ease,
    box-shadow 250ms ease,
    background 250ms ease;
}

.whatsapp-button:hover {
  transform: translateY(-4px);
  background: #20bd5a;

  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.3);
}

.whatsapp-text {
  font-size: 0.82rem;
  font-weight: 600;
}
/* =========================================================
   FOOTER
========================================================= */

.site-footer {
  padding: 0 0 24px;

  color: rgba(255, 250, 242, 0.72);
  background: var(--bg-dark);
}

.footer-line {
  width: 0;
  height: 3px;

  background:
    linear-gradient(
      90deg,
      var(--gold-dark),
      var(--gold-light)
    );
}

.site-footer.visible .footer-line {
  width: 100%;

  transition: width 1100ms var(--ease);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.25fr 0.65fr 0.75fr 1.2fr;

  gap: 50px;

  padding-top: 76px;
}

.footer-brand img {
  width: 180px;
}

.footer-brand p {
  max-width: 260px;

  margin: 22px 0 0;

  color: rgba(255, 250, 242, 0.58);
}

.footer-brand span {
  display: block;

  margin-top: 22px;

  color: var(--white);

  font-size: 0.78rem;
}

.footer-brand small {
  display: block;

  margin-top: 4px;

  color: var(--gold-light);
}

.footer-column-title {
  margin: 0 0 17px;

  color: var(--gold);

  font-family: "IBM Plex Mono", monospace;
  font-size: 0.67rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-column nav {
  display: grid;

  gap: 9px;
}

.footer-column a {
  font-size: 0.84rem;
}

.footer-column a:hover {
  color: var(--gold-light);
}

.footer-message {
  text-align: right;
}

.footer-message > p {
  margin: 0;

  color: var(--gold);

  font-family: "IBM Plex Mono", monospace;
  font-size: 0.68rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.footer-message strong {
  display: block;

  margin-top: 12px;

  font-family: "Fraunces", serif;
  font-size: clamp(2rem, 3vw, 3.3rem);
  line-height: 1.05;

  color: var(--white);
}

.footer-back-top {
  display: inline-flex;

  gap: 10px;

  margin-top: 28px;

  color: var(--gold-light);

  font-size: 0.78rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;

  gap: 20px;

  margin-top: 58px;
  padding-top: 20px;

  border-top: 1px solid var(--border-light);

  font-size: 0.73rem;
}

/* =========================================================
   ANIMACIONES SCROLL
========================================================= */

.reveal {
  opacity: 0;

  transform: translateY(34px);

  transition:
    opacity 850ms var(--ease),
    transform 850ms var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.image-reveal {
  position: relative;

  overflow: hidden;
}

.image-reveal::after {
  content: "";

  position: absolute;
  inset: 0;

  z-index: 3;

  background: var(--gold);

  transform-origin: right center;
  transform: scaleX(1);

  transition:
    transform 900ms var(--ease);
}

.image-reveal.visible::after,
.reveal.visible .image-reveal::after {
  transform: scaleX(0);
}

/* =========================================================
   RESPONSIVE — 1200px
========================================================= */

@media (max-width: 1200px) {

  .header-shell,
  .hero-container {
    width: min(100% - 50px, 1080px);
  }

  .main-nav {
    gap: 19px;
  }

  .nav-link {
    font-size: 0.78rem;
  }

  .hero-content {
    width: min(650px, 60vw);
  }

  .hero-title {
    font-size: clamp(4rem, 7vw, 6.5rem);
  }

  .hero-object-branch {
    right: -6%;
  }

  .hero-object-sack {
    right: -4%;
  }

  .product-content {
    padding: 45px;
  }

}

/* =========================================================
   RESPONSIVE — 980px
========================================================= */

@media (max-width: 980px) {

  :root {
    --header-height: 72px;
  }

  .section {
    padding: 105px 0;
  }

  .wrap,
  .header-shell,
  .hero-container {
    width: min(100% - 34px, 820px);
  }

  .site-header,
  .site-header.scrolled {
    height: 72px;
  }

  .brand,
  .site-header.scrolled .brand {
    width: 110px;
  }

  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: 0;

    z-index: 510;

    width: min(430px, 88vw);
    height: 100svh;

    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;

    gap: 0;

    padding: 100px 34px 42px;

    background:
      linear-gradient(
        155deg,
        rgba(35, 25, 17, 0.99),
        rgba(13, 9, 6, 0.99)
      );

    box-shadow: -24px 0 70px rgba(0, 0, 0, 0.3);

    transform: translateX(105%);

    transition: transform 380ms var(--ease);
  }

  .main-nav.open {
    transform: translateX(0);
  }

  .nav-link {
    min-height: auto;

    padding: 14px 0;

    border-bottom: 1px solid rgba(255, 255, 255, 0.09);

    font-family: "Fraunces", serif;
    font-size: clamp(1.8rem, 6vw, 2.6rem);
    font-weight: 500;
  }

  .nav-link::after {
    display: none;
  }

  .header-contact {
    margin-top: 25px;

    width: 100%;
    min-height: 54px;
  }

  .hero-container {
    align-items: flex-start;

    padding-top: 122px;
    padding-bottom: 125px;
  }

  .hero-content {
    width: min(100%, 660px);
  }

  .hero-title {
    font-size: clamp(4rem, 10.5vw, 6.4rem);
  }

  .hero-scene {
    width: 100%;

    opacity: 0.5;
  }

  .hero-object-branch {
    top: 15%;
    right: -18%;

    width: 58vw;
  }

  .hero-object-sack {
    right: -10%;
    bottom: -3%;

    width: 45vw;
  }

  .hero-object-cup {
    right: 23%;
    bottom: -1%;

    width: 34vw;
  }

  .hero-side-label {
    display: none;
  }

  .hero-vignette {
    background:
      linear-gradient(
        90deg,
        rgba(8, 6, 4, 0.97),
        rgba(8, 6, 4, 0.82) 62%,
        rgba(8, 6, 4, 0.5)
      ),
      linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.35),
        transparent 37%,
        rgba(0, 0, 0, 0.72)
      );
  }

  .about-story {
    grid-template-columns: 1fr 1fr;

    grid-template-areas:
      "feature feature"
      "copy copy"
      "field-left field-right"
      "landscape landscape";
  }

  .about-story-copy {
    padding: 26px 0;
  }

  .about-feature-image {
    min-height: 520px;
  }

  .origin-gallery {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 430px repeat(2, 260px);
  }

  .origin-feature {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .origin-zones {
    grid-template-columns: 1fr;
  }

  .process-line {
    left: 28px;
  }

  .process-step {
    grid-template-columns: 1fr;

    gap: 20px;

    min-height: auto;

    margin-bottom: 74px;
    padding-left: 85px;
  }

  .process-step-left .process-step-image,
  .process-step-right .process-step-image,
  .process-step-left .process-step-content,
  .process-step-right .process-step-content {
    grid-column: 1;
    grid-row: auto;
  }

  .process-step-number {
    top: 0;
    left: 28px;

    transform: translate(-50%, 0);
  }

  .process-step-content {
    max-width: none;
  }

  .process-step-image {
    min-height: 380px;
  }

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

  .product-card-reverse .product-image,
  .product-card-reverse .product-content {
    order: initial;
  }

  .product-image {
    min-height: 430px;
  }

  .services-panel {
    grid-template-columns: 1fr;

    gap: 45px;

    padding: 45px;
  }

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

  .contact-grid {
    grid-template-columns: 1fr;

    gap: 60px;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;

    gap: 50px;
  }

  .footer-message {
    text-align: left;
  }

  .about-header {
  grid-template-columns: 1fr;

  gap: 28px;

  margin-bottom: 52px;
  }

  .about-header-intro {
    max-width: 650px;
  }

  .about-main-grid {
    grid-template-columns: 1fr;
  }

  .about-main-image {
    min-height: 540px;
  }

  .about-main-content {
    padding: 14px 0 10px;
  }

}

/* =========================================================
   RESPONSIVE — 640px
========================================================= */

@media (max-width: 640px) {

  .custom-cursor,
  .custom-cursor-dot {
    display: none;
  }

  .section {
    padding: 82px 0;
  }

  .wrap,
  .header-shell,
  .hero-container {
    width: calc(100% - 24px);
  }

  .section-heading {
    margin-bottom: 44px;
  }

  .section-heading h2,
  .contact-copy h2,
  .promise-content h2 {
    font-size: clamp(2.7rem, 13vw, 4rem);
  }

  .section-description {
    font-size: 0.94rem;
  }

  .hero-container {
    min-height: 100svh;

    padding-top: 105px;
    padding-bottom: 110px;
  }

  .hero-kicker {
    max-width: 300px;

    font-size: 0.58rem;
    line-height: 1.7;
  }

  .hero-title {
    font-size: clamp(3.55rem, 17vw, 4.9rem);
    line-height: 0.9;
  }

  .hero-description {
    max-width: 92%;

    font-size: 0.9rem;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;

    max-width: 340px;
  }

  .button {
    width: 100%;
  }

  .hero-metrics {
    grid-template-columns: repeat(2, 1fr);

    max-width: 390px;
  }

  .hero-metric {
    padding: 16px 10px 10px;

    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .hero-metric:nth-child(3) {
    padding-left: 0;
    border-left: none;
  }

  .hero-scene {
    opacity: 0.31;
  }

  .hero-object-branch {
    top: 18%;
    right: -43%;

    width: 92vw;
  }

  .hero-object-sack {
    right: -29%;
    bottom: -1%;

    width: 74vw;
  }

  .hero-object-cup {
    right: 24%;
    bottom: 0;

    width: 50vw;
  }

  .hero-scroll-text {
    display: none;
  }

  .about-story {
    display: block;
  }

  .about-story > * {
    margin-bottom: 16px;
  }

  .about-feature-image,
  .about-field-image,
  .about-landscape-image {
    min-height: 310px;
  }

  .about-story-copy {
    padding: 18px 0 24px;
  }

  .about-value {
    grid-template-columns: 34px 1fr;
  }

  .origin-gallery {
    grid-template-columns: 1fr;
    grid-template-rows: 390px repeat(4, 240px);
  }

  .origin-feature {
    grid-column: auto;
  }

  .origin-zone {
    padding: 26px;
  }

  .process-step {
    padding-left: 58px;
  }

  .process-line {
    left: 18px;
  }

  .process-step-number {
    left: 18px;

    width: 44px;
    height: 44px;

    box-shadow: 0 0 0 7px var(--cream-soft);
  }

  .process-step-image {
    min-height: 270px;
  }

  .process-step-content h3 {
    font-size: 2.25rem;
  }

  .product-image {
    min-height: 320px;
  }

  .product-content {
    padding: 30px 24px;
  }

  .product-content h3 {
    font-size: 3rem;
  }

  .services-panel {
    margin-top: 60px;
    padding: 30px 24px;
  }

  .service-trigger {
    grid-template-columns: 38px 1fr 30px;
  }

  .promise-section {
    min-height: auto;
  }

  .promise-values {
    grid-template-columns: 1fr;
  }

  .promise-content blockquote {
    padding-left: 20px;

    font-size: 1.4rem;
  }

  .contact-form {
    padding: 30px 22px;
  }

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

  .contact-details article {
    grid-template-columns: 1fr;
    gap: 4px;
  }

   .whatsapp-button {
    width: 54px;
    height: 54px;
    padding: 0;
    justify-content: center;
  }

  .whatsapp-text {
    display: none;
  }

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

  .footer-message {
    text-align: left;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .about-header {
  margin-bottom: 40px;
  }

  .about-header h2 {
    font-size: clamp(2.75rem, 13vw, 4rem);
  }

  .about-main-image {
    min-height: 390px;

    border-radius: 18px;
  }

  .about-main-image figcaption {
    right: 16px;
    bottom: 15px;
    left: 16px;
  }

  .about-main-content {
    padding-top: 12px;
  }

  .about-main-content h3 {
    font-size: 2.3rem;
  }

  .about-secondary-grid {
    grid-template-columns: 1fr;

    gap: 16px;

    margin-top: 18px;
  }

  .about-secondary-card {
    min-height: 290px;

    border-radius: 18px;
  }

  .about-landscape-banner {
    min-height: 350px;

    margin-top: 16px;

    border-radius: 18px;
  }

  .about-landscape-banner figcaption {
    right: 18px;
    bottom: 18px;
    left: 18px;

    display: block;
  }

  .about-landscape-banner figcaption > p {
    margin-top: 16px;

    white-space: normal;
  }

}

/* =========================================================
   REDUCIR MOVIMIENTO
========================================================= */

@media (prefers-reduced-motion: reduce) {

  html {
    scroll-behavior: auto;
  }

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

  .reveal {
    opacity: 1;
    transform: none;
  }

  .image-reveal::after {
    display: none;
  }

}