:root {
  /* Deep coffee atmosphere */
  --bg-0: #1a0d07;
  --bg-1: #261410;
  --bg-2: #361e15;
  --bg-3: #4a2a1d;
  --bg-deepest: #0d0604;

  /* Cream, off-white */
  --cream: #f5ead7;
  --cream-dim: rgba(245, 234, 215, 0.7);
  --cream-faint: rgba(245, 234, 215, 0.4);

  /* Brand accents */
  --terracotta: #c25539;
  --terracotta-soft: #a8442b;
  --copper: #d4a574;
  --copper-glow: #e6bf8a;
  --pistachio: #a3c585;

  --line: rgba(245, 234, 215, 0.12);
  --line-strong: rgba(245, 234, 215, 0.22);

  --container: 1240px;
  --ease-soft: cubic-bezier(.22, .61, .36, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);

  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --font-serif: 'Fraunces', Georgia, serif;
}

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

html, body {
  background: var(--bg-0);
  color: var(--cream);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
body {
  background:
    radial-gradient(ellipse 80% 50% at 80% 0%, rgba(194, 85, 57, 0.16), transparent 60%),
    radial-gradient(ellipse 60% 40% at 20% 100%, rgba(58, 26, 16, 0.45), transparent 60%),
    var(--bg-0);
  min-height: 100vh;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
::selection { background: var(--copper); color: var(--bg-0); }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 36px;
}

/* ============================================
   LOADER: LoQm logo splits horizontally
============================================ */
.loader {
  position: fixed;
  inset: 0;
  background: var(--bg-deepest);
  z-index: 100;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.loader.hidden {
  opacity: 0;
  pointer-events: none;
  transition: opacity 1s var(--ease-out);
}
.loader-stage {
  position: relative;
  width: min(620px, 90vw);
  height: 360px;
  display: flex; align-items: center; justify-content: center;
}

/* Logo split via clip-path */
.logo-mark {
  position: relative;
  width: 100%;
  max-width: 460px;
  aspect-ratio: 1.41 / 1;
}
.logo-half {
  position: absolute;
  inset: 0;
  display: flex; align-items: center; justify-content: center;
}
.logo-half .logo-img {
  width: 100%;
  height: auto;
  display: block;
  filter: brightness(1.4) saturate(0.85);
}
.logo-half-left { clip-path: inset(0 50% 0 0); }
.logo-half-right { clip-path: inset(0 0 0 50%); }
/* Split flashes — small, soft glows at the inner edges of the splitting halves */
.split-flash {
  position: absolute;
  top: 50%;
  width: 36px;
  height: 42%;
  transform: translateY(-50%);
  pointer-events: none;
  opacity: 0;
  filter: blur(6px);
}
.split-flash-left {
  right: 50%;
  background: radial-gradient(ellipse 60% 90% at right center, rgba(230, 191, 138, 0.55) 0%, rgba(212, 165, 116, 0.22) 35%, transparent 75%);
}
.split-flash-right {
  left: 50%;
  background: radial-gradient(ellipse 60% 90% at left center, rgba(230, 191, 138, 0.55) 0%, rgba(212, 165, 116, 0.22) 35%, transparent 75%);
}

/* Floating particles scattered across the WHOLE loader screen */
.loader-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}
.loader-particles .p {
  position: absolute;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--copper-glow);
  box-shadow: 0 0 10px rgba(212, 165, 116, 0.8);
  opacity: 0;
  animation: sparkle 2.6s ease-in-out infinite;
}

/* Asymmetric scatter — each particle gets a unique position, size, sparkle delay */
.loader-particles .p:nth-child(1)  { top: 4%;  left: 7%;  width: 3px; height: 3px; animation-delay: 0s; animation-duration: 2.2s; }
.loader-particles .p:nth-child(2)  { top: 12%; left: 24%; width: 5px; height: 5px; animation-delay: -0.4s; animation-duration: 3.1s; }
.loader-particles .p:nth-child(3)  { top: 8%;  left: 42%; width: 2px; height: 2px; animation-delay: -1.1s; animation-duration: 2.6s; }
.loader-particles .p:nth-child(4)  { top: 18%; left: 61%; width: 6px; height: 6px; animation-delay: -1.8s; animation-duration: 2.8s; }
.loader-particles .p:nth-child(5)  { top: 5%;  left: 79%; width: 4px; height: 4px; animation-delay: -0.3s; animation-duration: 2.4s; }
.loader-particles .p:nth-child(6)  { top: 14%; left: 93%; width: 3px; height: 3px; animation-delay: -2.0s; animation-duration: 3.0s; }

.loader-particles .p:nth-child(7)  { top: 22%; left: 3%;  width: 4px; height: 4px; animation-delay: -0.7s; animation-duration: 2.5s; }
.loader-particles .p:nth-child(8)  { top: 27%; left: 17%; width: 3px; height: 3px; animation-delay: -1.4s; animation-duration: 2.9s; }
.loader-particles .p:nth-child(9)  { top: 32%; left: 35%; width: 5px; height: 5px; animation-delay: -0.6s; animation-duration: 2.3s; }
.loader-particles .p:nth-child(10) { top: 24%; left: 49%; width: 2px; height: 2px; animation-delay: -1.6s; animation-duration: 2.7s; }
.loader-particles .p:nth-child(11) { top: 30%; left: 71%; width: 4px; height: 4px; animation-delay: -0.2s; animation-duration: 3.2s; }
.loader-particles .p:nth-child(12) { top: 26%; left: 86%; width: 6px; height: 6px; animation-delay: -1.0s; animation-duration: 2.6s; }

.loader-particles .p:nth-child(13) { top: 38%; left: 8%;  width: 5px; height: 5px; animation-delay: -1.9s; animation-duration: 2.8s; }
.loader-particles .p:nth-child(14) { top: 42%; left: 92%; width: 3px; height: 3px; animation-delay: -0.5s; animation-duration: 2.4s; }
.loader-particles .p:nth-child(15) { top: 47%; left: 2%;  width: 2px; height: 2px; animation-delay: -1.3s; animation-duration: 3.0s; }
.loader-particles .p:nth-child(16) { top: 50%; left: 96%; width: 4px; height: 4px; animation-delay: -2.1s; animation-duration: 2.5s; }
.loader-particles .p:nth-child(17) { top: 56%; left: 12%; width: 3px; height: 3px; animation-delay: -0.8s; animation-duration: 2.7s; }
.loader-particles .p:nth-child(18) { top: 58%; left: 88%; width: 5px; height: 5px; animation-delay: -1.7s; animation-duration: 2.9s; }

.loader-particles .p:nth-child(19) { top: 64%; left: 5%;  width: 4px; height: 4px; animation-delay: -0.4s; animation-duration: 2.3s; }
.loader-particles .p:nth-child(20) { top: 67%; left: 21%; width: 2px; height: 2px; animation-delay: -1.5s; animation-duration: 2.6s; }
.loader-particles .p:nth-child(21) { top: 71%; left: 38%; width: 5px; height: 5px; animation-delay: -2.2s; animation-duration: 3.1s; }
.loader-particles .p:nth-child(22) { top: 69%; left: 54%; width: 3px; height: 3px; animation-delay: -0.9s; animation-duration: 2.4s; }
.loader-particles .p:nth-child(23) { top: 73%; left: 72%; width: 4px; height: 4px; animation-delay: -1.2s; animation-duration: 2.8s; }
.loader-particles .p:nth-child(24) { top: 76%; left: 90%; width: 6px; height: 6px; animation-delay: -0.6s; animation-duration: 2.5s; }

.loader-particles .p:nth-child(25) { top: 82%; left: 6%;  width: 3px; height: 3px; animation-delay: -1.8s; animation-duration: 2.7s; }
.loader-particles .p:nth-child(26) { top: 85%; left: 19%; width: 5px; height: 5px; animation-delay: -0.3s; animation-duration: 2.9s; }
.loader-particles .p:nth-child(27) { top: 88%; left: 36%; width: 2px; height: 2px; animation-delay: -1.1s; animation-duration: 2.3s; }
.loader-particles .p:nth-child(28) { top: 80%; left: 51%; width: 4px; height: 4px; animation-delay: -2.0s; animation-duration: 3.0s; }
.loader-particles .p:nth-child(29) { top: 87%; left: 68%; width: 3px; height: 3px; animation-delay: -0.7s; animation-duration: 2.6s; }
.loader-particles .p:nth-child(30) { top: 84%; left: 82%; width: 5px; height: 5px; animation-delay: -1.6s; animation-duration: 2.4s; }

.loader-particles .p:nth-child(31) { top: 93%; left: 11%; width: 4px; height: 4px; animation-delay: -0.5s; animation-duration: 2.8s; }
.loader-particles .p:nth-child(32) { top: 95%; left: 28%; width: 2px; height: 2px; animation-delay: -1.4s; animation-duration: 3.1s; }
.loader-particles .p:nth-child(33) { top: 92%; left: 44%; width: 3px; height: 3px; animation-delay: -2.1s; animation-duration: 2.5s; }
.loader-particles .p:nth-child(34) { top: 96%; left: 62%; width: 5px; height: 5px; animation-delay: -0.8s; animation-duration: 2.7s; }
.loader-particles .p:nth-child(35) { top: 91%; left: 78%; width: 4px; height: 4px; animation-delay: -1.7s; animation-duration: 2.9s; }
.loader-particles .p:nth-child(36) { top: 94%; left: 94%; width: 3px; height: 3px; animation-delay: -0.4s; animation-duration: 2.3s; }

.loader-particles .p:nth-child(37) { top: 41%; left: 25%; width: 3px; height: 3px; animation-delay: -1.0s; animation-duration: 2.6s; }
.loader-particles .p:nth-child(38) { top: 53%; left: 78%; width: 4px; height: 4px; animation-delay: -1.9s; animation-duration: 3.0s; }
.loader-particles .p:nth-child(39) { top: 16%; left: 47%; width: 2px; height: 2px; animation-delay: -0.6s; animation-duration: 2.4s; }
.loader-particles .p:nth-child(40) { top: 60%; left: 64%; width: 3px; height: 3px; animation-delay: -2.0s; animation-duration: 2.8s; }

@keyframes sparkle {
  0%, 100% { opacity: 0.15; transform: scale(0.7); }
  50% { opacity: 1; transform: scale(1.15); }
}

/* ============================================
   COFFEE BEAN PATTERN — full-page background
============================================ */
.bean-pattern {
  position: fixed;
  inset: -8%;
  z-index: 0;
  pointer-events: none;
  background-image: url('assets/bean-pattern.svg');
  background-repeat: repeat;
  background-size: 240px 240px;
  opacity: 0.075;
  filter: blur(3px) saturate(0.85);
  will-change: transform;
  mix-blend-mode: lighten;
}

/* ============================================
   WARM ATMOSPHERE BACKDROP
============================================ */
.scene-warm {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 100vh;
  z-index: 0;
  pointer-events: none;
  will-change: transform;
  opacity: 0.9;
}
.warm-svg { width: 100%; height: 100%; display: block; }

.steam-wisps ellipse {
  animation: steamFloat 14s ease-in-out infinite;
}
.steam-wisps .w1 { animation-delay: 0s; }
.steam-wisps .w2 { animation-delay: -2.5s; }
.steam-wisps .w3 { animation-delay: -5s; }
.steam-wisps .w4 { animation-delay: -7s; }
.steam-wisps .w5 { animation-delay: -9.5s; }
.steam-wisps .w6 { animation-delay: -12s; }
@keyframes steamFloat {
  0%, 100% { transform: translate(0, 0); opacity: 0.4; }
  50% { transform: translate(20px, -22px); opacity: 0.75; }
}

.floating-beans ellipse {
  animation: beanFloat 18s ease-in-out infinite;
}
.floating-beans .b1 { animation-delay: 0s; }
.floating-beans .b2 { animation-delay: -3s; }
.floating-beans .b3 { animation-delay: -7s; }
.floating-beans .b4 { animation-delay: -11s; }
.floating-beans .b5 { animation-delay: -14s; }
@keyframes beanFloat {
  0%, 100% { transform: translateY(0); opacity: 0.18; }
  50% { transform: translateY(-22px); opacity: 0.3; }
}

/* ============================================
   NAV
============================================ */
.nav {
  position: fixed;
  top: 22px; left: 50%;
  transform: translateX(-50%);
  z-index: 50;
  display: flex; align-items: center; gap: 36px;
  padding: 12px 28px 12px 22px;
  background: rgba(26, 13, 7, 0.6);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  border: 1px solid rgba(245, 234, 215, 0.14);
  border-radius: 100px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.5);
  transition: padding .4s var(--ease-soft), background .4s var(--ease-soft);
}
.nav.scrolled {
  background: rgba(13, 6, 4, 0.88);
  padding: 9px 24px 9px 18px;
}
.nav-logo {
  display: flex; flex-direction: column; line-height: 1;
  padding-right: 24px;
  border-right: 1px solid var(--line);
}
.nav-logo-text {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 600;
  color: var(--cream);
}
.nav-logo-text em {
  font-style: italic;
  color: var(--copper);
}
.nav-logo-sub {
  font-size: 8px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--cream-dim);
  margin-top: 2px;
}
.nav-links {
  display: flex; gap: 24px;
  font-size: 13px;
  letter-spacing: 0.06em;
}
.nav-links a {
  color: var(--cream-dim);
  transition: color .25s ease;
}
.nav-links a:hover { color: var(--copper); }

/* ============================================
   HERO: editorial poster, centered
============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 160px 36px 80px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  z-index: 2;
}

.hero-mark {
  display: inline-flex; align-items: center; gap: 14px;
  margin-bottom: 38px;
  color: var(--copper);
  font-size: 11px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  font-weight: 500;
}
.hero-mark-line {
  width: 50px; height: 1px;
  background: var(--copper);
  opacity: 0.5;
}

.hero-title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(58px, 8vw, 132px);
  line-height: 0.96;
  letter-spacing: -0.018em;
  color: var(--cream);
  margin-bottom: 36px;
  max-width: 1100px;
}
.hero-title span {
  display: block;
  padding: 0.04em 0;
}
.hero-title em {
  font-style: italic;
  color: var(--copper);
}
.title-ornament {
  display: inline-flex !important;
  align-items: center;
  gap: 22px;
  justify-content: center;
}
.ornament-bean {
  margin-top: 0.08em;
  flex-shrink: 0;
}

.hero-tagline {
  font-size: 18px;
  color: var(--cream-dim);
  margin-bottom: 44px;
  max-width: 600px;
  line-height: 1.7;
}

.hero-actions {
  display: inline-flex; gap: 14px;
  margin-bottom: 76px;
}

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 26px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform .35s var(--ease-out), background .3s var(--ease-out), color .3s var(--ease-out), border-color .3s var(--ease-out);
  cursor: pointer;
}
.btn-solid {
  background: var(--copper);
  color: var(--bg-0);
}
.btn-solid:hover {
  background: var(--copper-glow);
  transform: translateY(-2px);
}
.btn-line {
  background: transparent;
  color: var(--cream);
  border: 1px solid var(--line-strong);
}
.btn-line:hover {
  border-color: var(--copper);
  color: var(--copper);
}

.hero-meta {
  display: flex; align-items: center; gap: 28px;
  padding: 18px 32px;
  background: rgba(13, 6, 4, 0.5);
  border: 1px solid var(--line);
  border-radius: 100px;
  backdrop-filter: blur(10px);
}
.meta-item {
  display: flex; flex-direction: column; align-items: center;
  gap: 4px;
}
.meta-label {
  font-size: 9px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--cream-faint);
}
.meta-value {
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 500;
  color: var(--cream);
}
.meta-divider {
  width: 1px;
  height: 28px;
  background: var(--line);
}

/* ============================================
   SECTION COMMON
============================================ */
.kicker {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 20px;
  font-weight: 500;
}
.section-title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(40px, 5.8vw, 84px);
  line-height: 1;
  letter-spacing: -0.012em;
  color: var(--cream);
}
.section-title em {
  font-style: italic;
  color: var(--copper);
}
.section-lead {
  margin-top: 22px;
  font-size: 17px;
  color: var(--cream-dim);
  max-width: 560px;
  line-height: 1.65;
}

/* ============================================
   STORY: three blocks + stats
============================================ */
.story {
  position: relative;
  padding: 120px 0 100px;
  z-index: 2;
}
.story-head { text-align: center; margin-bottom: 80px; }
.story-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  margin-bottom: 100px;
}
.story-block {
  padding: 36px 32px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: linear-gradient(140deg, rgba(58, 26, 16, 0.4), rgba(38, 20, 16, 0.15));
  position: relative;
  transition: transform .4s var(--ease-out), border-color .35s var(--ease-out);
}
.story-block:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 165, 116, 0.4);
}
.block-num {
  font-family: var(--font-serif);
  font-size: 14px;
  font-weight: 500;
  color: var(--copper);
  letter-spacing: 0.2em;
  display: inline-block;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 22px;
}
.story-block h3 {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 14px;
  line-height: 1;
}
.story-block p {
  color: var(--cream-dim);
  font-size: 15px;
  line-height: 1.7;
}

.story-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 36px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stat {
  text-align: center;
  padding: 12px 18px;
  border-right: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 8px;
}
.stat:last-child { border-right: 0; }
.stat-num {
  font-family: var(--font-serif);
  font-size: 52px;
  font-weight: 500;
  color: var(--copper);
  line-height: 1;
}
.stat-label {
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--cream-faint);
}

/* ============================================
   MENU: staggered grid (masonry-feel)
============================================ */
.menu {
  position: relative;
  padding: 100px 0;
  z-index: 2;
}
.menu-head {
  margin-bottom: 70px;
  max-width: 720px;
}
.menu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.menu-card {
  display: flex; flex-direction: column;
  background: transparent;
  border-radius: 18px;
  overflow: hidden;
  transition: transform .45s var(--ease-out);
}
.menu-card:hover {
  transform: translateY(-6px);
}
.card-img {
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--bg-2);
  border-radius: 18px;
  margin-bottom: 18px;
  position: relative;
}
.card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(13, 6, 4, 0.55));
  pointer-events: none;
  opacity: 0;
  transition: opacity .4s var(--ease-out);
}
.menu-card:hover .card-img::after { opacity: 1; }
.card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease-out);
}
.menu-card:hover .card-img img { transform: scale(1.06); }

.card-info {
  padding: 0 4px;
  display: flex; flex-direction: column; gap: 6px;
}
.card-tag {
  font-size: 9px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--copper);
  align-self: flex-start;
  margin-bottom: 4px;
}
.menu-card h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--cream);
  line-height: 1.2;
  letter-spacing: -0.005em;
}
.menu-card p {
  font-size: 13px;
  color: var(--cream-dim);
  line-height: 1.55;
}

/* ============================================
   BREWING
============================================ */
.brewing {
  position: relative;
  padding: 100px 0;
  z-index: 2;
}
.brewing-head { margin-bottom: 70px; max-width: 700px; }
.brewing-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.step {
  position: relative;
  padding: 0 28px;
  display: flex; flex-direction: column; gap: 12px;
}
.step:first-child { padding-left: 0; }
.step:last-child { padding-right: 0; }
.step-line {
  position: absolute;
  top: 22px;
  right: -10px;
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, var(--copper) 30%, transparent);
  opacity: 0.4;
}
.step-num {
  font-family: var(--font-serif);
  font-size: 14px;
  font-style: italic;
  color: var(--copper);
  letter-spacing: 0.2em;
  display: inline-flex;
  width: 44px; height: 44px;
  border-radius: 50%;
  align-items: center; justify-content: center;
  background: rgba(212, 165, 116, 0.1);
  border: 1px solid rgba(212, 165, 116, 0.3);
  margin-bottom: 6px;
}
.step h4 {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 500;
  color: var(--cream);
}
.step p {
  color: var(--cream-dim);
  font-size: 14px;
  line-height: 1.7;
}

/* ============================================
   VISIT
============================================ */
.visit {
  position: relative;
  padding: 100px 0;
  z-index: 2;
}
.visit-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  background: linear-gradient(140deg, rgba(58, 26, 16, 0.5), rgba(38, 20, 16, 0.2));
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 60px;
  overflow: hidden;
}
.visit-text { display: flex; flex-direction: column; }
.visit-text .section-title { margin-bottom: 22px; }
.visit-text p {
  color: var(--cream-dim);
  font-size: 17px;
  line-height: 1.65;
  margin-bottom: 32px;
  max-width: 480px;
}
.visit-info {
  list-style: none;
  margin-bottom: 36px;
}
.visit-info li {
  display: flex; align-items: baseline; gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}
.visit-info span {
  flex: 0 0 90px;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--cream-faint);
}
.visit-info strong {
  flex: 1;
  color: var(--cream);
  font-weight: 500;
  font-family: var(--font-serif);
  font-size: 18px;
}
.visit-text .btn { align-self: flex-start; }

.visit-image {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 20px;
  overflow: hidden;
}
.visit-image img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.visit-image-overlay {
  position: absolute;
  bottom: 26px; left: 26px;
  color: var(--cream);
  display: flex; flex-direction: column;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.6);
}
.visit-image-overlay span {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 600;
  line-height: 1;
}
.visit-image-overlay small {
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  margin-top: 4px;
  opacity: 0.85;
}

/* ============================================
   SOCIAL
============================================ */
.social {
  position: relative;
  padding: 100px 0 130px;
  z-index: 2;
}
.social-head {
  text-align: center;
  margin-bottom: 60px;
}
.social-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  max-width: 880px;
  margin: 0 auto;
}
.social-card {
  display: flex; align-items: center; gap: 18px;
  padding: 24px 28px;
  background: linear-gradient(140deg, rgba(58, 26, 16, 0.5), rgba(38, 20, 16, 0.2));
  border: 1px solid var(--line);
  border-radius: 20px;
  transition: transform .4s var(--ease-out), border-color .35s var(--ease-out);
}
.social-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 165, 116, 0.4);
}
.social-icon {
  width: 56px; height: 56px;
  display: grid; place-items: center;
  border-radius: 14px;
  background: rgba(212, 165, 116, 0.08);
  color: var(--copper);
  flex-shrink: 0;
  transition: background .35s var(--ease-out), color .35s var(--ease-out);
}
.social-card:hover .social-icon {
  background: var(--copper);
  color: var(--bg-0);
}
.social-meta {
  display: flex; flex-direction: column; flex: 1;
}
.social-label {
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--cream-faint);
  margin-bottom: 4px;
}
.social-handle {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 500;
  color: var(--cream);
}
.social-go {
  font-family: var(--font-serif);
  font-size: 24px;
  color: var(--cream-dim);
  transition: transform .35s var(--ease-out), color .25s ease;
}
.social-card:hover .social-go {
  color: var(--copper);
  transform: translateX(6px);
}

.social-feed {
  margin: 60px auto 0;
  max-width: 880px;
  text-align: center;
}
.social-feed-label {
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--cream-faint);
  margin-bottom: 18px;
}
.social-feed-frame {
  width: 100%;
  min-height: 200px;
  padding: 18px;
  border-radius: 20px;
  background: linear-gradient(140deg, rgba(58, 26, 16, 0.3), rgba(38, 20, 16, 0.1));
  border: 1px solid var(--line);
}
.social-feed-frame behold-widget {
  display: block;
  width: 100%;
}

/* ============================================
   FOOTER
============================================ */
.footer {
  position: relative;
  background: var(--bg-deepest);
  border-top: 1px solid var(--line);
  z-index: 3;
}
.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 60px 36px 40px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
}
.footer-brand { max-width: 360px; }
.footer-logo {
  font-family: var(--font-serif);
  font-size: 30px;
  font-weight: 600;
  color: var(--cream);
  letter-spacing: 0.01em;
  margin-bottom: 6px;
}
.footer-logo em {
  font-style: italic;
  color: var(--copper);
}
.footer-logo span {
  display: block;
  font-size: 9px;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--cream-dim);
  margin-top: 4px;
}
.footer-tagline {
  margin-top: 16px;
  font-size: 14px;
  color: var(--cream-dim);
  font-style: italic;
  font-family: var(--font-serif);
}
.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.footer-col h5 {
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--copper);
  font-weight: 500;
  margin-bottom: 14px;
}
.footer-col p, .footer-col a {
  display: block;
  font-size: 13px;
  color: var(--cream-dim);
  line-height: 1.8;
  transition: color .25s ease;
}
.footer-col a:hover { color: var(--cream); }
.footer-bottom {
  max-width: var(--container);
  margin: 0 auto;
  padding: 24px 36px;
  border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 14px;
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--cream-faint);
}

/* CKYS imza */
.ckys-mark {
  display: inline-block;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: rgba(245, 234, 215, 0.28);
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.04),
    0 -1px 1px rgba(0, 0, 0, 0.55);
  -webkit-text-stroke: 0.3px rgba(0, 0, 0, 0.4);
  padding: 2px 4px;
  border-radius: 4px;
  cursor: default;
  transition: color .35s var(--ease-out), text-shadow .45s var(--ease-out), letter-spacing .4s var(--ease-out);
}
.ckys-mark:hover {
  color: var(--copper);
  -webkit-text-stroke: 0px transparent;
  letter-spacing: 0.22em;
  text-shadow:
    0 0 4px rgba(212, 165, 116, 0.7),
    0 0 12px rgba(212, 165, 116, 0.55),
    0 0 22px rgba(212, 165, 116, 0.35),
    0 0 36px rgba(212, 165, 116, 0.2);
}

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 1100px) {
  .menu-grid { grid-template-columns: repeat(3, 1fr); }
  .story-grid { grid-template-columns: 1fr; }
  .brewing-steps { grid-template-columns: repeat(2, 1fr); gap: 36px 28px; }
  .step-line { display: none; }
  .visit-card { grid-template-columns: 1fr; padding: 40px; }
}

@media (max-width: 900px) {
  .nav { gap: 14px; padding: 9px 16px; top: 16px; }
  .nav-links { gap: 14px; font-size: 12px; }
  .nav-logo { padding-right: 14px; }
  .nav-logo-text { font-size: 19px; }
  .nav-logo-sub { font-size: 7px; letter-spacing: 0.36em; }

  .hero { padding: 140px 24px 70px; }
  .hero-meta { flex-wrap: wrap; justify-content: center; gap: 14px; padding: 16px 22px; }
  .meta-divider { display: none; }
  .hero-actions { flex-wrap: wrap; justify-content: center; }

  .story { padding: 80px 0 70px; }
  .story-stats { grid-template-columns: repeat(2, 1fr); }
  .stat { border-right: 0; border-bottom: 1px solid var(--line); padding: 22px; }
  .stat:nth-child(3), .stat:nth-child(4) { border-bottom: 0; }
  .stat:nth-child(odd) { border-right: 1px solid var(--line); }

  .menu { padding: 70px 0; }
  .visit { padding: 70px 0; }
  .brewing { padding: 70px 0; }
  .social { padding: 70px 0 90px; }

  .footer-inner { grid-template-columns: 1fr; padding: 50px 24px 30px; gap: 36px; }
  .footer-bottom { padding: 22px 24px; text-align: center; justify-content: center; }
  .container { padding: 0 24px; }
}

@media (max-width: 760px) {
  /* Menu becomes a horizontal swipe carousel */
  .menu-grid {
    display: flex;
    grid-template-columns: none;
    gap: 14px;
    overflow-x: auto;
    overflow-y: visible;
    scroll-snap-type: x mandatory;
    margin: 0 -24px;
    padding: 4px 24px 22px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .menu-grid::-webkit-scrollbar { display: none; }
  .menu-card {
    flex: 0 0 75%;
    max-width: 340px;
    scroll-snap-align: start;
  }
  .menu-card .card-img { aspect-ratio: 4/5; }
  /* Hint that there's more */
  .menu-head::after {
    content: '← Kaydır →';
    display: block;
    font-size: 10px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--cream-faint);
    margin-top: 14px;
  }
}

@media (max-width: 600px) {
  .brewing-steps { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: repeat(2, 1fr); }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn { justify-content: center; }
  .ornament-bean { display: none; }

  /* Tighter nav on phones */
  .nav { gap: 10px; padding: 8px 14px; top: 12px; }
  .nav-logo-text { font-size: 17px; }
  .nav-logo-sub { display: none; }
  .nav-links { gap: 10px; font-size: 11px; }
  .nav-logo { padding-right: 10px; }

  /* Tighter hero meta for small screens */
  .meta-label { font-size: 10px; letter-spacing: 0.32em; }
  .meta-value { font-size: 15px; }
  .hero-meta { gap: 10px; padding: 14px 18px; }

  /* Visit info: stack label above value when very narrow */
  .visit-info li { flex-wrap: wrap; gap: 6px; }
  .visit-info span { flex: 0 0 100%; }
  .visit-info strong { font-size: 16px; }
  .visit-card { padding: 32px 26px; gap: 32px; }

  /* Closing brand a touch smaller */
  .closing-brand { font-size: 30px; }

  /* Brewing step tighter padding */
  .step { padding: 0 14px; }

  /* Footer bottom centered & smaller text */
  .footer-bottom { font-size: 10px; }

  /* Section titles slightly tighter line-height */
  .section-title { letter-spacing: -0.02em; }

  /* Hero tagline */
  .hero-tagline { font-size: 16px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
