/* =============================================================
   1. Tokens
   ============================================================= */
:root {
  --bg:         #130c0a;
  --bg-2:       #1c1310;
  --bg-3:       #271b16;
  --bg-4:       #302119;
  --cream:      #f4e9d7;
  --cream-2:    #ddc8a8;
  --cream-3:    #a2907a;
  --gold:       #cda255;
  --gold-bright:#f7dfa0;
  --gold-dark:  #8a6425;
  --red:        #7c1b28;
  --red-bright: #b23345;
  --white-rose: #f4ece0;
  --line:       rgba(244,233,215,.14);
  --line-strong:rgba(244,233,215,.24);

  --serif: "Cormorant Garamond", "Georgia", serif;
  --sans:  "Manrope", "Segoe UI", sans-serif;

  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in:     cubic-bezier(0.7, 0, 0.84, 0);
  --ease-soft:   cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);

  --nav-h: 76px;
  --container: 1240px;
}

/* =============================================================
   2. Reset & base
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html {
  -webkit-text-size-adjust: 100%;
  tab-size: 2;
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
  overflow-x: clip;
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  background: var(--bg);
  color: var(--cream);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  overscroll-behavior-y: none;
}
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
a { color: inherit; text-decoration: none; }
p { text-wrap: pretty; }
h1, h2, h3, h4 { text-wrap: balance; line-height: 1.05; letter-spacing: -0.01em; font-family: var(--serif); font-weight: 600; }
ul { list-style: none; padding: 0; }
::selection { background: var(--gold); color: var(--bg); }

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

.skip-link {
  position: fixed; top: -100px; left: 1rem;
  padding: .7rem 1.1rem; background: var(--gold-bright); color: var(--bg);
  z-index: 9999; border-radius: 8px; font-weight: 600;
  transition: top .3s var(--ease-out);
}
.skip-link:focus { top: 1rem; }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 1.25rem;
}
@media (min-width: 720px)  { .container { padding-inline: 2rem; } }
@media (min-width: 1280px) { .container { padding-inline: 2.5rem; } }

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

/* =============================================================
   3. Utilities
   ============================================================= */
.eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--sans); font-size: .74rem; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold-bright);
}
.eyebrow::before {
  content: ""; width: 22px; height: 1px; background: var(--gold);
}
.section-head { max-width: 62ch; margin-bottom: 3rem; }
.section-head h2 { font-size: clamp(2rem, 4.4vw, 3.2rem); font-style: italic; margin-top: .6rem; }
.section-head p { color: var(--cream-3); margin-top: 1rem; font-size: 1.05rem; max-width: 52ch; }
.section-head.is-center { text-align: center; margin-inline: auto; }

section { position: relative; padding-block: clamp(4.5rem, 9vw, 8rem); }

/* Gold shimmer — the signature treatment (matte gold that shines) */
.shine {
  background: linear-gradient(100deg,
    var(--gold-dark) 20%, var(--gold) 38%, var(--gold-bright) 50%, var(--gold) 62%, var(--gold-dark) 80%);
  background-size: 260% 100%;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: shineSweep 6.5s ease-in-out infinite;
}
@keyframes shineSweep {
  0%   { background-position: 120% 0; }
  50%  { background-position: 0% 0; }
  100% { background-position: -120% 0; }
}

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  padding: .95rem 1.9rem;
  font-family: var(--sans); font-weight: 600; font-size: .92rem;
  letter-spacing: .03em;
  border-radius: 999px;
  transition: transform .5s var(--ease-soft), box-shadow .5s var(--ease-soft), background .4s, color .4s, border-color .4s;
}
.btn-primary {
  background: linear-gradient(120deg, var(--gold-dark), var(--gold) 45%, var(--gold-bright) 70%, var(--gold));
  color: #1a1108;
  box-shadow: 0 12px 30px -8px rgba(205,162,85,.55);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 20px 44px -10px rgba(205,162,85,.7); }
.btn-ghost {
  border: 1px solid var(--line-strong); color: var(--cream);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-bright); transform: translateY(-3px); }
.btn:active { transform: translateY(-1px); transition-duration: .12s; }

/* Reveal on scroll */
[data-reveal] {
  opacity: 0; transform: translateY(36px);
  transition: opacity .9s var(--ease-soft), transform .9s var(--ease-soft);
}
[data-reveal].is-revealed { opacity: 1; transform: none; }
[data-reveal-d2] { transition-delay: .12s; }
[data-reveal-d3] { transition-delay: .24s; }
[data-reveal-d4] { transition-delay: .36s; }

/* =============================================================
   4. Rose motif (SVG sprite consumed via <use>)
   ============================================================= */
.rose-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }

/* Colors reach the <use>-cloned symbol content via inherited CSS custom
   properties (class-based descendant selectors do NOT cross the use
   boundary — the symbol's shapes read var(--rose-outer) etc. directly). */
.rose { display: block; filter: drop-shadow(0 6px 18px rgba(0,0,0,.35)); }
.rose--red   { --rose-outer: var(--red-bright); --rose-inner: var(--red); --rose-center: var(--gold-bright); }
.rose--white { --rose-outer: var(--white-rose); --rose-inner: #d8c6ac; --rose-center: var(--gold); }
.rose--gold  { --rose-outer: var(--gold); --rose-inner: var(--gold-dark); --rose-center: var(--white-rose); }

.leaf { --leaf-color: #4b5a3c; opacity: .85; }

.sway { animation: sway 9s ease-in-out infinite; transform-origin: 50% 100%; }
.sway--slow { animation-duration: 12s; }
.sway--rev { animation-direction: reverse; }
@keyframes sway {
  0%, 100% { transform: rotate(-2.2deg); }
  50%      { transform: rotate(2.2deg); }
}

/* =============================================================
   5. Navigation
   ============================================================= */
.nav {
  position: fixed; top: 0; inset-inline: 0; z-index: 200;
  height: var(--nav-h);
  display: flex; align-items: center;
  transition: background-color .4s var(--ease-out), box-shadow .4s var(--ease-out), backdrop-filter .4s var(--ease-out);
}
.nav.is-scrolled {
  background: rgba(19,12,10,.86);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line);
}
.nav-inner {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem;
}
.nav-brand-wrap { display: flex; align-items: center; gap: .65rem; }
.nav-rose { width: 26px; height: 26px; opacity: .9; display: none; }
@media (min-width: 720px) { .nav-rose { display: block; } }
.nav-brand {
  font-family: var(--serif); font-style: italic; font-weight: 700;
  font-size: 1.6rem; letter-spacing: .01em;
}
.nav-links {
  display: none; align-items: center; gap: 2.1rem;
  font-size: .88rem; letter-spacing: .04em; text-transform: uppercase; font-weight: 600;
}
@media (min-width: 960px) { .nav-links { display: flex; } }
.nav-link { position: relative; padding: .25rem 0; color: var(--cream-2); transition: color .3s; }
.nav-link::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -4px;
  height: 1px; background: var(--gold-bright);
  transform: scaleX(0); transform-origin: right;
  transition: transform .45s var(--ease-out);
}
.nav-link:hover { color: var(--cream); }
.nav-link:hover::after { transform: scaleX(1); transform-origin: left; }

.nav-cta { display: none; }
@media (min-width: 960px) { .nav-cta { display: inline-flex; padding: .7rem 1.4rem; font-size: .82rem; } }

.nav-toggle {
  display: grid; place-items: center; width: 42px; height: 42px;
  border: 1px solid var(--line-strong); border-radius: 10px;
}
@media (min-width: 960px) { .nav-toggle { display: none; } }
.nav-toggle span { display: block; width: 18px; height: 1.5px; background: var(--cream); position: relative; }
.nav-toggle span::before, .nav-toggle span::after {
  content: ""; position: absolute; left: 0; width: 18px; height: 1.5px; background: var(--cream);
  transition: transform .3s var(--ease-out);
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after  { top: 6px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after  { transform: translateY(-6px) rotate(-45deg); }

.nav-mobile {
  position: fixed; inset: 0; z-index: 190;
  background: var(--bg);
  display: grid; place-items: center;
  clip-path: inset(0 0 100% 0);
  transition: clip-path .6s var(--ease-soft);
}
.nav-mobile[data-open="true"] { clip-path: inset(0); }
.nav-mobile-links { display: flex; flex-direction: column; align-items: center; gap: 1.6rem; }
.nav-mobile-links a { font-family: var(--serif); font-style: italic; font-size: 2rem; }

/* =============================================================
   6. Splash
   ============================================================= */
.splash {
  position: fixed; inset: 0; z-index: 500;
  background: var(--bg);
  display: grid; place-items: center;
  transition: opacity .7s var(--ease-out), clip-path .9s var(--ease-soft);
  animation: splashSafety .01s 2.6s forwards;
}
.splash.is-out { opacity: 0; pointer-events: none; clip-path: inset(0 0 100% 0); }
@keyframes splashSafety { to { opacity: 0; pointer-events: none; clip-path: inset(0 0 100% 0); } }
.splash-mark { font-family: var(--serif); font-style: italic; font-weight: 700; font-size: 2.2rem; }
.splash-line { display: block; width: 60px; height: 1px; margin: 1rem auto 0; background: var(--gold);
  animation: splashLine 1.4s var(--ease-soft) infinite alternate; }
@keyframes splashLine { from { width: 20px; opacity: .4; } to { width: 70px; opacity: 1; } }

/* =============================================================
   7. Hero
   ============================================================= */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: center;
  padding-top: calc(var(--nav-h) + 2rem);
  overflow: clip;
  isolation: isolate;
}
.hero-mesh {
  position: absolute; inset: 0; z-index: -2;
  background:
    radial-gradient(52% 42% at 22% 24%, rgba(178,51,69,.30), transparent 62%),
    radial-gradient(46% 40% at 82% 18%, rgba(205,162,85,.24), transparent 60%),
    radial-gradient(60% 55% at 50% 100%, rgba(124,27,40,.28), transparent 65%),
    var(--bg);
  filter: blur(60px) saturate(120%);
  animation: meshDrift 24s ease-in-out infinite;
}
@keyframes meshDrift {
  0%, 100% { transform: scale(1) rotate(0deg); }
  50%      { transform: scale(1.14) rotate(6deg); }
}
.hero-grain {
  position: absolute; inset: 0; z-index: -1; pointer-events: none;
  opacity: .12; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.5 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  background-size: 220px 220px;
}

.hero-roses {
  position: absolute; top: 0; bottom: 0; width: clamp(90px, 12vw, 190px);
  z-index: 0; pointer-events: none; display: none;
}
.hero-roses--left  { left: clamp(-2rem, -1vw, 0px); }
.hero-roses--right { right: clamp(-2rem, -1vw, 0px); }
@media (min-width: 960px) { .hero-roses { display: block; } }
.hero-roses .rose { position: absolute; }
.hero-roses .stem {
  position: absolute; left: 50%; top: 6%; bottom: 6%; width: 2px;
  background: linear-gradient(var(--gold-dark), var(--gold), var(--gold-dark));
  opacity: .55;
}

.hero-inner { position: relative; z-index: 2; max-width: 780px; margin-inline: auto; text-align: center; }
.hero-kicker { justify-content: center; margin-bottom: 1.4rem; }
.hero-title {
  font-size: clamp(2.6rem, 6.6vw, 5.4rem);
  font-style: italic;
  line-height: 1.02;
  max-width: 16ch;
  margin-inline: auto;
}
.hero-title em { font-style: italic; }
.hero-sub {
  margin: 1.6rem auto 0; max-width: 46ch;
  color: var(--cream-2); font-size: clamp(1.02rem, 1.6vw, 1.2rem);
}
.hero-actions { margin-top: 2.4rem; display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

.hero-tags {
  margin-top: 3.2rem; display: flex; flex-wrap: wrap; gap: .6rem 1.1rem; justify-content: center;
  color: var(--cream-3); font-size: .78rem; letter-spacing: .1em; text-transform: uppercase;
}
.hero-tags span::before { content: "·"; margin-right: 1.1rem; color: var(--gold); }
.hero-tags span:first-child::before { display: none; }

.split-word { display: inline-block; }

/* =============================================================
   8. Scallop / papel picado divider
   ============================================================= */
.scallop {
  position: relative; height: 40px; background: var(--bg-2);
}
.scallop::before {
  content: ""; position: absolute; inset: 0; background: inherit;
  -webkit-mask-image: radial-gradient(circle at 50% 0%, transparent 13px, #000 13.5px);
  mask-image: radial-gradient(circle at 50% 0%, transparent 13px, #000 13.5px);
  -webkit-mask-size: 28px 28px; mask-size: 28px 28px;
  -webkit-mask-repeat: repeat-x; mask-repeat: repeat-x;
}
.scallop--up::before {
  -webkit-mask-image: radial-gradient(circle at 50% 100%, transparent 13px, #000 13.5px);
  mask-image: radial-gradient(circle at 50% 100%, transparent 13px, #000 13.5px);
}
.scallop-rose {
  position: absolute; left: 50%; top: -13px; width: 26px; height: 26px;
  transform: translateX(-50%); z-index: 2;
}

/* =============================================================
   9. Tocados (products)
   ============================================================= */
.tocados { background: var(--bg-2); }
.tocados-grid {
  display: grid; grid-template-columns: 1fr; gap: 1.6rem;
}
@media (min-width: 640px)  { .tocados-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .tocados-grid { grid-template-columns: repeat(3, 1fr); gap: 1.9rem; } }

.tocado-card {
  --rx: 0deg; --ry: 0deg; --mx: 50%; --my: 50%;
  position: relative; isolation: isolate;
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
  transform: perspective(1000px) rotateX(var(--rx)) rotateY(var(--ry));
  transform-style: preserve-3d;
  transition: transform .5s var(--ease-soft), box-shadow .5s var(--ease-soft), border-color .5s;
}
.tocado-card:hover {
  transition-duration: .15s;
  border-color: var(--line-strong);
  box-shadow: 0 40px 80px -24px rgba(0,0,0,.55), 0 0 0 1px rgba(205,162,85,.18);
}
.tocado-card::before {
  content: ""; position: absolute; inset: 0; z-index: 3; pointer-events: none;
  background: radial-gradient(240px circle at var(--mx) var(--my), rgba(205,162,85,.22), transparent 62%);
  opacity: 0; transition: opacity .4s;
}
.tocado-card:hover::before { opacity: 1; }

.tocado-media {
  aspect-ratio: 4 / 5;
  position: relative;
  background:
    linear-gradient(160deg, var(--bg-4), var(--bg-3)),
    repeating-linear-gradient(135deg, rgba(205,162,85,.05) 0 2px, transparent 2px 14px);
  display: grid; place-items: center;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.tocado-media .rose { width: 54px; height: 54px; opacity: .5; }
.tocado-media .placeholder-label {
  position: absolute; bottom: 1rem; left: 1rem; right: 1rem;
  font-size: .68rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--cream-3);
}
.tocado-media img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .8s var(--ease-soft), filter .6s;
}
.tocado-card:hover .tocado-media img { transform: scale(1.05); filter: saturate(1.08) brightness(1.03); }
.tocado-tag {
  position: absolute; top: 1rem; left: 1rem; z-index: 2;
  background: rgba(19,12,10,.7); backdrop-filter: blur(6px);
  border: 1px solid var(--line-strong);
  padding: .35rem .75rem; border-radius: 999px;
  font-size: .66rem; letter-spacing: .1em; text-transform: uppercase; color: var(--gold-bright);
}
.tocado-body { padding: 1.5rem 1.5rem 1.7rem; transform: translateZ(30px); }
.tocado-body h3 { font-size: 1.4rem; font-style: italic; }
.tocado-body p { color: var(--cream-3); font-size: .92rem; margin-top: .55rem; }
.tocado-foot { margin-top: 1.2rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.tocado-price { font-family: var(--serif); font-size: 1.15rem; color: var(--gold-bright); }
.tocado-link { font-size: .78rem; letter-spacing: .06em; text-transform: uppercase; font-weight: 700; color: var(--cream); border-bottom: 1px solid var(--gold); padding-bottom: 2px; position: relative; z-index: 2; }
.tocado-link:hover { color: var(--gold-bright); }

/* =============================================================
   9.5 Product detail page
   ============================================================= */
.product-detail { padding-top: calc(var(--nav-h) + 2.4rem); }
.back-btn { margin-bottom: 2.4rem; }

.product-detail-grid { display: grid; gap: 2.6rem; }
@media (min-width: 960px) { .product-detail-grid { grid-template-columns: 1.05fr .95fr; gap: 4rem; align-items: start; } }

/* Gallery */
.product-gallery-main {
  position: relative; aspect-ratio: 4/5; border-radius: 20px; overflow: hidden;
  background:
    linear-gradient(160deg, var(--bg-4), var(--bg-3)),
    repeating-linear-gradient(135deg, rgba(205,162,85,.05) 0 2px, transparent 2px 14px);
  border: 1px solid var(--line);
  display: grid; place-items: center;
}
.product-gallery-main .rose { width: 84px; height: 84px; opacity: .5; }
.product-gallery-main .placeholder-label {
  position: absolute; bottom: 1.2rem; left: 1.2rem; right: 1.2rem;
  font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; color: var(--cream-3);
}
.product-gallery-main[data-has-photo] { padding: 0; }
.product-gallery-main img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .8s var(--ease-soft), filter .6s, opacity .2s var(--ease-out);
}
.product-gallery-main[data-has-photo]:hover img { transform: scale(1.03); filter: saturate(1.08) brightness(1.03); }

.product-gallery-thumbs { margin-top: 1rem; display: grid; grid-template-columns: repeat(4, 1fr); gap: .8rem; }
.product-gallery-thumb {
  aspect-ratio: 1; border-radius: 12px; overflow: hidden; cursor: pointer;
  background: linear-gradient(160deg, var(--bg-4), var(--bg-3));
  border: 1px solid var(--line); padding: 0;
  display: grid; place-items: center;
  transition: border-color .35s var(--ease-out), transform .35s var(--ease-soft);
}
.product-gallery-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.product-gallery-thumb .rose { width: 30px; height: 30px; opacity: .45; transition: opacity .35s; }
.product-gallery-thumb:hover { border-color: var(--gold); transform: translateY(-3px); }
.product-gallery-thumb:hover .rose { opacity: .8; }
.product-gallery-thumb.is-active { border-color: var(--gold-bright); box-shadow: 0 0 0 1px var(--gold-bright); }

/* Info column */
.product-info .eyebrow { margin-bottom: .8rem; }
.product-info h1 { font-size: clamp(2.1rem, 4.2vw, 3.1rem); font-style: italic; }
.product-hook { color: var(--cream-2); margin-top: 1.2rem; font-size: 1.06rem; max-width: 52ch; }

.product-highlights { margin-top: 1.5rem; display: grid; gap: .7rem; }
.product-highlights li {
  display: flex; align-items: flex-start; gap: .7rem;
  color: var(--cream-2); font-size: .94rem;
}
.product-highlights li::before {
  content: ""; flex: none; width: 6px; height: 6px; margin-top: .5rem;
  border-radius: 50%; background: var(--gold-bright);
}

/* Purchase summary */
.product-purchase {
  margin-top: 2.2rem; padding: 1.8rem; border-radius: 18px;
  background: var(--bg-2); border: 1px solid var(--line);
}
.purchase-row {
  display: flex; align-items: center; justify-content: space-between;
  padding-block: .6rem; font-size: .94rem; color: var(--cream-2);
  border-bottom: 1px solid var(--line);
}
.purchase-row:first-child { padding-top: 0; }
.purchase-total {
  border-bottom: none; padding-top: 1rem; margin-top: .3rem;
  font-family: var(--serif); font-size: 1.3rem; font-style: italic; color: var(--gold-bright);
}
.purchase-cta { width: 100%; margin-top: 1.4rem; }
.product-purchase .btn-ghost { width: 100%; margin-top: .8rem; }
.purchase-note { margin-top: 1rem; font-size: .76rem; color: var(--cream-3); line-height: 1.5; }

@media (max-width: 539px) { .product-gallery-thumbs { grid-template-columns: repeat(3, 1fr); } }

/* =============================================================
   10. Nosotros
   ============================================================= */
.nosotros { position: relative; }

.nosotros-intro { max-width: 66ch; }
.nosotros-intro h2 { font-size: clamp(2rem, 4.4vw, 3.2rem); font-style: italic; margin-top: .6rem; }
.nosotros-intro p { color: var(--cream-2); margin-top: 1.4rem; max-width: 58ch; }

/* Horizontal photo band — full frame, no crop, sized to the source's own ratio */
.nosotros-photo {
  position: relative; margin-block: clamp(2.2rem, 5vw, 3.4rem);
  border-radius: 20px; overflow: hidden; isolation: isolate;
  border: 1px solid var(--line); background: var(--bg-3);
}
.nosotros-photo img {
  display: block; width: 100%; height: auto;
  aspect-ratio: 1600 / 902;
  object-fit: contain;
  transition: transform .9s var(--ease-soft), filter .6s;
}
.nosotros-photo:hover img { transform: scale(1.035); filter: saturate(1.12) brightness(1.04) contrast(1.03); }
.nosotros-photo::after {
  content: ""; position: absolute; inset: 0; border: 1px solid var(--line-strong);
  border-radius: 20px; margin: 12px; pointer-events: none; z-index: 2;
}
.nosotros-photo::before {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(0deg, rgba(19,12,10,.72) 0%, transparent 32%);
  opacity: 0; transition: opacity .5s var(--ease-out);
}
.nosotros-photo:hover::before { opacity: 1; }
.nosotros-photo figcaption {
  position: absolute; left: 1.6rem; right: 1.6rem; bottom: 1.1rem; z-index: 3;
  font-family: var(--serif); font-style: italic; font-size: 1.1rem;
  opacity: 0; transform: translateY(10px);
  transition: opacity .5s var(--ease-out), transform .5s var(--ease-soft);
}
.nosotros-photo:hover figcaption { opacity: 1; transform: translateY(0); }

.nosotros-copy p { color: var(--cream-2); margin-top: 1.1rem; max-width: 62ch; }
.nosotros-copy p:first-of-type { margin-top: 0; }

.stats {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.6rem 1.2rem;
  margin-top: 2.6rem; padding-top: 2.2rem; border-top: 1px solid var(--line);
}
@media (min-width: 540px) { .stats { grid-template-columns: repeat(4, 1fr); } }
.stat-num { font-family: var(--serif); font-style: italic; font-size: clamp(1.8rem, 3vw, 2.6rem); color: var(--gold-bright); }
.stat-label { margin-top: .3rem; font-size: .74rem; letter-spacing: .08em; text-transform: uppercase; color: var(--cream-3); }

.values { margin-top: 2.4rem; display: grid; gap: 1.1rem; }
@media (min-width: 540px) { .values { grid-template-columns: repeat(3, 1fr); } }
.value-card { padding: 1.2rem; border: 1px solid var(--line); border-radius: 14px; background: var(--bg-2); }
.value-card h4 { font-family: var(--sans); font-size: .82rem; letter-spacing: .06em; text-transform: uppercase; color: var(--gold-bright); font-weight: 700; }
.value-card p { font-size: .86rem; color: var(--cream-3); margin-top: .5rem; }

/* =============================================================
   11. Testimonios
   ============================================================= */
.testimonios { background: var(--bg-2); }
.testi-grid { display: grid; gap: 1.5rem; }
@media (min-width: 720px)  { .testi-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1280px) { .testi-grid { grid-template-columns: repeat(4, 1fr); } }

.testi-card {
  padding: 1.9rem 1.6rem; border-radius: 18px;
  background: var(--bg-3); border: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 1.1rem;
}
.testi-quote-mark { font-family: var(--serif); font-style: italic; font-size: 2.6rem; color: var(--gold); line-height: 1; }
.testi-text { font-size: .96rem; color: var(--cream-2); flex: 1; }
.testi-foot { display: flex; align-items: center; gap: .8rem; padding-top: .9rem; border-top: 1px solid var(--line); }
.testi-avatar {
  width: 38px; height: 38px; border-radius: 50%; flex: none;
  background: linear-gradient(135deg, var(--gold-dark), var(--red));
  display: grid; place-items: center; font-family: var(--serif); font-style: italic; font-weight: 700; color: var(--cream);
}
.testi-name { font-size: .86rem; font-weight: 700; }
.testi-role { font-size: .74rem; color: var(--cream-3); }

/* =============================================================
   12. Contacto
   ============================================================= */
.contacto-grid { display: grid; gap: 3rem; }
@media (min-width: 960px) { .contacto-grid { grid-template-columns: 1fr 1.1fr; gap: 4.5rem; } }

.contacto-info-list { margin-top: 1.8rem; display: grid; gap: 1rem; }
.contacto-info-item {
  display: flex; align-items: center; gap: .9rem;
  padding: 1rem 1.1rem; border: 1px solid var(--line); border-radius: 14px; background: var(--bg-2);
  transition: border-color .35s var(--ease-out), transform .35s var(--ease-soft), background .35s;
}
a.contacto-info-item:hover {
  border-color: var(--gold); background: var(--bg-3); transform: translateX(4px);
}
.contacto-info-item .ico { width: 20px; height: 20px; flex: none; color: var(--gold-bright); }
.contacto-info-item .label { font-size: .7rem; letter-spacing: .08em; text-transform: uppercase; color: var(--cream-3); }
.contacto-info-item .value { font-size: .96rem; font-weight: 600; }

.contacto-form {
  position: relative;
  padding: 2rem; border-radius: 20px; background: var(--bg-2); border: 1px solid var(--line);
  transition: opacity .55s var(--ease-out), transform .55s var(--ease-soft);
}
.contacto-form.is-sent { opacity: 0; transform: translateY(-10px); pointer-events: none; }

.field { position: relative; margin-bottom: 1.3rem; }
.field input, .field textarea {
  width: 100%; padding: 1.35rem 1rem .55rem; border: 1px solid var(--line-strong);
  border-radius: 12px; background: var(--bg); color: var(--cream); font-family: var(--sans); font-size: .96rem;
  transition: border-color .3s;
}
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field textarea:focus { border-color: var(--gold); outline: none; }
.field label {
  position: absolute; left: 1rem; top: 1.1rem; pointer-events: none;
  color: var(--cream-3); transition: all .25s var(--ease-out); font-size: .95rem;
}
.field input:focus + label, .field input:not(:placeholder-shown) + label,
.field textarea:focus + label, .field textarea:not(:placeholder-shown) + label {
  top: .5rem; font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; color: var(--gold-bright);
}

.contacto-submit { position: relative; width: 100%; overflow: hidden; }
.form-label, .form-spinner, .form-check { transition: opacity .25s; }
.form-spinner, .form-check { position: absolute; inset: 0; display: grid; place-items: center; opacity: 0; pointer-events: none; }
.contacto-form.is-sending .form-label { opacity: 0; }
.contacto-form.is-sending .form-spinner { opacity: 1; }
.form-spinner::after {
  content: ""; width: 18px; height: 18px; border: 2px solid rgba(26,17,8,.3); border-top-color: #1a1108;
  border-radius: 50%; animation: spin .85s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.contacto-success {
  position: absolute; inset: 0; display: grid; place-items: center; text-align: center; padding: 2rem;
  opacity: 0; pointer-events: none; transform: translateY(10px);
  transition: opacity .7s var(--ease-out), transform .8s var(--ease-soft);
}
.contacto-success.is-visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.contacto-success h3 { font-style: italic; font-size: 1.5rem; }
.contacto-success p { color: var(--cream-3); margin-top: .6rem; }

/* =============================================================
   13. Footer
   ============================================================= */
.footer { background: var(--bg-2); padding-block: 3.5rem 2.2rem; }
.footer-top {
  display: grid; gap: 2.4rem; padding-bottom: 2.4rem; border-bottom: 1px solid var(--line);
}
@media (min-width: 720px) { .footer-top { grid-template-columns: 1.3fr 1fr 1fr; } }
.footer-brand { display: flex; align-items: center; gap: .6rem; font-family: var(--serif); font-style: italic; font-size: 1.5rem; }
.footer-tagline { margin-top: .8rem; color: var(--cream-3); max-width: 32ch; font-size: .92rem; }
.footer-col h5 { font-size: .74rem; letter-spacing: .1em; text-transform: uppercase; color: var(--gold-bright); margin-bottom: 1rem; }
.footer-col ul { display: grid; gap: .65rem; }
.footer-col a { color: var(--cream-2); font-size: .92rem; }
.footer-col a:hover { color: var(--gold-bright); }
.footer-bottom {
  padding-top: 1.6rem; display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; align-items: center;
  font-size: .78rem; color: var(--cream-3);
}
.footer-rose { width: 24px; height: 24px; opacity: .7; }

/* =============================================================
   14. Responsive tune-ups
   ============================================================= */
@media (max-width: 719px) {
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
}

/* =============================================================
   15. Reduced motion — only truly intrusive loops
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  .hero-mesh { animation: none; }
  .sway { animation: none; }
  .splash-line { animation: none; }
}
