/* ==========================================================================
   BYCHINISIMA — Sistema visual
   Editorial fashion / boutique. Bordó como color identitario, rosa y crema
   como acentos, fondos claros para que el sitio no pese visualmente.
   ========================================================================== */

:root {
  /* Marca */
  --bordo: #542934;
  --bordo-deep: #3b1c24;
  --bordo-soft: #6d3a47;
  --rosa: #ebb9ca;
  --rosa-soft: #f5dae3;
  --crema: #faf6bb;
  --crema-soft: #fdfbe3;

  /* Fondo y superficie */
  --bg: #fbf7f3;
  --bg-alt: #f4ece6;
  --surface: #ffffff;

  /* Texto */
  --ink: #2a1720;
  --ink-soft: #6b525a;
  --on-bordo: #f7ecef;
  --on-bordo-muted: #d9b9c2;

  /* Tipografía */
  --font-display: "Fraunces", "Iowan Old Style", Georgia, serif;
  --font-body: "Poppins", "Segoe UI", sans-serif;

  /* Ritmo */
  --radius-s: 8px;
  --radius-m: 16px;
  --radius-l: 28px;
  --container: 1180px;
  --gutter: clamp(1.25rem, 5vw, 3rem);

  --shadow-soft: 0 20px 45px -25px rgba(42, 23, 32, 0.35);
  --shadow-card: 0 12px 30px -18px rgba(42, 23, 32, 0.28);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --header-h: clamp(68px, 10vw, 96px);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, p { margin: 0; }
button { font-family: inherit; cursor: pointer; }
input, textarea, select { font-family: inherit; font-size: 1rem; }

@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; }
}

:focus-visible {
  outline: 2px solid var(--bordo);
  outline-offset: 3px;
  border-radius: 4px;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--bordo);
  color: var(--on-bordo);
  padding: 0.75rem 1.25rem;
  border-radius: 0 0 var(--radius-s) 0;
  z-index: 1000;
}
.skip-link:focus { left: 0; }

/* ---------- Tipografía ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bordo-soft);
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: currentColor;
  opacity: 0.6;
}
.on-dark .eyebrow { color: var(--rosa); }

h1, .h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.3rem, 5.4vw, 3.7rem);
  line-height: 1.08;
  letter-spacing: -0.01em;
}
h2, .h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.9rem, 3.6vw, 2.7rem);
  line-height: 1.14;
  letter-spacing: -0.01em;
}
h3, .h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  line-height: 1.3;
}
.lede {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: var(--ink-soft);
  line-height: 1.65;
  max-width: 46ch;
}
.on-dark .lede { color: var(--on-bordo-muted); }
.on-dark, .on-dark h1, .on-dark h2, .on-dark h3 { color: var(--on-bordo); }
.on-dark p { color: var(--on-bordo-muted); }

/* ---------- Logotipo (arte de marca real, recortado en círculo) ---------- */
.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--bordo);
  flex-shrink: 0;
}
.brand-mark img { width: 100%; height: 100%; object-fit: contain; }
.brand-mark--lg { width: 68px; height: 68px; }

/* ---------- Botones ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6em;
  padding: 0.95rem 1.9rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.98rem;
  border: 1px solid transparent;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: var(--bordo);
  color: var(--on-bordo);
  box-shadow: var(--shadow-card);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-soft); background: var(--bordo-deep); }
.btn-ghost {
  background: transparent;
  color: var(--bordo);
  border-color: rgba(84, 41, 52, 0.3);
}
.btn-ghost:hover { border-color: var(--bordo); background: rgba(84, 41, 52, 0.05); transform: translateY(-2px); }
.on-dark .btn-ghost { color: var(--on-bordo); border-color: rgba(247, 236, 239, 0.4); }
.on-dark .btn-ghost:hover { background: rgba(247, 236, 239, 0.1); border-color: var(--on-bordo); }
.btn-light {
  background: var(--surface);
  color: var(--bordo);
  box-shadow: var(--shadow-card);
}
.btn-light:hover { transform: translateY(-2px); background: var(--crema-soft); }
.btn-whatsapp {
  background: #f7ecef;
  color: var(--bordo);
}
.btn-sm { padding: 0.65rem 1.3rem; font-size: 0.88rem; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(251, 247, 243, 0.86);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid rgba(84, 41, 52, 0.08);
  transition: background 0.3s ease;
}
.site-header {
  display: flex;
  align-items: stretch;
  height: var(--header-h);
}
.brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  background: var(--bordo);
  padding-inline: clamp(1.25rem, 4vw, 3.2rem);
}
.brand img {
  height: clamp(22px, 4.4vw, 34px);
  width: auto;
  display: block;
}
.header-bar {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(1rem, 2.5vw, 2.2rem);
  padding-inline: var(--gutter);
}
.nav-desktop {
  display: none;
}
.nav-desktop ul { display: flex; align-items: center; gap: 1.7rem; flex-wrap: nowrap; }
.nav-desktop a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink-soft);
  position: relative;
  padding: 0.3rem 0.05rem;
  white-space: nowrap;
}
.nav-desktop a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: -2px;
  height: 1.5px;
  background: var(--bordo);
  transition: right 0.3s var(--ease);
}
.nav-desktop a:hover { color: var(--bordo); }
.nav-desktop a:hover::after { right: 0; }
.nav-desktop a[aria-current="page"] { color: var(--bordo); font-weight: 600; }
.header-actions { display: flex; align-items: center; gap: 0.9rem; }
.header-actions .btn { display: none; }

.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  border: none;
  background: transparent;
  border-radius: 50%;
}
.menu-toggle span {
  width: 22px;
  height: 2px;
  background: var(--bordo);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
  margin-inline: auto;
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  position: fixed;
  inset: var(--header-h) 0 0 0;
  background: var(--bordo);
  transform: translateY(-8px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease), visibility 0.35s;
  z-index: 400;
  overflow-y: auto;
}
.nav-mobile.is-open { opacity: 1; transform: translateY(0); visibility: visible; }
.nav-mobile ul { display: flex; flex-direction: column; padding: 2.2rem var(--gutter) 1rem; }
.nav-mobile li { border-bottom: 1px solid rgba(247, 236, 239, 0.14); }
.nav-mobile a {
  display: block;
  padding: 1.1rem 0.1rem;
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--on-bordo);
}
.nav-mobile .header-actions { padding: 1.5rem var(--gutter) 2.5rem; }
.nav-mobile .header-actions .btn { display: inline-flex; width: 100%; }

@media (min-width: 900px) {
  .nav-desktop { display: block; }
  .menu-toggle { display: none; }
  .header-actions .btn { display: inline-flex; }
}

/* ---------- Secciones ---------- */
.section { padding: clamp(3.5rem, 8vw, 6.5rem) 0; }
.section-dark { background: var(--bordo); color: var(--on-bordo); }
.section-alt { background: var(--bg-alt); }
.section-head { max-width: 640px; margin-bottom: clamp(2.2rem, 5vw, 3.5rem); display: flex; flex-direction: column; gap: 0.9rem; }
.section-head.center { margin-inline: auto; text-align: center; align-items: center; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding-top: clamp(2.5rem, 6vw, 4rem);
  padding-bottom: clamp(3rem, 7vw, 5rem);
  overflow: hidden;
}
.hero-head {
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.1rem;
}
.hero-head .eyebrow::before { display: none; }
.hero-foot {
  max-width: 640px;
  margin-inline: auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.hero-cta { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; margin-top: 1.6rem; }
.hero-trust { display: flex; flex-wrap: wrap; justify-content: center; gap: 2rem; margin-top: 2.6rem; }
.hero-trust div { display: flex; flex-direction: column; align-items: center; }
.hero-trust strong { font-family: var(--font-display); font-size: 1.5rem; color: var(--bordo); }
.hero-trust span { font-size: 0.82rem; color: var(--ink-soft); }

/* ---------- Galería curva (arco 3D interactivo) ---------- */
.arc-gallery {
  position: relative;
  margin: clamp(2.2rem, 6vw, 3.5rem) 0 clamp(1.5rem, 4vw, 2.5rem);
  padding: 2.5rem 0 1.5rem;
  perspective: 1700px;
  overflow: hidden;
}
.arc-track {
  display: flex;
  justify-content: center;
  align-items: center;
  transform-style: preserve-3d;
  will-change: transform;
}
.arc-tile {
  flex: 0 0 auto;
  width: clamp(128px, 15vw, 232px);
  aspect-ratio: 3 / 4;
  margin: 0;
  margin-inline: clamp(-22px, -2.4vw, -10px);
  border-radius: var(--radius-m);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transform-origin: center center;
  transition: transform 0.5s var(--ease);
  position: relative;
}
.arc-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}
.arc-tile:nth-child(1) { transform: rotateY(30deg) translateZ(-78px) translateX(10px); z-index: 1; }
.arc-tile:nth-child(2) { transform: rotateY(15deg) translateZ(-20px) translateX(4px); z-index: 2; }
.arc-tile:nth-child(3) { transform: rotateY(0deg) translateZ(14px); z-index: 3; }
.arc-tile:nth-child(4) { transform: rotateY(-15deg) translateZ(-20px) translateX(-4px); z-index: 2; }
.arc-tile:nth-child(5) { transform: rotateY(-30deg) translateZ(-78px) translateX(-10px); z-index: 1; }
.arc-hint {
  display: block;
  text-align: center;
  margin-top: 1.3rem;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
  opacity: 0.75;
}

@media (max-width: 640px) {
  .arc-gallery {
    perspective: none;
    padding: 1.5rem 0 0.5rem;
  }
  .arc-track {
    justify-content: flex-start;
    overflow-x: auto;
    scroll-snap-type: x proximity;
    padding-inline: var(--gutter);
    -webkit-overflow-scrolling: touch;
    transform: none !important;
  }
  .arc-track::-webkit-scrollbar { display: none; }
  .arc-tile {
    width: 62vw;
    margin-inline: 0.4rem;
    scroll-snap-align: center;
  }
  .arc-tile:nth-child(n) { transform: none; z-index: auto; }
}

@media (prefers-reduced-motion: reduce) {
  .arc-track { transition: none; }
}

/* ---------- Grillas y tarjetas ---------- */
.grid { display: grid; gap: clamp(1.2rem, 3vw, 1.8rem); }
.grid-2 { grid-template-columns: repeat(1, 1fr); }
.grid-3 { grid-template-columns: repeat(1, 1fr); }
.grid-4 { grid-template-columns: repeat(2, 1fr); }
@media (min-width: 640px) { .grid-2 { grid-template-columns: repeat(2, 1fr); } .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 860px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } .grid-4 { grid-template-columns: repeat(4, 1fr); } }

.card {
  background: var(--surface);
  border-radius: var(--radius-m);
  padding: clamp(1.6rem, 3vw, 2.2rem);
  box-shadow: var(--shadow-card);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); }

.icon-badge {
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--rosa-soft);
  color: var(--bordo);
  margin-bottom: 1.1rem;
}
.icon-badge svg { width: 24px; height: 24px; }

/* ---------- Pasos / timeline ---------- */
.steps { position: relative; }
.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.2rem;
  padding-bottom: 2.6rem;
  position: relative;
}
.step:last-child { padding-bottom: 0; }
.step-num {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--bordo);
  color: var(--on-bordo);
  font-family: var(--font-display);
  font-size: 1.15rem;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}
.step::before {
  content: "";
  position: absolute;
  left: 23px;
  top: 46px;
  bottom: -8px;
  width: 1.5px;
  background: repeating-linear-gradient(to bottom, rgba(84,41,52,0.25) 0 6px, transparent 6px 12px);
}
.step:last-child::before { display: none; }
.step-body h3 { margin-bottom: 0.4rem; }
.step-body p { color: var(--ink-soft); max-width: 52ch; }

/* ---------- Galería ---------- */
.gallery-item {
  position: relative;
  border-radius: var(--radius-m);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-card);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.14); transition: transform 0.6s var(--ease); }
.gallery-item:hover img { transform: scale(1.24); }
.gallery-tag {
  position: absolute;
  left: 1rem; bottom: 1rem;
  background: rgba(42, 23, 32, 0.55);
  backdrop-filter: blur(6px);
  color: #fff;
  font-size: 0.78rem;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
}

/* ---------- Marquesina de marcas / categorías ---------- */
.tag-cloud { display: flex; flex-wrap: wrap; gap: 0.7rem; }
.tag-pill {
  padding: 0.6rem 1.2rem;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid rgba(84, 41, 52, 0.14);
  font-size: 0.9rem;
  font-weight: 500;
  transition: border-color 0.3s ease, background 0.3s ease, transform 0.3s ease;
}
.tag-pill:hover { border-color: var(--bordo); transform: translateY(-2px); }
.on-dark .tag-pill { background: rgba(247,236,239,0.06); border-color: rgba(247,236,239,0.25); color: var(--on-bordo); }

/* ---------- FAQ ---------- */
.faq-item {
  border-bottom: 1px solid rgba(84, 41, 52, 0.14);
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.4rem 0;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--ink);
}
.faq-q .plus {
  flex-shrink: 0;
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 1.5px solid var(--bordo);
  position: relative;
  transition: transform 0.35s var(--ease), background 0.3s ease;
}
.faq-q .plus::before, .faq-q .plus::after {
  content: "";
  position: absolute;
  background: var(--bordo);
  top: 50%; left: 50%;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.faq-q .plus::before { width: 12px; height: 1.5px; transform: translate(-50%, -50%); }
.faq-q .plus::after { width: 1.5px; height: 12px; transform: translate(-50%, -50%); }
.faq-item[data-open="true"] .plus::after { opacity: 0; transform: translate(-50%,-50%) rotate(90deg); }
.faq-item[data-open="true"] .plus { background: var(--bordo); }
.faq-item[data-open="true"] .plus::before { background: #fff; }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}
.faq-a-inner { padding-bottom: 1.5rem; color: var(--ink-soft); max-width: 62ch; }

/* ---------- Testimonio / cita ---------- */
.quote-block {
  border-left: 3px solid var(--rosa);
  padding-left: 1.4rem;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  color: var(--ink);
}

/* ---------- Franja CTA ---------- */
.cta-band {
  background: var(--bordo);
  color: var(--on-bordo);
  border-radius: var(--radius-l);
  padding: clamp(2.2rem, 5vw, 3.5rem);
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
}
.cta-band::after {
  content: "";
  position: absolute;
  width: 340px; height: 340px;
  background: radial-gradient(circle, rgba(235,185,202,0.25), transparent 70%);
  top: -120px; right: -80px;
}
.cta-band .btn-row { display: flex; flex-wrap: wrap; gap: 1rem; position: relative; z-index: 1; }

@media (min-width: 760px) {
  .cta-band { flex-direction: row; align-items: center; justify-content: space-between; }
}

/* ---------- Footer ---------- */
.footer { background: var(--bordo-deep); color: var(--on-bordo-muted); padding: clamp(3rem, 6vw, 4.5rem) 0 2rem; }
.footer-grid {
  display: grid;
  gap: 2.4rem;
  grid-template-columns: 1fr;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(247,236,239,0.12);
}
.footer-brand p { max-width: 34ch; margin-top: 0.9rem; font-size: 0.92rem; }
.footer h4 { font-family: var(--font-body); font-size: 0.82rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--rosa); margin-bottom: 1rem; }
.footer ul { display: flex; flex-direction: column; gap: 0.7rem; }
.footer a { font-size: 0.92rem; transition: color 0.25s ease; }
.footer a:hover { color: var(--rosa); }
.footer-bottom {
  display: flex; flex-wrap: wrap; gap: 1rem;
  justify-content: space-between;
  padding-top: 1.6rem;
  font-size: 0.8rem;
}
.footer-socials { display: flex; gap: 0.9rem; }
.footer-socials a {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(247,236,239,0.22);
  display: flex; align-items: center; justify-content: center;
}
.footer-socials a:hover { border-color: var(--rosa); background: rgba(235,185,202,0.08); }

@media (min-width: 640px) { .footer-grid { grid-template-columns: 1.3fr 1fr 1fr 1fr; } }

/* ---------- WhatsApp flotante ---------- */
.wa-float {
  position: fixed;
  right: 1.3rem;
  bottom: 1.3rem;
  z-index: 600;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: var(--bordo);
  color: var(--on-bordo);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s var(--ease);
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 26px; height: 26px; }

/* ---------- Formulario ---------- */
.form-grid { display: grid; gap: 1.2rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .form-grid { grid-template-columns: 1fr 1fr; } }
.field { display: flex; flex-direction: column; gap: 0.5rem; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 0.85rem; font-weight: 600; color: var(--ink); }
.field input, .field textarea, .field select {
  padding: 0.9rem 1rem;
  border-radius: var(--radius-s);
  border: 1.5px solid rgba(84, 41, 52, 0.18);
  background: var(--surface);
  color: var(--ink);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.field input:focus, .field textarea:focus, .field select:focus {
  border-color: var(--bordo);
  box-shadow: 0 0 0 4px rgba(84,41,52,0.08);
  outline: none;
}
.field textarea { resize: vertical; min-height: 120px; }
.field-hint { font-size: 0.78rem; color: var(--ink-soft); }
.form-note { font-size: 0.85rem; color: var(--ink-soft); display: flex; gap: 0.6rem; align-items: flex-start; margin-top: 0.6rem; }

/* ---------- Utilidades ---------- */
.stack-sm { display: flex; flex-direction: column; gap: 0.6rem; }
.mt-lg { margin-top: clamp(2rem, 5vw, 3rem); }
.text-center { text-align: center; }
.pill-list { display: flex; flex-wrap: wrap; gap: 0.6rem 1.4rem; }
.pill-list li { display: flex; align-items: center; gap: 0.5rem; font-size: 0.92rem; color: var(--ink-soft); }
.pill-list li::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--bordo); flex-shrink: 0; }
.on-dark .pill-list li { color: var(--on-bordo-muted); }
.on-dark .pill-list li::before { background: var(--rosa); }

.page-hero {
  padding: clamp(3rem, 7vw, 5rem) 0 clamp(2.5rem, 5vw, 3.5rem);
  background: var(--bordo);
  color: var(--on-bordo);
}
.page-hero .section-head { max-width: 700px; margin-bottom: 0; }
.breadcrumb { font-size: 0.82rem; color: var(--on-bordo-muted); margin-bottom: 0.6rem; }
.breadcrumb a:hover { color: var(--rosa); }

/* ---------- Reveal on scroll ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }
[data-reveal-group] > * { transition-delay: calc(var(--i, 0) * 90ms); }

/* ---------- Heart doodle accent ---------- */
.doodle-heart { width: 34px; height: auto; color: var(--rosa); }
