:root {
  --cream: #faf7f2;
  --warm-white: #fff9f4;
  --brown: #3b2314;
  --brown-light: #6b3a2a;
  --amber: #c8860a;
  --amber-light: #f5a623;
  --stone: #8c7b6e;
  --stone-light: #d4c4b8;
  --text: #1a1109;
  --text-muted: #7a6a5a;
  --radius: 20px;
  --radius-sm: 12px;
}

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

body {
  font-family: 'Playfair Display', 'Georgia', serif;
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
}

/* ── NAV ── */
.cafe-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 60px;
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(139, 123, 110, 0.15);
  transition: all 0.3s;
}

.cafe-nav.scrolled { padding: 12px 60px; box-shadow: 0 4px 20px rgba(59,35,20,0.08); }

.cafe-logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brown);
  text-decoration: none;
  letter-spacing: 0.05em;
}

.cafe-logo span { color: var(--amber); }

.cafe-nav-links { display: flex; gap: 36px; list-style: none; align-items: center; }
.cafe-nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: color 0.3s;
}
.cafe-nav-links a:hover, .cafe-nav-links a.active { color: var(--brown); }

.cafe-nav-links .nav-reserve {
  background: var(--brown);
  color: #fff;
  padding: 10px 22px;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s;
}
.cafe-nav-links .nav-reserve:hover { background: var(--brown-light); color: #fff; }

.cafe-back {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  color: var(--amber);
  text-decoration: none;
  font-weight: 600;
}

/* ── HERO ── */
.cafe-hero {
  position: relative;
  height: 100vh;
  min-height: 650px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.cafe-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1554118811-1e0d58224f24?w=1800&q=85');
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 8s ease;
}

.cafe-hero:hover .cafe-hero-bg { transform: scale(1.0); }

.cafe-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(26,17,9,0.35) 0%, rgba(26,17,9,0.6) 100%);
}

.cafe-hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 0 24px;
}

.cafe-hero-tag {
  display: inline-block;
  border: 1px solid rgba(245,166,35,0.6);
  color: var(--amber-light);
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 24px;
}

.cafe-hero h1 {
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.05;
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.cafe-hero p {
  color: rgba(255,255,255,0.85);
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 520px;
  margin-inline: auto;
}

.cafe-hero-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.btn-hero-primary {
  background: var(--amber);
  color: #fff;
  padding: 16px 36px;
  border-radius: 50px;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s;
}
.btn-hero-primary:hover { background: var(--amber-light); transform: translateY(-2px); }

.btn-hero-secondary {
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.35);
  padding: 16px 36px;
  border-radius: 50px;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s;
}
.btn-hero-secondary:hover { background: rgba(255,255,255,0.22); }

.cafe-hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.6);
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}
.cafe-hero-scroll::after {
  content: '';
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.4);
  display: block;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ── SECTION WRAPPER ── */
.cafe-section { padding: 100px 0; }
.cafe-container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }

.section-tag {
  display: inline-block;
  background: rgba(200, 134, 10, 0.1);
  color: var(--amber);
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--brown);
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-desc {
  color: var(--text-muted);
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  line-height: 1.75;
  max-width: 560px;
}

/* ── SPECIALS BANNER ── */
.specials { background: var(--brown); padding: 30px 0; overflow: hidden; }
.specials-ticker {
  display: flex;
  gap: 60px;
  animation: ticker 20s linear infinite;
  white-space: nowrap;
}
.specials-ticker span {
  color: var(--amber-light);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}
.specials-ticker span::after { content: '✦'; margin-left: 60px; color: rgba(245,166,35,0.4); }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── HIGHLIGHTS ── */
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.highlight-card {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  aspect-ratio: 3/4;
  cursor: pointer;
}

.highlight-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.highlight-card:hover img { transform: scale(1.07); }

.highlight-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,17,9,0.75) 0%, transparent 50%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  transition: all 0.3s;
}

.highlight-tag {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber-light);
  margin-bottom: 8px;
}

.highlight-title { color: #fff; font-size: 1.3rem; font-weight: 700; line-height: 1.2; }

.highlight-card:hover .highlight-overlay { background: linear-gradient(to top, rgba(26,17,9,0.88) 0%, rgba(26,17,9,0.2) 60%); }

/* ── MENU SECTION ── */
.menu-section { background: var(--warm-white); }

.menu-tabs {
  display: flex;
  gap: 8px;
  margin: 50px 0 40px;
  border-bottom: 2px solid var(--stone-light);
  padding-bottom: 0;
}

.menu-tab {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  padding: 12px 24px;
  border: none;
  background: none;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: all 0.3s;
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
}
.menu-tab.active, .menu-tab:hover { color: var(--brown); border-bottom-color: var(--amber); }

.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.menu-item {
  display: flex;
  gap: 20px;
  align-items: center;
  background: #fff;
  border-radius: var(--radius-sm);
  padding: 20px;
  border: 1px solid rgba(212,196,184,0.4);
  transition: all 0.3s;
}
.menu-item:hover { border-color: var(--amber); box-shadow: 0 4px 20px rgba(200,134,10,0.08); transform: translateY(-2px); }

.menu-item-img {
  width: 80px; height: 80px;
  border-radius: 12px;
  object-fit: cover;
  flex-shrink: 0;
}

.menu-item-info { flex: 1; }
.menu-item-name { font-size: 1rem; font-weight: 700; color: var(--brown); margin-bottom: 4px; }
.menu-item-desc { font-family: 'Inter', sans-serif; font-size: 0.82rem; color: var(--text-muted); line-height: 1.5; }
.menu-item-price { font-size: 1.1rem; font-weight: 700; color: var(--amber); margin-top: 6px; font-family: 'Inter', sans-serif; }

/* ── FULL WIDTH PHOTO ── */
.full-photo {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
}

/* ── STORY PREVIEW ── */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.story-img-stack {
  position: relative;
  height: 520px;
}

.story-img-main {
  position: absolute;
  top: 0; left: 0;
  width: 75%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius);
}

.story-img-accent {
  position: absolute;
  bottom: 0; right: 0;
  width: 55%;
  height: 280px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 6px solid var(--cream);
}

.story-badge {
  position: absolute;
  bottom: 60px; left: -10px;
  background: var(--amber);
  color: #fff;
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  text-align: center;
  box-shadow: 0 8px 24px rgba(200,134,10,0.35);
}
.story-badge strong { display: block; font-size: 1.8rem; font-weight: 800; line-height: 1; }
.story-badge span { font-family: 'Inter', sans-serif; font-size: 0.78rem; font-weight: 500; opacity: 0.9; }

.story-text .section-desc { margin-bottom: 28px; }

.story-values { display: flex; flex-direction: column; gap: 16px; }

.story-value {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.story-value-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(200,134,10,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.story-value-text strong { display: block; font-size: 0.95rem; color: var(--brown); margin-bottom: 2px; }
.story-value-text span { font-family: 'Inter', sans-serif; font-size: 0.85rem; color: var(--text-muted); }

/* ── GALLERY STRIP ── */
.gallery-strip {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 12px;
  height: 360px;
}

.gallery-strip-item {
  border-radius: var(--radius-sm);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery-strip-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.gallery-strip-item:hover img { transform: scale(1.06); }

/* ── MAP SECTION ── */
.map-section { background: var(--warm-white); }

.map-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(59,35,20,0.12);
}

.map-info {
  background: var(--brown);
  padding: 60px 50px;
  color: #fff;
}

.map-info .section-tag { background: rgba(245,166,35,0.15); color: var(--amber-light); }
.map-info .section-title { color: #fff; font-size: 2.2rem; margin-bottom: 30px; }

.map-detail { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 24px; }
.map-detail-icon {
  width: 42px; height: 42px;
  border-radius: 10px;
  background: rgba(245,166,35,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.map-detail strong { display: block; color: rgba(255,255,255,0.6); font-family: 'Inter', sans-serif; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 4px; }
.map-detail span { color: #fff; font-family: 'Inter', sans-serif; font-size: 0.95rem; line-height: 1.5; }

.map-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: #fff;
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  margin-top: 32px;
  transition: all 0.3s;
}
.map-wa-btn:hover { background: #1da852; transform: translateY(-2px); }

.map-embed { width: 100%; height: 100%; min-height: 420px; border: none; display: block; }

/* ── FOOTER ── */
.cafe-footer {
  background: var(--brown);
  padding: 70px 0 0;
  color: rgba(255,255,255,0.7);
}

.cafe-footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 50px;
}

.cafe-footer-brand { font-size: 1.6rem; font-weight: 700; color: #fff; margin-bottom: 14px; }
.cafe-footer-brand span { color: var(--amber-light); }
.cafe-footer-desc { font-family: 'Inter', sans-serif; font-size: 0.9rem; line-height: 1.7; }

.cafe-footer-heading { color: #fff; font-family: 'Inter', sans-serif; font-size: 0.8rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 18px; }

.cafe-footer-links { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.cafe-footer-links a { color: rgba(255,255,255,0.6); text-decoration: none; font-family: 'Inter', sans-serif; font-size: 0.9rem; transition: color 0.3s; }
.cafe-footer-links a:hover { color: var(--amber-light); }

.cafe-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cafe-footer-bottom p { font-family: 'Inter', sans-serif; font-size: 0.82rem; }
.cafe-footer-bottom a { color: var(--amber-light); text-decoration: none; }
.buildweb-credit { font-family: 'Inter', sans-serif; font-size: 0.8rem; color: rgba(255,255,255,0.4); }
.buildweb-credit a { color: var(--amber-light); text-decoration: none; }

/* ── WHATSAPP FLOAT ── */
.wa-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: #fff;
  padding: 14px 22px 14px 18px;
  border-radius: 50px;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.45);
  transition: all 0.3s;
  animation: waFloat 3s ease-in-out infinite;
}
.wa-float:hover { transform: translateY(-4px) scale(1.04); box-shadow: 0 12px 36px rgba(37,211,102,0.5); }
.wa-float svg { width: 22px; height: 22px; fill: #fff; flex-shrink: 0; }

@keyframes waFloat {
  0%, 100% { box-shadow: 0 8px 28px rgba(37,211,102,0.45); }
  50% { box-shadow: 0 8px 36px rgba(37,211,102,0.65); }
}

/* ── SCROLL REVEAL ── */
.sr { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.sr.visible { opacity: 1; transform: translateY(0); }
.sr-delay-1 { transition-delay: 0.1s; }
.sr-delay-2 { transition-delay: 0.2s; }
.sr-delay-3 { transition-delay: 0.3s; }

/* ── PAGE HERO (inner pages) ── */
.page-hero-cafe {
  padding: 160px 0 80px;
  text-align: center;
  background: var(--brown);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.page-hero-cafe::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1495474472287-4d71bcdd2085?w=1600&q=80');
  background-size: cover;
  background-position: center;
  opacity: 0.18;
}
.page-hero-cafe-content { position: relative; z-index: 1; }
.page-hero-cafe h1 { font-size: clamp(2.5rem, 5vw, 4rem); color: #fff; margin-bottom: 16px; }
.page-hero-cafe p { font-family: 'Inter', sans-serif; color: rgba(255,255,255,0.75); font-size: 1.1rem; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .cafe-nav { padding: 16px 24px; }
  .cafe-nav-links { gap: 20px; }
  .highlights-grid { grid-template-columns: 1fr 1fr; }
  .menu-grid { grid-template-columns: 1fr; }
  .story-grid { grid-template-columns: 1fr; }
  .story-img-stack { height: 320px; }
  .gallery-strip { grid-template-columns: 1fr 1fr; height: auto; }
  .gallery-strip-item { height: 200px; }
  .map-layout { grid-template-columns: 1fr; }
  .cafe-footer-grid { grid-template-columns: 1fr; gap: 30px; }
}

@media (max-width: 600px) {
  .cafe-nav-links { display: none; }
  .highlights-grid { grid-template-columns: 1fr; }
  .gallery-strip { grid-template-columns: 1fr; }
  .cafe-hero-btns { flex-direction: column; align-items: center; }
  .cafe-footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
}
