/* ===== Tokens ===== */
:root{
  --ink: #14110d;
  --ink-2: #1b1712;
  --cream: #f5edd9;
  --parchment: #ecdfc0;
  --gold: #c69a4e;
  --gold-light: #e6c581;
  --teal: #4fa0c7;
  --teal-dark: #2a6483;
  --door-blue: #5c89b4;
  --terracotta: #b8562f;
  --text-muted: #7a6f5e;
  --text-on-dark: #f1e9d8;
  --text-primary: var(--ink);
  --text-secondary: #4a4234;
  --text-testi: #3a352b;
  --card-bg: #ffffff;
  --radius: 18px;
  --serif: "Playfair Display", Georgia, serif;
  --script: "Sacramento", cursive;
  --sans: "Outfit", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --ease: cubic-bezier(.16,.84,.44,1);
  color-scheme: light;
}

:root[data-theme="dark"]{
  --cream: #2b2319;
  --parchment: #211a13;
  --card-bg: #241d15;
  --text-primary: #ece3d2;
  --text-secondary: #cfc4ae;
  --text-testi: #d8cdb9;
  --text-muted: #a89d88;
  color-scheme: dark;
}

*, *::before, *::after{ box-sizing: border-box; }
picture{ display: contents; }
html{ scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *{ animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}

body{
  margin: 0;
  background: var(--cream);
  color: var(--text-primary);
  font-family: var(--sans);
  line-height: 1.6;
  overflow-x: hidden;
  transition: background .4s var(--ease), color .4s var(--ease);
}

h1,h2,h3{ font-family: var(--serif); margin: 0 0 .4em; line-height: 1.15; font-weight: 600; text-wrap: balance; }
p{ margin: 0 0 1em; text-wrap: pretty; }
a{ color: inherit; text-decoration: none; }
ul{ list-style: none; margin: 0; padding: 0; }
img{ max-width: 100%; display: block; }
section{ position: relative; }

.grain{
  position: fixed; inset: 0; pointer-events: none; z-index: 999; opacity: .035; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.cursor-glow{
  position: fixed; width: 420px; height: 420px; border-radius: 50%; pointer-events: none; z-index: 1;
  background: radial-gradient(circle, rgba(198,154,78,.16), transparent 70%);
  transform: translate(-50%,-50%); left: -999px; top: -999px;
  transition: left .25s var(--ease), top .25s var(--ease);
}
@media (hover: none), (pointer: coarse){ .cursor-glow{ display: none; } }

/* ===== Buttons ===== */
.btn{
  display: inline-flex; align-items: center; gap: .5em;
  padding: .85em 1.7em; border-radius: 999px; font-weight: 500; font-size: .95rem;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .35s var(--ease), color .35s var(--ease);
  border: 1px solid transparent; cursor: pointer;
}
.btn-gold{ background: linear-gradient(135deg, var(--gold-light), var(--gold)); color: #23190c; box-shadow: 0 8px 24px -8px rgba(198,154,78,.6); }
.btn-gold:hover{
  transform: translateY(-3px); box-shadow: 0 14px 30px -8px rgba(198,154,78,.75);
  background: linear-gradient(135deg, color-mix(in oklch, var(--gold-light) 70%, white), var(--gold-light));
}
.btn-outline{ border-color: rgba(241,233,216,.4); color: var(--text-on-dark); }
.btn-steam{ position: relative; }
.btn-steam::before, .btn-steam::after{
  content: ""; position: absolute; top: -2px; width: 4px; height: 4px; border-radius: 50%;
  background: rgba(255,255,255,.7); opacity: 0; filter: blur(1px); pointer-events: none;
}
.btn-steam::before{ left: 40%; }
.btn-steam::after{ left: 58%; }
.btn-steam:hover::before{ animation: steamPuff 1.3s ease-out infinite; }
.btn-steam:hover::after{ animation: steamPuff 1.3s ease-out .35s infinite; }
@keyframes steamPuff{
  0%{ opacity: 0; transform: translateY(0) scale(1); }
  25%{ opacity: .65; }
  100%{ opacity: 0; transform: translateY(-24px) scale(1.9); }
}
@media (hover: none){ .btn-steam::before, .btn-steam::after{ display: none; } }
.btn-outline:hover{ background: rgba(241,233,216,.1); transform: translateY(-3px); }
.btn-ghost{ border-color: rgba(20,17,13,.15); color: var(--ink); font-size: .85rem; padding: .6em 1.2em; }
.btn-ghost:hover{ background: var(--ink); color: var(--cream); }

/* ===== Header ===== */
.site-header{
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .4s var(--ease), box-shadow .4s var(--ease), padding .4s var(--ease);
  padding: 18px 0;
}
.site-header.scrolled{
  background: rgba(20,17,13,.82);
  backdrop-filter: blur(14px) saturate(1.4);
  -webkit-backdrop-filter: blur(14px) saturate(1.4);
  box-shadow: 0 10px 30px -18px rgba(0,0,0,.6);
  padding: 10px 0;
}
.header-inner{
  max-width: 1180px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.brand{ display: flex; flex-direction: column; line-height: 1; color: var(--text-on-dark); }
.brand-script{ font-family: var(--script); font-size: 1.7rem; color: var(--gold-light); }
.brand-sub{ font-size: .6rem; letter-spacing: .3em; color: var(--teal); margin-top: 2px; }
.main-nav{ display: flex; gap: 30px; }
.main-nav a{ color: var(--text-on-dark); font-size: .9rem; opacity: .85; position: relative; }
.main-nav a::after{
  content:""; position: absolute; left: 0; bottom: -6px; width: 0; height: 1px; background: var(--gold-light);
  transition: width .3s var(--ease);
}
.main-nav a:hover{ opacity: 1; }
.main-nav a:hover::after{ width: 100%; }
.header-cta{ background: transparent; color: var(--text-on-dark); }
.header-cta:hover{ background: rgba(241,233,216,.12); }

/* ===== Language switch ===== */
.lang-switch{ display: flex; gap: 6px; }
.lang-switch-mobile{ display: none; }
.lang-btn{
  background: transparent; border: 1px solid rgba(241,233,216,.25); color: rgba(241,233,216,.7);
  font-family: var(--sans); font-size: .68rem; letter-spacing: .05em; font-weight: 600;
  padding: .4em .75em; border-radius: 999px; cursor: pointer; transition: all .3s var(--ease);
}
.lang-btn:hover{ border-color: var(--gold-light); color: var(--text-on-dark); background: color-mix(in oklch, var(--gold-light) 14%, transparent); }
.lang-btn.is-active{ background: var(--gold-light); border-color: var(--gold-light); color: #23190c; }

.theme-toggle{
  background: transparent; border: 1px solid rgba(241,233,216,.25); color: rgba(241,233,216,.85);
  width: 30px; height: 30px; border-radius: 50%; cursor: pointer; display: flex;
  align-items: center; justify-content: center; font-size: .8rem; line-height: 1;
  transition: all .3s var(--ease); padding: 0;
}
.theme-toggle:hover{ border-color: var(--gold-light); background: color-mix(in oklch, var(--gold-light) 14%, transparent); }
.lang-switch-mobile .theme-toggle{ width: 34px; height: 34px; }

.nav-toggle{ display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span{ width: 22px; height: 2px; background: var(--text-on-dark); border-radius: 2px; transition: transform .3s var(--ease), opacity .3s var(--ease); }

@media (max-width: 1080px){
  .main-nav{
    position: fixed; top: 0; right: 0; height: 100vh; width: min(78vw, 320px);
    background: var(--ink-2); flex-direction: column; padding: 110px 32px 32px;
    transform: translateX(100%); transition: transform .45s var(--ease);
    gap: 26px;
  }
  .main-nav.is-open{ transform: translateX(0); }
  .header-cta{ display: none; }
  .nav-toggle{ display: flex; z-index: 120; }
  .lang-switch-desktop{ display: none; }
  .lang-switch-mobile{ display: flex; margin-bottom: 34px; }
  body.nav-open .nav-toggle span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
  body.nav-open .nav-toggle span:nth-child(2){ opacity: 0; }
  body.nav-open .nav-toggle span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

  [dir="rtl"] .main-nav{ right: auto; left: 0; transform: translateX(-100%); }
  [dir="rtl"] .main-nav.is-open{ transform: translateX(0); }
}

/* ===== Hero ===== */
.hero{
  min-height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; position: relative; overflow: hidden;
  background: radial-gradient(120% 100% at 50% 0%, #241d13 0%, var(--ink) 55%, #0d0b08 100%);
  color: var(--text-on-dark); padding: 140px 24px 80px;
}
.hero-video{
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  opacity: .8; filter: saturate(1.15) brightness(1.1);
}
.hero-scrim{
  position: absolute; inset: 0;
  background:
    radial-gradient(120% 90% at 50% 0%, rgba(36,29,19,.3) 0%, rgba(20,17,13,.45) 55%, rgba(13,11,8,.78) 100%),
    linear-gradient(180deg, rgba(13,11,8,.15) 0%, rgba(13,11,8,.35) 60%, rgba(13,11,8,.72) 100%);
}
@media (prefers-reduced-motion: reduce){
  .hero-video{ display: none; }
}

/* Native scroll-driven parallax — progressive enhancement, no-ops where unsupported */
@supports (animation-timeline: view()) {
  @media (prefers-reduced-motion: no-preference){
    @keyframes heroParallax{
      from{ transform: scale(1) translateY(0); }
      to{ transform: scale(1.18) translateY(6%); }
    }
    .hero-video{
      animation: heroParallax linear both;
      animation-timeline: view();
      animation-range: entry 0% cover 100%;
    }
  }
}
.hero-pattern{
  position: absolute; inset: 0; opacity: .16; pointer-events: none;
  background-image:
    linear-gradient(45deg, transparent 48%, var(--gold) 49%, var(--gold) 51%, transparent 52%),
    linear-gradient(-45deg, transparent 48%, var(--teal) 49%, var(--teal) 51%, transparent 52%);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at 50% 30%, black, transparent 75%);
}
.hero-glow{
  position: absolute; width: 700px; height: 700px; left: 50%; top: 10%; transform: translateX(-50%);
  background: radial-gradient(circle, rgba(58,166,161,.18), transparent 65%);
  pointer-events: none;
}
.hero-content{ position: relative; max-width: 760px; }
.eyebrow{
  font-size: .78rem; letter-spacing: .28em; text-transform: uppercase; color: var(--teal);
  margin-bottom: 18px; font-weight: 500;
}
.eyebrow.center{ text-align: center; }
.script-lead{ display: block; font-family: var(--script); font-size: clamp(2.6rem, 7vw, 4.6rem); color: var(--gold-light); line-height: 1; }
.serif-lead{ display: block; font-family: var(--serif); font-size: clamp(1.5rem, 4vw, 2.3rem); font-weight: 500; color: var(--text-on-dark); margin-top: 6px; }
.hero-lede{ max-width: 560px; margin: 26px auto 34px; color: rgba(241,233,216,.78); font-size: 1.05rem; }
.hero-actions{ display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; margin-bottom: 56px; }

.hero-stats{ display: flex; align-items: center; justify-content: center; gap: 28px; flex-wrap: wrap; }
.stat{ display: flex; flex-direction: column; align-items: center; }
.stat-num{ font-family: var(--serif); font-size: 1.9rem; color: var(--gold-light); font-weight: 600; }
.stat-label{ font-size: .75rem; letter-spacing: .05em; color: rgba(241,233,216,.6); margin-top: 2px; }
.stat-divider{ width: 1px; height: 32px; background: rgba(241,233,216,.2); }

.scroll-cue{
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  width: 26px; height: 42px; border: 1.5px solid rgba(241,233,216,.4); border-radius: 20px;
}
.scroll-cue span{
  position: absolute; top: 8px; left: 50%; width: 4px; height: 8px; background: var(--gold-light);
  border-radius: 3px; transform: translateX(-50%); animation: cueMove 1.8s ease-in-out infinite;
}
@keyframes cueMove{ 0%{ opacity: 1; top: 8px; } 70%{ opacity: 0; top: 22px; } 100%{ opacity: 0; top: 8px; } }

/* ===== Marquee ===== */
.marquee{
  background: var(--teal-dark); overflow: hidden; padding: 14px 0; white-space: nowrap;
  border-top: 1px solid rgba(0,0,0,.15); border-bottom: 1px solid rgba(0,0,0,.15);
}
.marquee-track{
  display: inline-flex; gap: 14px; animation: scrollLeft 32s linear infinite;
  font-size: .8rem; letter-spacing: .18em; color: var(--text-on-dark); font-weight: 500;
}
.marquee-track span{ opacity: .9; }
.marquee-track .dot{ color: var(--gold-light); }
@keyframes scrollLeft{ from{ transform: translateX(0); } to{ transform: translateX(-50%); } }

/* ===== Spotlight ===== */
.spotlight{ background: var(--parchment); padding: 90px 24px; overflow: hidden; position: relative; }
.spotlight .btn-outline{ border-color: rgba(35,25,12,.3); color: var(--text-primary); }
.spotlight .btn-outline:hover{ background: rgba(35,25,12,.06); }
.spotlight-coffee{ border-top: 1px solid rgba(198,154,78,.2); }
.spotlight-inner{
  max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center; position: relative; z-index: 1;
}
.spotlight-inner.reverse{ grid-template-columns: 1fr 1fr; }
.spotlight-inner.reverse .spotlight-text{ order: 1; }
.spotlight-inner.reverse .spotlight-photo{ order: 2; }
.spotlight-photo{
  border-radius: 20px; overflow: hidden; transform: rotate(-2deg);
  box-shadow: 0 30px 60px -24px rgba(35,25,12,.35); border: 6px solid #fff;
  max-width: 460px; margin: 0 auto;
}
.spotlight-photo-coffee{ transform: rotate(2deg); position: relative; }
.spotlight-photo img{ width: 100%; height: auto; display: block; }
.spotlight-photo-stack{ position: relative; max-width: 480px; margin: 0 auto; }
.spotlight-photo-stack .spotlight-photo{ max-width: none; margin: 0; }
.spotlight-photo-sign{
  position: absolute; top: 5%; left: -6%; width: 56%; z-index: 1;
  transform: rotate(-8deg);
}
.spotlight-photo-cups{
  position: relative; z-index: 2; width: 64%; margin-left: 38% !important;
  transform: rotate(4deg);
}
@media (max-width: 760px){
  .spotlight-photo-stack{ max-width: 320px; }
}
.ambient-steam{
  position: absolute; top: 22%; left: 50%; width: 34%; transform: translateX(-50%);
  opacity: .55; mix-blend-mode: screen; pointer-events: none;
}
.ambient-steam-a, .ambient-steam-b, .ambient-steam-c{ animation: ambientRise 3.6s ease-in-out infinite; transform-origin: bottom; }
.ambient-steam-b{ animation-delay: .8s; }
.ambient-steam-c{ animation-delay: 1.6s; }
@keyframes ambientRise{
  0%{ opacity: 0; transform: translateY(0) scaleY(.8); }
  30%{ opacity: .8; }
  100%{ opacity: 0; transform: translateY(-14px) scaleY(1.15); }
}
@media (prefers-reduced-motion: reduce){
  .ambient-steam-a, .ambient-steam-b, .ambient-steam-c{ animation: none; opacity: .3; }
}
.spotlight-text .eyebrow{ color: var(--terracotta); }
.spotlight-text h2{
  font-family: var(--serif); color: var(--text-primary); font-size: clamp(1.8rem, 3vw, 2.4rem);
}
.spotlight-text p{ color: var(--text-secondary); max-width: 42ch; }
.spotlight-price{
  font-family: var(--serif); font-size: 1.6rem; color: var(--gold); font-weight: 600;
  margin-bottom: 22px;
}
.weather-note{
  display: inline-flex; align-items: center; gap: 8px; margin: 4px 0 18px;
  padding: .5em 1em; border-radius: 999px; font-size: .86rem;
  background: rgba(198,154,78,.14); border: 1px solid rgba(198,154,78,.35); color: var(--gold);
}
.weather-note[hidden]{ display: none; }
@media (max-width: 760px){ .weather-note{ margin-inline: auto; } }
@media (max-width: 760px){
  .spotlight-inner, .spotlight-inner.reverse{ grid-template-columns: 1fr; text-align: center; gap: 32px; }
  .spotlight-inner.reverse .spotlight-text{ order: 2; }
  .spotlight-inner.reverse .spotlight-photo{ order: 1; }
  .spotlight-text p{ margin-inline: auto; }
  .spotlight-photo{ transform: rotate(-1.5deg); max-width: 320px; }
  .spotlight-photo-coffee{ transform: rotate(1.5deg); }
  .spotlight-photo-stack{ max-width: 260px; padding: 0 0 22% 22%; }
  .spotlight-photo-sign{ position: absolute; top: 0; left: 0; width: 62%; transform: rotate(-9deg); max-width: none; }
  .spotlight-photo-cups{ position: relative; width: 78%; margin-left: auto !important; transform: rotate(3deg); max-width: none; }
}

/* ===== Coffee ring stains (decorative) ===== */
.coffee-ring{
  position: absolute; width: 260px; height: 260px; border-radius: 50%; pointer-events: none; z-index: 0;
  background:
    radial-gradient(circle, transparent 58%, rgba(198,154,78,.14) 59%, rgba(198,154,78,.14) 66%, transparent 67%),
    radial-gradient(circle, transparent 70%, rgba(198,154,78,.08) 71%, rgba(198,154,78,.08) 74%, transparent 75%);
}
.coffee-ring-a{ top: -60px; right: -60px; transform: rotate(8deg); }
.coffee-ring-b{ bottom: -80px; left: -60px; width: 200px; height: 200px; }
.coffee-ring-c{ top: -50px; left: -50px; width: 220px; height: 220px; transform: rotate(-12deg); }
@media (max-width: 760px){ .coffee-ring{ opacity: .6; } }

/* ===== About ===== */
.about{ padding: 100px 24px; background: var(--cream); }
.about-inner{ max-width: 1120px; margin: 0 auto; display: grid; grid-template-columns: .8fr 1.2fr; gap: 80px; align-items: center; }
.about-photo-frame{
  position: relative; max-width: 460px; margin: 0 auto;
  border-radius: 22px; overflow: visible;
}
.about-photo-frame img{
  width: 100%; aspect-ratio: 1000/780; object-fit: cover; border-radius: 22px;
  box-shadow: 0 30px 60px -24px rgba(20,17,13,.45);
  outline: 1px solid rgba(198,154,78,.35); outline-offset: 8px;
}
.steam-badge{
  position: absolute; width: 64px; height: 64px; right: -18px; bottom: -18px;
  filter: drop-shadow(0 8px 16px rgba(0,0,0,.35));
}
.steam{ transform-origin: center; animation: steamRise 3s ease-in-out infinite; }
.s2{ animation-delay: .4s; } .s3{ animation-delay: .8s; }
@keyframes steamRise{ 0%,100%{ opacity: .35; transform: translateY(0);} 50%{ opacity: .9; transform: translateY(-4px);} }
.about-text h2{ font-size: clamp(1.8rem, 3.2vw, 2.6rem); }
.about-text em{ font-style: italic; color: var(--terracotta); }
.about-text p{ color: var(--text-secondary); max-width: 52ch; }
.feature-row{ display: flex; gap: 28px; flex-wrap: wrap; margin-top: 28px; }
.feature{ display: flex; align-items: center; gap: 10px; font-size: .92rem; font-weight: 500; }
.feature-icon{ font-size: 1.3rem; }
.shop-tags{
  display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin-top: 24px;
  padding-top: 22px; border-top: 1px dashed rgba(20,17,13,.15);
}
.shop-tags-label{ font-size: .78rem; letter-spacing: .04em; color: var(--text-muted); margin-right: 4px; }
.shop-tag{
  font-size: .76rem; padding: 5px 12px; border-radius: 999px; background: var(--parchment);
  color: var(--text-secondary); border: 1px solid rgba(198,154,78,.25);
}
.street-fact{
  display: flex; gap: 10px; align-items: flex-start; margin-top: 22px; padding: 16px 18px;
  background: color-mix(in oklch, var(--terracotta) 8%, transparent); border-radius: 12px;
  border: 1px solid color-mix(in oklch, var(--terracotta) 25%, transparent);
}
.street-fact-icon{ font-size: 1.1rem; line-height: 1.4; }
.street-fact p{ margin: 0; font-size: .86rem; color: var(--text-secondary); max-width: 46ch; }

/* ===== Story quote ===== */
.story-quote{
  background: var(--parchment); padding: 80px 24px; text-align: center;
  border-top: 1px solid rgba(198,154,78,.2); border-bottom: 1px solid rgba(198,154,78,.2);
}
.story-quote-inner{ max-width: 720px; margin: 0 auto; }
.story-quote-inner p{
  font-family: var(--serif); font-size: clamp(1.25rem, 2.6vw, 1.7rem); line-height: 1.5;
  color: var(--text-primary); margin: 0 0 20px; font-style: italic;
}
.story-quote-inner em{ color: var(--terracotta); font-style: italic; }

/* ===== Menu ===== */
.menu-section{ padding: 100px 24px 60px; background: var(--ink); color: var(--text-on-dark); }
.menu-section h2{ color: var(--text-on-dark); font-size: clamp(1.8rem, 3.2vw, 2.6rem); }
.center{ text-align: center; }
.menu-order-ahead{
  display: flex; align-items: center; justify-content: center; gap: 9px;
  max-width: 460px; margin: 22px auto 0; padding: .55em 1.1em;
  border: 1px solid rgba(37,211,102,.35); border-radius: 999px;
  background: rgba(37,211,102,.08); color: rgba(241,233,216,.85);
  font-family: var(--sans); font-size: .86rem; text-align: center; line-height: 1.4;
  text-decoration: none; transition: all .35s var(--ease);
}
.menu-order-ahead svg{ flex-shrink: 0; color: #25d366; }
.menu-order-ahead:hover{ border-color: #25d366; background: rgba(37,211,102,.16); color: var(--text-on-dark); }
.menu-download{
  display: flex; align-items: center; justify-content: center; gap: 7px;
  width: fit-content; margin: 14px auto 0; color: rgba(241,233,216,.55);
  font-family: var(--sans); font-size: .82rem; text-decoration: none;
  border-bottom: 1px solid transparent; transition: color .3s var(--ease), border-color .3s var(--ease);
}
.menu-download:hover{ color: var(--gold-light); border-color: var(--gold-light); }
.menu-tabs{ display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; margin: 44px 0 50px; }
.tab-btn{
  background: transparent; border: 1px solid rgba(241,233,216,.25); color: rgba(241,233,216,.75);
  padding: .7em 1.4em; border-radius: 999px; font-family: var(--sans); font-size: .9rem; cursor: pointer;
  transition: all .35s var(--ease); display: inline-flex; align-items: center; gap: 8px;
}
.tab-icon{ width: 17px; height: 17px; flex-shrink: 0; }
.tab-btn:hover{ border-color: var(--gold-light); color: var(--text-on-dark); }
.tab-btn.is-active{ background: var(--gold-light); border-color: var(--gold-light); color: #23190c; font-weight: 600; }

.menu-panels{ max-width: 760px; margin: 0 auto; position: relative; min-height: 320px; }
.menu-panel{ display: none; }
.menu-panel.is-active{ display: block; animation: fadeUp .5s var(--ease); }
@keyframes fadeUp{ from{ opacity: 0; transform: translateY(14px);} to{ opacity: 1; transform: translateY(0);} }
.menu-list li{
  display: flex; flex-wrap: wrap; justify-content: space-between; align-items: baseline; gap: 4px 20px;
  padding: 16px 0; border-bottom: 1px dashed rgba(241,233,216,.18); font-size: 1.02rem;
}
.menu-list li small{ display: block; color: rgba(241,233,216,.5); font-size: .78rem; margin-top: 3px; }
.menu-list .price{ color: var(--gold-light); font-family: var(--serif); white-space: nowrap; font-weight: 600; margin-left: auto; }
.menu-list .must-try{
  flex-basis: 100%; order: 3; font-size: .74rem; color: var(--terracotta); font-weight: 500;
}
.menu-note{ margin-top: 22px; text-align: center; color: rgba(241,233,216,.55); font-size: .85rem; font-style: italic; }

.tea-toggle{ margin-top: 26px; }
.tea-toggle summary{
  cursor: pointer; text-align: center; color: var(--gold-light); font-size: .88rem;
  font-weight: 500; letter-spacing: .02em; list-style: none; padding: .6em 0;
  border-top: 1px dashed rgba(241,233,216,.18);
}
.tea-toggle summary::-webkit-details-marker{ display: none; }
.tea-toggle summary::after{ content: " +"; }
.tea-toggle[open] summary::after{ content: " −"; }
.tea-toggle summary:hover{ color: #fff; }
.tea-flavor-grid{
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 6px 28px; margin: 18px 0 0;
  animation: fadeUp .4s var(--ease);
}
.tea-flavor-grid li{
  font-size: .88rem; padding: 8px 0; border-bottom: 1px dashed rgba(241,233,216,.12);
}
.tea-flavor-grid li small{ display: block; color: rgba(241,233,216,.5); font-size: .74rem; margin-top: 1px; }
@media (max-width: 620px){
  .tea-flavor-grid{ grid-template-columns: 1fr; }
}

/* ===== Origin map ===== */
.origin-map{ background: var(--cream); padding: 100px 24px 90px; color: var(--text-primary); }
.origin-map h2{ color: var(--text-primary); font-size: clamp(1.8rem, 3.2vw, 2.6rem); }
.origin-globe{
  position: relative; max-width: 880px; margin: 56px auto 0; aspect-ratio: 460 / 380;
}
.origin-svg{ width: 100%; height: 100%; display: block; }
.origin-pin{ animation: originBob 3.2s ease-in-out infinite; transform-box: fill-box; transform-origin: center; }
.origin-pin:nth-of-type(2){ animation-delay: .5s; }
.origin-pin:nth-of-type(3){ animation-delay: 1s; }
.origin-pin:nth-of-type(4){ animation-delay: 1.5s; }
@keyframes originBob{ 0%,100%{ transform: translateY(0); } 50%{ transform: translateY(-4px); } }
.origin-sparkle{ animation: originTwinkle 2.6s ease-in-out infinite; transform-box: fill-box; transform-origin: center; }
.origin-sparkle:nth-of-type(2){ animation-delay: .8s; }
.origin-sparkle:nth-of-type(3){ animation-delay: 1.6s; }
@keyframes originTwinkle{ 0%,100%{ opacity: .3; transform: scale(.8); } 50%{ opacity: 1; transform: scale(1.15); } }
.origin-marker{
  position: absolute; transform: translate(-50%, -50%); width: max-content;
  display: flex; flex-direction: column; align-items: center; gap: 6px; z-index: 2;
}
.origin-photo{
  width: 116px; height: 116px; border-radius: 50%; object-fit: cover; display: block;
  border: 5px solid #fff; box-shadow: 0 12px 26px -6px rgba(35,25,12,.5);
}
.origin-label{
  font-size: 1.05rem; font-weight: 700; font-family: var(--serif); color: var(--text-primary);
  white-space: nowrap; text-shadow: 0 2px 6px rgba(255,255,255,.7);
}
:root[data-theme="dark"] .origin-label{ text-shadow: 0 2px 6px rgba(0,0,0,.6); }
.origin-marker-1{ left: 20.7%; top: 16%; }
.origin-marker-2{ left: 8%; top: 50%; }
.origin-marker-3{ left: 22.8%; top: 84%; }
.origin-marker-4{ left: 80.4%; top: 28%; }
.origin-marker-center{ left: 50%; top: 50%; }
.origin-marker-center .origin-photo{ width: 90px; height: 90px; border-width: 4px; }
.origin-label-center{
  color: var(--teal); font-size: .85rem;
  font-family: var(--sans); font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
}
.origin-credit{
  max-width: 720px; margin: 18px auto 0; text-align: center; font-size: .72rem;
  color: var(--text-muted); opacity: .75;
}
@media (max-width: 560px){
  .origin-photo{ width: 78px; height: 78px; border-width: 3px; }
  .origin-marker-center .origin-photo{ width: 62px; height: 62px; border-width: 3px; }
  .origin-label{ font-size: .82rem; }
  .origin-label-center{ font-size: .68rem; }
}

/* ===== Rincón ===== */
.rincon{ padding: 100px 24px 70px; background: var(--parchment); }
.rincon h2{ font-size: clamp(1.8rem, 3.2vw, 2.6rem); }
.rincon-grid{ max-width: 1100px; margin: 56px auto 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.rincon-card{
  background: var(--cream); border-radius: var(--radius); padding: 34px 26px; text-align: center;
  box-shadow: 0 18px 40px -28px rgba(20,17,13,.35);
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
}
.rincon-card:hover{ transform: translateY(-8px); box-shadow: 0 26px 46px -24px rgba(20,17,13,.4); }
.rincon-icon{ font-size: 1.8rem; color: var(--teal-dark); margin-bottom: 14px; }
.rincon-card h3{ font-size: 1.08rem; margin-bottom: 8px; }
.rincon-card p{ font-size: .88rem; color: var(--text-muted); margin: 0; }

/* ===== Testimonials ===== */
.testimonials{ padding: 100px 24px; background: var(--cream); }
.testimonials h2{ font-size: clamp(1.8rem, 3.2vw, 2.6rem); }
.stars-big{ text-align: center; color: var(--gold); font-size: 1.4rem; letter-spacing: .1em; margin: 18px 0 34px; }
.favorites-row{
  display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; max-width: 900px;
  margin: 0 auto 50px;
}
.favorite-chip{
  background: var(--card-bg); border: 1px solid rgba(198,154,78,.3); border-radius: 999px;
  padding: 10px 22px; display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap;
  justify-content: center; box-shadow: 0 8px 20px -14px rgba(20,17,13,.3);
}
.favorite-name{ font-family: var(--serif); font-weight: 600; color: var(--terracotta); font-size: .95rem; }
.favorite-note{ font-size: .78rem; color: var(--text-muted); font-style: italic; }
@media (max-width: 640px){
  .favorite-chip{ flex-direction: column; gap: 2px; padding: 10px 18px; text-align: center; }
}
.stars-big span{ display: block; font-family: var(--sans); font-size: .82rem; color: var(--text-muted); letter-spacing: 0; margin-top: 6px; }
.testi-grid{ max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testi-card{
  margin: 0; background: var(--card-bg); border-radius: var(--radius); padding: 30px 26px;
  box-shadow: 0 16px 36px -26px rgba(20,17,13,.3); border-top: 3px solid var(--gold-light);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.testi-card:hover{ transform: translateY(-6px); box-shadow: 0 24px 42px -22px rgba(20,17,13,.35); }
.testi-card p{ font-size: .95rem; color: var(--text-testi); margin-bottom: 16px; }
.testi-card cite{ font-style: normal; font-size: .82rem; color: var(--teal-dark); font-weight: 600; }

/* ===== Menu banner ===== */
.menu-banner{
  max-width: 760px; margin: 0 auto 8px; border-radius: 16px; overflow: hidden;
  aspect-ratio: 2 / 1; box-shadow: 0 20px 40px -26px rgba(0,0,0,.55);
}
.menu-banner img{
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: opacity .4s var(--ease);
}

/* ===== Gallery ===== */
.gallery{ padding: 70px 24px 100px; background: var(--parchment); }
.gallery h2{ font-size: clamp(1.8rem, 3.2vw, 2.6rem); }
.gallery-grid{
  max-width: 1100px; margin: 56px auto 0;
  column-count: 4; column-gap: 16px;
}
.ig-follow{
  display: flex; align-items: center; gap: 14px; justify-content: center;
  width: fit-content; margin: 44px auto 0; padding: 14px 26px;
  border-radius: 16px; background: var(--card-bg, #fff); border: 1px solid rgba(35,25,12,.1);
  box-shadow: 0 16px 36px -26px rgba(20,17,13,.3); text-decoration: none; color: var(--text-primary);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.ig-follow:hover{ transform: translateY(-2px); box-shadow: 0 20px 40px -22px rgba(20,17,13,.35); }
.ig-follow svg{ flex-shrink: 0; color: var(--terracotta); }
.ig-follow span{ display: flex; flex-direction: column; text-align: left; }
.ig-follow strong{ font-family: var(--serif); font-size: 1rem; font-weight: 600; }
.ig-follow small{ color: var(--text-secondary, rgba(35,25,12,.55)); font-size: .82rem; direction: ltr; unicode-bidi: isolate; }
[dir="rtl"] .ig-follow span{ text-align: right; }
.gallery-item{
  position: relative; border: none; padding: 0; margin: 0 0 16px; cursor: pointer;
  border-radius: 14px; overflow: hidden; background: var(--ink);
  display: block; width: 100%; break-inside: avoid;
}
.gallery-item img{
  width: 100%; height: auto; display: block;
  transition: transform .6s var(--ease), filter .5s var(--ease);
}
.gallery-item::after{
  content: "+"; position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 2rem; color: #fff; background: rgba(20,17,13,0);
  opacity: 0; transition: opacity .4s var(--ease), background .4s var(--ease);
}
.gallery-item:hover img{ transform: scale(1.08); filter: brightness(.75); }
.gallery-item:hover::after{ opacity: 1; background: rgba(20,17,13,.25); }

@media (max-width: 860px){
  .gallery-grid{ column-count: 3; }
}
@media (max-width: 560px){
  .gallery-grid{ column-count: 2; column-gap: 10px; }
  .gallery-item{ margin-bottom: 10px; }
}

/* ===== Lightbox ===== */
.lightbox{
  position: fixed; inset: 0; z-index: 300; display: flex; align-items: center; justify-content: center;
  background: rgba(10,8,6,.92); opacity: 0; pointer-events: none;
  transition: opacity .35s var(--ease);
  padding: 40px;
}
.lightbox.is-open{ opacity: 1; pointer-events: auto; }
.lightbox img{
  max-width: min(90vw, 1100px); max-height: 85vh; border-radius: 10px;
  box-shadow: 0 40px 80px -20px rgba(0,0,0,.7);
  transform: scale(.96); transition: transform .35s var(--ease);
}
.lightbox.is-open img{ transform: scale(1); }
.lightbox-close{
  position: absolute; top: 24px; right: 28px; background: none; border: none; color: #fff;
  font-size: 2.4rem; line-height: 1; cursor: pointer; opacity: .8; transition: opacity .3s var(--ease);
  z-index: 2;
}
.lightbox-close:hover{ opacity: 1; }
.lightbox-figure{ margin: 0; display: flex; flex-direction: column; align-items: center; max-width: 100%; }
.lightbox-figure figcaption{
  color: rgba(255,255,255,.75); font-size: .9rem; margin-top: 16px; text-align: center; max-width: 60ch;
}
.lightbox-nav{
  position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.2); color: #fff; width: 48px; height: 48px; border-radius: 50%;
  font-size: 1.1rem; cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background .3s var(--ease), transform .3s var(--ease); backdrop-filter: blur(6px);
}
.lightbox-nav:hover{ background: rgba(255,255,255,.18); }
.lightbox-prev{ left: 20px; }
.lightbox-next{ right: 20px; }
.lightbox-count{
  position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,.6); font-size: .8rem; letter-spacing: .05em;
}
@media (max-width: 640px){
  .lightbox{ padding: 20px; }
  .lightbox-nav{ width: 40px; height: 40px; font-size: .95rem; }
  .lightbox-prev{ left: 8px; }
  .lightbox-next{ right: 8px; }
}

/* ===== FAQ ===== */
.faq{ background: var(--cream); padding: 100px 24px; }
.faq h2{ font-size: clamp(1.8rem, 3.2vw, 2.6rem); }
.faq-list{ max-width: 720px; margin: 48px auto 0; display: flex; flex-direction: column; gap: 12px; }
.faq-item{
  background: var(--card-bg); border: 1px solid rgba(198,154,78,.2); border-radius: 14px;
  padding: 6px 22px; transition: box-shadow .3s var(--ease);
}
.faq-item[open]{ box-shadow: 0 16px 32px -22px rgba(20,17,13,.3); }
.faq-item summary{
  cursor: pointer; padding: 18px 0; font-family: var(--serif); font-weight: 600; font-size: 1.02rem;
  color: var(--text-primary); list-style: none; position: relative; padding-right: 28px;
}
.faq-item summary::-webkit-details-marker{ display: none; }
.faq-item summary::after{
  content: "+"; position: absolute; right: 0; top: 16px; font-size: 1.3rem; color: var(--gold);
  transition: transform .3s var(--ease);
}
.faq-item[open] summary::after{ transform: rotate(45deg); }
.faq-item p{ margin: 0 0 18px; color: var(--text-secondary); font-size: .92rem; max-width: 60ch; }
[dir="rtl"] .faq-item summary{ padding-right: 0; padding-left: 28px; }
[dir="rtl"] .faq-item summary::after{ right: auto; left: 0; }

/* ===== Location ===== */
.location{ padding: 100px 24px; background: var(--ink); color: var(--text-on-dark); }
.location-inner{ max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: .85fr 1fr 1fr; gap: 40px; align-items: center; }
.location h2{ color: var(--text-on-dark); font-size: clamp(1.8rem, 3.2vw, 2.5rem); }
.location-photo{
  border-radius: var(--radius); overflow: hidden; height: 100%; min-height: 340px;
  box-shadow: 0 30px 60px -30px rgba(0,0,0,.6); border: 1px solid rgba(241,233,216,.12);
}
.location-photo img{ width: 100%; height: 100%; object-fit: cover; display: block; }
.info-list{ margin: 30px 0 34px; display: flex; flex-direction: column; gap: 18px; }
.info-list li{ display: flex; flex-direction: column; gap: 3px; }
.info-list strong{ font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; color: var(--teal); }
.info-list span, .info-list a{ font-size: 1rem; color: var(--text-on-dark); }
.info-list a:hover{ color: var(--gold-light); }
.open-badge{
  display: inline-flex; align-items: center; gap: 6px; margin-top: 6px; width: fit-content;
  font-size: .76rem; font-weight: 600; padding: 4px 12px; border-radius: 999px;
}
.open-badge::before{ content: ""; width: 7px; height: 7px; border-radius: 50%; background: currentColor; }
.open-badge.is-open{ background: rgba(90,168,110,.16); color: #7fd996; }
.open-badge.is-closed{ background: rgba(198,154,78,.14); color: var(--gold-light); }
.location-ctas{ display: flex; gap: 14px; flex-wrap: wrap; }
.btn-whatsapp{ gap: .5em; }
.location-map{ border-radius: var(--radius); overflow: hidden; box-shadow: 0 30px 60px -30px rgba(0,0,0,.6); border: 1px solid rgba(241,233,216,.12); }
.location-map iframe{ width: 100%; height: 380px; border: 0; filter: grayscale(.15) contrast(1.05); }

.walk-steps{
  max-width: 1120px; margin: 56px auto 0; display: flex; align-items: center; justify-content: center;
  gap: 18px; flex-wrap: wrap; padding-top: 40px; border-top: 1px dashed rgba(241,233,216,.15);
}
.walk-step{ display: flex; flex-direction: column; align-items: center; gap: 6px; }
.walk-icon{ font-size: 1.6rem; }
.walk-label{ font-size: .85rem; color: rgba(241,233,216,.8); text-align: center; }
.walk-label small{ display: block; color: var(--gold-light); font-size: .72rem; margin-top: 2px; }
.walk-arrow{ color: var(--gold); font-size: .9rem; letter-spacing: -1px; }
@media (max-width: 620px){
  .walk-steps{ flex-direction: column; gap: 14px; }
  .walk-arrow{ transform: rotate(90deg); }
}

/* ===== Footer ===== */
.site-footer{ background: #0d0b08; color: rgba(241,233,216,.7); padding: 70px 24px 26px; }
.footer-inner{
  max-width: 1120px; margin: 0 auto; display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px;
  padding-bottom: 40px; border-bottom: 1px solid rgba(241,233,216,.1);
}
.footer-brand p{ margin-top: 10px; font-size: .88rem; max-width: 30ch; }
.footer-nav{ display: flex; flex-direction: column; gap: 12px; font-size: .9rem; }
.footer-nav a:hover{ color: var(--gold-light); }
.footer-contact{ display: flex; flex-direction: column; gap: 12px; font-size: .9rem; }
.footer-social{ display: flex; align-items: center; gap: 8px; }
.footer-social:hover{ color: var(--gold-light); }
.footer-contact a:hover{ color: var(--gold-light); }
.footer-bottom{ max-width: 1120px; margin: 24px auto 0; font-size: .78rem; color: rgba(241,233,216,.85); text-align: center; }

/* ===== To top (coffee cup scroll indicator) ===== */
.to-top{
  position: fixed; right: 22px; bottom: 22px; width: 50px; height: 50px; border-radius: 50%;
  background: var(--cream); color: var(--ink); border: 1px solid rgba(198,154,78,.4); cursor: pointer;
  box-shadow: 0 12px 24px -8px rgba(0,0,0,.4); opacity: 0; pointer-events: none; transform: translateY(12px);
  transition: opacity .35s var(--ease), transform .35s var(--ease), box-shadow .3s var(--ease);
  z-index: 90; display: flex; align-items: center; justify-content: center;
}
.to-top:hover{ box-shadow: 0 16px 30px -8px rgba(0,0,0,.5); transform: translateY(-2px); }
.to-top.is-visible{ opacity: 1; pointer-events: auto; transform: translateY(0); }
.to-top.is-visible:hover{ transform: translateY(-2px); }
.cup-icon{ width: 28px; height: 28px; overflow: visible; }
.cup-fill{
  fill: var(--gold); transform-box: fill-box; transform-origin: bottom;
  transform: scaleY(var(--scroll-fill, 0)); transition: transform .12s linear;
}
.cup-lid{ opacity: .92; }
.to-top .steam{ opacity: .8; }
.to-top .steam-b{ animation-delay: .45s; }

/* ===== WhatsApp bubble ===== */
.whatsapp-bubble{
  position: fixed; left: 22px; bottom: 22px; width: 50px; height: 50px; border-radius: 50%;
  background: #25d366; color: #fff; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 24px -8px rgba(0,0,0,.4); z-index: 90;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.whatsapp-bubble:hover{ transform: translateY(-2px) scale(1.05); box-shadow: 0 16px 30px -8px rgba(0,0,0,.5); }
@media (max-width: 620px){
  .whatsapp-bubble{ width: 44px; height: 44px; left: 16px; bottom: 16px; }
}

/* ===== Share bubble ===== */
.share-bubble{
  position: fixed; left: 22px; bottom: 84px; width: 42px; height: 42px; border-radius: 50%;
  background: var(--cream); color: var(--ink); border: 1px solid rgba(198,154,78,.4); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 24px -8px rgba(0,0,0,.4); z-index: 90;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.share-bubble[hidden]{ display: none; }
.share-bubble:hover{ transform: translateY(-2px) scale(1.05); box-shadow: 0 16px 30px -8px rgba(0,0,0,.5); }
@media (max-width: 620px){
  .share-bubble{ width: 38px; height: 38px; left: 19px; bottom: 68px; }
}

/* ===== Arabic / RTL ===== */
[lang="ar"] body{
  font-family: 'Noto Kufi Arabic', var(--sans);
}
[lang="ar"] h1, [lang="ar"] h2, [lang="ar"] h3{
  font-family: 'Noto Kufi Arabic', var(--serif);
}
[lang="ar"] .script-lead{
  font-family: 'Noto Kufi Arabic', var(--serif);
  font-size: clamp(2rem, 5.5vw, 3.1rem);
}
[lang="ar"] .eyebrow,
[lang="ar"] .brand-sub,
[lang="ar"] .marquee-track,
[lang="ar"] .stat-label,
[lang="ar"] .info-list strong,
[lang="ar"] .lang-btn{
  letter-spacing: 0;
}
[lang="ar"] .brand-script{ font-family: var(--script); }

[dir="rtl"] body{ text-align: right; }
[dir="rtl"] .hero,
[dir="rtl"] .rincon-card,
[dir="rtl"] .testi-card,
[dir="rtl"] .center,
[dir="rtl"] .stars-big,
[dir="rtl"] .stat{ text-align: center; }
[dir="rtl"] .menu-note{ text-align: center; }
[dir="rtl"] .testi-card p,
[dir="rtl"] .testi-card cite{ direction: ltr; unicode-bidi: isolate; text-align: left; }
[dir="rtl"] .testi-card cite{ display: block; }
[dir="rtl"] .price,
[dir="rtl"] .spotlight-price,
[dir="rtl"] .ltr-text,
[dir="rtl"] a[href^="tel"],
[dir="rtl"] .stat-num{ direction: ltr; unicode-bidi: isolate; }
[dir="rtl"] .spotlight-inner{ text-align: right; }
[dir="rtl"] .spotlight-text p{ margin-inline: 0; }
[dir="rtl"] .menu-list li{ direction: rtl; }
[dir="rtl"] .marquee-track{ animation-direction: reverse; }
[dir="rtl"] .walk-arrow{ display: inline-block; transform: scaleX(-1); }
@media (max-width: 620px){
  [dir="rtl"] .walk-arrow{ transform: rotate(90deg); }
}

/* ===== Reveal on scroll ===== */
[data-reveal]{ opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
[data-reveal].in-view{ opacity: 1; transform: translateY(0); }

/* ===== Responsive ===== */
@media (max-width: 980px){
  .about-inner{ grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .about-text p{ margin-inline: auto; }
  .feature-row{ justify-content: center; }
  .rincon-grid{ grid-template-columns: repeat(2, 1fr); }
  .testi-grid{ grid-template-columns: repeat(2, 1fr); }
  .location-inner{ grid-template-columns: 1fr; }
}
@media (max-width: 620px){
  .rincon-grid{ grid-template-columns: 1fr; }
  .testi-grid{ grid-template-columns: 1fr; }
  .footer-inner{ grid-template-columns: 1fr; text-align: center; }
  .footer-nav, .footer-contact{ align-items: center; }
  .hero{ padding-top: 120px; }
  .about, .menu-section, .testimonials, .location{ padding: 70px 20px; }
  .rincon{ padding: 70px 20px 50px; }
  .gallery{ padding: 50px 20px 70px; }
  .hero-actions{ flex-direction: column; width: 100%; }
  .hero-actions .btn{ width: 100%; justify-content: center; }
  .hero-stats{ gap: 18px; }
  .stat-num{ font-size: 1.5rem; }
  .menu-list li{ font-size: .94rem; padding: 14px 0; }
}

/* Touch feedback — cheap, no JS, feels alive without the desktop tilt/glow */
@media (hover: none), (pointer: coarse){
  .btn:active{ transform: scale(.96); transition: transform .15s var(--ease); }
  .rincon-card:active, .testi-card:active{ transform: scale(.98) translateY(-2px); transition: transform .2s var(--ease); }
  .tab-btn:active{ transform: scale(.95); }
  .main-nav a{ padding: 6px 0; display: inline-block; }
}
