/* ==========================================================================
   CAFÉ NUVEM — Premium Coffee Shop Stylesheet
   Tech: pure CSS3 · no frameworks
   Sections:
   1. Design tokens & reset
   2. Base typography & utilities
   3. Buttons
   4. Preloader
   5. Header & navigation
   6. Hero
   7. About
   8. Menu
   9. Gallery + lightbox
   10. Reviews
   11. Visit / map
   12. Contact / reservation form
   13. Footer
   14. Floating buttons
   15. Animations & reveal
   16. Responsive
   17. Reduced motion
   ========================================================================== */

/* ---------- 1. Design tokens & reset ---------- */
:root {
  /* Brand palette — espresso brown + cloud sky blue + cream */
  --espresso:        #1e120a;
  --espresso-2:      #2b1b10;
  --espresso-soft:   #4a3327;
  --cream:           #faf6ef;
  --cream-2:         #f3ecdf;
  --cream-3:         #ece2d0;
  --sky:             #4f9fe0;
  --sky-2:           #7ab6ea;
  --sky-dark:        #2c6ea8;
  --gold:            #c9a227;
  --white:           #ffffff;
  --ink:             #241a12;
  --muted:           #6f5d4f;

  --shadow-sm: 0 2px 10px rgba(30, 18, 10, .06);
  --shadow-md: 0 12px 34px rgba(30, 18, 10, .12);
  --shadow-lg: 0 24px 60px rgba(30, 18, 10, .22);

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 26px;
  --radius-full: 999px;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Outfit', system-ui, -apple-system, sans-serif;
  --font-script: 'Dancing Script', cursive;

  --header-h: 78px;
  --ease: cubic-bezier(.22, .8, .36, 1);
  --section-pad: clamp(4rem, 9vw, 7.5rem);
}

*,
*::before,
*::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; border: none; background: none; cursor: pointer; }
input, select, textarea { font: inherit; color: inherit; }

::selection { background: var(--sky); color: var(--white); }

/* Custom scrollbar */
::-webkit-scrollbar { width: 11px; }
::-webkit-scrollbar-track { background: var(--cream-2); }
::-webkit-scrollbar-thumb { background: linear-gradient(var(--sky), var(--sky-dark)); border-radius: 8px; border: 2px solid var(--cream-2); }

.container { width: min(1180px, 92%); margin-inline: auto; }

section { scroll-margin-top: var(--header-h); }

/* ---------- 2. Base typography & utilities ---------- */
.section { padding-block: var(--section-pad); position: relative; }

.eyebrow {
  display: inline-block;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--sky-dark);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 4.6vw, 3.15rem);
  line-height: 1.15;
  color: var(--espresso);
  margin-bottom: 1.1rem;
}

.section-sub { color: var(--muted); max-width: 46rem; font-size: 1.05rem; }

.section-head { text-align: center; max-width: 46rem; margin: 0 auto 3rem; }
.section-head .section-sub { margin-inline: auto; }

/* Reveal-on-scroll */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
  transition-delay: var(--reveal-delay, 0s);
  will-change: opacity, transform;
}
.reveal.visible { opacity: 1; transform: none; }

/* ---------- 3. Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: .95rem 1.9rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: .98rem;
  letter-spacing: .02em;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s, color .3s;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--espresso);
  color: var(--cream);
  box-shadow: 0 10px 24px rgba(30, 18, 10, .28);
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, .18) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform .7s var(--ease);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 34px rgba(30, 18, 10, .34); }
.btn-primary:hover::after { transform: translateX(120%); }

.btn-ghost {
  background: rgba(255, 255, 255, .08);
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, .55);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover { background: rgba(255, 255, 255, .16); transform: translateY(-3px); }

.btn-whatsapp { background: #25d366; color: #fff; box-shadow: 0 10px 24px rgba(37, 211, 102, .3); }
.btn-whatsapp:hover { transform: translateY(-3px); box-shadow: 0 16px 34px rgba(37, 211, 102, .4); }

.btn-block { width: 100%; }

/* ---------- 4. Preloader ---------- */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: var(--espresso);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .8rem;
  transition: opacity .7s var(--ease), visibility .7s;
}
.preloader.done { opacity: 0; visibility: hidden; pointer-events: none; }

.preloader-cloud {
  font-size: 3.2rem;
  animation: floatCloud 2.4s ease-in-out infinite;
}
.preloader-text {
  font-family: var(--font-display);
  color: var(--cream);
  font-size: 1.6rem;
  letter-spacing: .06em;
}
.preloader-text em { font-family: var(--font-script); color: var(--sky-2); font-style: normal; font-size: 2rem; }
.preloader-bar { width: 180px; height: 3px; background: rgba(255, 255, 255, .15); border-radius: 4px; overflow: hidden; }
.preloader-bar span { display: block; height: 100%; width: 40%; background: var(--sky); border-radius: 4px; animation: preloadBar 1.2s var(--ease) infinite; }

@keyframes preloadBar { 0% { transform: translateX(-100%); } 100% { transform: translateX(460%); } }
@keyframes floatCloud { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* ---------- 5. Header & navigation ---------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  transition: background .4s, box-shadow .4s, padding .4s;
  padding-block: 1.2rem;
}
.header.scrolled {
  background: rgba(250, 246, 239, .9);
  backdrop-filter: blur(14px);
  box-shadow: 0 4px 24px rgba(30, 18, 10, .08);
  padding-block: .55rem;
}

.nav { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }

.logo { display: inline-flex; align-items: center; gap: .6rem; color: var(--cream); transition: color .3s; }
.header.scrolled .logo { color: var(--espresso); }
.logo-icon { color: var(--sky-2); transition: color .3s; }
.header.scrolled .logo-icon { color: var(--sky); }
.logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: .02em;
}
.logo-text em { font-family: var(--font-script); font-style: normal; color: var(--sky-2); font-size: 1.5rem; }
.header.scrolled .logo-text em { color: var(--sky); }

.nav-links { display: flex; align-items: center; gap: .4rem; }

.nav-link {
  padding: .55rem .95rem;
  border-radius: var(--radius-full);
  font-size: .95rem;
  font-weight: 500;
  color: rgba(250, 246, 239, .9);
  transition: background .3s, color .3s, transform .3s;
  position: relative;
}
.header.scrolled .nav-link { color: var(--espresso-soft); }
.nav-link:hover { background: rgba(255, 255, 255, .12); color: var(--white); }
.header.scrolled .nav-link:hover { background: rgba(30, 18, 10, .06); color: var(--espresso); }
.nav-link.active { color: var(--sky-2); }
.header.scrolled .nav-link.active { color: var(--sky-dark); }
.nav-link.active::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: .2rem;
  transform: translateX(-50%);
  width: 5px; height: 5px;
  border-radius: 50%;
  background: currentColor;
}

.nav-cta {
  background: var(--sky);
  color: #fff !important;
  margin-left: .6rem;
  box-shadow: 0 6px 16px rgba(44, 110, 168, .35);
}
.nav-cta:hover { background: var(--sky-dark) !important; transform: translateY(-2px); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: .5rem;
  border-radius: 8px;
  z-index: 600;
}
.nav-toggle span {
  width: 26px; height: 2.5px;
  background: var(--cream);
  border-radius: 3px;
  transition: transform .4s var(--ease), opacity .3s;
}
.header.scrolled .nav-toggle span { background: var(--espresso); }
.nav-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
.nav-toggle.open span { background: var(--cream) !important; }

/* ---------- 6. Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--cream);
}

.hero-bg {
  position: absolute;
  inset: -40px;
  background: url('https://images.unsplash.com/photo-1501339847302-ac426a4a7cbb?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
  will-change: transform;
  transition: transform .15s linear;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 22% 68%, rgba(44, 110, 168, .34), transparent 55%),
    linear-gradient(112deg, rgba(30, 18, 10, .88) 0%, rgba(30, 18, 10, .62) 48%, rgba(30, 18, 10, .42) 100%);
}

/* Drifting clouds */
.hero-clouds { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.hero-clouds .cloud {
  position: absolute;
  bottom: 18%;
  border-radius: 999px;
  background: rgba(255, 255, 255, .14);
  filter: blur(26px);
  opacity: 0;
  animation: drift var(--dur, 48s) linear infinite;
  animation-delay: var(--delay, 0s);
}
@keyframes drift {
  0%   { transform: translateX(-30vw) scale(var(--s, 1)); opacity: 0; }
  8%   { opacity: .5; }
  88%  { opacity: .5; }
  100% { transform: translateX(130vw) scale(var(--s, 1)); opacity: 0; }
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-block: calc(var(--header-h) + 2rem) 6rem;
  max-width: 46rem;
  margin-inline-start: auto;
  margin-inline-end: auto;
  animation: heroIn 1.1s var(--ease) both;
}
@keyframes heroIn {
  from { opacity: 0; transform: translateY(34px); }
  to   { opacity: 1; transform: none; }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .28);
  backdrop-filter: blur(8px);
  padding: .5rem 1rem;
  border-radius: var(--radius-full);
  font-size: .86rem;
  font-weight: 500;
  color: var(--cream);
}
.hero-badge svg { color: var(--gold); }

.hero-script {
  font-family: var(--font-script);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  color: var(--sky-2);
  margin-top: 1.4rem;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.9rem, 8vw, 5.6rem);
  line-height: 1.02;
  margin: .4rem 0 1.2rem;
  text-wrap: balance;
}
.hero-title span { font-style: italic; color: var(--sky-2); }

.hero-sub {
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  color: rgba(250, 246, 239, .85);
  max-width: 36rem;
  margin-bottom: 2.2rem;
  font-weight: 300;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2.4rem; }

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem;
  font-size: .9rem;
  color: rgba(250, 246, 239, .8);
}
.hero-meta span { display: inline-flex; align-items: center; gap: .45rem; }
.hero-meta svg { color: var(--sky-2); }

.scroll-down {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  width: 26px; height: 44px;
  border: 2px solid rgba(250, 246, 239, .5);
  border-radius: 20px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
  transition: border-color .3s;
}
.scroll-down:hover { border-color: var(--white); }
.scroll-down span {
  width: 4px; height: 9px;
  border-radius: 4px;
  background: var(--cream);
  animation: scrollPulse 1.8s var(--ease) infinite;
}
@keyframes scrollPulse {
  0% { transform: translateY(0); opacity: 1; }
  70% { transform: translateY(14px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

/* ---------- 7. About ---------- */
.about { background: var(--cream); }

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}

.about-media { position: relative; }
.about-img-main {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.about-img-small {
  position: absolute;
  right: -14px;
  bottom: -34px;
  width: 42%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius-md);
  border: 6px solid var(--cream);
  box-shadow: var(--shadow-md);
  animation: floatSlow 7s ease-in-out infinite;
}
@keyframes floatSlow { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

.about-badge {
  position: absolute;
  left: -16px;
  top: 26px;
  background: var(--espresso);
  color: var(--cream);
  padding: 1rem 1.3rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  text-align: center;
  transform: rotate(-4deg);
}
.about-badge strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.7rem;
  color: var(--sky-2);
  line-height: 1;
}
.about-badge span { font-size: .78rem; letter-spacing: .06em; text-transform: uppercase; opacity: .85; }

.about-content p { color: var(--muted); margin-bottom: 1.1rem; }
.about-content p strong { color: var(--espresso); }

.features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin: 1.8rem 0 2.2rem;
}
.feature {
  background: var(--white);
  border: 1px solid var(--cream-3);
  border-radius: var(--radius-md);
  padding: 1.2rem 1.25rem;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s;
}
.feature:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--sky-2); }
.feature-icon { font-size: 1.5rem; display: block; margin-bottom: .55rem; }
.feature h3 { font-family: var(--font-display); font-size: 1.05rem; color: var(--espresso); margin-bottom: .25rem; }
.feature p { font-size: .86rem; margin: 0; }

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  border-top: 1px solid var(--cream-3);
  padding-top: 1.8rem;
}
.stat { text-align: center; }
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.7rem, 3.4vw, 2.4rem);
  color: var(--sky-dark);
  line-height: 1;
}
.stat-label { font-size: .8rem; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; }

/* ---------- 8. Menu ---------- */
.menu { background: linear-gradient(180deg, var(--cream-2), var(--cream)); }

/* Best sellers */
.best-sellers { margin-bottom: 3rem; }
.best-title {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--espresso);
  margin-bottom: 1.1rem;
}
.best-title svg { color: var(--gold); }

.best-track {
  display: flex;
  gap: 1.1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: .3rem .3rem 1.1rem;
  scrollbar-width: none;
}
.best-track::-webkit-scrollbar { display: none; }
.best-track:focus-visible { outline: 2px solid var(--sky); outline-offset: 4px; border-radius: var(--radius-md); }

.best-card {
  flex: 0 0 240px;
  scroll-snap-align: start;
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.best-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.best-card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: transform .6s var(--ease); }
.best-card:hover img { transform: scale(1.06); }
.best-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .6rem;
  padding: .9rem 1rem;
}
.best-info h4 { font-size: .92rem; font-weight: 600; color: var(--espresso); }
.best-price { font-family: var(--font-display); font-weight: 700; color: var(--sky-dark); white-space: nowrap; }

/* Tabs */
.menu-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .6rem;
  margin-bottom: 2.2rem;
}
.menu-tab {
  padding: .6rem 1.35rem;
  border-radius: var(--radius-full);
  background: var(--white);
  border: 1px solid var(--cream-3);
  color: var(--espresso-soft);
  font-weight: 600;
  font-size: .92rem;
  transition: all .35s var(--ease);
}
.menu-tab:hover { border-color: var(--sky); color: var(--sky-dark); transform: translateY(-2px); }
.menu-tab.active {
  background: var(--espresso);
  color: var(--cream);
  border-color: var(--espresso);
  box-shadow: 0 8px 20px rgba(30, 18, 10, .22);
}

/* Grid + items */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.1rem;
}
.menu-item {
  background: var(--white);
  border: 1px solid var(--cream-3);
  border-radius: var(--radius-md);
  padding: 1.15rem 1.3rem;
  position: relative;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s;
}
.menu-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--sky-2); }
.menu-item.pop { animation: popIn .5s var(--ease); }
@keyframes popIn { from { opacity: 0; transform: scale(.96) translateY(8px); } to { opacity: 1; transform: none; } }
.menu-item.hidden { display: none; }

.menu-item-tagged { padding-top: 2rem; }
.menu-tag {
  position: absolute;
  top: 0;
  left: 1.3rem;
  transform: translateY(-50%);
  background: var(--sky);
  color: #fff;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .3rem .75rem;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 12px rgba(44, 110, 168, .3);
}
.menu-tag::before {
  content: '';
  position: absolute;
  left: 6px; bottom: -5px;
  border: 5px solid transparent;
  border-top-color: var(--sky-dark);
  border-left-color: var(--sky-dark);
  border-radius: 2px;
}

.menu-item-head { display: flex; align-items: baseline; gap: .6rem; }
.menu-item-name { font-family: var(--font-display); font-size: 1.08rem; font-weight: 700; color: var(--espresso); white-space: nowrap; }
.menu-dots { flex: 1; border-bottom: 2px dotted rgba(30, 18, 10, .18); transform: translateY(-4px); }
.menu-item-price { font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; color: var(--sky-dark); white-space: nowrap; }
.menu-item-desc { font-size: .88rem; color: var(--muted); margin-top: .35rem; }

.menu-note {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--espresso), var(--espresso-2));
  border: none;
  text-align: center;
}
.menu-note p { color: rgba(250, 246, 239, .85); font-size: .95rem; font-weight: 500; }
.menu-note:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

/* ---------- 9. Gallery + lightbox ---------- */
.gallery { background: var(--cream); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: zoom-in;
  box-shadow: var(--shadow-sm);
  aspect-ratio: 1;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease), filter .7s; }
.gallery-item:hover img { transform: scale(1.08); filter: brightness(.82); }
.gallery-item figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 2.4rem 1.1rem 1rem;
  background: linear-gradient(transparent, rgba(30, 18, 10, .75));
  color: var(--cream);
  font-family: var(--font-script);
  font-size: 1.35rem;
  transform: translateY(12px);
  opacity: 0;
  transition: transform .5s var(--ease), opacity .5s;
}
.gallery-item:hover figcaption { transform: none; opacity: 1; }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 900;
  background: rgba(20, 11, 5, .94);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity .4s var(--ease), visibility .4s;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox-img {
  max-width: min(92vw, 1000px);
  max-height: 78vh;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  transform: scale(.94);
  transition: transform .45s var(--ease);
}
.lightbox.open .lightbox-img { transform: scale(1); }
.lightbox-caption { color: rgba(250, 246, 239, .85); font-size: .98rem; }
.lightbox-close {
  position: absolute;
  top: 1.3rem;
  right: 1.6rem;
  font-size: 2.6rem;
  line-height: 1;
  color: var(--cream);
  opacity: .75;
  transition: transform .3s var(--ease), opacity .3s;
}
.lightbox-close:hover { transform: rotate(90deg); opacity: 1; }

/* ---------- 10. Reviews ---------- */
.reviews { background: linear-gradient(180deg, var(--espresso) 0%, var(--espresso-2) 100%); color: var(--cream); }
.reviews .section-title { color: var(--cream); }
.reviews .eyebrow { color: var(--sky-2); }
.reviews .section-sub { color: rgba(250, 246, 239, .75); }

.review-tags { display: inline-flex; flex-wrap: wrap; gap: .4rem; margin-left: .6rem; }
.review-tags span {
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: var(--radius-full);
  font-size: .75rem;
  padding: .25rem .7rem;
  color: var(--sky-2);
}

.reviews-viewport {
  position: relative;
  max-width: 46rem;
  margin: 0 auto;
  overflow: hidden;
}
.reviews-track {
  display: flex;
  transition: transform .7s var(--ease);
}
.review-card {
  flex: 0 0 100%;
  padding: 2.4rem 2rem;
  text-align: center;
}
.review-stars { color: var(--gold); letter-spacing: .2em; margin-bottom: 1.1rem; font-size: 1.15rem; }
.review-card blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.6vw, 1.5rem);
  line-height: 1.55;
  font-style: italic;
  color: var(--cream);
  max-width: 34rem;
  margin: 0 auto 1.6rem;
}
.review-author { display: inline-flex; align-items: center; gap: .8rem; text-align: left; }
.review-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sky), var(--sky-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: #fff;
}
.review-author strong { display: block; font-size: .98rem; }
.review-author span { font-size: .8rem; color: rgba(250, 246, 239, .6); }

.reviews-dots { display: flex; justify-content: center; gap: .55rem; margin-top: 1.2rem; }
.reviews-dots button {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .25);
  transition: all .35s var(--ease);
}
.reviews-dots button.active { background: var(--sky-2); width: 26px; border-radius: 6px; }

/* ---------- 11. Visit / map ---------- */
.visit { background: var(--cream-2); }

.visit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-bottom: 1.8rem;
}
.visit-card {
  background: var(--white);
  border: 1px solid var(--cream-3);
  border-radius: var(--radius-md);
  padding: 1.8rem 1.6rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.visit-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.visit-icon { font-size: 1.8rem; display: block; margin-bottom: .6rem; }
.visit-card h3 { font-family: var(--font-display); color: var(--espresso); font-size: 1.15rem; margin-bottom: .5rem; }
.visit-card p { color: var(--muted); font-size: .95rem; }
.visit-card p strong { color: var(--espresso); }
.visit-card a { color: var(--sky-dark); font-weight: 600; font-size: .92rem; display: inline-block; margin-top: .7rem; }
.visit-card a:hover { text-decoration: underline; }
.visit-open, .visit-note {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  margin-top: .8rem;
  font-size: .85rem;
  font-weight: 600;
  color: #1b9e52;
}
.visit-note { color: var(--muted); font-weight: 500; }
.pulse-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: #1b9e52;
  position: relative;
}
.pulse-dot::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid #1b9e52;
  animation: pulse 1.8s ease-out infinite;
}
@keyframes pulse { 0% { transform: scale(.6); opacity: 1; } 100% { transform: scale(1.5); opacity: 0; } }

.map-wrap { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); border: 6px solid var(--white); }
.map-wrap iframe {
  width: 100%;
  height: 440px;
  border: 0;
  display: block;
  filter: saturate(.92);
}

/* ---------- 12. Contact / reservation ---------- */
.contact { background: var(--cream); }

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: clamp(2.5rem, 6vw, 4.5rem);
  align-items: start;
}
.contact-info p { color: var(--muted); margin-bottom: 1.6rem; max-width: 30rem; }

.contact-list { display: grid; gap: 1rem; margin-bottom: 1.8rem; }
.contact-list li { display: flex; gap: .9rem; align-items: flex-start; }
.contact-list li > span { font-size: 1.25rem; line-height: 1.3; }
.contact-list strong { display: block; color: var(--espresso); font-size: .95rem; }
.contact-list p { margin: 0; font-size: .92rem; }
.contact-list a { color: var(--sky-dark); font-weight: 500; }
.contact-list a:hover { text-decoration: underline; }

.reserve-form {
  background: var(--white);
  border: 1px solid var(--cream-3);
  border-radius: var(--radius-lg);
  padding: clamp(1.6rem, 4vw, 2.4rem);
  box-shadow: var(--shadow-md);
}
.reserve-form h3 { font-family: var(--font-display); color: var(--espresso); font-size: 1.5rem; margin-bottom: 1.4rem; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.05rem; }
.form-group label {
  display: block;
  font-size: .84rem;
  font-weight: 600;
  color: var(--espresso-soft);
  margin-bottom: .4rem;
}
.form-group label small { font-weight: 400; color: var(--muted); }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .8rem 1rem;
  border: 1.5px solid var(--cream-3);
  border-radius: var(--radius-sm);
  background: var(--cream);
  font-size: .95rem;
  transition: border-color .3s, box-shadow .3s, background .3s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--sky);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(79, 159, 224, .16);
}
.form-group input[type="date"],
.form-group input[type="time"] { -webkit-appearance: none; appearance: none; }

.form-group.invalid input,
.form-group.invalid select,
.form-group.invalid textarea { border-color: #d64545; }
.error-msg { display: block; min-height: 1.1em; margin-top: .3rem; font-size: .78rem; color: #d64545; }

.form-note { text-align: center; font-size: .82rem; color: var(--muted); margin-top: .9rem; }

.form-success {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  gap: .8rem;
  background: #e8f8ef;
  border: 1px solid #bfe8cf;
  color: #147a42;
  border-radius: var(--radius-sm);
  padding: .95rem 1.1rem;
  font-size: .92rem;
  animation: popIn .5s var(--ease);
}
.form-success > span {
  flex: 0 0 auto;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: #1b9e52;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

/* ---------- 13. Footer ---------- */
.footer { background: var(--espresso); color: rgba(250, 246, 239, .78); }

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-block: 4rem 2.6rem;
}
.footer-brand .logo { color: var(--cream); margin-bottom: 1rem; }
.footer-brand p { font-size: .92rem; max-width: 24rem; margin-bottom: 1.2rem; }

.socials { display: flex; gap: .7rem; }
.socials a {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .22);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  transition: all .35s var(--ease);
}
.socials a:hover { background: var(--sky); border-color: var(--sky); transform: translateY(-3px); }

.footer-col h4 {
  font-family: var(--font-display);
  color: var(--cream);
  font-size: 1.05rem;
  margin-bottom: 1rem;
}
.footer-col a, .footer-col p { display: block; font-size: .92rem; padding: .28rem 0; transition: color .3s, transform .3s; }
.footer-col a:hover { color: var(--sky-2); transform: translateX(4px); }
.footer-open { display: flex !important; align-items: center; gap: .5rem; color: #52d68a !important; }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding-block: 1.4rem;
  text-align: center;
  font-size: .85rem;
  color: rgba(250, 246, 239, .55);
}

/* ---------- 14. Floating buttons ---------- */
.whatsapp-float {
  position: fixed;
  right: 1.4rem;
  bottom: 1.4rem;
  z-index: 800;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 28px rgba(37, 211, 102, .45);
  transition: transform .3s var(--ease);
}
.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 3px solid #25d366;
  animation: pulse 1.9s ease-out infinite;
}
.whatsapp-float:hover { transform: translateY(-4px) scale(1.05); }

.to-top {
  position: fixed;
  right: 1.5rem;
  bottom: 5.4rem;
  z-index: 800;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--espresso);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition: all .4s var(--ease);
}
.to-top.show { opacity: 1; visibility: visible; transform: none; }
.to-top:hover { background: var(--sky-dark); transform: translateY(-4px); }

/* ---------- 15. Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
  .hero-content { animation: none; }
}

/* ---------- 16. Responsive ---------- */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-media { max-width: 520px; margin: 0 auto 3.5rem; }
  .about-img-small { right: 10px; }
  .about-badge { left: 10px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --header-h: 68px; }

  .nav-toggle { display: flex; }

  .nav-links {
    position: fixed;
    inset: 0;
    flex-direction: column;
    justify-content: center;
    gap: .6rem;
    background: linear-gradient(160deg, var(--espresso) 0%, #241306 100%);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6%);
    transition: opacity .45s var(--ease), visibility .45s, transform .45s var(--ease);
    z-index: 550;
  }
  .nav-links.open { opacity: 1; visibility: visible; transform: none; }
  .nav-link { font-size: 1.25rem; color: var(--cream) !important; padding: .8rem 1.4rem; }
  .nav-link.active { color: var(--sky-2) !important; }
  .nav-link:hover { background: rgba(255, 255, 255, .1); }
  .nav-cta { margin-left: 0; background: var(--sky) !important; }

  .hero-content { margin-inline: auto; text-align: left; }
  .hero-actions .btn { flex: 1 1 auto; min-width: 46%; }

  .features { grid-template-columns: 1fr 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 1.4rem; }

  .visit-grid { grid-template-columns: 1fr; }
  .map-wrap iframe { height: 340px; }

  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { min-width: 100%; }
  .hero-meta { flex-direction: column; gap: .6rem; }
  .features { grid-template-columns: 1fr; }
  .menu-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.8rem; }
  .about-img-small { width: 46%; bottom: -20px; }
}
