/* =============================================================
   COBRE 6 — Restaurante · Cyprium Piano Bar · Entre Vinos
   Archetype: Dark Warm Editorial (copper), adapted
   ============================================================= */

/* =============================================================
   1. Tokens
   ============================================================= */
@property --mesh-angle { syntax: "<angle>"; inherits: false; initial-value: 0deg; }
@property --mesh-x { syntax: "<percentage>"; inherits: false; initial-value: 30%; }
@property --mesh-y { syntax: "<percentage>"; inherits: false; initial-value: 40%; }
@property --halo-x { syntax: "<percentage>"; inherits: false; initial-value: 50%; }
@property --halo-y { syntax: "<percentage>"; inherits: false; initial-value: 50%; }

:root {
  --bg:        #120D0A;
  --bg-2:      #191209;
  --bg-3:      #241A10;
  --bg-4:      #2E2013;
  --cream:     #F4EAD9;
  --cream-2:   #DECDB3;
  --cream-3:   #A3907B;
  --copper:    #C6793E;
  --copper-2:  #E9B98A;
  --copper-deep: #8A4E24;
  --copper-soft: rgba(198, 121, 62, 0.16);
  --line:      rgba(244, 234, 217, 0.12);
  --line-strong: rgba(244, 234, 217, 0.22);

  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --sans:  "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", system-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: 84px;
  --container: 1240px;
}

/* =============================================================
   2. Reset & base
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html {
  -webkit-text-size-adjust: 100%;
  tab-size: 2;
  overflow-x: clip;
  scroll-behavior: smooth;
  background: var(--bg);
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--cream-2);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  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; }
ul { list-style: none; padding: 0; }
h1, h2, h3, h4 { text-wrap: balance; line-height: 1.05; letter-spacing: -0.01em; color: var(--cream); font-family: var(--serif); font-weight: 500; }
em { font-style: italic; color: var(--copper-2); }
::selection { background: var(--copper); color: var(--bg); }

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

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

/* =============================================================
   3. Utilities
   ============================================================= */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 1.5rem; }
@media (min-width: 960px) { .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;
}
.section { position: relative; padding-block: clamp(4rem, 9vw, 8rem); }
.section-tight { padding-block: clamp(2.5rem, 5vw, 4.5rem); }
.kicker {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--sans); font-size: .74rem; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase; color: var(--copper-2);
}
.kicker::before {
  content: ""; width: 22px; height: 1px; background: var(--copper);
}
.eyebrow-line { display: flex; align-items: center; gap: .9rem; margin-bottom: 1.2rem; }

/* =============================================================
   4. Typography
   ============================================================= */
h1 { font-size: clamp(2.6rem, 6.4vw, 5.6rem); }
h2 { font-size: clamp(2rem, 4.6vw, 3.4rem); }
h3 { font-size: clamp(1.35rem, 2.4vw, 1.85rem); }
.lede { font-size: clamp(1.05rem, 1.6vw, 1.25rem); color: var(--cream-2); max-width: 62ch; }
.eyebrow { font-family: var(--serif); font-style: italic; color: var(--copper-2); font-size: 1.2rem; }

/* =============================================================
   5. Components
   ============================================================= */

/* --- Buttons --- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: 1rem 2rem; border-radius: 999px;
  font-family: var(--sans); font-size: .82rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  transition: transform .45s var(--ease-soft), box-shadow .45s var(--ease-soft), background .3s var(--ease-out), color .3s var(--ease-out);
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--copper-2), var(--copper) 60%, var(--copper-deep));
  color: #1a0f06;
  box-shadow: 0 10px 30px -8px rgba(198,121,62,.55), 0 2px 8px rgba(0,0,0,.35);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 20px 46px -10px rgba(198,121,62,.65), 0 6px 16px rgba(0,0,0,.4); }
.btn-primary:active { transform: translateY(-1px); transition-duration: .12s; }
.btn-ghost {
  border: 1px solid var(--line-strong); color: var(--cream);
}
.btn-ghost:hover { background: var(--copper-soft); border-color: var(--copper); transform: translateY(-3px); }
.btn-sm { padding: .78rem 1.5rem; font-size: .72rem; }

/* --- Nav --- */
.nav {
  position: fixed; top: 0; inset-inline: 0; z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: center;
  transition: background-color .4s var(--ease-out), backdrop-filter .4s var(--ease-out), box-shadow .4s var(--ease-out), border-color .4s var(--ease-out);
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(18, 13, 10, 0.86);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom-color: var(--line);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.nav-logo { display: flex; align-items: center; gap: .6rem; height: 58px; }
.nav-logo img { height: 100%; width: auto; }
.nav-links { display: none; align-items: center; gap: 2.4rem; }
@media (min-width: 960px) { .nav-links { display: flex; } }
.nav-link {
  position: relative; padding: .3rem 0;
  font-family: var(--sans); font-size: .78rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase; color: var(--cream-2);
  transition: color .3s var(--ease-out);
}
.nav-link::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -4px;
  height: 1px; background: var(--copper-2);
  transform: scaleX(0); transform-origin: right;
  transition: transform .45s var(--ease-soft);
}
.nav-link:hover { color: var(--cream); }
.nav-link:hover::after, .nav-link.is-active::after { transform: scaleX(1); transform-origin: left; }
.nav-cta { display: none; }
@media (min-width: 960px) { .nav-cta { display: inline-flex; } }
.nav-burger {
  display: grid; place-items: center; width: 44px; height: 44px;
}
@media (min-width: 960px) { .nav-burger { display: none; } }
.nav-burger-lines { position: relative; width: 22px; height: 14px; }
.nav-burger-lines span {
  position: absolute; left: 0; right: 0; height: 1.5px; background: var(--cream);
  transition: transform .4s var(--ease-soft), opacity .3s var(--ease-out), top .4s var(--ease-soft);
}
.nav-burger-lines span:nth-child(1) { top: 0; }
.nav-burger-lines span:nth-child(2) { top: 6px; }
.nav-burger-lines span:nth-child(3) { top: 12px; }
.nav-mobile.is-open ~ .nav .nav-burger-lines span:nth-child(1) { top: 6px; transform: rotate(45deg); }
.nav-mobile.is-open ~ .nav .nav-burger-lines span:nth-child(2) { opacity: 0; }
.nav-mobile.is-open ~ .nav .nav-burger-lines span:nth-child(3) { top: 6px; transform: rotate(-45deg); }

.nav-mobile {
  position: fixed; inset: 0; z-index: 95;
  background: var(--bg); color: var(--cream);
  display: grid; place-items: center;
  clip-path: inset(0 0 100% 0);
  transition: clip-path .65s var(--ease-soft);
}
.nav-mobile.is-open { clip-path: inset(0); }
.nav-mobile-links { display: flex; flex-direction: column; align-items: center; gap: 1.6rem; text-align: center; }
.nav-mobile-links a { font-family: var(--serif); font-size: 2.1rem; font-style: italic; color: var(--cream); }
.nav-mobile-links a:hover { color: var(--copper-2); }
.nav-mobile-foot { position: absolute; bottom: 2.5rem; display: flex; gap: 1.5rem; }
.nav-mobile-foot a { width: 44px; height: 44px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; border: 1px solid var(--line-strong); border-radius: 50%; }
.nav-mobile-foot img { width: 20px; height: 20px; display: block; filter: invert(1) sepia(1) saturate(3) hue-rotate(340deg) brightness(1.1); }

/* --- Cards --- */
.card {
  --rx: 0deg; --ry: 0deg;
  position: relative; isolation: isolate;
  background: linear-gradient(160deg, var(--bg-3), var(--bg-2));
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  transform: perspective(1000px) rotateX(var(--rx)) rotateY(var(--ry));
  transform-style: preserve-3d;
  transition: transform .55s var(--ease-soft), border-color .4s var(--ease-out), box-shadow .55s var(--ease-soft);
}
.card:hover { transition-duration: .18s; border-color: var(--line-strong); }
.card::before {
  content: ""; position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background: radial-gradient(260px circle at var(--halo-x) var(--halo-y), rgba(233,185,138,.28), transparent 65%);
  opacity: 0; transition: opacity .4s var(--ease-out);
  mix-blend-mode: screen;
}
.card:hover::before { opacity: 1; }
.card:hover {
  box-shadow: 0 40px 80px -24px rgba(0,0,0,.55), 0 0 0 1px rgba(198,121,62,.2);
}

/* --- Venue link cards --- */
.venues-grid {
  display: grid; gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) { .venues-grid { grid-template-columns: 1fr 1fr; gap: 2rem; } }
.venue-card {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  gap: 1.3rem; padding: clamp(2.2rem, 4vw, 3.5rem) 2rem;
  min-height: 340px; justify-content: center;
}
.venue-card-logo { height: clamp(120px, 16vw, 190px); display: flex; align-items: center; justify-content: center; }
.venue-card-logo img { height: 100%; width: auto; filter: drop-shadow(0 10px 24px rgba(0,0,0,.4)); }
.venue-card-kicker { font-family: var(--sans); font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--cream-3); }
.venue-card-blurb { color: var(--cream-2); max-width: 34ch; }
.venue-card-cta {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--sans); font-size: .76rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase; color: var(--copper-2);
}
.venue-card-cta svg { width: 14px; height: 14px; transition: transform .4s var(--ease-soft); }
.venue-card:hover .venue-card-cta svg { transform: translateX(6px); }

/* --- Gallery mosaic --- */
.mosaic {
  display: grid; gap: 1rem;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 720px) { .mosaic { grid-template-columns: repeat(4, 1fr); grid-auto-rows: 160px; gap: 1.1rem; } }
.mosaic-item { border-radius: 16px; overflow: hidden; position: relative; }
.mosaic-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease-soft), filter .6s; }
.mosaic-item:hover img { transform: scale(1.09); filter: saturate(1.15) brightness(1.04); }
@media (min-width: 720px) {
  .mosaic-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
  .mosaic-item:nth-child(4) { grid-column: span 2; }
}

/* --- Hours table --- */
.hours-list { display: flex; flex-direction: column; gap: 0; border-top: 1px solid var(--line); }
.hours-row {
  display: flex; align-items: baseline; justify-content: space-between;
  padding: 1rem 0; border-bottom: 1px solid var(--line);
  font-family: var(--sans);
}
.hours-row dt { color: var(--cream); font-weight: 600; }
.hours-row dd { color: var(--cream-3); letter-spacing: .03em; }

/* --- Marquee --- */
.marquee { display: flex; align-items: center; gap: 3rem; overflow: hidden; position: relative; border-block: 1px solid var(--line); background: var(--bg-2); }
.marquee::before, .marquee::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: 100px; z-index: 2; pointer-events: none;
}
.marquee::before { left: 0; background: linear-gradient(90deg, var(--bg-2), transparent); }
.marquee::after { right: 0; background: linear-gradient(270deg, var(--bg-2), transparent); }
.marquee-track { display: inline-flex; gap: 3rem; white-space: nowrap; will-change: transform; padding-block: 1.1rem; }
.marquee-track span {
  font-family: var(--serif); font-style: italic; font-size: 1.15rem; color: var(--cream-3);
  display: inline-flex; align-items: center; gap: 3rem;
}
.marquee-track span::after { content: "—"; color: var(--copper); font-style: normal; }

/* --- Forms --- */
.field { position: relative; }
.field input, .field textarea, .field select {
  width: 100%; padding: 1.35rem 1rem .55rem; border: 1px solid var(--line-strong);
  border-radius: 12px; background: rgba(244,234,217,.03); color: var(--cream);
  font-family: var(--sans); font-size: .95rem;
  transition: border-color .3s var(--ease-out), background .3s var(--ease-out);
}
.field textarea { resize: vertical; min-height: 120px; padding-top: 1.5rem; }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--copper); background: rgba(244,234,217,.05); outline: none; }
.field label {
  position: absolute; left: 1rem; top: 50%; transform: translateY(-50%);
  pointer-events: none; transition: all .25s var(--ease-out);
  color: var(--cream-3); font-size: .92rem;
}
.field textarea + label { top: 1.6rem; transform: none; }
.field input:focus + label, .field input:not(:placeholder-shown) + label,
.field textarea:focus + label, .field textarea:not(:placeholder-shown) + label {
  top: .6rem; transform: none; font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; color: var(--copper-2);
}
.field textarea:focus + label, .field textarea:not(:placeholder-shown) + label { top: .55rem; }
.form-grid { display: grid; gap: 1.1rem; }
@media (min-width: 640px) { .form-grid.cols-2 { grid-template-columns: 1fr 1fr; } }

.cta-form { position: relative; transition: opacity .55s var(--ease-out), transform .55s var(--ease-soft); }
.cta-form.is-sent { opacity: 0; transform: translateY(-12px); pointer-events: none; }
.cta-submit { position: relative; width: 100%; }
.cta-form-spinner, .cta-form-check { position: absolute; inset: 0; display: grid; place-items: center; opacity: 0; pointer-events: none; }
.cta-form.is-sending .cta-form-label { opacity: 0; }
.cta-form.is-sending .cta-form-spinner { opacity: 1; }
.cta-form-spinner::after {
  content: ""; width: 18px; height: 18px; border: 1.5px solid rgba(26,15,6,.3); border-top-color: #1a0f06;
  border-radius: 50%; animation: spin .9s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.cta-success {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -40%);
  opacity: 0; pointer-events: none; text-align: center; width: 100%;
  transition: opacity .8s var(--ease-out) .2s, transform .9s var(--ease-soft) .2s;
}
.cta-success.is-visible { opacity: 1; transform: translate(-50%, -50%); pointer-events: auto; }
.cta-success h3 { margin-bottom: .5rem; }
.cta-success p { color: var(--cream-2); }

/* =============================================================
   6. Sections
   ============================================================= */

/* --- Splash --- */
.splash {
  position: fixed; inset: 0; z-index: 10000;
  background: var(--bg);
  display: grid; place-items: center;
  pointer-events: auto;
  transition: opacity .9s, clip-path 1.1s;
  animation: splashSafety .01s 3.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 { width: clamp(120px, 22vw, 180px); animation: splashPulse 1.8s var(--ease-soft) infinite; }
@keyframes splashPulse { 0%, 100% { opacity: .55; transform: scale(.97); } 50% { opacity: 1; transform: scale(1); } }

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; flex-direction: column; justify-content: center;
  padding-top: var(--nav-h);
  overflow: clip;
  isolation: isolate;
}
.hero-texture {
  position: absolute; inset: 0; z-index: -3;
  background:
    radial-gradient(70% 55% at 78% 12%, rgba(198,121,62,.22), transparent 62%),
    radial-gradient(60% 50% at 10% 92%, rgba(138,78,36,.22), transparent 60%),
    var(--bg);
}
.hero-grain {
  position: absolute; inset: 0; z-index: -1; pointer-events: none;
  opacity: .05; 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-inner {
  position: relative; display: grid; place-items: center;
  padding-block: 2rem 1rem;
}
.hero-copy {
  position: relative; z-index: 3; text-align: center; max-width: 900px; margin-inline: auto;
}
.hero-copy .kicker { justify-content: center; margin-bottom: 1.4rem; }
.hero-title {
  font-size: clamp(2.7rem, 8vw, 6.4rem);
  max-width: 15ch; margin-inline: auto;
  text-shadow: 0 4px 40px rgba(0,0,0,.5);
}
.hero-title em { display: block; }
.hero-sub {
  margin: 1.6rem auto 0; max-width: 52ch; color: var(--cream-2);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
}
.hero-actions { margin-top: 2.4rem; display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

.hero-plate {
  position: relative; z-index: 2;
  width: min(94vw, 980px);
  margin-top: clamp(-2rem, -6vw, -3.5rem);
  margin-inline: auto;
  pointer-events: none;
}
.hero-plate-glow {
  position: absolute; inset: -20% -10%; z-index: -1;
  background: radial-gradient(45% 55% at 50% 55%, rgba(233,185,138,.38), transparent 68%);
  filter: blur(50px);
  opacity: .8;
}
.hero-plate img {
  width: 100%; height: auto;
  filter: drop-shadow(0 60px 90px rgba(0,0,0,.6)) drop-shadow(0 10px 30px rgba(198,121,62,.25));
  opacity: 0; transform: translateY(60px) scale(.94);
}
.hero-plate img.is-in {
  animation: plateEnter 1.5s var(--ease-out) .3s forwards, plateFloat 7s ease-in-out 1.9s infinite;
}
@keyframes plateEnter { to { opacity: 1; transform: translateY(0) scale(1); } }
@keyframes plateFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-16px) rotate(.6deg); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-plate img.is-in { animation: plateEnter 1.1s var(--ease-out) forwards; }
}


/* --- Intro / manifesto --- */
.intro-grid {
  display: grid; gap: 2.5rem; align-items: start;
}
@media (min-width: 960px) { .intro-grid { grid-template-columns: .8fr 1.2fr; gap: 5rem; } }
.intro-num { font-family: var(--serif); font-style: italic; font-size: 4rem; color: var(--copper); line-height: 1; }

/* --- Mesh CTA band --- */
.mesh-band {
  position: relative; overflow: hidden; isolation: isolate;
  background: var(--bg-2);
}
.mesh-band::before {
  content: ""; position: absolute; inset: -20%; z-index: -1;
  background:
    radial-gradient(50% 45% at var(--mesh-x) var(--mesh-y), rgba(198,121,62,.4), transparent 62%),
    conic-gradient(from var(--mesh-angle), rgba(233,185,138,.16), rgba(138,78,36,.1), rgba(198,121,62,.18), rgba(233,185,138,.16));
  filter: blur(90px) saturate(120%);
  opacity: .8;
  animation: meshShift 26s linear infinite;
  mix-blend-mode: screen;
}
@keyframes meshShift {
  0%   { --mesh-angle: 0deg;   --mesh-x: 25%; --mesh-y: 35%; }
  50%  { --mesh-angle: 180deg; --mesh-x: 75%; --mesh-y: 65%; }
  100% { --mesh-angle: 360deg; --mesh-x: 25%; --mesh-y: 35%; }
}
.mesh-band-inner { position: relative; text-align: center; max-width: 700px; margin-inline: auto; }

/* --- Reveal --- */
[data-reveal] { opacity: 0; transform: translateY(36px); transition: opacity .8s var(--ease-soft), transform .8s var(--ease-soft); }
[data-reveal].is-revealed { opacity: 1; transform: none; }
.reveal[data-split] { opacity: 1; transform: none; }

/* --- Split words --- */
.split-word { display: inline-block; will-change: transform, opacity; }

/* --- Footer --- */
.footer { background: var(--bg-2); border-top: 1px solid var(--line); padding-block: 4rem 2rem; }
.footer-grid {
  display: grid; gap: 2.6rem;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) { .footer-grid { grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 2rem; } }
.footer-brand > img { height: 70px; width: auto; margin-bottom: 1rem; }
.footer-brand p { color: var(--cream-3); max-width: 30ch; font-size: .92rem; }
.footer-col h4 { font-family: var(--sans); font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: var(--cream-3); margin-bottom: 1rem; font-weight: 700; }
.footer-col ul { display: flex; flex-direction: column; gap: .65rem; }
.footer-col a { color: var(--cream-2); font-size: .92rem; transition: color .3s; }
.footer-col a:hover { color: var(--copper-2); }
.footer-social { display: flex; gap: .8rem; margin-top: 1.2rem; }
.footer-social a { width: 42px; height: 42px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; border: 1px solid var(--line-strong); border-radius: 50%; transition: border-color .3s, transform .3s var(--ease-soft); }
.footer-social a:hover { border-color: var(--copper); transform: translateY(-3px); }
.footer-social img { width: 20px; height: 20px; display: block; filter: invert(88%) sepia(28%) saturate(500%) hue-rotate(325deg) brightness(1.05); }
.footer-bottom {
  margin-top: 3rem; padding-top: 1.6rem; border-top: 1px solid var(--line);
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; align-items: center;
  font-size: .78rem; color: var(--cream-3);
}
.footer-bottom a { color: var(--cream-3); }
.footer-bottom a:hover { color: var(--copper-2); }
.footer-legal { display: flex; gap: 1.2rem; flex-wrap: wrap; }

/* =============================================================
   7. Page-specific: sub-hero (Cyprium / Entre Vinos / Eventos / Contacto)
   ============================================================= */
.page-hero {
  position: relative; padding-top: calc(var(--nav-h) + 4rem); padding-bottom: 4rem;
  min-height: 66svh; display: flex; align-items: center;
  overflow: clip; isolation: isolate;
}
.page-hero-bg { position: absolute; inset: 0; z-index: -2; }
.page-hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(18,13,10,.55) 0%, rgba(18,13,10,.88) 65%, var(--bg) 100%);
}
.page-hero-content { position: relative; text-align: center; max-width: 760px; margin-inline: auto; }
.page-hero-logo { height: clamp(96px, 12vw, 140px); width: auto; margin: 0 auto 1.4rem; filter: drop-shadow(0 8px 20px rgba(0,0,0,.4)); }

.stat-row { display: flex; flex-wrap: wrap; gap: 2.4rem; justify-content: center; margin-top: 2rem; }
.stat { text-align: center; }
.stat b { display: block; font-family: var(--serif); font-size: 1.7rem; color: var(--cream); }
.stat span { font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--cream-3); }

/* --- Events list --- */
.events-list { display: flex; flex-direction: column; }
.event-row {
  display: grid; gap: 1.2rem; padding-block: 2.2rem; border-top: 1px solid var(--line);
  grid-template-columns: auto 1fr;
  align-items: baseline;
}
.events-list .event-row:last-child { border-bottom: 1px solid var(--line); }
.event-row .intro-num { font-size: 2.2rem; }
.event-row h3 { margin-bottom: .5rem; }
.event-row p { color: var(--cream-2); max-width: 60ch; }

/* --- Map --- */
.map-frame {
  border-radius: 20px; overflow: hidden; border: 1px solid var(--line);
  filter: grayscale(.25) sepia(.15) saturate(1.1);
  aspect-ratio: 16/10;
}
.map-frame iframe { width: 100%; height: 100%; border: 0; }

.contact-info-list { display: flex; flex-direction: column; gap: 1.4rem; }
.contact-info-item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-info-item .ico {
  flex-shrink: 0; width: 42px; height: 42px; border-radius: 50%;
  border: 1px solid var(--line-strong); display: grid; place-items: center;
  color: var(--copper-2);
}
.contact-info-item h4 { font-family: var(--sans); font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: var(--cream-3); margin-bottom: .3rem; font-weight: 700; }
.contact-info-item p, .contact-info-item a { color: var(--cream); }
.contact-info-item a:hover { color: var(--copper-2); }

/* =============================================================
   8. Responsive fine-tuning
   ============================================================= */
@media (min-width: 540px) {
  .hero-actions { gap: 1.2rem; }
}
@media (min-width: 1280px) {
  .venue-card { min-height: 400px; }
}
@media (min-width: 1600px) {
  .container { max-width: 1360px; }
}

/* =============================================================
   9. Reduced motion — only truly intrusive effects
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  .mesh-band::before { animation: none; }
  .marquee-track { animation-duration: 60s !important; }
}
