/* ------------------------------------------------------------------
   MONATIA — editorial dark theme
   Black, warm gold, white, italic serif for emphasis
------------------------------------------------------------------- */

:root {
  --bg:           #0a0908;
  --bg-2:         #100e0c;
  --bg-3:         #15120f;
  --ink:          #f5f1ea;
  --ink-soft:     #cfc8bd;
  --ink-mute:     #8a8580;
  --ink-faint:    #4a4641;
  --gold:         #c5a572;
  --gold-soft:    #8a7548;
  --gold-faint:   #3d3424;
  --rule:         #1f1c18;

  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --sans:  "Inter", system-ui, -apple-system, sans-serif;

  --gutter: clamp(1.25rem, 4vw, 3.5rem);
  --max:    78rem;

  --ease:   cubic-bezier(.2, .8, .2, 1);
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a   { color: inherit; text-decoration: none; }

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

/* warm grain over everything (subtle, prints-feel) */
body::before {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 100;
  opacity: .035;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 .9 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--gold); color: var(--bg);
  padding: .5rem .75rem; font-size: .8rem;
  letter-spacing: .12em; text-transform: uppercase;
}
.skip-link:focus { left: 1rem; top: 1rem; z-index: 200; }

/* ---------- Typography primitives ---------- */

.display {
  font-family: var(--sans);
  font-weight: 500;
  font-size: clamp(2.6rem, 7vw, 6.25rem);
  line-height: .98;
  letter-spacing: -0.025em;
  margin: 0;
  color: var(--ink);
}
.display--m { font-size: clamp(2.1rem, 5.4vw, 4.5rem); }
.display--l { font-size: clamp(2.8rem, 8vw, 7rem); }

.display .serif,
.serif {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: -0.005em;
}

.eyebrow,
.num {
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 1.75rem;
}
.num--small { font-size: .65rem; letter-spacing: .28em; }
.eyebrow    { color: var(--ink-mute); }

.lede {
  font-size: 1.12rem;
  color: var(--ink-soft);
  line-height: 1.55;
}

em { font-family: var(--serif); font-style: italic; font-weight: 500; color: var(--ink); }

/* ---------- Header ---------- */

.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem var(--gutter);
  background: transparent;
  transition: background .35s var(--ease), border-color .35s var(--ease), backdrop-filter .35s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.is-stuck {
  background: rgba(10, 9, 8, .82);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom-color: var(--rule);
}

.brand {
  display: inline-flex; align-items: center; gap: .65rem;
  font-family: var(--sans);
  font-weight: 500;
  letter-spacing: .35em;
  font-size: .78rem;
  text-transform: uppercase;
  color: var(--ink);
}
.brand img { width: 28px; height: 28px; }

.nav {
  display: flex; align-items: center; gap: 2rem;
}
.nav a {
  font-size: .78rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  position: relative;
  padding: .25rem 0;
  transition: color .25s var(--ease);
}
.nav a:hover { color: var(--ink); }
.nav a:not(.nav__cta)::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -2px;
  height: 1px; background: var(--gold);
  transition: right .35s var(--ease);
}
.nav a:not(.nav__cta):hover::after { right: 0; }

.nav__cta {
  border: 1px solid var(--gold-soft);
  color: var(--gold);
  padding: .55rem .95rem;
  position: relative;
  overflow: hidden;
  transition: color .35s var(--ease), border-color .35s var(--ease);
}
.nav__cta::before {
  content: "";
  position: absolute; inset: 0;
  background: var(--gold);
  transform: translateY(101%);
  transition: transform .45s var(--ease);
  z-index: -1;
}
.nav__cta:hover { color: var(--bg); border-color: var(--gold); }
.nav__cta:hover::before { transform: translateY(0); }

@media (max-width: 760px) {
  .nav { gap: 1rem; }
  .nav a:not(.nav__cta) { display: none; }
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  min-height: 100vh;
  padding: clamp(7rem, 14vh, 11rem) var(--gutter) clamp(4rem, 8vh, 6rem);
  display: flex; flex-direction: column; justify-content: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse 60% 50% at 70% 35%, rgba(197,165,114,.09), transparent 60%),
    radial-gradient(ellipse 80% 70% at 20% 100%, rgba(37, 99, 164, .08), transparent 60%),
    var(--bg);
}
.hero__inner { max-width: 60rem; position: relative; z-index: 2; }
.hero__sub {
  margin: 1.75rem 0 0;
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  color: var(--ink-soft);
  max-width: 30ch;
}
.hero__meta {
  margin-top: 3rem;
  display: flex; gap: .9rem; align-items: center; flex-wrap: wrap;
  font-size: .72rem; letter-spacing: .28em; text-transform: uppercase;
  color: var(--ink-faint);
}
.hero__meta .dot { color: var(--gold-soft); }
.hero__cta-link {
  color: var(--gold);
  border-bottom: 1px solid var(--gold-faint);
  padding-bottom: 1px;
  transition: border-color .25s var(--ease), color .25s var(--ease);
}
.hero__cta-link:hover { color: var(--ink); border-bottom-color: var(--gold); }

/* Capa decorativa */
.hero__bg {
  position: absolute; inset: 0; z-index: 0;
  pointer-events: none;
  color: var(--gold);
}
.hero__grid {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  opacity: .06;
}

.hero__float {
  position: absolute;
  width: 96px; height: 96px;
  color: var(--gold-soft);
  fill: none; stroke: currentColor; stroke-width: 1.4;
  opacity: .15;
  animation: drift 22s ease-in-out infinite;
  will-change: transform;
}
.hero__float--1 { top: 18%;  left: 8%;   animation-delay:  -2s; animation-duration: 26s; width: 70px; height: 70px; }
.hero__float--2 { top: 70%;  left: 14%;  animation-delay:  -8s; animation-duration: 30s; width: 80px; height: 80px; opacity: .12; }
.hero__float--3 { top: 22%;  right: 14%; animation-delay: -14s; animation-duration: 28s; width: 90px; height: 90px; opacity: .1; }
.hero__float--4 { top: 78%;  right: 24%; animation-delay: -20s; animation-duration: 32s; width: 64px; height: 64px; opacity: .13; }

@keyframes drift {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  25%      { transform: translate(20px, -15px) rotate(4deg); }
  50%      { transform: translate(-12px, 18px) rotate(-3deg); }
  75%      { transform: translate(14px, 8px) rotate(2deg); }
}

/* Logo grande del hero con mouse-tilt */
.hero__mark-wrap {
  position: absolute;
  right: clamp(-2rem, -2vw, -1rem);
  top: 50%;
  transform: translateY(-50%);
  width: clamp(22rem, 42vw, 38rem);
  perspective: 1000px;
  pointer-events: none;
  z-index: 1;
  opacity: .14;
}
.hero__mark {
  width: 100%; height: auto;
  display: block;
  transform: rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  transition: transform .4s var(--ease);
  will-change: transform;
  animation: heroMarkIn 1.6s var(--ease) both .2s, heroMarkPulse 6s ease-in-out infinite 2s;
}

@keyframes heroMarkIn {
  0%   { opacity: 0; transform: rotateY(-25deg) scale(.9); }
  100% { opacity: 1; transform: rotateY(0) scale(1); }
}
@keyframes heroMarkPulse {
  0%, 100% { filter: brightness(1) drop-shadow(0 0 0 transparent); }
  50%      { filter: brightness(1.1) drop-shadow(0 0 40px rgba(197,165,114,.15)); }
}

/* Entrada stagger */
.stagger {
  opacity: 0;
  transform: translateY(24px);
  animation: staggerIn .9s var(--ease) both;
  animation-delay: var(--d, 0s);
}
.display .stagger { display: inline-block; }
@keyframes staggerIn {
  to { opacity: 1; transform: none; }
}

.scroll-cue {
  position: absolute;
  left: var(--gutter);
  bottom: 2rem;
  display: inline-flex; flex-direction: column; align-items: flex-start; gap: .9rem;
  color: var(--ink-mute);
  font-size: .68rem; letter-spacing: .32em; text-transform: uppercase;
}
.scroll-cue__line {
  display: block; width: 1px; height: 56px;
  background: linear-gradient(to bottom, var(--gold) 0%, transparent 100%);
  animation: cueDrop 2.4s var(--ease) infinite;
  transform-origin: top;
}
@keyframes cueDrop {
  0%   { transform: scaleY(0); opacity: 0; }
  20%  { transform: scaleY(1); opacity: 1; }
  100% { transform: scaleY(1) translateY(40%); opacity: 0; }
}

@media (max-width: 760px) {
  .hero__mark-wrap { right: -8rem; top: 12%; transform: none; width: 26rem; opacity: .09; }
  .hero__float { display: none; }
  .scroll-cue { display: none; }
}

/* ---------- Marquee ---------- */

.marquee {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: linear-gradient(180deg, var(--bg-2), var(--bg));
  padding: 1.5rem 0;
  mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
}
.marquee__track {
  display: inline-flex;
  align-items: center;
  gap: 2.5rem;
  white-space: nowrap;
  animation: marquee 38s linear infinite;
  padding-left: 100%;
}
.marquee__track > span {
  font-family: var(--sans);
  font-weight: 400;
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  letter-spacing: -0.005em;
  color: var(--ink-soft);
  text-transform: none;
}
.marquee__track > span i {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  color: var(--gold);
}
.marquee__sep {
  color: var(--gold);
  font-size: 1rem !important;
  opacity: .7;
}
@keyframes marquee {
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee__track { animation: none; padding-left: 0; }
}

/* ---------- Section base ---------- */

.section {
  position: relative;
  padding: clamp(5rem, 12vh, 9rem) var(--gutter);
  border-top: 1px solid var(--rule);
}
.section__head {
  max-width: 60rem;
  margin-bottom: clamp(2.5rem, 6vh, 4.5rem);
}
.section__intro {
  margin-top: 1.75rem;
  max-width: 42ch;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

/* ---------- Tira de credenciales ---------- */

.strip {
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: clamp(2rem, 5vh, 3.25rem) var(--gutter);
  background: var(--bg);
}
.strip ul {
  list-style: none; padding: 0; margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1rem, 3vw, 3rem);
  max-width: var(--max);
  margin: 0 auto;
}
.strip li {
  display: flex; flex-direction: column; gap: .35rem;
  padding: 0 clamp(.5rem, 1.5vw, 1.25rem);
  border-left: 1px solid var(--rule);
}
.strip li:first-child { border-left: 0; padding-left: 0; }
.strip__num {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(2.4rem, 4.5vw, 3.4rem);
  line-height: 1;
  color: var(--gold);
  font-variant-numeric: tabular-nums;
}
.strip__num small {
  font-family: var(--sans);
  font-style: normal;
  font-size: .55em;
  font-weight: 500;
  margin-left: .1em;
  color: var(--gold-soft);
  letter-spacing: .02em;
}
.strip__label {
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ink-mute);
  max-width: 16ch;
  line-height: 1.4;
}

@media (max-width: 820px) {
  .strip ul { grid-template-columns: 1fr 1fr; row-gap: 2rem; }
  .strip li:nth-child(3) { border-left: 0; padding-left: 0; }
}
@media (max-width: 460px) {
  .strip ul { grid-template-columns: 1fr; }
  .strip li { border-left: 0; padding-left: 0; }
}

/* ---------- 01 Historia ---------- */

.history__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: start;
}
.history__copy p {
  margin: 0 0 1.25rem;
  color: var(--ink-soft);
  max-width: 52ch;
}
.history__copy p:first-child { color: var(--ink); }

.history__pull {
  position: sticky; top: 6rem;
  border: 1px solid var(--gold-faint);
  padding: 2rem 1.75rem;
  background: linear-gradient(180deg, rgba(197,165,114,.04), rgba(197,165,114,0));
  position: relative;
}
.history__pull::before,
.history__pull::after {
  content: ""; position: absolute; width: 12px; height: 12px;
  border: 1px solid var(--gold);
}
.history__pull::before { top: -1px; left: -1px;  border-right: 0; border-bottom: 0; }
.history__pull::after  { bottom: -1px; right: -1px; border-left: 0; border-top: 0; }

.history__pull-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 4.5rem;
  line-height: 1;
  color: var(--gold);
  display: block;
  margin-bottom: 1rem;
}
.history__pull-label {
  font-size: .72rem; letter-spacing: .32em; text-transform: uppercase;
  color: var(--ink-mute); margin: 0 0 .5rem;
}
.history__pull-text {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.5rem;
  line-height: 1.25;
  color: var(--ink);
  margin: 0;
}

@media (max-width: 820px) {
  .history__grid { grid-template-columns: 1fr; }
  .history__pull { position: static; }
}

/* ---------- 02 Productos ---------- */

.section--products { background: var(--bg-2); }

.catalog {
  list-style: none;
  margin: 0; padding: 0;
  border-top: 1px solid var(--rule);
}
.catalog__row {
  display: grid;
  grid-template-columns: 5rem minmax(0, 1fr) minmax(0, 1.6fr) 4.5rem;
  gap: clamp(1rem, 3vw, 3rem);
  align-items: center;
  padding: 1.6rem 0;
  border-bottom: 1px solid var(--rule);
  position: relative;
  cursor: default;
  transition: padding .4s var(--ease), background .4s var(--ease);
}
.catalog__row::before {
  content: ""; position: absolute; left: 0; top: 0;
  height: 1px; width: 0;
  background: var(--gold);
  transition: width .55s var(--ease);
}
.catalog__row:hover {
  padding-left: 1.2rem;
  background: linear-gradient(90deg, rgba(197,165,114,.04), transparent 70%);
}
.catalog__row:hover::before { width: 100%; }
.catalog__row:hover .catalog__name { color: var(--gold); }

.catalog__index {
  font-size: .72rem;
  letter-spacing: .26em;
  color: var(--ink-faint);
  font-variant-numeric: tabular-nums;
}
.catalog__name {
  font-family: var(--sans);
  font-weight: 500;
  font-size: clamp(1.4rem, 2.6vw, 2.3rem);
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--ink);
  transition: color .35s var(--ease);
}
.catalog__name em { color: var(--gold); }
.catalog__note {
  color: var(--ink-mute);
  font-size: .95rem;
  margin: 0;
}
.catalog__row--more .catalog__index { color: var(--gold); }

.catalog__ill {
  width: 4rem; height: 4rem;
  color: var(--ink-faint);
  transition: color .4s var(--ease), transform .55s var(--ease);
  justify-self: end;
}
.catalog__ill use {
  stroke-dasharray: 600;
  stroke-dashoffset: 0;
  transition: stroke-dashoffset .9s var(--ease), color .4s var(--ease);
}
.catalog__row:hover .catalog__ill {
  color: var(--gold);
  transform: rotate(-6deg) scale(1.08);
}
.catalog__row:hover .catalog__ill use {
  /* Re-trace on hover */
  animation: trace 1.2s var(--ease) forwards;
}
@keyframes trace {
  0%   { stroke-dashoffset: 600; }
  100% { stroke-dashoffset: 0; }
}

@media (max-width: 720px) {
  .catalog__row {
    grid-template-columns: 3rem 1fr 3rem;
    grid-template-areas:
      "idx name ill"
      "idx note ill";
    gap: .25rem 1rem;
    padding: 1.25rem 0;
  }
  .catalog__index { grid-area: idx; align-self: start; padding-top: .75rem; }
  .catalog__name  { grid-area: name; }
  .catalog__note  { grid-area: note; }
  .catalog__ill   { grid-area: ill; width: 2.4rem; height: 2.4rem; align-self: center; }
}

/* ---------- Clientes (marquee de logos) ---------- */

.section--clients {
  padding-top: clamp(4rem, 9vh, 7rem);
  padding-bottom: clamp(4rem, 9vh, 7rem);
  background: var(--bg);
}
.clients__head {
  display: grid;
  grid-template-columns: 1fr minmax(0, 1.4fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: end;
  max-width: var(--max);
  margin: 0 auto clamp(3rem, 6vh, 4.5rem);
}
.clients__title {
  font-family: var(--sans);
  font-weight: 400;
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--ink);
  max-width: 40ch;
}

.clients-marquee {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 1rem 0;
  mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
}
.clients-marquee__track {
  display: inline-flex;
  align-items: center;
  gap: clamp(3rem, 6vw, 5rem);
  animation: clientsScroll 45s linear infinite;
  will-change: transform;
}
.clients-marquee:hover .clients-marquee__track {
  animation-play-state: paused;
}
.clients-marquee img {
  height: clamp(2.5rem, 4.5vw, 3.5rem);
  width: auto;
  max-width: 12rem;
  opacity: .82;
  transition: opacity .35s var(--ease), transform .35s var(--ease), filter .35s var(--ease);
  flex-shrink: 0;
  filter: saturate(.9);
}
.clients-marquee img:hover {
  opacity: 1;
  transform: translateY(-2px) scale(1.05);
  filter: saturate(1.15) drop-shadow(0 4px 16px rgba(0,0,0,.4));
}
@keyframes clientsScroll {
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .clients-marquee__track { animation: none; }
}

@media (max-width: 900px) {
  .clients__head { grid-template-columns: 1fr; gap: 1rem; align-items: start; }
}

/* ---------- Proceso ---------- */

.section--process { background: var(--bg-2); }

.process {
  list-style: none; padding: 0; margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule);
}
.step {
  display: grid;
  grid-template-columns: clamp(4rem, 8vw, 6.5rem) 1fr;
  gap: clamp(1rem, 2.5vw, 2.5rem);
  padding: clamp(2rem, 5vh, 3.25rem) clamp(1rem, 3vw, 2.5rem) clamp(2rem, 5vh, 3.25rem) 0;
  border-bottom: 1px solid var(--rule);
  border-right: 1px solid var(--rule);
  position: relative;
}
.step:nth-child(2n)        { border-right: 0; padding-right: 0; padding-left: clamp(1rem, 3vw, 2.5rem); }
.step:nth-last-child(-n+2) { border-bottom: 0; }

.step__roman {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(3rem, 5.5vw, 4.5rem);
  line-height: .9;
  color: var(--gold-soft);
}
.step__label {
  font-size: .68rem; letter-spacing: .28em; text-transform: uppercase;
  color: var(--ink-mute);
  margin: .35rem 0 .75rem;
}
.step__body h3 {
  font-family: var(--sans);
  font-weight: 500;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  letter-spacing: -0.01em;
  margin: 0 0 .9rem;
  color: var(--ink);
}
.step__copy {
  color: var(--ink-mute);
  margin: 0;
  max-width: 42ch;
}

@media (max-width: 760px) {
  .process { grid-template-columns: 1fr; }
  .step    { border-right: 0; padding-right: 0; padding-left: 0; }
  .step:nth-child(2n) { padding-left: 0; }
  .step:nth-last-child(-n+2) { border-bottom: 1px solid var(--rule); }
  .step:last-child { border-bottom: 0; }
}

/* ---------- Filosofía: misión / visión ---------- */

.philo {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
  max-width: var(--max);
}
.philo__rule { background: var(--gold-faint); align-self: stretch; }
.philo__col { padding-left: clamp(1rem, 2vw, 2rem); border-left: 0; position: relative; }
.philo__col:first-child { padding-left: 0; }
.philo__title {
  font-family: var(--sans);
  font-weight: 400;
  font-size: clamp(2rem, 4.2vw, 3.4rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin: 0 0 1.5rem;
  text-transform: uppercase;
}
.philo__col p {
  color: var(--ink-soft);
  max-width: 38ch;
  margin: 0;
}

@media (max-width: 820px) {
  .philo { grid-template-columns: 1fr; gap: 3rem; }
  .philo__rule { height: 1px; width: 100%; }
}

.quote {
  margin: clamp(4rem, 8vh, 6rem) auto 0;
  max-width: 50rem;
  text-align: center;
  padding: 3rem clamp(1rem, 3vw, 2rem) 0;
  border-top: 1px solid var(--rule);
}
.quote p {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  line-height: 1.4;
  color: var(--ink);
  margin: 0 0 1.25rem;
}
.quote cite {
  font-style: normal;
  font-size: .72rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ---------- 03 Valores ---------- */

.values {
  list-style: none; margin: 0; padding: 0;
}
.value {
  display: grid;
  grid-template-columns: clamp(6rem, 14vw, 11rem) 1fr;
  gap: clamp(1rem, 3vw, 3rem);
  align-items: start;
  padding: 2.25rem 0;
  border-top: 1px solid var(--rule);
}
.value:last-child { border-bottom: 1px solid var(--rule); }
.value__num {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(3.5rem, 7vw, 5.5rem);
  line-height: .9;
  color: var(--gold-soft);
  font-variant-numeric: tabular-nums;
}
.value__body h3 {
  font-family: var(--sans);
  font-weight: 500;
  font-size: clamp(1.2rem, 2.2vw, 1.6rem);
  letter-spacing: -0.005em;
  text-transform: uppercase;
  margin: .25rem 0 .75rem;
}
.value__body p {
  margin: 0;
  color: var(--ink-mute);
  max-width: 55ch;
}

@media (max-width: 640px) {
  .value { grid-template-columns: 1fr; gap: .5rem; }
}

/* ---------- CTA / Contacto ---------- */

.section--cta {
  background: var(--bg-2);
  padding-top: clamp(6rem, 14vh, 10rem);
  padding-bottom: clamp(6rem, 14vh, 10rem);
}
.cta {
  max-width: 56rem; margin: 0 auto;
  text-align: center;
}
.cta__sub {
  margin: 2rem auto 3.5rem;
  max-width: 38ch;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.form {
  text-align: left;
  display: grid;
  gap: 1.25rem;
  margin-top: 2rem;
}
.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
@media (max-width: 600px) { .form__row { grid-template-columns: 1fr; } }

.field { display: grid; gap: .5rem; }
.field__label {
  font-size: .68rem; letter-spacing: .28em; text-transform: uppercase;
  color: var(--ink-mute);
}
.field__opt { color: var(--ink-faint); text-transform: none; letter-spacing: .04em; }

.field input,
.field textarea {
  appearance: none;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--ink-faint);
  color: var(--ink);
  font: inherit;
  padding: .7rem 0;
  width: 100%;
  border-radius: 0;
  transition: border-color .25s var(--ease);
}
.field input:focus,
.field textarea:focus {
  outline: 0;
  border-bottom-color: var(--gold);
}
.field textarea {
  resize: vertical;
  font-family: var(--sans);
}

.btn {
  display: inline-flex; align-items: center; gap: .85rem;
  justify-self: start;
  margin-top: 1rem;
  padding: 1.05rem 2rem;
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold-soft);
  font-family: var(--sans);
  font-size: .78rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transform: translate(var(--mx, 0px), var(--my, 0px));
  transition: background .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease), transform .35s var(--ease);
}
.btn::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at var(--gx, 50%) var(--gy, 50%), rgba(197,165,114,.35), transparent 70%);
  opacity: 0;
  transition: opacity .35s var(--ease);
  pointer-events: none;
}
.btn:hover::before { opacity: 1; }
.btn:hover { background: var(--gold); color: var(--bg); border-color: var(--gold); }
.btn:active { transform: translateY(1px); }
.btn svg { transition: transform .35s var(--ease); }
.btn:hover svg { transform: translateX(4px); }

.btn[data-state="loading"] {
  pointer-events: none;
  color: var(--gold);
  background: transparent;
  border-color: var(--gold-soft);
}
.btn[data-state="loading"] svg { display: none; }
.btn[data-state="loading"]::after {
  content: "";
  width: 14px; height: 14px; margin-left: .25rem;
  border: 1px solid currentColor;
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin .7s linear infinite;
}
.btn[data-state="done"] {
  pointer-events: none;
  background: var(--gold); color: var(--bg); border-color: var(--gold);
}
.btn[data-state="done"] svg { display: none; }

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

.form__feedback {
  font-size: .8rem; color: var(--ink-mute); margin: 0;
  min-height: 1.2em;
}
.form__feedback.is-ok    { color: var(--gold); }
.form__feedback.is-error { color: #d28a8a; }

.cta__alt {
  margin-top: 2.5rem;
  font-size: .85rem;
  color: var(--ink-mute);
}
.cta__alt a {
  color: var(--gold);
  border-bottom: 1px solid var(--gold-faint);
  padding-bottom: 1px;
  transition: border-color .25s var(--ease);
}
.cta__alt a:hover { border-bottom-color: var(--gold); }

/* ---------- Footer ---------- */

.site-footer {
  padding: clamp(3rem, 6vh, 5rem) var(--gutter) 2rem;
  border-top: 1px solid var(--rule);
  background: var(--bg);
}
.site-footer__top {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--rule);
}
.brand--footer .brand__word { font-size: .85rem; }
.brand--footer img { width: 32px; height: 32px; }
.site-footer__tag {
  margin: 0;
  font-size: .72rem; letter-spacing: .28em; text-transform: uppercase;
  color: var(--ink-mute);
}
.site-footer__bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
  margin-top: 2rem;
  font-size: .78rem;
  color: var(--ink-faint);
}
.site-footer__links {
  list-style: none; margin: 0; padding: 0;
  display: flex; gap: 1.5rem; flex-wrap: wrap;
}
.site-footer__links a {
  color: var(--ink-mute);
  transition: color .25s var(--ease);
}
.site-footer__links a:hover { color: var(--gold); }

/* ---------- Scroll reveal (progressive enhancement) ---------- */

.reveal {
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
html.js .reveal {
  opacity: 0;
  transform: translateY(18px);
}
html.js .reveal.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html.js .reveal { opacity: 1; transform: none; transition: none; }
  .scroll-cue__line { animation: none; }
}
