/* =========================================
   DERIO CAFÉ — Design Tokens & Globals
   ========================================= */

:root {
  /* DE RIO Brand Palette (from official guidelines) */
  --coffee-dark: #3B2414;   /* Primary brand brown */
  --coffee:      #865B39;   /* Medium coffee brown */
  --sage:        #BAB58D;   /* Tertiary sage / moody-cup yellow */
  --ink:         #000000;   /* Black */
  --white:       #FFFFFF;   /* White */

  /* Functional surfaces — derived from the palette */
  --cream:       #FAF7F0;   /* Off-white surface */
  --cream-soft:  #F0EAD9;   /* Soft cream */
  --ink-soft:    #1a1208;   /* Deep softened black */
  --coffee-light: #A87A52;  /* Lighter accent for highlights */
  --line:        rgba(59, 36, 20, 0.14);
  --line-dark:   rgba(250, 247, 240, 0.14);

  /* Typography — Sour Gummy (primary display) + Zain (secondary body) */
  --font-display: 'Sour Gummy', 'Comic Sans MS', system-ui, sans-serif;
  --font-body:    'Zain', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-serif:   'Sour Gummy', Georgia, 'Times New Roman', serif;

  /* Layout */
  --container: 1280px;
  --gutter: clamp(20px, 4vw, 48px);
  --section-pad: clamp(64px, 10vw, 140px);

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-snap: cubic-bezier(0.32, 0.72, 0, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 17px; /* Zain reads a touch narrow at 16 */
  background: var(--cream);
  color: var(--coffee-dark);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* ===========================
   SITE LOADER — logo splash
   =========================== */
html.is-loading {
  overflow: hidden;
}
html.is-loading body {
  overflow: hidden;
}
html.is-loading body > :not(#site-loader):not(.modal-backdrop):not(.hero) {
  opacity: 0;
  pointer-events: none;
}
.site-loader {
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  background: var(--coffee-dark);
  transition: opacity 0.55s var(--ease), visibility 0.55s var(--ease);
}
.site-loader--out {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.site-loader-logo {
  width: clamp(200px, 34vw, 300px);
  height: auto;
  animation: loaderBreathe 2.4s ease-in-out infinite;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.35));
}
.site-loader-tagline {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--sage);
  animation: loaderTagline 2.4s ease-in-out infinite;
}
.site-loader-dots {
  display: flex;
  gap: 8px;
  margin-top: -8px;
}
.site-loader-dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sage);
  animation: loaderDot 1.2s ease-in-out infinite;
}
.site-loader-dots span:nth-child(2) { animation-delay: 0.15s; }
.site-loader-dots span:nth-child(3) { animation-delay: 0.3s; }
@keyframes loaderBreathe {
  0%, 100% { transform: scale(1); opacity: 0.88; }
  50% { transform: scale(1.05); opacity: 1; }
}
@keyframes loaderTagline {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}
@keyframes loaderDot {
  0%, 80%, 100% { transform: scale(0.65); opacity: 0.35; }
  40% { transform: scale(1); opacity: 1; }
}
html.is-loaded body > :not(#site-loader):not(.modal-backdrop):not(.hero) {
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.4s var(--ease);
}

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

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

/* ===== Typographic primitives ===== */
.eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--coffee);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 24px;
  height: 1.5px;
  background: var(--coffee);
}
.display {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.015em;
}
.serif-italic {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 999px;
  transition: all 0.35s var(--ease);
  position: relative;
  overflow: hidden;
}
.btn-primary {
  background: var(--ink);
  color: var(--cream);
}
.btn-primary:hover { background: var(--coffee-dark); transform: translateY(-2px); }
.btn-secondary {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
}
.btn-secondary:hover { background: var(--ink); color: var(--cream); }
.btn-coffee {
  background: var(--coffee);
  color: var(--cream);
}
.btn-coffee:hover { background: var(--coffee-dark); }
.btn-arrow::after { content: "→"; font-size: 14px; transition: transform 0.3s var(--ease); }
.btn-arrow:hover::after { transform: translateX(4px); }

/* ===========================
   NAVIGATION
   =========================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 24px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.45s var(--ease);
  background: transparent;
}
.nav.scrolled {
  background: rgba(247, 242, 234, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 14px var(--gutter);
  border-bottom: 1px solid var(--line);
}
.nav-logo img { height: 72px; transition: height 0.35s var(--ease); }
.nav.scrolled .nav-logo img { height: 48px; }
.nav-logo-light { display: none; }
.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
  align-items: center;
}
.nav-links a {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  position: relative;
  padding: 6px 0;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1.5px;
  background: var(--coffee);
  transition: width 0.3s var(--ease);
}
.nav-links a:hover::after { width: 100%; }
.nav-actions { display: flex; align-items: center; gap: 16px; }
.nav-city-chip {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 6px 12px;
  border: 1px solid var(--ink);
  border-radius: 20px;
  text-transform: uppercase;
}
.nav-toggle { display: none; }
.nav .btn { padding: 10px 18px; font-size: 11px; }

@media (max-width: 900px) {
  .nav-links, .nav-actions .btn, .nav-actions .nav-city-chip { display: none; }
  .nav-toggle {
    display: block;
    width: 42px; height: 42px;
    border-radius: 50%;
    background: var(--ink);
    color: var(--cream);
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

/* Mobile menu overlay */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--ink);
  color: var(--cream);
  z-index: 200;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 28px;
  transform: translateY(-100%);
  transition: transform 0.5s var(--ease);
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 36px;
  letter-spacing: -0.02em;
}
.mobile-menu-close {
  position: absolute;
  top: 24px; right: 24px;
  color: var(--cream);
  font-size: 24px;
}

/* ===========================
   HERO
   =========================== */
.hero {
  min-height: 100vh;
  padding: 140px var(--gutter) 110px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 60% 50% at 78% 35%, rgba(134, 91, 57, 0.10), transparent 65%),
    var(--cream);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 30px;
  align-items: center;
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
}
.hero-content { position: relative; z-index: 2; }
.hero-cities {
  display: flex;
  gap: 14px;
  margin-bottom: 28px;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
}
.hero-city {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.hero-city::before {
  content: "";
  width: 6px; height: 6px;
  background: var(--coffee);
  border-radius: 50%;
}
.hero-cities .divider { opacity: 0.3; }

.hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(52px, 9vw, 120px);
  line-height: 0.95;
  letter-spacing: -0.015em;
  margin-bottom: 28px;
  color: var(--coffee-dark);
}
.hero h1 em {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  color: var(--coffee);
  letter-spacing: -0.005em;
}

.hero-tag {
  font-size: 18px;
  line-height: 1.55;
  max-width: 460px;
  color: rgba(59, 36, 20, 0.75);
  margin-bottom: 36px;
}

.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

/* ===========================
   HERO VIDEO — premium vertical reel frame
   =========================== */
.hero-video-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  min-height: 0;
  perspective: 1200px;
}

/* Soft sage glow behind the video */
.hero-video-wrap::before {
  content: "";
  position: absolute;
  width: 90%;
  height: 90%;
  top: 5%;
  left: 5%;
  background:
    radial-gradient(circle at 35% 40%, rgba(186, 181, 141, 0.45), transparent 60%),
    radial-gradient(circle at 70% 60%, rgba(134, 91, 57, 0.35), transparent 65%);
  z-index: 0;
  filter: blur(50px);
  pointer-events: none;
  animation: heroGlow 8s ease-in-out infinite alternate;
}
@keyframes heroGlow {
  from { transform: scale(1) translate(0, 0); }
  to   { transform: scale(1.06) translate(8px, -6px); }
}

/* The bezel/frame surrounding the video */
.hero-video-frame {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 360px;          /* 9:16 ratio → ~360 × 640 looks balanced on desktop */
  aspect-ratio: 9 / 16;
  border-radius: 28px;
  background: var(--coffee-dark);
  padding: 12px;
  box-shadow:
    0 30px 80px -20px rgba(59, 36, 20, 0.45),
    0 12px 28px -10px rgba(59, 36, 20, 0.35),
    0 0 0 1px rgba(59, 36, 20, 0.08);
  transform: rotate(-2.5deg);
  animation: heroVideoFloat 6.5s ease-in-out infinite;
  will-change: transform;
  transition: transform 0.6s var(--ease);
}
.hero-video-frame:hover { transform: rotate(0deg) scale(1.015); }

@keyframes heroVideoFloat {
  0%, 100% { transform: rotate(-2.5deg) translateY(0); }
  50%      { transform: rotate(-1.5deg) translateY(-10px); }
}

.hero-video-frame video {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 18px;
  object-fit: cover;
  background: var(--coffee-dark);
}
.hero-video-frame video::-webkit-media-controls,
.hero-video-frame video::-webkit-media-controls-enclosure {
  display: none !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
.hero-video-frame video::-webkit-media-controls-start-playback-button,
.hero-video-frame video::-webkit-media-controls-overlay-play-button {
  display: none !important;
  -webkit-appearance: none;
  width: 0 !important;
  height: 0 !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
.hero-video-frame video::-webkit-media-controls-panel {
  display: none !important;
}

/* "On the bar" reel-style label that floats on top-left */
.hero-video-badge {
  position: absolute;
  top: -14px;
  left: -10px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: var(--cream);
  border: 1.5px solid var(--coffee-dark);
  border-radius: 100px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--coffee-dark);
  box-shadow: 0 6px 16px rgba(59, 36, 20, 0.18);
  transform: rotate(-4deg);
}
.hero-video-badge .live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #e85d4d;
  box-shadow: 0 0 0 4px rgba(232, 93, 77, 0.25);
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.75; transform: scale(0.9); }
}

/* @handle ribbon at the bottom-right */
.hero-video-handle {
  position: absolute;
  bottom: -14px;
  right: -16px;
  z-index: 3;
  padding: 8px 14px;
  background: var(--sage);
  border-radius: 100px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: -0.005em;
  color: var(--coffee-dark);
  box-shadow: 0 6px 16px rgba(59, 36, 20, 0.18);
  transform: rotate(3deg);
}

/* Mascot peek — small mascot illustration tucked beside the video */
.hero-video-mascot {
  position: absolute;
  bottom: -30px;
  left: -52px;
  z-index: 1;
  width: 140px;
  height: auto;
  transform: rotate(-8deg);
  filter: drop-shadow(0 8px 20px rgba(59, 36, 20, 0.25));
  animation: heroMascotFloat 5s ease-in-out infinite;
}
@keyframes heroMascotFloat {
  0%, 100% { transform: rotate(-8deg) translateY(0); }
  50%      { transform: rotate(-6deg) translateY(-6px); }
}

/* Coffee-bean accent sticker top-right */
.hero-video-bean {
  position: absolute;
  top: 18%;
  right: -28px;
  z-index: 3;
  width: 60px;
  height: 60px;
  background: var(--coffee);
  color: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 1px;
  text-align: center;
  line-height: 1.05;
  padding: 8px;
  transform: rotate(12deg);
  box-shadow: 0 8px 20px rgba(59, 36, 20, 0.25);
  border: 2.5px solid var(--cream);
}

@media (max-width: 900px) {
  .hero-video-frame {
    max-width: 280px;
    transform: rotate(-1.5deg);
    margin: 0 auto;
  }
  .hero-video-mascot { width: 100px; bottom: -20px; left: -38px; }
  .hero-video-bean { width: 50px; height: 50px; font-size: 10px; right: -18px; }
}

/* Steam animation */
.steam {
  position: absolute;
  top: 32%;
  right: 22%;
  width: 4px;
  height: 50px;
  pointer-events: none;
}
.steam span {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 8px;
  height: 8px;
  background: rgba(139, 90, 43, 0.4);
  border-radius: 50%;
  transform: translateX(-50%);
  animation: steam-rise 3s ease-in infinite;
  filter: blur(3px);
}
.steam span:nth-child(2) { animation-delay: 1s; left: 30%; }
.steam span:nth-child(3) { animation-delay: 2s; left: 70%; }
@keyframes steam-rise {
  0% { transform: translate(-50%, 0) scale(1); opacity: 0; }
  20% { opacity: 0.6; }
  100% { transform: translate(-50%, -80px) scale(2); opacity: 0; }
}

.hero-marquee {
  position: absolute;
  bottom: 30px;
  left: 0; right: 0;
  font-family: var(--font-display);
  font-size: clamp(20px, 4vw, 36px);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--coffee);
  opacity: 0.18;
  white-space: nowrap;
  overflow: hidden;
  pointer-events: none;
}
.hero-marquee-inner {
  display: inline-block;
  animation: marquee 30s linear infinite;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (max-width: 900px) {
  .hero { padding: 110px 0 80px; min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; padding: 0 var(--gutter); gap: 40px; }
  .hero-video-wrap { order: -1; min-height: 480px; }
}

/* ===========================
   COFFEE-FILL (scroll-tied)
   Cup fills with coffee as user scrolls
   =========================== */
.coffee-fill {
  background: var(--cream);
  padding: 60px 0 100px;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line);
}
.coffee-fill-eyebrow {
  text-align: center;
  margin-bottom: 24px;
}
.coffee-fill-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1;
  letter-spacing: -0.02em;
  text-align: center;
  max-width: 720px;
  margin: 0 auto 40px;
}
.coffee-fill-title em {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--coffee);
  font-weight: 600;
}

.coffee-stage {
  position: relative;
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  aspect-ratio: 1 / 1.3;
}
.coffee-stage svg {
  width: 100%;
  height: 100%;
  display: block;
  overflow: visible;
}

/* The coffee level fill — scaled via JS based on scroll */
.coffee-liquid {
  transform-origin: center bottom;
  transform: scaleY(0);
  transition: transform 0.1s linear;
}

/* The drip stream from spout to cup */
.coffee-stream {
  opacity: 0;
  transition: opacity 0.3s ease;
}
.coffee-stage.pouring .coffee-stream { opacity: 1; }

/* Animated falling drop */
@keyframes drop-fall {
  0%   { transform: translateY(0)   scaleY(0.7); opacity: 0; }
  20%  { transform: translateY(0)   scaleY(1);   opacity: 1; }
  100% { transform: translateY(220px) scaleY(1.3); opacity: 1; }
}
.coffee-drop {
  animation: drop-fall 0.7s ease-in infinite;
  transform-origin: center top;
}
.coffee-drop:nth-child(2) { animation-delay: 0.25s; }
.coffee-drop:nth-child(3) { animation-delay: 0.5s; }

/* Subtle steam from the filled cup */
.coffee-steam {
  position: absolute;
  top: 35%;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 100px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.6s ease;
}
.coffee-stage.full .coffee-steam { opacity: 1; }
.coffee-steam-puff {
  position: absolute;
  bottom: 0;
  width: 12px;
  height: 12px;
  background: rgba(139, 90, 43, 0.35);
  border-radius: 50%;
  filter: blur(4px);
  animation: steam-rise 3s ease-out infinite;
}
.coffee-steam-puff:nth-child(1) { left: 20%; animation-delay: 0s; }
.coffee-steam-puff:nth-child(2) { left: 50%; animation-delay: 1s; }
.coffee-steam-puff:nth-child(3) { left: 80%; animation-delay: 2s; }

.coffee-fill-progress {
  margin: 40px auto 0;
  max-width: 320px;
  text-align: center;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--coffee);
  font-weight: 700;
}
.coffee-fill-bar {
  margin-top: 12px;
  height: 2px;
  background: rgba(139, 90, 43, 0.18);
  position: relative;
  overflow: hidden;
}
.coffee-fill-bar-inner {
  position: absolute;
  inset: 0;
  background: var(--coffee);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.1s linear;
}

/* ===========================
   MANIFESTO
   =========================== */
.manifesto {
  padding: var(--section-pad) 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line);
  background-color: var(--coffee-dark);
}
.manifesto::after {
  content: "";
  position: absolute;
  inset: -3px;
  background-image: url('../img/coffee-machine.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: blur(2px);
  transform: scale(1.01);
  pointer-events: none;
  z-index: 0;
}
.manifesto::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(10, 10, 10, 0.52) 0%,
    rgba(61, 40, 24, 0.38) 50%,
    rgba(10, 10, 10, 0.48) 100%
  );
  pointer-events: none;
  z-index: 1;
}
.manifesto .container {
  position: relative;
  z-index: 2;
}
.manifesto .eyebrow {
  color: var(--cream);
}
.manifesto .eyebrow::before {
  background: var(--cream);
}
.manifesto-intro h2,
.manifesto-item h3 {
  color: var(--cream);
}
.manifesto-intro p,
.manifesto-item p {
  color: rgba(247, 242, 234, 0.88);
}
.manifesto-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 60px;
  align-items: start;
}
.manifesto-intro h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  line-height: 0.92;
  letter-spacing: -0.02em;
  margin: 18px 0 0;
}
.manifesto-intro p {
  margin-top: 24px;
  font-size: 15px;
  line-height: 1.7;
  max-width: 320px;
}
.manifesto-list { list-style: none; }
.manifesto-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  padding: 32px 0;
  border-top: 1px solid rgba(247, 242, 234, 0.22);
  align-items: start;
  transition: background 0.4s var(--ease);
}
.manifesto-item:last-child { border-bottom: 1px solid rgba(247, 242, 234, 0.22); }
.manifesto-item:hover { background: rgba(0, 0, 0, 0.18); }
.manifesto-num {
  font-family: var(--font-display);
  font-size: 40px;
  color: var(--sage);
  line-height: 1;
}
.manifesto-item h3 {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 32px);
  line-height: 1;
  margin-bottom: 10px;
}
.manifesto-item p {
  font-size: 15px;
  line-height: 1.6;
  max-width: 480px;
}

@media (max-width: 800px) {
  .manifesto-grid { grid-template-columns: 1fr; gap: 30px; }
  .manifesto-item { grid-template-columns: 60px 1fr; gap: 16px; padding: 22px 0; }
}

/* ===========================
   DRINKS — Specialty coffee
   =========================== */
.drinks {
  padding: clamp(48px, 6vw, 80px) 0;
  background-color: var(--ink);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.drinks::after {
  content: "";
  position: absolute;
  inset: -3px;
  background-image:
    url('../img/6B7A0044.webp'),
    url('../img/6B7A0066.webp');
  background-size: 52% 100%, 52% 100%;
  background-position: left center, right center;
  background-repeat: no-repeat;
  filter: blur(4px);
  transform: scale(1.01);
  pointer-events: none;
  z-index: 0;
}
.drinks::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 10, 10, 0.88) 0%,
    rgba(10, 10, 10, 0.82) 50%,
    rgba(26, 20, 16, 0.9) 100%
  );
  pointer-events: none;
  z-index: 1;
}
.drinks .container {
  position: relative;
  z-index: 2;
}
.drinks .eyebrow { color: var(--coffee-light); }
.drinks .eyebrow::before { background: var(--coffee-light); }
.drinks-head-center {
  text-align: center;
  margin-bottom: clamp(40px, 6vw, 56px);
}
.drinks-head-center h2 {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 80px);
  line-height: 0.92;
  letter-spacing: -0.02em;
  margin-top: 18px;
}
.drinks-head-center h2 em {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  color: var(--sage);
}

.coffee-steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 3vw, 32px);
  margin: 0 0 clamp(48px, 7vw, 72px);
  padding: 0;
}
.coffee-step {
  padding: clamp(20px, 3vw, 28px);
  border: 1px solid rgba(247, 242, 234, 0.14);
  border-radius: 12px;
  background: rgba(10, 10, 10, 0.35);
}
.coffee-step-title {
  font-family: var(--font-display);
  font-size: clamp(14px, 1.6vw, 17px);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.35;
  color: var(--cream);
  margin-bottom: 12px;
}
.coffee-step-num {
  color: var(--sage);
  margin-right: 4px;
}
.coffee-step-desc {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(247, 242, 234, 0.82);
}

.coffee-signatures {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 3vw, 28px);
  max-width: 960px;
  margin: 0 auto;
  padding: clamp(28px, 4vw, 40px) 0;
  border-top: 1px solid rgba(247, 242, 234, 0.18);
  border-bottom: 1px solid rgba(247, 242, 234, 0.18);
}
.coffee-signature {
  text-align: center;
  padding: clamp(16px, 3vw, 24px);
}
.coffee-signature-name {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--cream);
}
.coffee-signature-meta {
  margin-top: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--sage);
}
.coffee-signature-tag {
  margin-top: 14px;
  font-size: 14px;
  line-height: 1.4;
  font-style: italic;
  color: rgba(247, 242, 234, 0.75);
}

.drinks-foot-center {
  margin-top: clamp(36px, 5vw, 48px);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.drinks-foot-center p {
  max-width: 520px;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(247, 242, 234, 0.85);
}
.drinks-foot-center .btn {
  background: var(--cream);
  color: var(--ink);
}
.drinks-foot-center .btn:hover {
  background: var(--sage);
  color: var(--coffee-dark);
}

@media (max-width: 900px) {
  .coffee-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .coffee-steps {
    grid-template-columns: 1fr;
  }
  .coffee-signatures {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .coffee-signature {
    border-bottom: 1px solid rgba(247, 242, 234, 0.12);
  }
  .coffee-signature:last-child {
    border-bottom: 0;
  }
}

/* ===========================
   MEET THE TEAM — split layout
   =========================== */
.team-split {
  background: var(--cream);
  border-top: 1px solid var(--line);
  overflow: hidden;
}
.team-split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: clamp(400px, 48vw, 580px);
}
.team-split-media {
  position: relative;
  min-height: 280px;
}
.team-split-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center;
}
.team-split-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(48px, 7vw, 96px) clamp(32px, 6vw, 80px);
  max-width: 560px;
}
.team-split-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  line-height: 0.92;
  letter-spacing: -0.02em;
  margin-top: 18px;
}
.team-split-copy h2 em {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  color: var(--coffee);
}
.team-split-copy p {
  margin-top: 24px;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(10, 10, 10, 0.72);
  max-width: 440px;
}
.team-split-cta {
  margin-top: 32px;
  align-self: flex-start;
}

@media (max-width: 900px) {
  .team-split-grid {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .team-split-media {
    min-height: clamp(280px, 55vw, 400px);
  }
  .team-split-copy {
    max-width: none;
    padding: clamp(40px, 8vw, 64px) var(--gutter);
  }
}

/* Story page — founders split (copy left, photo right) */
.story-faces .team-split-copy {
  max-width: 520px;
}
.story-faces .team-split-media img {
  object-position: center top;
}

/* ===========================
   FOOD — Split-screen GSAP slider
   =========================== */
.food {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  background: var(--cream);
}
.split-slider {
  position: relative;
  display: flex;
  width: 100vw;
  height: 100%;
  overflow: hidden;
}
.slider-left, .slider-right {
  width: 50%;
  height: 100%;
  position: relative;
}
.slider-left { z-index: 2; }
.slider-right { z-index: 1; }
.slide-content {
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
}

/* LEFT panel — text */
.slider-left .slide-content {
  padding: 80px 60px;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
}
.slide-content[data-theme="light"] { background: var(--cream); color: var(--ink); }
.slide-content[data-theme="dark"]  { background: var(--ink);   color: var(--cream); }
.slide-content[data-theme="dark"] .slide-eyebrow { color: var(--coffee-light); }
.slide-content[data-theme="dark"] .slide-quote { border-color: var(--coffee-light); color: var(--cream); }

.slide-top { width: 100%; }
.slide-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--coffee);
  margin-bottom: 18px;
}
.slide-name {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 80px);
  line-height: 0.92;
  letter-spacing: -0.02em;
  margin-bottom: 22px;
}
.slide-name em {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--coffee);
  font-weight: 600;
}
.slide-desc {
  font-size: 15px;
  line-height: 1.65;
  max-width: 440px;
  opacity: 0.75;
  margin-bottom: 20px;
}
.slide-tastes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}
.taste-chip {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 20px;
  background: rgba(139, 90, 43, 0.12);
  color: var(--coffee);
}
.slide-content[data-theme="dark"] .taste-chip {
  background: rgba(184, 133, 90, 0.18);
  color: var(--coffee-light);
}

.slide-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 15px;
  line-height: 1.5;
  border-left: 2px solid var(--coffee);
  padding-left: 16px;
  max-width: 360px;
  color: rgba(10, 10, 10, 0.8);
}
.slide-quote-author {
  display: block;
  margin-top: 6px;
  font-size: 11px;
  font-family: var(--font-body);
  font-style: normal;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.6;
}

/* RIGHT panel — image */
.slider-right .slide-content { padding: 0; }
.slide-image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
}
.slide-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 50%, rgba(0,0,0,0.18));
}
.slide-image-1 { background-image: url('../img/6B7A9136.webp');                              background-color: #e8f0e4; background-size: cover;   background-position: center; }
.slide-image-2 { background-image: url('../img/6B7A8622.webp');                              background-color: #2a1810; background-size: cover;   background-position: center; }
.slide-image-3 { background-image: url('../img/6B7A9165.webp');                              background-color: #e8efe4; background-size: cover;   background-position: center; }
.slide-image-4 { background-image: url('../img/6B7A9181.webp');                              background-color: #e8efe4; background-size: cover;   background-position: center; }

/* Slider nav buttons */
.slider-nav {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.slider-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--ink);
  border: 2px solid var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: all 0.3s var(--ease);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}
.slider-btn:hover { background: var(--ink); color: var(--cream); transform: scale(1.08); }
.slider-counter {
  position: absolute;
  bottom: 40px;
  left: 60px;
  z-index: 5;
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 3px;
  color: var(--ink);
}
.slide-content[data-theme="dark"] ~ .slider-counter { color: var(--cream); }

.food-section-label {
  position: absolute;
  top: 40px;
  left: 60px;
  z-index: 5;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--coffee);
}

@media (max-width: 900px) {
  .food { height: auto; min-height: auto; overflow: visible; }
  .split-slider {
    flex-direction: column;
    height: auto;
    overflow: visible;
    padding-bottom: 24px;
  }
  .slider-left, .slider-right {
    width: 100%;
    position: relative;
    overflow: hidden;
    transform: none !important;
  }
  .slider-right {
    height: clamp(220px, 52vw, 340px);
    order: -1;
    flex-shrink: 0;
  }
  .slider-left {
    height: auto;
    min-height: 360px;
  }
  .slider-left .slide-content,
  .slider-right .slide-content {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
  .slider-left .slide-content.is-active {
    position: relative;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .slider-right .slide-content.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .slider-left .slide-content { padding: 40px var(--gutter); min-height: 360px; }
  .slider-nav {
    position: static;
    transform: none;
    flex-direction: row;
    justify-content: center;
    gap: 12px;
    margin: 8px 0 0;
    order: 2;
  }
  .slider-btn--prev::before { content: '←'; }
  .slider-btn--next::before { content: '→'; }
  .split-slider--mobile .slider-btn { font-size: 0; }
  .split-slider--mobile .slider-btn::before { font-size: 20px; }
  .food-section-label { left: var(--gutter); top: 20px; }
  .slider-counter {
    position: static;
    text-align: center;
    margin-top: 16px;
    order: 3;
  }
}

/* ===========================
   REVIEWS — testimonials grid
   =========================== */
.reviews {
  padding: var(--section-pad) 0;
  background: var(--cream);
  border-top: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.reviews-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 56px;
}
.reviews-head h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(40px, 6vw, 80px);
  line-height: 0.95;
  letter-spacing: -0.015em;
  margin-top: 18px;
  color: var(--coffee-dark);
}
.reviews-head h2 em {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  color: var(--coffee);
}
.reviews-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: flex-end;
  justify-content: flex-end;
}
.reviews-stat {
  text-align: right;
}
.reviews-stat-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1;
  color: var(--coffee);
  letter-spacing: -0.02em;
}
.reviews-stat-label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--coffee-dark);
  opacity: 0.7;
  margin-top: 6px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
}

.review-card {
  background: var(--white);
  border-radius: 16px;
  padding: 28px;
  border: 1.5px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
}
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(59, 36, 20, 0.10);
  border-color: var(--coffee);
}

/* Featured big card: spans 2 rows in column 1 */
.review-card.featured {
  grid-row: span 2;
  background: var(--coffee-dark);
  color: var(--cream);
  border-color: var(--coffee-dark);
  padding: 36px;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}
.review-card.featured::after {
  /* big serif-style quotation mark */
  content: "\201C";
  position: absolute;
  top: -20px; right: 12px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 220px;
  color: var(--coffee);
  opacity: 0.35;
  line-height: 1;
  pointer-events: none;
}

.review-stars {
  display: inline-flex;
  gap: 2px;
  font-size: 14px;
  color: var(--coffee);
  letter-spacing: 1px;
}
.review-card.featured .review-stars { color: var(--sage); }

.review-text {
  font-family: var(--font-display);
  font-weight: 500;
  font-style: italic;
  font-size: 17px;
  line-height: 1.4;
  color: var(--coffee-dark);
  flex: 1;
}
.review-card.featured .review-text {
  color: var(--cream);
  font-size: 22px;
  line-height: 1.35;
  position: relative;
  z-index: 1;
}

.review-meta {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}
.review-card.featured .review-meta { border-top-color: rgba(186, 181, 141, 0.25); }
.review-author {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  line-height: 1.3;
  color: var(--coffee-dark);
}
.review-card.featured .review-author { color: var(--cream); }
.review-city {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  opacity: 0.65;
  font-weight: 600;
  margin-top: 2px;
}
.review-source {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  background: var(--cream-soft);
  color: var(--coffee);
  font-weight: 700;
  white-space: nowrap;
}
.review-card.featured .review-source {
  background: var(--coffee);
  color: var(--cream);
}

.reviews-foot {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

@media (max-width: 900px) {
  .reviews-head { grid-template-columns: 1fr; }
  .reviews-stats { justify-content: flex-start; }
  .reviews-stat { text-align: left; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .review-card.featured { grid-row: auto; grid-column: span 2; }
}
@media (max-width: 600px) {
  .reviews-grid { grid-template-columns: 1fr; }
  .review-card.featured { grid-column: auto; }
  .review-card.featured::after { font-size: 140px; }
}

/* ===========================
   LOCATIONS
   =========================== */
.locations {
  padding: var(--section-pad) 0;
  background: var(--cream);
  border-top: 1px solid var(--line);
}
.locations-head {
  text-align: center;
  margin-bottom: 60px;
}
.locations-head h2 {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 80px);
  line-height: 0.9;
  letter-spacing: -0.02em;
  margin-top: 18px;
}
.locations-head h2 em {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--coffee);
  font-weight: 600;
}

.locations-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.location-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.4s var(--ease);
  display: flex;
  flex-direction: column;
}
.location-card:hover { transform: translateY(-6px); }
.location-card.dark { background: var(--ink); color: var(--cream); }
.location-card.light { background: #fff; color: var(--ink); }

.location-img {
  height: 280px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}
.location-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.4));
}
.location-img-vadodara {
  background-color: var(--cream-soft);
  background-image: url('../img/unnamed.webp');
  background-size: cover;
  background-position: center;
}
.location-img-nashik {
  background-color: var(--cream-soft);
  background-image: url('../img/6B7A4155.webp');
  background-size: cover;
  background-position: center;
}
.location-img::after {
  /* darker overlay on bottom for tag legibility */
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(0,0,0,0.55));
}
.location-img-tag {
  position: absolute;
  top: 20px;
  left: 20px;
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 2px;
  background: var(--cream);
  color: var(--ink);
  padding: 6px 14px;
  border-radius: 20px;
  z-index: 1;
}

.location-body {
  padding: 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.location-card h3 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.location-detail {
  font-size: 14px;
  line-height: 1.55;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 12px 0;
  border-top: 1px solid var(--line);
}
.location-card.dark .location-detail { border-color: var(--line-dark); }
.location-detail-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  opacity: 0.5;
  min-width: 70px;
}
.location-actions {
  display: flex;
  gap: 10px;
  margin-top: 24px;
  flex-wrap: wrap;
}
.location-card.dark .btn-secondary { color: var(--cream); border-color: var(--cream); }
.location-card.dark .btn-secondary:hover { background: var(--cream); color: var(--ink); }
.location-card.dark .btn-primary { background: var(--coffee); }
.location-card.dark .btn-primary:hover { background: var(--coffee-light); }

@media (max-width: 800px) {
  .locations-grid { grid-template-columns: 1fr; }
  .location-img { height: 200px; }
  .location-body { padding: 24px; }
}

/* ===========================
   MOODY · Playful taglines section
   Inspired by brand guideline moody-cup / napkin taglines
   =========================== */
.moody {
  background: var(--sage);
  color: var(--coffee-dark);
  padding: var(--section-pad) 0;
  position: relative;
  overflow: hidden;
}
.moody-head { text-align: center; margin-bottom: 48px; }
.moody-head .eyebrow { color: var(--coffee-dark); }
.moody-head .eyebrow::before { background: var(--coffee-dark); }
.moody-head h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(40px, 6vw, 80px);
  line-height: 0.95;
  letter-spacing: -0.015em;
  margin-top: 18px;
}
.moody-head h2 em {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  color: var(--coffee-dark);
}
.moody-head p {
  max-width: 540px;
  margin: 18px auto 0;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(59, 36, 20, 0.75);
}

.moody-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 14px;
  max-width: 1100px;
  margin: 0 auto;
}
.moody-card {
  background: var(--cream);
  border: 1.5px solid var(--coffee-dark);
  border-radius: 14px;
  padding: 28px 22px;
  text-align: center;
  position: relative;
  min-height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s var(--ease), background 0.4s var(--ease);
}
.moody-card:hover {
  transform: translateY(-6px) rotate(-1deg);
  background: var(--coffee-dark);
  color: var(--cream);
}
.moody-card-text {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  line-height: 1.15;
  letter-spacing: -0.005em;
}
.moody-card-tag {
  position: absolute;
  top: 10px;
  right: 12px;
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 2px;
  font-weight: 700;
  color: var(--coffee);
  text-transform: uppercase;
}
.moody-card:hover .moody-card-tag { color: var(--sage); }

.moody-marquee-strip {
  margin-top: 60px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 5vw, 56px);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--coffee-dark);
  white-space: nowrap;
  overflow: hidden;
  border-top: 1.5px solid var(--coffee-dark);
  border-bottom: 1.5px solid var(--coffee-dark);
  padding: 14px 0;
}
.moody-marquee-strip-inner {
  display: inline-block;
  animation: marquee 25s linear infinite;
}
.moody-marquee-strip span { padding: 0 28px; }
.moody-marquee-strip .dot { color: var(--coffee); font-size: 0.7em; vertical-align: middle; }

@media (max-width: 600px) {
  .moody-grid { grid-template-columns: 1fr 1fr; }
}

/* ===========================
   GALLERY (Instagram)
   =========================== */
.gallery {
  padding: var(--section-pad) 0 calc(var(--section-pad) - 40px);
  background: var(--cream);
  border-top: 1px solid var(--line);
  overflow: hidden;
}
.gallery-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
  flex-wrap: wrap;
  gap: 24px;
}
.gallery-head h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  line-height: 0.92;
  letter-spacing: -0.02em;
  margin-top: 18px;
}
.gallery-handles {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-end;
}
.gallery-handle {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--coffee);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.gallery-handle:hover { text-decoration: underline; }

.gallery-marquee {
  display: flex;
  gap: 16px;
  animation: gallery-scroll 50s linear infinite;
  width: max-content;
}
.gallery-marquee:hover { animation-play-state: paused; }
.gallery-item {
  display: block;
  width: 280px;
  height: 280px;
  border-radius: 12px;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
  position: relative;
  transition: transform 0.4s var(--ease);
  text-decoration: none;
}
.gallery-item:hover { transform: scale(0.96); }
.gallery-item-tag {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  transform: translate(-50%, -50%);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--cream);
  line-height: 1.2;
  text-align: center;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s var(--ease);
}
.gallery-item:hover .gallery-item-tag,
.gallery-item:focus-visible .gallery-item-tag {
  opacity: 0.9;
}
.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.45));
  border-radius: 12px;
  transition: background 0.35s var(--ease);
  pointer-events: none;
}
.gallery-item:hover::after,
.gallery-item:focus-visible::after {
  background: rgba(0, 0, 0, 0.35);
}
.gallery-item-caption {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  z-index: 1;
  color: var(--cream);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
}
@keyframes gallery-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (max-width: 700px) {
  .gallery-item { width: 220px; height: 220px; }
}

/* ===========================
   FOOTER
   =========================== */
.footer {
  background: var(--ink);
  color: var(--cream);
  padding: 80px 0 32px;
  position: relative;
  overflow: hidden;
}
.footer-wordmark {
  display: block;
  width: min(1200px, 100%);
  height: clamp(100px, 11vw, 150px);
  margin-bottom: 60px;
  background: linear-gradient(180deg, var(--cream), rgba(245, 241, 235, 0.4));
  -webkit-mask-image: url('../img/DERIO.webp');
  mask-image: url('../img/DERIO.webp');
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: left center;
  mask-position: left center;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--line-dark);
}
.footer-col h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--coffee-light);
  margin-bottom: 18px;
}
.footer-col p, .footer-col a, .footer-col li {
  font-size: 13px;
  line-height: 1.7;
  opacity: 0.75;
  list-style: none;
}
.footer-col a { transition: opacity 0.3s; display: inline-block; padding: 2px 0; }
.footer-col a:hover { opacity: 1; color: var(--coffee-light); }

.footer-socials { display: flex; gap: 10px; margin-top: 14px; }
.footer-social {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--line-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s var(--ease);
  font-size: 14px;
}
.footer-social:hover { background: var(--coffee); border-color: var(--coffee); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.5;
}

@media (max-width: 800px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ===========================
   RESERVATION MODAL
   =========================== */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease);
  padding: var(--gutter);
}
.modal-backdrop:not(.open) {
  opacity: 0;
  pointer-events: none;
}
.modal-backdrop.open { opacity: 1; pointer-events: auto; }
.modal {
  background: var(--cream);
  border-radius: 20px;
  max-width: 520px;
  width: 100%;
  padding: 40px;
  position: relative;
  transform: scale(0.94);
  transition: transform 0.4s var(--ease);
  max-height: 90vh;
  overflow-y: auto;
}
.modal-backdrop.open .modal { transform: scale(1); }
.modal-close {
  position: absolute;
  top: 18px; right: 18px;
  width: 36px; height: 36px;
  border-radius: 50%;
  font-size: 18px;
  background: rgba(10,10,10,0.08);
}
.modal h3 {
  font-family: var(--font-display);
  font-size: 28px;
  line-height: 1;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}
.modal-sub {
  font-size: 13px;
  opacity: 0.65;
  margin-bottom: 24px;
}
.modal-cities {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
}
.modal-city {
  flex: 1;
  padding: 10px 14px;
  border: 1.5px solid var(--ink);
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: transparent;
  color: var(--ink);
  transition: all 0.3s;
}
.modal-city.active { background: var(--ink); color: var(--cream); }
.modal-platforms { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.modal-platform {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: left;
  transition: all 0.3s var(--ease);
}
.modal-platform:hover { border-color: var(--coffee); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(139,90,43,0.12); }
.modal-platform-name {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0;
  line-height: 1;
}
.modal-platform-desc {
  font-size: 11px;
  opacity: 0.55;
}

@media (max-width: 480px) {
  .modal { padding: 28px 22px; }
  .modal-platforms { grid-template-columns: 1fr; }
}

/* ===========================
   PAGE: Menu
   =========================== */
.page-hero {
  padding: 160px var(--gutter) 80px;
  text-align: center;
  background: var(--cream);
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(56px, 10vw, 140px);
  line-height: 0.88;
  letter-spacing: -0.03em;
  margin-top: 20px;
}
.page-hero h1 em {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--coffee);
  font-weight: 600;
}
.page-hero p {
  max-width: 540px;
  margin: 20px auto 0;
  font-size: 16px;
  line-height: 1.6;
  opacity: 0.7;
}

/* Story page — photo hero with wall text visible through overlay */
.page-story .nav-logo-dark { display: none; }
.page-story .nav-logo-light { display: block; }
.page-story .nav.scrolled .nav-logo-dark { display: block; }
.page-story .nav.scrolled .nav-logo-light { display: none; }
.page-story .nav:not(.scrolled) .nav-links a { color: var(--cream); }
.page-story .nav:not(.scrolled) .nav-links a::after { background: var(--cream); }
.page-story .nav:not(.scrolled) .nav-city-chip {
  color: var(--cream);
  border-color: rgba(247, 242, 234, 0.55);
}
.page-story .nav:not(.scrolled) .nav-toggle {
  background: var(--cream);
  color: var(--coffee-dark);
}
.page-story .nav:not(.scrolled) .nav-link-active { color: var(--sage); }
.page-story .nav.scrolled .nav-link-active { color: var(--coffee); }

.story-hero {
  position: relative;
  min-height: min(72vh, 680px);
  padding: 0;
  background-color: var(--coffee-dark);
  background-image: url('../img/6B7A8981.webp');
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.story-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(61, 40, 24, 0.25);
  pointer-events: none;
}

.menu-section {
  padding: 80px 0;
  border-top: 1px solid var(--line);
}
.menu-section:nth-child(odd):not(.menu-section-photo) { background: var(--cream); }
.menu-section:nth-child(even):not(.menu-section-photo) { background: #fff; }
.menu-section-head {
  text-align: center;
  margin-bottom: 56px;
}
.menu-section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  line-height: 0.9;
  letter-spacing: -0.02em;
  margin-top: 14px;
}
.menu-section-head h2 em {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--coffee);
  font-weight: 600;
}
.menu-list {
  max-width: 900px;
  margin: 0 auto;
  list-style: none;
}
.menu-item {
  display: block;
  padding: 22px 0;
  border-bottom: 1px dashed var(--line);
}
.menu-item:hover { border-color: var(--coffee); }
.menu-item-name {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: -0.01em;
  line-height: 1;
}
.menu-item-desc {
  font-size: 13px;
  line-height: 1.5;
  opacity: 0.6;
  margin-top: 6px;
  max-width: 540px;
}
.menu-item-price {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--coffee);
  white-space: nowrap;
}
.menu-tag {
  display: inline-block;
  margin-left: 8px;
  font-size: 9px;
  letter-spacing: 1.5px;
  background: var(--coffee);
  color: var(--cream);
  padding: 2px 6px;
  border-radius: 4px;
  vertical-align: middle;
  font-weight: 700;
}

.menu-category-title {
  font-family: var(--font-display);
  text-align: center;
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 18px;
  color: var(--coffee);
  text-transform: uppercase;
}
.menu-category-title-spaced {
  margin-top: 48px;
}
.menu-category {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
}
.menu-category > * {
  position: relative;
  z-index: 1;
}
/* Full menu sections with photo background */
.menu-section-photo {
  position: relative;
  background-color: var(--coffee-dark);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.menu-section-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 12, 8, 0.75) 0%, rgba(45, 28, 18, 0.88) 100%);
  pointer-events: none;
}
.menu-section-photo .container {
  position: relative;
  z-index: 1;
}
.menu-section-photo .menu-section-head .eyebrow {
  color: var(--sage);
}
.menu-section-photo .menu-section-head .eyebrow::before {
  background: var(--sage);
}
.menu-section-photo .menu-section-head h2 {
  color: #fff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.55);
}
.menu-section-photo .menu-section-head h2 em {
  color: var(--sage);
}
.menu-section-breakfast {
  background-image: url('../img/DERIO%20-3.webp');
}
.menu-section-photo .menu-item {
  border-bottom-color: rgba(255, 255, 255, 0.28);
}
.menu-section-photo .menu-item:hover {
  border-bottom-color: rgba(255, 255, 255, 0.5);
}
.menu-section-photo .menu-item-name {
  color: #fff;
  font-weight: 600;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.65);
}
.menu-section-photo .menu-item-desc {
  color: rgba(255, 255, 255, 0.92);
  opacity: 1;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.6);
}
.menu-section-photo .menu-item-price {
  color: #e8e4c8;
  font-weight: 600;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.65);
}
.menu-section-photo .menu-tag {
  background: var(--sage);
  color: var(--coffee-dark);
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.35);
}

.menu-category-espresso,
.menu-category-iced,
.menu-category-shakes {
  margin: 8px 0 48px;
  padding: clamp(40px, 6vw, 56px) clamp(20px, 4vw, 40px);
  background-color: var(--cream);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.menu-category-espresso {
  background-image: url('../img/33.webp');
}
.menu-category-iced {
  background-image: url('../img/34.webp');
}
.menu-category-shakes {
  background-image: url('../img/DERIO%20-2.webp');
}
.menu-category-espresso::before,
.menu-category-iced::before,
.menu-category-shakes::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(20, 12, 8, 0.75) 0%, rgba(45, 28, 18, 0.88) 100%);
  pointer-events: none;
}
.menu-category-espresso .menu-category-title,
.menu-category-iced .menu-category-title,
.menu-category-shakes .menu-category-title {
  color: #fff;
  font-weight: 600;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.55);
}
.menu-category-espresso .menu-item,
.menu-category-iced .menu-item,
.menu-category-shakes .menu-item {
  border-bottom-color: rgba(255, 255, 255, 0.28);
}
.menu-category-espresso .menu-item:hover,
.menu-category-iced .menu-item:hover,
.menu-category-shakes .menu-item:hover {
  border-bottom-color: rgba(255, 255, 255, 0.5);
}
.menu-category-espresso .menu-item-name,
.menu-category-iced .menu-item-name,
.menu-category-shakes .menu-item-name {
  color: #fff;
  font-weight: 600;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.65);
}
.menu-category-espresso .menu-item-desc,
.menu-category-iced .menu-item-desc,
.menu-category-shakes .menu-item-desc {
  color: rgba(255, 255, 255, 0.92);
  opacity: 1;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.6);
}
.menu-category-espresso .menu-item-price,
.menu-category-iced .menu-item-price,
.menu-category-shakes .menu-item-price {
  color: #e8e4c8;
  font-weight: 600;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.65);
}
.menu-category-espresso .menu-tag,
.menu-category-iced .menu-tag,
.menu-category-shakes .menu-tag {
  background: var(--sage);
  color: var(--coffee-dark);
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.35);
}

/* ===========================
   PAGE: Locations
   =========================== */
.loc-detail-section {
  padding: 80px 0;
  border-top: 1px solid var(--line);
}
.loc-detail-section:nth-child(odd) { background: var(--cream); }
.loc-detail-section:nth-child(even) { background: var(--ink); color: var(--cream); }
.loc-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.loc-detail-img {
  height: 480px;
  border-radius: 12px;
  background-size: cover;
  background-position: center;
}
.loc-detail-info h2 {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 100px);
  line-height: 0.9;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}
.loc-detail-info p {
  font-size: 15px;
  line-height: 1.7;
  opacity: 0.7;
  max-width: 480px;
  margin-bottom: 24px;
}
.loc-detail-list {
  list-style: none;
  margin-bottom: 28px;
}
.loc-detail-list li {
  padding: 14px 0;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 16px;
  font-size: 14px;
  line-height: 1.5;
}
.loc-detail-section:nth-child(even) .loc-detail-list li { border-color: var(--line-dark); }
.loc-detail-list li:last-child { border-bottom: 1px solid var(--line); }
.loc-detail-section:nth-child(even) .loc-detail-list li:last-child { border-bottom: 1px solid var(--line-dark); }
.loc-detail-list-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.5;
}
.loc-detail-section:nth-child(even) .btn-primary { background: var(--coffee); }
.loc-detail-section:nth-child(even) .btn-primary:hover { background: var(--coffee-light); }
.loc-detail-section:nth-child(even) .btn-secondary { color: var(--cream); border-color: var(--cream); }
.loc-detail-section:nth-child(even) .btn-secondary:hover { background: var(--cream); color: var(--ink); }

.loc-actions { display: flex; gap: 10px; flex-wrap: wrap; }

@media (max-width: 900px) {
  .loc-detail-grid { grid-template-columns: 1fr; gap: 30px; }
  .loc-detail-img { height: 280px; }
}

/* ===========================
   STORY PAGE — chapters
   =========================== */
.story-baby-rio {
  background: var(--cream);
  border-top: 1px solid var(--line);
}
.story-baby-rio-copy {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
  padding: clamp(48px, 7vw, 80px) var(--gutter) clamp(56px, 8vw, 88px);
}
.story-baby-rio-copy h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 0.92;
  letter-spacing: -0.02em;
  margin: 18px 0 20px;
  color: var(--coffee-dark);
}
.story-baby-rio-copy h2 em {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  color: var(--coffee);
}
.story-baby-rio-copy p {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(59, 36, 20, 0.78);
}

.story-section {
  padding: var(--section-pad) 0;
  border-top: 1px solid var(--line);
  background: var(--cream);
}
.story-section-alt { background: var(--white); }

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.story-grid.reversed { direction: rtl; }
.story-grid.reversed > * { direction: ltr; }

.story-img {
  height: 480px;
  border-radius: 16px;
  background-size: cover;
  background-position: center;
  background-color: var(--cream-soft);
}
.story-img-1 {
  background-image: linear-gradient(180deg, rgba(59,36,20,0.08), rgba(59,36,20,0.25)), url('../img/unnamed1.webp');
  background-size: cover;
}
.story-img-2 {
  background-image: linear-gradient(180deg, rgba(59,36,20,0.08), rgba(59,36,20,0.25)), url('../img/6B7A4155.webp');
  background-size: cover;
}

.story-text h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(34px, 4.5vw, 56px);
  line-height: 0.95;
  letter-spacing: -0.015em;
  margin: 18px 0 20px;
  color: var(--coffee-dark);
}
.story-text h2 em {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  color: var(--coffee);
}
.story-text p {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(59, 36, 20, 0.78);
  margin-bottom: 14px;
  max-width: 520px;
}
.story-text p:last-child { margin-bottom: 0; }

.story-closer {
  text-align: center;
  background: var(--coffee-dark);
  color: var(--cream);
  padding: var(--section-pad) 0;
  border-top: 1px solid rgba(247, 242, 234, 0.12);
}
.story-closer-inner {
  max-width: 640px;
}
.story-closer-eyebrow {
  color: var(--sage);
}
.story-closer-eyebrow::before {
  background: var(--sage);
}
.story-closer h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(40px, 6vw, 80px);
  line-height: 0.95;
  letter-spacing: -0.015em;
  margin: 18px 0 16px;
  color: var(--cream);
}
.story-closer h2 em {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  color: var(--sage);
}
.story-closer-lead {
  font-size: 16px;
  line-height: 1.65;
  opacity: 0.85;
  margin-bottom: 32px;
}
.story-closer-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.story-closer-btn-menu {
  color: var(--cream);
  border-color: rgba(247, 242, 234, 0.55);
}
.story-closer-btn-menu:hover {
  background: var(--cream);
  color: var(--coffee-dark);
  border-color: var(--cream);
}

@media (max-width: 900px) {
  .story-grid { grid-template-columns: 1fr; gap: 32px; }
  .story-grid.reversed { direction: ltr; }
  .story-img { height: 280px; }
}

/* TIMELINE */
.timeline-section {
  padding: var(--section-pad) 0;
  background: var(--cream);
  border-top: 1px solid var(--line);
}
.timeline {
  max-width: 760px;
  margin: 56px auto 0;
  list-style: none;
  position: relative;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 96px;
  top: 14px;
  bottom: 14px;
  width: 2px;
  background: var(--line);
}
.timeline-item {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 36px;
  padding: 20px 0;
  position: relative;
  align-items: start;
}
.timeline-item::before {
  content: "";
  position: absolute;
  left: 89px;
  top: 28px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--coffee);
  border: 3px solid var(--cream);
  box-shadow: 0 0 0 2px var(--coffee);
}
.timeline-year {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(24px, 2.6vw, 34px);
  line-height: 1;
  color: var(--coffee);
  letter-spacing: -0.01em;
  padding-top: 16px;
}
.timeline-body h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(20px, 2.4vw, 26px);
  line-height: 1.15;
  letter-spacing: -0.005em;
  margin-bottom: 8px;
  color: var(--coffee-dark);
}
.timeline-body p {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(59, 36, 20, 0.7);
  max-width: 480px;
}

@media (max-width: 600px) {
  .timeline::before { left: 24px; }
  .timeline-item { grid-template-columns: 60px 1fr; gap: 18px; }
  .timeline-item::before { left: 17px; top: 22px; }
  .timeline-year { font-size: 18px; padding-top: 10px; }
}

/* ===========================
   FRANCHISE PAGE
   =========================== */
.franchise-hero {
  padding-bottom: 100px;
  position: relative;
  overflow: hidden;
}
.franchise-hero > * { position: relative; z-index: 1; }
.franchise-hero h1 {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
.franchise-hero p {
  max-width: 620px;
  margin: 20px auto 36px;
}
.franchise-hero-stats {
  display: flex;
  gap: 56px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 36px;
  padding-top: 36px;
  border-top: 1px solid var(--line);
}
.franchise-stat-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(34px, 4vw, 56px);
  color: var(--coffee);
  letter-spacing: -0.02em;
  line-height: 1;
}
.franchise-stat-label {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink);
  opacity: 0.55;
  font-weight: 600;
  margin-top: 8px;
}

/* PILLARS */
.franchise-pillars {
  padding: var(--section-pad) 0;
  background: var(--cream);
}
.franchise-pillars-head {
  text-align: center;
  margin-bottom: 56px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.franchise-pillars-head h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 0.95;
  letter-spacing: -0.015em;
  margin-top: 18px;
  color: var(--coffee-dark);
}
.franchise-pillars-head h2 em {
  font-family: var(--font-display); font-style: italic; color: var(--coffee);
}
.franchise-pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.pillar {
  background: var(--white);
  border-radius: 16px;
  padding: 32px 28px;
  border: 1.5px solid var(--line);
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), background 0.4s var(--ease);
  cursor: default;
}
.pillar:hover {
  transform: translateY(-6px);
  border-color: var(--coffee);
  background: var(--coffee-dark);
  color: var(--cream);
}
.pillar:hover .pillar-num { color: var(--sage); }
.pillar:hover .pillar-desc { color: rgba(250,247,240,0.8); }
.pillar-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 28px;
  color: var(--coffee);
  letter-spacing: -0.01em;
  line-height: 1;
  margin-bottom: 22px;
}
.pillar-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: -0.005em;
  margin-bottom: 12px;
}
.pillar-desc {
  font-size: 14.5px;
  line-height: 1.6;
  color: rgba(59,36,20,0.7);
}

/* PROCESS */
.franchise-process {
  padding: var(--section-pad) 0;
  background: var(--sage);
  color: var(--coffee-dark);
}
.franchise-process .eyebrow { color: var(--coffee-dark); }
.franchise-process .eyebrow::before { background: var(--coffee-dark); }
.franchise-process h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 0.95;
  letter-spacing: -0.015em;
  margin-top: 18px;
  text-align: center;
}
.franchise-process h2 em {
  font-family: var(--font-display); font-style: italic; color: var(--coffee-dark);
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 56px;
  counter-reset: step;
}
.process-step {
  background: var(--cream);
  border-radius: 16px;
  padding: 28px;
  position: relative;
  counter-increment: step;
}
.process-step::before {
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 2px;
  color: var(--coffee);
  display: block;
  margin-bottom: 14px;
}
.process-step h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.15;
  margin-bottom: 10px;
  color: var(--coffee-dark);
}
.process-step p {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(59,36,20,0.7);
}
.process-step-duration {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--coffee);
  font-weight: 700;
  margin-top: 14px;
  display: block;
}

@media (max-width: 800px) {
  .process-steps { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 500px) {
  .process-steps { grid-template-columns: 1fr; }
}

/* MULTI-STEP FORM */
.franchise-form-section {
  padding: var(--section-pad) 0;
  background: var(--cream);
}
.franchise-form-head {
  text-align: center;
  margin-bottom: 48px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.franchise-form-head h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 0.95;
  letter-spacing: -0.015em;
  margin-top: 18px;
  color: var(--coffee-dark);
}
.franchise-form-head h2 em {
  font-family: var(--font-display); font-style: italic; color: var(--coffee);
}
.franchise-form-head p {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(59,36,20,0.75);
  margin-top: 14px;
}

.franchise-form-card {
  max-width: 720px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 24px;
  padding: 48px;
  border: 1.5px solid var(--line);
  box-shadow: 0 20px 60px rgba(59,36,20,0.06);
}

.form-progress {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 36px;
}
.form-progress-dot {
  flex: 1;
  height: 6px;
  border-radius: 3px;
  background: var(--cream-soft);
  transition: background 0.4s var(--ease);
}
.form-progress-dot.done { background: var(--coffee); }
.form-progress-dot.active { background: var(--coffee-dark); }
.form-progress-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--coffee);
  white-space: nowrap;
  margin-left: 12px;
}

.form-step { display: none; animation: stepFade 0.5s var(--ease); }
.form-step.active { display: block; }
@keyframes stepFade {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.form-step-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--coffee-dark);
  margin-bottom: 8px;
}
.form-step-sub {
  font-size: 14px;
  color: rgba(59,36,20,0.65);
  margin-bottom: 28px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 16px;
}
.form-row.single { grid-template-columns: 1fr; }
.form-field { display: flex; flex-direction: column; }
.form-field label {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--coffee);
  margin-bottom: 8px;
}
.form-field input,
.form-field select,
.form-field textarea {
  font-family: var(--font-body);
  font-size: 16px;
  padding: 14px 16px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  background: var(--cream);
  color: var(--coffee-dark);
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
  width: 100%;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--coffee-dark);
  background: var(--white);
}
.form-field textarea { resize: vertical; min-height: 110px; }

.form-choice-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.form-choice {
  cursor: pointer;
  padding: 16px 18px;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  background: var(--cream);
  transition: all 0.3s var(--ease);
  text-align: left;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  color: var(--coffee-dark);
}
.form-choice:hover { border-color: var(--coffee); }
.form-choice.active {
  border-color: var(--coffee-dark);
  background: var(--coffee-dark);
  color: var(--cream);
}
.form-choice-hint {
  display: block;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--coffee);
  opacity: 0.7;
  margin-top: 4px;
}
.form-choice.active .form-choice-hint { color: var(--sage); opacity: 0.9; }

.form-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.form-step-count {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--coffee);
}

.form-success {
  text-align: center;
  padding: 20px 0;
}
.form-success-mark {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--coffee);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 30px;
}
.form-success h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--coffee-dark);
  margin-bottom: 14px;
}
.form-success p {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(59,36,20,0.7);
  max-width: 440px;
  margin: 0 auto 24px;
}

@media (max-width: 600px) {
  .franchise-form-card { padding: 32px 22px; }
  .form-row { grid-template-columns: 1fr; }
  .form-choice-grid { grid-template-columns: 1fr; }
}

/* FAQ section reused */
.franchise-faq {
  padding: var(--section-pad) 0;
  background: var(--white);
  border-top: 1px solid var(--line);
}
.franchise-faq-head {
  text-align: center;
  margin-bottom: 48px;
}
.franchise-faq-head h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 0.95;
  letter-spacing: -0.015em;
  margin-top: 18px;
  color: var(--coffee-dark);
}
.franchise-faq-head h2 em {
  font-family: var(--font-display); font-style: italic; color: var(--coffee);
}
.faq-list {
  max-width: 760px;
  margin: 0 auto;
}
.faq-item {
  border-top: 1px solid var(--line);
  cursor: pointer;
}
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-q {
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  line-height: 1.3;
  letter-spacing: -0.005em;
  color: var(--coffee-dark);
}
.faq-q-mark {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 26px;
  color: var(--coffee);
  transition: transform 0.3s var(--ease);
  line-height: 1;
}
.faq-item.open .faq-q-mark { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s var(--ease);
}
.faq-item.open .faq-a { max-height: 280px; }
.faq-a-inner {
  font-size: 15px;
  line-height: 1.65;
  color: rgba(59,36,20,0.72);
  padding-bottom: 22px;
  max-width: 640px;
}

/* ===========================
   MASCOT DOODLES — sprinkled across sections
   Drop-in: replace the named PNGs in assets/img to swap poses
   =========================== */
.mascot-doodle {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  filter: drop-shadow(0 6px 16px rgba(59, 36, 20, 0.18));
  opacity: 0.92;
  will-change: transform;
}
.mascot-doodle img {
  width: 100%;
  height: auto;
  display: block;
}
.mascot-doodle.dark img {
  /* If the supplied PNG has WHITE line-art (visible only on dark backgrounds),
     this filter inverts it so it's dark line-art and shows on light backgrounds.
     Comment this out if your PNGs are already dark line-art. */
  /* filter: invert(1) brightness(0.18); */
}

/* Sizes */
.mascot-doodle.size-s { width: 80px; }
.mascot-doodle.size-m { width: 120px; }
.mascot-doodle.size-l { width: 160px; }
.mascot-doodle.size-xl { width: 200px; }

/* Rotation utilities */
.mascot-doodle.rot--12 { transform: rotate(-12deg); }
.mascot-doodle.rot--8  { transform: rotate(-8deg); }
.mascot-doodle.rot--4  { transform: rotate(-4deg); }
.mascot-doodle.rot-4   { transform: rotate(4deg); }
.mascot-doodle.rot-8   { transform: rotate(8deg); }
.mascot-doodle.rot-12  { transform: rotate(12deg); }

/* Section-specific placements — each one a different vibe */

/* MANIFESTO — order-taking mascot peeking from bottom-right of section */
.mascot-doodle.in-manifesto {
  width: 160px;
  bottom: -10px;
  right: -20px;
  transform: rotate(-6deg);
  animation: floatDoodle 6s ease-in-out infinite;
}

/* DRINKS — brewing mascot peeking from top-left, white version since drinks is dark */
.drinks { position: relative; overflow: hidden; }
.mascot-doodle.in-drinks {
  width: 140px;
  top: 40px;
  right: -30px;
  transform: rotate(8deg);
  opacity: 0.55;
  filter: drop-shadow(0 6px 16px rgba(0,0,0,0.4));
  animation: floatDoodle 7s ease-in-out infinite reverse;
}

/* FOOD — cup-in-hand mascot in the bottom-left of left panel */
.food { position: relative; }
.mascot-doodle.in-food {
  width: 110px;
  bottom: 80px;
  left: 36px;
  z-index: 3;
  transform: rotate(-5deg);
  animation: floatDoodle 5.5s ease-in-out infinite;
}

/* REVIEWS — thumbs-up mascot at the top-right corner */
.reviews { position: relative; overflow: hidden; }
.mascot-doodle.in-reviews {
  width: 130px;
  top: 60px;
  right: 40px;
  transform: rotate(10deg);
  animation: floatDoodle 6.5s ease-in-out infinite;
}

/* MOODY — small extra peek mascot bottom-left */
.moody { position: relative; }
.mascot-doodle.in-moody {
  width: 100px;
  bottom: 24px;
  left: 30px;
  transform: rotate(-10deg);
  opacity: 0.85;
  animation: floatDoodle 5s ease-in-out infinite;
}

/* LOCATIONS — wave mascot saying hi between the two cards */
.locations { position: relative; }
.mascot-doodle.in-locations {
  width: 110px;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%) rotate(-4deg);
  z-index: 2;
  animation: floatDoodleX 6s ease-in-out infinite;
}
@keyframes floatDoodleX {
  0%, 100% { transform: translateX(-50%) rotate(-4deg) translateY(0); }
  50%      { transform: translateX(-50%) rotate(-2deg) translateY(-8px); }
}

/* FOOTER — wave mascot near the big wordmark */
.footer { position: relative; }
.mascot-doodle.in-footer {
  width: 140px;
  top: 100px;
  right: 4%;
  transform: rotate(-6deg);
  opacity: 0.7;
  filter: drop-shadow(0 6px 16px rgba(0,0,0,0.5)) invert(0.85) sepia(0.4) hue-rotate(330deg);
  /* The filter washes the dark mascot to a cream tint on the black footer */
  animation: floatDoodle 6s ease-in-out infinite;
}

/* FRANCHISE PAGE — laptop mascot near hero and form */
.franchise-hero { position: relative; }
.mascot-doodle.in-franchise-hero {
  width: 140px;
  bottom: 30px;
  right: 6%;
  transform: rotate(-6deg);
  opacity: 0.85;
  filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.12));
  animation: floatDoodle 6s ease-in-out infinite;
}
.franchise-form-section { position: relative; overflow: hidden; }
.mascot-doodle.in-franchise-form {
  width: 130px;
  bottom: 24px;
  left: 30px;
  transform: rotate(8deg);
  opacity: 0.85;
  animation: floatDoodle 6.5s ease-in-out infinite;
}

/* STORY PAGE accents */
.timeline-section { position: relative; overflow: hidden; }
.mascot-doodle.in-timeline {
  width: 110px;
  top: 60px;
  right: 6%;
  transform: rotate(10deg);
  opacity: 0.85;
  animation: floatDoodle 6s ease-in-out infinite;
}

/* Generic float animation for mascot doodles */
@keyframes floatDoodle {
  0%, 100% { translate: 0 0; }
  50%      { translate: 0 -8px; }
}

/* Hide some doodles on mobile to avoid clutter */
@media (max-width: 700px) {
  .mascot-doodle.in-drinks,
  .mascot-doodle.in-reviews,
  .mascot-doodle.in-footer,
  .mascot-doodle.in-franchise-hero,
  .mascot-doodle.in-timeline { display: none; }
  .mascot-doodle.in-manifesto,
  .mascot-doodle.in-food,
  .mascot-doodle.in-moody,
  .mascot-doodle.in-locations,
  .mascot-doodle.in-franchise-form { width: 80px; }
}

/* ===========================
   Reveal on scroll
   =========================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; }
.reveal-d4 { transition-delay: 0.32s; }

/* ===========================
   FOLLOW US PAGE
   =========================== */
.page-follow .nav-logo-dark { display: none; }
.page-follow .nav-logo-light { display: block; }
.page-follow .nav.scrolled .nav-logo-dark { display: block; }
.page-follow .nav.scrolled .nav-logo-light { display: none; }
.page-follow .nav:not(.scrolled) .nav-links a { color: var(--cream); }
.page-follow .nav:not(.scrolled) .nav-links a.nav-link-active { color: var(--sage); }
.page-follow .nav:not(.scrolled) .nav-links a::after { background: var(--cream); }
.page-follow .nav:not(.scrolled) .nav-city-chip {
  color: var(--cream);
  border-color: rgba(247, 242, 234, 0.35);
}
.page-follow .nav:not(.scrolled) .nav-toggle { color: var(--cream); border-color: rgba(247, 242, 234, 0.35); }

.follow-hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  padding: 160px var(--gutter) 80px;
  background: var(--coffee-dark);
  color: var(--cream);
  overflow: hidden;
}
.follow-hero-bg {
  position: absolute;
  inset: 0;
  opacity: 0.42;
}
.follow-hero-tile {
  position: absolute;
  border-radius: 16px;
  background-size: cover;
  background-position: center;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}
.follow-hero-tile-1 {
  width: 28%;
  height: 42%;
  top: 12%;
  left: 6%;
  background-image: url('../images/gallery/ig-3.webp');
  animation: follow-float-1 8s ease-in-out infinite;
}
.follow-hero-tile-2 {
  width: 22%;
  height: 34%;
  top: 18%;
  right: 10%;
  background-image: url('../images/gallery/ig-6.webp');
  animation: follow-float-2 9s ease-in-out infinite;
}
.follow-hero-tile-3 {
  width: 24%;
  height: 36%;
  bottom: 22%;
  left: 28%;
  background-image: url('../images/gallery/ig-1.webp');
  animation: follow-float-3 10s ease-in-out infinite 1s;
}
.follow-hero-tile-4 {
  width: 20%;
  height: 30%;
  bottom: 28%;
  right: 22%;
  background-image: url('../images/gallery/ig-4.webp');
  animation: follow-float-4 7s ease-in-out infinite 0.5s;
}
@keyframes follow-float-1 {
  0%, 100% { transform: rotate(-6deg) translateY(0); }
  50% { transform: rotate(-6deg) translateY(-14px); }
}
@keyframes follow-float-2 {
  0%, 100% { transform: rotate(8deg) translateY(0); }
  50% { transform: rotate(8deg) translateY(-14px); }
}
@keyframes follow-float-3 {
  0%, 100% { transform: rotate(4deg) translateY(0); }
  50% { transform: rotate(4deg) translateY(-14px); }
}
@keyframes follow-float-4 {
  0%, 100% { transform: rotate(-5deg) translateY(0); }
  50% { transform: rotate(-5deg) translateY(-14px); }
}
.follow-hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}
.follow-hero-eyebrow { color: var(--sage); }
.follow-hero-eyebrow::before { background: var(--sage); }
.follow-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(48px, 9vw, 120px);
  line-height: 0.9;
  letter-spacing: -0.03em;
  margin-top: 18px;
}
.follow-hero h1 em {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--sage);
  font-weight: 600;
}
.follow-hero p {
  font-size: 17px;
  line-height: 1.65;
  opacity: 0.82;
  max-width: 520px;
  margin-top: 20px;
}
.follow-hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.follow-stat-num {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1;
  color: var(--sage);
}
.follow-stat-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.6;
  margin-top: 6px;
}

.follow-spotlight {
  padding: var(--section-pad) 0;
  background: var(--cream);
  border-top: 1px solid var(--line);
}
.follow-spotlight-head h2,
.follow-mosaic-head h2,
.follow-platforms-head h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  line-height: 0.92;
  letter-spacing: -0.02em;
  margin-top: 18px;
}
.follow-spotlight-head h2 em,
.follow-mosaic-head h2 em,
.follow-platforms-head h2 em {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--coffee);
  font-weight: 600;
}
.follow-ig-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
}
.follow-ig-card {
  display: block;
  border-radius: 16px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  text-decoration: none;
  color: inherit;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.follow-ig-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(59, 36, 20, 0.12);
}
.follow-ig-visual {
  height: 240px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.follow-ig-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(59, 36, 20, 0.45));
}
.follow-ig-visual-vadodara { background-image: url('../images/gallery/ig-5.webp'); }
.follow-ig-visual-nashik { background-image: url('../images/gallery/ig-2.webp'); }
.follow-ig-body { padding: 28px 28px 32px; }
.follow-ig-city {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--coffee);
}
.follow-ig-body h3 {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 36px);
  margin: 10px 0 12px;
  letter-spacing: -0.02em;
}
.follow-ig-body p {
  font-size: 14px;
  line-height: 1.65;
  opacity: 0.72;
  margin-bottom: 18px;
}
.follow-ig-cta {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--coffee);
}

.follow-mosaic-section {
  padding: var(--section-pad) 0;
  background: var(--ink);
  color: var(--cream);
  overflow: hidden;
}
.follow-mosaic-head {
  margin-bottom: 40px;
}
.follow-mosaic-head .eyebrow { color: var(--sage); }
.follow-mosaic-head .eyebrow::before { background: var(--sage); }
.follow-mosaic {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 12px;
  padding: 0 var(--gutter);
  max-width: 1400px;
  margin: 0 auto;
}
.follow-mosaic-item {
  display: flex;
  align-items: flex-end;
  padding: 16px;
  border-radius: 12px;
  background-size: cover;
  background-position: center;
  text-decoration: none;
  color: var(--cream);
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--ease);
}
.follow-mosaic-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(0, 0, 0, 0.55));
  transition: opacity 0.35s var(--ease);
}
.follow-mosaic-item:hover { transform: scale(0.98); }
.follow-mosaic-item:hover::after { opacity: 0.85; }
.follow-mosaic-item span {
  position: relative;
  z-index: 1;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.follow-mosaic-item--tall { grid-row: span 2; }
.follow-mosaic-item--wide { grid-column: span 2; }

.follow-google {
  padding: var(--section-pad) 0;
  background: var(--cream);
  border-top: 1px solid var(--line);
}
.follow-google-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.follow-google-card {
  display: block;
  padding: 36px 32px;
  border-radius: 16px;
  background: var(--white);
  border: 1px solid var(--line);
  text-decoration: none;
  color: inherit;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
}
.follow-google-card:hover {
  transform: translateY(-4px);
  border-color: var(--coffee);
  box-shadow: 0 16px 40px rgba(59, 36, 20, 0.1);
}
.follow-google-city {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--coffee);
}
.follow-google-stars {
  font-size: 18px;
  letter-spacing: 2px;
  color: #e8a317;
  margin: 14px 0 6px;
}
.follow-google-score {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 52px);
  line-height: 1;
  color: var(--coffee-dark);
  margin-bottom: 14px;
}
.follow-google-score span {
  font-size: 0.45em;
  opacity: 0.5;
}
.follow-google-desc {
  font-size: 14px;
  line-height: 1.65;
  opacity: 0.72;
  margin-bottom: 20px;
}
.follow-google-cta {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--coffee);
}

.follow-platforms {
  padding: var(--section-pad) 0;
  background: var(--cream);
  border-top: 1px solid var(--line);
}
.follow-platforms-head {
  max-width: 560px;
  margin-bottom: 48px;
}
.follow-platforms-head p {
  font-size: 16px;
  line-height: 1.65;
  opacity: 0.72;
  margin-top: 16px;
}
.follow-platform-group { margin-bottom: 48px; }
.follow-platform-group:last-child { margin-bottom: 0; }
.follow-platform-group-title {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
  color: var(--coffee-dark);
}
.follow-platform-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.follow-platform-card {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 22px 20px;
  border-radius: 12px;
  background: var(--white);
  border: 1px solid var(--line);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.follow-platform-card:hover {
  border-color: var(--coffee);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(59, 36, 20, 0.08);
}
.follow-platform-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--coffee-dark);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.follow-platform-name {
  font-size: 14px;
  font-weight: 700;
  margin-top: 4px;
}
.follow-platform-handle {
  font-size: 12px;
  opacity: 0.6;
  line-height: 1.4;
}

.follow-cta {
  text-align: center;
  background: var(--coffee-dark);
  color: var(--cream);
  padding: var(--section-pad) 0;
}
.follow-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 72px);
  line-height: 0.95;
  letter-spacing: -0.02em;
}
.follow-cta h2 em {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--sage);
  font-weight: 600;
}
.follow-cta p {
  font-size: 16px;
  opacity: 0.78;
  margin: 16px 0 28px;
}
.follow-cta-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.follow-cta .btn-secondary {
  color: var(--cream);
  border-color: rgba(247, 242, 234, 0.45);
}
.follow-cta .btn-secondary:hover {
  background: var(--cream);
  color: var(--ink);
}

@media (max-width: 900px) {
  .follow-hero { min-height: auto; padding-top: 140px; }
  .follow-hero-tile { opacity: 0.55; }
  .follow-ig-grid { grid-template-columns: 1fr; }
  .follow-mosaic {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 160px;
  }
  .follow-mosaic-item--wide { grid-column: span 2; }
  .follow-platform-grid { grid-template-columns: repeat(2, 1fr); }
  .follow-google-grid { grid-template-columns: 1fr; }
}
@media (max-width: 500px) {
  .follow-mosaic { grid-template-columns: 1fr; grid-auto-rows: 180px; }
  .follow-mosaic-item--tall,
  .follow-mosaic-item--wide { grid-row: span 1; grid-column: span 1; }
  .follow-platform-grid { grid-template-columns: 1fr; }
}

/* ===========================
   STORY — Franchise teaser
   =========================== */
.story-franchise {
  padding: clamp(56px, 8vw, 88px) 0;
  background: var(--white);
  border-top: 1px solid var(--line);
}
.story-franchise-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: center;
  padding: clamp(36px, 5vw, 56px);
  border-radius: 16px;
  background: linear-gradient(135deg, var(--cream) 0%, #f0ebe0 100%);
  border: 1px solid var(--line);
}
.story-franchise-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 52px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin: 18px 0 14px;
  color: var(--coffee-dark);
}
.story-franchise-copy h2 em {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--coffee);
  font-weight: 600;
}
.story-franchise-copy p {
  font-size: 15px;
  line-height: 1.65;
  color: rgba(59, 36, 20, 0.75);
  max-width: 480px;
}
.story-franchise-contact {
  text-align: center;
  padding: 28px 24px;
  border-radius: 12px;
  background: var(--white);
  border: 1px solid var(--line);
}
.story-franchise-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--coffee);
  margin-bottom: 12px;
}
.story-franchise-link {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 32px);
  color: var(--coffee-dark);
  text-decoration: none;
  margin-bottom: 18px;
}
.story-franchise-link:hover { color: var(--coffee); }

@media (max-width: 800px) {
  .story-franchise-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}
