/* ============================================
   2600 BARBERÍA — design tokens
   ============================================ */
:root{
  /* color — antique brass, deep espresso ink, ivory, restrained oxblood */
  --ink:        #1C1712;
  --ink-soft:   #453A31;
  --ink-faint:  #77695A;
  --paper:      #F2ECDF;
  --paper-deep: #E8DCC3;
  --card:       #FBF8F0;
  --copper:     #9C6B2E;
  --copper-deep:#6E4B1E;
  --copper-soft:#C9A15F;
  --moss:       #1F3B2C;
  --oxblood:    #6B222C;
  --line:       rgba(28,23,18,0.12);
  --line-strong:rgba(28,23,18,0.28);
  --line-gold:  rgba(156,107,46,0.4);
  --wa-green:   #234B37;

  /* type */
  --font-display: 'Fraunces', ui-serif, Georgia, serif;
  --font-body:    'Work Sans', ui-sans-serif, system-ui, sans-serif;
  --font-mono:    'JetBrains Mono', ui-monospace, monospace;

  /* scale */
  --text-xs: .75rem;
  --text-sm: .875rem;
  --text-base: 1rem;
  --text-md: 1.125rem;
  --text-lg: 1.375rem;
  --text-xl: 1.75rem;
  --text-2xl: 2.25rem;
  --text-3xl: clamp(2.5rem, 5vw, 3.5rem);
  --text-4xl: clamp(2.75rem, 7vw, 5.25rem);

  /* spacing (8pt rhythm) */
  --space-1: .5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2rem;
  --space-5: 3rem;
  --space-6: 4rem;
  --space-7: 6rem;
  --space-8: 8rem;

  --radius-sm: 4px;
  --radius-md: 14px;
  --radius-lg: 28px;

  --shadow-sm: 0 2px 8px rgba(28,23,18,.08);
  --shadow-md: 0 16px 40px -12px rgba(28,23,18,.22);

  --ease-out: cubic-bezier(.16,.84,.44,1);
  --ease-in:  cubic-bezier(.7,0,.84,0);
  --ease-lux: cubic-bezier(.22,1,.36,1);
  --dur-fast: 180ms;
  --dur-base: 280ms;
  --dur-slow: 480ms;
  --dur-lift: 1800ms;

  --header-h: 84px;
}

/* ============================================
   reset
   ============================================ */
*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *, *::before, *::after{ animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
}
body{
  margin: 0;
  min-height: 100dvh;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img{ max-width: 100%; display: block; }
ul, ol, dl{ margin: 0; padding: 0; list-style: none; }
a{ color: inherit; text-decoration: none; }
h1,h2,h3,h4,p,dl,dd{ margin: 0; }
button{ font: inherit; background: none; border: 0; color: inherit; cursor: pointer; }
input, iframe{ border: 0; }

a, button, .team-avatar{ cursor: pointer; }

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

.skip-link{
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--ink); color: var(--paper); padding: .8em 1.2em; border-radius: 0 0 8px 0;
}
.skip-link:focus{ left: 0; }

.wrap{
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: var(--space-3);
}
@media (min-width: 768px){ .wrap{ padding-inline: var(--space-4); } }

/* grain overlay */
.grain-overlay{
  position: fixed; inset: 0; width: 100%; height: 100%;
  pointer-events: none; z-index: 300; opacity: .045; mix-blend-mode: multiply;
}

/* ============================================
   header
   ============================================ */
.site-header{
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--header-h);
  display: flex; align-items: center;
  background: rgba(242,236,223,0);
  transition: background var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out), height var(--dur-base) var(--ease-out);
}
.site-header.is-scrolled{
  background: rgba(242,236,223,.86);
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  box-shadow: 0 1px 0 var(--line);
  height: 68px;
}
.header-inner{
  display: flex; align-items: center; justify-content: space-between; width: 100%;
}
.wordmark{
  display: flex; align-items: baseline; gap: .35em;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.35rem;
  letter-spacing: -.01em;
  white-space: nowrap;
}
.wordmark-num{ color: var(--copper); transition: color var(--dur-base) var(--ease-out); }
.wordmark-light{ color: var(--paper); }
.wordmark-light .wordmark-num{ color: var(--copper-soft); }
.site-header .wordmark{ transition: color var(--dur-base) var(--ease-out); }

.main-nav{ display: none; align-items: center; gap: var(--space-4); }
.main-nav a{
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--ink-soft);
  position: relative;
  padding-block: 4px;
  transition: color var(--dur-base) var(--ease-out);
}
.main-nav a::after{
  content: ''; position: absolute; left: 0; right: 100%; bottom: 0; height: 1.5px;
  background: var(--copper); transition: right var(--dur-base) var(--ease-out);
}
.main-nav a:hover{ color: var(--ink); }
.main-nav a:hover::after{ right: 0; }

.header-actions{ display: flex; align-items: center; gap: var(--space-3); }
.header-actions .btn-primary{ display: none; }
@media (min-width: 1024px){
  .main-nav{ display: flex; }
  .header-actions .btn-primary{ display: inline-flex; }
}

.nav-toggle{
  width: 40px; height: 40px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.nav-toggle span{ width: 20px; height: 1.6px; background: var(--ink); transition: transform var(--dur-base) var(--ease-out), opacity var(--dur-fast), background var(--dur-base) var(--ease-out); }
.nav-toggle[aria-expanded="true"] span:nth-child(1){ transform: translateY(6.6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2){ opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3){ transform: translateY(-6.6px) rotate(-45deg); }
@media (min-width: 1024px){ .nav-toggle{ display: none; } }

.mobile-nav{
  position: fixed; top: var(--header-h); left: 0; right: 0; z-index: 99;
  background: var(--paper); border-top: 1px solid var(--line);
  display: flex; flex-direction: column; padding: var(--space-3);
  gap: var(--space-1);
  transform: translateY(-8px); opacity: 0; visibility: hidden;
  transition: transform var(--dur-base) var(--ease-out), opacity var(--dur-base) var(--ease-out), visibility var(--dur-base);
}
.mobile-nav.is-open{ transform: translateY(0); opacity: 1; visibility: visible; }
.mobile-nav a{ padding: .85em .2em; font-size: var(--text-md); border-bottom: 1px solid var(--line); }
.mobile-nav .btn{ margin-top: var(--space-2); justify-content: center; }
@media (min-width: 1024px){ .mobile-nav{ display: none; } }

/* header sitting over the dark cinematic video */
.site-header.header-on-dark{ background: transparent; box-shadow: none; }
.site-header.header-on-dark .wordmark{ color: var(--paper); }
.site-header.header-on-dark .wordmark-num{ color: var(--copper-soft); }
.site-header.header-on-dark .main-nav a{ color: rgba(242,236,223,.82); }
.site-header.header-on-dark .main-nav a:hover{ color: var(--paper); }
.site-header.header-on-dark .main-nav a::after{ background: var(--copper-soft); }
.site-header.header-on-dark .nav-toggle span{ background: var(--paper); }

/* ============================================
   buttons
   ============================================ */
.btn{
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  padding: .95em 1.6em;
  border-radius: 999px;
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: .01em;
  transition: transform var(--dur-fast) var(--ease-out), box-shadow var(--dur-base) var(--ease-out), background var(--dur-base) var(--ease-out), border-color var(--dur-base) var(--ease-out);
  will-change: transform;
}
.btn:active{ transform: scale(.97); }
.btn-primary{
  background: var(--copper-deep);
  color: #FCF7EE;
  box-shadow: 0 10px 24px -10px rgba(110,75,30,.55);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.btn-primary::before{
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.18), rgba(255,255,255,0) 42%);
  transition: opacity var(--dur-base) var(--ease-out);
  pointer-events: none;
  z-index: -1;
}
.btn-primary:hover{ box-shadow: 0 14px 28px -10px rgba(78,52,18,.6); }
.btn-primary:hover::before{ background: linear-gradient(135deg, rgba(255,255,255,.26), rgba(255,255,255,0) 55%); }
.btn-sm{ padding: .7em 1.3em; }
.btn-ghost{
  background: transparent; color: var(--ink); border: 1.5px solid var(--line-strong);
}
.btn-ghost:hover{ border-color: var(--ink); background: rgba(28,23,18,.04); }
.btn-whatsapp{
  background: var(--wa-green); color: #F4F7F1;
  box-shadow: 0 10px 24px -10px rgba(35,75,55,.5);
  margin-top: var(--space-3);
}
.btn-whatsapp:hover{ background: #16301F; }

/* ============================================
   eyebrow / section heads
   ============================================ */
.eyebrow{
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--copper-deep);
  margin-bottom: var(--space-2);
}
.section-title{
  font-family: var(--font-display);
  font-weight: 500;
  font-size: var(--text-3xl);
  line-height: 1.08;
  letter-spacing: -.01em;
  max-width: 16ch;
}
.section-desc{
  margin-top: var(--space-2);
  color: var(--ink-soft);
  font-size: var(--text-md);
  max-width: 48ch;
}
.section-head{ margin-bottom: var(--space-6); }
@media (max-width: 640px){
  .section-desc{ font-size: var(--text-sm); }
}

.section{ padding-block: var(--space-7); position: relative; }
.section-alt{ background: var(--paper-deep); }

/* ============================================
   cinematic hero (scroll-reveal video + headline, merged)
   ============================================ */
.cine-hero{
  position: relative;
  --cine-scroll: 550px;
  height: calc(var(--cine-scroll) + 100dvh);
}
@media (min-width: 700px){ .cine-hero{ --cine-scroll: 850px; } }
@media (min-width: 1100px){ .cine-hero{ --cine-scroll: 1050px; } }
@media (prefers-reduced-motion: reduce){ .cine-hero{ height: 100dvh; } }

.cine-sticky{
  position: sticky; top: 0;
  height: 100dvh;
  overflow: hidden;
  background: var(--ink);
  display: flex; flex-direction: column; justify-content: center;
  padding-top: calc(var(--header-h) + var(--space-4));
  padding-bottom: var(--space-5);
}
.cine-clip{
  position: absolute; inset: 0;
  overflow: hidden;
  clip-path: inset(22% 26% round 32px);
  background: radial-gradient(circle at 50% 42%, rgba(156,107,46,.35), transparent 60%), var(--ink);
}
@media (prefers-reduced-motion: reduce){ .cine-clip{ clip-path: none; } }

.cine-video{
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.2);
}
@media (prefers-reduced-motion: reduce){ .cine-video{ transform: none; } }

.cine-scrim{
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, transparent 55%, rgba(28,23,18,.4) 100%);
  pointer-events: none;
}

/* full-viewport, unclipped legibility wash — sits above the reveal, under the text */
.cine-overlay{
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(100deg, rgba(28,23,18,.78) 0%, rgba(28,23,18,.56) 36%, rgba(28,23,18,.18) 60%, rgba(28,23,18,0) 82%),
    linear-gradient(0deg, rgba(28,23,18,.6) 0%, rgba(28,23,18,0) 26%, rgba(28,23,18,0) 62%, rgba(28,23,18,.2) 100%);
}

.cine-hero--no-video .cine-video{ display: none; }

.cine-cue{
  position: relative; z-index: 2;
  align-self: center;
  margin-top: var(--space-3);
  display: flex; align-items: center; gap: .6em; flex-direction: column;
  font-family: var(--font-mono); font-size: .7rem; letter-spacing: .12em; text-transform: uppercase;
  color: rgba(242,236,223,.8);
  transition: opacity var(--dur-base) var(--ease-out), color var(--dur-fast);
}
.cine-cue:hover{ color: var(--paper); }
.cine-cue .scroll-cue-line{ background: rgba(242,236,223,.3); }
.cine-cue .scroll-cue-line::after{ background: var(--copper-soft); }
@media (prefers-reduced-motion: reduce){ .cine-cue{ display: none; } }

/* short viewports (landscape phones, compact laptop windows): tighten up so nothing clips */
@media (max-height: 760px){
  .cine-cue{ display: none; }
  .hero-stats{ margin-top: var(--space-5); }
}
@media (max-height: 600px){
  .hero-stats{ display: none; }
}

.scroll-cue-line{ width: 1.5px; height: 44px; background: var(--line-strong); position: relative; overflow: hidden; }
.scroll-cue-line::after{
  content: ''; position: absolute; top: -100%; left: 0; width: 100%; height: 100%; background: var(--copper);
  animation: scrollcue 2.2s ease-in-out infinite;
}
@keyframes scrollcue{ 0%{ top: -100%; } 60%,100%{ top: 100%; } }
@media (prefers-reduced-motion: reduce){ .scroll-cue-line::after{ animation: none; top: 40%; } }

/* atmospheric CSS vapor (still used by the "El ritual" section) */
.vapor{ position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.vapor-blob{
  position: absolute; border-radius: 50%;
  filter: blur(70px);
  opacity: .55;
  will-change: transform;
}
.vapor-4{ width: 400px; height: 400px; right: -100px; top: 10%; background: radial-gradient(circle, var(--copper-soft), transparent 70%); opacity: .35; filter: blur(80px); animation: driftA 24s ease-in-out infinite; }
.vapor-side{ position: absolute; inset: 0; overflow: hidden; }

@keyframes driftA{ 0%,100%{ transform: translate(0,0) scale(1); } 50%{ transform: translate(40px,30px) scale(1.08); } }
@keyframes driftB{ 0%,100%{ transform: translate(0,0) scale(1); } 50%{ transform: translate(-50px,20px) scale(.95); } }
@keyframes driftC{ 0%,100%{ transform: translate(0,0) scale(1); } 50%{ transform: translate(20px,-40px) scale(1.1); } }
@media (prefers-reduced-motion: reduce){ .vapor-blob{ animation: none; } }

/* hero content — sits pinned over the video for the whole reveal */
.hero-inner{ position: relative; z-index: 2; }
.hero-title{ margin: 0; }
.hero-title .line{
  display: block;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: var(--text-4xl);
  line-height: 1.02;
  letter-spacing: -.02em;
}
.line-accent{ font-style: italic; color: var(--oxblood); font-weight: 400; }
.hero-sub{
  margin-top: var(--space-3);
  font-size: var(--text-md);
  color: var(--ink-soft);
  max-width: 46ch;
}
@media (max-width: 640px){
  .cine-hero .eyebrow{ display: none; }
  .hero-sub{ font-size: var(--text-sm); max-width: 34ch; }
}
.hero-actions{ display: flex; flex-wrap: wrap; gap: var(--space-2); margin-top: var(--space-4); }

.hero-stats{
  position: relative; z-index: 2;
  margin-top: var(--space-7);
  display: grid; grid-template-columns: repeat(2,1fr); gap: var(--space-2);
}
@media (min-width: 640px){ .hero-stats{ grid-template-columns: repeat(4,1fr); } }
.stat-ticket{
  border-top: 1px dashed var(--line-gold);
  padding-top: var(--space-2);
  display: flex; flex-direction: column;
}
.stat-num{ font-family: var(--font-display); font-size: var(--text-xl); font-weight: 600; color: var(--ink); }
.stat-label{ font-size: var(--text-xs); color: var(--ink-faint); font-family: var(--font-mono); letter-spacing: .02em; margin-top: 2px; }

/* dark-video-scoped overrides — the hero content now sits on the cinematic reveal, not paper */
.cine-hero .eyebrow{ color: var(--copper-soft); }
.cine-hero .hero-title .line{ color: var(--paper); }
.cine-hero .hero-title .line.line-accent{ color: var(--copper-soft); }
.cine-hero .hero-sub{ color: rgba(242,236,223,.82); }
.cine-hero .btn-ghost{
  border-color: rgba(242,236,223,.45);
  color: var(--paper);
  background: rgba(28,23,18,.28);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.cine-hero .btn-ghost:hover{ border-color: var(--paper); background: rgba(28,23,18,.42); }
.cine-hero .stat-ticket{ border-top-color: rgba(201,161,95,.55); }
.cine-hero .stat-num{ color: var(--paper); }
.cine-hero .stat-label{ color: rgba(242,236,223,.62); }

/* ============================================
   ticket cards (servicios)
   ============================================ */
.ticket-grid{
  display: grid; grid-template-columns: 1fr; gap: var(--space-3);
}
@media (min-width: 700px){ .ticket-grid{ grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1100px){ .ticket-grid{ grid-template-columns: repeat(3,1fr); } }

.ticket-card{
  display: flex; gap: var(--space-2);
  background: linear-gradient(160deg, var(--card), var(--paper-deep) 160%);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: var(--space-3);
  position: relative;
  overflow: hidden;
  transition: transform var(--dur-lift) var(--ease-lux),
              box-shadow var(--dur-lift) var(--ease-lux),
              border-color var(--dur-lift) var(--ease-lux);
}
.ticket-card::before{
  content: '';
  position: absolute; left: 0; right: 0; bottom: -1px; height: 0;
  border-bottom: 1.5px dashed var(--line-gold);
  margin-inline: var(--space-3);
  transition: border-color var(--dur-lift) var(--ease-lux);
}
/* a whisper of warm light passing through — tinted gold only, no white/gloss,
   so it reads as light on paper rather than a shine on glass */
.ticket-card::after{
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(115deg, transparent 44%, rgba(201,161,95,.09) 50%, transparent 56%);
  transform: translateX(-120%);
  pointer-events: none;
}
.ticket-card:hover{
  transform: translateY(-5px);
  box-shadow: 0 20px 38px -22px rgba(28,23,18,.30), 0 8px 18px -12px rgba(156,107,46,.16);
  border-color: rgba(201,161,95,.45);
}
.ticket-card:hover::before{ border-color: rgba(156,107,46,.55); }
.ticket-card:hover::after{
  transform: translateX(120%);
  transition: transform 1900ms var(--ease-lux);
}
.ticket-icon{
  width: 26px; height: 26px; flex-shrink: 0; color: var(--copper); margin-top: 2px;
  transition: color var(--dur-lift) var(--ease-lux);
}
.ticket-card:hover .ticket-icon{ color: var(--copper-deep); }
.ticket-row{ display: flex; align-items: baseline; justify-content: space-between; gap: var(--space-2); }
.ticket-row h3{ font-family: var(--font-display); font-size: var(--text-md); font-weight: 500; }
.ticket-price{
  font-family: var(--font-mono); font-size: var(--text-sm); color: var(--copper-deep); font-weight: 500; white-space: nowrap;
  transition: color var(--dur-base) var(--ease-out);
}
.ticket-card:hover .ticket-price{ color: var(--copper); }
.ticket-body p{ margin-top: .4em; font-size: var(--text-sm); color: var(--ink-soft); }
@media (prefers-reduced-motion: reduce){
  .ticket-card, .ticket-card::after, .ticket-icon{ transition: none; }
  .ticket-card:hover{ transform: none; }
}

/* ============================================
   ritual steps
   ============================================ */
.ritual-list{ display: flex; flex-direction: column; margin-top: var(--space-2); }
.ritual-step{
  display: flex; gap: var(--space-3); align-items: flex-start;
  padding-block: var(--space-5);
  border-top: 1px dashed var(--line-gold);
  position: relative;
  transition: background var(--dur-slow) var(--ease-lux);
}
.ritual-step:last-child{ border-bottom: 1px dashed var(--line-gold); }
.ritual-step:hover{ background: rgba(201,161,95,.05); }

.ritual-index{
  font-family: var(--font-display); font-style: italic; font-weight: 400;
  font-size: clamp(2.25rem, 4vw, 3.25rem);
  line-height: 1;
  min-width: 1.6ch;
  color: rgba(28,23,18,.15);
  transition: color var(--dur-slow) var(--ease-lux);
}
.ritual-step:hover .ritual-index{ color: rgba(156,107,46,.4); }

.ritual-icon{
  width: 22px; height: 22px; flex-shrink: 0; color: var(--copper);
  margin-top: .6em;
  transition: color var(--dur-slow) var(--ease-lux);
}
.ritual-step:hover .ritual-icon{ color: var(--copper-deep); }

.ritual-content{ padding-top: .3em; min-width: 0; }
.ritual-step h3{ font-family: var(--font-display); font-weight: 500; font-size: var(--text-lg); }
.ritual-step p{ margin-top: .35em; color: var(--ink-soft); max-width: 60ch; }
@media (min-width: 700px){
  .ritual-step{ align-items: center; }
  .ritual-content{ display: grid; grid-template-columns: 220px 1fr; gap: var(--space-4); align-items: baseline; flex: 1; padding-top: 0; }
}
@media (prefers-reduced-motion: reduce){
  .ritual-step, .ritual-index, .ritual-icon{ transition: none; }
}

/* ============================================
   team
   ============================================ */
.team-feature{
  display: grid; grid-template-columns: 1fr; gap: var(--space-4);
  margin-top: var(--space-6);
}
@media (min-width: 900px){
  .team-feature{ grid-template-columns: 1.25fr 1fr; align-items: center; gap: var(--space-6); }
}

.team-video-wrap{
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: var(--ink);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
}
.team-video{ width: 100%; height: 100%; object-fit: cover; display: block; cursor: pointer; }

.team-video-btn{
  position: absolute; top: 50%; left: 50%; z-index: 2;
  transform: translate(-50%,-50%);
  width: 64px; height: 64px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(28,23,18,.45);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  color: var(--paper);
  border: 1px solid rgba(242,236,223,.4);
  transition: opacity var(--dur-base) var(--ease-out), transform var(--dur-fast) var(--ease-out), background var(--dur-base) var(--ease-out);
}
.team-video-btn:hover{ background: rgba(28,23,18,.62); transform: translate(-50%,-50%) scale(1.06); }
.team-video-btn svg{ width: 24px; height: 24px; }
.team-video-btn .icon-play{ margin-left: 3px; }
.team-video-wrap.is-playing .team-video-btn{ opacity: 0; }
.team-video-wrap.is-playing:hover .team-video-btn,
.team-video-wrap.is-playing .team-video-btn:focus-visible{ opacity: 1; }

.team-video-tag{
  position: absolute; left: var(--space-2); bottom: var(--space-2); z-index: 1;
  font-family: var(--font-mono); font-size: .68rem; letter-spacing: .08em; text-transform: uppercase;
  color: var(--paper);
  background: rgba(28,23,18,.5);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  padding: .45em .75em; border-radius: 999px;
  pointer-events: none;
}

.team-roster{ display: flex; flex-direction: column; }
.team-roster-item{
  display: flex; gap: var(--space-2); align-items: flex-start;
  padding-block: var(--space-3);
  border-top: 1px dashed var(--line-gold);
}
.team-roster-item:last-child{ border-bottom: 1px dashed var(--line-gold); }

.team-avatar{
  width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 600; font-size: var(--text-sm);
  color: #FCF7EE;
  background: linear-gradient(135deg, var(--tone-a), var(--tone-b));
  margin-top: 2px;
}
.team-roster-info h3{ font-family: var(--font-display); font-weight: 500; font-size: var(--text-md); }
.team-role{ font-family: var(--font-mono); font-size: .72rem; letter-spacing: .06em; text-transform: uppercase; color: var(--copper-deep); margin-top: .3em; }
.team-desc{ margin-top: .5em; color: var(--ink-soft); font-size: var(--text-sm); }
.team-ig{ display: inline-block; margin-top: var(--space-1); font-size: var(--text-sm); color: var(--ink); border-bottom: 1px solid var(--line-strong); transition: border-color var(--dur-fast); }
.team-ig:hover{ border-color: var(--copper); color: var(--copper-deep); }

/* ============================================
   cortes (results marquee)
   ============================================ */
.cortes{ overflow: hidden; }
.cortes-marquee{
  margin-top: var(--space-6);
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
}
.cortes-track{
  display: flex; gap: var(--space-3); width: max-content;
  animation: cortes-scroll 38s linear infinite;
}
.cortes-marquee:hover .cortes-track{ animation-play-state: paused; }
@keyframes cortes-scroll{ from{ transform: translateX(0); } to{ transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce){ .cortes-track{ animation: none; flex-wrap: wrap; width: 100%; } }

.corte-card{
  flex: 0 0 auto;
  width: min(340px, 72vw);
  aspect-ratio: 16 / 10;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.corte-card img{
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform var(--dur-slow) var(--ease-out), filter var(--dur-base) var(--ease-out);
}
.corte-card:hover img{ transform: scale(1.06); filter: brightness(1.05) saturate(1.05); }

/* ============================================
   testimonials marquee
   ============================================ */
.testimonios{ overflow: hidden; }
.marquee{ margin-top: var(--space-3); }
.marquee-track{
  display: flex; gap: var(--space-3); width: max-content;
  animation: marquee 42s linear infinite;
}
.marquee:hover .marquee-track{ animation-play-state: paused; }
@keyframes marquee{ from{ transform: translateX(0); } to{ transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce){ .marquee-track{ animation: none; flex-wrap: wrap; width: 100%; } }

.quote-card{
  flex: 0 0 auto; width: min(360px, 80vw);
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-md);
  padding: var(--space-3); margin: 0;
  position: relative; overflow: hidden;
}
.quote-card::before{
  content: '\201C';
  position: absolute; top: -.25em; right: .3em;
  font-family: var(--font-display); font-size: 4.5rem; font-style: italic;
  color: var(--copper-soft); opacity: .3; line-height: 1; pointer-events: none;
}
.quote-card p{ position: relative; font-size: var(--text-md); font-family: var(--font-display); font-style: italic; line-height: 1.4; }
.quote-card cite{ display: block; margin-top: var(--space-2); font-style: normal; font-size: var(--text-xs); font-family: var(--font-mono); color: var(--ink-faint); }

/* ============================================
   reserva
   ============================================ */
.reserva-grid{ display: grid; grid-template-columns: 1fr; gap: var(--space-5); align-items: start; }

.hours-ticket{ margin-top: var(--space-4); display: flex; flex-direction: column; max-width: 380px; }
.hours-ticket > div{ display: flex; justify-content: space-between; padding-block: .6em; border-top: 1px dashed var(--line-gold); font-family: var(--font-mono); font-size: var(--text-sm); }
.hours-ticket > div:last-child{ border-bottom: 1px dashed var(--line-gold); }
.hours-ticket dt{ color: var(--ink-soft); }
.hours-ticket dd{ color: var(--ink); font-weight: 500; }

.widget-frame{
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-md);
}
.widget-header{
  display: flex; align-items: center; gap: .4em;
  padding: var(--space-2) var(--space-3);
  border-bottom: 1px solid var(--line); background: var(--paper-deep);
}
.widget-dot{ width: 9px; height: 9px; border-radius: 50%; background: var(--line-strong); }
.widget-title{ margin-left: var(--space-2); font-family: var(--font-mono); font-size: var(--text-xs); color: var(--ink-faint); }
.cal-embed-frame{ width: 100%; min-height: 600px; background: var(--paper-deep); }

/* ============================================
   ubicación
   ============================================ */
.visita-grid{ display: grid; grid-template-columns: 1fr; gap: var(--space-5); align-items: center; }
@media (min-width: 960px){ .visita-grid{ grid-template-columns: 1fr 1fr; } }
.contact-list{ margin-top: var(--space-4); display: flex; flex-direction: column; gap: var(--space-2); }
.contact-list li{ display: flex; align-items: center; gap: .8em; font-size: var(--text-md); color: var(--ink-soft); }
.contact-list svg{ width: 20px; height: 20px; color: var(--copper); flex-shrink: 0; }
.map-frame{ border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); aspect-ratio: 4/3; border: 1px solid var(--line); }
.map-frame iframe{ width: 100%; height: 100%; filter: grayscale(.25) sepia(.12) contrast(1.02); }

/* ============================================
   footer
   ============================================ */
.site-footer{ background: var(--ink); color: var(--paper); padding-block: var(--space-6) var(--space-4); }
.footer-inner{ display: flex; flex-direction: column; gap: var(--space-4); }
@media (min-width: 800px){ .footer-inner{ flex-direction: row; align-items: center; justify-content: space-between; } }
.footer-brand p{ margin-top: .6em; font-size: var(--text-sm); color: rgba(242,236,223,.55); }
.footer-nav{ display: flex; flex-wrap: wrap; gap: var(--space-3); }
.footer-nav a{ font-size: var(--text-sm); color: rgba(242,236,223,.75); transition: color var(--dur-fast); }
.footer-nav a:hover{ color: var(--copper-soft); }
.footer-social{ display: flex; gap: var(--space-2); }
.footer-social a{
  width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(242,236,223,.25);
  display: flex; align-items: center; justify-content: center;
  transition: border-color var(--dur-fast), background var(--dur-fast);
}
.footer-social svg{ width: 17px; height: 17px; }
.footer-social a:hover{ border-color: var(--copper-soft); background: rgba(156,107,46,.14); }

/* ============================================
   scroll reveal (JS-driven state)
   ============================================ */
[data-reveal]{ opacity: 0; transform: translateY(28px); }
.reveal-ready [data-reveal]{ transition: opacity var(--dur-slow) var(--ease-out), transform var(--dur-slow) var(--ease-out); }
@media (prefers-reduced-motion: reduce){
  [data-reveal]{ opacity: 1; transform: none; }
}
