/* =============================================
   NOOK EBRULİ — Landing Homepage CSS  (v2)
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,600;0,700;1,500;1,600&display=swap');

:root {
  --cream:        #F7F2EA;
  --cream-dark:   #EDE5D8;
  --cream-mid:    #F0EAE0;
  --dark-brown:   #3C1F08;
  --med-brown:    #7B4A28;
  --warm-brown:   #A67B52;
  --light-tan:    #C9AA85;
  --gold:         #C8973F;
  --gold-light:   #D4A853;
  --gold-dim:     rgba(200,151,63,0.15);
  --white:        #FFFFFF;
  --text-main:    #2C1A08;
  --text-muted:   #7A6555;
  --border:       rgba(168,123,82,0.18);
  --transition:   0.35s cubic-bezier(0.4,0,0.2,1);
  --shadow:       0 4px 24px rgba(60,31,8,0.10);
  --shadow-lg:    0 16px 56px rgba(60,31,8,0.18);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Inter', sans-serif; background: var(--cream); color: var(--text-main); overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: inherit; }
img { display: block; }

/* ── Navbar ─────────────────────────────────── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 48px;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}
.navbar.scrolled {
  background: rgba(60,31,8,0.92);
  backdrop-filter: blur(16px);
  box-shadow: 0 2px 24px rgba(60,31,8,0.25);
  padding: 10px 48px;
}
.nav-brand {
  display: flex; align-items: center; gap: 12px;
}
.nav-logo {
  width: 40px; height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(200,151,63,0.5);
}
.nav-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.02em;
}
.nav-links {
  display: flex; align-items: center; gap: 10px;
}
.nav-menu-btn {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 22px;
  background: var(--gold);
  color: #fff;
  border: none;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
}
.nav-menu-btn:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200,151,63,0.4);
}
/* Admin button — bordered like Instagram btn in footer */
.nav-admin-link {
  display: flex; align-items: center; gap: 7px;
  padding: 9px 18px;
  background: transparent;
  border: 1.5px solid rgba(200,151,63,0.5);
  border-radius: 50px;
  color: rgba(255,255,255,0.75);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  transition: all var(--transition);
  text-decoration: none;
}
.nav-admin-link:hover {
  background: rgba(200,151,63,0.12);
  border-color: var(--gold);
  color: var(--gold-light);
  transform: translateY(-1px);
}
.nav-admin-link svg { width: 13px; height: 13px; opacity: 0.7; }

/* ── Hero ────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse at 30% 60%, rgba(124,74,40,0.5) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 30%, rgba(60,31,8,0.6) 0%, transparent 50%),
    linear-gradient(160deg, #1a0a02 0%, #3C1F08 40%, #5a2e0e 100%);
}
.hero-particles {
  position: absolute; inset: 0; z-index: 1; pointer-events: none; overflow: hidden;
}
.particle {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,151,63,0.35), transparent 70%);
  animation: float var(--dur, 8s) ease-in-out infinite;
  animation-delay: var(--delay, 0s);
}
@keyframes float {
  0%, 100% { transform: translateY(0px) scale(1); opacity: 0.4; }
  50% { transform: translateY(-30px) scale(1.1); opacity: 0.7; }
}
.hero-content {
  position: relative; z-index: 2;
  text-align: center;
  padding: 24px;
  max-width: 720px;
}
.hero-logo-circle {
  width: 100px; height: 100px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 2px solid rgba(200,151,63,0.4);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 28px;
  backdrop-filter: blur(8px);
  overflow: hidden;
  animation: heroLogoIn 1s ease-out both;
}
.hero-logo-img { width: 100%; height: 100%; object-fit: cover; }
@keyframes heroLogoIn {
  from { opacity: 0; transform: scale(0.7); }
  to   { opacity: 1; transform: scale(1); }
}
.hero-eyebrow {
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px;
  animation: heroFadeUp 0.9s 0.2s ease-out both;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 700; color: #fff; line-height: 1.05; margin-bottom: 20px;
  animation: heroFadeUp 0.9s 0.4s ease-out both;
}
.hero-title em { font-style: italic; color: var(--gold-light); }
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.7); font-weight: 300;
  line-height: 1.7; margin-bottom: 40px;
  animation: heroFadeUp 0.9s 0.6s ease-out both;
}
.hero-cta {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 36px;
  background: linear-gradient(135deg, var(--gold), #a8722e);
  color: #fff; border-radius: 50px;
  font-size: 1rem; font-weight: 600; letter-spacing: 0.04em;
  box-shadow: 0 8px 32px rgba(200,151,63,0.4);
  transition: transform var(--transition), box-shadow var(--transition);
  animation: heroFadeUp 0.9s 0.8s ease-out both;
  text-decoration: none;
}
.hero-cta:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(200,151,63,0.5);
}
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.scroll-hint {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  z-index: 2; color: rgba(255,255,255,0.4);
  animation: bounce 2s ease-in-out infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}
.scroll-hint svg { width: 28px; height: 28px; }

/* ── About Strip ─────────────────────────────── */
.about-strip {
  background: var(--dark-brown);
  padding: 32px 48px;
  display: flex; justify-content: center; gap: 64px; flex-wrap: wrap;
}
.about-stat { text-align: center; }
.about-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem; font-weight: 700; color: var(--gold);
}
.about-stat-label {
  font-size: 0.8rem; color: rgba(255,255,255,0.55);
  letter-spacing: 0.1em; text-transform: uppercase; margin-top: 4px;
}

/* ── Section Headings ────────────────────────── */
.section-header { text-align: center; margin-bottom: 56px; }
.section-eyebrow {
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 12px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3rem); font-weight: 700;
  color: var(--dark-brown); line-height: 1.15;
}
.section-title em { font-style: italic; color: var(--warm-brown); }
.section-desc {
  font-size: 1rem; color: var(--text-muted); line-height: 1.75;
  max-width: 520px; margin: 16px auto 0;
}

/* ══════════════════════════════════════════════════
   LATTE ANIMATION — 3D Dark Dramatic Redesign
══════════════════════════════════════════════════ */
.latte-section {
  padding: 120px 48px 140px;
  background:
    radial-gradient(ellipse 80% 50% at 50% 30%, rgba(80,35,8,0.9) 0%, transparent 70%),
    linear-gradient(180deg, #0e0400 0%, #1a0800 50%, #0e0400 100%);
  overflow: hidden;
  position: relative;
}
/* Spotlight beam */
.latte-section::before {
  content: '';
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 500px; height: 80%;
  background: radial-gradient(ellipse 60% 80% at 50% 0%,
    rgba(200,151,63,0.18) 0%,
    rgba(200,151,63,0.04) 50%,
    transparent 100%);
  pointer-events: none; z-index: 0;
}
/* Ambient glow at bottom */
.latte-section::after {
  content: '';
  position: absolute;
  bottom: -20px; left: 50%; transform: translateX(-50%);
  width: 700px; height: 200px;
  background: radial-gradient(ellipse, rgba(200,151,63,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.latte-inner { max-width: 1140px; margin: 0 auto; position: relative; z-index: 1; }

/* Section title — white on dark bg */
.latte-section .section-title { color: #fff; }
.latte-section .section-title em { color: var(--gold-light); }
.latte-section .section-desc { color: rgba(255,255,255,0.5); }

.latte-stage {
  display: grid;
  grid-template-columns: 1fr 300px 1fr;
  gap: 40px;
  align-items: center;
  margin-top: 70px;
}

/* ── Labels (dark bg version) ── */
.latte-labels-left, .latte-labels-right {
  display: flex; flex-direction: column; gap: 12px;
}
.latte-label {
  position: relative;
  padding: 16px 20px;
  border-radius: 14px;
  border: 1px solid rgba(200,151,63,0.12);
  background: rgba(255,255,255,0.03);
  cursor: pointer;
  transition: all 0.45s cubic-bezier(0.4,0,0.2,1);
  text-align: left;
  backdrop-filter: blur(4px);
}
.latte-labels-right .latte-label { text-align: right; }
.latte-label::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(200,151,63,0.12), rgba(200,151,63,0.04));
  opacity: 0; transition: opacity 0.45s ease;
}
.latte-label.active::before { opacity: 1; }
.latte-label.active {
  border-color: rgba(200,151,63,0.45);
  transform: scale(1.03) translateX(-4px);
  box-shadow: 0 8px 32px rgba(200,151,63,0.2), 0 0 0 1px rgba(200,151,63,0.15);
}
.latte-labels-right .latte-label.active {
  transform: scale(1.03) translateX(4px);
}
.latte-label:hover:not(.active) {
  border-color: rgba(200,151,63,0.25);
  background: rgba(200,151,63,0.06);
}
/* Connector dot + line */
.latte-label-dot {
  position: absolute;
  right: -52px; top: 50%; transform: translateY(-50%);
  display: flex; align-items: center; gap: 0;
}
.latte-labels-right .latte-label-dot {
  right: auto; left: -52px; flex-direction: row-reverse;
}
.dot-circle {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--gold);
  opacity: 0; transition: opacity 0.4s ease, transform 0.4s ease;
  transform: scale(0.4);
  box-shadow: 0 0 0 4px rgba(200,151,63,0.2), 0 0 12px rgba(200,151,63,0.5);
  flex-shrink: 0;
}
.dot-line {
  height: 1.5px; width: 40px;
  background: linear-gradient(to right, rgba(200,151,63,0.7), transparent);
  opacity: 0; transition: opacity 0.4s 0.1s ease;
}
.latte-labels-right .latte-label-dot .dot-line {
  background: linear-gradient(to left, rgba(200,151,63,0.7), transparent);
}
.latte-label.active .dot-circle { opacity: 1; transform: scale(1); }
.latte-label.active .dot-line { opacity: 1; }

.latte-label-num {
  font-size: 0.6rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 4px; opacity: 0;
  transition: opacity 0.4s ease;
}
.latte-label.active .latte-label-num { opacity: 1; }
.latte-label-name {
  font-family: 'Playfair Display', serif;
  font-size: 1rem; font-weight: 600;
  color: rgba(255,255,255,0.7); margin-bottom: 5px;
  transition: color 0.3s ease;
}
.latte-label.active .latte-label-name { color: #fff; }
.latte-label-desc {
  font-size: 0.8rem; color: rgba(255,255,255,0.35);
  line-height: 1.55;
  transition: color 0.4s ease;
}
.latte-label.active .latte-label-desc { color: rgba(255,255,255,0.65); }

/* ── 3D Glass Center ── */
.latte-glass-wrap {
  display: flex; flex-direction: column; align-items: center;
  position: relative;
  perspective: 1400px;
  padding-top: 16px;
}

/* 3D rotating container */
.latte-glass-3d {
  transform-style: preserve-3d;
  transform: rotateX(10deg) rotateY(-4deg);
  transition: transform 0.08s ease-out;
  display: flex; flex-direction: column; align-items: center;
  will-change: transform;
  filter:
    drop-shadow(0 50px 40px rgba(0,0,0,0.7))
    drop-shadow(0 20px 20px rgba(200,151,63,0.12));
}

/* Glow ring beneath glass ("table surface") */
.glass-table-glow {
  position: absolute;
  bottom: -30px; left: 50%; transform: translateX(-50%);
  width: 220px; height: 40px;
  background: radial-gradient(ellipse, rgba(200,151,63,0.35) 0%, transparent 70%);
  filter: blur(12px);
  border-radius: 50%;
  animation: tableGlowPulse 3s ease-in-out infinite;
}
@keyframes tableGlowPulse {
  0%, 100% { opacity: 0.6; transform: translateX(-50%) scaleX(1); }
  50%       { opacity: 1; transform: translateX(-50%) scaleX(1.15); }
}

/* Steam */
.steam-wrap {
  display: flex; gap: 18px; justify-content: center;
  height: 56px; margin-bottom: -8px; align-items: flex-end;
}
.steam {
  border-radius: 50px;
  background: linear-gradient(to top, rgba(200,151,63,0.8), rgba(255,220,150,0.3), transparent);
  opacity: 0; transition: opacity 0.6s ease;
  transform-origin: bottom;
  filter: blur(1.5px);
}
.steam.show { animation: steamRise 2.8s ease-in-out infinite; }
.steam:nth-child(1) { width: 5px; height: 36px; animation-delay: 0s; }
.steam:nth-child(2) { width: 4px; height: 48px; animation-delay: 0.55s; }
.steam:nth-child(3) { width: 5px; height: 30px; animation-delay: 1.1s; }
@keyframes steamRise {
  0%   { transform: scaleY(0.1) translateY(10px) rotate(-2deg); opacity: 0; }
  20%  { opacity: 0.9; }
  70%  { opacity: 0.4; }
  100% { transform: scaleY(1.3) translateY(-18px) rotate(3deg); opacity: 0; }
}

/* Glass rim — top oval */
.glass-rim {
  width: 220px; height: 18px;
  background: linear-gradient(to bottom,
    rgba(200,151,63,0.7) 0%,
    rgba(200,151,63,0.3) 50%,
    transparent 100%);
  border-radius: 50%;
  margin-bottom: -3px;
  position: relative; z-index: 5;
  box-shadow: 0 -4px 20px rgba(200,151,63,0.3);
}
.glass-rim::after {
  content: '';
  position: absolute; top: 3px; left: 20px; right: 20px;
  height: 4px; border-radius: 50%;
  background: rgba(255,255,255,0.4);
}

/* Glass body */
.latte-glass {
  position: relative; width: 210px; height: 320px;
}
/* Outer glass wall with strong visible border */
.glass-wall {
  position: absolute; bottom: 0; width: 100%; height: 100%;
  border: 2.5px solid rgba(200,151,63,0.7);
  border-top: none;
  border-radius: 0 0 52px 52px;
  background: rgba(255,255,255,0.02);
  z-index: 10; pointer-events: none;
  box-shadow:
    /* Outer glow */
    0 0 30px rgba(200,151,63,0.18),
    0 0 80px rgba(200,151,63,0.08),
    /* Inner left shine */
    inset 6px 0 20px rgba(255,255,255,0.1),
    /* Inner right shadow */
    inset -4px 0 10px rgba(0,0,0,0.15),
    /* Bottom inner shadow */
    inset 0 -8px 24px rgba(0,0,0,0.2);
}
/* Left gloss streak */
.glass-wall::before {
  content: '';
  position: absolute;
  top: 8%; left: 10px;
  width: 6px; height: 55%;
  border-radius: 50px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.25), transparent);
}
/* Glass gloss right */
.glass-wall::after {
  content: '';
  position: absolute;
  top: 15%; right: 8px;
  width: 3px; height: 30%;
  border-radius: 50px;
  background: rgba(255,255,255,0.12);
}

/* Liquid container */
.liquid-container {
  position: absolute;
  bottom: 0; left: 3px; right: 3px;
  border-radius: 0 0 46px 46px;
  overflow: hidden; height: 100%;
}

/* ── Liquid Layers ── */
.liq-espresso {
  position: absolute; bottom: 0; width: 100%; height: 0%;
  background: linear-gradient(180deg, #5c2f10 0%, #3C1F08 40%, #1a0800 100%);
  transition: height 1.6s cubic-bezier(0.34,1.06,0.64,1);
  border-radius: 0 0 44px 44px;
  z-index: 1;
}
.liq-espresso::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 14px;
  background: linear-gradient(to right,
    transparent 0%, rgba(180,100,30,0.6) 20%,
    rgba(220,140,60,0.8) 50%, rgba(180,100,30,0.6) 80%, transparent 100%);
  border-radius: 50%;
  animation: cremaShimmer 3s ease-in-out infinite;
}
@keyframes cremaShimmer {
  0%, 100% { opacity: 0.6; transform: scaleX(0.95); }
  50%       { opacity: 1; transform: scaleX(1.02); }
}

.liq-milk {
  position: absolute; bottom: 30%; width: 100%; height: 0%;
  background: linear-gradient(180deg, #d4ad80 0%, #c8a878 50%, #b89060 100%);
  transition: height 1.6s 0.15s cubic-bezier(0.34,1.06,0.64,1);
  z-index: 2;
}
.liq-milk::after {
  content: '';
  position: absolute; top: 0; left: -20%; right: -20%; height: 10px;
  background: rgba(220,185,135,0.5);
  border-radius: 50%;
  animation: milkWave 4s ease-in-out infinite;
}
@keyframes milkWave {
  0%, 100% { transform: translateX(0) scaleY(1); }
  50%       { transform: translateX(10%) scaleY(1.4); }
}

.liq-foam {
  position: absolute; bottom: 60%; width: 100%; height: 0%;
  background: linear-gradient(180deg, #f5ede0 0%, #ede0ca 60%, #e0ceb4 100%);
  transition: height 1.6s 0.3s cubic-bezier(0.34,1.06,0.64,1);
  z-index: 3;
  overflow: hidden;
}
.liq-foam::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle 4px at 25% 30%, rgba(255,255,255,0.7) 0%, transparent 60%),
    radial-gradient(circle 3px at 55% 20%, rgba(255,255,255,0.6) 0%, transparent 60%),
    radial-gradient(circle 5px at 75% 40%, rgba(255,255,255,0.65) 0%, transparent 60%),
    radial-gradient(circle 3px at 15% 60%, rgba(255,255,255,0.5) 0%, transparent 60%),
    radial-gradient(circle 4px at 45% 55%, rgba(255,255,255,0.55) 0%, transparent 60%),
    radial-gradient(circle 6px at 85% 25%, rgba(255,255,255,0.6) 0%, transparent 60%);
  animation: foamBubble 5s ease-in-out infinite;
  z-index: 0;
}
@keyframes foamBubble {
  0%, 100% { opacity: 0.8; }
  50%       { opacity: 1; }
}

/* ── Latte Art SVG (inside liq-foam) ── */
.latte-art-svg {
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 91%;
  opacity: 0;
  transition: opacity 1.8s 0.6s ease;
  z-index: 1;
  pointer-events: none;
  filter: drop-shadow(0 1px 4px rgba(90,45,10,0.15));
}
.liq-foam.art-visible .latte-art-svg { opacity: 1; }

/* Complete badge */
.latte-complete-badge {
  margin-top: 24px;
  display: flex; align-items: center; gap: 8px;
  background: rgba(200,151,63,0.1);
  border: 1px solid rgba(200,151,63,0.3);
  border-radius: 50px;
  padding: 8px 18px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--gold);
  opacity: 0; transform: translateY(10px);
  transition: all 0.6s ease;
}
.latte-complete-badge.show { opacity: 1; transform: translateY(0); }
.latte-complete-badge svg { width: 14px; height: 14px; }

/* Progress dots — adapt for dark bg */
.latte-progress {
  display: flex; gap: 8px; margin-top: 20px; justify-content: center;
}
.progress-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: 1.5px solid rgba(255,255,255,0.1);
  transition: all 0.35s ease;
  cursor: pointer;
}
.progress-dot:hover { border-color: var(--gold); background: rgba(200,151,63,0.3); }
.progress-dot.active {
  background: var(--gold);
  border-color: var(--gold);
  transform: scale(1.35);
  box-shadow: 0 0 0 3px rgba(200,151,63,0.3), 0 0 10px rgba(200,151,63,0.5);
}

/* Instruction hint */
.latte-hint {
  text-align: center;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  margin-top: 10px;
  display: flex; align-items: center; justify-content: center; gap: 5px;
}
.latte-hint svg { width: 12px; height: 12px; }


/* ── Map Section — compact, centered ─────────── */
.map-section {
  padding: 100px 48px;
  background: var(--cream-mid);
}
.map-section-inner {
  max-width: 800px; /* narrower, not full-width */
  margin: 0 auto;
}
.map-address-card {
  display: flex; align-items: flex-start; gap: 14px;
  background: var(--white);
  border-radius: 16px; padding: 20px 24px;
  margin-bottom: 20px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.map-address-icon {
  width: 44px; height: 44px;
  background: var(--gold-dim); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--gold);
}
.map-address-icon svg { width: 22px; height: 22px; }
.map-address-title {
  font-size: 0.75rem; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 4px;
}
.map-address-text { font-size: 0.95rem; font-weight: 500; color: var(--dark-brown); line-height: 1.4; }
.map-frame-wrap {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  height: 380px;
}
.map-frame-wrap iframe { width: 100%; height: 100%; border: none; display: block; }

/* ── Footer ──────────────────────────────────── */
.site-footer { background: var(--dark-brown); padding: 56px 48px 36px; }
.footer-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; flex-direction: column; align-items: center; gap: 32px;
}
.footer-brand { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.footer-logo {
  width: 60px; height: 60px; border-radius: 50%;
  border: 2px solid rgba(200,151,63,0.4); overflow: hidden;
}
.footer-logo img { width: 100%; height: 100%; object-fit: cover; }
.footer-name { font-family: 'Playfair Display', serif; font-size: 1.4rem; color: #fff; font-weight: 700; }
.footer-tagline { font-size: 0.85rem; color: rgba(255,255,255,0.45); text-align: center; }
.footer-links { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }
.footer-insta {
  display: flex; align-items: center; gap: 8px;
  padding: 11px 22px;
  border: 1.5px solid rgba(200,151,63,0.5); border-radius: 50px;
  color: var(--gold); font-size: 0.88rem; font-weight: 600; letter-spacing: 0.04em;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
  text-decoration: none;
}
.footer-insta:hover { background: rgba(200,151,63,0.12); border-color: var(--gold); transform: translateY(-2px); }
.footer-insta svg { width: 16px; height: 16px; }
.footer-menu-link {
  display: flex; align-items: center; gap: 8px;
  padding: 11px 22px;
  background: var(--gold); color: #fff; border-radius: 50px;
  font-size: 0.88rem; font-weight: 600;
  transition: background var(--transition), transform var(--transition);
  text-decoration: none;
}
.footer-menu-link:hover { background: var(--gold-light); transform: translateY(-2px); }
.footer-menu-link svg { width: 15px; height: 15px; }
.footer-divider { width: 60px; height: 1px; background: rgba(200,151,63,0.25); }
.footer-copy { font-size: 0.78rem; color: rgba(255,255,255,0.25); text-align: center; letter-spacing: 0.05em; }

/* ── Reveal animation ────────────────────────── */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── Responsive ──────────────────────────────── */
@media (max-width: 960px) {
  .latte-stage {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 32px;
  }
  .latte-labels-left, .latte-labels-right {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    width: 100%;
  }
  .latte-label {
    min-width: 0;
    width: 100%;
    transform: none !important;
    text-align: left !important;
    padding: 14px 16px;
  }
  .latte-label-dot, .dot-line { display: none; }
}

@media (max-width: 640px) {
  .navbar {
    padding: 12px 16px;
  }
  .navbar.scrolled {
    padding: 10px 16px;
  }
  .nav-name {
    font-size: 1.05rem;
  }
  .nav-menu-btn {
    padding: 8px 14px;
    font-size: 0.8rem;
  }
  .nav-admin-link {
    padding: 7px 12px;
    font-size: 0.76rem;
  }
  .hero-content {
    padding: 16px;
  }
  .hero-title {
    font-size: clamp(2.2rem, 9vw, 3.2rem);
  }
  .hero-sub {
    font-size: 0.95rem;
    margin-bottom: 28px;
  }
  .hero-cta {
    padding: 14px 28px;
    font-size: 0.92rem;
  }
  .about-strip {
    gap: 20px 32px;
    padding: 24px 16px;
  }
  .about-stat-num {
    font-size: 1.8rem;
  }
  .latte-section {
    padding: 70px 16px 90px;
  }
  .latte-labels-left, .latte-labels-right {
    grid-template-columns: 1fr;
  }
  .latte-glass-3d {
    transform: rotateX(6deg) rotateY(0deg) !important;
  }
  .latte-glass {
    width: 170px;
    height: 260px;
  }
  .glass-rim {
    width: 180px;
    height: 15px;
  }
  .glass-table-glow {
    width: 170px;
  }
  .latte-art-svg {
    width: 90px;
  }
  .map-section {
    padding: 60px 16px;
  }
  .map-address-card {
    padding: 14px 16px;
  }
  .map-frame-wrap {
    height: 260px;
    border-radius: 16px;
  }
  .site-footer {
    padding: 40px 16px 28px;
  }
  .footer-links {
    flex-direction: column;
    width: 100%;
    max-width: 280px;
  }
  .footer-insta, .footer-menu-link {
    justify-content: center;
    width: 100%;
    padding: 10px 18px;
    font-size: 0.84rem;
  }
}

