/* =========================================================
   BRO COFFEE — design tokens
========================================================= */
:root{
  --cream: #F8F5EF;
  --cream-2: #F1ECE1;
  --white: #FFFFFF;
  --dark: #012B41;
  --dark-2: #0C3E58;
  --dark-3: #011E2E;
  --amber: #EFB23C;
  --amber-2: #F6CC80;
  --text: #101C26;
  --text-muted: #75746F;
  --text-on-dark: #F8F5EF;
  --text-on-dark-muted: #AFC2CC;

  --radius-xl: 48px;
  --radius-lg: 32px;
  --radius-md: 20px;
  --radius-sm: 12px;
  --radius-pill: 999px;
  --radius-btn: 16px;

  --shadow-sm: 0 8px 24px rgba(1,43,65,.08);
  --shadow-md: 0 20px 45px rgba(1,43,65,.14);
  --shadow-lg: 0 30px 70px rgba(1,43,65,.20);

  --font-display: 'Poppins', sans-serif;
  --font-script: 'Kaushan Script', cursive;
  --font-body: 'Poppins', sans-serif;

  --container: 1240px;
  --edge: 32px;

  --ease: cubic-bezier(.22,.68,.32,1);
}

/* =========================================================
   Reset
========================================================= */
*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; overflow-x: hidden; }
body, h1, h2, h3, h4, p, ul, ol, figure, blockquote{ margin: 0; }
ul, ol{ padding: 0; list-style: none; }
img{ max-width: 100%; display: block; }
a{ color: inherit; text-decoration: none; }
button{ font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
input{ font: inherit; border: 0; background: none; }
svg{ display: block; }

body{
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.skip-link{
  position: absolute; left: -999px; top: 0; z-index: 999;
  background: var(--dark); color: var(--cream); padding: 12px 20px; border-radius: 0 0 8px 0;
}
.skip-link:focus{ left: 0; }

.container{
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--edge);
}

section{ position: relative; }

/* =========================================================
   Typography
========================================================= */
h1, h2, h3{
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.02;
  color: var(--dark);
  letter-spacing: -.01em;
}
h2{ font-size: clamp(2rem, 3.2vw, 2.75rem); }
h3{ font-size: 1.1rem; font-weight: 700; }

.eyebrow{
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .72rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.eyebrow--light{ color: var(--amber-2); }
.eyebrow--arrow svg{ color: var(--dark); opacity: .6; margin-left: 4px; }

.squiggle{ margin-top: 14px; }

/* =========================================================
   Buttons
========================================================= */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .82rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 14px 26px;
  border-radius: var(--radius-btn);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background-color .3s var(--ease), color .3s var(--ease);
  white-space: nowrap;
}
.btn:hover{ transform: translateY(-2px); }
.btn:active{ transform: translateY(0); }

.btn--dark{ background: var(--dark); color: var(--cream); box-shadow: var(--shadow-sm); }
.btn--dark:hover{ background: var(--dark-2); box-shadow: var(--shadow-md); }

.btn--amber{ background: linear-gradient(180deg, #F5BD55, #E9A62E); color: var(--white); box-shadow: var(--shadow-sm); }
.btn--amber:hover{ box-shadow: var(--shadow-md); }

.btn--cream{ background: var(--cream); color: var(--dark); }
.btn--cream:hover{ background: var(--white); }

.btn--outline{ border: 1.5px solid rgba(1,43,65,.25); color: var(--dark); padding: 15px 28px; }
.btn--outline:hover{ border-color: var(--dark); background: rgba(1,43,65,.04); }

.btn--ghost{ color: var(--dark); text-transform: none; letter-spacing: 0; font-weight: 600; font-size: .95rem; padding: 0; gap: 12px; }
.btn--ghost:hover{ transform: none; opacity: .7; }
.play-ico{
  width: 34px; height: 34px; border-radius: 50%; background: var(--dark);
  color: var(--cream); display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.btn--sm{ padding: 11px 24px; font-size: .74rem; }
.btn--block{ width: 100%; }

/* =========================================================
   Header
========================================================= */
.site-header{
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: transparent;
  transition: background-color .35s var(--ease), box-shadow .35s var(--ease);
}
.site-header.is-scrolled{
  background: var(--cream);
  box-shadow: 0 4px 20px rgba(1,43,65,.08);
}
.site-header__inner{
  display: flex; align-items: center; justify-content: space-between;
  padding-block: 26px;
}

.logo{ display: inline-flex; align-items: center; }
.logo img{ height: 52px; width: auto; }
.logo--footer img{ height: 42px; }

.main-nav ul{ display: flex; align-items: center; gap: 34px; }
.main-nav a{
  font-size: .78rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
  color: var(--text); position: relative; padding-bottom: 10px; transition: color .25s;
}
/* Split-color nav: on the transparent header the link text is dark over the
   cream half and cream over the navy hero blob (boundary = blob edge at 49vw).
   The per-link gradient stop is computed in main.js (setNavSplit). */
@media (min-width: 901px){
  .site-header:not(.is-scrolled) .main-nav a.has-split{
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
}
.site-header.is-scrolled .main-nav ul a{ background-image: none !important; }
.main-nav a:hover{ color: var(--dark); }
.main-nav a.is-active::after{
  content: ''; position: absolute; left: 50%; bottom: 0; translate: -50% 0;
  width: 5px; height: 5px; border-radius: 50%; background: var(--dark);
}

/* drawer shows PAGE links; the header ul keeps on-page anchors */
.main-nav__pages{ display: none; }
.main-nav.is-open ul{ display: none; }
.main-nav.is-open .main-nav__pages{
  display: flex; flex-direction: column; align-items: flex-start; gap: 14px;
}
.main-nav__pages a{
  font-size: .8rem; font-weight: 600; letter-spacing: .05em; text-transform: uppercase;
  color: var(--text); transition: color .25s;
}
.main-nav__pages a:hover{ color: var(--amber); }

/* CTA + contacts + socials live only in the opened drawer */
.main-nav__extra{
  display: none; flex-direction: column; align-items: flex-start; gap: 20px;
  margin-top: 30px; padding-top: 26px; border-top: 1px solid rgba(1,43,65,.12);
}
/* :not(.btn): the button keeps its own vertical padding, else its label sits low */
.main-nav__extra a:not(.btn){ padding-bottom: 0; }
.main-nav__extra .btn{ text-transform: none; letter-spacing: 0; color: var(--dark); }
/* the header already shows Book Now on desktop — no duplicate in the drawer */
@media (min-width: 901px){
  .main-nav__extra .btn{ display: none; }
}
.main-nav__contact{ display: flex; flex-direction: column; gap: 12px; }
.main-nav__contact a{ font-size: .92rem; font-weight: 600; text-transform: none; letter-spacing: 0; color: var(--dark); }
.main-nav__socials{ display: flex; gap: 12px; }
.main-nav__socials a{
  width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(1,43,65,.18);
  display: flex; align-items: center; justify-content: center; color: var(--dark);
  transition: background .25s, color .25s;
}
.main-nav__socials a:hover{ background: var(--dark); color: var(--cream); }

/* the burger opens the off-canvas drawer on every viewport, desktop included */
.main-nav.is-open{
  position: fixed; inset: 0 0 0 auto; width: min(320px, 84%); height: 100vh;
  background: var(--cream); padding: 100px 30px 30px; box-shadow: var(--shadow-lg);
  z-index: 90; display: flex; flex-direction: column; overflow-y: auto;
  transform: none; animation: navSlideIn .4s var(--ease);
}
@keyframes navSlideIn{ from{ transform: translateX(100%); } to{ transform: none; } }
.main-nav.is-open ul{ flex-direction: column; align-items: flex-start; gap: 22px; }
/* kill the split-color gradient inside the cream drawer */
.main-nav.is-open ul a{ background-image: none !important; color: var(--text) !important; padding-bottom: 0; }
/* active dot sits to the left of the item in the drawer, not underneath */
.main-nav.is-open ul a.is-active::after{
  left: -14px; top: 50%; bottom: auto; translate: 0 -50%;
}
.main-nav.is-open .main-nav__extra{ display: flex; }
.nav-toggle[aria-expanded="true"] span{ background: var(--dark) !important; }

.site-header__actions{ display: flex; align-items: center; gap: 22px; position: relative; z-index: 95; }

/* header phone: cream over the dark blob, dark once the header is solid / on mobile */
.site-header__phone{
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 700; font-size: .9rem; letter-spacing: .01em;
  color: var(--text-on-dark); transition: color .25s;
}
.site-header__phone svg{ width: 18px; height: 18px; flex-shrink: 0; }
.site-header.is-scrolled .site-header__phone{ color: var(--dark); }
.site-header__phone:hover{ color: var(--amber); }

.nav-toggle{
  display: flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 38px; height: 38px;
}
.nav-toggle span{ display: block; width: 20px; height: 2px; background: var(--text-on-dark); margin-inline: auto; transition: transform .3s, opacity .3s, background-color .35s; }
.site-header.is-scrolled .nav-toggle span{ background: var(--dark); }
.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); }

/* =========================================================
   Hero
========================================================= */
.hero{
  padding-top: 0;
  overflow: clip;
}
/* Blob: the brand organic shape traced from the asset sheet — single flat color */
.hero__blob{
  position: absolute;
  top: -34%; right: 0;
  height: 130%; aspect-ratio: 229 / 275;
  background: var(--dark);
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 229 275' preserveAspectRatio='none'%3E%3Cpath d='M229.2 145.0 C229.7 155.3 228.7 166.3 226.2 176.4 C223.7 186.6 219.4 196.8 214.2 205.9 C209.0 214.9 202.1 223.5 194.7 230.9 C187.3 238.4 178.7 244.9 169.7 250.6 C160.8 256.2 151.1 261.2 140.9 265.0 C130.8 268.8 119.9 272.0 108.8 273.4 C97.7 274.8 85.6 275.3 74.4 273.5 C63.1 271.6 51.0 268.0 41.1 262.1 C31.3 256.3 21.6 247.9 15.2 238.5 C8.9 229.2 4.9 217.0 2.9 206.1 C0.8 195.3 1.7 183.6 2.9 173.4 C4.1 163.2 7.9 153.8 10.2 145.0 C12.5 136.1 15.3 129.0 16.6 120.3 C17.9 111.6 16.9 102.7 18.1 92.6 C19.2 82.5 19.7 70.6 23.5 59.7 C27.3 48.8 32.7 35.9 40.9 27.4 C49.0 18.8 60.9 11.5 72.2 8.5 C83.5 5.5 97.3 6.7 108.8 9.4 C120.3 12.0 131.4 18.5 141.1 24.3 C150.8 30.1 159.0 37.4 167.0 44.1 C175.0 50.8 182.3 57.3 189.3 64.4 C196.3 71.6 203.2 78.9 208.8 87.2 C214.5 95.5 219.7 104.7 223.1 114.4 C226.5 124.0 228.7 134.6 229.2 145.0 Z' fill='%23000'/%3E%3C/svg%3E");
  -webkit-mask-size: 150% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 229 275' preserveAspectRatio='none'%3E%3Cpath d='M229.2 145.0 C229.7 155.3 228.7 166.3 226.2 176.4 C223.7 186.6 219.4 196.8 214.2 205.9 C209.0 214.9 202.1 223.5 194.7 230.9 C187.3 238.4 178.7 244.9 169.7 250.6 C160.8 256.2 151.1 261.2 140.9 265.0 C130.8 268.8 119.9 272.0 108.8 273.4 C97.7 274.8 85.6 275.3 74.4 273.5 C63.1 271.6 51.0 268.0 41.1 262.1 C31.3 256.3 21.6 247.9 15.2 238.5 C8.9 229.2 4.9 217.0 2.9 206.1 C0.8 195.3 1.7 183.6 2.9 173.4 C4.1 163.2 7.9 153.8 10.2 145.0 C12.5 136.1 15.3 129.0 16.6 120.3 C17.9 111.6 16.9 102.7 18.1 92.6 C19.2 82.5 19.7 70.6 23.5 59.7 C27.3 48.8 32.7 35.9 40.9 27.4 C49.0 18.8 60.9 11.5 72.2 8.5 C83.5 5.5 97.3 6.7 108.8 9.4 C120.3 12.0 131.4 18.5 141.1 24.3 C150.8 30.1 159.0 37.4 167.0 44.1 C175.0 50.8 182.3 57.3 189.3 64.4 C196.3 71.6 203.2 78.9 208.8 87.2 C214.5 95.5 219.7 104.7 223.1 114.4 C226.5 124.0 228.7 134.6 229.2 145.0 Z' fill='%23000'/%3E%3C/svg%3E");
  mask-size: 150% 100%;
  mask-repeat: no-repeat;
  z-index: 0;
}
@media (max-width: 900px){
  .hero__blob{ display: none; }
}

.hero__deco{ position: absolute; inset: 0; pointer-events: none; z-index: 1; }

.deco{ position: absolute; }
.deco--bean-a{ top: 15%; right: 38%; width: 48px; }
.deco--bean-b{ top: 31%; right: 6%; width: 46px; }
.deco--bean-c{ top: 60%; left: 36%; width: 42px; rotate: 25deg; }
.deco--bean-d{ bottom: 6%; right: 4%; width: 40px; rotate: -15deg; }
.deco--leaf-a{ top: 18%; right: 19%; width: 80px; rotate: 15deg; }
.deco--leaf-b{ top: 10%; left: 34%; width: 62px; rotate: -30deg; }
.deco--bean-e{ top: 30%; right: 44%; width: 38px; rotate: 40deg; }

.floaty{ animation: float1 7s ease-in-out infinite; }
.floaty-rev{ animation: float2 8.5s ease-in-out infinite .6s; }

/* real-photo bean used as decorative accent in colored sections */
.bean{
  position: absolute; width: 34px; height: 40px;
  background: url('../img/brand/bean-1.png') center/contain no-repeat;
}

.dot{ position: absolute; width: 6px; height: 6px; border-radius: 50%; background: var(--dark); opacity: .4; }
.dot--1{ top: 27%; right: 30%; }

@keyframes float1{ 0%,100%{ transform: translateY(0) rotate(0deg);} 50%{ transform: translateY(-14px) rotate(8deg);} }
@keyframes float2{ 0%,100%{ transform: translateY(0) rotate(0deg);} 50%{ transform: translateY(12px) rotate(-6deg);} }

.hero__inner{
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding-top: 102px;
  padding-bottom: 12px;
}

.hero__copy{ max-width: 480px; padding-top: 18px; }

.hero__title{ margin-bottom: 18px; position: relative; }
.hero__title .line{
  display: block;
  font-family: 'Archivo', var(--font-display);
  font-stretch: 66%;
  font-weight: 900;
  font-size: clamp(2.8rem, 8.1vw, 7rem);
  line-height: .88;
  letter-spacing: .01em;
  text-transform: uppercase;
  color: var(--dark);
}
/* "That MOVES": script hangs bottom-left, MOVES steps right, per mockup */
.hero__title .line--moves{
  position: relative;
  padding-left: .72em;
}
.hero__title .that{
  position: absolute;
  left: -.16em; top: -.8em;
  font-family: var(--font-script);
  font-stretch: normal;
  text-transform: none;
  color: var(--amber);
  font-size: .38em;
  font-weight: 400;
  font-style: normal;
  rotate: -6deg;
  z-index: 1;
}
.hero__title .line--with{
  color: var(--text);
  font-size: clamp(1.9rem, 5.7vw, 4.9rem);
  padding-left: 1.05em;
  padding-top: .06em;
}

.hero__text{
  font-size: 1rem; line-height: 1.6; color: var(--text-muted);
  margin-bottom: 30px; max-width: 340px;
}

.hero__cta{ display: flex; align-items: center; gap: 34px; margin-bottom: 44px; flex-wrap: wrap; }

.hero__proof{ display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.hero__proof-ico{ flex-shrink: 0; }
.hero__proof-text strong{ font-size: .78rem; font-weight: 700; line-height: 1.35; letter-spacing: .01em; display: block; }
.avatar-stack{ display: flex; }
.avatar-stack img{ width: 26px; height: 26px; border-radius: 50%; border: 2px solid var(--cream); margin-left: -8px; }
.avatar-stack img:first-child{ margin-left: 0; }
.hero__proof-count{ font-size: .74rem; color: var(--text-muted); }

.hero__art{ position: relative; min-height: 520px; }

/* truck sits mid-blob, its awning side tucked BEHIND the cup (per mockup) */
/* truck sits mid-blob, its awning side tucked behind the cup */
.hero__truck{
  position: absolute; right: -40px; top: 30%; width: 110%; z-index: 1;
  filter: drop-shadow(0 24px 30px rgba(0,0,0,.45));
}
.hero__truck img{ width: 100%; }

/* big cup: hangs low, poking past the blob's bottom edge onto the cream.
   It is a mini-slider: the active drink gently floats and sways; on change
   the current cup lifts up and away while the next one drops in from above. */
.hero__cup{
  position: absolute; left: -26%; bottom: 7%; width: 46%; z-index: 2;
  aspect-ratio: 285 / 533;
}
.hero__cup-float{
  position: absolute; inset: 0;
  animation: cupFloat 6.5s ease-in-out infinite;
  transform-origin: 50% 88%;
}
@keyframes cupFloat{
  0%, 100%{ transform: translateY(0) rotate(-2deg); }
  50%     { transform: translateY(-12px) rotate(2.4deg); }
}
.cup-slide{
  position: absolute; bottom: 0; left: 50%;
  max-width: 100%; max-height: 100%;
  filter: drop-shadow(0 30px 30px rgba(0,0,0,.3));
  opacity: 0;
  transform: translate(-50%, -130%);
  transition: transform .7s cubic-bezier(.55, -0.25, .75, .4), opacity .55s ease-in;
  pointer-events: none;
}
.cup-slide.is-active{
  opacity: 1;
  transform: translate(-50%, 0);
  transition: transform .9s cubic-bezier(.22, 1.3, .42, 1), opacity .35s ease-out;
}

.steam{ position: absolute; top: -6%; left: 30%; width: 40%; height: 60px; pointer-events: none; }
.steam span{
  position: absolute; bottom: 0; width: 8px; height: 40px; border-radius: 50%;
  background: linear-gradient(180deg, rgba(255,255,255,.85), rgba(255,255,255,0));
  filter: blur(3px);
  animation: steamRise 3.4s ease-in infinite;
}
.steam span:nth-child(1){ left: 10%; animation-delay: 0s; }
.steam span:nth-child(2){ left: 46%; animation-delay: 1s; height: 48px; }
.steam span:nth-child(3){ left: 78%; animation-delay: 2s; }
@keyframes steamRise{
  0%{ transform: translateY(0) scaleY(.6); opacity: 0; }
  20%{ opacity: .8; }
  100%{ transform: translateY(-46px) scaleY(1.3) translateX(6px); opacity: 0; }
}

.book-widget{
  position: absolute; left: 30%; bottom: 7%; z-index: 3;
  width: 196px; background: var(--white); border-radius: 14px;
  padding: 15px 16px 14px; box-shadow: var(--shadow-lg);
}
.book-widget__head{
  display: flex; align-items: center; justify-content: space-between;
  font-family: var(--font-display); font-weight: 700; font-size: .68rem;
  text-transform: uppercase; letter-spacing: .05em; color: var(--dark);
  margin-bottom: 11px;
}
.book-widget__head svg{ width: 13px; height: 13px; }
.book-widget__label{ display: block; font-size: .56rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 4px; }
.book-widget__field{
  display: flex; align-items: center; justify-content: space-between;
  border-bottom: 1.5px solid #E7E2D6; padding-bottom: 8px; margin-bottom: 12px;
}
.book-widget__field input{ font-size: .7rem; color: var(--text); width: 100%; cursor: pointer; }
.book-widget__field input::placeholder{ color: #9C978A; }
.book-widget__field svg{ width: 12px; height: 8px; }
.book-widget .btn--block{ padding: 10px 12px; font-size: .62rem; border-radius: 10px; }

/* =========================================================
   Occasions carousel
========================================================= */
.occasions{
  margin-top: 34px;
  z-index: 3;
  padding-bottom: 10px;
}
.occasions__inner{
  position: relative;
  max-width: min(var(--container), calc(100% - var(--edge) * 2));
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  /* symmetric vertical padding keeps the cards row dead-centered in the panel;
     the dots live absolutely inside the bottom strip, centered in it */
  padding: 36px 44px;
  display: grid;
  /* minmax(0,1fr): a plain 1fr lets the slider's min-content width blow the
     column past the panel, killing the scroll (cards spill out of the frame) */
  grid-template-columns: 200px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
}
/* dots: centered under the cards column (padding 44 + head 200 + gap 24), not the whole panel */
.occasions__inner .slider-dots{
  position: absolute; left: calc(44px + 200px + 24px); right: 44px; bottom: 14px;
  margin-top: 0;
}
.occasions__head{ position: relative; }
.occasions__head h2{ font-size: 1.55rem; }
.occasions__bean{
  position: absolute; left: -10px; bottom: -34px; width: 38px; height: 44px;
  background: url('../img/brand/bean-6.png') center/contain no-repeat;
}

.occasions__slider{ position: static; min-width: 0; }
/* arrows anchor to the panel itself: on its edges, centered on the cards row */
.occasions .slider-arrow{ top: 44%; }
.occasions__track{
  display: grid; grid-auto-flow: column; grid-auto-columns: calc(25% - 12px);
  gap: 16px; overflow-x: auto; scroll-snap-type: x proximity; scrollbar-width: none;
  padding-bottom: 4px;
}
.occasions__track::-webkit-scrollbar{ display: none; }

.occasion-card{
  scroll-snap-align: start;
  display: block; color: inherit;
  position: relative; border-radius: var(--radius-md); overflow: hidden;
  aspect-ratio: 1.06/1; background: var(--dark);
}
.occasion-card img{ position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .82; transition: transform .5s var(--ease); }
.occasion-card:hover img{ transform: scale(1.06); }
.occasion-card::after{
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(1,26,40,.1) 30%, rgba(1,18,28,.92));
}
.occasion-card__icon{
  position: absolute; top: 16px; left: 16px; z-index: 2;
  width: 34px; height: 34px; border-radius: 50%; background: rgba(1,43,65,.7);
  backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
}
.occasion-card__body{ position: absolute; left: 18px; right: 18px; bottom: 18px; z-index: 2; }
.occasion-card__body h3{ color: var(--white); font-size: .98rem; margin-bottom: 6px; text-transform: uppercase; letter-spacing: .02em; }
.occasion-card__body p{ color: rgba(255,255,255,.7); font-size: .78rem; line-height: 1.4; }

.slider-arrow{
  position: absolute; top: 50%; translate: 0 -50%; z-index: 4;
  width: 40px; height: 40px; border-radius: 50%; background: var(--white);
  box-shadow: var(--shadow-md); display: flex; align-items: center; justify-content: center;
  color: var(--dark); transition: background .25s, color .25s;
}
.slider-arrow:hover{ background: var(--dark); color: var(--cream); }
.slider-arrow--prev{ left: -20px; }
.slider-arrow--next{ right: -20px; }
.slider-arrow--dark{ background: var(--dark); color: var(--cream); }
.slider-arrow--dark:hover{ background: var(--amber); }

.slider-dots{ display: flex; justify-content: center; gap: 8px; margin-top: 18px; grid-column: 1 / -1; }
.slider-dots button{ width: 7px; height: 7px; border-radius: 50%; background: #DCD6C7; transition: background .25s, width .25s; }
.slider-dots button.is-active{ background: var(--dark); width: 20px; border-radius: var(--radius-pill); }

/* =========================================================
   Packages
========================================================= */
.packages{ padding-block: 22px 26px; }
.packages__inner{
  background: linear-gradient(155deg, var(--dark-2), var(--dark-3));
  border-radius: var(--radius-xl);
  padding: 34px;
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 26px;
  position: relative;
  overflow: hidden;
}
.packages__intro{ position: relative; z-index: 1; }
.packages__intro h2{ color: var(--text-on-dark); font-size: 1.6rem; margin-bottom: 10px; }
.packages__intro p{ color: var(--text-on-dark-muted); font-size: .86rem; line-height: 1.5; margin-bottom: 18px; max-width: 220px; }
.packages__bean{
  position: absolute; right: -10px; top: -14px; width: 40px; height: 46px;
  background: url('../img/brand/bean-4.png') center/contain no-repeat;
  rotate: 20deg;
}

.packages__grid{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }

.price-card{
  background: var(--cream); border-radius: var(--radius-md);
  padding: 18px; position: relative;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.price-card__drink{
  position: absolute; right: 10px; bottom: 42px;
  height: 52%; max-width: 38%; object-fit: contain; object-position: bottom right;
  filter: drop-shadow(0 10px 14px rgba(1,43,65,.25));
  pointer-events: none;
}
.price-card:hover{ transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.price-card--popular{ background: var(--white); box-shadow: var(--shadow-lg); }
.price-card__badge{
  position: absolute; top: -13px; right: 16px;
  background: var(--amber); color: var(--white);
  font-size: .6rem; font-weight: 700; text-transform: uppercase; letter-spacing: .04em;
  padding: 6px 12px; border-radius: var(--radius-pill);
}
.price-card h3{ font-size: 1.05rem; margin-bottom: 4px; padding-right: 36%; }
.price-card__sub{ font-size: .78rem; color: var(--text-muted); margin-bottom: 16px; padding-right: 38%; }
.price-card__btn{ position: relative; z-index: 1; }

/* =========================================================
   Signatures / menu categories (from the real letterboard)
========================================================= */
.signatures{ padding-block: 46px 30px; }
.signatures__inner{
  position: relative;
  display: grid; grid-template-columns: 225px minmax(0, 1fr);
  gap: 26px; align-items: center;
}
.signatures__head{ position: relative; }
.signatures__head h2{ font-size: 1.55rem; margin-bottom: 16px; }
.signatures__note{ font-size: .74rem; color: var(--text-muted); letter-spacing: .02em; }

.menu-slider-wrap{ min-width: 0; }
.menu-slider{ position: relative; }
.menu-track{
  display: grid; grid-auto-flow: column; grid-auto-columns: calc(33.333% - 9.4px);
  gap: 14px; overflow-x: auto; scroll-snap-type: x proximity; scrollbar-width: none;
  padding-bottom: 4px;
}
.menu-track::-webkit-scrollbar{ display: none; }
.menu-slider-wrap .slider-dots{ margin-top: 16px; }
/* white card like the mockup drink cards: category top-left, drink in the background */
.menu-card{
  background: var(--white); border-radius: var(--radius-md);
  padding: 18px 16px 20px 18px;
  box-shadow: var(--shadow-sm); position: relative; overflow: hidden;
  min-height: 225px; scroll-snap-align: start;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.menu-card:hover{ transform: translateY(-5px); box-shadow: var(--shadow-md); }
.menu-card:hover .menu-card__drink{ transform: scale(1.05); }
.menu-card__drink{
  position: absolute; right: 2px; bottom: 0;
  height: 64%; max-width: 46%; object-fit: contain; object-position: bottom right;
  filter: drop-shadow(0 10px 14px rgba(1,43,65,.22));
  pointer-events: none;
  transition: transform .5s var(--ease);
}
.menu-card__cat{
  color: var(--dark); font-size: .95rem; text-transform: uppercase; letter-spacing: .08em;
  padding-bottom: 9px; margin-bottom: 11px; position: relative;
}
.menu-card__cat::first-letter{ color: var(--amber); font-size: 1.35em; }
.menu-card__cat::after{
  content: ''; position: absolute; left: 0; bottom: 0;
  width: 26px; height: 2px; border-radius: 2px; background: var(--amber);
}
.menu-card__items{ position: relative; padding-right: 44%; }
.menu-card__items li{
  color: var(--text-muted); font-size: .74rem; line-height: 1.85;
  text-transform: uppercase; letter-spacing: .04em;
}

/* =========================================================
   Journey: how-it-works + gallery + testimonials + CTA
========================================================= */
.journey{
  margin-top: 20px;
  background: var(--dark);
  padding-bottom: 0;
}
.journey__wave{
  display: block; width: 100%; height: 110px; margin-top: -1px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 120' preserveAspectRatio='none'%3E%3Crect width='1440' height='120' fill='%23F8F5EF'/%3E%3Cpath d='M0,58 C260,14 420,96 700,66 C1000,34 1180,86 1440,46 L1440,120 L0,120 Z' fill='%23012B41'/%3E%3C/svg%3E") center / 100% 100% no-repeat;
}

.journey__how{
  display: grid; grid-template-columns: 250px 1fr;
  gap: 34px; align-items: center;
  padding-top: 6px; margin-bottom: 44px;
}
.journey__intro h2{ color: var(--text-on-dark); font-size: 1.6rem; }

.steps{
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 16px; position: relative;
}
.steps::before{
  content: ''; position: absolute; top: 30px; left: 12%; right: 12%; height: 0;
  border-top: 1.5px dashed rgba(248,245,239,.28);
}
.step{ text-align: center; position: relative; }
.step__circle{
  width: 60px; height: 60px; border-radius: 50%; background: var(--cream);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px; position: relative; z-index: 1;
  box-shadow: 0 0 0 8px var(--dark);
}
.step__num{ display: block; font-size: .68rem; font-weight: 700; letter-spacing: .08em; color: var(--amber-2); margin-bottom: 4px; }
.step h3{ color: var(--text-on-dark); font-size: .92rem; margin-bottom: 5px; }
.step p{ color: var(--text-on-dark-muted); font-size: .76rem; line-height: 1.45; max-width: 180px; margin-inline: auto; }

.journey__panel{
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 30px 34px 38px;
  margin-inline: calc(var(--edge) * -0.55);
  margin-bottom: 44px;
}
.panel-label{ margin-bottom: 16px; }

.gallery-slider{ position: relative; margin-bottom: 40px; }
.gallery-track{
  display: grid; grid-auto-flow: column; grid-auto-columns: minmax(190px, 1fr);
  gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none;
}
.gallery-track::-webkit-scrollbar{ display: none; }
.gallery-track figure{
  scroll-snap-align: start; border-radius: var(--radius-md); overflow: hidden; aspect-ratio: 4/3;
  box-shadow: var(--shadow-sm);
}
.gallery-track img{ width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.gallery-track figure:hover img{ transform: scale(1.06); }
.gallery-track figure{ cursor: zoom-in; position: relative; }
.gallery-track figure::after{
  content: ''; position: absolute; inset: 0;
  background: rgba(1,28,44,0) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='34' height='34' viewBox='0 0 24 24' fill='none'%3E%3Ccircle cx='11' cy='11' r='7' stroke='%23fff' stroke-width='1.6'/%3E%3Cpath d='M21 21l-5-5M11 8v6M8 11h6' stroke='%23fff' stroke-width='1.6' stroke-linecap='round'/%3E%3C/svg%3E") center no-repeat;
  background-size: 0 0;
  transition: background-color .3s, background-size .3s;
}
.gallery-track figure:hover::after{ background-color: rgba(1,28,44,.35); background-size: 34px 34px; }

/* ---------- Promo video modal ---------- */
.video-modal{ position: fixed; inset: 0; z-index: 310; display: flex; align-items: center; justify-content: center; padding: 24px; }
.video-modal[hidden]{ display: none; }
.video-modal__backdrop{ position: absolute; inset: 0; background: rgba(1,20,32,.94); }
.video-modal__frame{ position: relative; z-index: 1; width: min(960px, 92vw); }
.video-modal__frame video{
  width: 100%; max-height: 80vh; display: block;
  border-radius: var(--radius-md);
  box-shadow: 0 40px 90px rgba(0,0,0,.5);
  background: #000;
}
.video-modal__close{
  position: absolute; top: 22px; right: 26px; z-index: 2;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(248,245,239,.12); color: var(--cream);
  display: flex; align-items: center; justify-content: center;
  transition: background .25s;
}
.video-modal__close:hover{ background: var(--amber); }

/* ---------- Booking modal ---------- */
.booking-modal{ position: fixed; inset: 0; z-index: 320; display: flex; align-items: center; justify-content: center; padding: 20px; }
.booking-modal[hidden]{ display: none; }
.booking-modal__backdrop{ position: absolute; inset: 0; background: rgba(1,20,32,.9); }
.booking-modal__card{
  position: relative; z-index: 1;
  width: min(440px, 100%);
  max-height: 92vh; overflow-y: auto;
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 30px 30px 26px;
  box-shadow: 0 40px 90px rgba(0,0,0,.45);
}
.booking-modal__card h3{ font-size: 1.4rem; margin-bottom: 8px; }
.booking-modal__intro{ font-size: .8rem; line-height: 1.55; color: var(--text-muted); margin-bottom: 18px; }
.bm-package{
  display: inline-flex; align-items: center; gap: 5px;
  background: rgba(239,178,60,.14); border: 1px solid rgba(239,178,60,.55);
  color: var(--dark); font-size: .78rem; padding: 6px 14px;
  border-radius: var(--radius-pill); margin: -6px 0 16px;
}
.bm-package strong{ font-weight: 700; }
.booking-modal__close{
  position: absolute; top: 16px; right: 16px;
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(1,43,65,.08); color: var(--dark);
  display: flex; align-items: center; justify-content: center;
  transition: background .25s, color .25s;
}
.booking-modal__close:hover{ background: var(--dark); color: var(--cream); }

.bm-field{ position: relative; margin-bottom: 10px; }
.bm-field input,
.bm-field textarea{
  width: 100%;
  background: var(--white);
  border: 1.5px solid #E7E2D6;
  border-radius: 12px;
  padding: 12px 14px;
  font-size: .84rem;
  color: var(--text);
  transition: border-color .25s;
}
.bm-field textarea{ resize: vertical; min-height: 74px; }
.bm-field input::placeholder,
.bm-field textarea::placeholder{ color: #9C978A; }
.bm-field input:focus,
.bm-field textarea:focus{ outline: none; border-color: var(--amber); }
.bm-field input.bm-invalid{ border-color: #C0392B; }
.bm-field--picker input{ cursor: pointer; padding-right: 38px; }
.bm-field__ico{
  position: absolute; right: 13px; top: 13px;
  color: var(--text-muted); pointer-events: none;
}

.bm-more{
  display: inline-flex; align-items: center; gap: 7px;
  font-size: .78rem; font-weight: 600; color: var(--dark);
  margin: 2px 0 12px; padding: 2px 0;
}
.bm-more:hover{ color: var(--amber); }
.bm-more__plus{
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--dark); color: var(--cream);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: .8rem; line-height: 1;
  transition: rotate .3s var(--ease);
}
.bm-more[aria-expanded="true"] .bm-more__plus{ rotate: 45deg; }
.bm-extra{ margin-bottom: 2px; }
.bm-times{ display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }

/* anchored dropdowns: open right under their field */
.bm-calendar,
.bm-times-dd{
  position: absolute; top: calc(100% + 6px); left: 0; z-index: 5;
  background: var(--white); border: 1.5px solid #E7E2D6; border-radius: 12px;
  box-shadow: var(--shadow-md);
}
.bm-calendar{ width: 272px; padding: 12px; }
.bm-calendar__head{ display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; }
.bm-calendar__title{ font-size: .8rem; font-weight: 700; color: var(--dark); }
.bm-calendar__nav{
  width: 28px; height: 28px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--dark); transition: background .2s;
}
.bm-calendar__nav:hover{ background: rgba(1,43,65,.08); }
.bm-calendar table{ width: 100%; border-collapse: collapse; }
.bm-calendar th{ font-size: .62rem; font-weight: 600; color: var(--text-muted); padding: 4px 0; text-transform: uppercase; }
.bm-calendar td{ text-align: center; padding: 1px; }
.bm-day{
  width: 32px; height: 32px; border-radius: 50%;
  font-size: .76rem; color: var(--text);
  transition: background .15s, color .15s;
}
.bm-day:hover{ background: rgba(1,43,65,.1); }
.bm-day.is-today{ box-shadow: inset 0 0 0 1.5px var(--amber); }
.bm-day.is-selected{ background: var(--dark); color: var(--cream); }
.bm-day:disabled{ color: #C9C4B8; pointer-events: none; }

.bm-times-dd{ width: 100%; max-height: 190px; overflow-y: auto; padding: 5px; }
.bm-time{
  display: block; width: 100%; text-align: left;
  padding: 8px 11px; border-radius: 8px; font-size: .78rem; color: var(--text);
}
.bm-time:hover{ background: rgba(1,43,65,.08); }
.bm-time.is-selected{ background: var(--dark); color: var(--cream); }

.booking-modal__done{ text-align: center; padding: 26px 6px 16px; }
.booking-modal__done svg{ margin: 0 auto 14px; }
.booking-modal__done h3{ margin-bottom: 8px; }
.booking-modal__done p{ font-size: .82rem; color: var(--text-muted); line-height: 1.55; }

/* ---------- Lightbox ---------- */
.lightbox{ position: fixed; inset: 0; z-index: 300; display: flex; align-items: center; justify-content: center; }
.lightbox[hidden]{ display: none; }
.lightbox__backdrop{ position: absolute; inset: 0; background: rgba(1,20,32,.94); cursor: zoom-out; }
.lightbox__stage{ position: relative; z-index: 1; max-width: min(1100px, 88vw); max-height: 84vh; display: flex; flex-direction: column; gap: 12px; pointer-events: none; }
.lightbox__media{ display: flex; align-items: center; justify-content: center; }
.lightbox__media img,
.lightbox__media video{
  max-width: min(1100px, 88vw); max-height: 76vh;
  border-radius: var(--radius-md);
  box-shadow: 0 40px 90px rgba(0,0,0,.5);
  pointer-events: auto;
}
.lightbox__caption{ text-align: center; color: var(--text-on-dark-muted); font-size: .82rem; }
.lightbox__close{
  position: absolute; top: 22px; right: 26px; z-index: 2;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(248,245,239,.12); color: var(--cream);
  display: flex; align-items: center; justify-content: center;
  transition: background .25s;
}
.lightbox__close:hover{ background: var(--amber); }
.lightbox__arrow{ position: fixed; top: 50%; translate: 0 -50%; z-index: 2; }
.lightbox__arrow--prev{ left: 26px; }
.lightbox__arrow--next{ right: 26px; }
.lightbox__count{
  position: absolute; bottom: 20px; left: 50%; translate: -50% 0; z-index: 2;
  color: var(--text-on-dark-muted); font-size: .78rem; letter-spacing: .12em;
}
@media (max-width: 560px){
  .lightbox .slider-arrow{ display: flex; }
  .lightbox__arrow--prev{ left: 8px; }
  .lightbox__arrow--next{ right: 8px; }
  .lightbox__close{ top: 12px; right: 12px; }
}

.testimonials{
  display: grid; grid-template-columns: 225px 1fr;
  gap: 26px; align-items: center;
}
.testimonials__head h2{ font-size: 1.55rem; }
.testimonials__grid{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.testimonial-card{
  background: var(--white); border-radius: var(--radius-md); padding: 20px;
  box-shadow: var(--shadow-sm);
}
.stars{ color: var(--amber); letter-spacing: 2px; margin-bottom: 10px; font-size: .82rem; }
.testimonial-card p{ font-size: .8rem; line-height: 1.55; color: var(--text); margin-bottom: 14px; }
.testimonial-card cite{ font-style: normal; display: block; font-weight: 700; font-size: .78rem; color: var(--dark); }
.testimonial-card cite span{ display: block; font-weight: 400; color: var(--text-muted); font-size: .72rem; margin-top: 2px; }

.journey__cta{
  position: relative;
  padding: 30px 20px 36px;
  min-height: 170px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.journey__cta-inner{ position: relative; z-index: 2; text-align: center; max-width: 520px; margin-inline: auto; }
.journey__cta .eyebrow{ justify-content: center; margin-bottom: 10px; }
.journey__cta h2{ color: var(--text-on-dark); font-size: 1.7rem; margin-bottom: 8px; text-transform: uppercase; }
.journey__cta-text{ color: var(--text-on-dark-muted); margin-bottom: 18px; font-size: .78rem; text-transform: uppercase; letter-spacing: .1em; }
.journey__cta .btn--cream{ padding: 12px 24px; font-size: .76rem; }

.journey__cta-cup{
  position: absolute; left: calc(var(--edge) * -1); top: 50%; translate: 0 -50%;
  width: 19%; min-width: 170px; max-width: 260px;
  filter: drop-shadow(0 20px 30px rgba(0,0,0,.4));
  z-index: 1;
}

.stamp{
  position: absolute; left: calc(16% + 44px); top: 50%; translate: 0 -50%;
  width: 92px; height: 92px; z-index: 1;
  rotate: -12deg;
}
.stamp img{ width: 100%; height: 100%; object-fit: contain; opacity: .92; }

.journey__cta-truck{
  position: absolute; right: calc(var(--edge) * -0.5); top: 50%; translate: 0 -50%;
  width: 22%; min-width: 200px; max-width: 300px;
  z-index: 1;
  filter: drop-shadow(0 16px 24px rgba(0,0,0,.4));
}

/* =========================================================
   About / SEO
========================================================= */
.about{ padding-block: 44px 52px; }
.about__inner{
  display: grid; grid-template-columns: 225px minmax(0, 1fr);
  gap: 26px; align-items: start;
}
.about__head{ position: sticky; top: 96px; }
.about__head h2{ font-size: 1.55rem; margin-bottom: 14px; }
.about__phone{
  font-size: .95rem; font-weight: 700; color: var(--dark);
  letter-spacing: .02em; transition: color .25s;
}
.about__phone:hover{ color: var(--amber); }
.about__body{ max-width: 680px; }
.about__body > p{ font-size: .9rem; line-height: 1.75; color: var(--text-muted); margin-bottom: 14px; }
.faq{ margin-top: 30px; border-top: 1px solid rgba(1,43,65,.12); }
.faq__item{ padding: 18px 0; border-bottom: 1px solid rgba(1,43,65,.12); }
.faq__item h3{ font-size: .92rem; margin-bottom: 7px; }
.faq__item p{ font-size: .84rem; line-height: 1.65; color: var(--text-muted); }
.faq__item a{ color: var(--dark); font-weight: 600; }
.faq__item a:hover{ color: var(--amber); }

/* =========================================================
   Event subpages
========================================================= */
/* the event photo fills the blob (background set per-page inline);
   longer headline word needs a slightly smaller staircase */
.event-page .hero__title .line{ font-size: clamp(2.4rem, 5.4vw, 4.6rem); }
.event-page .hero__title .line--with{ font-size: clamp(1.7rem, 3.8vw, 3.2rem); }
@media (max-width: 560px){
  .event-page .hero__title .line{ font-size: clamp(2.6rem, 15vw, 4.4rem); }
  .event-page .hero__title .line--with{ font-size: clamp(1.9rem, 10.4vw, 3rem); }
}
.breadcrumbs{ font-size: .72rem; color: var(--text-muted); margin-bottom: 18px; letter-spacing: .03em; }
.breadcrumbs a{ color: var(--text-muted); transition: color .25s; }
.breadcrumbs a:hover{ color: var(--dark); }
.breadcrumbs span{ color: var(--dark); font-weight: 600; }

.page-hero{ padding: 140px 0 40px; }
.page-hero__inner{
  display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 44px; align-items: center;
}
.page-hero h1{ font-size: clamp(1.7rem, 3.2vw, 2.5rem); line-height: 1.15; margin-bottom: 16px; color: var(--dark); }
.page-hero__lead{ font-size: .98rem; line-height: 1.65; color: var(--text-muted); margin-bottom: 26px; max-width: 480px; }
.page-hero__phone{ font-weight: 700; color: var(--dark); font-size: .95rem; }
.page-hero__phone:hover{ color: var(--amber); }
.page-hero__media img{
  width: 100%; height: 340px; object-fit: cover;
  border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
}

.page-body{ padding-block: 26px; }
.page-body__inner{
  display: grid; grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  gap: 44px; align-items: start;
}
.page-body__text p{ font-size: .92rem; line-height: 1.8; color: var(--text-muted); margin-bottom: 16px; }
.page-aside{
  background: var(--white); border-radius: var(--radius-md); box-shadow: var(--shadow-sm);
  padding: 24px;
}
.page-aside h3{ font-size: .95rem; margin-bottom: 12px; }
.page-aside ul{ margin-bottom: 18px; }
.page-aside li{
  font-size: .82rem; color: var(--text-muted); padding: 7px 0 7px 18px;
  position: relative; border-bottom: 1px solid rgba(1,43,65,.08);
}
.page-aside li::before{
  content: ''; position: absolute; left: 0; top: 14px;
  width: 6px; height: 6px; border-radius: 50%; background: var(--amber);
}

.page-faq{ padding-block: 20px 10px; }
.page-faq h2{ font-size: 1.3rem; margin-bottom: 4px; color: var(--dark); }
.page-faq .faq{ max-width: 720px; }

.more-events{ padding-block: 26px 10px; }
.more-events h2{ font-size: 1.05rem; margin-bottom: 14px; color: var(--dark); }
.more-events__list{ display: flex; flex-wrap: wrap; gap: 10px; }
.more-events__list a{
  font-size: .74rem; font-weight: 600; letter-spacing: .03em;
  padding: 8px 16px; border-radius: var(--radius-pill);
  border: 1px solid rgba(1,43,65,.2); color: var(--dark);
  transition: background .25s, color .25s;
}
.more-events__list a:hover{ background: var(--dark); color: var(--cream); }

.page-cta{ padding-block: 34px 56px; }
.page-cta__inner{
  background: linear-gradient(155deg, var(--dark-2), var(--dark-3));
  border-radius: var(--radius-xl); padding: 44px 34px; text-align: center;
}
.page-cta h2{ color: var(--text-on-dark); font-size: 1.5rem; margin-bottom: 10px; }
.page-cta p{ color: var(--text-on-dark-muted); font-size: .9rem; margin-bottom: 22px; }

@media (max-width: 820px){
  .page-hero{ padding-top: 120px; }
  .page-hero__inner{ grid-template-columns: 1fr; gap: 26px; }
  .page-hero__media img{ height: 240px; }
  .page-body__inner{ grid-template-columns: 1fr; gap: 26px; }
}

/* =========================================================
   Content pages (about / gallery / blog / legal) + cookie bar
========================================================= */
.prose h2{ font-size: 1.25rem; color: var(--dark); margin: 24px 0 10px; }
.prose h3{ font-size: 1.02rem; color: var(--dark); margin: 18px 0 8px; }
.prose p{ font-size: .92rem; line-height: 1.8; color: var(--text-muted); margin-bottom: 14px; }
.prose ul, .prose ol{ margin: 0 0 16px 20px; }
.prose li{ font-size: .9rem; line-height: 1.7; color: var(--text-muted); list-style: disc; margin-bottom: 4px; }
.prose ol li{ list-style: decimal; }
.prose img{ max-width: 100%; height: auto; border-radius: var(--radius-md); }
.prose a{ color: var(--dark); font-weight: 600; text-decoration: underline; }
.prose a:hover{ color: var(--amber); }
.prose blockquote{ border-left: 3px solid var(--amber); padding-left: 16px; margin: 0 0 16px; }

.events-hub-grid{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.events-hub-grid .occasion-card{ aspect-ratio: 1.15/1; }

/* contact: write-or-call label + email link */
.main-nav__contact-label, .site-footer__contact-label, .about__contact-label{
  font-size: .72rem; text-transform: uppercase; letter-spacing: .06em;
  color: var(--text-muted); font-weight: 600;
}
.about__contact-label{ margin: 6px 0 2px; }
.about__email{ display: inline-block; font-weight: 600; color: var(--dark); font-size: .9rem; margin-top: 2px; }
.about__email:hover{ color: var(--amber); }
.main-nav__contact a[href^="mailto"], .site-footer__contact a[href^="mailto"]{ word-break: break-all; }

/* menu card "See all" hint (card is now a link to its category page) */
.menu-card__more{
  position: absolute; right: 16px; bottom: 14px;
  font-size: .72rem; font-weight: 700; letter-spacing: .04em; color: var(--amber);
}
a.menu-card:hover .menu-card__more{ color: var(--dark); }

/* menu category page */
.menu-cat-hero__cup{ display: flex; justify-content: center; }
.menu-cat-hero__cup img{ width: auto; height: 300px; max-width: 100%; object-fit: contain;
  filter: drop-shadow(0 18px 22px rgba(1,43,65,.22)); }
.menu-cat-list h3{ font-size: 1.05rem; color: var(--dark); margin: 20px 0 4px; }
.menu-cat-list h3:first-child{ margin-top: 0; }
.menu-cat-list p{ margin-bottom: 4px; }

.gallery-page-grid{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 10px; }
.gallery-page-grid figure{
  border-radius: var(--radius-md); overflow: hidden; aspect-ratio: 4/3;
  cursor: zoom-in; position: relative; background: var(--dark);
}
.gallery-page-grid img{ width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.gallery-page-grid figure:hover img{ transform: scale(1.05); }

.blog-grid{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.post-card{
  display: block; color: inherit; background: var(--white);
  border-radius: var(--radius-md); box-shadow: var(--shadow-sm); overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.post-card:hover{ transform: translateY(-4px); box-shadow: var(--shadow-md); }
.post-card > img{ width: 100%; height: 190px; object-fit: cover; }
.post-card__body{ padding: 18px 18px 20px; }
.post-card__date{ font-size: .68rem; text-transform: uppercase; letter-spacing: .07em; color: var(--text-muted); }
.post-card__body h2{ font-size: 1.02rem; color: var(--dark); margin: 8px 0; line-height: 1.35; }
.post-card__body p{ font-size: .82rem; color: var(--text-muted); line-height: 1.6; }

.post-single__meta{ font-size: .74rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: .05em; margin-bottom: 18px; }
.post-single__cover{ width: 100%; max-height: 420px; object-fit: cover; border-radius: var(--radius-lg); margin-bottom: 26px; }

.pagination{ display: flex; gap: 8px; margin-top: 30px; flex-wrap: wrap; }
.pagination .page-numbers{
  padding: 9px 15px; border-radius: var(--radius-pill); border: 1px solid rgba(1,43,65,.2);
  font-size: .78rem; font-weight: 600; color: var(--dark);
}
.pagination .page-numbers.current{ background: var(--dark); color: var(--cream); border-color: var(--dark); }
.pagination a.page-numbers:hover{ background: var(--dark); color: var(--cream); }

.site-footer__legal{
  border-top: 1px solid rgba(1,43,65,.08);
  padding: 12px 0 16px; text-align: center;
  font-size: .72rem; color: var(--text-muted);
}
.site-footer__legal a{ color: var(--text-muted); text-decoration: underline; margin: 0 6px; }
.site-footer__legal a:hover{ color: var(--dark); }

.cookie-bar{
  position: fixed; left: 20px; right: 20px; bottom: 20px; z-index: 120;
  display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap;
  background: var(--dark); color: var(--text-on-dark);
  border-radius: var(--radius-md); box-shadow: var(--shadow-lg);
  padding: 16px 22px; max-width: 760px; margin-inline: auto;
}
/* without this, display:flex overrides the [hidden] attribute and the bar never hides */
.cookie-bar[hidden]{ display: none; }
.cookie-bar p{ font-size: .8rem; line-height: 1.55; color: var(--text-on-dark-muted); margin: 0; flex: 1 1 320px; }
.cookie-bar a{ color: var(--amber-2); text-decoration: underline; }
.cookie-bar__actions{ display: flex; gap: 14px; align-items: center; }
.cookie-bar__decline{ font-size: .78rem; color: var(--text-on-dark-muted); text-decoration: underline; }
.cookie-bar__decline:hover{ color: var(--text-on-dark); }

@media (max-width: 900px){
  .blog-grid{ grid-template-columns: repeat(2, 1fr); }
  .gallery-page-grid{ grid-template-columns: repeat(2, 1fr); }
  .events-hub-grid{ grid-template-columns: repeat(2, 1fr); }
  .menu-cat-hero__cup{ margin-top: 10px; }
  .menu-cat-hero__cup img{ height: 220px; }
}
@media (max-width: 560px){
  .blog-grid{ grid-template-columns: 1fr; }
  .cookie-bar{ left: 12px; right: 12px; bottom: 12px; }
}

/* =========================================================
   Footer
========================================================= */
.site-footer{ background: var(--cream); border-top: 1px solid rgba(1,43,65,.08); }
.site-footer__inner{
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding-block: 18px; flex-wrap: wrap;
}
.site-footer{ position: relative; z-index: 2; }
.site-footer__socials{ display: flex; gap: 14px; }
.site-footer__socials a{
  width: 34px; height: 34px; border-radius: 50%; border: 1px solid rgba(1,43,65,.18);
  display: flex; align-items: center; justify-content: center; color: var(--dark);
  transition: background .25s, color .25s;
}
.site-footer__socials a:hover{ background: var(--dark); color: var(--cream); }
.site-footer__nav{ display: flex; gap: 26px; flex-wrap: wrap; }
.site-footer__nav a{ font-size: .78rem; font-weight: 600; text-transform: uppercase; letter-spacing: .04em; color: var(--text-muted); transition: color .25s; }
.site-footer__nav a:hover{ color: var(--dark); }
.site-footer__contact{ display: flex; gap: 20px; flex-wrap: wrap; }
.site-footer__contact a{ font-size: .78rem; color: var(--text-muted); transition: color .25s; }
.site-footer__contact a:hover{ color: var(--dark); }

/* =========================================================
   Scroll reveal
========================================================= */
[data-reveal]{ opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
[data-reveal].is-visible{ opacity: 1; transform: none; }
.step{ opacity: 0; transform: translateY(20px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.steps.is-visible .step{ opacity: 1; transform: none; }
.steps.is-visible .step:nth-child(1){ transition-delay: .05s; }
.steps.is-visible .step:nth-child(2){ transition-delay: .15s; }
.steps.is-visible .step:nth-child(3){ transition-delay: .25s; }
.steps.is-visible .step:nth-child(4){ transition-delay: .35s; }

@media (prefers-reduced-motion: reduce){
  [data-reveal], .step{ opacity: 1; transform: none; transition: none; }
  .bean, .leaf, .steam span{ animation: none; }
}

/* =========================================================
   Responsive
========================================================= */
@media (max-width: 820px){
  .occasions__inner{ grid-template-columns: minmax(0, 1fr); }
  .occasions__head{ max-width: 460px; }
  .occasions__inner .slider-dots{ left: 20px; right: 20px; }
  .packages__inner{ grid-template-columns: 1fr; }
  .packages__intro p{ max-width: 100%; }
  .about__inner{ grid-template-columns: 1fr; }
  .about__head{ position: static; }
}

@media (max-width: 1080px){
  .hero__cup{ left: -18%; width: 42%; }
  .stamp{ display: none; }
  .price-card__drink{ height: 42%; max-width: 30%; }
}

@media (max-width: 900px){
  .hero__inner{ grid-template-columns: 1fr; padding-top: 120px; padding-bottom: 40px; }
  .hero__copy{ max-width: 100%; }
  .hero__art{
    min-height: auto; margin-top: 40px; z-index: 2;
    background: var(--dark);
    border-radius: var(--radius-lg);
    display: flex; flex-direction: column; align-items: center;
    padding: 36px 24px 28px;
  }
  .hero__truck{ position: static; width: 82%; margin: 0 auto; filter: drop-shadow(0 20px 26px rgba(0,0,0,.35)); }
  .hero__cup{ position: relative; left: auto; bottom: auto; width: 48%; margin: -16% auto 0; z-index: 2; }
  .steam{ display: none; }
  .book-widget{ position: static; width: 100%; max-width: 320px; margin: 28px auto 0; }
  .logo{ color: var(--dark); }
  .nav-toggle span{ background: var(--dark) !important; }
  .site-header__phone{ color: var(--dark); }
  .hero__deco{ display: none; }

  .main-nav{
    position: fixed; inset: 0 0 0 auto; width: min(320px, 84%); height: 100vh;
    background: var(--cream); padding: 100px 30px 30px; box-shadow: var(--shadow-lg);
    transform: translateX(100%); transition: transform .4s var(--ease); z-index: 90;
    display: flex; flex-direction: column; overflow-y: auto;
  }
  /* the transition animates both directions here; the desktop keyframe is redundant */
  .main-nav.is-open{ transform: translateX(0); animation: none; }
  .main-nav ul{ flex-direction: column; align-items: flex-start; gap: 22px; }
  /* keep the extras visible while the drawer slides shut */
  .main-nav__extra{ display: flex; }
  .nav-toggle{ display: flex; }
  /* keep the order button in the mobile header, just compact it */
  .site-header__actions{ gap: 14px; }
  .site-header__actions .btn--sm{ padding: 10px 16px; font-size: .72rem; }
  /* logo matches the burger button height */
  .logo img{ height: 38px; }

  .menu-track{ grid-auto-columns: calc(50% - 7px); }
  .packages__grid{ grid-template-columns: 1fr; }
  .signatures__inner{ grid-template-columns: minmax(0, 1fr); }
  .journey__how{ grid-template-columns: 1fr; }
  .testimonials{ grid-template-columns: 1fr; }
  .testimonials__grid{ grid-template-columns: 1fr; }
  .steps{ grid-template-columns: repeat(2, 1fr); row-gap: 34px; }
  .steps::before{ display: none; }
  .journey__panel{ margin-inline: 0; }

  .journey__cta{ flex-direction: column; padding-top: 20px; gap: 20px; }
  .journey__cta-cup{ position: static; translate: none; width: 130px; margin-inline: auto; order: -1; }
  .stamp{ display: none; }
  .journey__cta-truck{ position: static; translate: none; width: 170px; margin: 0 auto; }
}

@media (max-width: 560px){
  :root{ --edge: 20px; }
  .site-header__inner{ padding-block: 18px; }
  /* tight next to the burger — icon only, still tappable */
  .site-header__actions{ gap: 16px; }
  .site-header__phone-num{ display: none; }
  .site-header__phone svg{ width: 22px; height: 22px; }
  /* the staircase fills the column width on phones (checked to fit at 320px) */
  .hero__title .line{ font-size: clamp(3.4rem, 23vw, 5.5rem); }
  .hero__title .line--with{ font-size: clamp(2.3rem, 15.6vw, 3.75rem); }
  .hero__cta{ gap: 22px; }
  .hero__truck{ width: 88%; }
  .hero__cup{ width: 54%; }
  .occasions{ margin-top: 0; }
  .occasions__inner{ padding: 26px 20px 24px; border-radius: var(--radius-lg); }
  .occasions__track{ grid-auto-columns: minmax(160px, 78%); }
  /* occasions has dots + swipe; the gallery's single arrow must stay */
  .occasions .slider-arrow{ display: none; }
  .packages__inner{ padding: 32px 22px; border-radius: var(--radius-lg); }
  .menu-track{ grid-auto-columns: minmax(200px, 78%); gap: 12px; }
  .menu-card{ padding: 16px 12px 18px 16px; }
  .signatures .slider-arrow{ display: none; }
  .journey__panel{ padding: 28px 20px 36px; border-radius: var(--radius-lg); }
  .gallery-track{ grid-auto-columns: minmax(160px, 70%); }
  .site-footer__inner{ justify-content: center; text-align: center; }
}
