:root {
  --void: #0c0c06;
  --deep: #14140c;
  --panel: #262112;
  --gold: #e8c46a;
  --copper: #a9853f;
  --cream: #fbefd3;
  --amber-body: #ebd9ae;
  --parchment: #e3d3b2;
  --glacier: #efe9dc;
  --sky: #afbfc2;
  --wood: #4a3527;
  --stone: #5c5850;
  --rust: #a8451c;
  --display: "Oswald", Arial, sans-serif;
  --technical: "Barlow Semi Condensed", Arial, sans-serif;
  --editorial: "EB Garamond", Georgia, serif;
  --wordmark: "Bodoni Moda", Georgia, serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--void);
  color: var(--amber-body);
  font-family: var(--editorial);
  font-size: 18px;
  line-height: 1.55;
}

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

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

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: 12px;
  z-index: 20;
  transform: translateY(-140%);
  background: var(--cream);
  color: var(--void);
  padding: 10px 14px;
  font: 700 14px/1 var(--technical);
  text-decoration: none;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 4vw, 64px);
  color: var(--cream);
  background: linear-gradient(180deg, rgba(12, 12, 6, 0.9), rgba(12, 12, 6, 0));
}

.brand-mark {
  display: inline-grid;
  gap: 3px;
  text-decoration: none;
}

.brand-mark span {
  font: 800 31px/0.9 var(--wordmark);
  letter-spacing: 0.14em;
}

.brand-mark small {
  font: 700 10px/1 var(--technical);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2.8vw, 30px);
  font: 700 13px/1 var(--technical);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

nav a {
  text-decoration: none;
  color: rgba(251, 239, 211, 0.86);
}

nav a:hover,
nav a:focus-visible {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 8px;
}

/* Tarjetas apiladas: cada sección se fija arriba y la siguiente sube por encima */
main {
  position: relative;
  isolation: isolate;
}

main > section {
  position: sticky;
  top: var(--stick-top, 0px);
  overflow: hidden;
  box-shadow: 0 -22px 48px rgba(0, 0, 0, 0.38);
  transform-origin: 50% 0;
  transform: scale(calc(1 - var(--card-depth, 0) * 0.06)) translate3d(0, calc(var(--card-depth, 0) * 28px), 0);
  filter: brightness(calc(1 - var(--card-depth, 0) * 0.45));
  will-change: transform, filter;
}

main > section + section {
  border-radius: 22px 22px 0 0;
}

/* Tope entre tarjetas: anclas de scroll al final de cada tarjeta y al inicio de la siguiente */
.snap-mark {
  position: absolute;
  left: 0;
  width: 1px;
  height: 0;
  opacity: 0;
  pointer-events: none;
}

.snap-mark.is-end {
  scroll-snap-align: end;
}

.snap-mark.is-start {
  scroll-snap-align: start;
}

@media (max-width: 920px) and (prefers-reduced-motion: no-preference) {
  html {
    scroll-snap-type: y proximity;
  }
}

/* Golpe hacia abajo al llegar al final; elástico hacia arriba al entrar la siguiente */
@keyframes cardBump {
  0% { translate: 0 0; }
  35% { translate: 0 16px; }
  70% { translate: 0 -3px; }
  100% { translate: 0 0; }
}

@keyframes cardSpring {
  0% { translate: 0 0; }
  30% { translate: 0 -14px; }
  58% { translate: 0 5px; }
  80% { translate: 0 -2px; }
  100% { translate: 0 0; }
}

main > section.is-bump {
  animation: cardBump 460ms cubic-bezier(0.3, 0.7, 0.4, 1);
}

main > section.is-spring {
  animation: cardSpring 680ms cubic-bezier(0.2, 0.8, 0.3, 1);
}

@media (prefers-reduced-motion: reduce) {
  main > section {
    transform: none;
    filter: none;
  }

  main > section.is-bump,
  main > section.is-spring {
    animation: none;
  }
}

section {
  position: relative;
  overflow: hidden;
}

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

.section-dark {
  background: var(--deep);
  color: var(--amber-body);
}

.section-paper {
  background: var(--glacier);
  color: var(--wood);
}

.section-sky {
  background: linear-gradient(135deg, var(--sky), var(--glacier));
  color: var(--void);
}

.hero {
  min-height: 96vh;
  display: grid;
  align-items: end;
  padding: clamp(128px, 18vh, 200px) clamp(22px, 6vw, 96px) clamp(72px, 10vh, 112px);
  isolation: isolate;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: 50% 46%;
  filter: saturate(0.88) contrast(1.08) brightness(0.72);
  z-index: -2;
}

.hero-overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(12, 12, 6, 0.92), rgba(12, 12, 6, 0.58) 38%, rgba(12, 12, 6, 0.18) 68%),
    linear-gradient(0deg, rgba(12, 12, 6, 0.82), rgba(12, 12, 6, 0.12) 48%, rgba(12, 12, 6, 0.58));
}

.hero-content {
  width: 100%;
  max-width: 840px;
  min-width: 0;
}

.eyebrow {
  margin: 0 0 18px;
  font: 700 13px/1.25 var(--technical);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.section-paper .eyebrow,
.section-sky .eyebrow {
  color: var(--rust);
}

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

h1 {
  margin-bottom: 22px;
  color: var(--cream);
  font: 700 clamp(4.2rem, 10vw, 9.5rem)/0.88 var(--display);
  letter-spacing: 0;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 24px;
  font: 700 clamp(2.4rem, 5vw, 5rem)/0.96 var(--display);
  letter-spacing: 0;
  text-transform: uppercase;
}

h3 {
  margin-bottom: 8px;
  font: 700 1.38rem/1.05 var(--display);
  letter-spacing: 0;
  text-transform: uppercase;
}

.section-dark h2,
.section-dark h3 {
  color: var(--cream);
}

.section-paper h2,
.section-paper h3,
.section-sky h2,
.section-sky h3 {
  color: var(--void);
}

.hero-line {
  width: min(620px, 100%);
  margin-bottom: 32px;
  font-size: clamp(1.55rem, 3vw, 2.6rem);
  line-height: 1.12;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px 12px;
  border: 1px solid var(--gold);
  border-radius: 4px;
  font: 700 13px/1 var(--technical);
  letter-spacing: 0.14em;
  text-decoration: none;
  text-transform: uppercase;
}

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

.button-secondary {
  color: var(--gold);
}

.hero-footer {
  position: absolute;
  right: clamp(22px, 6vw, 96px);
  bottom: 28px;
  margin: 0;
  color: rgba(232, 196, 106, 0.84);
  font: 700 13px/1 var(--technical);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.story-band,
.origin,
.product,
.service,
.memory,
.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1.1fr);
  gap: clamp(28px, 6vw, 92px);
  align-items: center;
  padding: clamp(72px, 10vw, 138px) clamp(22px, 6vw, 96px);
}

.product,
.memory {
  grid-template-columns: minmax(280px, 1fr) minmax(0, 0.95fr);
}

.section-copy {
  max-width: 700px;
}

.section-copy p {
  font-size: clamp(1.15rem, 1.45vw, 1.45rem);
}

.image-panel {
  margin: 0;
  min-height: 430px;
  border: 1px solid rgba(74, 53, 23, 0.32);
  overflow: hidden;
  background: var(--panel);
}

.image-panel img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.image-panel-tall {
  min-height: 620px;
}

.image-panel-wide img {
  object-position: 62% 50%;
}

.founders {
  display: grid;
  grid-template-columns: minmax(300px, 1.25fr) minmax(0, 0.95fr);
  min-height: 760px;
}

.wide-photo {
  margin: 0;
  min-height: 760px;
}

.wide-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.04) brightness(0.84);
}

.founders-copy {
  align-self: center;
  padding: clamp(56px, 7vw, 96px);
}

.founder-grid,
.step-grid {
  display: grid;
  gap: 18px;
}

.founder-grid article,
.step-grid article {
  padding-top: 18px;
  border-top: 1px solid rgba(232, 196, 106, 0.42);
}

.founder-grid p,
.step-grid p {
  margin: 0;
}

.identity {
  --sky-awake: 0;
  --label-drift: 10px;
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(0, 0.9fr);
  gap: clamp(28px, 6vw, 84px);
  align-items: center;
  padding: clamp(72px, 10vw, 132px) clamp(22px, 6vw, 96px);
}

.label-art {
  position: relative;
  z-index: 1;
  margin: 0;
  display: grid;
  place-items: center;
  min-height: 560px;
}

/* Cielo nocturno en el tope de la tarjeta de identidad */
.sky-field {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 62%;
  z-index: 2;
  pointer-events: none;
  opacity: calc(0.55 + (var(--sky-awake) * 0.45));
  background:
    radial-gradient(120% 70% at 50% 0%, rgba(38, 44, 110, 0.55), rgba(20, 20, 12, 0) 70%),
    linear-gradient(180deg, rgba(6, 9, 40, 0.75), rgba(20, 20, 12, 0));
  -webkit-mask-image: linear-gradient(180deg, #000 55%, transparent);
  mask-image: linear-gradient(180deg, #000 55%, transparent);
  mix-blend-mode: screen;
}

.sky-field i {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: calc(4px * var(--s));
  height: calc(4px * var(--s));
  border-radius: 50%;
  background: #fff3d6;
  box-shadow:
    0 0 calc(10px * var(--s)) rgba(253, 227, 183, 0.9),
    0 0 calc(24px * var(--s)) rgba(232, 196, 106, 0.45);
  animation: starGlint var(--t, 3.4s) ease-in-out infinite;
  animation-delay: var(--d);
}

.identity .section-copy {
  position: relative;
  z-index: 3;
}

.label-stage {
  position: relative;
  width: min(560px, 100%);
  transform: translateY(var(--label-drift));
  transition: transform 120ms linear;
}

.label-stage img {
  position: relative;
  z-index: 1;
  width: 100%;
  filter: drop-shadow(0 28px 50px rgba(0, 0, 0, 0.52));
}

.night-sky {
  position: absolute;
  inset: -9% 12% 51% 12%;
  z-index: 2;
  overflow: visible;
  pointer-events: none;
  opacity: calc(0.35 + (var(--sky-awake) * 0.65));
  mix-blend-mode: screen;
}

.night-sky::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 46% 46% 18% 18%;
  background:
    radial-gradient(circle at 34% 30%, rgba(253, 227, 183, 0.35), transparent 2%),
    radial-gradient(circle at 72% 36%, rgba(232, 196, 106, 0.28), transparent 2.4%),
    linear-gradient(180deg, rgba(4, 7, 39, calc(var(--sky-awake) * 0.42)), rgba(59, 35, 82, calc(var(--sky-awake) * 0.16)) 52%, transparent);
  opacity: var(--sky-awake);
}

.night-sky i {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: calc(5px * var(--s));
  height: calc(5px * var(--s));
  border-radius: 50%;
  background: #fff3d6;
  box-shadow:
    0 0 calc(12px * var(--s)) rgba(253, 227, 183, 0.95),
    0 0 calc(28px * var(--s)) rgba(232, 196, 106, 0.5);
  opacity: clamp(0, calc((var(--sky-awake) - 0.16) * 1.45), 1);
  transform: scale(calc(0.55 + (var(--sky-awake) * 0.45)));
  animation: starGlint 3.4s ease-in-out infinite;
  animation-delay: var(--d);
}

@keyframes starGlint {
  0%,
  100% {
    filter: brightness(0.7);
    transform: translate3d(0, 0, 0) scale(calc(0.5 + (var(--sky-awake) * 0.38)));
    opacity: clamp(0, calc((var(--sky-awake) - 0.18) * 1.15), 0.62);
  }

  45% {
    filter: brightness(1.55);
    transform: translate3d(1px, -1px, 0) scale(calc(0.75 + (var(--sky-awake) * 0.55)));
    opacity: clamp(0, calc((var(--sky-awake) - 0.05) * 1.35), 1);
  }

  62% {
    filter: brightness(1);
    transform: translate3d(-1px, 0, 0) scale(calc(0.56 + (var(--sky-awake) * 0.42)));
  }
}

@media (prefers-reduced-motion: reduce) {
  .label-stage {
    transform: none;
    transition: none;
  }

  .night-sky i,
  .sky-field i {
    animation: none;
  }
}

.spec-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  list-style: none;
  margin: 32px 0;
  padding: 0;
  border-top: 1px solid rgba(74, 53, 23, 0.42);
  border-bottom: 1px solid rgba(74, 53, 23, 0.42);
}

.spec-list li {
  min-height: 86px;
  display: grid;
  place-items: center;
  text-align: center;
  font: 700 clamp(1.28rem, 2vw, 2rem)/1 var(--technical);
  color: var(--rust);
}

.spec-list li + li {
  border-left: 1px solid rgba(74, 53, 23, 0.3);
}

.manifesto {
  min-height: 720px;
  display: grid;
  align-items: end;
  padding: clamp(72px, 10vw, 130px) clamp(22px, 6vw, 96px);
}

.manifesto img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 40%;
  filter: brightness(0.62) saturate(0.9);
}

.manifesto::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(12, 12, 6, 0.88), rgba(12, 12, 6, 0.44) 52%, rgba(12, 12, 6, 0.12));
}

.manifesto-copy {
  position: relative;
  z-index: 1;
  width: min(900px, 100%);
}

.manifesto-copy h2 {
  font-family: var(--editorial);
  font-weight: 500;
  text-transform: none;
  line-height: 1.08;
}

.manifesto-copy p {
  width: min(690px, 100%);
  font-size: clamp(1.25rem, 2vw, 1.85rem);
}

.manifesto-poem {
  display: grid;
  gap: 16px;
  width: min(780px, 100%);
}

.manifesto-poem p {
  margin: 0;
}

.manifesto-poem span {
  color: var(--gold);
  font: 700 1rem/1 var(--technical);
  letter-spacing: 0;
}

.manifesto strong {
  color: var(--gold);
  font-weight: 500;
}

.ceremony-copy {
  padding: clamp(42px, 6vw, 74px) clamp(22px, 6vw, 96px) clamp(64px, 8vw, 104px);
}

.ceremony-copy h2 {
  width: min(940px, 100%);
}

.step-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(22px, 4vw, 54px);
  margin-top: 36px;
}

.pricing {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(28px, 6vw, 84px);
  align-items: center;
  padding: clamp(72px, 10vw, 136px) clamp(22px, 6vw, 96px);
}

.warehouse-photo {
  margin: 0;
  min-height: 520px;
  overflow: hidden;
}

.warehouse-photo img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  filter: brightness(0.86);
}

.pricing-copy {
  max-width: 840px;
}

.price-table {
  display: grid;
  margin-top: 28px;
  border-top: 1px solid rgba(232, 196, 106, 0.54);
  font-family: var(--technical);
}

.price-table [role="row"] {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: center;
  padding: 22px 0;
  border-bottom: 1px solid rgba(232, 196, 106, 0.22);
}

.price-head {
  color: var(--gold);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.opening-box {
  margin-top: 34px;
  padding: 26px 0 0;
  border-top: 1px solid rgba(232, 196, 106, 0.48);
}

.opening-price {
  margin-bottom: 16px;
  color: var(--gold);
  font: 700 clamp(1.35rem, 2.4vw, 2.05rem)/1.15 var(--technical);
}

.opening-box strong {
  color: var(--gold);
}

.company-details {
  margin-top: 28px;
  padding-top: 16px;
  border-top: 1px solid rgba(232, 196, 106, 0.26);
  color: rgba(235, 217, 174, 0.66);
  font: 600 0.82rem/1.4 var(--technical);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.company-details p {
  margin: 0;
}

.company-details p + p {
  margin-top: 5px;
}

.contact {
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
}

.contact-photo {
  margin: 0;
  min-height: 700px;
  overflow: hidden;
  background: var(--void);
}

.contact-photo img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: 46% 50%;
}

.contact-copy {
  max-width: 820px;
}

.contact-copy h2 {
  font-size: clamp(1.9rem, 3.1vw, 3rem);
  line-height: 1.02;
}

.contact-copy p {
  font-size: clamp(1.15rem, 1.45vw, 1.45rem);
}

.contact-list {
  display: grid;
  gap: 22px;
  margin: 36px 0 0;
}

.contact-list div {
  padding-top: 18px;
  border-top: 1px solid rgba(74, 53, 23, 0.28);
}

.contact-list dt {
  margin-bottom: 5px;
  color: var(--rust);
  font: 700 0.95rem/1 var(--technical);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-list dd {
  margin: 0;
  color: var(--void);
  font: 700 clamp(1.5rem, 3vw, 2.6rem)/1.05 var(--technical);
}

.contact-list a {
  text-decoration: none;
}

.contact-list a:hover,
.contact-list a:focus-visible {
  color: var(--rust);
  text-decoration: underline;
  text-underline-offset: 7px;
}


/* --- Contenido restituido de las láminas --- */
.lead {
  font-size: clamp(1.15rem, 1.45vw, 1.45rem);
  margin-bottom: 28px;
}

.closing-line {
  margin-top: 22px;
  font: 700 clamp(1.05rem, 1.4vw, 1.3rem)/1.3 var(--technical);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--copper);
}

.section-dark .closing-line {
  color: var(--gold);
}

.role {
  font: 600 0.78rem/1 var(--technical);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
}

.photo-caption {
  margin: 12px 0 0;
  font: 600 0.74rem/1.4 var(--technical);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--stone);
}

.photo-caption-overlay {
  position: absolute;
  left: clamp(20px, 4vw, 48px);
  bottom: 18px;
  margin: 0;
  color: rgba(251, 239, 211, 0.82);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.7);
}

.wide-photo {
  position: relative;
}

.detail-grid {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.detail-grid article {
  padding-top: 16px;
  border-top: 1px solid rgba(232, 196, 106, 0.42);
}

.section-paper .detail-grid article,
.section-sky .detail-grid article {
  border-top-color: rgba(74, 53, 23, 0.32);
}

.detail-grid p {
  margin: 0;
}

.note-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
}

.note-list li {
  padding: 9px 14px;
  border: 1px solid rgba(74, 53, 23, 0.35);
  border-radius: 999px;
  font: 700 0.8rem/1 var(--technical);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rust);
}

.service {
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(28px, 4vw, 48px);
}

.service-hero {
  min-height: 0;
}

.service-hero img {
  height: auto;
  min-height: 0;
  aspect-ratio: 16 / 9;
}

.service-copy {
  max-width: none;
}

.story-trio {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 40px);
  margin-top: 8px;
}

.story-trio p {
  margin: 0;
  padding-top: 16px;
  border-top: 1px solid rgba(74, 53, 23, 0.32);
}

.story-trio strong {
  color: var(--rust);
  font-weight: 600;
}

.ceremony {
  display: block;
}

/* --- Tira de película del servicio --- */
.ceremony-copy {
  padding-bottom: 0;
}

.ceremony-steps {
  padding-top: clamp(28px, 4vw, 44px);
  padding-bottom: clamp(64px, 8vw, 104px);
}

.film-strip {
  overflow: hidden;
  padding: 6px 0 10px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.film-track {
  display: flex;
  gap: clamp(12px, 1.5vw, 20px);
  width: max-content;
  animation: filmScroll 42s linear infinite;
  will-change: transform;
}

.film-strip:hover .film-track {
  animation-play-state: paused;
}

.film-card {
  position: relative;
  flex: 0 0 auto;
  width: clamp(280px, 30vw, 440px);
  margin: 0;
  overflow: hidden;
  background: var(--panel);
  border: 1px solid rgba(232, 196, 106, 0.22);
}

.film-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.film-card figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 14px 16px;
  background: linear-gradient(180deg, rgba(12, 12, 6, 0), rgba(12, 12, 6, 0.82));
  color: var(--cream);
  font: 700 0.78rem/1 var(--technical);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

@keyframes filmScroll {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}

.step-label {
  margin: 0 0 6px;
  font: 700 0.78rem/1 var(--technical);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

.step-grid article {
  padding-top: 0;
  border-top: 0;
}

/* --- Entrada de secciones: tarjetas que deslizan desde los lados --- */
.reveal {
  --slide-from: -40px;
  --slide-to: 40px;
}

.reveal:nth-of-type(even) {
  --slide-from: 40px;
  --slide-to: -40px;
}

.reveal .section-copy,
.reveal .founders-copy,
.reveal .ceremony-copy,
.reveal .pricing-copy,
.reveal .contact-copy,
.reveal .manifesto-copy {
  opacity: 0;
  transform: translate3d(var(--slide-to), 0, 0);
  transition: opacity 0.7s ease-out, transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: 0.12s;
}

.reveal figure,
.reveal .label-art,
.reveal .film-strip {
  opacity: 0;
  transform: translate3d(var(--slide-from), 0, 0);
  transition: opacity 0.7s ease-out, transform 0.95s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal .film-strip figure {
  opacity: 1;
  transform: none;
  transition: none;
}

.reveal .step-grid article {
  opacity: 0;
  transform: translate3d(0, 32px, 0);
  transition: opacity 0.6s ease-out, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal .step-grid article:nth-child(2) { transition-delay: 0.12s; }
.reveal .step-grid article:nth-child(3) { transition-delay: 0.24s; }

.reveal.is-visible .section-copy,
.reveal.is-visible .founders-copy,
.reveal.is-visible .ceremony-copy,
.reveal.is-visible .pricing-copy,
.reveal.is-visible .contact-copy,
.reveal.is-visible .manifesto-copy,
.reveal.is-visible figure,
.reveal.is-visible .label-art,
.reveal.is-visible .film-strip,
.reveal.is-visible .step-grid article {
  opacity: 1;
  transform: none;
}

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

@media (prefers-reduced-motion: reduce) {
  .reveal .section-copy,
  .reveal .founders-copy,
  .reveal .ceremony-copy,
  .reveal .pricing-copy,
  .reveal .contact-copy,
  .reveal .manifesto-copy,
  .reveal figure,
  .reveal .label-art,
  .reveal .film-strip,
  .reveal .step-grid article {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .film-track {
    animation: none;
  }
}

@media (max-width: 920px) {
  .site-header {
    align-items: flex-start;
    background: rgba(12, 12, 6, 0.9);
  }

  nav {
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 10px 16px;
    letter-spacing: 0.12em;
  }

  .brand-mark span {
    font-size: 24px;
  }

  .hero {
    min-height: 92vh;
    padding-top: 150px;
  }

  .hero-footer {
    left: 22px;
    right: 22px;
  }

  .story-band,
  .origin,
  .product,
  .service,
  .memory,
  .contact,
  .identity,
  .pricing,
  .founders {
    grid-template-columns: 1fr;
  }

  .product .image-panel,
  .memory .image-panel,
  .contact-photo,
  .warehouse-photo {
    order: -1;
  }

  .founders,
  .wide-photo,
  .contact-photo {
    min-height: 0;
  }

  .wide-photo img,
  .contact-photo img {
    height: auto;
  }

  .founders-copy {
    padding: 52px 22px 28px;
  }

  .identity,
  .pricing {
    padding-inline: 22px;
  }

  .label-art {
    min-height: 0;
  }

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

  .price-table [role="row"] {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 620px) {
  body {
    font-size: 17px;
  }

  .site-header {
    position: absolute;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    justify-content: stretch;
    justify-items: stretch;
    gap: 12px;
    padding-top: 14px;
    padding-bottom: 12px;
  }

  nav {
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    font-size: 10.5px;
    letter-spacing: 0.08em;
    white-space: nowrap;
  }

  nav a {
    flex: 0 0 auto;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(3rem, 13vw, 4.2rem);
    overflow-wrap: break-word;
  }

  h2 {
    font-size: clamp(2.15rem, 12vw, 3.8rem);
  }

  .hero {
    padding-top: 150px;
  }

  .hero-line {
    font-size: 1.45rem;
    line-height: 1.14;
    max-width: calc(100vw - 44px);
    overflow-wrap: break-word;
  }

  .hero-actions {
    display: grid;
  }

  /* Fotos a sangre completa en móvil (como en la presentación) */
  .image-panel,
  .image-panel-tall,
  .warehouse-photo,
  .contact-photo {
    min-height: 320px;
    width: calc(100% + 2 * clamp(22px, 6vw, 96px));
    margin-inline: calc(-1 * clamp(22px, 6vw, 96px));
    border-left: 0;
    border-right: 0;
  }

  /* Ilustración de identidad: arco a sangre, recortado arriba como en la lámina 4 */
  .identity {
    padding: 34vw 0 56px;
    gap: 24px;
  }

  .sky-field {
    height: calc(34vw + 26vw);
  }

  .identity .section-copy {
    padding-inline: 22px;
  }

  .label-art {
    width: 100%;
    height: auto;
    overflow: visible;
    display: block;
  }

  .label-stage {
    width: 100vw;
    max-width: none;
    margin: 0;
    transform: none;
    transition: none;
  }

  .label-stage img {
    filter: none;
  }

  /* Las tarjetas terminan justo tras su última foto: sin franja vacía */
  .story-band,
  .origin,
  .product,
  .service,
  .memory,
  .contact,
  .pricing {
    padding-bottom: 0;
  }

  /* Secciones que empiezan con foto: la foto arranca en el borde de la tarjeta */
  .product,
  .memory,
  .pricing,
  .contact,
  .service {
    padding-top: 0;
  }

  .story-band .section-copy,
  .origin .section-copy {
    padding-bottom: 8px;
  }

  .story-band,
  .origin {
    padding-top: 44px;
  }

  .product .section-copy,
  .memory .section-copy,
  .contact .contact-copy,
  .pricing .pricing-copy,
  .service .service-copy {
    padding-bottom: 56px;
  }

  .photo-caption {
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 16px;
    margin: 0;
    color: rgba(251, 239, 211, 0.85);
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.75);
  }

  .image-panel {
    position: relative;
  }

  .spec-list {
    grid-template-columns: 1fr;
  }

  .spec-list li + li {
    border-left: 0;
    border-top: 1px solid rgba(74, 53, 23, 0.3);
  }

  .manifesto {
    min-height: 640px;
  }

  .price-table {
    gap: 0;
  }

  .contact-copy h2 {
    font-size: clamp(1.7rem, 8.4vw, 2.2rem);
  }

  .contact-list dd {
    font-size: clamp(1.2rem, 6vw, 1.5rem);
    overflow-wrap: anywhere;
  }
}
