/* ============ Tokens ============ */
:root {
  --bg: #f7f1e8;
  --fg: #2a1d14;
  --muted: #7a6a5d;
  --card: #fffaf2;
  --border: #e6dccd;
  --espresso: #2a1d14;
  --cream: #f7f1e8;
  --gold: #c79256;
  --gold-soft: #e8c79a;
  --shadow: 0 30px 60px -25px rgba(60, 35, 15, 0.35);
  --radius: 14px;
  --font-display: "Playfair Display", Georgia, serif;
  --font-sans: "Inter", system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--fg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section-alt { background: #efe6d6; }
.section-head { max-width: 640px; margin-bottom: 48px; }
.section-head.center { text-align: center; margin: 0 auto 56px; }

.display { font-family: var(--font-display); font-size: clamp(2.5rem, 6vw, 4.75rem); line-height: 1.05; letter-spacing: -0.02em; font-weight: 600; }
.display em { color: var(--gold); font-style: italic; }
.display-sm { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem); line-height: 1.15; font-weight: 600; letter-spacing: -0.01em; }
.eyebrow { text-transform: uppercase; letter-spacing: 0.25em; font-size: 0.72rem; color: var(--gold); margin-bottom: 16px; font-weight: 500; }
.muted { color: var(--muted); }
.lede { font-size: 1.125rem; color: var(--muted); margin-top: 20px; max-width: 28rem; }

/* ============ Buttons ============ */
.btn { display: inline-flex; align-items: center; justify-content: center; padding: 14px 24px; border-radius: 999px; font-weight: 500; font-size: 0.95rem; transition: transform .15s ease, background .2s ease, color .2s ease; border: 1px solid transparent; cursor: pointer; }
.btn-sm { padding: 9px 18px; font-size: 0.85rem; }
.btn-primary { background: var(--espresso); color: var(--cream); }
.btn-primary:hover { background: #3d2b1f; transform: translateY(-1px); }
.btn-ghost { background: transparent; border-color: rgba(42,29,20,0.25); color: var(--fg); }
.btn-ghost:hover { background: rgba(42,29,20,0.06); }

/* ============ Header ============ */
.header { position: sticky; top: 0; z-index: 40; background: rgba(247,241,232,0.85); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 16px 24px; gap: 16px; }
.brand { display: inline-flex; align-items: center; gap: 8px; }
.brand-icon { font-size: 1.1rem; }
.brand-name { font-family: var(--font-display); font-size: 1.3rem; letter-spacing: -0.01em; }
.nav { display: none; gap: 32px; font-size: 0.92rem; }
.nav a { color: var(--muted); transition: color .15s; }
.nav a:hover { color: var(--fg); }
@media (min-width: 768px) { .nav { display: flex; } }

/* ============ Hero ============ */
.hero { padding: 64px 0 100px; }
.hero-grid { display: grid; gap: 48px; align-items: center; }
@media (min-width: 860px) { .hero-grid { grid-template-columns: 1fr 1fr; gap: 64px; } .hero { padding: 96px 0 140px; } }
.hero-cta { display: flex; gap: 12px; margin-top: 32px; flex-wrap: wrap; }
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; padding-top: 32px; border-top: 1px solid var(--border); }
.stats dt { font-family: var(--font-display); font-size: 1.75rem; }
.stats dd { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted); margin-top: 4px; }

.hero-art { position: relative; }
.hero-art img { aspect-ratio: 4/5; object-fit: cover; border-radius: 18px; box-shadow: var(--shadow); width: 100%; }
.hero-art-glow { position: absolute; inset: -16px; border-radius: 28px; background: radial-gradient(circle, var(--gold-soft), transparent 70%); filter: blur(40px); opacity: .5; z-index: -1; }
.hero-badge { position: absolute; bottom: -20px; left: -20px; background: var(--card); border: 1px solid var(--border); padding: 14px 20px; border-radius: 14px; box-shadow: 0 12px 30px -10px rgba(60,35,15,0.25); display: none; }
@media (min-width: 860px) { .hero-badge { display: block; } }
.rating { font-family: var(--font-display); font-size: 1.4rem; }
.rating-sub { font-size: 0.72rem; color: var(--muted); }

/* ============ Marquee ============ */
.marquee { background: var(--espresso); color: var(--cream); padding: 18px 0; overflow: hidden; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.marquee-track { display: flex; gap: 48px; white-space: nowrap; animation: scroll 30s linear infinite; font-size: 0.78rem; letter-spacing: 0.3em; text-transform: uppercase; }
.marquee-track span { color: var(--cream); }
@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============ Menu Tabs (CSS only) ============ */
.tabs { }
.tab-input { position: absolute; opacity: 0; pointer-events: none; }
.tab-labels { display: flex; flex-wrap: wrap; gap: 8px; border-bottom: 1px solid var(--border); margin-bottom: 32px; padding-bottom: 0; }
.tab-label { padding: 12px 20px; border-radius: 999px 999px 0 0; cursor: pointer; font-size: 0.92rem; color: var(--muted); transition: all .15s; font-weight: 500; }
.tab-label:hover { color: var(--fg); }

.tab-panel { display: none; }

#tab-espresso:checked ~ .tab-labels label[for="tab-espresso"],
#tab-milk:checked ~ .tab-labels label[for="tab-milk"],
#tab-cold:checked ~ .tab-labels label[for="tab-cold"],
#tab-tea:checked ~ .tab-labels label[for="tab-tea"], 
#tab-juice:checked ~ .tab-labels label[for="tab-juice"],
#tab-smooth:checked ~ .tab-labels label[for="tab-smooth"]{
  background: var(--espresso); color: var(--cream);
}

#tab-espresso:checked ~ #panel-espresso,
#tab-milk:checked ~ #panel-milk,
#tab-cold:checked ~ #panel-cold,
#tab-tea:checked ~ #panel-tea,
#tab-juice:checked ~ #panel-juice,
#tab-smooth:checked ~ #panel-smooth{
  display: block;
  animation: fade .25s ease;
}
@keyframes fade { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }

.menu-list { list-style: none; display: flex; flex-direction: column; gap: 4px; }
.menu-row { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 20px 0; border-bottom: 1px dashed var(--border); }
.menu-row:last-child { border-bottom: none; }
.menu-row h3 { font-family: var(--font-display); font-size: 1.3rem; font-weight: 600; }
.menu-row p { color: var(--muted); font-size: 0.92rem; margin-top: 4px; }
.menu-end { display: flex; align-items: center; gap: 16px; flex-shrink: 0; }
.price { font-family: var(--font-display); font-size: 1.2rem; color: var(--gold); }

/* ============ About ============ */
.about-grid { display: grid; gap: 48px; align-items: center; }
@media (min-width: 768px) { .about-grid { grid-template-columns: 1fr 1fr; gap: 64px; } }
.about-grid img { aspect-ratio: 4/5; object-fit: cover; border-radius: 18px; box-shadow: var(--shadow); }
.about-grid p { margin-top: 20px; }
blockquote { font-family: var(--font-display); font-style: italic; font-size: 1.2rem; line-height: 1.4; margin-top: 32px; padding-left: 20px; border-left: 3px solid var(--gold); color: rgba(42,29,20,0.85); }
blockquote footer { font-size: 0.7rem; font-style: normal; text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted); margin-top: 8px; }

/* ============ Visit ============ */
.info-grid { display: grid; gap: 20px; }
@media (min-width: 768px) { .info-grid { grid-template-columns: repeat(3, 1fr); } }
.info-card { background: var(--card); border: 1px solid var(--border); padding: 32px; border-radius: 18px; }
.info-icon { width: 44px; height: 44px; border-radius: 50%; background: rgba(199,146,86,0.15); color: var(--gold); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; margin-bottom: 16px; }
.info-card h3 { font-family: var(--font-display); font-size: 1.3rem; margin-bottom: 8px; }
.info-card p { color: var(--muted); font-size: 0.92rem; }

/* ============ Footer ============ */
.footer { background: var(--espresso); color: var(--cream); padding: 48px 0; }
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 16px; text-align: center; }
@media (min-width: 768px) { .footer-inner { flex-direction: row; justify-content: space-between; } }
.footer-copy { font-size: 0.85rem; opacity: 0.7; }
.footer-link { font-size: 0.85rem; opacity: 0.7; transition: opacity .15s; }
.footer-link:hover { opacity: 1; }

/* ============ Floating WhatsApp ============ */
.fab { position: fixed; bottom: 24px; right: 24px; width: 56px; height: 56px; background: #25D366; color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; box-shadow: 0 10px 25px rgba(37,211,102,0.4); transition: transform .15s; z-index: 50; }
.fab:hover { transform: scale(1.08); background: #1ebe57; }
