/* =========================================================
   PASTELERÍA TORREHERMOSA — Design System
   ========================================================= */

:root {
  /* Palette */
  --cream:        #FAF6F0;
  --cream-2:      #F2ECE2;
  --ink:          #1A1714;
  --ink-soft:     #4A4540;
  --muted:        #8A8278;
  --gold:         #B08D57;
  --gold-soft:    #D4B98E;
  --blush:        #E8C9C5;
  --line:         rgba(26, 23, 20, 0.12);
  --line-soft:    rgba(26, 23, 20, 0.06);

  /* Type */
  --serif: "Cormorant Garamond", "Times New Roman", Georgia, serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Helvetica Neue", sans-serif;

  /* Rhythm */
  --max:   1320px;
  --gutter: clamp(20px, 4vw, 64px);
  --section-y: clamp(80px, 12vw, 160px);

  /* Shape */
  --radius:    20px;
  --radius-sm: 12px;
  --radius-lg: 28px;

  /* Motion */
  --ease: cubic-bezier(.2, .7, .15, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; transition: color .25s var(--ease); }
a:hover { color: var(--gold); }

::selection { background: var(--ink); color: var(--cream); }

/* =========================================================
   TYPOGRAPHY
   ========================================================= */
.display {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(48px, 8.5vw, 132px);
  line-height: .96;
  letter-spacing: -0.015em;
}
.display em { font-style: italic; font-weight: 400; color: var(--gold); }

.display-2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(40px, 6.5vw, 96px);
  line-height: 1.02;
  letter-spacing: -0.01em;
}
.display-2 em { font-style: italic; color: var(--gold); }

.h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(32px, 4.5vw, 64px);
  line-height: 1.08;
  letter-spacing: -0.01em;
}
.h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(24px, 2.4vw, 32px);
  line-height: 1.2;
  letter-spacing: -0.005em;
}
.h4 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(20px, 1.6vw, 24px);
  line-height: 1.25;
}

.eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.lede {
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 56ch;
}
.lede.center { margin-left: auto; margin-right: auto; text-align: center; }

p { color: var(--ink-soft); }

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 28px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 999px;
  transition: all .35s var(--ease);
  cursor: pointer;
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn--primary {
  background: var(--ink);
  color: var(--cream);
}
.btn--primary:hover {
  background: var(--gold);
  color: var(--ink);
  transform: translateY(-2px);
}
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn--ghost:hover {
  background: var(--ink);
  color: var(--cream);
  transform: translateY(-2px);
}

/* =========================================================
   NAVIGATION
   ========================================================= */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px var(--gutter);
  padding-top: max(26px, env(safe-area-inset-top));
  padding-left: max(var(--gutter), env(safe-area-inset-left));
  padding-right: max(var(--gutter), env(safe-area-inset-right));
  background: transparent;
  transition: background .4s var(--ease), padding .4s var(--ease), box-shadow .4s var(--ease);
}
.nav.is-scrolled {
  background: rgba(26, 23, 20, .92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  padding: 14px var(--gutter);
  box-shadow: 0 1px 0 rgba(255, 255, 255, .05);
  color: var(--cream);
}
.nav.is-scrolled .nav__cta {
  background: var(--cream);
  color: var(--ink);
  border-color: var(--cream);
}
.nav.is-scrolled .nav__cta:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
}
.nav.is-light:not(.is-scrolled) { color: var(--cream); }
.nav.is-light:not(.is-scrolled) .nav__cta { background: var(--cream); color: var(--ink); border-color: var(--cream); }
.nav.is-light:not(.is-scrolled) .nav__cta:hover { background: var(--gold); border-color: var(--gold); }

.nav__brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav__logo {
  height: 54px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
  transition: height .35s var(--ease);
}
.nav.is-scrolled .nav__logo {
  height: 44px;
}

.nav__menu {
  display: flex;
  gap: 36px;
}
.nav__menu a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  position: relative;
}
.nav__menu a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s var(--ease);
}
.nav__menu a:hover::after { transform: scaleX(1); }

.nav__actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.nav__cta {
  display: inline-flex;
  align-items: center;
  padding: 12px 22px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--ink);
  color: var(--cream);
  border: 1px solid var(--ink);
  border-radius: 999px;
  transition: all .3s var(--ease);
}
.nav__cta:hover { background: var(--gold); border-color: var(--gold); color: var(--ink); }

.nav__cta--ghost {
  background: transparent;
  color: currentColor;
  border: 1px solid currentColor;
}
.nav__cta--ghost:hover {
  background: currentColor;
  color: var(--ink);
  border-color: currentColor;
}
.nav.is-scrolled .nav__cta--ghost {
  color: var(--cream);
  border-color: var(--cream);
}
.nav.is-scrolled .nav__cta--ghost:hover {
  background: var(--cream);
  color: var(--ink);
}

.btn-group {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.nav__burger { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav__burger span { display: block; width: 24px; height: 1.5px; background: currentColor; margin: 5px 0; transition: transform .3s var(--ease); }
.nav.is-open .nav__burger span:first-child { transform: translateY(6px) rotate(45deg); }
.nav.is-open .nav__burger span:last-child { transform: translateY(-7px) rotate(-45deg); }
.nav.is-open { color: var(--ink); }
.nav.is-open .nav__logo { filter: none; }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: end start;
  padding: 0 var(--gutter) clamp(48px, 8vw, 96px);
  color: var(--cream);
  overflow: hidden;
}
.hero__media {
  position: absolute; inset: 0;
  z-index: 0;
}
.hero__img {
  position: absolute; inset: 0;
  background-color: #2A2520;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  animation: heroZoom 18s var(--ease) forwards;
}
@keyframes heroZoom {
  to { transform: scale(1); }
}
.hero__veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(26,23,20,.55) 0%, rgba(26,23,20,.15) 35%, rgba(26,23,20,.25) 60%, rgba(26,23,20,.85) 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 920px;
  padding-bottom: 24px;
}
.hero .eyebrow { color: var(--gold-soft); }
.hero__lede {
  margin-top: 28px;
  font-size: clamp(17px, 1.4vw, 22px);
  line-height: 1.55;
  max-width: 52ch;
  color: rgba(250, 246, 240, .85);
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 40px;
}
.hero .btn--ghost {
  color: var(--cream);
  border-color: var(--cream);
}
.hero .btn--ghost:hover {
  background: var(--cream);
  color: var(--ink);
}

.hero__scroll {
  position: absolute;
  right: var(--gutter);
  bottom: 32px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(250, 246, 240, .7);
}
.hero__line {
  width: 60px;
  height: 1px;
  background: rgba(250, 246, 240, .5);
  position: relative;
  overflow: hidden;
}
.hero__line::after {
  content: "";
  position: absolute; inset: 0;
  background: var(--cream);
  transform: translateX(-100%);
  animation: scrollLine 2.4s var(--ease) infinite;
}
@keyframes scrollLine {
  0% { transform: translateX(-100%); }
  60%, 100% { transform: translateX(100%); }
}

/* =========================================================
   MEDAL STRIP (marquee)
   ========================================================= */
.strip {
  background: var(--ink);
  color: var(--cream);
  padding: 22px 0;
  overflow: hidden;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}
.strip__inner {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  animation: marquee 38s linear infinite;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.strip__dot { color: var(--gold); }
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* =========================================================
   HERITAGE
   ========================================================= */
.heritage {
  padding: var(--section-y) var(--gutter);
  max-width: var(--max);
  margin: 0 auto;
}
.heritage__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.heritage__image {
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--cream-2);
  overflow: hidden;
  border-radius: var(--radius);
}
.heritage__photo {
  position: absolute; inset: 0;
  background-color: var(--cream-2);
  background-size: cover;
  background-position: center;
  transition: transform 1.2s var(--ease);
}
.heritage__image:hover .heritage__photo { transform: scale(1.03); }

.heritage__photo--vintage {
  filter: sepia(.22) contrast(1.04) saturate(.85);
}

.heritage__caption {
  position: absolute;
  left: 16px;
  bottom: 16px;
  z-index: 2;
  background: rgba(26, 23, 20, .82);
  color: var(--cream);
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 8px 14px;
  border: 1px solid var(--gold);
  backdrop-filter: blur(4px);
}

.heritage__meta {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.heritage__meta div { display: flex; flex-direction: column; gap: 6px; }
.heritage__meta strong {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
}
.heritage__meta span {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.heritage__text p { margin-top: 20px; max-width: 56ch; }

/* =========================================================
   SIGNATURE — EL SUSPIRO
   ========================================================= */
.signature {
  padding: var(--section-y) var(--gutter);
  background: var(--cream-2);
  position: relative;
  overflow: hidden;
}
.signature::before {
  content: "Suspiros";
  position: absolute;
  top: 40px;
  right: -40px;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(120px, 22vw, 320px);
  color: rgba(26, 23, 20, .04);
  pointer-events: none;
  line-height: 1;
}
.signature__intro {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.suspiros {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 2vw, 32px);
  margin-top: clamp(56px, 8vw, 96px);
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}
.suspiro--featured {
  grid-column: span 2;
  grid-row: span 1;
}
.suspiro--featured .suspiro__media {
  aspect-ratio: 8 / 5;
}
.suspiro {
  display: flex;
  flex-direction: column;
  background: var(--cream);
  border: 1px solid var(--line-soft);
  overflow: hidden;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
  border-radius: var(--radius);
}
.suspiro:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px -20px rgba(26, 23, 20, .15);
}
.suspiro__media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}
.suspiro__img {
  position: absolute; inset: 0;
  background-color: var(--cream-2);
  background-size: cover;
  background-position: center;
  transition: transform 1s var(--ease);
}
.suspiro:hover .suspiro__img { transform: scale(1.05); }
.suspiro__num {
  position: absolute;
  top: 16px;
  left: 18px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 24px;
  color: var(--cream);
  text-shadow: 0 2px 14px rgba(0,0,0,.3);
  z-index: 2;
}
.suspiro__badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--gold);
  color: var(--ink);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  z-index: 2;
}
.suspiro__badge--medal {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  top: auto;
  bottom: 16px;
  right: 16px;
  left: 16px;
  justify-content: center;
  background: var(--ink);
  color: var(--gold-soft);
  border: 1px solid var(--gold);
  padding: 8px 14px;
  font-size: 10px;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-align: center;
  box-shadow: 0 12px 30px -10px rgba(26, 23, 20, .45);
}
.suspiro__badge--medal svg { color: var(--gold); }

.suspiro__body { padding: 22px 24px 26px; flex: 1; display: flex; flex-direction: column; gap: 14px; }
.suspiro__tag {
  margin-top: auto;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}
.suspiro__tag--gold {
  color: var(--ink);
  font-weight: 600;
}

.suspiro--featured {
  border: 2px solid var(--gold);
  position: relative;
  background: linear-gradient(180deg, #FCF8EE 0%, var(--cream) 65%);
  box-shadow:
    0 30px 70px -20px rgba(176, 141, 87, .45),
    0 10px 28px -12px rgba(176, 141, 87, .25);
}
.suspiro--featured .suspiro__media::after {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255, 251, 240, .55);
  border-radius: 10px;
  pointer-events: none;
  z-index: 2;
  box-shadow: 0 0 0 1px rgba(176, 141, 87, .25);
}
.suspiro--featured .suspiro__body {
  position: relative;
}
.suspiro--featured .suspiro__body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 24px;
  right: 24px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(176, 141, 87, .45), transparent);
}
.suspiro--featured .h3 {
  font-size: clamp(26px, 2.6vw, 34px);
  font-style: italic;
  color: var(--ink);
  position: relative;
  padding-bottom: 12px;
}
.suspiro--featured .h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 44px;
  height: 2px;
  background: var(--gold);
}
.suspiro--featured:hover {
  transform: translateY(-6px);
}
.suspiro--featured .suspiro__num {
  color: var(--gold);
  font-size: 28px;
}

.signature__intro .lede strong {
  color: var(--ink);
  font-weight: 500;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05em;
}

@media (max-width: 1024px) {
  .suspiro--featured { transform: none; }
  .suspiro--featured:hover { transform: translateY(-6px); }
}

.signature__cta {
  margin-top: clamp(48px, 8vw, 80px);
  text-align: center;
}
.signature__cta p {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(20px, 1.8vw, 26px);
  color: var(--ink);
  margin-bottom: 24px;
}

/* =========================================================
   BRIOCHES RELLENOS
   ========================================================= */
.brioches {
  padding: var(--section-y) var(--gutter);
  max-width: var(--max);
  margin: 0 auto;
  position: relative;
}
.brioches__head {
  max-width: 760px;
  margin: 0 auto clamp(48px, 6vw, 80px);
  text-align: center;
}
.brioches__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(20px, 2vw, 32px);
  max-width: var(--max);
  margin: 0 auto;
}
.brioches__grid > .card {
  flex: 0 0 calc(25% - clamp(15px, 1.5vw, 24px));
  min-width: 220px;
}
.brioches .card__img--placeholder {
  aspect-ratio: 4 / 5;
}
.brioches__cta {
  margin-top: clamp(40px, 6vw, 64px);
  text-align: center;
}

.card--placeholder { cursor: default; }
.card--placeholder:hover .card__img { transform: none; }
.card__img--placeholder {
  background:
    radial-gradient(circle at 30% 30%, rgba(176, 141, 87, .08), transparent 60%),
    linear-gradient(135deg, var(--cream-2) 0%, #ECE3D2 100%);
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.card__img--placeholder::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px dashed rgba(176, 141, 87, .35);
  border-radius: 12px;
  pointer-events: none;
}
.placeholder__num {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(40px, 4.5vw, 56px);
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
  opacity: .85;
}
.placeholder__label {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: .65;
}

@media (max-width: 1024px) {
  .brioches__grid > .card { flex: 0 0 calc(33.333% - clamp(15px, 1.5vw, 24px)); }
}
@media (max-width: 640px) {
  .brioches__grid > .card { flex: 0 0 100%; }
}

/* =========================================================
   CATALOG
   ========================================================= */
.catalog {
  padding: var(--section-y) var(--gutter);
  max-width: var(--max);
  margin: 0 auto;
}
.catalog__head { max-width: 720px; margin-bottom: clamp(48px, 6vw, 80px); }
.catalog__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.card {
  background: var(--cream);
  cursor: pointer;
  overflow: hidden;
  border-radius: var(--radius);
}
.card__img {
  aspect-ratio: 3 / 4;
  background-color: var(--cream-2);
  background-size: cover;
  background-position: center;
  transition: transform .8s var(--ease);
  border-radius: var(--radius);
  overflow: hidden;
}
.card:hover .card__img { transform: scale(1.04); }
.card__body { padding: 22px 18px 22px; }
.card__body p { font-size: 14px; line-height: 1.5; margin-top: 8px; color: var(--muted); }

/* =========================================================
   QUOTE
   ========================================================= */
.quote {
  padding: var(--section-y) var(--gutter);
  background: var(--ink);
  color: var(--cream);
  text-align: center;
}
.quote blockquote {
  max-width: 900px;
  margin: 0 auto;
}
.quote p {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(28px, 3.8vw, 54px);
  line-height: 1.25;
  color: var(--cream);
  letter-spacing: -0.005em;
}
.quote cite {
  display: block;
  margin-top: 32px;
  font-style: normal;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-soft);
}

/* =========================================================
   OBRADOR
   ========================================================= */
.obrador {
  padding: var(--section-y) var(--gutter);
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.obrador__list {
  list-style: none;
  margin-top: 40px;
  border-top: 1px solid var(--line);
}
.obrador__list li {
  display: flex;
  gap: 24px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--serif);
  font-size: clamp(18px, 1.6vw, 22px);
  color: var(--ink);
}
.obrador__list span {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  color: var(--gold);
  padding-top: 6px;
  flex-shrink: 0;
}
.obrador__media {
  aspect-ratio: 4 / 5;
  background: var(--cream-2);
  overflow: hidden;
  order: -1;
  position: relative;
  border-radius: var(--radius);
}
.obrador__photo {
  width: 100%; height: 100%;
  background-color: var(--cream-2);
  background-size: cover;
  background-position: center;
  transition: transform 1.2s var(--ease);
}
.obrador__media:hover .obrador__photo { transform: scale(1.04); }

.obrador__photo--vintage {
  filter: sepia(.18) contrast(1.02) saturate(.85);
}

.obrador__caption {
  position: absolute;
  left: 16px;
  bottom: 16px;
  z-index: 2;
  background: rgba(26, 23, 20, .82);
  color: var(--cream);
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 8px 14px;
  border: 1px solid var(--gold);
  backdrop-filter: blur(4px);
}

/* =========================================================
   DELIVERY (envío a domicilio)
   ========================================================= */
.delivery {
  padding: var(--section-y) var(--gutter);
  background: var(--ink);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.delivery__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.delivery .eyebrow { color: var(--gold-soft); }
.delivery h2 { color: var(--cream); }
.delivery .lede { color: rgba(250, 246, 240, .8); }

.delivery__list {
  list-style: none;
  margin: 32px 0 40px;
  padding: 0;
  display: grid;
  gap: 14px;
}
.delivery__list li {
  position: relative;
  padding-left: 32px;
  font-size: 16px;
  color: rgba(250, 246, 240, .85);
}
.delivery__list li::before {
  content: "";
  position: absolute;
  left: 0; top: 10px;
  width: 18px;
  height: 1px;
  background: var(--gold);
}

.delivery .btn--primary {
  background: var(--gold);
  color: var(--ink);
  padding: 18px 32px;
}
.delivery .btn--primary:hover {
  background: var(--cream);
}
.btn__icon {
  display: inline-grid;
  place-items: center;
  margin-right: -4px;
}

.delivery__phone {
  margin-top: 18px;
  font-size: 14px;
  color: rgba(250, 246, 240, .65);
}
.delivery__phone a {
  color: var(--gold-soft);
  border-bottom: 1px solid rgba(212, 185, 142, .4);
  padding-bottom: 1px;
}
.delivery__phone a:hover { color: var(--cream); border-color: var(--cream); }

.delivery__visual {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: var(--radius);
}
.delivery__photo {
  position: absolute; inset: 0;
  background-color: #2A2520;
  background-size: cover;
  background-position: center;
  transition: transform 1s var(--ease);
}
.delivery__visual:hover .delivery__photo { transform: scale(1.04); }

/* Global floating WhatsApp button (visible across the entire site) */
.wa-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #25D366;
  color: #ffffff;
  display: grid;
  place-items: center;
  box-shadow: 0 18px 40px -10px rgba(37, 211, 102, .55), 0 6px 14px rgba(0, 0, 0, .25);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  z-index: 60;
}
.wa-fab:hover {
  transform: scale(1.08);
  color: #ffffff;
  background: #1ebd5a;
  box-shadow: 0 22px 50px -10px rgba(37, 211, 102, .7), 0 8px 18px rgba(0, 0, 0, .3);
}
.wa-fab::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  border: 2px solid #25D366;
  opacity: 0;
  animation: fabRing 2.4s var(--ease) infinite;
  pointer-events: none;
}
@keyframes fabRing {
  0% { opacity: .55; transform: scale(1); }
  100% { opacity: 0; transform: scale(1.45); }
}
@media (max-width: 540px) {
  .wa-fab { width: 56px; height: 56px; bottom: 18px; right: 18px; }
  .wa-fab svg { width: 24px; height: 24px; }
}
@media (prefers-reduced-motion: reduce) {
  .wa-fab::before { animation: none; }
}

@media (max-width: 768px) {
  .delivery__inner { grid-template-columns: 1fr; }
  .delivery__visual { aspect-ratio: 4 / 3; order: -1; }
}

/* =========================================================
   DISTRIBUIDORES
   ========================================================= */
.distrib {
  padding: clamp(60px, 8vw, 96px) var(--gutter);
  background: var(--blush);
  text-align: center;
}
.distrib__inner { max-width: 760px; margin: 0 auto; }
.distrib h2 { color: var(--ink); }
.distrib p { color: var(--ink-soft); margin: 16px 0 32px; }
.distrib .eyebrow { color: var(--ink); }
.distrib .btn--ghost { border-color: var(--ink); color: var(--ink); }
.distrib .btn--ghost:hover { background: var(--ink); color: var(--blush); }

.distrib__pdf {
  margin-top: clamp(48px, 7vw, 80px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}
.distrib__pdf-rule {
  display: block;
  width: 64px;
  height: 1px;
  background: rgba(26, 23, 20, .25);
}
.distrib__pdf-quote {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.3;
  color: var(--ink);
  letter-spacing: -0.005em;
  max-width: 24ch;
  margin: 0 auto;
}
.distrib__pdf-cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 32px;
  background: var(--ink);
  color: var(--cream);
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: all .35s var(--ease);
  margin-top: 8px;
}
.distrib__pdf-cta:hover {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
  transform: translateY(-2px);
}
.distrib__pdf-cta svg { transition: transform .3s var(--ease); }
.distrib__pdf-cta:hover svg { transform: translateY(2px); }
.distrib__pdf-meta {
  font-size: 10px;
  letter-spacing: 0.22em;
  color: rgba(250, 246, 240, .55);
  padding-left: 12px;
  border-left: 1px solid rgba(250, 246, 240, .25);
  margin-left: 4px;
}
.distrib__pdf-cta:hover .distrib__pdf-meta {
  color: rgba(26, 23, 20, .6);
  border-color: rgba(26, 23, 20, .25);
}

/* =========================================================
   VISIT
   ========================================================= */
.visit {
  padding: var(--section-y) var(--gutter);
  max-width: var(--max);
  margin: 0 auto;
}
.visit__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.visit__info {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 40px;
}
.visit__info h4 {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.visit__info p { font-size: 15px; line-height: 1.55; color: var(--ink); }
.visit__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 48px;
}
.visit__map {
  aspect-ratio: 4 / 5;
  background: var(--cream-2);
  overflow: hidden;
  position: sticky;
  top: 100px;
  border-radius: var(--radius);
}
.visit__map iframe { width: 100%; height: 100%; border: 0; filter: grayscale(.4) contrast(.95); }

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  background: var(--ink);
  color: var(--cream);
  padding: clamp(60px, 8vw, 96px) var(--gutter) 32px;
}
.footer__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.footer__brand { display: flex; flex-direction: column; align-items: flex-start; gap: 14px; }
.footer__logo {
  height: 88px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
}
.footer__since {
  display: block;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-soft);
}
.footer__nav { display: flex; flex-direction: column; gap: 12px; }
.footer__nav a {
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(250, 246, 240, .75);
}
.footer__contact p { color: rgba(250, 246, 240, .65); font-size: 14px; line-height: 1.7; margin-bottom: 18px; }
.footer__email { margin-bottom: 22px !important; }
.footer__email a { color: var(--gold-soft); border-bottom: 1px solid rgba(212, 185, 142, .35); padding-bottom: 1px; transition: color .25s var(--ease), border-color .25s var(--ease); }
.footer__email a:hover { color: var(--cream); border-color: var(--cream); }
.footer__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.footer__wa,
.footer__call {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: background .25s var(--ease), transform .25s var(--ease), color .25s var(--ease);
}
.footer__wa {
  background: #25D366;
  color: #ffffff;
}
.footer__wa:hover {
  background: #1ebd5a;
  color: #ffffff;
  transform: translateY(-2px);
}
.footer__call {
  background: transparent;
  color: var(--gold-soft);
  border: 1px solid var(--gold);
}
.footer__call:hover {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
  transform: translateY(-2px);
}

.footer__legal {
  max-width: var(--max);
  margin: 64px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(250, 246, 240, .08);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  color: rgba(250, 246, 240, .5);
}
.footer__legal a { color: rgba(250, 246, 240, .65); }

/* =========================================================
   REVEAL ANIMATION
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
  transition-delay: 0ms;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
  .suspiros { grid-template-columns: repeat(2, 1fr); }
  .suspiro--featured { grid-column: span 2; }
  .suspiro--featured .suspiro__media { aspect-ratio: 16 / 9; }
  .catalog__grid { grid-template-columns: repeat(2, 1fr); }
  .heritage__meta { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav__menu { display: none; }
  .nav__actions { display: none; }
  .nav__burger { display: block; }
  .nav__logo { height: 44px; }
  .nav.is-scrolled .nav__logo { height: 36px; }
  .footer__logo { height: 64px; }
  .nav.is-open .nav__menu {
    display: flex;
    position: fixed;
    inset: 0;
    background: var(--cream);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
    color: var(--ink);
    z-index: 40;
    padding: env(safe-area-inset-top) 0 env(safe-area-inset-bottom);
  }
  .nav.is-open .nav__menu a {
    font-size: 24px;
    font-family: var(--serif);
    text-transform: none;
    letter-spacing: 0;
    color: var(--ink);
  }
  /* Keep logo + burger above the open menu */
  .nav__brand { position: relative; z-index: 55; }
  .nav__burger { position: relative; z-index: 55; }

  .heritage__grid,
  .obrador,
  .visit__grid,
  .footer__inner {
    grid-template-columns: 1fr;
  }
  .obrador__media { order: 0; }
  .heritage__meta { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .visit__info { grid-template-columns: 1fr; }
  .visit__map { aspect-ratio: 1 / 1; position: static; }
  .footer__legal { flex-direction: column; }
}

@media (max-width: 540px) {
  .suspiros { grid-template-columns: 1fr; }
  .suspiro--featured { grid-column: span 1; }
  .suspiro--featured .suspiro__media { aspect-ratio: 4 / 5; }
  .catalog__grid { grid-template-columns: 1fr; }
  .hero__scroll { display: none; }
  .hero { padding-bottom: 40px; }
  .hero__actions .btn { flex: 1; justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
