/* ═══════════════════════════════════════════════════════════════
   JODHPUR COFFEE CLUB — Design System
   Logo-matched: Espresso × Terracotta × Jodhpur Blue × Warm Cream
   ═══════════════════════════════════════════════════════════════ */

/* ─── Design Tokens ──────────────────────────────────────────── */
:root {
  /* ── Espresso / Coffee Browns (dark sections, navbar) ── */
  --espresso:     #1A0C05;   /* deepest dark — hero, footer bg  */
  --coffee-dark:  #2E1503;   /* dark coffee — dark section bg   */
  --coffee-mid:   #5C2D0E;   /* medium coffee brown             */
  --coffee-light: #8B4513;   /* saddle brown                    */

  /* ── Terracotta / Rust (primary action color) ── */
  --terra:        #C4622D;   /* logo arch — primary CTA         */
  --terra-dark:   #A0491C;   /* hover state                     */
  --terra-light:  #D9834E;   /* lighter terracotta              */
  --terra-pale:   #F5E0D0;   /* very light terracotta tint      */
  --terra-tint:   #FBF0E8;   /* near-white terracotta           */

  /* ── Jodhpur Blue (accent — the steam wisps in logo) ── */
  --blue-deep:    #1E3D8F;   /* rich Jodhpur blue               */
  --blue-mid:     #2C55C5;   /* medium blue accent              */
  --blue-bright:  #4B72E0;   /* bright blue                     */
  --blue-muted:   #C5D0F0;   /* muted blue border               */
  --blue-tint:    #EBF0FB;   /* very light blue tint            */

  /* ── Warm Creams & Neutrals ── */
  --cream:        #FAF3E8;   /* main light section bg           */
  --warm-white:   #FDFAF6;   /* card / pure bg                  */
  --sand:         #EDD9BC;   /* sandy warm neutral              */

  /* ── Gold Accents ── */
  --gold:         #C98A28;   /* warm amber gold                 */
  --gold-light:   #E0A84C;   /* lighter gold                    */
  --gold-pale:    #FDF3DD;   /* pale gold bg                    */

  /* ── Text & Borders ── */
  --dark:         #1A0C05;   /* same as espresso for headings   */
  --text:         #2E1503;   /* main body text — espresso       */
  --text-mid:     #6B3C1A;   /* secondary text — coffee mid     */
  --text-light:   #9E6C47;   /* muted / placeholder             */
  --border:       #DEC4A0;   /* warm tan border                 */
  --border-light: #EDD9BC;   /* very light sand border          */

  /* ── Status ── */
  --green:        #22C55E;
  --red:          #EF4444;

  /* Typography */
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'Inter', system-ui, -apple-system, sans-serif;

  /* Spacing */
  --space-xs:  0.25rem;
  --space-sm:  0.5rem;
  --space-md:  1rem;
  --space-lg:  1.5rem;
  --space-xl:  2.5rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;

  /* Radii */
  --radius-sm:   8px;
  --radius-md:   16px;
  --radius-lg:   24px;
  --radius-xl:   32px;
  --radius-pill: 9999px;

  /* Shadows — now warm brown-tinted */
  --shadow-xs:   0 1px 3px  rgba(30,15,7,0.07);
  --shadow-sm:   0 4px 12px rgba(30,15,7,0.10);
  --shadow-md:   0 8px 32px rgba(30,15,7,0.14);
  --shadow-lg:   0 20px 60px rgba(30,15,7,0.20);
  --shadow-glow: 0 0 40px rgba(196,98,45,0.25);

  /* Transitions */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --duration: 0.45s;
  --duration-fast: 0.2s;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--cream);
  overflow-x: hidden;
  line-height: 1.7;
}

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

/* ─── Container ───────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

/* ─── Section base ────────────────────────────────────────────── */
.section { padding: var(--space-3xl) 0; }
.section:nth-child(odd) { background: var(--cream); }
.section:nth-child(even) { background: var(--warm-white); }

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto var(--space-2xl);
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--terra);
  background: var(--terra-pale);
  border: 1px solid rgba(196,98,45,0.3);
  padding: 4px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: var(--space-md);
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: var(--space-md);
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.7;
}

/* ─── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  font-size: 0.95rem;
  font-weight: 600;
  transition: all var(--duration-fast) var(--ease);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--warm-white);
  border-color: var(--gold);
  box-shadow: 0 4px 20px rgba(201,147,58,0.35);
}
.btn-primary:hover {
  background: #b8822a;
  border-color: #b8822a;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201,147,58,0.45);
}

.btn-ghost {
  background: transparent;
  color: var(--warm-white);
  border-color: rgba(255,255,255,0.5);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--warm-white);
  transform: translateY(-2px);
}

.btn-blue {
  background: var(--blue-mid);
  color: var(--warm-white);
  border-color: var(--blue-mid);
  box-shadow: 0 4px 16px rgba(37,99,176,0.25);
}
.btn-blue:hover {
  background: var(--blue-deep);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--blue-mid);
  border-color: var(--blue-mid);
}
.btn-outline:hover {
  background: var(--blue-tint);
  transform: translateY(-2px);
}

/* ─── Reveal animations ───────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity var(--duration) var(--ease),
              transform var(--duration) var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Navbar ──────────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0;
  transition: all 0.3s var(--ease);
}

.navbar.scrolled {
  background: rgba(46,21,3,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-md);
  padding: 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px var(--space-lg);
  transition: padding 0.3s var(--ease);
}
.navbar.scrolled .nav-inner { padding: 14px var(--space-lg); }

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--warm-white);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.01em;
  transition: opacity 0.2s;
}
.nav-logo:hover { opacity: 0.85; }
.logo-icon { font-size: 1.4rem; }
.logo-text { font-family: var(--font-serif); font-size: 1.1rem; }

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.nav-link {
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  transition: all var(--duration-fast);
}
.nav-link:hover, .nav-link.active {
  color: var(--warm-white);
  background: rgba(255,255,255,0.12);
}

.nav-admin {
  color: var(--gold-light) !important;
  border: 1px solid rgba(201,147,58,0.4);
}
.nav-admin:hover {
  background: rgba(201,147,58,0.15) !important;
  border-color: var(--gold);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--warm-white);
  border-radius: 2px;
  transition: all 0.3s var(--ease);
}

/* ─── Hero ────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--espresso);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('/images/hero.png');
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 8s ease;
  will-change: transform;
}
.hero.loaded .hero-bg { transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26,12,5,0.90) 0%,
    rgba(46,21,3,0.78) 50%,
    rgba(196,98,45,0.18) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--warm-white);
  padding: 120px var(--space-lg) var(--space-3xl);
  max-width: 760px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-light);
  border: 1px solid rgba(201,147,58,0.4);
  padding: 6px 18px;
  border-radius: var(--radius-pill);
  margin-bottom: var(--space-lg);
  background: rgba(201,147,58,0.1);
  backdrop-filter: blur(10px);
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 9vw, 6.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--warm-white);
  margin-bottom: var(--space-lg);
}
.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-tagline {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin-bottom: var(--space-xl);
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--space-2xl);
}

.hero-scroll {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  color: rgba(255,255,255,0.4);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.scroll-line {
  display: block;
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollPulse 2s ease infinite;
}

@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 0.5; }
  50% { transform: scaleY(1.3); opacity: 1; }
}

.hero-motif {
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196,98,45,0.20) 0%, transparent 70%);
  pointer-events: none;
}

/* ─── About Section ───────────────────────────────────────────── */
.about-section { background: var(--cream) !important; }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.about-text .section-title { text-align: left; }
.about-text .section-label { }

.about-lead {
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: var(--space-md);
  line-height: 1.65;
}
.about-text p {
  color: var(--text-mid);
  margin-bottom: var(--space-md);
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-xl);
  padding-top: var(--space-xl);
  border-top: 1px solid var(--border);
}

.stat-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--terra);
  line-height: 1;
}
.stat-label {
  display: block;
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 4px;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.about-card-stack {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.about-card {
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg) var(--space-xl);
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  transition: all var(--duration) var(--ease);
  box-shadow: var(--shadow-xs);
}
.about-card:hover {
  transform: translateX(8px);
  box-shadow: var(--shadow-md);
  border-color: rgba(196,98,45,0.35);
}
.about-card .card-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--terra-pale);
  border-radius: var(--radius-sm);
}
.about-card h3 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--dark);
  margin-bottom: 4px;
}
.about-card p { font-size: 0.9rem; color: var(--text-mid); margin: 0; }

.about-card.card-1 { transform: translateX(0); }
.about-card.card-2 { transform: translateX(20px); }
.about-card.card-3 { transform: translateX(10px); }
.about-card.card-1:hover { transform: translateX(8px); }
.about-card.card-2:hover { transform: translateX(28px); }
.about-card.card-3:hover { transform: translateX(18px); }

/* ─── Coffee Section ──────────────────────────────────────────── */
.coffees-section { background: var(--coffee-dark) !important; }
.coffees-section .section-label {
  background: rgba(196,98,45,0.18);
  border-color: rgba(196,98,45,0.35);
  color: var(--terra-light);
}
.coffees-section .section-title { color: var(--warm-white); }
.coffees-section .section-sub { color: rgba(255,240,225,0.65); }

.coffee-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--space-lg);
}

.coffee-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--duration) var(--ease);
  backdrop-filter: blur(10px);
  animation: fadeUp 0.5s var(--ease) both;
}
.coffee-card:hover {
  transform: translateY(-8px);
  background: rgba(255,255,255,0.1);
  border-color: rgba(201,147,58,0.4);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.coffee-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.coffee-card:hover .coffee-card-img { transform: scale(1.05); }

.coffee-card-body {
  padding: var(--space-lg);
}

.coffee-roaster {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 6px;
}

.coffee-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--warm-white);
  margin-bottom: var(--space-sm);
}

.coffee-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: var(--space-sm);
}

.coffee-tag {
  font-size: 0.7rem;
  font-weight: 500;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.12);
}

.coffee-notes {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: var(--space-lg);
  line-height: 1.6;
}

.coffee-buy-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold-light);
  padding: 10px 18px;
  border: 1px solid rgba(201,147,58,0.35);
  border-radius: var(--radius-pill);
  background: rgba(201,147,58,0.1);
  transition: all var(--duration-fast);
}
.coffee-buy-btn:hover {
  background: rgba(201,147,58,0.2);
  border-color: var(--gold);
  transform: translateX(4px);
}

/* ─── Equipment Deals ─────────────────────────────────────────── */
.deals-section { background: var(--warm-white) !important; }

.delivery-banner {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  background: linear-gradient(135deg, var(--terra-tint), var(--warm-white));
  border: 1px solid rgba(196,98,45,0.25);
  border-radius: var(--radius-md);
  padding: var(--space-md) var(--space-lg);
  margin-bottom: var(--space-xl);
  font-size: 0.9rem;
  color: var(--coffee-mid);
}
.banner-icon { font-size: 1.4rem; flex-shrink: 0; }

.deals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: var(--space-lg);
}

.deal-card {
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xs);
  transition: all var(--duration) var(--ease);
  animation: fadeUp 0.5s var(--ease) both;
}
.deal-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(196,98,45,0.35);
}

.deal-card-img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: var(--border-light);
}
.deal-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.deal-card:hover .deal-card-img { transform: scale(1.06); }

.deal-stock-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
}
.deal-stock-badge.in-stock {
  background: rgba(34,197,94,0.15);
  color: #15803D;
  border: 1px solid rgba(34,197,94,0.3);
}
.deal-stock-badge.out-of-stock {
  background: rgba(239,68,68,0.1);
  color: #B91C1C;
  border: 1px solid rgba(239,68,68,0.25);
}

.deal-card-body { padding: var(--space-lg); }

.deal-brand {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 4px;
}

.deal-name {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--dark);
  margin-bottom: var(--space-sm);
}

.deal-desc {
  font-size: 0.85rem;
  color: var(--text-mid);
  margin-bottom: var(--space-lg);
  line-height: 1.65;
}

.deal-pricing {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.price-col {
  padding: var(--space-md) var(--space-sm);
  text-align: center;
  border-right: 1px solid var(--border);
}
.price-col:last-child { border-right: none; }

.price-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
  display: block;
  margin-bottom: 4px;
}

.price-value {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  display: block;
}
.price-col.price-mrp .price-value {
  text-decoration: line-through;
  color: var(--text-light);
  font-size: 0.9rem;
}
.price-col.price-club {
  background: var(--gold-pale);
  border-left: none;
  border-right: none;
  border-top: 2px solid var(--gold);
  margin-top: -1px;
}
.price-col.price-club .price-label { color: var(--gold); }
.price-col.price-club .price-value {
  color: var(--gold);
  font-size: 1.15rem;
}

.deal-contact {
  margin-top: var(--space-md);
  font-size: 0.8rem;
  color: var(--text-light);
  text-align: center;
}

/* ─── Events Section ──────────────────────────────────────────── */
.events-section { background: var(--cream) !important; }

.events-timeline {
  display: flex;
  flex-direction: column;
  gap: var(--space-2xl);
  position: relative;
}

.events-timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--terra), transparent);
  margin-left: 24px;
}

.event-card {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: var(--space-xl);
  animation: fadeUp 0.5s var(--ease) both;
}

.event-dot-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 4px;
}
.event-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gold);
  border: 3px solid var(--cream);
  box-shadow: 0 0 0 3px var(--gold);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.event-body {
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xs);
  transition: box-shadow var(--duration) var(--ease);
}
.event-body:hover { box-shadow: var(--shadow-md); }

.event-header {
  padding: var(--space-lg) var(--space-xl);
  border-bottom: 1px solid var(--border-light);
  display: flex;
  align-items: flex-start;
  gap: var(--space-lg);
  justify-content: space-between;
  flex-wrap: wrap;
}

.event-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--dark);
  margin-bottom: 6px;
}

.event-meta {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.event-date, .event-location {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--text-mid);
  font-weight: 500;
}

.event-content { padding: var(--space-xl); }

.event-desc {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: var(--space-lg);
}
.event-desc p { margin-bottom: var(--space-md); }
.event-desc p:last-child { margin-bottom: 0; }

.event-coffees {
  margin-bottom: var(--space-lg);
}
.event-coffees-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: var(--space-sm);
}
.event-coffee-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.event-coffee-tag {
  font-size: 0.78rem;
  font-weight: 500;
  padding: 4px 12px;
  background: var(--terra-pale);
  color: var(--terra-dark);
  border: 1px solid rgba(196,98,45,0.25);
  border-radius: var(--radius-pill);
}

.event-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: var(--space-sm);
}

.event-gallery-img {
  width: 100%;
  height: 110px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--duration-fast) var(--ease);
  border: 2px solid transparent;
}
.event-gallery-img:hover {
  transform: scale(1.04);
  border-color: var(--gold);
  box-shadow: var(--shadow-sm);
}

/* ─── Cafes Section ─────────────────────────────────────────── */
.cafes-section { background: var(--espresso) !important; }
.cafes-section .section-label {
  background: rgba(196,98,45,0.18);
  border-color: rgba(196,98,45,0.35);
  color: var(--terra-light);
}
.cafes-section .section-title { color: var(--warm-white); }
.cafes-section .section-sub { color: rgba(255,240,225,0.65); }

.cafe-tabs {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
  margin-bottom: var(--space-xl);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-pill);
  padding: 6px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.cafe-tab {
  padding: 10px 24px;
  border-radius: var(--radius-pill);
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  transition: all var(--duration-fast) var(--ease);
}
.cafe-tab.active {
  background: var(--terra);
  color: var(--warm-white);
  box-shadow: 0 4px 14px rgba(196,98,45,0.4);
}
.cafe-tab:hover:not(.active) { color: rgba(255,255,255,0.85); }

.cafes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--space-lg);
}

.cafe-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: var(--space-lg) var(--space-xl);
  transition: all var(--duration) var(--ease);
  animation: fadeUp 0.5s var(--ease) both;
  backdrop-filter: blur(10px);
}
.cafe-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(201,147,58,0.3);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.cafe-category-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  margin-bottom: var(--space-sm);
}
.cafe-category-badge.speciality {
  background: rgba(201,147,58,0.15);
  color: var(--gold-light);
  border: 1px solid rgba(201,147,58,0.3);
}
.cafe-category-badge.other {
  background: rgba(196,98,45,0.15);
  color: var(--terra-light);
  border: 1px solid rgba(196,98,45,0.25);
}

.cafe-name {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--warm-white);
  margin-bottom: 4px;
}
.cafe-tagline {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  font-style: italic;
  margin-bottom: var(--space-md);
}

.cafe-beans-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 6px;
}
.cafe-beans {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: var(--space-md);
}

.cafe-notes {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
  margin-bottom: var(--space-lg);
  padding-top: var(--space-md);
  border-top: 1px solid rgba(255,255,255,0.08);
}

.cafe-links {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.cafe-link-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.12);
  transition: all var(--duration-fast);
}
.cafe-link-btn:hover {
  background: rgba(255,255,255,0.15);
  color: var(--warm-white);
}

/* ─── Footer ──────────────────────────────────────────── */
.footer {
  background: var(--espresso);
  padding: var(--space-2xl) 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-lg);
  text-align: center;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.footer-title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--warm-white);
}
.footer-tagline {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.35);
}

.footer-links {
  display: flex;
  gap: var(--space-lg);
  flex-wrap: wrap;
  justify-content: center;
}
.footer-links a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--warm-white); }

.footer-copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.2);
  padding-top: var(--space-md);
  border-top: 1px solid rgba(255,255,255,0.06);
  width: 100%;
  text-align: center;
}

/* ─── Lightbox ────────────────────────────────────────────────── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.95);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--space-xl);
  animation: fadeIn 0.2s ease;
}
.lightbox.open { display: flex; }

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}
#lightboxImg {
  max-width: 100%;
  max-height: 75vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}
.lightbox-caption {
  color: rgba(255,255,255,0.55);
  font-size: 0.85rem;
  margin-top: var(--space-md);
  text-align: center;
}

.lightbox-close, .lightbox-prev, .lightbox-next {
  position: fixed;
  background: rgba(255,255,255,0.1);
  color: var(--warm-white);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  cursor: pointer;
  transition: all var(--duration-fast);
  backdrop-filter: blur(10px);
}
.lightbox-close { top: 20px; right: 20px; font-size: 1rem; }
.lightbox-prev  { left: 20px; top: 50%; transform: translateY(-50%); }
.lightbox-next  { right: 20px; top: 50%; transform: translateY(-50%); }
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover {
  background: rgba(255,255,255,0.2);
}

.lightbox-dots {
  display: flex;
  gap: 8px;
  margin-top: var(--space-lg);
}
.lightbox-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  border: none;
  cursor: pointer;
  transition: all var(--duration-fast);
}
.lightbox-dot.active {
  background: var(--warm-white);
  width: 24px;
  border-radius: 4px;
}

/* ─── Empty state ─────────────────────────────────────────────── */
.empty-state {
  text-align: center;
  padding: var(--space-3xl) var(--space-lg);
  color: var(--text-light);
  grid-column: 1 / -1;
}
.empty-state-icon { font-size: 3rem; margin-bottom: var(--space-md); }
.empty-state p { font-size: 0.9rem; }

/* ─── Keyframes ───────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ─── Responsive ──────────────────────────────────────────────── */
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-card.card-2, .about-card.card-3 { transform: translateX(0); }
  .about-card.card-2:hover, .about-card.card-3:hover { transform: translateX(8px); }
  .events-timeline::before { display: none; }
  .event-card { grid-template-columns: 1fr; }
  .event-dot-col { display: none; }
}

@media (max-width: 768px) {
  .section { padding: var(--space-2xl) 0; }
  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26,12,5,0.98);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-lg);
    z-index: 999;
  }
  .nav-links.open { display: flex; }
  .nav-link { font-size: 1.1rem; padding: 12px 24px; }
  .nav-toggle { display: flex; z-index: 1000; }
  .hero-content { padding-top: 100px; }
  .about-stats { grid-template-columns: repeat(3, 1fr); }
  .deals-grid, .coffee-grid, .cafes-grid {
    grid-template-columns: 1fr;
  }
  .hero-actions { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .deal-pricing { grid-template-columns: 1fr; }
  .price-col { border-right: none; border-bottom: 1px solid var(--border); }
  .price-col:last-child { border-bottom: none; }
  .price-col.price-club { border-top: none; border-left: 3px solid var(--gold); }
}

/* ─── Contact Section ─────────────────────────────────────────── */
.contact-section { background: var(--cream) !important; }

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--space-2xl);
  align-items: start;
}

/* Instagram column */
.contact-ig-col {
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xs);
}

.ig-header {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-lg) var(--space-xl);
  border-bottom: 1px solid var(--border-light);
  background: linear-gradient(135deg, #FAFAFA 0%, #F5F5F5 100%);
}

.ig-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, #E1306C, #F77737, #FCAF45);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
  color: white;
}

.ig-handle {
  font-weight: 700;
  font-size: 1rem;
  color: var(--dark);
}
.ig-sub { font-size: 0.78rem; color: var(--text-light); margin-top: 2px; }

.ig-follow-pill {
  margin-left: auto;
  flex-shrink: 0;
  padding: 7px 18px;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, #E1306C, #F77737);
  color: white;
  font-size: 0.82rem;
  font-weight: 700;
  transition: opacity 0.2s, transform 0.2s;
}
.ig-follow-pill:hover { opacity: 0.85; transform: scale(1.04); }

.ig-posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  background: var(--border-light);
}

.ig-post-thumb {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  cursor: pointer;
}
.ig-post-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--ease);
}
.ig-post-thumb:hover img { transform: scale(1.08); }
.ig-post-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  transition: background 0.3s;
}
.ig-post-thumb:hover::after { background: rgba(0,0,0,0.2); }

.ig-posts-empty {
  padding: var(--space-xl) var(--space-lg);
  text-align: center;
  color: var(--text-light);
  font-size: 0.88rem;
  line-height: 1.65;
}
.ig-posts-empty .ig-empty-icon { font-size: 2rem; margin-bottom: 8px; }

.ig-follow-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: var(--space-md);
  background: var(--warm-white);
  color: var(--terra);
  font-size: 0.88rem;
  font-weight: 600;
  border-top: 1px solid var(--border-light);
  transition: background 0.2s;
}
.ig-follow-btn:hover { background: var(--terra-pale); }

/* WhatsApp column */
.contact-wa-col {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.wa-card {
  background: var(--dark);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  text-align: center;
  background: linear-gradient(145deg, #1B4332, #0D2818);
  box-shadow: var(--shadow-md);
}

.wa-icon-wrap {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(37,211,102,0.15);
  border: 2px solid rgba(37,211,102,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-lg);
}
.wa-icon { font-size: 2rem; }

.wa-title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: white;
  margin-bottom: var(--space-sm);
}
.wa-desc {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
}

.wa-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px 24px;
  background: #25D366;
  color: white;
  border-radius: var(--radius-pill);
  font-size: 1rem;
  font-weight: 700;
  transition: all 0.2s var(--ease);
  box-shadow: 0 6px 24px rgba(37,211,102,0.35);
}
.wa-btn:hover {
  background: #1ebe5a;
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(37,211,102,0.45);
}

.contact-info-card {
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg) var(--space-xl);
  box-shadow: var(--shadow-xs);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.ci-row {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}
.ci-icon {
  font-size: 1.3rem;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--terra-pale);
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}
.ci-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 2px;
}
.ci-value {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--dark);
}

/* Responsive contact */
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
  .ig-posts-grid { grid-template-columns: repeat(3, 1fr); }
}
