/* ============================================================
   BREW HAVEN — Premium Café Stylesheet
   Design: Luxury/Refined Editorial
   Palette: Roasted Amber × Cream × Espresso
   Fonts: Playfair Display + Cormorant Garamond + Jost
   ============================================================ */

/* ── CSS VARIABLES ─────────────────────────────────────────── */
:root {
  /* Core Palette */
  --espresso:    #1C0A00;
  --dark-roast:  #2C1810;
  --medium-roast:#5C3317;
  --amber:       #C8860A;
  --amber-light: #E6A020;
  --cream:       #F5EDD6;
  --latte:       #E8D5B0;
  --milk:        #FAF6EE;
  --white:       #FFFFFF;

  /* Semantic */
  --bg:          var(--milk);
  --bg-alt:      var(--cream);
  --bg-card:     var(--white);
  --text-primary:var(--espresso);
  --text-body:   var(--dark-roast);
  --text-muted:  #7A5C44;
  --text-light:  #A08060;
  --border:      rgba(28,10,0,0.10);
  --border-strong:rgba(28,10,0,0.20);
  --shadow-sm:   0 2px 12px rgba(28,10,0,0.08);
  --shadow-md:   0 8px 32px rgba(28,10,0,0.12);
  --shadow-lg:   0 20px 60px rgba(28,10,0,0.18);
  --shadow-xl:   0 32px 80px rgba(28,10,0,0.22);

  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-sub:     'Cormorant Garamond', Georgia, serif;
  --font-body:    'Jost', system-ui, sans-serif;

  /* Spacing */
  --section-py:  clamp(5rem, 10vw, 9rem);
  --container:   1280px;
  --radius-sm:   8px;
  --radius-md:   16px;
  --radius-lg:   24px;
  --radius-xl:   40px;

  /* Transitions */
  --ease:        cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --dur-fast:    0.2s;
  --dur-med:     0.4s;
  --dur-slow:    0.7s;
}

/* Dark Mode */
[data-theme="dark"] {
  --bg:           #120600;
  --bg-alt:       #1C0A00;
  --bg-card:      #2C1810;
  --text-primary: #F5EDD6;
  --text-body:    #E8D5B0;
  --text-muted:   #C8A882;
  --text-light:   #A08060;
  --border:       rgba(245,237,214,0.10);
  --border-strong:rgba(245,237,214,0.20);
  --shadow-sm:    0 2px 12px rgba(0,0,0,0.30);
  --shadow-md:    0 8px 32px rgba(0,0,0,0.40);
  --shadow-lg:    0 20px 60px rgba(0,0,0,0.50);
  --shadow-xl:    0 32px 80px rgba(0,0,0,0.60);
}

/* ── RESET & BASE ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--text-body);
  background: var(--bg);
  line-height: 1.7;
  overflow-x: hidden;
  transition: background var(--dur-med) var(--ease), color var(--dur-med) var(--ease);
}

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

/* ── GRAIN OVERLAY ──────────────────────────────────────────── */
.grain-overlay {
  position: fixed;
  inset: -50%;
  width: 200%;
  height: 200%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.025;
  pointer-events: none;
  z-index: 9999;
  animation: grain 0.5s steps(2) infinite;
}
[data-theme="dark"] .grain-overlay { opacity: 0.04; }

@keyframes grain {
  0%, 100% { transform: translate(0, 0); }
  10%       { transform: translate(-2%, -3%); }
  20%       { transform: translate(3%, 2%); }
  30%       { transform: translate(-1%, 4%); }
  40%       { transform: translate(4%, -1%); }
  50%       { transform: translate(-3%, 3%); }
  60%       { transform: translate(2%, -4%); }
  70%       { transform: translate(-4%, 1%); }
  80%       { transform: translate(1%, -2%); }
  90%       { transform: translate(-2%, 4%); }
}

/* ── CONTAINER ──────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 3rem);
}

/* ── TYPOGRAPHY HELPERS ─────────────────────────────────────── */
.section-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.15;
  margin-bottom: 1.25rem;
}
.section-title em {
  font-style: italic;
  color: var(--amber);
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.8;
}

.section-header {
  text-align: center;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}
.section-header .section-sub { margin: 0 auto; }

/* ── BUTTONS ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: all var(--dur-med) var(--ease);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.15);
  opacity: 0;
  transition: opacity var(--dur-fast);
}
.btn:hover::after { opacity: 1; }

.btn-primary {
  background: var(--amber);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(200,134,10,0.35);
}
.btn-primary:hover {
  background: var(--amber-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(200,134,10,0.45);
}
.btn-primary:active { transform: translateY(0); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.6);
  backdrop-filter: blur(8px);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-nav {
  background: var(--amber);
  color: var(--white);
  padding: 0.6rem 1.4rem;
  font-size: 0.85rem;
  box-shadow: 0 2px 12px rgba(200,134,10,0.3);
}
.btn-nav:hover {
  background: var(--amber-light);
  transform: translateY(-1px);
}

.btn-full { width: 100%; justify-content: center; }

/* ── NAVBAR ─────────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: all var(--dur-med) var(--ease);
}

.navbar.scrolled {
  background: rgba(245,237,214,0.88);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  padding: 0.875rem 0;
  box-shadow: var(--shadow-sm);
  border-bottom: 1px solid var(--border);
}
[data-theme="dark"] .navbar.scrolled {
  background: rgba(28,10,0,0.88);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 3rem);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
}
.logo-icon { font-size: 1.5rem; }
.logo-text {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white);
  transition: color var(--dur-med);
}
.logo-text em { font-style: italic; color: var(--amber-light); }
.navbar.scrolled .logo-text { color: var(--text-primary); }

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

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: rgba(255,255,255,0.85);
  padding: 0.5rem 0.875rem;
  border-radius: 100px;
  transition: all var(--dur-fast);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 16px;
  height: 2px;
  background: var(--amber);
  border-radius: 2px;
  transition: transform var(--dur-med) var(--ease);
}
.nav-link:hover::after,
.nav-link.active::after { transform: translateX(-50%) scaleX(1); }
.nav-link:hover { color: var(--white); }
.nav-link.active { color: var(--white); }

.navbar.scrolled .nav-link { color: var(--text-muted); }
.navbar.scrolled .nav-link:hover,
.navbar.scrolled .nav-link.active { color: var(--text-primary); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* Dark Toggle */
.dark-toggle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  transition: all var(--dur-fast);
  font-size: 1rem;
}
.dark-toggle:hover { background: rgba(255,255,255,0.25); transform: rotate(20deg); }
.navbar.scrolled .dark-toggle { background: var(--border); }
.toggle-icon { line-height: 1; }
.toggle-icon.moon { display: none; }
[data-theme="dark"] .toggle-icon.sun { display: none; }
[data-theme="dark"] .toggle-icon.moon { display: block; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--radius-sm);
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--dur-med) var(--ease);
}
.navbar.scrolled .hamburger span { background: var(--text-primary); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO ───────────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100svh;
  min-height: 680px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.05);
  animation: heroZoom 12s ease-out forwards;
}
@keyframes heroZoom {
  to { transform: scale(1); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(28,10,0,0.75) 0%,
    rgba(28,10,0,0.55) 50%,
    rgba(28,10,0,0.35) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 3rem);
  padding-top: 5rem;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber-light);
  margin-bottom: 1.25rem;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 1.5rem;
  max-width: 700px;
}
.hero-title em {
  font-style: italic;
  color: var(--amber-light);
  display: block;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.82);
  max-width: 520px;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  font-family: var(--font-sub);
  font-weight: 300;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.6);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.6; transform: scaleY(1); }
  50%       { opacity: 1; transform: scaleY(1.2); }
}

/* Hero badge */
.hero-badge {
  position: absolute;
  bottom: 3rem;
  right: clamp(1.25rem, 5vw, 3rem);
  z-index: 2;
  background: rgba(245,237,214,0.12);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(245,237,214,0.25);
  border-radius: var(--radius-md);
  padding: 1rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
}
.badge-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.badge-stars { color: var(--amber-light); font-size: 0.85rem; letter-spacing: 2px; }
.badge-label { color: rgba(255,255,255,0.7); font-size: 0.72rem; letter-spacing: 0.08em; }

/* ── REVEAL ANIMATIONS ──────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity var(--dur-slow) var(--ease), transform var(--dur-slow) var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal:nth-child(3) { transition-delay: 0.2s; }
.reveal:nth-child(4) { transition-delay: 0.3s; }
.reveal:nth-child(5) { transition-delay: 0.4s; }
.reveal:nth-child(6) { transition-delay: 0.5s; }

/* Hero reveals fire immediately */
.hero .reveal {
  animation: heroReveal 0.8s var(--ease) forwards;
  opacity: 0;
}
.hero .reveal:nth-child(1) { animation-delay: 0.3s; }
.hero .reveal:nth-child(2) { animation-delay: 0.5s; }
.hero .reveal:nth-child(3) { animation-delay: 0.7s; }
.hero .reveal:nth-child(4) { animation-delay: 0.9s; }
.hero .reveal:nth-child(5) { animation-delay: 1.1s; }

@keyframes heroReveal {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── COFFEE OF THE DAY ──────────────────────────────────────── */
.cotd {
  padding: var(--section-py) 0;
  background: var(--bg-alt);
  position: relative;
  overflow: hidden;
}
.cotd::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(200,134,10,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.cotd-inner {
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  padding: clamp(2rem, 5vw, 4rem);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.cotd-inner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--amber), var(--amber-light), var(--amber));
}

.cotd-label { margin-bottom: 1.5rem; }
.cotd-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(200,134,10,0.12);
  color: var(--amber);
  border: 1px solid rgba(200,134,10,0.25);
  border-radius: 100px;
  padding: 0.4rem 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cotd-content {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
}

.cotd-title {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}
.cotd-name {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
  line-height: 1.2;
}
.cotd-desc {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  max-width: 480px;
}
.cotd-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}
.cotd-price {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--amber);
}
.cotd-origin, .cotd-roast {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  background: var(--bg-alt);
  padding: 0.35rem 0.875rem;
  border-radius: 100px;
  border: 1px solid var(--border);
}

.cotd-image {
  position: relative;
  flex-shrink: 0;
}
.cotd-image img {
  width: clamp(200px, 25vw, 320px);
  height: clamp(200px, 25vw, 320px);
  object-fit: cover;
  border-radius: 50%;
  box-shadow: var(--shadow-xl);
  position: relative;
  z-index: 1;
}
.cotd-ring {
  position: absolute;
  inset: -16px;
  border-radius: 50%;
  border: 2px dashed rgba(200,134,10,0.3);
  animation: rotateSlow 20s linear infinite;
}
@keyframes rotateSlow { to { transform: rotate(360deg); } }

/* ── STATS ──────────────────────────────────────────────────── */
.stats {
  padding: clamp(3rem, 6vw, 5rem) 0;
  background: var(--espresso);
  position: relative;
  overflow: hidden;
}
.stats::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C8860A' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}

.stat-item {
  text-align: center;
  padding: 2rem 1rem;
  border-right: 1px solid rgba(245,237,214,0.1);
}
.stat-item:last-child { border-right: none; }

.stat-num {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--amber-light);
  line-height: 1;
  display: inline-block;
}
.stat-suffix {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--amber);
}
.stat-label {
  font-size: 0.85rem;
  color: rgba(245,237,214,0.6);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 0.5rem;
}

/* ── MENU ───────────────────────────────────────────────────── */
.menu {
  padding: var(--section-py) 0;
  background: var(--bg);
}

.menu-tabs {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
  background: var(--bg-alt);
  padding: 0.5rem;
  border-radius: 100px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid var(--border);
}

.tab-btn {
  padding: 0.7rem 1.5rem;
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: all var(--dur-med) var(--ease);
  white-space: nowrap;
}
.tab-btn:hover { color: var(--text-primary); }
.tab-btn.active {
  background: var(--amber);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(200,134,10,0.35);
}

.menu-grid {
  display: none;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.75rem;
}
.menu-grid.active { display: grid; }

.menu-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: all var(--dur-med) var(--ease);
}
.menu-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(200,134,10,0.2);
}

.menu-card-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.menu-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.menu-card:hover .menu-card-img img { transform: scale(1.08); }

.menu-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--amber);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
}
.menu-badge.new { background: var(--medium-roast); }

.menu-card-body {
  padding: 1.5rem;
}
.menu-card-body h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}
.menu-card-body p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.menu-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.price {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--amber);
}
.btn-add {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--amber);
  color: var(--white);
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--dur-fast) var(--ease-spring);
  box-shadow: 0 2px 10px rgba(200,134,10,0.3);
}
.btn-add:hover {
  background: var(--amber-light);
  transform: scale(1.15) rotate(90deg);
  box-shadow: 0 4px 16px rgba(200,134,10,0.45);
}

/* ── ABOUT ──────────────────────────────────────────────────── */
.about {
  padding: var(--section-py) 0;
  background: var(--bg-alt);
  overflow: hidden;
}

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

.about-images {
  position: relative;
}
.about-img-main {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  aspect-ratio: 4/5;
}
.about-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.about-images:hover .about-img-main img { transform: scale(1.04); }

.about-img-secondary {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  width: 45%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 4px solid var(--bg-alt);
  aspect-ratio: 1;
}
.about-img-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-years-badge {
  position: absolute;
  top: 2rem;
  right: -1.5rem;
  background: var(--amber);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.years-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
}
.years-text {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.9;
}

.about-lead {
  font-family: var(--font-sub);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--text-primary);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}
.about-content > p {
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: 2rem;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.about-feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.feature-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: rgba(200,134,10,0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-feature h4 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}
.about-feature p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── GALLERY ────────────────────────────────────────────────── */
.gallery {
  padding: var(--section-py) 0;
  background: var(--bg);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(3, 220px);
  gap: 1rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  cursor: pointer;
}
.gallery-item.large {
  grid-column: span 2;
  grid-row: span 2;
}
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.gallery-item:hover img { transform: scale(1.08); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28,10,0,0.7) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
  opacity: 0;
  transition: opacity var(--dur-med);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

/* ── REVIEWS ────────────────────────────────────────────────── */
.reviews {
  padding: var(--section-py) 0;
  background: var(--bg-alt);
  overflow: hidden;
}

.reviews-slider {
  position: relative;
  overflow: hidden;
}

.reviews-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.6s var(--ease);
}

.review-card {
  flex: 0 0 calc(33.333% - 1rem);
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: all var(--dur-med) var(--ease);
  position: relative;
}
.review-card::before {
  content: '"';
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  font-family: var(--font-display);
  font-size: 5rem;
  color: rgba(200,134,10,0.12);
  line-height: 1;
  font-weight: 800;
}
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.review-stars {
  color: var(--amber);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 1.25rem;
}

.review-card blockquote {
  font-family: var(--font-sub);
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-body);
  line-height: 1.85;
  margin-bottom: 1.75rem;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.review-author img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--amber);
}
.review-author strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
}
.review-author span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.slider-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1.5px solid var(--border-strong);
  color: var(--text-primary);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--dur-fast) var(--ease);
}
.slider-btn:hover {
  background: var(--amber);
  border-color: var(--amber);
  color: var(--white);
  transform: scale(1.1);
}

.slider-dots {
  display: flex;
  gap: 0.5rem;
}
.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border-strong);
  transition: all var(--dur-med) var(--ease);
  cursor: pointer;
}
.slider-dot.active {
  background: var(--amber);
  width: 24px;
  border-radius: 4px;
}

/* ── RESERVATION ────────────────────────────────────────────── */
.reservation {
  padding: var(--section-py) 0;
  background: var(--espresso);
  position: relative;
  overflow: hidden;
}
.reservation::before {
  content: '';
  position: absolute;
  top: -200px;
  left: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(200,134,10,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.reservation::after {
  content: '';
  position: absolute;
  bottom: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(200,134,10,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.reservation-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
  position: relative;
}

.reservation-content .section-tag { color: var(--amber-light); }
.reservation-content .section-title { color: var(--cream); }
.reservation-content > p {
  color: rgba(245,237,214,0.7);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.reservation-perks {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.reservation-perks span {
  font-size: 0.875rem;
  color: rgba(245,237,214,0.7);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Forms */
.reservation-form,
.contact-form {
  background: rgba(245,237,214,0.06);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(245,237,214,0.12);
  border-radius: var(--radius-xl);
  padding: clamp(1.75rem, 4vw, 3rem);
}

.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  backdrop-filter: none;
}
.contact-form h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1rem;
}
.form-group.full { grid-column: span 2; }

.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(245,237,214,0.6);
}
.contact-form .form-group label { color: var(--text-muted); }

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(245,237,214,0.08);
  border: 1px solid rgba(245,237,214,0.15);
  border-radius: var(--radius-sm);
  padding: 0.875rem 1rem;
  color: var(--cream);
  font-size: 0.9rem;
  transition: all var(--dur-fast);
  outline: none;
  width: 100%;
}
.contact-form .form-group input,
.contact-form .form-group select,
.contact-form .form-group textarea {
  background: var(--bg-alt);
  border-color: var(--border);
  color: var(--text-body);
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(245,237,214,0.35); }
.contact-form .form-group input::placeholder,
.contact-form .form-group textarea::placeholder { color: var(--text-light); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--amber);
  background: rgba(245,237,214,0.12);
  box-shadow: 0 0 0 3px rgba(200,134,10,0.15);
}
.contact-form .form-group input:focus,
.contact-form .form-group select:focus,
.contact-form .form-group textarea:focus {
  background: var(--bg);
}

.form-group select option { background: var(--dark-roast); color: var(--cream); }
.contact-form .form-group select option { background: var(--bg); color: var(--text-body); }

.form-group textarea { resize: vertical; min-height: 100px; }

/* ── CONTACT ────────────────────────────────────────────────── */
.contact {
  padding: var(--section-py) 0;
  background: var(--bg);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: start;
}

.contact-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  margin-bottom: 1.5rem;
}

.contact-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border);
}
.contact-item:last-child { border-bottom: none; padding-bottom: 0; }
.contact-item:first-child { padding-top: 0; }

.contact-icon {
  font-size: 1.25rem;
  width: 44px;
  height: 44px;
  background: rgba(200,134,10,0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-item h4 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.3rem;
}
.contact-item p, .contact-item a {
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.6;
}
.contact-item a:hover { color: var(--amber); }

.contact-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 100%;
  min-height: 500px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}
.contact-map iframe { display: block; }

/* ── NEWSLETTER ─────────────────────────────────────────────── */
.newsletter {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: linear-gradient(135deg, var(--dark-roast) 0%, var(--espresso) 100%);
  position: relative;
  overflow: hidden;
}
.newsletter::before {
  content: '☕';
  position: absolute;
  font-size: 20rem;
  opacity: 0.03;
  right: -2rem;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

.newsletter-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
}

.newsletter-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 0.5rem;
}
.newsletter-text h2 em { font-style: italic; color: var(--amber-light); }
.newsletter-text p {
  color: rgba(245,237,214,0.65);
  font-size: 1rem;
}

.newsletter-form {
  display: flex;
  gap: 0.75rem;
  flex: 1;
  max-width: 480px;
}
.newsletter-form input {
  flex: 1;
  background: rgba(245,237,214,0.1);
  border: 1px solid rgba(245,237,214,0.2);
  border-radius: 100px;
  padding: 0.875rem 1.5rem;
  color: var(--cream);
  font-size: 0.9rem;
  outline: none;
  transition: all var(--dur-fast);
  font-family: var(--font-body);
}
.newsletter-form input::placeholder { color: rgba(245,237,214,0.4); }
.newsletter-form input:focus {
  border-color: var(--amber);
  background: rgba(245,237,214,0.15);
  box-shadow: 0 0 0 3px rgba(200,134,10,0.2);
}

/* ── FOOTER ─────────────────────────────────────────────────── */
.footer {
  background: var(--espresso);
  padding: clamp(4rem, 8vw, 6rem) 0 0;
  border-top: 1px solid rgba(245,237,214,0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(245,237,214,0.08);
}

.footer-brand .nav-logo { margin-bottom: 1.25rem; }
.footer-brand .logo-text { color: var(--cream); }
.footer-brand > p {
  font-size: 0.875rem;
  color: rgba(245,237,214,0.55);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  max-width: 280px;
}

.social-links {
  display: flex;
  gap: 0.75rem;
}
.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(245,237,214,0.08);
  border: 1px solid rgba(245,237,214,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(245,237,214,0.6);
  transition: all var(--dur-fast);
}
.social-link svg { width: 16px; height: 16px; }
.social-link:hover {
  background: var(--amber);
  border-color: var(--amber);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber-light);
  margin-bottom: 1.25rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col li a {
  font-size: 0.875rem;
  color: rgba(245,237,214,0.55);
  transition: color var(--dur-fast);
}
.footer-col li a:hover { color: var(--cream); }

.footer-col address p {
  font-size: 0.875rem;
  color: rgba(245,237,214,0.55);
  line-height: 1.7;
  margin-bottom: 0.5rem;
}
.footer-col address a {
  color: rgba(245,237,214,0.55);
  transition: color var(--dur-fast);
}
.footer-col address a:hover { color: var(--amber-light); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(245,237,214,0.35);
}
.footer-legal {
  display: flex;
  gap: 1.5rem;
}
.footer-legal a {
  font-size: 0.8rem;
  color: rgba(245,237,214,0.35);
  transition: color var(--dur-fast);
}
.footer-legal a:hover { color: rgba(245,237,214,0.7); }

/* ── WHATSAPP FLOAT ─────────────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 900;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: all var(--dur-med) var(--ease-spring);
}
.whatsapp-float svg { width: 28px; height: 28px; }
.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 8px 30px rgba(37,211,102,0.55);
}

.whatsapp-tooltip {
  position: absolute;
  right: calc(100% + 12px);
  background: var(--espresso);
  color: var(--cream);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.4rem 0.875rem;
  border-radius: 100px;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(8px);
  transition: all var(--dur-med) var(--ease);
  pointer-events: none;
}
.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* ── TOAST ──────────────────────────────────────────────────── */
.toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--espresso);
  color: var(--cream);
  padding: 1rem 2rem;
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 500;
  box-shadow: var(--shadow-lg);
  z-index: 9000;
  transition: transform 0.4s var(--ease-spring);
  border: 1px solid rgba(245,237,214,0.15);
  white-space: nowrap;
}
.toast.show { transform: translateX(-50%) translateY(0); }

/* ── MOBILE NAV OVERLAY ─────────────────────────────────────── */
@media (max-width: 900px) {
  .nav-links {
    position: fixed;
    inset: 0;
    background: rgba(28,10,0,0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    transform: translateX(100%);
    transition: transform var(--dur-med) var(--ease);
    z-index: 999;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-link {
    font-size: 1.5rem;
    font-family: var(--font-display);
    color: var(--cream) !important;
    padding: 0.75rem 2rem;
  }
  .hamburger { display: flex; z-index: 1000; }
  .btn-nav { display: none; }
}

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: span 2; }
}

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-images { max-width: 500px; margin: 0 auto; }
  .about-img-secondary { right: 0; }
  .about-years-badge { right: 0; }

  .contact-grid { grid-template-columns: 1fr; }
  .contact-map { min-height: 350px; }

  .reservation-inner { grid-template-columns: 1fr; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(245,237,214,0.1); }
  .stat-item:nth-child(3), .stat-item:nth-child(4) { border-bottom: none; }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
  .gallery-item.large,
  .gallery-item.tall,
  .gallery-item.wide { grid-column: span 1; grid-row: span 1; }

  .review-card { flex: 0 0 calc(100% - 1rem); }

  .cotd-content { grid-template-columns: 1fr; }
  .cotd-image { display: flex; justify-content: center; }
  .cotd-image img { width: 240px; height: 240px; }

  .newsletter-inner { flex-direction: column; }
  .newsletter-form { max-width: 100%; width: 100%; }
}

@media (max-width: 640px) {
  .hero-badge { display: none; }
  .hero-cta { flex-direction: column; align-items: flex-start; }
  .hero-cta .btn { width: 100%; justify-content: center; }

  .menu-grid { grid-template-columns: 1fr; }
  .about-features { grid-template-columns: 1fr; }

  .form-row { grid-template-columns: 1fr; }
  .form-group.full { grid-column: span 1; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }

  .newsletter-form { flex-direction: column; }
  .newsletter-form .btn { width: 100%; justify-content: center; }

  .gallery-grid { grid-template-columns: 1fr; }

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

  .cotd-meta { flex-direction: column; gap: 0.75rem; }
}

/* ── SCROLLBAR ──────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--amber); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--amber-light); }

/* ── SELECTION ──────────────────────────────────────────────── */
::selection { background: rgba(200,134,10,0.25); color: var(--text-primary); }

/* ── FOCUS VISIBLE ──────────────────────────────────────────── */
:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 3px;
  border-radius: 4px;
}