@font-face {
  font-family: "Metropolis";
  src: local("Metropolis"), local("Metropolis Regular");
  font-display: swap;
}

:root {
  --ink: #231f20;
  --paper: #fbf8ef;
  --sun: #ffde00;
  --sun-warm: #ffba00;
  --line: rgba(35, 31, 32, 0.18);
  --muted: rgba(35, 31, 32, 0.68);
  --page: min(100% - 48px, 1440px);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --radius-pill: 999px;
  --radius-field: 16px;
  --radius-sheet: 30px;
  --glass-paper: rgba(251, 248, 239, 0.72);
  --glass-paper-strong: rgba(251, 248, 239, 0.9);
  --glass-line: rgba(35, 31, 32, 0.16);
  --glass-highlight: rgba(255, 255, 255, 0.76);
  --shadow-control: inset 0 1px 0 rgba(255, 255, 255, 0.78), 0 8px 22px rgba(35, 31, 32, 0.1);
  --shadow-sheet: inset 0 1px 0 rgba(255, 255, 255, 0.82), 0 28px 80px rgba(35, 31, 32, 0.24);
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: 108px;
}
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: "Metropolis", "Avenir Next", Avenir, Montserrat, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
body.dialog-open { overflow: hidden; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
img { display: block; max-width: 100%; }
h1, h2, h3, p, figure { margin: 0; }

.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;
}
.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  color: var(--ink);
  background: var(--sun);
  transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  width: 100%;
  min-height: 92px;
  padding: 14px max(24px, calc((100vw - 1440px) / 2));
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 40px;
  background: rgba(251, 248, 239, 0.8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: inset 0 -1px 0 rgba(35, 31, 32, 0.05), 0 8px 28px rgba(35, 31, 32, 0.04);
  -webkit-backdrop-filter: blur(22px) saturate(135%);
  backdrop-filter: blur(22px) saturate(135%);
  transition: background-color 220ms ease, border-color 220ms ease, min-height 220ms ease, box-shadow 220ms ease;
}
.site-header.is-scrolled { min-height: 78px; background: rgba(251, 248, 239, 0.9); border-color: var(--line); box-shadow: 0 12px 36px rgba(35, 31, 32, 0.08); }
.brand { display: inline-flex; justify-self: start; text-decoration: none; }
.brand img { width: 92px; height: auto; }
.main-nav { display: flex; align-items: center; gap: clamp(26px, 3vw, 52px); }
.main-nav a,
.footer-links a {
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.main-nav a { position: relative; }
.main-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: var(--sun);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms var(--ease);
}
.main-nav a:hover::after,
.main-nav a:focus-visible::after { transform: scaleX(1); transform-origin: left; }
.header-cta { justify-self: end; }
.nav-toggle { display: none; }

.button {
  min-height: 50px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ink);
  border-radius: var(--radius-pill);
  color: var(--ink);
  background: var(--glass-paper);
  box-shadow: var(--shadow-control);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 800;
  cursor: pointer;
  transition: transform 180ms var(--ease), background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}
.button:focus-visible,
.text-link:focus-visible,
.delivery-dock__item:focus-visible,
.dialog-close:focus-visible,
.nav-toggle:focus-visible { outline: 3px solid var(--sun-warm); outline-offset: 4px; }
.button:active { transform: scale(0.98); }
.button--primary { border-color: rgba(255, 186, 0, 0.8); background: rgba(255, 222, 0, 0.94); }
.button--outline,
.button--glass { border-color: var(--glass-line); background: var(--glass-paper); }

@media (hover: hover) {
  .button:hover { transform: translateY(-2px); box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.88), 0 12px 28px rgba(35, 31, 32, 0.14); }
  .button--primary:hover { background: var(--sun); }
  .button--outline:hover,
  .button--glass:hover { border-color: rgba(35, 31, 32, 0.28); background: rgba(255, 255, 255, 0.72); color: var(--ink); }
}
.section { width: var(--page); margin: 0 auto; }

.hero {
  min-height: calc(100vh - 92px);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(440px, 0.95fr);
  align-items: stretch;
}
.hero__content {
  padding: clamp(72px, 10vw, 158px) clamp(40px, 7vw, 112px) clamp(72px, 9vw, 130px) 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.hero h1 {
  max-width: 780px;
  font-size: clamp(3.5rem, 5.15vw, 6.5rem);
  line-height: 0.94;
  letter-spacing: -0.065em;
}
.hero__content > p {
  margin-top: 34px;
  font-size: clamp(1rem, 1.3vw, 1.25rem);
  line-height: 1.5;
}
.hero__actions { margin-top: 38px; display: flex; flex-wrap: wrap; gap: 14px; }
.hero__media { min-height: 660px; overflow: hidden; }
.hero__media picture,
.origin__media picture,
.events__media picture,
.community__media picture,
.identity__media picture,
.gather__media picture { display: block; width: 100%; height: 100%; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: 53% center; }
.hero__media--real {
  position: relative;
  padding: clamp(30px, 5vw, 74px);
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 72% 18%, rgba(255, 255, 255, 0.62), transparent 28%),
    linear-gradient(145deg, var(--sun) 0 58%, var(--sun-warm) 100%);
}
.hero__media--real::before {
  content: "";
  position: absolute;
  width: min(68%, 430px);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.64);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}
.hero__media--real img {
  position: relative;
  z-index: 1;
  width: min(100%, 360px);
  height: auto;
  max-height: 650px;
  aspect-ratio: 360 / 638;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: clamp(24px, 3vw, 38px);
  object-fit: cover;
  object-position: center;
  box-shadow: 0 28px 70px rgba(35, 31, 32, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.7);
  transition: transform 600ms var(--ease), box-shadow 600ms var(--ease);
}

@media (hover: hover) and (prefers-reduced-motion: no-preference) {
  .hero__media--real:hover img { transform: translateY(-6px) scale(1.012); box-shadow: 0 36px 84px rgba(35, 31, 32, 0.28); }
}

.recipes {
  min-height: 610px;
  padding: 76px clamp(16px, 4vw, 64px);
  display: grid;
  grid-template-columns: minmax(240px, 0.58fr) minmax(0, 1.42fr);
  align-items: center;
  gap: clamp(32px, 7vw, 110px);
  border-top: 1px solid var(--line);
}
.section-heading h2,
.hospitality h2,
.community h2,
.locations h2 {
  font-size: clamp(2.7rem, 4.3vw, 5.7rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}
.text-link {
  margin-top: 52px;
  padding: 0 0 9px;
  border: 0;
  border-bottom: 2px solid var(--sun);
  color: var(--ink);
  background: transparent;
  font-weight: 800;
  cursor: pointer;
}
.text-link span { display: inline-block; margin-left: 10px; transition: transform 180ms ease; }
.text-link:hover span { transform: translateX(5px); }
.feature-actions .text-link,
.gather__actions .text-link,
.intent-visit__actions .text-link,
.wellbeing-visit__actions .text-link,
.event-success__actions .text-link {
  min-height: 46px;
  margin-top: 0;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--glass-line);
  border-radius: var(--radius-pill);
  background: var(--glass-paper);
  box-shadow: var(--shadow-control);
  text-decoration: none;
  transition: transform 180ms var(--ease), background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

@media (hover: hover) {
  .feature-actions .text-link:hover,
  .gather__actions .text-link:hover,
  .intent-visit__actions .text-link:hover,
  .wellbeing-visit__actions .text-link:hover,
  .event-success__actions .text-link:hover {
    border-color: rgba(35, 31, 32, 0.28);
    background: rgba(255, 255, 255, 0.72);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 12px 28px rgba(35, 31, 32, 0.13);
    transform: translateY(-2px);
  }
}
.recipes__products { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 4vw, 74px); }
.drink { position: relative; padding-bottom: 4px; }
.drink + .drink { border-left: 1px solid var(--sun); padding-left: clamp(24px, 4vw, 74px); }
.drink img { width: 100%; height: auto; aspect-ratio: 4 / 3; object-fit: cover; object-position: center; mix-blend-mode: multiply; }
.drink figcaption { margin-top: 16px; text-align: center; font-size: 0.9rem; }
.drink figcaption strong, .drink figcaption span { display: block; }
.drink figcaption strong { font-weight: 800; }
.drink figcaption span { margin-top: 5px; color: var(--muted); font-size: 0.82rem; line-height: 1.4; }

.hospitality {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(330px, 0.8fr);
  align-items: stretch;
  border-top: 1px solid var(--line);
}
.hospitality__media { min-height: 620px; overflow: hidden; }
.hospitality__media img { width: 100%; height: 100%; object-fit: cover; }
.hospitality__copy {
  padding: clamp(72px, 10vw, 150px) clamp(40px, 7vw, 112px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hospitality__copy p,
.community__copy p { margin-top: 30px; font-size: clamp(1rem, 1.3vw, 1.24rem); line-height: 1.55; }
.hospitality__copy p::after {
  content: "";
  display: block;
  width: 42px;
  height: 3px;
  margin-top: 28px;
  background: var(--sun);
}

.community {
  min-height: 560px;
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  align-items: center;
  overflow: hidden;
  border-top: 1px solid var(--line);
}
.community__copy { padding: 90px clamp(24px, 5vw, 78px); }
.community__copy .button { margin-top: 32px; }
.wheel-art { position: relative; min-height: 560px; align-self: stretch; display: grid; place-items: center; overflow: hidden; }
.wheel-art__disc {
  --wheel-name-radius: min(14vw, 156px);
  position: relative;
  width: min(43vw, 480px);
  aspect-ratio: 1;
  overflow: hidden;
  border: 3px solid var(--ink);
  border-radius: 50%;
  background: conic-gradient(#ffde00 0 60deg, #fff7c7 60deg 120deg, #ffba00 120deg 180deg, #fff 180deg 240deg, #ffde00 240deg 300deg, #fff7c7 300deg);
  animation: wheel-breathe 9s ease-in-out infinite alternate;
}
.wheel-art__name { position: absolute; left: 50%; top: 50%; width: 76px; margin: -10px 0 0 -38px; text-align: center; font-size: clamp(.72rem, 1.3vw, 1rem); font-weight: 800; transform-origin: 38px 10px; }
.wheel-art__name--1 { transform: rotate(-60deg) translateX(var(--wheel-name-radius)) rotate(60deg); }
.wheel-art__name--2 { transform: translateX(var(--wheel-name-radius)); }
.wheel-art__name--3 { transform: rotate(60deg) translateX(var(--wheel-name-radius)) rotate(-60deg); }
.wheel-art__name--4 { transform: rotate(120deg) translateX(var(--wheel-name-radius)) rotate(-120deg); }
.wheel-art__name--5 { transform: rotate(180deg) translateX(var(--wheel-name-radius)) rotate(-180deg); }
.wheel-art__name--6 { transform: rotate(240deg) translateX(var(--wheel-name-radius)) rotate(-240deg); }
.wheel-art__pointer { position: absolute; z-index: 4; top: calc(50% - min(21.5vw, 240px) - 12px); width: 0; height: 0; border-left: 18px solid transparent; border-right: 18px solid transparent; border-top: 34px solid var(--ink); }
.wheel-art__hub {
  position: absolute;
  z-index: 2;
  left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--ink);
}
@keyframes wheel-breathe { to { transform: rotate(3deg); } }

.ingredients { padding: 100px clamp(24px, 7vw, 110px); border-top: 1px solid var(--line); display: grid; grid-template-columns: 1.25fr .75fr; gap: clamp(48px, 10vw, 150px); align-items: center; }
.ingredients h2 { margin-top: 16px; max-width: 760px; font-size: clamp(2.6rem, 4.3vw, 5.3rem); line-height: .98; letter-spacing: -.055em; }
.ingredients__copy > p:not(.ingredients__eyebrow) { max-width: 650px; margin-top: 26px; font-size: 1.05rem; line-height: 1.6; }
.ingredients__eyebrow { font-size: .78rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.ingredients__note { padding: 34px; border: 1px solid var(--line); background: #fff; }
.ingredients__note strong { font-size: 1.2rem; }
.ingredients__note p { margin: 14px 0 24px; line-height: 1.55; color: var(--muted); }

.locations { padding: 112px clamp(16px, 5vw, 78px) 124px; border-top: 1px solid var(--line); }
.anchor-alias { position: relative; top: -90px; display: block; width: 1px; height: 0; overflow: hidden; visibility: hidden; }
.locations__heading { text-align: center; }
.locations__heading h2::after {
  content: "";
  display: block;
  width: 44px;
  height: 3px;
  margin: 30px auto 0;
  background: var(--sun);
}
.locations__grid { margin-top: 72px; display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.location {
  min-height: 390px;
  padding: 40px clamp(28px, 5vw, 76px);
  display: grid;
  grid-template-columns: auto 1fr;
  align-content: center;
  gap: 24px 46px;
}
.location + .location { border-left: 1px solid var(--sun); }
.location__number { color: rgba(35, 31, 32, 0.5); font-size: clamp(4.7rem, 8vw, 9rem); font-weight: 900; line-height: 0.85; letter-spacing: -0.09em; }
.location h3 { font-size: clamp(2rem, 3vw, 3.5rem); letter-spacing: -0.05em; }
.location h3 a { text-decoration: none; }
.location p { margin-top: 13px; font-size: 1rem; line-height: 1.6; }
.location__actions { grid-column: 1 / -1; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.contact-strip {
  min-height: 440px;
  padding: clamp(68px, 8vw, 116px) clamp(24px, 7vw, 108px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(44px, 8vw, 120px);
  color: var(--paper);
  background: var(--ink);
}
.contact-strip h2 {
  margin-top: 16px;
  font-size: clamp(3rem, 5.2vw, 6.4rem);
  line-height: 0.92;
  letter-spacing: -0.065em;
}
.contact-strip__copy > p:not(.eyebrow) {
  margin-top: 26px;
  color: rgba(251, 248, 239, 0.72);
  font-size: clamp(1rem, 1.25vw, 1.18rem);
  line-height: 1.55;
}
.contact-strip__actions {
  max-width: 420px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.contact-strip__actions .button--whatsapp { grid-column: 1 / -1; }
.contact-strip__actions .button--outline {
  border-color: rgba(251, 248, 239, 0.62);
  color: var(--paper);
}
.contact-strip__actions .button--outline:hover {
  color: var(--ink);
  background: var(--paper);
}

.button--whatsapp,
.button--uber,
.button--rappi {
  color: #111;
}
.button--whatsapp { border-color: #128c7e; background: #25d366; }
.button--uber { border-color: #049b52; background: #06c167; }
.button--rappi { border-color: #d93418; background: #ff441f; }

@media (hover: hover) {
  .button--whatsapp:hover { color: #fff; background: #128c7e; }
  .button--uber:hover { color: #111; background: #16d574; }
  .button--rappi:hover { color: #111; background: #ff6549; }
}

.delivery-dock {
  position: fixed;
  z-index: 45;
  right: max(18px, calc((100vw - 1440px) / 2 + 18px));
  bottom: max(18px, env(safe-area-inset-bottom));
  display: grid;
  justify-items: end;
  gap: 8px;
  transition: opacity 180ms ease;
}
.delivery-dock__item {
  min-height: 48px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(35, 31, 32, 0.18);
  border-radius: var(--radius-pill);
  color: #111;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.01em;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.52), 0 12px 28px rgba(35, 31, 32, 0.2);
  -webkit-backdrop-filter: blur(14px) saturate(120%);
  backdrop-filter: blur(14px) saturate(120%);
  text-decoration: none;
  white-space: nowrap;
  transition: transform 180ms var(--ease), filter 180ms ease, box-shadow 180ms ease;
}
.delivery-dock__item--uber { border-color: #049b52; background: #06c167; }
.delivery-dock__item--rappi { border-color: #d93418; background: #ff441f; }
.delivery-dock__item--whatsapp {
  width: 56px;
  height: 56px;
  min-height: 56px;
  padding: 0;
  border-color: #128c7e;
  border-radius: 50%;
  background: #25d366;
}
.delivery-dock__item--whatsapp img { width: 30px; height: 30px; }
.delivery-dock__item:hover {
  transform: translateY(-2px);
  filter: saturate(1.08) brightness(1.04);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65), 0 15px 34px rgba(35, 31, 32, 0.24);
}
.dialog-open .delivery-dock { opacity: 0; pointer-events: none; }
.nav-open .delivery-dock { opacity: 0; pointer-events: none; }

.site-footer {
  width: var(--page);
  min-height: 150px;
  margin: 0 auto;
  padding: 28px clamp(16px, 4vw, 64px);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 36px;
  border-top: 1px solid var(--line);
}
.brand--footer img { width: 72px; }
.footer-links { display: flex; gap: 28px; }
.site-footer > p { justify-self: end; font-size: 0.82rem; }

.branch-dialog {
  width: min(920px, calc(100% - 32px));
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--radius-sheet);
  color: var(--ink);
  background: var(--glass-paper-strong);
  box-shadow: var(--shadow-sheet);
  -webkit-backdrop-filter: blur(28px) saturate(130%);
  backdrop-filter: blur(28px) saturate(130%);
  overflow: hidden;
}
.branch-dialog::backdrop { background: rgba(35, 31, 32, 0.48); -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px); }
.branch-dialog__inner { position: relative; padding: clamp(34px, 6vw, 76px); }
.dialog-close { position: absolute; top: 20px; right: 24px; width: 46px; height: 46px; display: grid; place-items: center; border: 1px solid var(--glass-line); border-radius: 50%; background: rgba(255, 255, 255, 0.58); box-shadow: var(--shadow-control); font-size: 1.85rem; line-height: 1; cursor: pointer; }
.dialog-kicker { margin-bottom: 14px; font-size: 0.72rem; font-weight: 900; letter-spacing: 0.18em; text-transform: uppercase; }
.branch-dialog h2 { font-size: clamp(2.5rem, 5vw, 5rem); letter-spacing: -0.06em; }
.dialog-grid { margin-top: 46px; display: grid; grid-template-columns: 1fr 1fr; }
.dialog-branch { padding: 16px clamp(18px, 4vw, 48px); }
.dialog-branch:first-child { padding-left: 0; }
.dialog-branch + .dialog-branch { border-left: 1px solid var(--sun); }
.dialog-branch h3 { font-size: 1.75rem; }
.dialog-branch p { margin-top: 12px; line-height: 1.55; }
.dialog-branch__actions { margin-top: 28px; display: flex; flex-wrap: wrap; gap: 10px; }
.dialog-branch__actions a { min-height: 44px; padding-inline: 18px; font-size: 0.8rem; font-weight: 900; }
.branch-dialog[data-mode="menu"] [data-dialog-action="menu"] { order: 1; border-color: rgba(255, 186, 0, 0.8); background: var(--sun); }
.branch-dialog[data-mode="menu"] [data-dialog-action="directions"] { order: 2; border-color: var(--glass-line); background: var(--glass-paper); }

.not-found { min-height: 100vh; padding: 32px clamp(24px, 7vw, 110px); display: grid; grid-template-columns: auto 1fr; align-items: center; gap: clamp(50px, 12vw, 180px); }
.not-found > div { max-width: 760px; }
.not-found p { font-size: .82rem; font-weight: 900; letter-spacing: .18em; }
.not-found h1 { margin: 18px 0 34px; font-size: clamp(3rem, 7vw, 7rem); line-height: .95; letter-spacing: -.06em; }

.reveal { opacity: 1; transform: none; }

@media (prefers-reduced-motion: no-preference) {
  .reveal.is-visible { animation: reveal-in 700ms var(--ease) both; }
  .reveal--late.is-visible { animation-delay: 120ms; }
}

@keyframes reveal-in {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 980px) {
  :root { --page: 100%; }
  .site-header { grid-template-columns: 1fr auto auto; gap: 12px; min-height: 82px; padding: 12px 20px; }
  .brand img { width: 75px; }
  .header-cta { min-height: 44px; padding: 0 16px; }
  .nav-toggle {
    width: 46px;
    height: 46px;
    display: grid;
    place-content: center;
    gap: 5px;
    border: 1px solid var(--glass-line);
    border-radius: 50%;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.52);
    box-shadow: var(--shadow-control);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    cursor: pointer;
  }
  .nav-toggle span:not(.sr-only) { display: block; width: 25px; height: 2px; background: currentColor; transition: transform 200ms ease, opacity 200ms ease; }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .main-nav {
    position: fixed;
    top: 82px;
    right: 0;
    left: 0;
    padding: 32px 24px 42px;
    display: grid;
    gap: 24px;
    background: rgba(251, 248, 239, 0.97);
    border-bottom: 1px solid rgba(255, 255, 255, 0.72);
    box-shadow: 0 18px 42px rgba(35, 31, 32, 0.12);
    -webkit-backdrop-filter: blur(24px) saturate(130%);
    backdrop-filter: blur(24px) saturate(130%);
    transform: translateY(-140%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform 260ms var(--ease), opacity 180ms ease, visibility 0s linear 260ms;
  }
  .main-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition-delay: 0s;
  }
  .main-nav a { min-height: 44px; display: flex; align-items: center; font-size: 1.5rem; }
  .hero { min-height: auto; grid-template-columns: 1fr; }
  .hero__content { padding: 74px 24px 46px; }
  .hero h1 { font-size: clamp(3.3rem, 12vw, 5.6rem); }
  .hero__media { min-height: 52vw; }
  .hero__media--real { min-height: 580px; }
  .recipes { min-height: auto; padding: 80px 24px; grid-template-columns: 1fr; }
  .section-heading { display: flex; justify-content: space-between; align-items: end; gap: 24px; }
  .text-link { margin-top: 0; }
  .hospitality { grid-template-columns: 1fr 0.78fr; }
  .hospitality__media { min-height: 480px; }
  .community { grid-template-columns: 0.85fr 1.15fr; min-height: 480px; }
  .wheel-art { min-height: 480px; }
  .locations { padding-inline: 24px; }
  .location { padding-inline: 28px; }
  .contact-strip { grid-template-columns: 1fr; }
  .contact-strip__actions { width: min(100%, 520px); max-width: none; }
  .ingredients { padding-inline: 32px; }
}

@media (max-width: 680px) {
  .site-header { min-height: 76px; }
  .site-header.is-scrolled { min-height: 70px; }
  .brand img { width: 60px; }
  .header-cta { font-size: 0.74rem; min-height: 44px; padding: 0 13px; }
  .main-nav { top: 76px; }
  .hero__content { padding: 62px 20px 42px; }
  .hero h1 { font-size: clamp(2.75rem, 11.6vw, 3.15rem); line-height: 0.96; }
  .hero__content > p { margin-top: 24px; font-size: 1rem; }
  .hero__actions { width: 100%; margin-top: 28px; display: grid; grid-template-columns: 1fr 1fr; }
  .hero__actions .button { padding: 0 12px; }
  .hero__media { min-height: 390px; }
  .hero__media--real { min-height: 500px; padding: 28px 20px; }
  .hero__media--real img { width: min(88vw, 350px); max-height: 450px; }
  .hero__media img { object-position: 52% center; }
  .recipes { padding: 72px 20px 82px; gap: 44px; }
  .section-heading { display: block; }
  .section-heading h2,
  .hospitality h2,
  .community h2,
  .locations h2 { font-size: clamp(2.7rem, 12vw, 4.2rem); }
  .text-link { margin-top: 28px; }
  .recipes__products { gap: 15px; }
  .drink + .drink { padding-left: 15px; }
  .drink figcaption { font-size: 0.77rem; }
  .hospitality { display: flex; flex-direction: column; }
  .hospitality__media { min-height: 350px; }
  .hospitality__copy { padding: 64px 24px 72px; }
  .community { min-height: auto; display: block; }
  .community__copy { position: relative; z-index: 2; padding: 68px 24px 0; }
  .wheel-art { min-height: 390px; }
  .wheel-art__disc { --wheel-name-radius: min(29vw, 112px); width: min(82vw, 350px); }
  .wheel-art__pointer { top: calc(50% - min(41vw, 175px) - 10px); }
  .ingredients { padding: 72px 20px; grid-template-columns: 1fr; gap: 42px; }
  .locations { padding: 80px 20px 88px; }
  .locations__heading { text-align: left; }
  .locations__heading h2::after { margin-left: 0; }
  .locations__grid { margin-top: 48px; grid-template-columns: 1fr; }
  .locations__grid { padding-right: 82px; }
  .location { min-height: 330px; padding: 42px 4px; grid-template-columns: auto 1fr; }
  .location + .location { border-top: 1px solid var(--sun); border-left: 0; }
  .location__number { font-size: 5.2rem; }
  .location__actions { gap: 9px; }
  .location__actions .button { padding: 0 12px; }
  .contact-strip { min-height: auto; padding: 72px 22px 82px; gap: 42px; }
  .contact-strip h2 { font-size: clamp(2.8rem, 13vw, 4.2rem); }
  .contact-strip__actions { grid-template-columns: 1fr; }
  .contact-strip__actions .button--whatsapp { grid-column: auto; }
  .delivery-dock {
    right: 12px;
    left: auto;
    bottom: max(12px, env(safe-area-inset-bottom));
    padding: 6px;
    grid-template-columns: 1fr;
    justify-items: end;
    gap: 6px;
    border: 1px solid rgba(255, 255, 255, 0.78);
    border-radius: var(--radius-pill);
    background: rgba(251, 248, 239, 0.9);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 14px 34px rgba(35, 31, 32, 0.22);
    -webkit-backdrop-filter: blur(22px) saturate(125%);
    backdrop-filter: blur(22px) saturate(125%);
    transform: none;
  }
  .delivery-dock__item { min-height: 44px; padding: 0 11px; box-shadow: none; }
  .delivery-dock__item--whatsapp { width: 44px; height: 44px; min-height: 44px; padding: 0; }
  .delivery-dock__item--whatsapp img { width: 26px; height: 26px; }
  .delivery-dock__suffix { display: none; }
  .site-footer { min-height: 190px; padding: 28px 20px; grid-template-columns: 1fr 1fr; gap: 24px; }
  .footer-links { justify-self: end; flex-direction: column; gap: 2px; text-align: right; }
  .footer-links a { min-height: 44px; display: flex; align-items: center; justify-content: flex-end; }
  .site-footer > p { grid-column: 1 / -1; justify-self: start; }
  .dialog-grid { grid-template-columns: 1fr; margin-top: 28px; }
  .dialog-branch { padding: 24px 0; }
  .dialog-branch + .dialog-branch { border-top: 1px solid var(--sun); border-left: 0; }
  .branch-dialog { border-radius: 24px; }
  .branch-dialog__inner { max-height: min(90vh, 760px); padding-top: 72px; overflow-y: auto; }
  .not-found { grid-template-columns: 1fr; align-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; animation: none !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* Editorial journey: origin, ingredients, community and events. */
.eyebrow {
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.origin,
.events {
  min-height: 650px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  align-items: stretch;
  border-top: 1px solid var(--line);
}

.origin__media,
.events__media,
.community__media {
  min-height: 650px;
  overflow: hidden;
}

.origin__media img,
.events__media img,
.community__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.origin__media img { object-position: center; }
.events__media img { object-position: 60% center; }

.origin__copy,
.events__copy {
  padding: clamp(68px, 8vw, 130px) clamp(40px, 7vw, 110px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.origin h2,
.events h2,
.ingredients h2 {
  margin-top: 18px;
  font-size: clamp(2.8rem, 4.7vw, 6rem);
  line-height: 0.96;
  letter-spacing: -0.06em;
}

.origin__copy > p:not(.eyebrow),
.events__copy > p:not(.eyebrow) {
  margin-top: 28px;
  color: var(--muted);
  font-size: clamp(1rem, 1.35vw, 1.25rem);
  line-height: 1.55;
}

.feature-actions {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px 28px;
}

.feature-actions .text-link,
.ingredients .text-link { margin-top: 0; }

.ingredients {
  min-height: 650px;
  padding: 0;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 1fr);
  gap: 0;
}

.ingredients__copy {
  padding: clamp(70px, 8vw, 126px) clamp(40px, 7vw, 110px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.ingredients__copy > p:not(.eyebrow) {
  margin: 28px 0 34px;
  color: var(--muted);
  font-size: clamp(1rem, 1.35vw, 1.25rem);
  line-height: 1.55;
}

.ingredients__visual {
  min-height: 650px;
  padding: clamp(44px, 6vw, 90px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  background: var(--sun);
}

.ingredients__visual span {
  display: block;
  font-size: clamp(3rem, 4.9vw, 6.2rem);
  font-weight: 900;
  line-height: 0.84;
  letter-spacing: -0.085em;
}

.ingredients__visual span:nth-child(2) {
  margin-left: clamp(18px, 4vw, 70px);
  color: var(--paper);
  text-shadow: -2px -2px 0 var(--ink), 2px -2px 0 var(--ink), -2px 2px 0 var(--ink), 2px 2px 0 var(--ink);
}

.ingredients__visual span:nth-child(3) { align-self: flex-end; }

.community {
  min-height: 700px;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
  align-items: stretch;
}

.community__media { min-height: 700px; }
.community__media img { object-position: 45% center; }

.community__stage {
  min-height: 700px;
  padding: clamp(58px, 6vw, 94px) clamp(32px, 5vw, 76px) 28px;
  display: grid;
  grid-template-rows: auto 1fr;
  align-items: center;
}

.community__copy { padding: 0; }
.community__copy h2 { margin-top: 18px; }
.community__copy p { margin-top: 22px; }
.community__copy .button { margin-top: 26px; }

.community .wheel-art { min-height: 360px; }
.community .wheel-art__disc {
  --wheel-name-radius: min(10.5vw, 112px);
  width: min(29vw, 330px);
}
.community .wheel-art__pointer { top: calc(50% - min(14.5vw, 165px) - 10px); }

.events {
  grid-template-columns: minmax(360px, 0.82fr) minmax(0, 1.18fr);
}
.events__copy .button { margin-top: 34px; }

.footer-links { flex-wrap: wrap; justify-content: center; }

@media (max-width: 980px) {
  .origin,
  .events { grid-template-columns: 1fr 1fr; }
  .origin__media,
  .events__media { min-height: 540px; }
  .origin__copy,
  .events__copy { padding: 64px 38px; }
  .ingredients { grid-template-columns: 1fr 1fr; padding: 0; }
  .ingredients__copy { padding: 64px 38px; }
  .ingredients__visual { min-height: 560px; padding: 44px 30px; }
  .community { grid-template-columns: 1fr 1fr; }
  .community__media,
  .community__stage { min-height: 620px; }
  .community__stage { padding: 54px 30px 18px; }
  .community .wheel-art__disc { --wheel-name-radius: min(12vw, 98px); width: min(35vw, 300px); }
  .community .wheel-art__pointer { top: calc(50% - min(17.5vw, 150px) - 10px); }
}

@media (max-width: 680px) {
  .origin,
  .events,
  .ingredients,
  .community { min-height: auto; display: flex; flex-direction: column; }
  .origin__media,
  .events__media,
  .community__media { min-height: 350px; }
  .origin__copy,
  .events__copy,
  .ingredients__copy { padding: 64px 22px 70px; }
  .origin h2,
  .events h2,
  .ingredients h2 { font-size: clamp(2.75rem, 12vw, 4.25rem); }
  .feature-actions { align-items: flex-start; flex-direction: column; }
  .ingredients__visual { min-height: 310px; padding: 38px 22px; order: -1; }
  .ingredients__visual span { font-size: clamp(3.2rem, 17vw, 5.3rem); }
  .ingredients__visual span { font-size: clamp(2.6rem, 11vw, 3.6rem); }
  .ingredients__visual span:nth-child(2) { margin-left: 18px; }
  .community__stage { min-height: auto; padding: 62px 22px 22px; }
  .community .wheel-art { min-height: 355px; }
  .community .wheel-art__disc { --wheel-name-radius: min(27vw, 104px); width: min(78vw, 330px); }
  .community .wheel-art__pointer { top: calc(50% - min(39vw, 165px) - 10px); }
  .events__copy { order: 1; }
  .events__media { order: 0; }
  .footer-links { max-width: 180px; }
}

/* Home: five clear acts — visit, difference, community, location and contact. */
.identity,
.gather {
  height: clamp(680px, 47vw, 720px);
  min-height: 680px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.95fr);
  align-items: stretch;
  border-top: 1px solid var(--line);
}

.identity__media,
.gather__media {
  height: 100%;
  min-height: 0;
  overflow: hidden;
}

.identity__media img,
.gather__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.identity__media img { object-position: center; }
.gather__media img { object-position: 45% center; }
.gather__media--real {
  padding: clamp(18px, 3vw, 38px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(12px, 2vw, 24px);
  align-items: center;
  background:
    radial-gradient(circle at 14% 18%, rgba(255, 222, 0, 0.28), transparent 29%),
    #eee8dc;
}
.gather__photo {
  height: min(76%, 540px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: clamp(20px, 2.4vw, 34px);
  background: var(--paper);
  box-shadow: 0 20px 54px rgba(35, 31, 32, 0.16);
}
.gather__photo--lower { transform: translateY(44px); }
.gather__media--real .gather__photo img { width: 100%; height: 100%; object-fit: cover; object-position: center; }

.identity__copy,
.gather__copy {
  padding: clamp(70px, 8vw, 128px) clamp(40px, 7vw, 110px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.identity h2,
.gather h2 {
  margin-top: 18px;
  font-size: clamp(2.8rem, 4.7vw, 6rem);
  line-height: 0.96;
  letter-spacing: -0.06em;
}

.identity__copy > p:not(.eyebrow),
.gather__copy > p:not(.eyebrow) {
  max-width: 590px;
  margin-top: 28px;
  color: var(--muted);
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  line-height: 1.55;
}

.gather {
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
}

.gather__actions {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px 28px;
}

.gather__actions .text-link { margin-top: 0; }

@media (max-width: 980px) {
  .identity,
  .gather { height: auto; }
  .identity { grid-template-columns: 1fr 1fr; }
  .identity__media { min-height: 560px; }
  .identity__copy { padding: 64px 38px; }
  .gather {
    min-height: auto;
    display: flex;
    flex-direction: column;
  }
  .gather__media--real {
    min-height: auto;
    padding: 28px;
    grid-template-columns: 1fr;
  }
  .gather__photo {
    width: min(100%, 540px);
    height: auto;
    aspect-ratio: 3 / 4;
    margin: 0 auto;
  }
  .gather__photo--lower { display: none; }
  .gather__copy { padding: 64px 38px; }
}

@media (max-width: 680px) {
  .identity,
  .gather {
    min-height: auto;
    display: flex;
    flex-direction: column;
  }
  .identity__media,
  .gather__media { min-height: 350px; }
  .gather__media--real { min-height: auto; padding: 18px; }
  .gather__photo { width: 100%; height: auto; aspect-ratio: 3 / 4; }
  .identity__copy,
  .gather__copy { padding: 64px 22px 72px; }
  .identity h2,
  .gather h2 { font-size: clamp(2.75rem, 12vw, 4.25rem); }
  .feature-actions,
  .gather__actions { align-items: flex-start; flex-direction: column; }
}

/* Focus & Chill: real coffee first, functional discovery second. */
.hero__content > .eyebrow {
  margin-top: 0;
  margin-bottom: 22px;
  color: rgba(35, 31, 32, 0.7);
}

.hero__media--real {
  background:
    radial-gradient(circle at 68% 24%, rgba(255, 222, 0, 0.76), transparent 27%),
    radial-gradient(circle at 26% 78%, rgba(255, 186, 0, 0.2), transparent 34%),
    #eee8dc;
}

@media (hover: hover) and (prefers-reduced-motion: no-preference) {
  .hero__media--real:hover img {
    transform: translateY(-3px) scale(1.006);
    box-shadow: 0 32px 76px rgba(35, 31, 32, 0.25);
  }
}

.identity__media--real {
  min-height: 0;
  padding: clamp(30px, 4vw, 56px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: clamp(16px, 2vw, 24px);
  overflow: hidden;
  background:
    radial-gradient(circle at 76% 18%, rgba(255, 222, 0, 0.34), transparent 28%),
    radial-gradient(circle at 16% 86%, rgba(255, 255, 255, 0.56), transparent 34%),
    #eee8dc;
}

.identity__photo {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: clamp(22px, 2.6vw, 34px);
  background: var(--paper);
  box-shadow: 0 24px 62px rgba(35, 31, 32, 0.17);
}

.identity__photo--coffee {
  z-index: 1;
}

.identity__photo--functional {
  z-index: 2;
}

.identity__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.gather__media--real {
  display: grid;
  grid-template-columns: 1fr;
  place-items: center;
}

.gather__media--real .gather__photo {
  width: 100%;
  height: 100%;
  max-height: none;
}

.gather__media--real .gather__photo img { object-position: center 54%; }

.footer-links {
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 24px;
}

@media (prefers-reduced-motion: no-preference) {
  .identity__media.is-visible .identity__photo img { animation: focus-photo-in 760ms var(--ease) both; }
  .identity__media.is-visible .identity__photo--functional img { animation-delay: 140ms; }
}

@keyframes focus-photo-in {
  from { opacity: 0; transform: translateY(16px) scale(0.99); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 980px) {
  .identity__media--real { min-height: 520px; padding: 28px; }
}

@media (max-width: 680px) {
  .hero__content > .eyebrow { margin-bottom: 18px; }
  .identity__media--real { min-height: 320px; padding: 18px; gap: 14px; }
  .gather__media--real { padding: 18px; }
  .gather__media--real .gather__photo { aspect-ratio: 5 / 4; }
  .footer-links { max-width: 210px; }
}

@media (max-width: 360px) {
  .site-header { padding-inline: 14px; }
  .hero__content { padding: 48px 16px 34px; }
  .hero h1 { font-size: 2.55rem; }
  .hero__content > p { margin-top: 20px; }
  .hero__actions { margin-top: 24px; }
  .hero__media--real { min-height: 430px; padding: 20px 16px; }
  .hero__media--real img { width: min(90vw, 328px); max-height: 410px; }
}

/* Homepage editorial redesign — 12 Jul 2026 */
.main-nav { gap: clamp(18px, 2.4vw, 38px); }

.main-nav__button,
.nav-more summary {
  position: relative;
  padding: 0;
  border: 0;
  color: inherit;
  background: transparent;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
}

.main-nav__button::after,
.nav-more > summary::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: var(--sun);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms var(--ease);
}

.main-nav__button:hover::after,
.main-nav__button:focus-visible::after,
.nav-more[open] > summary::before,
.nav-more > summary:hover::before,
.nav-more > summary:focus-visible::before {
  transform: scaleX(1);
  transform-origin: left;
}

.main-nav__button:focus-visible,
.nav-more summary:focus-visible,
.footer-group a:focus-visible,
.footer-group button:focus-visible {
  outline: 3px solid var(--sun-warm);
  outline-offset: 5px;
}

.nav-more { position: relative; }
.nav-more summary { list-style: none; }
.nav-more summary::-webkit-details-marker { display: none; }
.nav-more summary::after {
  content: "+";
  display: inline-block;
  margin-left: 7px;
  font-size: 1rem;
  transition: transform 180ms var(--ease);
}
.nav-more[open] summary::after { transform: rotate(45deg); }

.nav-more__panel {
  position: absolute;
  z-index: 70;
  top: calc(100% + 20px);
  right: -84px;
  width: min(410px, calc(100vw - 40px));
  padding: 18px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 24px;
  background: rgba(251, 248, 239, 0.94);
  box-shadow: 0 24px 58px rgba(35, 31, 32, 0.17);
  -webkit-backdrop-filter: blur(26px) saturate(130%);
  backdrop-filter: blur(26px) saturate(130%);
}

.nav-more__panel a {
  min-height: 64px;
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  border-radius: 16px;
  transition: background-color 180ms ease;
}
.nav-more__panel a::after { display: none; }
.nav-more__panel a:hover { background: rgba(255, 222, 0, 0.26); }
.nav-more__panel a span {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero.section {
  width: 100%;
  min-height: calc(100svh - 92px);
  padding: clamp(34px, 6vh, 68px) max(24px, calc((100vw - 1440px) / 2));
  grid-template-columns: minmax(0, 1fr) clamp(330px, 33vw, 450px);
  gap: clamp(34px, 6vw, 94px);
  align-items: center;
  background:
    radial-gradient(circle at 86% 76%, rgba(255, 222, 0, 0.17), transparent 24rem),
    var(--paper);
}

.hero__content { max-width: 820px; padding: 0; }
.hero h1 { font-size: clamp(3.45rem, 5.2vw, 6.35rem); }
.hero__content > p { margin-top: 24px; }
.hero__actions { margin-top: 30px; }

.hero__media--real {
  position: relative;
  min-height: 0;
  padding: 0;
  display: grid;
  place-items: center end;
  overflow: visible;
  background: transparent;
}
.hero__media--real::before { display: none; }
.hero__media--real::after {
  content: "";
  position: absolute;
  z-index: 0;
  right: -20px;
  bottom: -18px;
  width: 88%;
  height: 38%;
  border-radius: 30px;
  background: rgba(255, 222, 0, 0.82);
}
.hero__media--real img {
  position: relative;
  z-index: 1;
  width: min(100%, calc((100svh - 150px) * 0.8), 430px);
  height: auto;
  max-height: none;
  aspect-ratio: 4 / 5;
  border: 0;
  border-radius: 30px;
  object-fit: cover;
  object-position: center 54%;
  box-shadow: none;
}
@media (hover: hover) and (prefers-reduced-motion: no-preference) {
  .hero__media--real:hover img { transform: translateY(-5px); box-shadow: none; }
}

.identity {
  height: auto;
  min-height: clamp(620px, 48vw, 760px);
  padding: clamp(54px, 7vw, 96px) max(24px, calc((100vw - 1440px) / 2));
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: clamp(48px, 7vw, 108px);
  align-items: center;
}
.identity__media { height: auto; overflow: visible; }
.identity__media--real {
  min-height: 0;
  padding: 0;
  grid-template-columns: 0.46fr 0.54fr;
  gap: 8px;
  aspect-ratio: 5 / 4;
  overflow: hidden;
  border-radius: 32px;
  background: var(--paper);
}
.identity__photo {
  height: 100%;
  aspect-ratio: auto;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}
.identity__photo img { object-position: center 48%; }
.identity__copy { padding: 0; }
.identity h2 { max-width: 10ch; font-size: clamp(3rem, 4.55vw, 5.75rem); }

.locations.section {
  width: 100%;
  padding: clamp(82px, 8vw, 118px) max(24px, calc((100vw - 1340px) / 2));
  color: var(--paper);
  background: var(--ink);
  border-top: 0;
}
.locations__heading {
  max-width: 1340px;
  margin: 0 auto;
  text-align: left;
}
.locations__heading h2 { margin-top: 16px; }
.locations__heading h2::after { margin: 28px 0 0; }
.locations__heading > p:not(.eyebrow) {
  margin-top: 24px;
  color: rgba(251, 248, 239, 0.7);
  font-size: 1.05rem;
}
.locations__grid {
  max-width: 1340px;
  margin: 58px auto 0;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid rgba(251, 248, 239, 0.22);
}
.location {
  min-height: 370px;
  padding: clamp(44px, 5vw, 74px);
  grid-template-columns: 1fr;
  align-content: space-between;
  gap: 38px;
}
.location + .location { border-left-color: rgba(251, 248, 239, 0.22); }
.location__copy { align-self: start; }
.location__eyebrow {
  margin-bottom: 24px;
  color: rgba(251, 248, 239, 0.58);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.location__badge {
  width: fit-content;
  margin-bottom: 20px;
  padding: 8px 12px;
  display: inline-flex;
  border-radius: var(--radius-pill);
  color: var(--ink);
  background: var(--sun);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.location h3 { font-size: clamp(3.2rem, 5vw, 6.2rem); }
.location p { color: rgba(251, 248, 239, 0.74); }
.location .location__status { margin-top: 18px; color: var(--paper); font-weight: 800; }
.location__actions { grid-column: auto; }
.locations .button--outline { color: var(--paper); border-color: rgba(251, 248, 239, 0.38); background: rgba(251, 248, 239, 0.08); }

.gather__media--real { padding: 0; background: #eee8dc; }
.gather__media--real .gather__photo {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}
.gather__media--real .gather__photo img { object-position: center 58%; }
.gather h2 { max-width: 9ch; }

.site-footer {
  width: 100%;
  min-height: 0;
  padding: 70px max(24px, calc((100vw - 1340px) / 2)) 86px;
  grid-template-columns: minmax(220px, 1.3fr) repeat(3, minmax(140px, 0.7fr));
  align-items: start;
  gap: 46px;
  background: #f0eadf;
  border-top: 0;
}
.footer-brand p { max-width: 230px; margin-top: 20px; color: var(--muted); line-height: 1.5; }
.brand--footer img { width: 82px; }
.footer-group { display: grid; align-content: start; gap: 10px; }
.footer-group h2 {
  margin-bottom: 10px;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.footer-group a,
.footer-group button {
  width: fit-content;
  min-height: 34px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  border: 0;
  color: inherit;
  background: transparent;
  text-decoration: none;
  font: inherit;
  font-size: 0.88rem;
  font-weight: 750;
  cursor: pointer;
}
.footer-group a:hover,
.footer-group button:hover { text-decoration: underline; text-decoration-color: var(--sun-warm); text-decoration-thickness: 2px; text-underline-offset: 4px; }
.footer-group a span {
  margin-left: 8px;
  padding: 4px 7px;
  border-radius: var(--radius-pill);
  background: var(--sun);
  font-size: 0.55rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.footer-legal {
  grid-column: 1 / -1;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.78rem;
}
.footer-legal a { color: inherit; }

.delivery-dock {
  padding: 6px;
  grid-template-columns: repeat(3, auto);
  justify-items: center;
  gap: 6px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: var(--radius-pill);
  background: rgba(251, 248, 239, 0.9);
  box-shadow: 0 14px 34px rgba(35, 31, 32, 0.18);
  -webkit-backdrop-filter: blur(22px) saturate(125%);
  backdrop-filter: blur(22px) saturate(125%);
}
.delivery-dock__item { min-height: 44px; padding: 0 12px; box-shadow: none; }
.delivery-dock__item--whatsapp { width: 44px; height: 44px; min-height: 44px; }

@media (max-width: 980px) {
  .site-footer {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: 28px;
  }
  .footer-brand { grid-column: 1 / -1; }
  .main-nav {
    max-height: calc(100dvh - 82px);
    overflow-y: auto;
  }
  .main-nav__button,
  .nav-more summary { min-height: 44px; display: flex; align-items: center; font-size: 1.5rem; }
  .main-nav__button { width: 100%; }
  .nav-more { width: 100%; }
  .nav-more summary { justify-content: space-between; }
  .nav-more__panel {
    position: static;
    width: 100%;
    margin-top: 12px;
    padding: 8px 0 0;
    grid-template-columns: 1fr 1fr;
    border: 0;
    border-top: 1px solid var(--line);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }
  .nav-more__panel a { min-height: 66px; padding-inline: 0; font-size: 1rem; }
  .hero.section {
    min-height: 0;
    padding: 54px 24px 64px;
    grid-template-columns: minmax(0, 1fr) minmax(290px, 0.72fr);
  }
  .hero__media--real { min-height: 0; }
  .identity { grid-template-columns: 1fr 1fr; }
  .identity__media { min-height: 0; }
  .gather__media--real { min-height: 520px; }
}

@media (max-width: 680px) {
  .site-header .header-cta { font-size: 0.76rem; }
  .hero.section {
    padding: 46px 0 56px;
    display: flex;
    flex-direction: column;
    gap: 38px;
  }
  .hero__content { padding: 0 20px; }
  .hero h1 { font-size: clamp(2.8rem, 12.4vw, 3.65rem); }
  .hero__media--real {
    width: calc(100% - 32px);
    min-height: 0;
    margin: 0 16px;
    padding: 0;
    place-items: center;
  }
  .hero__media--real::after { right: -8px; bottom: -12px; width: 90%; border-radius: 24px; }
  .hero__media--real img {
    width: 100%;
    max-height: none;
    aspect-ratio: 4 / 5;
    border-radius: 24px;
    object-position: center 54%;
  }
  .identity {
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .identity__copy { order: 1; padding: 64px 20px 34px; }
  .identity__media { order: 2; min-height: 0; }
  .identity__media--real {
    width: calc(100% - 32px);
    margin: 0 16px 64px;
    gap: 6px;
    aspect-ratio: 5 / 3;
    border-radius: 24px;
  }
  .identity h2 { font-size: clamp(2.7rem, 11.4vw, 4rem); }
  .locations.section { padding: 78px 20px 84px; }
  .locations__heading { text-align: left; }
  .locations__grid { margin-top: 46px; padding-right: 0; grid-template-columns: 1fr; }
  .location { min-height: 330px; padding: 44px 0; }
  .location + .location { border-top: 1px solid rgba(251, 248, 239, 0.22); border-left: 0; }
  .location h3 { font-size: clamp(3.2rem, 17vw, 5.2rem); }
  .gather__media--real { min-height: auto; padding: 0; }
  .gather__media--real .gather__photo { aspect-ratio: 4 / 3; }
  .gather__media--real .gather__photo img { object-position: center 55%; }
  .site-footer {
    padding: 54px 20px 128px;
    grid-template-columns: 1fr 1fr;
    gap: 42px 28px;
  }
  .footer-brand { grid-column: 1 / -1; }
  .footer-group--visit { grid-column: 1 / -1; grid-template-columns: repeat(3, max-content); align-items: center; column-gap: 18px; }
  .footer-group--visit h2 { grid-column: 1 / -1; }
  .footer-group a,
  .footer-group button { min-height: 42px; }
  .footer-legal { flex-direction: column; }
  .delivery-dock {
    right: 50%;
    left: auto;
    bottom: calc(10px + env(safe-area-inset-bottom));
    grid-template-columns: repeat(3, auto);
    transform: translateX(50%);
  }
  .delivery-dock__item { min-height: 42px; padding: 0 11px; }
  .delivery-dock__item--whatsapp { width: 42px; height: 42px; min-height: 42px; }
}

@media (max-width: 360px) {
  .location__actions { grid-template-columns: 1fr; }
  .footer-group--visit { grid-template-columns: 1fr; }
}

/* Events navigation: distinguish the branch agenda from off-site coffee service. */
.nav-events__panel {
  right: auto;
  left: -18px;
  width: min(360px, calc(100vw - 40px));
  grid-template-columns: 1fr 1fr;
}

/* A restrained loop keeps the real drink photography alive without becoming an ad. */
.identity__drop {
  --drop-fall: clamp(36px, 4.4vw, 54px);
  position: absolute;
  z-index: 3;
  top: 22%;
  left: 50.5%;
  width: clamp(4px, 0.42vw, 6px);
  height: clamp(7px, 0.72vw, 10px);
  border-radius: 60% 60% 72% 72%;
  opacity: 0;
  background: #ff9f1a;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.42), 0 3px 7px rgba(255, 159, 26, 0.3);
  pointer-events: none;
}

@media (prefers-reduced-motion: no-preference) {
  .identity__media.is-visible .identity__photo img {
    will-change: transform, translate, scale;
  }

  .identity__media.is-visible .identity__photo--coffee img {
    animation:
      focus-photo-in 760ms var(--ease) both,
      identity-photo-drift 8s 900ms ease-in-out infinite alternate both;
  }

  .identity__media.is-visible .identity__photo--functional img {
    animation:
      focus-photo-in 760ms 140ms var(--ease) both,
      identity-photo-drift 9s 1300ms ease-in-out infinite alternate-reverse both;
  }

  .identity__media.is-visible .identity__drop {
    animation: identity-drop 4.6s 1.2s cubic-bezier(0.22, 0.72, 0.32, 1) infinite;
  }
}

@keyframes identity-photo-drift {
  from { translate: 0 -3px; scale: 1.025; }
  to { translate: 0 4px; scale: 1.04; }
}

@keyframes identity-drop {
  0%, 25% { opacity: 0; transform: translateY(0) scale(0.7); }
  31% { opacity: 1; transform: translateY(0) scale(1); }
  56% { opacity: 0.95; transform: translateY(var(--drop-fall)) scale(0.82); }
  62%, 100% { opacity: 0; transform: translateY(var(--drop-fall)) scale(0.55); }
}

@media (max-width: 980px) {
  .nav-events__panel {
    width: 100%;
  }
}

@media (max-width: 680px) {
  .identity__drop {
    top: 21.5%;
    left: 50.5%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .identity__drop { display: none; }
}

/* One persistent, compact ordering control avoids covering content on small screens. */
.delivery-dock {
  right: max(12px, calc((100vw - 1440px) / 2 + 12px));
  bottom: max(12px, env(safe-area-inset-bottom));
  width: max-content;
  padding: 0;
  display: block;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  transform: none;
}

.delivery-dock__toggle {
  min-width: 86px;
  min-height: 48px;
  padding: 0 17px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  list-style: none;
  border: 1px solid rgba(35, 31, 32, 0.24);
  border-radius: var(--radius-pill);
  color: var(--ink);
  background: var(--sun);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.76), 0 12px 28px rgba(35, 31, 32, 0.2);
  font-size: 0.78rem;
  font-weight: 900;
  cursor: pointer;
}

.delivery-dock__toggle::-webkit-details-marker { display: none; }
.delivery-dock__toggle::after {
  content: "+";
  font-size: 1.05rem;
  line-height: 1;
  transition: transform 180ms ease;
}
.delivery-dock[open] .delivery-dock__toggle::after { transform: rotate(45deg); }
.delivery-dock__toggle:focus-visible { outline: 3px solid var(--ink); outline-offset: 3px; }

.delivery-dock__menu {
  position: absolute;
  right: 0;
  bottom: calc(100% + 8px);
  min-width: 132px;
  padding: 7px;
  display: grid;
  justify-items: stretch;
  gap: 6px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 24px;
  background: rgba(251, 248, 239, 0.94);
  box-shadow: 0 16px 38px rgba(35, 31, 32, 0.2);
  -webkit-backdrop-filter: blur(22px) saturate(125%);
  backdrop-filter: blur(22px) saturate(125%);
}

.delivery-dock:not([open]) .delivery-dock__menu { display: none; }
.delivery-dock__menu .delivery-dock__item { width: 100%; min-height: 44px; padding-inline: 13px; }
.delivery-dock__menu .delivery-dock__item--whatsapp { width: 44px; justify-self: end; }

@media (max-width: 680px) {
  .delivery-dock { right: 10px; bottom: max(10px, env(safe-area-inset-bottom)); }
  .delivery-dock--raised { bottom: calc(82px + env(safe-area-inset-bottom)); }
  .delivery-dock__toggle { min-width: 78px; min-height: 44px; padding-inline: 14px; }
}
