/* =====================================================
   Casa Du Vovô — Static Site
   style.css — Design system, layout, components
   ===================================================== */

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img,
picture,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

input,
select,
textarea {
  font: inherit;
}

/* ---------- CSS Variables / Color System ---------- */
:root {
  /* Coffee ramp */
  --coffee-50: #f8f4ec;
  --coffee-100: #f0e8d8;
  --coffee-200: #e0d0b8;
  --coffee-300: #c8a96a;
  --coffee-400: #a87b4a;
  --coffee-500: #7b5236;
  --coffee-600: #5d3d2a;
  --coffee-700: #4e342e;
  --coffee-800: #3a2620;
  --coffee-900: #2a1b16;

  /* Cream ramp */
  --cream-50: #fff8f2;
  --cream-100: #fff1e6;
  --cream-200: #fce4d0;

  /* Moss ramp */
  --moss-400: #7a8f4a;
  --moss-500: #556b2f;
  --moss-600: #445624;
  --moss-700: #33421b;

  /* Gold ramp */
  --gold-300: #ddc59a;
  --gold-400: #c8a96a;
  --gold-500: #b8945a;
  --gold-600: #a07f4a;

  /* Semantic */
  --bg: var(--cream-50);
  --bg-alt: var(--coffee-50);
  --text: var(--coffee-700);
  --text-muted: var(--coffee-500);
  --heading: var(--coffee-700);
  --card-bg: var(--cream-50);
  --card-border: rgba(240, 232, 216, 0.7);
  --card-shadow: 0 2px 24px -12px rgba(78, 52, 46, 0.18);
  --input-border: rgba(224, 208, 184, 0.7);
  --input-bg: rgba(255, 248, 242, 0.6);
  --input-color: var(--coffee-700);
  --input-placeholder: rgba(168, 123, 74, 0.6);
  --input-focus-border: var(--gold-400);
  --input-focus-bg: var(--cream-50);
  --input-focus-shadow: rgba(200, 169, 106, 0.15);

  /* Typography */
  --font-serif: "Cormorant Garamond", Georgia, serif;
  --font-sans: "Inter", system-ui, sans-serif;

  /* Radius */
  --r-2xl: 1.25rem;
  --r-3xl: 1.75rem;

  /* Shadows */
  --shadow-soft: 0 2px 24px -12px rgba(78, 52, 46, 0.18);
  --shadow-md: 0 4px 20px -8px rgba(78, 52, 46, 0.15);
  --shadow-xl: 0 20px 50px -20px rgba(78, 52, 46, 0.25);

  /* Transitions */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Dark Mode ---------- */
.dark {
  --bg: var(--coffee-900);
  --bg-alt: rgba(58, 38, 32, 0.4);
  --text: var(--coffee-100);
  --text-muted: var(--coffee-200);
  --heading: var(--cream-50);
  --card-bg: rgba(58, 38, 32, 0.6);
  --card-border: rgba(93, 61, 42, 0.6);
  --card-shadow: 0 2px 24px -12px rgba(0, 0, 0, 0.5);
  --input-border: rgba(93, 61, 42, 0.7);
  --input-bg: rgba(58, 38, 32, 0.5);
  --input-color: var(--cream-50);
  --input-placeholder: rgba(200, 169, 106, 0.5);
  --input-focus-bg: rgba(58, 38, 32, 0.8);
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.5;
  overflow-x: hidden;
  transition: background 0.4s ease, color 0.4s ease;
}

::selection {
  background: rgba(200, 169, 106, 0.3);
  color: var(--coffee-800);
}

.dark ::selection {
  background: rgba(200, 169, 106, 0.4);
  color: var(--coffee-50);
}

h1, h2, h3, h4 {
  font-family: var(--font-serif);
}

/* ---------- Layout Utilities ---------- */
.container {
  width: 100%;
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.container--narrow {
  max-width: 48rem;
}

.section {
  padding: 5rem 0;
}

.bg-grain {
  background-image:
    radial-gradient(circle at 25% 15%, rgba(200, 169, 106, 0.06), transparent 45%),
    radial-gradient(circle at 80% 85%, rgba(85, 107, 47, 0.05), transparent 45%);
}

/* ---------- Section Head ---------- */
.section-head {
  max-width: 42rem;
  margin: 0 auto;
  text-align: center;
}

.section-head__text {
  margin-top: 1rem;
  font-size: 1rem;
  color: var(--text-muted);
}

.dark .section-head__text {
  color: var(--coffee-200);
}

/* ---------- Eyebrow ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--gold-500);
}

.eyebrow--center {
  justify-content: center;
}

.eyebrow--gold-light {
  color: var(--gold-300);
}

.eyebrow__line {
  display: block;
  width: 2rem;
  height: 1px;
  background: var(--gold-400);
}

.eyebrow__line--light {
  background: var(--gold-300);
}

/* ---------- Headings ---------- */
.heading-2 {
  margin-top: 1rem;
  font-family: var(--font-serif);
  font-size: clamp(1.875rem, 5vw, 3.4rem);
  font-weight: 600;
  line-height: 1.1;
  color: var(--heading);
}

.dark .heading-2 {
  color: var(--cream-50);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 9999px;
  padding: 0.875rem 1.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  transition: all 0.3s var(--ease);
  white-space: nowrap;
}

.btn-lg {
  padding: 1rem 2rem;
}

.btn-block {
  width: 100%;
}

.btn-primary {
  background: var(--coffee-700);
  color: var(--cream-50);
  box-shadow: 0 8px 20px -8px rgba(78, 52, 46, 0.2);
}

.btn-primary:hover {
  background: var(--coffee-600);
  box-shadow: 0 12px 28px -8px rgba(78, 52, 46, 0.3);
  transform: translateY(-2px);
}

.btn-gold {
  background: var(--gold-400);
  color: var(--coffee-800);
  box-shadow: 0 8px 20px -8px rgba(200, 169, 106, 0.3);
}

.btn-gold:hover {
  background: var(--gold-500);
  box-shadow: 0 12px 28px -8px rgba(200, 169, 106, 0.4);
  transform: translateY(-2px);
}

.btn-outline {
  border: 1px solid var(--coffee-200);
  background: rgba(255, 248, 242, 0.4);
  color: var(--coffee-700);
  backdrop-filter: blur(4px);
}

.btn-outline:hover {
  border-color: var(--gold-400);
  background: var(--cream-50);
  color: var(--coffee-800);
  transform: translateY(-2px);
}

.dark .btn-outline {
  border-color: rgba(93, 61, 42, 0.6);
  background: rgba(58, 38, 32, 0.4);
  color: var(--cream-50);
}

.dark .btn-outline:hover {
  border-color: var(--gold-400);
  background: var(--coffee-700);
}

.btn-outline-light {
  border: 1px solid rgba(255, 248, 242, 0.3);
  background: rgba(255, 248, 242, 0.1);
  color: var(--cream-50);
  backdrop-filter: blur(4px);
}

.btn-outline-light:hover {
  border-color: var(--gold-300);
  background: rgba(255, 248, 242, 0.2);
  transform: translateY(-2px);
}

/* ---------- Icons ---------- */
.icon {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
}

.icon-sm {
  width: 1rem;
  height: 1rem;
}

.icon-lg {
  width: 1.75rem;
  height: 1.75rem;
}

/* ---------- Card Surface ---------- */
.card {
  border-radius: var(--r-3xl);
  border: 1px solid var(--card-border);
  background: var(--card-bg);
  box-shadow: var(--card-shadow);
  transition: all 0.5s var(--ease);
}

/* =====================================================
   NAVBAR
   ===================================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: all 0.5s var(--ease);
}

.navbar--scrolled {
  background: rgba(255, 248, 242, 0.85);
  backdrop-filter: blur(16px);
  box-shadow: 0 2px 30px -12px rgba(78, 52, 46, 0.25);
}

.dark .navbar--scrolled {
  background: rgba(42, 27, 22, 0.85);
}

.navbar__inner {
  max-width: 80rem;
  margin: 0 auto;
  height: 5rem;
  padding: 0 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.navbar__logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.navbar__logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  background: var(--gold-400);
  color: var(--coffee-800);
  transition: transform 0.3s var(--ease);
}

.navbar__logo-text {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--cream-50);
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}

.navbar__logo:hover .navbar__logo-icon {
  transform: scale(1.05);
}

/* Links */
.navbar__links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.navbar__link {
  position: relative;
  border-radius: 9999px;
  padding: 0.5rem 0.875rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 248, 242, 0.9);
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
  transition: color 0.3s;
}

.navbar__link:hover {
  color: var(--cream-50);
}

.navbar--scrolled .navbar__link {
  color: var(--coffee-600);
  text-shadow: none;
}

.navbar--scrolled .navbar__link:hover {
  color: var(--coffee-800);
}

.dark .navbar--scrolled .navbar__link {
  color: var(--coffee-100);
}

.dark .navbar--scrolled .navbar__link:hover {
  color: var(--cream-50);
}

/* Actions */
.navbar__actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.navbar__icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 248, 242, 0.3);
  color: var(--cream-50);
  transition: all 0.3s;
}

.navbar__icon-btn:hover {
  border-color: var(--gold-300);
  color: var(--gold-300);
}

.navbar--scrolled .navbar__icon-btn {
  border-color: rgba(224, 208, 184, 0.6);
  color: var(--coffee-600);
}

.navbar--scrolled .navbar__icon-btn:hover {
  border-color: var(--gold-400);
  color: var(--gold-500);
}

.dark .navbar--scrolled .navbar__icon-btn {
  border-color: rgba(93, 61, 42, 0.6);
  color: var(--cream-50);
}

.navbar__reserve {
  display: none;
}

.navbar__menu-btn {
  display: none;
}

/* Theme toggle icons */
.icon-sun {
  display: none;
}

.dark .icon-moon {
  display: none;
}

.dark .icon-sun {
  display: block;
}

/* Menu toggle */
.icon-close {
  display: none;
}

.navbar__menu-btn.open .icon-menu {
  display: none;
}

.navbar__menu-btn.open .icon-close {
  display: block;
}

/* Mobile Menu */
.navbar__mobile {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease), opacity 0.5s var(--ease);
}

.navbar__mobile.open {
  max-height: 80vh;
  opacity: 1;
}

.navbar__mobile-inner {
  padding: 0 1.25rem 1.5rem;
  background: rgba(255, 248, 242, 0.95);
  backdrop-filter: blur(16px);
}

.dark .navbar__mobile-inner {
  background: rgba(42, 27, 22, 0.95);
}

.navbar__mobile-link {
  display: block;
  border-radius: 1rem;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--coffee-600);
  transition: background 0.3s;
}

.navbar__mobile-link:hover {
  background: var(--coffee-50);
}

.dark .navbar__mobile-link {
  color: var(--cream-50);
}

.dark .navbar__mobile-link:hover {
  background: var(--coffee-800);
}

.navbar__mobile-reserve {
  margin-top: 0.5rem;
  width: 100%;
}

/* =====================================================
   HERO
   ===================================================== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url("https://i.imgur.com/kD4EfnNh.jpg");
  background-size: cover;
  background-position: center;
  transform: scale(1.15);
  transition: transform 2s var(--ease);
}

.hero.loaded .hero__bg {
  transform: scale(1.05);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(42, 27, 22, 0.45), rgba(42, 27, 22, 0.4), rgba(42, 27, 22, 0.55));
}

.hero__overlay-bottom {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(42, 27, 22, 0.5), transparent, rgba(42, 27, 22, 0.3));
}

.hero__content {
  position: relative;
  z-index: 10;
  max-width: 48rem;
  margin: 0 auto;
  padding: 0 1.5rem;
  text-align: center;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 9999px;
  border: 1px solid rgba(221, 197, 154, 0.4);
  background: rgba(255, 248, 242, 0.1);
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--gold-300);
  backdrop-filter: blur(4px);
}

.hero__badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 9999px;
  background: var(--gold-300);
}

.hero__title {
  margin-top: 1.75rem;
  font-family: var(--font-serif);
  font-size: clamp(2.25rem, 6vw, 4.5rem);
  font-weight: 600;
  line-height: 1.08;
  color: var(--cream-50);
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
  text-wrap: balance;
}

.hero__title-accent {
  display: block;
  font-style: italic;
  color: var(--gold-300);
}

.hero__text {
  margin: 1.5rem auto 0;
  max-width: 42rem;
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: rgba(255, 248, 242, 0.9);
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
  line-height: 1.6;
}

.hero__buttons {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.hero__buttons .btn {
  width: 100%;
  max-width: 18rem;
  min-height: 3.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.hero__buttons .btn .icon-arrow {
  transition: transform 0.3s;
}

.hero__buttons .btn:hover .icon-arrow {
  transform: translateX(4px);
}

.hero__scroll {
  position: absolute;
  bottom: 1.75rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  color: rgba(255, 248, 242, 0.7);
  transition: color 0.3s;
}

.hero__scroll:hover {
  color: var(--gold-300);
}

.hero__scroll-text {
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.3em;
}

/* =====================================================
   ABOUT
   ===================================================== */
.about__grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

.about__image-wrap {
  position: relative;
}

.about__decor {
  position: absolute;
  width: 6rem;
  height: 6rem;
  border-radius: var(--r-3xl);
}

.about__decor-tl {
  top: -1rem;
  left: -1rem;
  border: 1px solid rgba(221, 197, 154, 0.4);
}

.about__decor-br {
  bottom: -1rem;
  right: -1rem;
  background: rgba(85, 107, 47, 0.1);
}

.about__image-box {
  overflow: hidden;
  border-radius: var(--r-3xl);
  box-shadow: 0 25px 50px -20px rgba(78, 52, 46, 0.2);
}

.about__img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.about__image-box:hover .about__img {
  transform: scale(1.05);
}

.about__rating-card {
  position: absolute;
  bottom: -1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  border-radius: 1rem;
  border: 1px solid var(--card-border);
  background: rgba(255, 248, 242, 0.95);
  padding: 1rem 1.5rem;
  box-shadow: var(--shadow-xl);
  backdrop-filter: blur(8px);
}

.dark .about__rating-card {
  border-color: rgba(93, 61, 42, 0.6);
  background: rgba(58, 38, 32, 0.95);
}

.about__rating-value {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--coffee-700);
}

.dark .about__rating-value {
  color: var(--cream-50);
}

.about__rating-star {
  color: var(--gold-400);
}

.about__rating-label {
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

.dark .about__rating-label {
  color: var(--coffee-200);
}

.about__paragraphs {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--coffee-600);
}

.dark .about__paragraphs {
  color: var(--coffee-100);
}

.about__points {
  margin-top: 2rem;
  display: grid;
  gap: 0.75rem;
}

.about__points li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--coffee-600);
}

.dark .about__points li {
  color: var(--coffee-100);
}

.about__check {
  margin-top: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 9999px;
  background: rgba(85, 107, 47, 0.15);
  color: var(--moss-500);
  flex-shrink: 0;
}

/* =====================================================
   HIGHLIGHTS
   ===================================================== */
.highlights {
  background: var(--bg-alt);
}

.dark .highlights {
  background: rgba(58, 38, 32, 0.4);
}

.highlights__grid {
  margin-top: 3.5rem;
  display: grid;
  gap: 1.25rem;
}

.highlight-card {
  border-radius: var(--r-3xl);
  border: 1px solid var(--card-border);
  background: var(--card-bg);
  box-shadow: var(--card-shadow);
  padding: 1.75rem;
  transition: all 0.5s var(--ease);
}

.highlight-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.highlight-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: var(--r-2xl);
  background: linear-gradient(135deg, var(--coffee-700), var(--coffee-600));
  color: var(--cream-50);
  box-shadow: 0 8px 20px -8px rgba(78, 52, 46, 0.2);
  transition: transform 0.5s var(--ease);
}

.highlight-card:hover .highlight-card__icon {
  transform: scale(1.1) rotate(3deg);
}

.dark .highlight-card__icon {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  color: var(--coffee-800);
}

.highlight-card__title {
  margin-top: 1.25rem;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--heading);
}

.dark .highlight-card__title {
  color: var(--cream-50);
}

.highlight-card__desc {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--text-muted);
}

.dark .highlight-card__desc {
  color: var(--coffee-200);
}

/* =====================================================
   STATS
   ===================================================== */
.stats {
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
}

.stats__bg {
  position: absolute;
  inset: 0;
  background-image: url("https://i.imgur.com/PHbHOj9h.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.stats__overlay {
  position: absolute;
  inset: 0;
  background: rgba(42, 27, 22, 0.5);
}

.stats__overlay-side {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(42, 27, 22, 0.4), transparent, rgba(42, 27, 22, 0.4));
}

.stats__inner {
  position: relative;
  z-index: 10;
}

.stats__head {
  text-align: center;
}

.stats__title {
  margin-top: 1rem;
  font-family: var(--font-serif);
  font-size: clamp(1.875rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--cream-50);
}

.stats__grid {
  margin-top: 3.5rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.stat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.stat-card__value {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 6vw, 3.75rem);
  font-weight: 600;
  color: var(--cream-50);
}

.stat-card__suffix {
  color: var(--gold-300);
}

.stat-card__label {
  margin-top: 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: rgba(255, 248, 242, 0.8);
}

.stat-card__stars {
  font-size: 1.5rem;
  color: var(--gold-400);
}

.stat-card__star {
  display: inline-block;
  opacity: 0;
  animation: scaleIn 0.7s var(--ease) forwards;
}

/* =====================================================
   GALLERY
   ===================================================== */
.gallery__grid {
  margin-top: 3.5rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  grid-auto-rows: 200px;
}

.gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-2xl);
  box-shadow: var(--shadow-md);
  cursor: pointer;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease), filter 0.5s var(--ease);
}

.gallery__item:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.35);
}

.gallery__item:hover img {
  transform: scale(1.08);
  filter: brightness(1.1);
}

/* Gallery span classes (desktop) */
.gallery__item--lg {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery__item--wide {
  grid-column: span 2;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(42, 27, 22, 0.95);
  backdrop-filter: blur(4px);
}

.lightbox.open {
  display: flex;
}

.lightbox__close,
.lightbox__prev,
.lightbox__next {
  position: absolute;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 248, 242, 0.3);
  background: rgba(255, 248, 242, 0.1);
  color: var(--cream-50);
  transition: background 0.3s;
}

.lightbox__close:hover,
.lightbox__prev:hover,
.lightbox__next:hover {
  background: rgba(255, 248, 242, 0.2);
}

.lightbox__close {
  top: 1rem;
  right: 1rem;
}

.lightbox__prev {
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox__next {
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox__figure {
  max-height: 90vh;
  max-width: 64rem;
  padding: 0 4rem;
}

.lightbox__img {
  max-height: 85vh;
  width: auto;
  border-radius: var(--r-2xl);
  object-fit: contain;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.lightbox__caption {
  display: none;
}

/* =====================================================
   REVIEWS
   ===================================================== */
.reviews {
  background: var(--bg-alt);
}

.dark .reviews {
  background: rgba(58, 38, 32, 0.4);
}

.reviews__rating-badge {
  margin-top: 1.25rem;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  border-radius: 9999px;
  border: 1px solid var(--card-border);
  background: var(--cream-50);
  padding: 0.625rem 1.25rem;
  box-shadow: var(--shadow-soft);
}

.dark .reviews__rating-badge {
  border-color: rgba(93, 61, 42, 0.6);
  background: var(--coffee-800);
}

.reviews__rating-value {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--heading);
}

.dark .reviews__rating-value {
  color: var(--cream-50);
}

.reviews__rating-count {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-muted);
}

.dark .reviews__rating-count {
  color: var(--coffee-200);
}

.reviews__grid {
  margin-top: 3.5rem;
  display: grid;
  gap: 1.25rem;
}

.review-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--r-3xl);
  border: 1px solid var(--card-border);
  background: var(--card-bg);
  box-shadow: var(--card-shadow);
  padding: 1.75rem;
  transition: all 0.5s var(--ease);
}

.review-card:hover {
  transform: translateY(-6px);
}

.review-card__quote {
  width: 2rem;
  height: 2rem;
  color: rgba(200, 169, 106, 0.4);
}

.review-card__text {
  margin-top: 1rem;
  flex: 1;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--coffee-600);
}

.dark .review-card__text {
  color: var(--coffee-100);
}

.review-card__footer {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--card-border);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.dark .review-card__footer {
  border-color: rgba(93, 61, 42, 0.5);
}

.review-card__avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  background: var(--coffee-700);
  font-family: var(--font-serif);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--cream-50);
}

.dark .review-card__avatar {
  background: var(--gold-400);
  color: var(--coffee-800);
}

.review-card__name {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--heading);
}

.dark .review-card__name {
  color: var(--cream-50);
}

/* Stars */
.stars {
  display: flex;
  gap: 2px;
}

.stars .star {
  width: 1rem;
  height: 1rem;
  color: var(--coffee-200);
}

.dark .stars .star {
  color: var(--coffee-600);
}

.stars .star--filled {
  fill: var(--gold-400);
  color: var(--gold-400);
}

.stars--lg .star {
  width: 1rem;
  height: 1rem;
}

/* =====================================================
   RESERVATION
   ===================================================== */
.reservation {
  position: relative;
  overflow: hidden;
}

.reservation__bg-grain {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 25% 15%, rgba(200, 169, 106, 0.06), transparent 45%),
    radial-gradient(circle at 80% 85%, rgba(85, 107, 47, 0.05), transparent 45%);
  opacity: 0.6;
}

.reservation__inner {
  position: relative;
  z-index: 10;
}

.reservation__cta {
  max-width: 36rem;
  margin: 0 auto;
  text-align: center;
}

.reservation__cta-text {
  margin: 1.25rem auto 2.5rem;
  max-width: 32rem;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--coffee-600);
}

.dark .reservation__cta-text {
  color: var(--coffee-100);
}

.eyebrow--center {
  justify-content: center;
}

.eyebrow--center .eyebrow__line:last-child {
  display: inline-block;
}

/* Spinner */
.icon-spinner {
  display: none;
  animation: spin 1s linear infinite;
}

.btn--loading .icon-spinner {
  display: block;
}

.btn--loading .icon:not(.icon-spinner) {
  display: none;
}

.btn--loading {
  opacity: 0.7;
  cursor: not-allowed;
}

/* =====================================================
   CONTACT
   ===================================================== */
.contact__grid {
  margin-top: 3.5rem;
  display: grid;
  gap: 1.5rem;
}

.contact__info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact__row {
  display: grid;
  gap: 1rem;
}

.contact__card {
  padding: 1.5rem;
}

.contact__card-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.contact__card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.75rem;
  background: var(--coffee-700);
  color: var(--cream-50);
  flex-shrink: 0;
}

.dark .contact__card-icon {
  background: var(--gold-400);
  color: var(--coffee-800);
}

.contact__card-title {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--heading);
}

.dark .contact__card-title {
  color: var(--cream-50);
}

.contact__card-body {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--coffee-600);
}

.dark .contact__card-body {
  color: var(--coffee-100);
}

.contact__link {
  transition: color 0.3s;
}

.contact__link:hover {
  color: var(--gold-500);
}

.contact__hours {
  gap: 0.5rem;
}

.contact__hour-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.contact__hour-time {
  font-weight: 500;
  color: var(--heading);
}

.dark .contact__hour-time {
  color: var(--cream-50);
}

.contact__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding-top: 0.5rem;
}

.contact__image-card {
  overflow: hidden;
  padding: 0;
}

.contact__image {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

/* =====================================================
   FAQ
   ===================================================== */
.faq {
  background: var(--bg-alt);
}

.dark .faq {
  background: rgba(58, 38, 32, 0.4);
}

.faq__list {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  border-radius: var(--r-3xl);
  border: 1px solid var(--card-border);
  background: var(--card-bg);
  box-shadow: var(--card-shadow);
  overflow: hidden;
}

.faq-item__btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem;
  text-align: left;
}

.faq-item__question {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--heading);
}

.dark .faq-item__question {
  color: var(--cream-50);
}

.faq-item__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 9999px;
  background: var(--coffee-50);
  color: var(--coffee-600);
  flex-shrink: 0;
  transition: all 0.3s;
}

.dark .faq-item__icon {
  background: var(--coffee-700);
  color: var(--cream-50);
}

.faq-item.open .faq-item__icon {
  transform: rotate(180deg);
  background: var(--gold-400);
  color: var(--coffee-800);
}

.dark .faq-item.open .faq-item__icon {
  background: var(--gold-400);
  color: var(--coffee-800);
}

.faq-item__answer-wrap {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  overflow: hidden;
  transition: all 0.5s var(--ease);
}

.faq-item.open .faq-item__answer-wrap {
  grid-template-rows: 1fr;
  opacity: 1;
}

.faq-item__answer {
  overflow: hidden;
  padding: 0 1.5rem 1.5rem;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--coffee-600);
}

.dark .faq-item__answer {
  color: var(--coffee-100);
}

/* =====================================================
   FOOTER
   ===================================================== */
.footer {
  position: relative;
  overflow: hidden;
  background: var(--coffee-800);
  color: var(--cream-50);
}

.footer__bg-grain {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 25% 15%, rgba(200, 169, 106, 0.06), transparent 45%),
    radial-gradient(circle at 80% 85%, rgba(85, 107, 47, 0.05), transparent 45%);
  opacity: 0.4;
}

.footer__inner {
  position: relative;
  z-index: 10;
  padding: 6rem 1.25rem 4rem;
}

.footer__grid {
  display: grid;
  gap: 2.5rem;
  align-items: start;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.footer__logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  background: var(--gold-400);
  color: var(--coffee-800);
}

.footer__logo-text {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
}

.footer__desc {
  margin-top: 1.25rem;
  max-width: 24rem;
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(255, 248, 242, 0.7);
}

.footer__social {
  margin-top: 1.5rem;
  display: flex;
  gap: 0.75rem;
}

.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 248, 242, 0.2);
  transition: all 0.3s;
}

.footer__social-link:hover {
  border-color: var(--gold-400);
  background: rgba(200, 169, 106, 0.1);
  color: var(--gold-300);
}

.footer__heading {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--gold-300);
}

.footer__nav {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.footer__nav a {
  font-size: 0.875rem;
  color: rgba(255, 248, 242, 0.7);
  transition: color 0.3s;
}

.footer__nav a:hover {
  color: var(--gold-300);
}

.footer__contact {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer__contact li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: rgba(255, 248, 242, 0.7);
}

.footer__contact-icon {
  color: var(--gold-400);
  flex-shrink: 0;
}

.footer__contact a {
  transition: color 0.3s;
}

.footer__contact a:hover {
  color: var(--gold-300);
}

.footer__bottom {
  margin-top: 3.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 248, 242, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer__bottom p {
  font-size: 0.75rem;
  color: rgba(255, 248, 242, 0.5);
}

.footer__heart {
  color: var(--gold-400);
}

/* =====================================================
   FLOATING BUTTONS
   ===================================================== */
.floating-buttons {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  z-index: 50;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.75rem;
}

.floating-buttons__top {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 9999px;
  background: var(--coffee-700);
  color: var(--cream-50);
  box-shadow: var(--shadow-xl);
  transition: all 0.5s var(--ease);
  opacity: 0;
  transform: translateY(1rem);
  pointer-events: none;
}

.floating-buttons__top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.floating-buttons__top:hover {
  background: var(--coffee-600);
  transform: translateY(-2px);
}

.dark .floating-buttons__top {
  background: var(--gold-400);
  color: var(--coffee-800);
}

.floating-buttons__whatsapp {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 9999px;
  background: #25d366;
  color: #fff;
  box-shadow: 0 8px 25px -8px rgba(37, 211, 102, 0.3);
  transition: all 0.3s var(--ease);
}

.floating-buttons__whatsapp:hover {
  transform: scale(1.05) translateY(-2px);
}

.floating-buttons__whatsapp-tooltip {
  position: absolute;
  right: 100%;
  margin-right: 0.75rem;
  white-space: nowrap;
  border-radius: 9999px;
  background: var(--coffee-800);
  padding: 0.375rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--cream-50);
  opacity: 0;
  transition: opacity 0.3s;
}

.floating-buttons__whatsapp:hover .floating-buttons__whatsapp-tooltip {
  opacity: 1;
}

/* =====================================================
   TEXT SHADOW UTILITY
   ===================================================== */
.text-shadow-soft {
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}
