/* =============================================================
   EL PUNTO GORDO — Bocatería canaria, San Cristóbal de La Laguna
   1. Tokens
   ============================================================= */
:root {
  --bg:        #121212;
  --bg-2:      #191919;
  --bg-3:      #211d16;   /* warm dark panel — menu cards */
  --bg-4:      #171310;
  --cream:     #F5F5F5;
  --cream-mute:rgba(245,245,245,.68);
  --cream-dim: rgba(245,245,245,.42);
  --gold:      #FFB800;
  --gold-2:    #E6A400;
  --gold-dim:  rgba(255,184,0,.5);
  --orange:    #FF6B00;
  --orange-2:  #D65900;
  --orange-dim:rgba(255,107,0,.5);
  --line:      rgba(245,245,245,.14);
  --line-gold: rgba(255,184,0,.32);

  --display: "Anton", "Arial Narrow", sans-serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --mono: "Space Mono", "IBM Plex Mono", ui-monospace, monospace;

  --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: 72px;
  --container: 1180px;
}

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

/* =============================================================
   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);
}
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  background: var(--bg);
  color: var(--cream);
  -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%; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }
p { text-wrap: pretty; }
h1, h2, h3, h4 { text-wrap: balance; line-height: 1.02; }
::selection { background: var(--orange); color: var(--bg); }
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

/* =============================================================
   3. Utilities
   ============================================================= */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 1.25rem; }
@media (min-width: 720px) { .container { padding-inline: 2rem; } }

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

.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(3.5rem, 8vw, 7rem); }
.section-head { max-width: 640px; margin-bottom: clamp(2rem, 5vw, 3.5rem); }
.eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--mono); font-size: .74rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold); margin-bottom: .9rem;
}
.eyebrow::before {
  content: ""; width: 22px; height: 1px; background: var(--gold);
}
.section-title {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(2.1rem, 5.4vw, 3.6rem);
  text-transform: uppercase; letter-spacing: .01em;
  color: var(--cream);
}
.section-title em { color: var(--orange); font-style: normal; }
.section-sub {
  margin-top: .9rem; color: var(--cream-mute);
  font-size: clamp(1rem, 1.6vw, 1.15rem); max-width: 56ch;
}
.section-head--sub {
  margin-top: clamp(2.6rem, 6vw, 4rem);
}
.section-head--sub .section-title { font-size: clamp(1.6rem, 3.6vw, 2.6rem); }

/* =============================================================
   4. Buttons & chips
   ============================================================= */
.btn {
  position: relative;
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: .95rem 1.6rem;
  font-family: var(--sans); font-weight: 700; font-size: .95rem;
  border-radius: 999px;
  transition: transform .45s var(--ease-soft), box-shadow .45s var(--ease-soft), background-color .3s var(--ease-out), border-color .3s var(--ease-out);
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; flex: none; }
.btn:active { transition-duration: .12s; }

.btn-primary {
  background: var(--orange); color: var(--bg);
  box-shadow: 0 10px 30px -8px rgba(255,107,0,.55);
}
.btn-primary:hover {
  transform: translateY(-3px);
  background: #ff7d1a;
  box-shadow: 0 18px 40px -10px rgba(255,107,0,.7);
}

.btn-ghost {
  background: transparent; color: var(--cream);
  border: 1.5px solid var(--line-gold);
}
.btn-ghost:hover {
  transform: translateY(-3px);
  border-color: var(--gold);
  background: rgba(255,184,0,.08);
  box-shadow: 0 14px 34px -12px rgba(255,184,0,.35);
}

.btn-gold {
  background: var(--gold); color: var(--bg);
  box-shadow: 0 10px 30px -8px rgba(255,184,0,.5);
}
.btn-gold:hover { transform: translateY(-3px); background: #ffc430; box-shadow: 0 18px 40px -10px rgba(255,184,0,.65); }

.btn-sm { padding: .65rem 1.15rem; font-size: .82rem; }

.chip {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--mono); font-size: .78rem; letter-spacing: .03em;
  color: var(--cream-mute);
  padding: .5rem .9rem; border: 1px solid var(--line); border-radius: 999px;
}
.chip svg { width: 15px; height: 15px; color: var(--gold); flex: none; }

/* =============================================================
   5. Badge / crest logo
   ============================================================= */
.logo-badge {
  border-radius: 50%;
  flex: none;
  filter: drop-shadow(0 4px 24px rgba(255,184,0,.28));
}
.logo-badge--sm { width: 46px; height: 46px; }
.logo-badge--lg { width: 168px; height: 168px; }
@media (min-width: 720px) { .logo-badge--lg { width: 196px; height: 196px; } }

/* =============================================================
   6. Nav
   ============================================================= */
.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(18,18,18,.88);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line-gold);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; width: 100%; }
.nav-brand { display: flex; align-items: center; gap: .7rem; }
.nav-brand-name {
  font-family: var(--display); font-size: 1.05rem; letter-spacing: .02em;
  text-transform: uppercase; color: var(--cream);
  display: none;
}
@media (min-width: 540px) { .nav-brand-name { display: block; } }
.nav-links { display: none; align-items: center; gap: 2rem; }
@media (min-width: 960px) { .nav-links { display: flex; } }
.nav-link {
  position: relative; padding-block: .3rem;
  font-family: var(--mono); font-size: .8rem; letter-spacing: .06em; text-transform: uppercase;
  color: var(--cream-mute);
}
.nav-link::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 1px;
  background: var(--gold); transform: scaleX(0); transform-origin: right;
  transition: transform .4s var(--ease-out);
}
.nav-link:hover { color: var(--cream); }
.nav-link:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-actions { display: flex; align-items: center; gap: .6rem; }
.nav-actions .btn-sm { display: none; }
@media (min-width: 720px) { .nav-actions .btn-sm { display: inline-flex; } }

.nav-burger {
  display: flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 40px; height: 40px; align-items: center;
}
@media (min-width: 960px) { .nav-burger { display: none; } }
.nav-burger span { width: 20px; height: 1.5px; background: var(--cream); transition: transform .35s var(--ease-soft), opacity .35s; }
.nav-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav-mobile {
  position: fixed; inset: 0; z-index: 190;
  background: var(--bg);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1.9rem;
  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 a { font-family: var(--display); font-size: 1.9rem; text-transform: uppercase; color: var(--cream); }
.nav-mobile a:hover { color: var(--gold); }

/* =============================================================
   7. Hero
   ============================================================= */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
  padding-top: var(--nav-h);
  overflow: clip;
  isolation: isolate;
}
.hero-bg {
  position: absolute; inset: 0; z-index: -3;
  overflow: hidden;
}
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(18,18,18,.75) 0%, rgba(18,18,18,.55) 45%, rgba(18,18,18,.92) 100%),
    radial-gradient(120% 90% at 50% 30%, transparent 20%, rgba(18,18,18,.7) 78%);
}
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 30%;
  filter: saturate(1.05) contrast(1.02) brightness(.72);
}
@keyframes ambientZoom {
  0%, 100% { transform: scale(1.04) translate3d(0,0,0); }
  50%      { transform: scale(1.12) translate3d(-1%,-1%,0); }
}
.hero-bg img.ambient-on { animation: ambientZoom 30s ease-in-out infinite; }
.hero-mesh {
  position: absolute; inset: -10%; z-index: -2;
  background:
    radial-gradient(52% 42% at var(--mesh-x) var(--mesh-y), rgba(255,107,0,.4), transparent 62%),
    conic-gradient(from var(--mesh-angle), rgba(255,184,0,.22), rgba(255,107,0,.1), rgba(255,184,0,.22));
  filter: blur(90px) saturate(120%);
  opacity: .85;
  animation: meshShift 24s linear infinite;
  mix-blend-mode: screen;
}
@keyframes meshShift {
  0%   { --mesh-angle: 0deg;   --mesh-x: 24%; --mesh-y: 30%; }
  50%  { --mesh-angle: 180deg; --mesh-x: 76%; --mesh-y: 62%; }
  100% { --mesh-angle: 360deg; --mesh-x: 24%; --mesh-y: 30%; }
}
.hero-grain {
  position: absolute; inset: 0; z-index: -1; pointer-events: none;
  opacity: .16; 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 { display: flex; flex-direction: column; align-items: center; padding-block: 2.5rem; }
.hero-badge { margin-bottom: 1.6rem; }
.hero-kicker {
  font-family: var(--mono); font-size: .8rem; letter-spacing: .24em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.1rem;
}
.hero-title {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(2.1rem, 7.6vw, 4.8rem);
  line-height: .98; text-transform: uppercase;
  max-width: 21ch; color: var(--cream);
  text-shadow: 0 6px 40px rgba(0,0,0,.5);
}
.hero-title .hl { color: var(--orange); }
.hero-sub {
  margin-top: 1.3rem; max-width: 46ch;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  font-style: italic; color: var(--cream-mute);
}
.hero-ctas {
  margin-top: 2.3rem; display: flex; flex-wrap: wrap; gap: .8rem; justify-content: center;
}
.hero-strip {
  margin-top: 2.6rem; display: flex; flex-wrap: wrap; gap: .6rem; justify-content: center;
}
/* =============================================================
   8. Marquee ticker
   ============================================================= */
.marquee {
  position: relative; overflow: hidden;
  display: flex; flex-wrap: nowrap; align-items: center;
  padding-block: 1.1rem;
  background: var(--bg-2);
  border-block: 1px solid var(--line);
}
.marquee::before, .marquee::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: 70px; 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: flex; flex: none; align-items: center;
  gap: 2.2rem; padding-right: 2.2rem;
  white-space: nowrap; will-change: transform;
}
.marquee-track span {
  font-family: var(--display); font-size: 1.15rem; text-transform: uppercase;
  color: var(--cream-dim); letter-spacing: .02em;
}
.marquee-track span.is-gold { color: var(--gold); }
.marquee-track span.is-orange { color: var(--orange); }
@keyframes marqueeFallback { to { transform: translateX(-100%); } }

/* =============================================================
   10. Menu grid
   ============================================================= */
.menu-grid {
  display: grid; gap: 1.4rem;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) { .menu-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1280px) { .menu-grid { grid-template-columns: repeat(3, 1fr); } }

.card {
  position: relative;
  --rx: 0deg; --ry: 0deg;
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 1.7rem 1.6rem 1.5rem;
  transform: perspective(900px) rotateX(var(--rx)) rotateY(var(--ry));
  transform-style: preserve-3d;
  transition: transform .55s var(--ease-soft), border-color .4s, box-shadow .4s;
  isolation: isolate;
}
.card::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit; z-index: -1;
  background: radial-gradient(220px circle at var(--mx,50%) var(--my,50%), rgba(255,184,0,.16), transparent 60%);
  opacity: 0; transition: opacity .35s;
}
.card:hover {
  transition-duration: .15s;
  border-color: var(--line-gold);
  box-shadow: 0 40px 80px -30px rgba(0,0,0,.6), 0 0 0 1px var(--line-gold);
}
.card:hover::after { opacity: 1; }
.card-photo {
  position: relative;
  margin: -1.7rem -1.6rem 1.15rem;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 19px 19px 0 0;
}
.card-photo img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s var(--ease-soft), filter .5s;
}
.card:hover .card-photo img { transform: scale(1.08); filter: saturate(1.12) brightness(1.03); }
.card-photo::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(23,19,16,.9) 100%);
}
.card-num {
  position: absolute; right: .8rem; bottom: .7rem; z-index: 1;
  font-family: var(--mono); font-size: .72rem; color: var(--gold); letter-spacing: .1em;
  background: rgba(18,18,18,.65); padding: .25rem .55rem; border-radius: 999px;
  border: 1px solid var(--line-gold);
}
.card-title {
  font-family: var(--display); font-weight: 400;
  font-size: 1.5rem; text-transform: uppercase; color: var(--cream);
  margin-top: .3rem; margin-bottom: .6rem;
}
.card-ingredients {
  font-size: .92rem; color: var(--cream-mute); line-height: 1.55;
  margin-bottom: .95rem;
}
.card-quote {
  font-style: italic; color: var(--gold); font-size: .92rem;
  line-height: 1.5; border-left: 2px solid var(--orange); padding-left: .85rem;
  margin-bottom: 1.1rem;
}
.card-prices {
  display: flex; gap: .6rem; flex-wrap: wrap;
  padding-top: 1rem; border-top: 1px dashed var(--line);
}
.card-price {
  font-family: var(--mono); font-size: .76rem; color: var(--cream-mute);
  display: flex; align-items: center; gap: .35rem;
}
.card-price b { color: var(--orange); font-size: .84rem; }

@property --mystery-angle { syntax: "<angle>"; inherits: false; initial-value: 0deg; }
.mystery-banner {
  position: relative; isolation: isolate; overflow: hidden;
  margin-top: clamp(2.4rem, 5vw, 3.2rem);
  display: flex; flex-direction: column; align-items: center; gap: 1rem;
  text-align: center;
  padding: clamp(2.2rem, 5vw, 3rem) clamp(1.6rem, 5vw, 3rem);
  border-radius: 24px;
  background: var(--bg-3);
}
.mystery-banner::before {
  content: ""; position: absolute; inset: -1.5px; z-index: 0;
  border-radius: inherit;
  background: conic-gradient(from var(--mystery-angle), var(--gold), transparent 30%, var(--orange), transparent 70%, var(--gold));
  animation: mysteryRotate 7s linear infinite;
}
@keyframes mysteryRotate { to { --mystery-angle: 360deg; } }

.mystery-bg {
  position: absolute; inset: 1.5px; z-index: 1;
  border-radius: 22px; overflow: hidden;
  background: var(--bg-3);
}
.mystery-bg img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 38%;
  filter: saturate(1.05) contrast(1.05) brightness(.55);
}
.mystery-bg img.ambient-on { animation: ambientZoom 30s ease-in-out infinite; }
.mystery-bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(18,18,18,.5) 0%, rgba(18,18,18,.72) 55%, rgba(18,18,18,.92) 100%),
    radial-gradient(120% 90% at 50% 20%, transparent 10%, rgba(18,18,18,.6) 80%);
}

.mystery-icon { position: relative; z-index: 2; width: 38px; height: 38px; color: var(--gold); }
.mystery-text {
  position: relative; z-index: 2;
  font-family: var(--sans); font-style: italic; font-weight: 500;
  font-size: clamp(1.1rem, 2.6vw, 1.45rem); line-height: 1.5; color: var(--cream);
  max-width: 38ch;
  text-shadow: 0 2px 16px rgba(0,0,0,.6);
}
.mystery-text em { color: var(--gold); font-style: italic; font-weight: 700; }

/* Otros productos */
.extras {
  margin-top: clamp(2.2rem, 5vw, 3.2rem);
}
.otros-grid { display: grid; gap: 1rem; grid-template-columns: 1fr 1fr; }
.otro-card {
  background: var(--bg-3); border: 1px solid var(--line); border-radius: 20px;
  padding: 1.4rem 1.3rem;
}
.otro-photo {
  aspect-ratio: 16 / 10; overflow: hidden; border-radius: 14px;
  margin-bottom: .9rem;
}
.otro-photo img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .7s var(--ease-soft);
}
.otro-card:hover .otro-photo img { transform: scale(1.06); }
.otro-card h3 { font-family: var(--display); font-size: 1.2rem; text-transform: uppercase; color: var(--cream); margin: .5rem 0 .4rem; }
.otro-card p { font-size: .84rem; color: var(--cream-mute); margin-bottom: .8rem; }
.otro-card .price { font-family: var(--display); font-size: 1.6rem; color: var(--orange); }

/* =============================================================
   11. Reviews
   ============================================================= */
.reviews { text-align: center; }
.reviews-stars { display: flex; justify-content: center; align-items: flex-end; gap: .35rem; margin-bottom: 1.3rem; }
.reviews-stars svg { width: 28px; height: 28px; color: var(--gold); flex: none; }
.reviews-stars svg:nth-child(2),
.reviews-stars svg:nth-child(4) { width: 36px; height: 36px; }
.reviews-stars svg:nth-child(3) { width: 46px; height: 46px; }
.reviews h2 {
  font-family: var(--display); font-weight: 400; text-transform: uppercase;
  font-size: clamp(1.8rem, 4.6vw, 3rem); max-width: 20ch; margin-inline: auto; color: var(--cream);
}
.reviews h2 em { color: var(--orange); font-style: normal; }
.reviews p { margin: 1rem auto 2rem; max-width: 50ch; color: var(--cream-mute); }

.review-carousel {
  position: relative; overflow: hidden;
  display: flex; flex-wrap: nowrap; align-items: flex-start;
  margin-block: clamp(1rem, 4vw, 2rem) clamp(2.2rem, 5vw, 3.2rem);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 6%, black 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, black 6%, black 94%, transparent);
}
.review-track {
  display: flex; flex: none; align-items: stretch;
  gap: 1.3rem; padding-inline: 1.3rem;
  width: max-content;
  will-change: transform;
}
.review-card {
  flex: none; width: min(360px, 82vw);
  background: var(--bg-3); border: 1px solid var(--line);
  border-radius: 20px; padding: 1.6rem 1.7rem;
  text-align: left;
  display: flex; flex-direction: column;
  transition: border-color .4s, box-shadow .4s;
}
.review-card:hover { border-color: var(--line-gold); box-shadow: 0 30px 60px -28px rgba(0,0,0,.6); }
.review-card-stars { display: flex; gap: .2rem; margin-bottom: .9rem; }
.review-card-stars svg { width: 14px; height: 14px; color: var(--gold); flex: none; }
.review-text {
  font-size: .92rem; line-height: 1.6; color: var(--cream-mute);
  flex: 1;
}
.review-card-foot {
  margin-top: 1.1rem; padding-top: 1rem; border-top: 1px dashed var(--line);
  display: flex; align-items: baseline; justify-content: space-between; gap: .8rem;
}
.review-name { font-family: var(--display); font-size: 1.02rem; text-transform: uppercase; color: var(--cream); }
.review-meta { font-family: var(--mono); font-size: .68rem; letter-spacing: .04em; color: var(--cream-dim); white-space: nowrap; }
@keyframes reviewCarouselFallback { from { transform: translateX(-100%); } to { transform: translateX(0%); } }

/* =============================================================
   12. Contact
   ============================================================= */
.contact-grid {
  display: grid; gap: 2.2rem;
  grid-template-columns: 1fr;
}
@media (min-width: 960px) { .contact-grid { grid-template-columns: .9fr 1.1fr; align-items: stretch; } }
.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-item svg { width: 22px; height: 22px; color: var(--gold); flex: none; margin-top: 2px; }
.contact-item h3 {
  font-family: var(--mono); font-size: .72rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--cream-dim); margin-bottom: .35rem;
}
.contact-item p, .contact-item a { font-size: 1rem; color: var(--cream); }
.contact-item a:hover { color: var(--gold); }
.contact-hours-row { display: flex; justify-content: space-between; gap: 1rem; font-size: .95rem; color: var(--cream-mute); }
.contact-hours-row + .contact-hours-row { margin-top: .3rem; }
.contact-hours-row b { color: var(--cream); font-weight: 600; }
.contact-social { display: flex; gap: .8rem; margin-top: .4rem; }
.social-btn {
  width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center;
  border: 1px solid var(--line-gold); color: var(--cream);
  transition: transform .4s var(--ease-soft), background .3s, color .3s;
}
.social-btn svg { width: 19px; height: 19px; }
.social-btn:hover { background: var(--gold); color: var(--bg); transform: translateY(-3px); }

.contact-map {
  position: relative; border-radius: 20px; overflow: hidden;
  border: 1px solid var(--line); min-height: 320px;
  background: var(--bg-3);
  transition: border-color .4s;
}
.contact-map:hover { border-color: var(--line-gold); }
.contact-map-iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%; min-height: 320px; border: 0;
  filter: grayscale(.25) contrast(1.05) brightness(.92);
}
.map-cta {
  position: absolute; left: 1rem; bottom: 1rem; z-index: 2;
}

/* =============================================================
   13. Footer
   ============================================================= */
.footer {
  border-top: 1px solid var(--line);
  padding-block: 2.6rem;
}
.footer-inner {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.6rem;
}
.footer-brand { display: flex; align-items: center; gap: .9rem; }
.footer-brand span { font-family: var(--display); text-transform: uppercase; color: var(--cream); font-size: 1rem; }
.footer-links { display: flex; flex-wrap: wrap; gap: 1.4rem; }
.footer-links a { font-family: var(--mono); font-size: .78rem; color: var(--cream-mute); letter-spacing: .04em; }
.footer-links a:hover { color: var(--gold); }
.footer-meta { font-family: var(--mono); font-size: .72rem; color: var(--cream-dim); }

/* =============================================================
   14. Floating WhatsApp
   ============================================================= */
.wa-float {
  position: fixed; right: 1.2rem; bottom: 1.2rem; z-index: 250;
  width: 60px; height: 60px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--orange); color: var(--bg);
  box-shadow: 0 14px 34px -10px rgba(255,107,0,.6);
  transition: transform .4s var(--ease-soft);
}
.wa-float svg { width: 28px; height: 28px; }
.wa-float:hover { transform: scale(1.08); }
.wa-float-ring {
  position: absolute; inset: -6px; border-radius: 50%;
  border: 1.5px solid var(--orange-dim);
  animation: waPulse 2.6s ease-out infinite;
}
@keyframes waPulse {
  0% { transform: scale(.9); opacity: .9; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* =============================================================
   15. Reveal / scroll effects
   ============================================================= */
[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; }
[data-reveal][data-split] { opacity: 1; transform: none; }

/* =============================================================
   16. Reduced motion — only intrusive effects
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-mesh { animation: none; }
  .wa-float-ring { animation: none; display: none; }
}

/* =============================================================
   17. Responsive helpers
   ============================================================= */
.hide-mobile { display: none; }
@media (min-width: 720px) { .hide-mobile { display: revert; } }
