/* ============================================================
   KALA COFFEEHOUSE — styles
   Palette: warm cream, espresso, latte, sage
   Type: Fraunces (display) + Karla (body)
   ============================================================ */

:root {
  --cream: #FAF5EC;
  --cream-2: #F3EADC;
  --espresso: #2A1D13;
  --espresso-2: #1F150D;
  --coffee: #4A3220;
  --latte: #B98A5E;
  --caramel: #C9A06B;
  --sage: #97A98C;
  --sage-soft: #E4E8DC;
  --ink: #241A12;
  --warm-white: #FFFDF8;
  --shadow: 0 18px 50px -18px rgba(42, 29, 19, 0.25);

  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Karla", -apple-system, sans-serif;

  --nav-h: 78px;
  --radius: 18px;
  --container: 1180px;
}

/* ---------- base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }
html.lenis { height: auto; scroll-behavior: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  font-size: 17px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* subtle paper grain over everything */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='0.6'/%3E%3C/svg%3E");
}

img, svg, iframe { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; background: none; border: 0; cursor: pointer; color: inherit; }
sup { font-size: 0.7em; color: var(--latte); }

.container {
  width: min(var(--container), 100% - 48px);
  margin-inline: auto;
}

/* ---------- shared bits ---------- */
.eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--latte);
  margin-bottom: 18px;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(34px, 4.6vw, 58px);
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--espresso);
  margin-bottom: 22px;
}
.section-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--latte);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--espresso);
  color: var(--cream);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.04em;
  padding: 17px 34px;
  border-radius: 999px;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), background 0.3s, box-shadow 0.35s;
  box-shadow: var(--shadow);
}
.btn:hover { transform: translateY(-3px); background: var(--coffee); box-shadow: 0 24px 55px -16px rgba(42, 29, 19, 0.38); }
.btn--small { padding: 11px 22px; font-size: 13.5px; box-shadow: none; }

/* [data-reveal] elements are hidden via GSAP at runtime so the page
   stays fully visible without JavaScript */
[data-reveal] { will-change: transform, opacity; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.4s, box-shadow 0.4s, transform 0.4s;
}
.nav.is-scrolled {
  background: rgba(250, 245, 236, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(42, 29, 19, 0.08);
}
.nav__inner {
  width: min(var(--container), 100% - 48px);
  margin-inline: auto;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav__brand { display: flex; flex-direction: column; line-height: 1; margin-right: auto; }
.nav__brand-kala {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 27px;
  letter-spacing: 0.34em;
  color: var(--espresso);
}
.nav__brand-sub {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.46em;
  color: var(--latte);
  margin-top: 5px;
}
.nav__links { display: flex; gap: 30px; }
.nav__links a {
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
  position: relative;
  padding: 6px 0;
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 2px;
  background: var(--latte);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.nav__links a:hover::after { transform: scaleX(1); transform-origin: left; }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 7px;
  padding: 10px;
}
.nav__burger span {
  display: block;
  width: 28px; height: 2.5px;
  background: var(--espresso);
  border-radius: 2px;
  transition: transform 0.35s, opacity 0.35s;
}
.nav__burger.is-open span:nth-child(1) { transform: translateY(4.75px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { transform: translateY(-4.75px) rotate(-45deg); }

/* invert nav chrome while the dark overlay menu is open */
body.menu-open .nav { background: none; box-shadow: none; backdrop-filter: none; -webkit-backdrop-filter: none; }
body.menu-open .nav__brand-kala { color: var(--cream); }
body.menu-open .nav__burger span { background: var(--cream); }

/* mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--espresso);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.45s, visibility 0.45s;
}
.mobile-menu.is-open { opacity: 1; visibility: visible; }
.mobile-menu__links { display: flex; flex-direction: column; gap: 8px; text-align: center; }
.mobile-menu__links a {
  font-family: var(--font-display);
  font-size: clamp(34px, 9vw, 52px);
  color: var(--cream);
  padding: 6px 20px;
  opacity: 0;
  transform: translateY(28px);
  transition: color 0.3s;
}
.mobile-menu.is-open .mobile-menu__links a {
  opacity: 1;
  transform: none;
  transition: opacity 0.5s cubic-bezier(0.22,1,0.36,1), transform 0.5s cubic-bezier(0.22,1,0.36,1), color 0.3s;
}
.mobile-menu.is-open .mobile-menu__links a:nth-child(1) { transition-delay: 0.10s; }
.mobile-menu.is-open .mobile-menu__links a:nth-child(2) { transition-delay: 0.17s; }
.mobile-menu.is-open .mobile-menu__links a:nth-child(3) { transition-delay: 0.24s; }
.mobile-menu.is-open .mobile-menu__links a:nth-child(4) { transition-delay: 0.31s; }
.mobile-menu.is-open .mobile-menu__links a:nth-child(5) { transition-delay: 0.38s; }
.mobile-menu__links a:hover { color: var(--caramel); }
.mobile-menu__phone { font-size: 22px !important; color: var(--caramel) !important; margin-top: 18px; font-family: var(--font-body) !important; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--nav-h) + 30px) 0 70px;
  background:
    radial-gradient(1100px 600px at 85% 15%, rgba(228, 232, 220, 0.55), transparent 60%),
    radial-gradient(900px 700px at 5% 90%, rgba(201, 160, 107, 0.16), transparent 55%),
    var(--cream);
  overflow: hidden;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 40px;
}

/* hero copy fades in via GSAP; visible by default for no-JS */

.hero__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(58px, 8.6vw, 124px);
  line-height: 0.98;
  letter-spacing: -0.015em;
  color: var(--espresso);
  margin: 0 0 28px;
}
.hero__title em { font-style: italic; font-weight: 400; color: var(--latte); }
.hero__title .line { display: block; overflow: hidden; padding-bottom: 0.08em; margin-bottom: -0.08em; }
.hero__title .line-inner { display: inline-block; will-change: transform; }

.hero__sub {
  font-size: clamp(17px, 1.5vw, 20px);
  max-width: 480px;
  color: rgba(36, 26, 18, 0.78);
  margin-bottom: 38px;
}

.hero__actions { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }

.hero__rating {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 14.5px;
  color: rgba(36, 26, 18, 0.75);
  transition: transform 0.3s;
}
.hero__rating:hover { transform: translateY(-2px); }
.hero__rating strong { font-size: 16px; color: var(--espresso); }
.hero__stars { color: var(--caramel); letter-spacing: 3px; font-size: 15px; }

.hero__art { position: relative; }
.hero-cup { width: min(100%, 560px); margin-inline: auto; filter: drop-shadow(0 30px 40px rgba(42, 29, 19, 0.18)); }

/* floating beans */
.hero__floats { position: absolute; inset: 0; pointer-events: none; }
.float-bean {
  position: absolute;
  width: var(--w, 40px);
  transform: rotate(var(--r, 0deg));
  opacity: 0.85;
  will-change: transform;
}

/* scroll cue */
.hero__scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.hero__scroll-text {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(36, 26, 18, 0.55);
}
.hero__scroll-line {
  width: 2px; height: 46px;
  background: rgba(36, 26, 18, 0.2);
  position: relative;
  overflow: hidden;
  border-radius: 2px;
}
.hero__scroll-line::after {
  content: "";
  position: absolute;
  top: -50%; left: 0;
  width: 100%; height: 50%;
  background: var(--latte);
  animation: scroll-drip 1.8s cubic-bezier(0.65, 0, 0.35, 1) infinite;
}
@keyframes scroll-drip { to { top: 110%; } }

/* ============================================================
   BEAN-DROP SCENE (pinned)
   ============================================================ */
.scene {
  background:
    radial-gradient(900px 500px at 50% 88%, rgba(201, 160, 107, 0.14), transparent 60%),
    var(--espresso-2);
  color: var(--cream);
}
.scene__pin {
  height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.scene__title {
  position: absolute;
  top: 13%;
  left: 0; right: 0;
  text-align: center;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(26px, 3.4vw, 44px);
  color: var(--caramel);
  opacity: 0;
  transform: translateY(30px);
}

.scene__stage { width: min(86vw, 700px); }
.scene__svg { width: 100%; height: auto; overflow: visible; }

.scene-bean { will-change: transform; }
.splash-drop { opacity: 0; }
.ripple { opacity: 0; transform-origin: 450px 396px; }
.steam-path { opacity: 0; }

.scene__captions {
  position: absolute;
  bottom: 14%;
  left: 0; right: 0;
  text-align: center;
  pointer-events: none;
}
.scene-caption {
  position: absolute;
  left: 0; right: 0;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(250, 245, 236, 0.85);
  opacity: 0;
  transform: translateY(20px);
}

.scene__final {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.15;
  color: var(--cream);
  background: rgba(31, 21, 13, 0.6);
  backdrop-filter: blur(2px);
  opacity: 0;
  padding: 24px;
}
.scene__final span {
  display: block;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(15px, 1.6vw, 19px);
  color: var(--caramel);
  letter-spacing: 0.04em;
  margin-top: 20px;
}

/* static fallback when motion is reduced */
html.no-motion .scene__pin { height: auto; padding: 110px 0; }
html.no-motion .scene__title,
html.no-motion .steam-path { opacity: 1; transform: none; }
html.no-motion .scene__final { position: static; opacity: 1; background: none; backdrop-filter: none; margin-top: 40px; }
html.no-motion .scene-bean { display: none; }
html.no-motion .scene__captions { display: none; }

/* ============================================================
   ABOUT
   ============================================================ */
.about { padding: 130px 0 110px; background: var(--cream); }

.about__lead {
  font-size: clamp(17px, 1.6vw, 20px);
  max-width: 640px;
  color: rgba(36, 26, 18, 0.75);
  margin-bottom: 64px;
}

.about__pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-bottom: 80px;
}
.pillar {
  background: var(--warm-white);
  border: 1px solid rgba(42, 29, 19, 0.07);
  border-radius: var(--radius);
  padding: 38px 32px;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.45s;
}
.pillar:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.pillar__icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: var(--sage-soft);
  color: var(--coffee);
  display: grid;
  place-items: center;
  margin-bottom: 22px;
}
.pillar__icon svg { width: 30px; height: 30px; }
.pillar h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 23px;
  color: var(--espresso);
  margin-bottom: 10px;
}
.pillar p { font-size: 15.5px; color: rgba(36, 26, 18, 0.72); }

.about__quote {
  border-left: 3px solid var(--caramel);
  padding: 8px 0 8px 34px;
  margin-bottom: 80px;
  max-width: 760px;
}
.about__quote p {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(22px, 2.6vw, 32px);
  line-height: 1.35;
  color: var(--coffee);
}

.about__partners-label {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(36, 26, 18, 0.45);
  margin-bottom: 22px;
}
.about__partners-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 40px;
}
.about__partners-row span {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 19px;
  color: var(--espresso);
  display: flex;
  flex-direction: column;
}
.about__partners-row small {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--latte);
  margin-top: 3px;
}

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee {
  background: var(--espresso);
  padding: 26px 0;
  overflow: hidden;
  transform: rotate(-1.2deg) scale(1.02);
}
.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee 30s linear infinite;
}
.marquee__track span {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 26px;
  color: var(--cream);
  white-space: nowrap;
  padding-right: 12px;
}
@keyframes marquee { to { transform: translateX(-50%); } }
html.no-motion .marquee__track { animation: none; }

/* ============================================================
   MENU
   ============================================================ */
.menu { padding: 130px 0 110px; background: var(--cream-2); }

.menu__lead {
  font-size: clamp(16px, 1.5vw, 19px);
  max-width: 620px;
  color: rgba(36, 26, 18, 0.72);
  margin-bottom: 48px;
}

.menu__tabs {
  display: inline-flex;
  gap: 6px;
  background: rgba(42, 29, 19, 0.07);
  border-radius: 999px;
  padding: 6px;
  margin-bottom: 42px;
}
.menu__tab {
  padding: 13px 30px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  color: rgba(36, 26, 18, 0.6);
  transition: color 0.3s, background 0.3s, box-shadow 0.3s;
}
.menu__tab.is-active {
  background: var(--espresso);
  color: var(--cream);
  box-shadow: 0 10px 24px -10px rgba(42, 29, 19, 0.5);
}

.menu__panel[hidden] { display: none; }

.menu__panel-note {
  font-size: 14.5px;
  font-style: italic;
  color: rgba(36, 26, 18, 0.6);
  margin-bottom: 28px;
}

.menu__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.menu-card {
  position: relative;
  background: var(--warm-white);
  border: 1px solid rgba(42, 29, 19, 0.07);
  border-radius: var(--radius);
  padding: 30px 28px;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s, border-color 0.4s;
  overflow: hidden;
}
.menu-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--caramel), var(--latte));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.menu-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: rgba(201, 160, 107, 0.45); }
.menu-card:hover::before { transform: scaleX(1); }

.menu-card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 21px;
  color: var(--espresso);
  margin-bottom: 8px;
  padding-right: 20px;
}
.menu-card p { font-size: 15px; color: rgba(36, 26, 18, 0.7); }
.menu-card__addons {
  margin-top: 12px;
  font-size: 13px !important;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--latte) !important;
}

.menu-card--feature { background: var(--espresso); border-color: var(--espresso); }
.menu-card--feature h3 { color: var(--cream); }
.menu-card--feature p { color: rgba(250, 245, 236, 0.78); }
.menu-card--feature .menu-card__addons { color: var(--caramel) !important; }
.menu-card__badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--espresso);
  background: var(--caramel);
  border-radius: 999px;
  padding: 5px 13px;
  margin-bottom: 16px;
}

.menu__footnote {
  margin-top: 36px;
  font-size: 13.5px;
  color: rgba(36, 26, 18, 0.55);
}

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews { padding: 130px 0 110px; background: var(--cream); }

.reviews__score {
  display: flex;
  align-items: center;
  gap: 26px;
  margin: 10px 0 56px;
}
.reviews__big {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(64px, 8vw, 104px);
  line-height: 1;
  color: var(--espresso);
}
.reviews__score-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 15.5px;
  color: rgba(36, 26, 18, 0.7);
}
.reviews__stars { position: relative; font-size: 26px; letter-spacing: 4px; line-height: 1; display: inline-block; }
.reviews__stars-bg { color: rgba(42, 29, 19, 0.16); }
.reviews__stars-fill {
  position: absolute;
  top: 0; left: 0;
  width: 94%;
  overflow: hidden;
  white-space: nowrap;
  color: var(--caramel);
}

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
  margin-bottom: 44px;
}
.review-card {
  background: var(--warm-white);
  border: 1px solid rgba(42, 29, 19, 0.07);
  border-radius: var(--radius);
  padding: 36px 32px;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.45s;
}
.review-card:hover { transform: translateY(-7px); box-shadow: var(--shadow); }
.review-card--center { background: var(--espresso); border-color: var(--espresso); }
.review-card--center blockquote { color: rgba(250, 245, 236, 0.92) !important; }
.review-card--center figcaption strong { color: var(--cream) !important; }
.review-card--center figcaption span { color: var(--caramel) !important; }

.review-card blockquote {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 18.5px;
  line-height: 1.5;
  color: var(--coffee);
  margin-bottom: 24px;
}
.review-card figcaption { display: flex; flex-direction: column; gap: 2px; }
.review-card figcaption strong { font-size: 15px; color: var(--espresso); }
.review-card figcaption span { font-size: 13px; color: rgba(36, 26, 18, 0.5); }

.reviews__chips { display: flex; flex-wrap: wrap; gap: 12px; }
.reviews__chips span {
  font-size: 14px;
  font-weight: 600;
  color: var(--coffee);
  background: rgba(201, 160, 107, 0.16);
  border: 1px solid rgba(201, 160, 107, 0.35);
  border-radius: 999px;
  padding: 9px 20px;
}

/* ============================================================
   VISIT
   ============================================================ */
.visit { padding: 130px 0; background: var(--espresso-2); color: var(--cream); }
.visit .eyebrow { color: var(--caramel); }
.visit .section-title { color: var(--cream); }
.visit .section-title em { color: var(--caramel); }

.visit__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: start;
}

.visit__tip {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: rgba(201, 160, 107, 0.1);
  border: 1px solid rgba(201, 160, 107, 0.3);
  border-radius: var(--radius);
  padding: 22px 24px;
  margin: 10px 0 40px;
}
.visit__tip span { font-size: 26px; line-height: 1.2; }
.visit__tip p { font-size: 15px; color: rgba(250, 245, 236, 0.8); }
.visit__tip strong { color: var(--cream); }

.visit__details {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 36px;
  justify-content: start;
}
.visit__block h3 {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--caramel);
  margin-bottom: 14px;
}
.visit__block p { font-size: 15.5px; color: rgba(250, 245, 236, 0.85); }

.visit__hours { border-collapse: collapse; font-size: 15.5px; }
.visit__hours td { padding: 3px 0; color: rgba(250, 245, 236, 0.85); }
.visit__hours td:first-child { padding-right: 22px; color: rgba(250, 245, 236, 0.55); }

.visit__link {
  display: inline-block;
  margin-top: 10px;
  font-weight: 700;
  font-size: 15px;
  color: var(--caramel);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s;
}
.visit__link:hover { border-color: var(--caramel); }

.visit__chips { display: flex; gap: 8px; margin-top: 14px; flex-wrap: wrap; }
.visit__chips span {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  border: 1px solid rgba(250, 245, 236, 0.25);
  border-radius: 999px;
  padding: 6px 14px;
  color: rgba(250, 245, 236, 0.75);
}

.visit__map {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 30px 70px -30px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(250, 245, 236, 0.12);
  background: #211610;
}
.visit__map iframe { position: relative; z-index: 1; width: 100%; height: 480px; border: 0; filter: saturate(0.85); }
.visit__map-fallback {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  text-align: center;
}
.visit__map-bean { width: 44px; opacity: 0.7; }
.visit__map-fallback p {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--cream);
  line-height: 1.5;
}
.visit__map-fallback p span {
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(250, 245, 236, 0.6);
}
.visit__map-open {
  position: absolute;
  z-index: 2;
  left: 18px;
  bottom: 18px;
  background: var(--espresso);
  color: var(--cream);
  font-weight: 700;
  font-size: 13.5px;
  padding: 11px 20px;
  border-radius: 999px;
  box-shadow: 0 10px 30px -8px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(250, 245, 236, 0.18);
  transition: transform 0.3s, background 0.3s;
}
.visit__map-open:hover { transform: translateY(-2px); background: var(--coffee); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: #160E08; color: rgba(250, 245, 236, 0.75); padding: 70px 0 30px; }
.footer__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(250, 245, 236, 0.1);
}
.footer__wordmark {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 30px;
  letter-spacing: 0.32em;
  color: var(--cream);
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.footer__wordmark span {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.46em;
  color: var(--caramel);
  margin-top: 6px;
}
.footer__tagline {
  margin-top: 16px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 17px;
  color: rgba(250, 245, 236, 0.55);
}
.footer__nav { display: flex; flex-direction: column; gap: 10px; }
.footer__nav a, .footer__social a { transition: color 0.3s; font-size: 15px; }
.footer__nav a:hover, .footer__social a:hover, .footer__contact a:hover { color: var(--caramel); }
.footer__contact p { font-size: 15px; margin-bottom: 6px; }
.footer__social { display: flex; gap: 18px; margin-top: 14px; }
.footer__social a { font-weight: 700; color: var(--cream); }
.footer__legal {
  text-align: center;
  font-size: 13px;
  color: rgba(250, 245, 236, 0.4);
  padding-top: 26px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .hero__grid { grid-template-columns: 1fr; gap: 10px; }
  .hero__art { order: -1; }
  .hero-cup { width: min(58vw, 360px); }
  .hero__title { font-size: clamp(54px, 11vw, 92px); }
  .hero__scroll { display: none; }
  .hero__floats { display: none; }

  .about__pillars { grid-template-columns: 1fr; }
  .reviews__grid { grid-template-columns: 1fr; }
  .visit__grid { grid-template-columns: 1fr; gap: 44px; }
  .visit__map iframe { height: 360px; }
  .footer__grid { grid-template-columns: 1fr; gap: 34px; }
}

@media (max-width: 760px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }

  .hero { padding-top: calc(var(--nav-h) + 10px); }
  .hero__actions { gap: 18px; }

  .visit__details { grid-template-columns: 1fr; gap: 28px; }

  .menu__tabs { width: 100%; }
  .menu__tab { flex: 1; padding: 13px 10px; text-align: center; }

  .scene__captions { bottom: 10%; }
  .scene-caption { font-size: 12.5px; letter-spacing: 0.2em; padding: 0 24px; }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
