/* ═══════════════════════════════════════════════
   BRUMA · Café & Arte · CDMX
   ═══════════════════════════════════════════════ */

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

/* ── Tokens ── */
:root {
  --paper:   #f6edd8;
  --paper2:  #ede2c8;
  --cream:   #fdf8ef;
  --ink:     #1a0f08;
  --rust:    #bf4a22;
  --ochre:   #c98a1e;
  --plum:    #3b1938;
  --olive:   #546637;
  --coral:   #e07255;
  --sage:    #7d9462;
  --fog:     rgba(26,15,8,.06);

  --font-d: 'Fraunces', Georgia, serif;
  --font-h: 'Caveat', cursive;
  --font-b: 'DM Sans', system-ui, sans-serif;
  --nav-h: 68px;

  /* Spring easing */
  --spring: cubic-bezier(0.34,1.56,0.64,1);
  --ease-out: cubic-bezier(0.16,1,0.3,1);
}

html { scroll-behavior: smooth; }
body { font-family: var(--font-b); background: var(--paper); color: var(--ink); overflow-x: hidden; cursor: none; }
a, button { cursor: none; }
@media (hover: none) { body, a, button { cursor: auto; } }

/* ── Type ── */
h1,h2,h3 { font-family: var(--font-d); font-weight: 700; line-height: 1.05; }
h2 { font-size: clamp(2.4rem,5vw,4.5rem); }
h3 { font-size: clamp(1.3rem,2.5vw,1.9rem); }
em { font-style: italic; color: var(--rust); }
.handwritten { font-family: var(--font-h); }
.body-text { font-size: 1rem; line-height: 1.85; color: color-mix(in srgb,var(--ink) 60%,transparent); font-weight: 300; }
.section-tag { display: inline-block; font-size: .68rem; letter-spacing: .22em; text-transform: uppercase; font-weight: 500; color: color-mix(in srgb,var(--ink) 40%,transparent); margin-bottom: 1rem; }
.section-tag.light { color: rgba(253,248,239,.45); }

/* ── Buttons ── */
.pill-btn {
  display: inline-block; padding: .72rem 1.9rem;
  background: var(--rust); color: #fff;
  border-radius: 100px; font-size: .84rem; font-weight: 500;
  letter-spacing: .04em; border: 1.5px solid var(--rust);
  transition: background .25s, color .25s, transform .3s var(--spring), box-shadow .25s;
  will-change: transform;
}
.pill-btn:hover { background: color-mix(in srgb,var(--rust) 82%,#000); box-shadow: 0 8px 24px rgba(191,74,34,.35); }
.pill-btn.pill-ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.pill-btn.pill-ghost:hover { background: var(--ink); color: var(--paper); }
.pill-btn.pill-dark { background: var(--plum); border-color: var(--plum); }
.pill-btn.pill-dark:hover { background: color-mix(in srgb,var(--plum) 80%,#000); }

/* ═══════════════════════════════════════════════
   GRAIN OVERLAY (canvas)
   ═══════════════════════════════════════════════ */
#grain {
  position: fixed; inset: 0; z-index: 999;
  pointer-events: none;
  opacity: .032;
  mix-blend-mode: overlay;
}

/* ═══════════════════════════════════════════════
   CUSTOM CURSOR
   ═══════════════════════════════════════════════ */
#c-dot {
  position: fixed; z-index: 1000; pointer-events: none;
  width: 8px; height: 8px;
  background: var(--rust);
  border-radius: 50%;
  transform: translate(-50%,-50%);
  transition: transform .1s, width .3s var(--spring), height .3s var(--spring), background .3s;
}
#c-ring {
  position: fixed; z-index: 1000; pointer-events: none;
  width: 36px; height: 36px;
  border: 1.5px solid var(--rust);
  border-radius: 50%;
  transform: translate(-50%,-50%);
  transition: width .4s var(--spring), height .4s var(--spring), border-color .3s, opacity .3s;
  opacity: .65;
}
body.cursor-hover #c-dot  { width: 14px; height: 14px; background: var(--ochre); }
body.cursor-hover #c-ring { width: 52px; height: 52px; border-color: var(--ochre); opacity: .5; }
body.cursor-click #c-dot  { transform: translate(-50%,-50%) scale(.7); }

@media (hover:none) { #c-dot, #c-ring { display: none; } }

/* ═══════════════════════════════════════════════
   PAINT-WIPE HEADING REVEAL
   ═══════════════════════════════════════════════ */
.paint-reveal { position: relative; overflow: hidden; }
.paint-reveal::after {
  content: '';
  position: absolute; inset: -4px;
  background: var(--rust);
  transform: scaleX(0); transform-origin: left;
  z-index: 1;
}
.paint-reveal.wiping::after {
  transform: scaleX(1);
  transition: transform .48s cubic-bezier(.77,0,.175,1);
}
.paint-reveal.wiped::after {
  transform: scaleX(0); transform-origin: right;
  transition: transform .42s cubic-bezier(.77,0,.175,1) .06s;
}
.light-reveal::after { background: var(--ochre); }

/* ═══════════════════════════════════════════════
   SCROLL REVEAL
   ═══════════════════════════════════════════════ */
.js-reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
  transition-delay: var(--d, 0s);
}
.js-reveal.visible { opacity: 1; transform: translateY(0); }

/* ═══════════════════════════════════════════════
   CSS GENERATIVE PAINTINGS
   ═══════════════════════════════════════════════ */
.paint-bg-1 {
  background:
    radial-gradient(ellipse 75% 55% at 18% 32%, rgba(191,74,34,.88) 0%, transparent 52%),
    radial-gradient(ellipse 55% 75% at 82% 68%, rgba(59,25,56,.8) 0%, transparent 50%),
    radial-gradient(circle at 58% 22%, rgba(201,138,30,.72) 0%, transparent 42%),
    radial-gradient(ellipse 85% 38% at 42% 87%, rgba(84,102,55,.6) 0%, transparent 62%),
    linear-gradient(148deg, #e8c4a0 0%, #bf8c5a 55%, #7a4020 100%);
  transition: background-position .8s ease, filter .5s ease;
}
.paint-bg-1:hover { filter: saturate(1.15) brightness(1.05); }

.paint-bg-2 {
  background:
    radial-gradient(ellipse 60% 85% at 28% 62%, rgba(84,102,55,.85) 0%, transparent 52%),
    radial-gradient(ellipse 75% 55% at 72% 28%, rgba(224,114,85,.78) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(247,237,216,.45) 0%, transparent 58%),
    radial-gradient(ellipse 50% 40% at 80% 85%, rgba(201,138,30,.55) 0%, transparent 55%),
    linear-gradient(175deg, #d4eab8 0%, #9ac870 48%, #5a8030 100%);
  transition: filter .5s ease;
}
.paint-bg-2:hover { filter: saturate(1.2) brightness(1.04); }

.paint-bg-3 {
  background:
    radial-gradient(ellipse 62% 42% at 52% 18%, rgba(201,138,30,.85) 0%, transparent 48%),
    radial-gradient(ellipse 82% 62% at 18% 72%, rgba(28,12,52,.92) 0%, transparent 58%),
    radial-gradient(circle at 82% 82%, rgba(59,25,56,.75) 0%, transparent 52%),
    radial-gradient(ellipse 45% 60% at 65% 45%, rgba(80,40,100,.6) 0%, transparent 55%),
    linear-gradient(205deg, #180c2e 0%, #2e1850 50%, #4e2878 100%);
  transition: filter .5s ease;
}
.paint-bg-3:hover { filter: saturate(1.15) brightness(1.08); }

.paint-bg-4 {
  background:
    radial-gradient(ellipse 70% 50% at 30% 28%, rgba(224,114,85,.8) 0%, transparent 52%),
    radial-gradient(ellipse 50% 70% at 72% 72%, rgba(191,74,34,.7) 0%, transparent 50%),
    radial-gradient(circle at 52% 58%, rgba(247,210,150,.5) 0%, transparent 45%),
    radial-gradient(ellipse 80% 35% at 50% 95%, rgba(100,45,20,.55) 0%, transparent 60%),
    linear-gradient(140deg, #f5d4a8 0%, #d8906a 50%, #9e4828 100%);
  transition: filter .5s ease;
}
.paint-bg-4:hover { filter: saturate(1.2) brightness(1.05); }

.paint-bg-5 {
  background:
    radial-gradient(ellipse 58% 78% at 22% 55%, rgba(59,25,56,.82) 0%, transparent 54%),
    radial-gradient(ellipse 72% 48% at 78% 32%, rgba(191,74,34,.7) 0%, transparent 52%),
    radial-gradient(circle at 50% 85%, rgba(201,138,30,.65) 0%, transparent 48%),
    radial-gradient(ellipse 55% 55% at 62% 55%, rgba(84,102,55,.45) 0%, transparent 58%),
    linear-gradient(165deg, #2a0e28 0%, #5e2858 55%, #8e4888 100%);
  transition: filter .5s ease;
}
.paint-bg-5:hover { filter: saturate(1.15) brightness(1.1); }

.paint-bg-6 {
  background:
    radial-gradient(ellipse 65% 45% at 62% 25%, rgba(224,190,80,.78) 0%, transparent 50%),
    radial-gradient(ellipse 55% 68% at 25% 65%, rgba(84,102,55,.72) 0%, transparent 52%),
    radial-gradient(circle at 78% 75%, rgba(191,74,34,.6) 0%, transparent 48%),
    radial-gradient(ellipse 80% 32% at 48% 92%, rgba(60,38,20,.5) 0%, transparent 58%),
    linear-gradient(130deg, #e8d890 0%, #b8c858 48%, #788820 100%);
  transition: filter .5s ease;
}
.paint-bg-6:hover { filter: saturate(1.2) brightness(1.05); }

/* ═══════════════════════════════════════════════
   POLAROIDS
   ═══════════════════════════════════════════════ */
.polaroid {
  background: #fff;
  padding: 10px 10px 30px;
  box-shadow: 4px 6px 22px rgba(26,15,8,.18), 0 0 0 1px rgba(26,15,8,.04);
  display: inline-block;
  position: absolute;
  transform-style: preserve-3d;
  will-change: transform;
  transition: box-shadow .4s ease, transform .5s var(--spring);
  z-index: 2;
}
.polaroid:hover { box-shadow: 8px 14px 40px rgba(26,15,8,.26); z-index: 10; }
.pol-img {
  width: 100%; padding-top: 96%;
  background-size: cover; background-position: center;
  background-color: var(--paper2);
  display: block;
}
.polaroid > p.handwritten {
  text-align: center; font-size: 1.05rem;
  color: var(--ink); padding-top: 6px;
  pointer-events: none;
}

/* Tape strips */
.tape-strip {
  position: absolute; z-index: 3; pointer-events: none;
  height: 20px; width: 56px;
  left: 50%; transform: translateX(-50%);
}
.origin-tape { top: -10px; background: rgba(220,185,70,.58); }
/* Tape strip pinning a polaroid to the page — sits at the top edge,
   centered horizontally, like a piece of masking tape would.        */
.tape-pin {
  position: absolute;
  top: -10px;
  left: 50%;
  width: 68px;
  height: 20px;
  background: rgba(220,185,70,.62);
  transform: translateX(-50%) rotate(-3deg);
  z-index: 5;
  box-shadow: 0 2px 5px rgba(26,15,8,.12);
  pointer-events: none;
}
/* Alternate green tape on the second about polaroid */
.ab-p2 .tape-pin {
  background: rgba(140,175,100,.55);
  transform: translateX(-50%) rotate(2deg);
}

/* ═══════════════════════════════════════════════
   NAV
   ═══════════════════════════════════════════════ */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%;
  transition: background .35s, box-shadow .35s;
}
#nav.scrolled {
  background: rgba(246,237,216,.93);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(26,15,8,.07);
}
.nav-logo {
  font-family: var(--font-d); font-weight: 900; font-size: 1.45rem;
  letter-spacing: .28em; color: var(--ink);
}
.nav-links { display: flex; gap: 2.2rem; }
.nav-links a {
  font-size: .8rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--ink); transition: color .2s;
}
.nav-links a:hover { color: var(--rust); }
.lang-switch { display: flex; border: 1.5px solid rgba(26,15,8,.22); border-radius: 100px; overflow: hidden; }
.lang-btn {
  background: none; border: none;
  font-family: var(--font-b); font-size: .78rem; font-weight: 500;
  padding: .34rem .95rem; color: rgba(26,15,8,.42);
  transition: background .2s, color .2s;
  letter-spacing: .03em;
}
.lang-btn.active { background: var(--ink); color: var(--paper); }

/* ═══════════════════════════════════════════════
   HERO — Gallery Composition
   Inspired by bold editorial gallery posters:
   massive overlapping type layers behind/in-front
   of a central portrait photo, cream background.
   ═══════════════════════════════════════════════ */
#hero {
  position: relative;
  min-height: 100svh;
  background: var(--cream);
  overflow: hidden;
  isolation: isolate;
}

/* ── Main artwork — centered background image (z:1, text sits on top) ── */
.hero-main-art {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  pointer-events: none;
}
.hero-main-img {
  display: block;
  width: clamp(260px, 30vw, 460px);
  height: auto;
  max-height: 78vh;
  object-fit: contain;
  opacity: .95;
  /* SVG filter removes the painting's black background; sepia/contrast
     tune the remaining subject to feel at home on the cream hero.     */
  filter: url(#black-to-transparent) sepia(.1) contrast(1.06) brightness(1.04);
  /* Soft radial mask — fades any residual dark edges into the cream.
     Serves as a graceful fallback if the SVG filter is blocked by
     cross-origin restrictions on the Pinterest CDN image.            */
  -webkit-mask-image: radial-gradient(
    ellipse 72% 90% at 50% 48%,
    #000 45%, #000 65%, transparent 100%);
  mask-image: radial-gradient(
    ellipse 72% 90% at 50% 48%,
    #000 45%, #000 65%, transparent 100%);
}

/* ── The big overlapping words (z:3) — the composition's visual anchor ── */
.hw {
  position: absolute;
  font-family: var(--font-d);
  font-weight: 900;
  line-height: .82;
  color: var(--rust);
  user-select: none;
  letter-spacing: -.01em;
  margin: 0;
  z-index: 3;
}

/* "EL" / "THE" — top-left */
.hw-word-1 {
  top: 7%;
  left: 3%;
  font-size: clamp(3.5rem, 10vw, 12rem);
}

/* "CAFÉ" — massive, left side (h1 for SEO) */
.hw-word-2 {
  top: 16%;
  left: -1%;
  font-size: clamp(5.5rem, 21vw, 26rem);
  font-family: var(--font-d); /* override h1 default */
}

/* "ES" / "IS" — bottom-left */
.hw-word-3 {
  bottom: 22%;
  left: 2%;
  font-size: clamp(3.5rem, 10vw, 12rem);
}

/* "ARTE" / "ART" — bottom-right */
.hw-word-4 {
  bottom: 2%;
  right: -1%;
  font-size: clamp(5rem, 19vw, 24rem);
}

/* ── Script word — italic accent, in front of portrait ── */
.hero-script {
  position: absolute;
  right: 5%;
  bottom: 36%;
  z-index: 7;
  font-family: var(--font-h);
  font-size: clamp(2rem, 5.5vw, 6rem);
  color: var(--rust);
  transform: rotate(-5deg);
  pointer-events: none;
  white-space: nowrap;
  margin: 0;
}

/* ── Small editorial marks ── */
.hero-reg-plus {
  position: absolute;
  top: 2.5%; left: 2.5%;
  z-index: 10;
  font-size: 1.4rem;
  font-family: var(--font-b);
  font-weight: 200;
  color: var(--ink);
  line-height: 1;
  pointer-events: none;
}

.hero-script-brand {
  position: absolute;
  top: 2%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  font-family: var(--font-h);
  font-size: clamp(1.5rem, 3.2vw, 2.8rem);
  color: var(--ink);
  pointer-events: none;
  white-space: nowrap;
  margin: 0;
}

.hero-label-right {
  position: absolute;
  top: 2.8%; right: 3%;
  z-index: 10;
  font-family: var(--font-b);
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink);
  pointer-events: none;
}

/* ── Info block — upper-right ── */
.hero-info {
  position: absolute;
  top: 14%;
  right: 3.5%;
  z-index: 10;
  max-width: clamp(180px, 20vw, 290px);
  text-align: right;
}
.hero-info-desc {
  font-size: clamp(.7rem, 1vw, .86rem);
  line-height: 1.78;
  color: color-mix(in srgb, var(--ink) 60%, transparent);
  margin-bottom: 1.2rem;
}
.hero-info-hours {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 1.2rem;
  font-family: var(--font-b);
  font-size: .62rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink);
  border-top: 1px solid rgba(26,15,8,.14);
  padding-top: .6rem;
}
.hih-time {
  color: var(--rust);
  letter-spacing: .03em;
  font-size: .7rem;
  line-height: 1.5;
  white-space: nowrap;
}

/* ── CTA block — lower-left ──
   Styled as a dark exhibition card, like the
   "BUY TICKET" block in the reference image    */
.hero-cta-block {
  position: absolute;
  bottom: 7%;
  left: 3%;
  z-index: 10;
  background: var(--ink);
  padding: 1.1rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
  min-width: 188px;
}
/* Coffee photo thumbnail — mirrors reference's small framed painting in the ticket block */
.hcta-img {
  width: 100%;
  height: 110px;
  background:
    url('https://images.unsplash.com/photo-1495474472287-4d71bcdd2085?w=400&h=220&fit=crop&q=85')
    center/cover no-repeat;
  margin-bottom: .65rem;
  filter: brightness(.78) sepia(.18);
  border: 1px solid rgba(253,248,239,.1);
}

.hcta-primary {
  display: block;
  font-family: var(--font-b);
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--cream);
  padding-bottom: .5rem;
  border-bottom: 1px solid rgba(253,248,239,.18);
  transition: color .2s;
}
.hcta-primary:hover { color: var(--ochre); }
.hcta-secondary {
  display: block;
  font-family: var(--font-b);
  font-size: .72rem;
  font-weight: 400;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: rgba(253,248,239,.48);
  transition: color .2s;
}
.hcta-secondary:hover { color: rgba(253,248,239,.82); }

/* ── Location line — bottom-center ── */
.hero-location {
  position: absolute;
  bottom: 2.5%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  font-family: var(--font-b);
  font-size: .6rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  font-weight: 500;
  color: rgba(26,15,8,.32);
  pointer-events: none;
  white-space: nowrap;
  margin: 0;
}

/* ── Screen-reader utility ── */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ── Responsive ── */
@media (max-width: 760px) {
  .hw-word-1 { font-size: clamp(2.5rem, 12vw, 7rem); top: 5%; }
  .hw-word-2 { font-size: clamp(4rem, 22vw, 13rem); top: 13%; }
  .hw-word-3 { font-size: clamp(2.5rem, 11vw, 6rem); bottom: 24%; }
  .hw-word-4 { font-size: clamp(4rem, 20vw, 11rem); bottom: 4%; }
  .hero-info,
  .hero-label-right { display: none; }
  .hero-script { font-size: clamp(1.5rem, 6vw, 3rem); right: 3%; bottom: 38%; }
  .hero-cta-block {
    bottom: 4%;
    left: 50%;
    transform: translateX(-50%);
    min-width: 220px;
  }
  .hero-location { font-size: .54rem; }
}

/* ═══════════════════════════════════════════════
   MARQUEES
   ═══════════════════════════════════════════════ */
.marquee-wrap {
  overflow: hidden; background: var(--plum); color: var(--paper);
  padding: .9rem 0;
}
.marquee-wrap.marquee-reverse .marquee-track {
  animation-direction: reverse;
}
.marquee-track {
  display: flex; gap: 1.8rem; white-space: nowrap;
  animation: scroll-left 22s linear infinite;
  font-size: .76rem; letter-spacing: .16em; text-transform: uppercase;
  align-items: center;
}
.marquee-wrap:hover .marquee-track { animation-play-state: paused; }
.bull { color: var(--ochre); font-size: .55rem; }
@keyframes scroll-left { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ═══════════════════════════════════════════════
   ABOUT
   ═══════════════════════════════════════════════ */
.about-section {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; padding: 9rem 6%;
  align-items: center;
}
.about-collage { position: relative; min-height: 540px; perspective: 900px; }
.about-collage .ab-p1 { width: 60%; top: 0; left: 5%; transform: rotate(-2deg); }
.about-collage .ab-p2 { width: 54%; bottom: 0; right: 0; transform: rotate(3deg); }

.about-text h2 { margin-bottom: 1.2rem; }
.about-text .body-text { margin-bottom: 2rem; }

.stat-row { display: flex; gap: 2rem; padding-top: 2rem; border-top: 1px solid rgba(26,15,8,.12); flex-wrap: wrap; }
.stat-item p { font-size: .75rem; text-transform: uppercase; letter-spacing: .1em; color: color-mix(in srgb,var(--ink) 50%,transparent); margin-top: .2rem; }
.stat-num {
  font-family: var(--font-d); font-size: 2.6rem; font-weight: 900;
  color: var(--rust); line-height: 1; display: inline-block;
}
.stat-unit { font-family: var(--font-d); font-size: 2rem; color: var(--rust); }

/* ═══════════════════════════════════════════════
   COFFEE
   ═══════════════════════════════════════════════ */
.coffee-section {
  background: var(--plum); color: var(--paper);
  padding: 6rem 6%; position: relative;
}
.coffee-section .section-tag { color: rgba(253,248,239,.45); }
.coffee-section h2 { color: var(--paper); }
.coffee-section h2 em { color: var(--ochre); }
.coffee-header { margin-bottom: 4rem; }

/* Torn paper edges */
.torn-edge {
  position: absolute; left: 0; right: 0; height: 48px; pointer-events: none; z-index: 1;
}
.torn-edge.top {
  top: -2px; background: var(--paper);
  clip-path: polygon(0 0,2% 100%,5% 25%,8% 88%,11% 12%,14% 78%,17% 18%,20% 92%,23% 8%,26% 82%,29% 22%,32% 96%,35% 14%,38% 80%,41% 5%,44% 75%,47% 28%,50% 94%,53% 16%,56% 84%,59% 10%,62% 76%,65% 22%,68% 92%,71% 6%,74% 80%,77% 18%,80% 96%,83% 12%,86% 78%,89% 24%,92% 90%,95% 8%,98% 72%,100% 30%,100% 0);
}
.torn-edge.bottom {
  bottom: -2px; background: var(--paper);
  clip-path: polygon(0 100%,2% 0,5% 75%,8% 12%,11% 88%,14% 22%,17% 82%,20% 8%,23% 92%,26% 18%,29% 78%,32% 4%,35% 86%,38% 20%,41% 95%,44% 25%,47% 72%,50% 6%,53% 84%,56% 16%,59% 90%,62% 24%,65% 78%,68% 8%,71% 94%,74% 20%,77% 82%,80% 4%,83% 88%,86% 22%,89% 76%,92% 10%,95% 92%,98% 28%,100% 70%,100% 100%);
}
.torn-edge.torn-light { background: var(--cream); }
.torn-edge.torn-light-inv { background: var(--cream); }

.origins-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-bottom: 4rem; }
.origin-card { position: relative; }
.origin-img {
  width: 100%; height: 268px;
  background-size: cover; background-position: center;
  margin-bottom: 1.1rem;
  filter: saturate(.85);
  transition: filter .5s ease, transform .5s var(--spring);
}
.origin-card:hover .origin-img { filter: saturate(1.1); transform: scale(1.015); }
.origin-card h3 { color: var(--paper); margin-bottom: .3rem; }
.origin-note { color: var(--ochre); font-size: 1.1rem; margin-bottom: .6rem; }
.origin-tags { display: flex; gap: .5rem; }
.origin-tags span { font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; border: 1px solid rgba(253,248,239,.28); padding: .2rem .65rem; color: rgba(253,248,239,.55); }

.menu-board {
  background: rgba(253,248,239,.06);
  border: 1px solid rgba(253,248,239,.12);
  padding: 2.5rem 3rem;
}
.menu-board-title { font-size: 1.9rem; color: var(--ochre); margin-bottom: 2rem; display: block; border-bottom: 1px solid rgba(253,248,239,.12); padding-bottom: 1rem; }
.menu-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 3rem; }
.menu-col h4 { font-size: .7rem; letter-spacing: .18em; text-transform: uppercase; color: rgba(253,248,239,.38); margin-bottom: 1.2rem; font-weight: 500; }
.menu-item {
  display: flex; align-items: baseline; gap: .25rem;
  font-family: var(--font-d); font-size: 1rem;
  color: rgba(253,248,239,.82); margin-bottom: .8rem;
}
.menu-item .dots {
  flex: 1; border-bottom: 1px dotted rgba(253,248,239,.18);
  height: 0; align-self: center; min-width: 12px;
}
.menu-item span:last-child { color: var(--ochre); font-size: .88rem; white-space: nowrap; }

/* ═══════════════════════════════════════════════
   FEATURED DRINKS
   ═══════════════════════════════════════════════ */
.drinks-section {
  background: var(--paper);
  padding: 6rem 6%;
  position: relative;
}
.drinks-header {
  max-width: 760px;
  margin: 0 auto 4rem;
  text-align: center;
}
.drinks-header h2 { margin-bottom: 1.2rem; }
.drinks-subtitle {
  max-width: 540px;
  margin: 0 auto;
  font-size: 1rem;
}

/* Handwritten swipe hint under the heading */
.drinks-scroll-hint {
  font-size: 1.05rem;
  color: var(--rust);
  margin-top: 1.1rem;
  opacity: .72;
}

/* Horizontal sliding carousel — scroll-snap for clean snapping
   on swipe, scrollbar styled subtly.                           */
.drinks-row {
  display: flex;
  flex-wrap: nowrap;
  gap: 1.2rem;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scroll-padding-left: 6%;
  padding: 1rem 6% 2rem;
  margin: 0 -6%;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(26,15,8,.28) transparent;
}
.drinks-row::-webkit-scrollbar {
  height: 6px;
}
.drinks-row::-webkit-scrollbar-track {
  background: rgba(26,15,8,.04);
  border-radius: 3px;
}
.drinks-row::-webkit-scrollbar-thumb {
  background: rgba(26,15,8,.22);
  border-radius: 3px;
}
.drinks-row::-webkit-scrollbar-thumb:hover {
  background: var(--rust);
}

.drink-card {
  position: relative;
  flex: 0 0 clamp(220px, 22vw, 290px);
  scroll-snap-align: start;
  background: var(--cream);
  padding: 1rem 1rem 1.6rem;
  display: flex;
  flex-direction: column;
  transition: transform .45s var(--spring), box-shadow .45s ease;
  border: 1px solid rgba(26,15,8,.05);
}
.drink-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 34px rgba(26,15,8,.14);
  z-index: 2;
}

.drink-num {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  z-index: 3;
  font-family: var(--font-b);
  font-size: .62rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--cream);
  background: rgba(26,15,8,.65);
  padding: .2rem .55rem;
  backdrop-filter: blur(4px);
}

.drink-img {
  display: block;
  width: 100%;
  aspect-ratio: 6 / 7;
  object-fit: cover;
  margin-bottom: 1.1rem;
  filter: saturate(.88) contrast(1.02);
  transition: filter .5s ease, transform .5s var(--spring);
}
.drink-card:hover .drink-img {
  filter: saturate(1.08) contrast(1.04);
}

.drink-info h3 {
  font-family: var(--font-d);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: .25rem;
  line-height: 1.15;
}
.drink-note {
  font-family: var(--font-h);
  font-size: 1.05rem;
  color: var(--rust);
  margin-bottom: .7rem;
  line-height: 1.2;
}
.drink-desc {
  font-size: .82rem;
  line-height: 1.65;
  color: color-mix(in srgb, var(--ink) 58%, transparent);
  margin-bottom: 1rem;
  min-height: 3.2em;
  font-weight: 300;
}
.drink-price {
  font-family: var(--font-d);
  font-weight: 900;
  font-style: italic;
  font-size: 1.55rem;
  color: var(--ochre);
  line-height: 1;
  padding-top: .5rem;
  border-top: 1px dashed rgba(26,15,8,.12);
}

@media (max-width: 720px) {
  .drinks-section { padding: 4rem 5%; }
  .drinks-row { padding: 1rem 5% 1.5rem; margin: 0 -5%; gap: .9rem; }
  .drink-card { flex-basis: clamp(200px, 72vw, 260px); }
  .drink-desc { min-height: auto; margin-bottom: .8rem; }
  .drinks-header { margin-bottom: 2.5rem; }
}

/* ═══════════════════════════════════════════════
   ART GALLERY
   ═══════════════════════════════════════════════ */
.art-section { padding: 8rem 6%; background: var(--cream); }
.art-intro { max-width: 580px; margin-bottom: 5rem; }
.art-intro .body-text { margin-top: 1rem; }

/* Gallery wall: three uneven columns */
.gallery-wall {
  display: grid; grid-template-columns: 1.1fr .85fr 1fr;
  gap: 2.5rem; margin-bottom: 5rem; align-items: start;
}
.gallery-col { display: flex; flex-direction: column; gap: 2.5rem; }
.gallery-col-1 { margin-top: 3rem; }
.gallery-col-3 { margin-top: 6rem; }

.artwork { position: relative; }
.canvas-frame {
  width: 100%; padding-top: 115%;
  background-size: cover;
  background-position: center;
  background-color: var(--paper2);
  box-shadow: 0 4px 30px rgba(26,15,8,.22), inset 0 0 0 6px rgba(26,15,8,.1);
  border: 3px solid rgba(26,15,8,.09);
  cursor: pointer;
  overflow: hidden;
  transition: transform .5s var(--spring), box-shadow .5s ease, filter .5s ease;
  filter: saturate(.95);
}
.artwork:hover .canvas-frame { filter: saturate(1.1); }
.artwork:hover .canvas-frame {
  transform: scale(1.03);
  box-shadow: 0 12px 48px rgba(26,15,8,.3), inset 0 0 0 6px rgba(26,15,8,.1);
}
.artwork-sm .canvas-frame { padding-top: 82%; }

/* Museum label */
.museum-label {
  background: var(--cream); border-left: 3px solid var(--rust);
  padding: .6rem .9rem; margin-top: .6rem;
}
.ml-artist { font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: color-mix(in srgb,var(--ink) 50%,transparent); margin-bottom: .1rem; }
.ml-title { font-size: 1.05rem; color: var(--ink); }
.ml-info { font-size: .72rem; color: color-mix(in srgb,var(--ink) 40%,transparent); margin-top: .1rem; }

.art-quote {
  text-align: center; padding: 4rem 2rem;
  border-top: 1px dashed rgba(26,15,8,.15);
  border-bottom: 1px dashed rgba(26,15,8,.15);
}
.quote-big { font-size: clamp(1.7rem,3.5vw,3rem); color: var(--plum); line-height: 1.35; }

/* ═══════════════════════════════════════════════
   EVENTS
   ═══════════════════════════════════════════════ */
.events-section { background: var(--plum); color: var(--paper); padding: 7rem 6%; position: relative; }
.events-header { margin-bottom: 3.5rem; }
.events-header h2 { color: var(--paper); margin-top: .5rem; }
.events-header h2 em { color: var(--ochre); }
.events-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.8rem; }
.event-card {
  border: 1px solid rgba(253,248,239,.1); padding: 1.8rem;
  position: relative; overflow: hidden;
  transition: border-color .3s, background .3s;
}
.event-card::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(253,248,239,.03); opacity: 0;
  transition: opacity .3s;
}
.event-card:hover { border-color: var(--ochre); }
.event-card:hover::before { opacity: 1; }
.event-num { font-size: 3.5rem; color: rgba(253,248,239,.06); position: absolute; top: .5rem; right: 1rem; line-height: 1; }
.event-date { font-size: 1rem; color: var(--ochre); display: block; margin-bottom: .5rem; }
.event-card h3 { color: var(--paper); margin-bottom: .7rem; }
.event-card .body-text { color: rgba(253,248,239,.58); font-size: .9rem; margin-bottom: 1.2rem; }
.event-meta { display: flex; flex-wrap: wrap; gap: .5rem; }
.event-meta span { font-size: .7rem; letter-spacing: .08em; border: 1px solid rgba(253,248,239,.22); padding: .2rem .7rem; color: rgba(253,248,239,.6); }
.tag-art    { background: var(--rust);   border-color: var(--rust)!important;   color: #fff!important; }
.tag-coffee { background: var(--ochre);  border-color: var(--ochre)!important;  color: var(--ink)!important; }
.tag-both   { background: var(--olive);  border-color: var(--olive)!important;  color: #fff!important; }

/* ═══════════════════════════════════════════════
   VISIT
   ═══════════════════════════════════════════════ */
.visit-section {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; padding: 9rem 6%;
  align-items: center; background: var(--paper2);
}
.visit-imagery { position: relative; min-height: 560px; perspective: 900px; }
.visit-imagery .vp1 { width: 66%; top: 0; left: 5%; transform: rotate(-2deg); }
.visit-imagery .vp2 { width: 50%; bottom: 0; right: 0; transform: rotate(3.5deg); }

.visit-info h2 { margin-bottom: 2.5rem; }
.visit-info h2 em { color: var(--olive); }
.visit-grid { display: flex; flex-direction: column; gap: 1.4rem; margin-bottom: 2.2rem; }
.visit-lbl { font-size: 1.15rem; color: var(--rust); margin-bottom: .2rem; }
.visit-grid p { font-size: .94rem; line-height: 1.7; color: color-mix(in srgb,var(--ink) 72%,transparent); }

/* ═══════════════════════════════════════════════
   FOOTER CTA
   ═══════════════════════════════════════════════ */
.footer-cta { background: var(--paper); padding: 7rem 6%; text-align: center; }
.cta-hand { font-size: 1.6rem; color: var(--olive); margin-bottom: .4rem; }
.footer-cta h2 { margin-bottom: 2.5rem; }
.footer-cta h2 em { color: var(--coral); }
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ═══════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════ */
.footer { background: var(--ink); color: var(--paper); padding: 4rem 6% 2rem; }
.footer-top {
  display: grid; grid-template-columns: 1fr 2.5fr;
  gap: 4rem; padding-bottom: 3rem;
  border-bottom: 1px solid rgba(246,237,216,.1);
}
.f-logo { font-family: var(--font-d); font-size: 1.85rem; letter-spacing: .3em; margin-bottom: .35rem; }
.f-sub { font-size: 1.1rem; color: rgba(246,237,216,.42); }
.footer-cols { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; }
.f-col { display: flex; flex-direction: column; gap: .55rem; }
.f-head { font-size: .68rem; letter-spacing: .2em; text-transform: uppercase; color: rgba(246,237,216,.32); margin-bottom: .5rem; font-weight: 500; }
.f-col a { font-size: .9rem; color: rgba(246,237,216,.6); transition: color .2s; }
.f-col a:hover { color: var(--paper); }
.f-note { font-size: .82rem; color: rgba(246,237,216,.38); }
.nw-form { display: flex; border-bottom: 1px solid rgba(246,237,216,.22); margin-top: .4rem; }
.nw-form input { flex: 1; background: none; border: none; color: var(--paper); font-family: var(--font-b); font-size: .85rem; padding: .4rem 0; outline: none; }
.nw-form input::placeholder { color: rgba(246,237,216,.28); }
.nw-form button { background: none; border: none; color: var(--ochre); font-size: 1.1rem; cursor: none; padding: 0 .3rem; transition: transform .2s; }
.nw-form button:hover { transform: translateX(3px); }
.footer-bottom { display: flex; justify-content: space-between; padding-top: 1.5rem; font-size: .73rem; color: rgba(246,237,216,.28); }


/* ═══════════════════════════════════════════════
   MOBILE HERO ANIMATIONS
   Portrait fades + scales in; each word slides in
   from alternating sides with a fast ease-out.
   ═══════════════════════════════════════════════ */
@keyframes mob-portrait-in {
  from { opacity: 0; scale: 0.88; }
  to   { opacity: 1; scale: 1; }
}
@keyframes mob-word-left {
  from { opacity: 0; translate: -56px 0; }
  to   { opacity: 1; translate: 0 0; }
}
@keyframes mob-word-right {
  from { opacity: 0; translate: 56px 0; }
  to   { opacity: 1; translate: 0 0; }
}
@keyframes mob-cta-up {
  from { opacity: 0; translate: 0 18px; }
  to   { opacity: 1; translate: 0 0; }
}

/* ═══════════════════════════════════════════════
   RESPONSIVE — all breakpoints
   ═══════════════════════════════════════════════ */

/* ── 1200px: gallery drops to 2 columns ── */
@media (max-width: 1200px) {
  .gallery-wall { grid-template-columns: 1fr 1fr; }
  .gallery-col-3 { display: none; }
  .gallery-col-1, .gallery-col-2 { margin-top: 0; }
}

/* ── 1100px: hero shrinks, two-column sections stack ── */
@media (max-width: 1100px) {
  #hero { padding: calc(var(--nav-h) + 4rem) 6% 4rem; }
  .hw-word-1 { font-size: clamp(3rem, 8vw, 9rem); }
  .hw-word-2 { font-size: clamp(4.5rem, 16vw, 20rem); left: -1%; }
  .hw-word-3 { font-size: clamp(2.5rem, 7vw, 8rem); }
  .hw-word-4 { font-size: clamp(3.5rem, 12vw, 16rem); }
  .hero-info { max-width: 260px; }
  .mural-plaque { max-width: 210px; padding: .7rem 1rem; bottom: 3%; right: 3%; }
  .pl-title { font-size: 1.3rem; }
  .about-section { grid-template-columns: 1fr; padding: 6rem 6%; gap: 0; }
  .about-collage { min-height: 300px; overflow: hidden; margin-bottom: 3rem; }
  .about-collage .ab-p1 { width: 52%; top: 0; left: 4%; }
  .about-collage .ab-p2 { width: 46%; bottom: 0; right: 2%; }
  .visit-section { grid-template-columns: 1fr; padding: 6rem 6%; gap: 0; }
  .visit-imagery { min-height: 300px; overflow: hidden; margin-bottom: 3rem; }
  .visit-imagery .vp1 { width: 58%; }
  .visit-imagery .vp2 { width: 44%; }
  .footer-top { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-cols { grid-template-columns: repeat(3, 1fr); }
}

/* ── MOBILE HERO RESET (≤768px)
   Overrides the non-media 760px block that
   scatters words around the screen.             ── */
@media (max-width: 768px) {
  /* Undo top/bottom positions set by the 760px block */
  .hw-word-1 { top: auto; bottom: auto; }
  .hw-word-2 { top: auto; bottom: auto; }
  .hw-word-3 { top: auto; bottom: auto; }
  .hw-word-4 { top: auto; bottom: auto; }
  .hero-cta-block { bottom: auto; left: auto; transform: none; min-width: unset; }
}

/* ── 768px: section reflow + hero flex layout ── */
@media (max-width: 768px) {
  :root { --nav-h: 60px; }
  .nav-links { display: none; }
  #nav { padding: 0 4%; }
  .nav-logo { font-size: 1.2rem; letter-spacing: .2em; }
  .lang-btn { padding: .28rem .72rem; font-size: .72rem; }

  /* ── MOBILE HERO: bold centered poster ──
     Portrait on top, massive type below, pill CTAs
     at the bottom. Staggered slide-in animation.    */
  #hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: calc(var(--nav-h) + 1.2rem) 0 5.5rem;
    min-height: 100svh;
    overflow: hidden;
  }

  /* Painting: big and centered */
  .hero-main-art {
    position: relative;
    top: auto; left: auto; right: auto; bottom: auto;
    transform: none;
    width: clamp(200px, 68vw, 360px);
    flex-shrink: 0;
    margin-bottom: 1rem;
    animation: mob-portrait-in 0.7s cubic-bezier(0.22,1,0.36,1) both;
  }
  .hero-main-img {
    width: 100%;
    max-height: 46svh;
    object-fit: contain;
  }

  /* Words: bold centered stack, join the flex flow */
  .hw-word-1, .hw-word-2, .hw-word-3, .hw-word-4 {
    position: relative;
    top: auto; left: auto; right: auto; bottom: auto;
    transform: none;
    text-align: center;
    width: 100%;
    line-height: 0.86;
  }
  /* EL / THE — accent size, slides in from left */
  .hw-word-1 {
    font-size: clamp(2.8rem, 14vw, 6.5rem);
    animation: mob-word-left 0.55s 0.3s cubic-bezier(0.22,1,0.36,1) both;
  }
  /* CAFÉ — massive, fills most of screen width, slides from right */
  .hw-word-2 {
    font-size: clamp(5.5rem, 32vw, 14rem);
    margin-bottom: 0.4rem;
    animation: mob-word-right 0.55s 0.45s cubic-bezier(0.22,1,0.36,1) both;
  }
  /* ES / IS — accent, slides from left */
  .hw-word-3 {
    font-size: clamp(2.8rem, 14vw, 6.5rem);
    animation: mob-word-left 0.55s 0.6s cubic-bezier(0.22,1,0.36,1) both;
  }
  /* ARTE / ART — massive, slides from right */
  .hw-word-4 {
    font-size: clamp(5.5rem, 32vw, 14rem);
    animation: mob-word-right 0.55s 0.75s cubic-bezier(0.22,1,0.36,1) both;
  }

  /* Hide desktop-only decorative details */
  .hero-script-brand, .hero-script,
  .hero-info, .hero-label-right,
  .hero-reg-plus, .hero-location,
  .mural-plaque { display: none; }

  /* CTA: pill buttons anchored to the bottom, animate up */
  .hero-cta-block {
    position: absolute;
    bottom: 2.5%;
    left: 50%;
    transform: translateX(-50%);
    background: transparent;
    padding: 0;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: .75rem;
    min-width: unset;
    white-space: nowrap;
    animation: mob-cta-up 0.5s 1s ease both;
  }
  .hcta-img { display: none; }
  .hcta-primary {
    background: var(--ink);
    color: var(--cream);
    padding: .85rem 2.2rem;
    font-size: .78rem;
    letter-spacing: .13em;
    border-bottom: none;
    transition: background .22s;
  }
  .hcta-primary:hover { background: var(--plum); }
  .hcta-secondary {
    background: transparent;
    border: 1.5px solid rgba(26,15,8,.4);
    color: var(--ink);
    padding: .85rem 1.8rem;
    font-size: .78rem;
    letter-spacing: .08em;
    transition: border-color .22s, color .22s;
  }
  .hcta-secondary:hover { border-color: var(--rust); color: var(--rust); }

  /* Respect reduced-motion preference */
  @media (prefers-reduced-motion: reduce) {
    .hero-main-art, .hw-word-1, .hw-word-2,
    .hw-word-3, .hw-word-4, .hero-cta-block { animation: none; }
  }

  /* Sections */
  .about-section { padding: 4rem 5%; }
  .about-collage { min-height: 240px; }
  .coffee-section { padding: 5rem 5%; }
  .art-section { padding: 4rem 5%; }
  .art-intro { margin-bottom: 3rem; }
  .events-section { padding: 5rem 5%; }
  .visit-section { padding: 4rem 5%; }
  .visit-imagery { min-height: 240px; }
  .footer-cta { padding: 4rem 5%; }
  .footer { padding: 3rem 5% 1.5rem; }
  .origins-row { grid-template-columns: 1fr 1fr; gap: 1.2rem; }
  .origin-img { height: 180px; }
  .menu-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .menu-board { padding: 1.4rem 1.6rem; }
  .menu-board-title { font-size: 1.5rem; }
  .events-grid { grid-template-columns: 1fr; gap: 1.2rem; }
  .gallery-wall { grid-template-columns: 1fr 1fr; margin-bottom: 3rem; }
  .gallery-col-3 { display: flex; }
  .drinks-section { padding: 4rem 5%; }
  .drinks-row { padding: 1rem 5% 1.5rem; margin: 0 -5%; gap: .9rem; }
  .drink-card { flex-basis: clamp(200px, 72vw, 260px); }
  .footer-cols { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: .4rem; text-align: center; }
  .stat-row { gap: 1.5rem 2rem; }
  .cta-btns { justify-content: center; flex-wrap: wrap; }
}

/* ── 600px: phones ── */
@media (max-width: 600px) {
  .hero-main-art { width: clamp(180px, 70vw, 320px); }
  .hero-main-img { max-height: 44svh; }
  .hw-word-1 { font-size: clamp(2.5rem, 13vw, 6rem); }
  .hw-word-2 { font-size: clamp(5rem, 30vw, 12rem); }
  .hw-word-3 { font-size: clamp(2.5rem, 13vw, 6rem); }
  .hw-word-4 { font-size: clamp(5rem, 30vw, 12rem); }
  .origins-row { grid-template-columns: 1fr; }
  .origin-img { height: 200px; }
  .gallery-wall { grid-template-columns: 1fr; }
}

/* ── 480px: small phones ── */
@media (max-width: 480px) {
  :root { --nav-h: 56px; }
  .nav-logo { font-size: 1.05rem; letter-spacing: .15em; }
  .lang-btn { padding: .24rem .55rem; font-size: .68rem; }

  /* Hero: tighter on small screens but still bold */
  #hero { padding: calc(var(--nav-h) + 0.8rem) 0 5rem; }
  .hero-main-art { width: clamp(160px, 66vw, 280px); margin-bottom: 0.7rem; }
  .hero-main-img { max-height: 42svh; }
  .hw-word-1 { font-size: clamp(2.4rem, 12.5vw, 5.5rem); }
  .hw-word-2 { font-size: clamp(4.5rem, 28vw, 11rem); margin-bottom: 0.25rem; }
  .hw-word-3 { font-size: clamp(2.4rem, 12.5vw, 5.5rem); }
  .hw-word-4 { font-size: clamp(4.5rem, 28vw, 11rem); }
  .hcta-primary, .hcta-secondary { padding: .75rem 1.5rem; font-size: .73rem; }

  /* Sections */
  .about-collage { display: none; }
  .about-section { padding: 3.5rem 4%; }
  .visit-imagery { display: none; }
  .visit-section { padding: 3.5rem 4%; }
  .coffee-section { padding: 4rem 4%; }
  .art-section { padding: 3.5rem 4%; }
  .events-section { padding: 4rem 4%; }
  .footer-cta { padding: 3rem 4%; }
  .footer { padding: 2.5rem 4% 1.5rem; }
  .stat-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem 1.5rem; padding-top: 1.5rem; }
  .stat-num { font-size: 2.1rem; }
  .stat-unit { font-size: 1.7rem; }
  .footer-top { gap: 2rem; }
  .footer-cols { grid-template-columns: 1fr 1fr; gap: 1.2rem; }
  .footer-bottom { padding-top: 1.2rem; }
  .gallery-wall { grid-template-columns: 1fr; }
  .art-quote { padding: 2rem 0; }
  .event-card { padding: 1.3rem; }
  .menu-board { padding: 1.1rem; }
  .cta-btns { flex-direction: column; align-items: center; }
}

/* ── 360px: smallest phones ── */
@media (max-width: 360px) {
  .hw-word-1 { font-size: clamp(2rem, 11.5vw, 4.5rem); }
  .hw-word-2 { font-size: clamp(3.8rem, 26vw, 9rem); }
  .hw-word-3 { font-size: clamp(2rem, 11.5vw, 4.5rem); }
  .hw-word-4 { font-size: clamp(3.8rem, 26vw, 9rem); }
  .hcta-primary, .hcta-secondary { padding: .65rem 1.1rem; font-size: .68rem; }
  .footer-cols { grid-template-columns: 1fr; }
  .lang-btn { padding: .22rem .45rem; font-size: .65rem; }
}
