/*
Theme Name: Cactella
Theme URI: https://www.instagram.com/cactella.bakery/
Author: Cactella
Description: Tema de sitio completo para Cactella, reposteria artesanal en Monterrey. Las 10 paginas, el SEO local y el diseno en dos archivos. Activalo y el sitio queda construido.
Version: 1.0.0
License: GNU General Public License v2 or later
Text Domain: cactella
*/

/* ==========================================================================
   Cactella · Repostería artesanal · Monterrey, N.L.
   Palette: nopal (cactus green) + bugambilia (magenta) on masa (dough cream)
   Type:    Fraunces (display) / Outfit (body)
   ========================================================================== */

:root {
  /* --- color ------------------------------------------------------------ */
  --nopal:        #4A332A;
  --nopal-deep:   #33231B;
  --nopal-soft:   #F6EADB;   /* beige band (was pink-on-pink) */
  --bugambilia:   #D6356F;   /* pink fills - white text passes on this */
  --bugambilia-d: #B3245C;
  --bugambilia-ink: #B3245C;  /* pink for TEXT on light backgrounds */
  --rosa-pale:    #FBE7F1;   /* decorative pink, never behind pink text */
  --masa:         #FDF6ED;
  --masa-deep:    #F6E7D3;
  --canela:       #7E8F70;
  --tinta:        #241F1C;
  --tinta-soft:   #5C544E;
  --linea:        #ECDCCB;
  --blanco:       #FFFDF9;
  --wa:           #25D366;   /* reserved for WhatsApp CTAs only */
  --wa-deep:      #128C7E;

  /* --- type ------------------------------------------------------------- */
  --display: "Fraunces", "Iowan Old Style", Georgia, "Times New Roman", serif;
  --body:    "Outfit", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  /* --- layout ----------------------------------------------------------- */
  --wrap: 1180px;
  --gutter: clamp(1.15rem, 4vw, 2.5rem);
  --radius: 14px;
  --radius-lg: 26px;
  --shadow-sm: 0 2px 10px rgba(36, 31, 28, .07);
  --shadow-md: 0 14px 38px rgba(36, 31, 28, .13);
  --shadow-lg: 0 28px 64px rgba(51, 35, 27, .2);
}

/* ==========================================================================
   Reset & base
   ========================================================================== */

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

body {
  margin: 0;
  background: var(--masa);
  color: var(--tinta);
  font-family: var(--body);
  font-size: clamp(1rem, .97rem + .18vw, 1.09rem);
  line-height: 1.68;
  font-weight: 350;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a { color: var(--nopal); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--bugambilia-ink); }

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -.018em;
  margin: 0 0 .5em;
  color: var(--nopal-deep);
  font-variation-settings: "opsz" 60;
}

h1 { font-size: clamp(2.35rem, 1.4rem + 4.2vw, 4.35rem); font-weight: 800; }
h2 { font-size: clamp(1.85rem, 1.25rem + 2.6vw, 3rem); }
h3 { font-size: clamp(1.18rem, 1.05rem + .6vw, 1.45rem); letter-spacing: -.01em; }
p  { margin: 0 0 1.1em; }

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

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

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

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--nopal); color: #fff; padding: .8rem 1.2rem;
  font-weight: 600; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; color: #fff; }

/* ==========================================================================
   Signature: papel picado edge
   ========================================================================== */

.picado {
  height: 20px;
  width: 100%;
  background: var(--nopal);
  -webkit-mask: radial-gradient(circle at 50% 100%, transparent 9.5px, #000 10px) 50% 0 / 24px 20px repeat-x;
  mask: radial-gradient(circle at 50% 100%, transparent 9.5px, #000 10px) 50% 0 / 24px 20px repeat-x;
}
.picado--masa { background: var(--masa); }
.picado--blanco { background: var(--blanco); }

.picado-dots {
  height: 14px;
  width: 100%;
  background:
    radial-gradient(circle at 12px 7px, rgba(255,253,249,.34) 2.6px, transparent 3px) 0 0 / 24px 14px repeat-x;
}

/* nopal bullet */
.nopal-mark {
  width: 1.05em; height: 1.05em;
  flex: 0 0 auto;
  color: var(--bugambilia);
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: var(--body);
  font-size: 1rem; font-weight: 600; line-height: 1;
  padding: 1.02rem 1.65rem;
  border-radius: 100px; border: 2px solid transparent;
  text-decoration: none; cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn svg { width: 1.22em; height: 1.22em; flex: 0 0 auto; }

.btn--wa {
  background: var(--wa); color: #08301F;
  box-shadow: 0 6px 20px rgba(37, 211, 102, .34);
}
.btn--wa:hover { background: #1FBF5C; color: #08301F; box-shadow: 0 10px 28px rgba(37, 211, 102, .44); }

.btn--nopal { background: var(--nopal); color: var(--blanco); }
.btn--nopal:hover { background: var(--nopal-deep); color: var(--blanco); }

.btn--ghost {
  background: transparent; color: var(--nopal-deep);
  border-color: var(--nopal); 
}
.btn--ghost:hover { background: var(--nopal); color: var(--blanco); }

.btn--ghost-light {
  background: transparent; color: var(--blanco); border-color: rgba(255,253,249,.55);
}
.btn--ghost-light:hover { background: var(--blanco); color: var(--nopal-deep); }

.btn--sm { padding: .72rem 1.15rem; font-size: .93rem; }
.btn--block { width: 100%; }

/* ==========================================================================
   Eyebrow / section headers
   ========================================================================== */

.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .77rem; font-weight: 600;
  letter-spacing: .19em; text-transform: uppercase;
  color: var(--bugambilia-ink);
  margin: 0 0 .95rem;
}
.eyebrow--light { color: #F9CFE1; }
.eyebrow::before {
  content: ""; width: 26px; height: 2px; background: currentColor; border-radius: 2px;
}

.sec-head { max-width: 46rem; margin-bottom: clamp(2rem, 4vw, 3.2rem); }
.sec-head--center { margin-inline: auto; text-align: center; }
.sec-head--center .eyebrow::before { display: none; }
.sec-head p { color: var(--tinta-soft); font-size: 1.08rem; margin-bottom: 0; }

/* ==========================================================================
   Top bar + header
   ========================================================================== */

.topbar {
  background: var(--bugambilia); color: #fff;
  font-size: .82rem; font-weight: 500; letter-spacing: .01em;
}
.topbar .wrap {
  display: flex; flex-wrap: wrap; gap: .35rem 1.4rem;
  align-items: center; justify-content: center;
  padding-block: .5rem; text-align: center;
}
.topbar span { display: inline-flex; align-items: center; gap: .4rem; }
.topbar a { color: #fff; font-weight: 600; }

.site-header {
  position: sticky; top: 0; z-index: 60;
  background: var(--masa);
  border-bottom: 1px solid var(--linea);
}
/* backdrop-filter is desktop-only on purpose. On an ancestor it creates a
   containing block for position:fixed children, which trapped the mobile
   menu inside the 70px header instead of the viewport. */
@media (min-width: 901px) {
  .site-header {
    background: rgba(253, 246, 237, .93);
    backdrop-filter: saturate(160%) blur(12px);
  }
}
.site-header .wrap {
  display: flex; align-items: center; gap: 1rem;
  padding-block: .7rem;
}

.brand { display: flex; align-items: center; gap: .7rem; text-decoration: none; margin-right: auto; }
.brand img { width: 52px; height: 52px; border-radius: 50%; box-shadow: var(--shadow-sm); }
.brand b {
  font-family: var(--display); font-size: 1.5rem; font-weight: 800;
  color: var(--nopal-deep); letter-spacing: -.02em; line-height: 1;
}
.brand small {
  display: block; font-family: var(--body); font-size: .64rem; font-weight: 500;
  letter-spacing: .17em; text-transform: uppercase; color: var(--canela); margin-top: .2rem;
}

.nav { display: flex; align-items: center; gap: 1.6rem; }
.nav a {
  font-size: .95rem; font-weight: 500; color: var(--tinta);
  text-decoration: none; padding-block: .3rem; position: relative;
}
.nav a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0;
  height: 2px; background: var(--bugambilia); transition: right .22s ease;
}
.nav a:hover { color: var(--nopal-deep); }
.nav a:hover::after, .nav a[aria-current="page"]::after { right: 0; }

.nav-toggle {
  display: none; width: 46px; height: 46px;
  background: transparent; border: 1px solid var(--linea);
  border-radius: 10px; cursor: pointer; padding: 0;
  align-items: center; justify-content: center; color: var(--nopal-deep);
}
.nav-toggle svg { width: 22px; height: 22px; }

@media (max-width: 900px) {
  .header-cta { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav {
    position: fixed; top: 0; right: 0; bottom: 0; left: auto;
    height: 100dvh; width: min(320px, 84vw);
    background: var(--blanco); flex-direction: column; align-items: stretch;
    gap: 0; padding: 5.5rem 1.5rem 2rem; box-shadow: var(--shadow-lg);
    transform: translateX(101%); transition: transform .28s ease; z-index: 120;
    overflow-y: auto; overscroll-behavior: contain;
  }
  .nav[data-open="true"] { transform: translateX(0); }
  .nav a { padding-block: .95rem; border-bottom: 1px solid var(--linea); font-size: 1.06rem; }
  .nav a::after { display: none; }
  .nav .btn { margin-top: 1.4rem; }
  .nav-close {
    position: absolute; top: 1.1rem; right: 1.1rem;
    width: 42px; height: 42px; border: 1px solid var(--linea); background: transparent;
    border-radius: 10px; cursor: pointer; color: var(--nopal-deep);
  }
}
@media (min-width: 901px) {
  .nav .btn, .nav-close { display: none; }
}

.nav-scrim {
  position: fixed; inset: 0; background: rgba(51, 35, 27, .5);
  opacity: 0; pointer-events: none; transition: opacity .28s ease; z-index: 50;
}
.nav-scrim[data-open="true"] { opacity: 1; pointer-events: auto; }

/* ==========================================================================
   Hero
   ========================================================================== */

.hero { position: relative; padding-block: clamp(2.6rem, 6vw, 5rem) clamp(3rem, 6vw, 5.5rem); }
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(58% 48% at 88% 8%, rgba(225, 65, 127, .09), transparent 68%),
    radial-gradient(46% 42% at 4% 96%, rgba(74, 51, 42, .11), transparent 70%);
  pointer-events: none;
}
.hero .wrap {
  position: relative;
  display: grid; grid-template-columns: 1.02fr .98fr;
  gap: clamp(2rem, 5vw, 4.2rem); align-items: center;
}

.hero h1 { margin-bottom: .38em; }
.hero h1 em {
  font-style: normal; color: var(--bugambilia-ink);
  position: relative; white-space: nowrap;
}
.hero h1 em::after {
  content: ""; position: absolute; left: -.04em; right: -.04em; bottom: .04em;
  height: .17em; background: rgba(225, 65, 127, .16); border-radius: 3px; z-index: -1;
}
.hero-lede { font-size: clamp(1.06rem, 1rem + .38vw, 1.26rem); color: var(--tinta-soft); max-width: 34rem; }

.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin: 1.9rem 0 1.4rem; }

.hero-trust {
  display: flex; flex-wrap: wrap; gap: .45rem 1.4rem;
  font-size: .89rem; color: var(--tinta-soft); margin: 0;
  list-style: none; padding: 0;
}
.hero-trust li { display: flex; align-items: center; gap: .45rem; }

/* offset photo cluster */
.hero-art { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.hero-art figure { margin: 0; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.hero-art figure:nth-child(1) { grid-row: span 2; align-self: center; }
.hero-art figure:nth-child(2) { margin-top: -1.6rem; }
.hero-art figure:nth-child(3) { margin-bottom: -1.6rem; }
.hero-art img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.hero-art figure:nth-child(1) img { aspect-ratio: 3 / 4; }

.hero-stamp {
  position: absolute; left: -1.2rem; bottom: 1rem; z-index: 3;
  width: 118px; height: 118px; border-radius: 50%;
  background: var(--bugambilia); color: #fff;
  display: grid; place-content: center; text-align: center;
  font-family: var(--display); font-weight: 800; line-height: 1.05;
  font-size: .96rem; letter-spacing: -.01em;
  box-shadow: var(--shadow-md); transform: rotate(-9deg);
  border: 3px dashed rgba(255,255,255,.5);
  padding: .5rem;
}
.hero-stamp span { display: block; font-family: var(--body); font-size: .58rem; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; margin-top: .22rem; opacity: .9; }

@media (max-width: 880px) {
  .hero .wrap { grid-template-columns: 1fr; }
  .hero-art { order: -1; max-width: 30rem; }
  .hero-stamp { width: 96px; height: 96px; font-size: .84rem; left: -.4rem; }
}

/* ==========================================================================
   Bands
   ========================================================================== */

.band { padding-block: clamp(3.2rem, 7vw, 5.6rem); }
.band--nopal { background: var(--nopal); color: rgba(255, 253, 249, .9); }
.band--nopal h2, .band--nopal h3 { color: var(--blanco); }
.band--nopal a { color: #F9CFE1; }
.band--blanco { background: var(--blanco); }
.band--soft { background: var(--nopal-soft); }
.band--tight { padding-block: clamp(2.4rem, 5vw, 3.6rem); }

/* ==========================================================================
   Product cards
   ========================================================================== */

.menu-grid {
  display: grid; gap: clamp(1.1rem, 2.4vw, 1.7rem);
  grid-template-columns: repeat(auto-fit, minmax(255px, 1fr));
}

.card {
  background: var(--blanco); border-radius: var(--radius-lg);
  overflow: hidden; display: flex; flex-direction: column;
  border: 1px solid var(--linea);
  transition: transform .22s ease, box-shadow .22s ease;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.card-media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: var(--masa-deep); }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.card:hover .card-media img { transform: scale(1.045); }
.card-tag {
  position: absolute; top: .8rem; left: .8rem;
  background: var(--masa); color: var(--nopal-deep);
  font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  padding: .35rem .7rem; border-radius: 100px;
}
.card-body { padding: 1.3rem 1.35rem 1.45rem; display: flex; flex-direction: column; flex: 1; }
.card-body h3 { margin-bottom: .4rem; }
.card-body p { font-size: .96rem; color: var(--tinta-soft); margin-bottom: 1.15rem; }
.card-body .btn { margin-top: auto; }

/* ==========================================================================
   Steps (a real sequence, so numbered)
   ========================================================================== */

/* Steps: white cards on the beige band, with a solid pink number badge.
   The old version used light pink at 50% opacity, which washed out to
   roughly 1:1 contrast against the beige and was effectively invisible. */
.steps {
  display: grid; gap: clamp(1rem, 2.4vw, 1.5rem);
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  counter-reset: paso; list-style: none; margin: 0; padding: 0;
}
.step {
  position: relative;
  background: var(--blanco);
  border: 1px solid var(--linea);
  border-radius: var(--radius-lg);
  padding: 1.6rem 1.5rem 1.7rem;
  transition: transform .2s ease, box-shadow .2s ease;
}
.step:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.step::before {
  counter-increment: paso; content: counter(paso);
  display: grid; place-content: center;
  width: 50px; height: 50px; border-radius: 50%;
  background: var(--bugambilia); color: #fff;
  font-family: var(--display); font-size: 1.45rem; font-weight: 800;
  line-height: 1; margin-bottom: 1.05rem;
  box-shadow: 0 4px 14px rgba(214, 53, 111, .32);
}
.step h3 { margin-bottom: .4rem; }
.step p { font-size: .97rem; margin-bottom: 0; color: var(--tinta-soft); }

/* ==========================================================================
   Gallery
   ========================================================================== */

.gallery {
  display: grid; gap: .8rem;
  grid-template-columns: repeat(auto-fill, minmax(178px, 1fr));
  grid-auto-rows: 178px;
}
.gallery button {
  padding: 0; border: 0; background: var(--masa-deep); cursor: zoom-in;
  border-radius: var(--radius); overflow: hidden; position: relative;
}
.gallery button img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease, filter .3s ease; }
.gallery button:hover img { transform: scale(1.06); filter: brightness(1.04); }
.gallery .tall { grid-row: span 2; }

.lightbox {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(51, 35, 27, .94);
  display: none; align-items: center; justify-content: center;
  padding: clamp(1rem, 4vw, 3rem);
}
.lightbox[data-open="true"] { display: flex; }
.lightbox img { max-width: min(92vw, 900px); max-height: 84vh; border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.lightbox figcaption { color: rgba(255,253,249,.82); font-size: .9rem; text-align: center; margin-top: .9rem; }
.lightbox figure { margin: 0; }
.lightbox-close, .lightbox-nav button {
  position: absolute; background: rgba(255,253,249,.14); color: #fff;
  border: 0; border-radius: 50%; width: 48px; height: 48px; cursor: pointer;
  display: grid; place-content: center; font-size: 1.4rem;
}
.lightbox-close { top: 1.2rem; right: 1.2rem; }
.lightbox-nav .prev { left: 1.2rem; top: 50%; transform: translateY(-50%); }
.lightbox-nav .next { right: 1.2rem; top: 50%; transform: translateY(-50%); }
.lightbox-close:hover, .lightbox-nav button:hover { background: var(--bugambilia); }

/* ==========================================================================
   Occasions / zones
   ========================================================================== */

.pill-grid { display: flex; flex-wrap: wrap; gap: .65rem; padding: 0; margin: 0; list-style: none; }
.pill-grid li a, .pill-grid li span {
  display: inline-flex; align-items: center; gap: .45rem;
  background: var(--blanco); border: 1px solid var(--linea);
  padding: .62rem 1.05rem; border-radius: 100px;
  font-size: .93rem; font-weight: 500; color: var(--tinta); text-decoration: none;
  transition: background-color .18s ease, border-color .18s ease, color .18s ease;
}
.pill-grid li a:hover { background: var(--nopal); border-color: var(--nopal); color: var(--blanco); }
.band--nopal .pill-grid li span,
.band--nopal .pill-grid li a { background: rgba(255,253,249,.09); border-color: rgba(255,253,249,.22); color: var(--blanco); }
.band--nopal .pill-grid li a:hover { background: var(--blanco); color: var(--nopal-deep); }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
@media (max-width: 820px) { .split { grid-template-columns: 1fr; } }
.split img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); width: 100%; aspect-ratio: 4/5; object-fit: cover; }

/* ==========================================================================
   FAQ
   ========================================================================== */

.faq { max-width: 50rem; margin-inline: auto; }
.faq details {
  border-bottom: 1px solid var(--linea); padding: .3rem 0;
}
.faq summary {
  cursor: pointer; list-style: none; padding: 1.15rem 2.6rem 1.15rem 0;
  font-family: var(--display); font-size: clamp(1.05rem, 1rem + .32vw, 1.24rem);
  font-weight: 700; color: var(--nopal-deep); position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: .3rem; top: 50%; transform: translateY(-50%);
  font-family: var(--body); font-size: 1.6rem; font-weight: 300; color: var(--bugambilia-ink);
  transition: transform .22s ease; line-height: 1;
}
.faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq details p { margin: 0 0 1.2rem; color: var(--tinta-soft); font-size: 1rem; padding-right: 2rem; }

/* ==========================================================================
   Final CTA
   ========================================================================== */

.cta-band { background: var(--nopal-deep); color: var(--blanco); text-align: center; position: relative; overflow: hidden; }
.cta-band .wrap { position: relative; padding-block: clamp(3.2rem, 7vw, 5.4rem); }
.cta-band h2 { color: var(--blanco); max-width: 22ch; margin-inline: auto; }
.cta-band p { color: rgba(255,253,249,.8); max-width: 44ch; margin-inline: auto; margin-bottom: 1.9rem; }
.cta-band .btn { margin-inline: .3rem; }
.cta-note { font-size: .87rem; color: rgba(255,253,249,.6); margin-top: 1.5rem; margin-bottom: 0; }

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer { background: var(--nopal); color: rgba(255,253,249,.78); font-size: .95rem; }
.site-footer .wrap { padding-block: clamp(2.6rem, 5vw, 4rem) 1.6rem; }
.footer-grid { display: grid; gap: 2.2rem; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; }
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer h4 {
  color: var(--blanco); font-family: var(--body); font-size: .78rem; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase; margin-bottom: 1rem;
}
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .6rem; }
.site-footer a { color: rgba(255,253,249,.82); text-decoration: none; }
.site-footer a:hover { color: #F9CFE1; text-decoration: underline; }
.site-footer .brand b { color: var(--blanco); }
.site-footer .brand small { color: rgba(249, 207, 225, .85); }
.footer-bottom {
  border-top: 1px solid rgba(255,253,249,.16); margin-top: 2.4rem; padding-top: 1.3rem;
  display: flex; flex-wrap: wrap; gap: .6rem 1.4rem; justify-content: space-between;
  font-size: .84rem; color: rgba(255,253,249,.58);
}
.social { display: flex; gap: .6rem; flex-wrap: wrap; }
.social a {
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(255,253,249,.1); display: grid; place-content: center;
  transition: background-color .18s ease;
}
.social a:hover { background: var(--bugambilia); }
.social svg { width: 20px; height: 20px; }

/* ==========================================================================
   Floating WhatsApp (mobile-first conversion)
   ========================================================================== */

.wa-float {
  position: fixed; right: 1.05rem; bottom: 1.05rem; z-index: 40;
  display: inline-flex; align-items: center; gap: .55rem;
  background: var(--wa); color: #08301F; text-decoration: none;
  font-weight: 700; font-size: .96rem;
  padding: .95rem 1.35rem; border-radius: 100px;
  box-shadow: 0 10px 30px rgba(37, 211, 102, .42);
  transition: transform .2s ease;
}
.wa-float:hover { transform: translateY(-3px); color: #08301F; }
.wa-float svg { width: 1.35em; height: 1.35em; }
@media (max-width: 560px) {
  .wa-float { left: 1.05rem; right: 1.05rem; justify-content: center; }
}

/* ==========================================================================
   Prose (about / legal)
   ========================================================================== */

.prose { max-width: 46rem; }
.prose h2 { margin-top: 2.4rem; }
.prose ul { padding-left: 1.1rem; }
.prose li { margin-bottom: .5rem; }

/* ==========================================================================
   Reveal on scroll
   ========================================================================== */

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal[data-shown="true"] { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
}

/* pink refinements */
::selection { background: var(--bugambilia); color: #fff; }
.card-tag { background: var(--masa); color: var(--bugambilia-ink); }






}

/* .sec-head p was out-specifying .eyebrow and turning section eyebrows grey */
.sec-head .eyebrow { color: var(--bugambilia-ink); }
.sec-head .eyebrow--light { color: #F6D8E4; }
.band--nopal .sec-head .eyebrow { color: #F6D8E4; }


