/* ============================================================
   WHSKD — brand stylesheet
   your local caffeine dealer · refined sugar free · miami lakes
============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Anton&family=Space+Grotesk:wght@400;500;600;700&family=Caveat:wght@600;700&family=Permanent+Marker&display=swap');

:root{
  /* official WHSKD brand palette (from brand guidebook) */
  --bg:#feeca7;        /* cream top */
  --bg-soft:#f7e191;
  --surface:#fffaf0;
  --ink:#33170f;
  --ink-dim:#6b4a3c;
  --maroon:#ab3734;     /* cherry */
  --maroon-dark:#7c2824;
  --olive:#acbf61;      /* matcha */
  --olive-dark:#62762f;
  --line: rgba(51,23,15,0.16);

  --f-display: Impact, 'Anton', sans-serif;
  --f-body:'Space Grotesk', sans-serif;
  --f-accent:'Caveat', cursive;
  --f-lazydog:'Permanent Marker', 'Caveat', cursive; /* closest free match to the brand's proprietary Lazy Dog typeface */

  --container: 1280px;
  --nav-h: 84px;
  --ease: cubic-bezier(.16,.84,.44,1);
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; background:var(--bg); }
html,body{ overflow-x:hidden; }

body{
  margin:0;
  background:var(--bg);
  color:var(--ink);
  font-family:var(--f-body);
  font-size:16px;
  line-height:1.5;
  -webkit-font-smoothing:antialiased;
  cursor:default;
}

/* film-grain texture overlay */
body::after{
  content:"";
  position:fixed; inset:0;
  pointer-events:none;
  z-index:9998;
  opacity:.035;
  mix-blend-mode:multiply;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ margin:0; padding:0; list-style:none; }
h1,h2,h3,h4,p{ margin:0; }
button{ font-family:inherit; cursor:pointer; }

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

::selection{ background:var(--maroon); color:var(--bg); }

/* ---------- checkerboard utility ---------- */
.checker{
  background-color:var(--bg);
  background-image:repeating-conic-gradient(var(--olive) 0% 25%, transparent 0% 50%);
  background-size:26px 26px;
}

/* ---------- custom cursor ---------- */
.cursor-dot{
  position:fixed; top:0; left:0; width:10px; height:10px; border-radius:50%;
  background:var(--maroon); pointer-events:none; z-index:10000;
  transform:translate(-50%,-50%);
  transition:width .25s var(--ease), height .25s var(--ease), background .25s var(--ease);
  mix-blend-mode:multiply;
}
.cursor-ring{
  position:fixed; top:0; left:0; width:36px; height:36px; border-radius:50%;
  border:1px solid var(--ink); pointer-events:none; z-index:9999;
  transform:translate(-50%,-50%);
  transition:width .3s var(--ease), height .3s var(--ease), opacity .3s var(--ease), border-color .3s var(--ease);
  opacity:.45;
}
.cursor-ring.grow{ width:70px; height:70px; opacity:1; border-color:var(--olive); }
@media (hover:none), (max-width:860px){
  .cursor-dot,.cursor-ring{ display:none; }
}

/* ---------- top marquee ---------- */
.ticker{
  background:var(--maroon); color:var(--bg);
  overflow:hidden; white-space:nowrap; border-bottom:1px solid var(--maroon-dark);
  position:relative; z-index:500;
}
.ticker-track{
  display:inline-flex; align-items:center; gap:2.5rem;
  animation:ticker 26s linear infinite;
  padding:9px 0;
  will-change:transform;
}
.ticker-track span{
  font-family:var(--f-body); font-weight:600; font-size:.78rem;
  letter-spacing:.14em; text-transform:uppercase;
  display:inline-flex; align-items:center; gap:2.5rem;
}
.ticker-track span::after{ content:"•"; margin-left:2.5rem; color:var(--bg); opacity:.6; }
@keyframes ticker{ from{ transform:translateX(0);} to{ transform:translateX(-50%);} }

/* ---------- nav ---------- */
header.site-nav{
  position:sticky; top:0; z-index:900;
  height:var(--nav-h);
  display:flex; align-items:center;
  background:rgba(254,236,167,.75);
  backdrop-filter:blur(14px); -webkit-backdrop-filter:blur(14px);
  border-bottom:1px solid var(--line);
  transition:background .3s var(--ease), border-color .3s var(--ease);
}
header.site-nav.scrolled{ background:rgba(254,236,167,.95); }
.nav-inner{
  width:100%; display:flex; align-items:center; justify-content:space-between;
}
.brand{
  display:flex; align-items:center; gap:12px;
  font-family:var(--f-display); font-size:2.15rem; letter-spacing:.02em;
  color:var(--maroon); text-transform:uppercase;
}
.brand .dot{
  width:12px;height:12px;border-radius:50%;background:var(--olive);
  box-shadow:0 0 10px var(--olive);
  animation:pulse 2s ease-in-out infinite;
}
@keyframes pulse{ 0%,100%{ opacity:1; transform:scale(1);} 50%{ opacity:.5; transform:scale(1.3);} }

.nav-links{ display:flex; align-items:center; gap:2.6rem; }
.nav-links a{
  font-size:.82rem; font-weight:600; letter-spacing:.12em; text-transform:uppercase;
  position:relative; padding:6px 0; color:var(--ink-dim);
  transition:color .25s var(--ease);
}
.nav-links a::after{
  content:""; position:absolute; left:0; bottom:0; height:1px; width:0;
  background:var(--olive); transition:width .3s var(--ease);
}
.nav-links a:hover, .nav-links a.active{ color:var(--ink); }
.nav-links a:hover::after, .nav-links a.active::after{ width:100%; }

.nav-cta{
  font-size:.78rem; font-weight:700; letter-spacing:.1em; text-transform:uppercase;
  background:var(--maroon); color:var(--bg); padding:11px 22px; border-radius:100px;
  transition:transform .3s var(--ease), background .3s var(--ease);
  display:inline-block;
}
.nav-cta:hover{ background:var(--maroon-dark); transform:translateY(-2px); }
button.nav-cta.lang-toggle{ border:0; font-family:inherit; }

.nav-toggle{
  display:none; flex-direction:column; gap:5px; background:none; border:0; padding:6px; z-index:1001;
}
.nav-toggle span{ width:26px; height:2px; background:var(--ink); transition:transform .3s var(--ease), opacity .3s var(--ease); }
.nav-toggle.open span:nth-child(1){ transform:translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2){ opacity:0; }
.nav-toggle.open span:nth-child(3){ transform:translateY(-7px) rotate(-45deg); }

.mobile-menu{
  position:fixed; inset:0; background:var(--bg); z-index:950;
  display:flex; flex-direction:column; align-items:center; justify-content:center; gap:2rem;
  transform:translateY(-100%); transition:transform .5s var(--ease);
}
.mobile-menu.open{ transform:translateY(0); }
.mobile-menu a{
  font-family:var(--f-display); font-size:2.6rem; text-transform:uppercase; color:var(--maroon);
  letter-spacing:.02em;
}
.mobile-menu a:hover{ color:var(--olive); }

@media (max-width:900px){
  .nav-links, .nav-cta{ display:none; }
  .nav-toggle{ display:flex; }
}

/* ---------- buttons ---------- */
.btn{
  display:inline-flex; align-items:center; gap:10px;
  font-size:.82rem; font-weight:700; letter-spacing:.1em; text-transform:uppercase;
  padding:16px 30px; border-radius:100px; border:1px solid var(--ink);
  color:var(--ink); position:relative; overflow:hidden; isolation:isolate;
  transition:color .35s var(--ease), border-color .35s var(--ease);
}
.btn::before{
  content:""; position:absolute; inset:0; background:var(--olive); z-index:-1;
  transform:translateY(101%); transition:transform .4s var(--ease);
}
.btn:hover{ color:var(--bg); border-color:var(--olive); }
.btn:hover::before{ transform:translateY(0); }
.btn-solid{
  background:var(--maroon); border-color:var(--maroon); color:var(--bg);
}
.btn-solid::before{ background:var(--maroon-dark); }
.btn-solid:hover{ color:var(--bg); }
.btn-rust{ border-color:var(--maroon); color:var(--maroon); }
.btn-rust::before{ background:var(--maroon); }
.btn-rust:hover{ color:var(--bg); }

/* ---------- reveal animation ---------- */
[data-reveal]{
  opacity:0; transform:translateY(36px);
  transition:opacity .9s var(--ease), transform .9s var(--ease);
}
[data-reveal].in-view{ opacity:1; transform:translateY(0); }
[data-reveal="fade"]{ transform:none; }
[data-reveal].in-view[data-reveal="fade"]{ opacity:1; }
[data-reveal-delay="1"]{ transition-delay:.1s; }
[data-reveal-delay="2"]{ transition-delay:.22s; }
[data-reveal-delay="3"]{ transition-delay:.34s; }
[data-reveal-delay="4"]{ transition-delay:.46s; }
[data-reveal-delay="5"]{ transition-delay:.58s; }

/* letter stagger for headlines */
.split-line{ overflow:hidden; display:block; }
.split-line .word{ display:inline-block; white-space:nowrap; }
.split-line .char{
  display:inline-block; transform:translateY(110%);
  transition:transform .8s var(--ease);
}
.split-line.in-view .char{ transform:translateY(0); }

/* ---------- section basics ---------- */
section{ position:relative; }
.eyebrow{
  font-family:var(--f-body); font-style:normal; font-weight:700;
  color:var(--ink-dim); font-size:.72rem; letter-spacing:.16em; text-transform:uppercase;
  display:inline-flex; align-items:center; gap:10px; margin-bottom:14px;
}
.eyebrow::before{ content:""; width:26px; height:1px; background:var(--olive); }

.section-head{ display:flex; align-items:flex-end; justify-content:space-between; gap:2rem; flex-wrap:wrap; margin-bottom:3rem; }
.section-head h2{ max-width:640px; }

h2.big{ font-family:var(--f-display); text-transform:uppercase; font-size:clamp(2.4rem,5.2vw,4.4rem); line-height:.98; letter-spacing:.01em; color:var(--maroon); }
h1.hero-h{ font-family:var(--f-display); text-transform:uppercase; line-height:.92; letter-spacing:.01em; color:var(--maroon); }
h1.hero-h.font-lazydog{ font-family:var(--f-lazydog); text-transform:uppercase; letter-spacing:0; line-height:1.08; }

p.lead{ font-size:1.15rem; color:var(--ink-dim); line-height:1.65; max-width:560px; }

/* ---------- hero ---------- */
.hero{
  min-height:calc(100vh - var(--nav-h) - 34px);
  display:flex; align-items:center;
  padding:70px 0 90px;
  position:relative;
  overflow:hidden;
}
.hero-grid{
  display:grid; grid-template-columns:1fr 1fr; gap:3rem; align-items:center; width:100%;
}
.hero h1{ font-size:clamp(3.4rem,8vw,7.6rem); color:var(--maroon); }
.hero h1 .outline{ color:var(--maroon); }
.hero h1 .fill-matcha{ color:var(--maroon); }
.hero h1 .fill-rust{ color:var(--maroon); }

.hero-sub{ margin-top:1.6rem; }
.hero-actions{ display:flex; gap:1rem; margin-top:2.4rem; flex-wrap:wrap; }

/* ---------- hero founders-letter excerpt (fade + read more) ---------- */
.hero-letter{ position:relative; margin-top:1.6rem; max-width:640px; }
.hero-letter-content{
  max-height:185px; overflow:hidden; position:relative;
  transition:max-height .6s cubic-bezier(.4,0,.2,1);
}
.hero-letter-content p{ margin-top:1rem; }
.hero-letter-content p:first-child{ margin-top:0; }
.hero-letter-content.is-expanded{ max-height:3000px; }
.hero-letter-content.is-expanded .hero-letter-fade{ opacity:0; }
.hero-letter-fade{
  position:absolute; left:0; right:0; bottom:0; height:110px;
  background:linear-gradient(to bottom, rgba(254,236,167,0) 0%, var(--bg) 88%);
  pointer-events:none; transition:opacity .35s ease;
}
.hero-letter-fade.is-hidden{ opacity:0; }
.hero-letter-toggle{
  display:inline-block; margin-top:1.1rem; background:none; border:0; padding:0; cursor:pointer;
  font-family:var(--f-body); font-weight:700; font-size:.9rem; letter-spacing:.02em;
  color:var(--maroon); text-decoration:underline; text-underline-offset:4px;
}
.hero-letter-toggle:hover{ opacity:.75; }

.hero-visual{
  position:relative; aspect-ratio:4/5; border-radius:26px; overflow:hidden;
  border:1px solid var(--line);
  box-shadow:0 30px 70px rgba(43,33,25,.14);
}
.hero-visual img{ width:100%; height:100%; object-fit:cover; transform:scale(1.08); transition:transform 1.4s var(--ease); }
.hero-visual:hover img{ transform:scale(1); }
.hero-visual video{ width:100%; height:100%; object-fit:cover; display:block; }
.hero-badge{
  position:absolute; bottom:18px; left:18px; background:var(--surface); color:var(--ink);
  padding:14px 18px; border-radius:16px; max-width:210px;
  font-size:.78rem; font-weight:600; line-height:1.35;
  box-shadow:0 20px 40px rgba(43,33,25,.22);
}
.hero-badge b{ font-family:var(--f-display); display:block; font-size:1.6rem; color:var(--maroon); text-transform:uppercase; }

.blob{
  position:absolute; border-radius:50%; filter:blur(90px); opacity:.28; z-index:-1;
}
.blob-matcha{ width:480px; height:480px; background:var(--olive); top:-120px; left:-160px; }
.blob-rust{ width:380px; height:380px; background:var(--olive); bottom:-140px; right:-100px; opacity:.3; }

@media (max-width:900px){
  .hero-grid{ grid-template-columns:1fr; }
  .hero-visual{ aspect-ratio:4/3; order:-1; }
}

.about-hero{ padding:90px 0 60px; }
@media (max-width:900px){ .about-hero{ padding:70px 0 30px; } }

.hero-visual-letter{ aspect-ratio:3/4; }
@media (max-width:900px){
  .hero-visual-letter{ max-width:260px; aspect-ratio:1280/2276; margin:0 auto; order:0; }
  .hero-visual-letter video{ object-fit:contain; }
  .pad.founders-section{ padding-top:3.5rem; }
}

/* ---------- hero doodle (side-by-side illustration, uncropped) ---------- */
.hero-doodle{ position:relative; display:flex; align-items:center; justify-content:center; }
.hero-doodle img{
  width:100%; max-width:640px; height:auto; display:block;
  filter:drop-shadow(0 26px 46px rgba(43,23,15,.18));
  animation:doodleFloat 6s ease-in-out infinite;
}
@keyframes doodleFloat{ 0%,100%{ transform:translateY(0);} 50%{ transform:translateY(-14px);} }
.placeholder-tag{
  display:inline-flex; align-items:center; gap:8px; margin:1.2rem 0;
  font-family:var(--f-body); font-size:.68rem; font-weight:700; letter-spacing:.1em; text-transform:uppercase;
  color:var(--maroon); background:rgba(171,55,52,.08); border:1px dashed var(--maroon);
  padding:7px 14px; border-radius:100px;
}
@media (max-width:900px){
  .hero-doodle{ order:-1; }
  .hero-doodle img{ max-width:420px; }
}

/* small inline variant: sits beside the headline on mobile instead of a huge stacked graphic */
.hero-title-row{ display:contents; }
.hero-doodle-inline{ display:none; }
@media (max-width:900px){
  .home-hero-doodle{ display:none; }
  .contact-doodle{ display:none; }
  .hero-title-row{
    display:flex; align-items:flex-start; gap:14px;
  }
  .hero-title-text{ flex:1 1 auto; min-width:0; }
  .hero-title-text .eyebrow{ display:flex; flex-wrap:wrap; row-gap:4px; }
  .hero-doodle-inline{
    display:block; flex:0 0 auto; width:92px; margin:4px 0 0;
    animation:doodleFloat 6s ease-in-out infinite;
  }
  .hero-doodle-inline img{
    width:100%; height:auto; display:block;
    filter:drop-shadow(0 10px 20px rgba(43,23,15,.18));
  }
}

/* extra-large variant for the home hero, per request to make the doodle much bigger */
.hero-doodle-xl{ transform:scale(1.45); transform-origin:center; }
@media (max-width:900px){
  .hero-doodle-xl{ transform:none; }
  .hero-doodle-xl img{ max-width:480px; }
}

/* ---------- hours strip ---------- */
.hours-strip{ padding:22px 0; }
.hours-strip .wrap{ display:flex; justify-content:center; align-items:center; gap:14px; flex-wrap:wrap; }
.hours-strip .chip{
  background:var(--surface); border:1px solid var(--line); border-radius:100px;
  padding:11px 24px; font-size:.82rem; font-weight:700; letter-spacing:.02em; color:var(--ink);
  box-shadow:0 8px 20px rgba(43,33,25,.1);
}
.hours-strip .chip b{ color:var(--maroon); font-weight:700; }

/* ---------- marquee band (brand words) ---------- */
.brandband{
  border-top:1px solid var(--line); border-bottom:1px solid var(--line);
  overflow:hidden; padding:26px 0; background:var(--bg-soft);
}
.brandband-track{ display:inline-flex; gap:3.5rem; animation:ticker 34s linear infinite; }
.brandband-track span{
  font-family:var(--f-display); font-size:clamp(1.6rem,3.6vw,2.6rem); text-transform:uppercase;
  color:var(--ink); opacity:.88; display:inline-flex; align-items:center; gap:3.5rem; letter-spacing:.02em;
}
.brandband-track span i{ color:var(--maroon); font-style:normal; }

/* ---------- gift band (repurposed marquee: Gift WHSKD / Ecard) ---------- */
.giftband{
  position:relative;
  border-top:1px solid var(--line); border-bottom:1px solid var(--line);
  overflow:hidden; padding:32px 0; background:var(--bg-soft);
}
.giftband-track{ display:inline-flex; gap:3.5rem; animation:ticker 24s linear infinite; }
.giftband-track span{
  font-family:var(--f-display); font-size:clamp(1.6rem,3.6vw,2.6rem); text-transform:uppercase;
  color:var(--ink); opacity:.42; display:inline-flex; align-items:center; gap:3.5rem; letter-spacing:.02em;
}
.giftband-track span i{ color:var(--maroon); font-style:normal; opacity:1; }
.giftband-btn-wrap{
  position:absolute; inset:0; display:flex; align-items:center; justify-content:center;
  background:linear-gradient(90deg, transparent 0%, transparent 38%, var(--bg-soft) 46%, var(--bg-soft) 54%, transparent 62%, transparent 100%);
  pointer-events:none;
}
.giftband-btn-wrap .btn{ pointer-events:auto; }

/* ---------- cards / grid ---------- */
.grid{ display:grid; gap:1.6rem; }
.grid-3{ grid-template-columns:repeat(3,1fr); }
.grid-2{ grid-template-columns:repeat(2,1fr); }
.grid-4{ grid-template-columns:repeat(4,1fr); }
@media (max-width:960px){
  .grid-3,.grid-4{ grid-template-columns:repeat(2,1fr); }
}
@media (max-width:620px){
  .grid-2,.grid-3,.grid-4{ grid-template-columns:1fr; }
}

.card{
  background:var(--surface); border:1px solid var(--line); border-radius:22px;
  padding:2rem; transition:transform .4s var(--ease), border-color .4s var(--ease), box-shadow .4s var(--ease);
}
.card:hover{ transform:translateY(-6px); border-color:var(--olive); box-shadow:0 24px 50px rgba(43,33,25,.12); }

.photo-card{
  position:relative; border-radius:22px; overflow:hidden; aspect-ratio:4/5;
  border:1px solid var(--line);
}
.photo-card img{ width:100%; height:100%; object-fit:cover; transition:transform .7s var(--ease); }
.photo-card:hover img{ transform:scale(1.08); }
.photo-card .cap{
  position:absolute; left:0; right:0; bottom:0; padding:20px;
  background:linear-gradient(to top, rgba(20,14,9,.9), transparent);
  transform:translateY(12px); opacity:0; transition:all .4s var(--ease);
}
.photo-card:hover .cap{ transform:translateY(0); opacity:1; }
.photo-card .cap b{ font-family:var(--f-display); text-transform:uppercase; font-size:1.1rem; letter-spacing:.02em; color:var(--bg); }
.photo-card .cap span{ font-size:.78rem; color:rgba(254,236,167,.8); }

/* ---------- menu items ---------- */
.menu-cat{ margin-bottom:4.5rem; }
.menu-cat-head{ display:flex; align-items:center; gap:1.2rem; margin-bottom:2rem; }
.menu-cat-head h3{
  font-family:var(--f-body); text-transform:uppercase; font-weight:700;
  font-size:.78rem; letter-spacing:.1em; color:var(--maroon-dark);
  background:var(--olive); padding:9px 20px; border-radius:100px; display:inline-block;
}
.menu-cat-head::after{ content:""; flex:1; height:1px; background:var(--line); }

.menu-item{
  display:flex; justify-content:space-between; gap:1.5rem; align-items:baseline;
  padding:1.35rem 0; border-bottom:1px dashed var(--line);
}
.menu-item:hover{ padding-left:10px; border-color:var(--olive); }
.menu-item-info h4{ font-size:1.05rem; font-weight:700; margin-bottom:4px; text-transform:uppercase; letter-spacing:.02em; color:var(--ink); }
.menu-item-info p{ font-size:.85rem; color:var(--ink-dim); max-width:460px; }
.menu-item-price{
  font-family:var(--f-display); font-size:1.25rem; color:var(--ink); white-space:nowrap; letter-spacing:.02em;
}
.tag{
  display:inline-block; font-size:.65rem; font-weight:700; letter-spacing:.08em; text-transform:uppercase;
  background:var(--olive); color:var(--bg); padding:3px 9px; border-radius:100px; margin-left:8px; vertical-align:middle;
}
.tag.rust{ background:var(--maroon); color:var(--bg); }

/* ---------- stats strip ---------- */
.stats{
  display:grid; grid-template-columns:repeat(4,1fr); gap:2rem;
  border-top:1px solid var(--line); border-bottom:1px solid var(--line); padding:3rem 0;
}
.stat b{ font-family:var(--f-display); font-size:clamp(2.2rem,4.2vw,3.4rem); color:var(--olive-dark); display:block; }
.stat span{ font-size:.78rem; letter-spacing:.08em; text-transform:uppercase; color:var(--ink-dim); }
@media (max-width:700px){ .stats{ grid-template-columns:repeat(2,1fr); } }

/* ---------- schedule / trailer coming-soon ---------- */
.schedule-grid{ align-items:stretch; }
.schedule-photo{
  border-radius:26px; overflow:hidden; border:1px solid var(--line);
  box-shadow:0 30px 70px rgba(43,33,25,.14);
}
.schedule-photo img{ width:100%; height:100%; object-fit:cover; display:block; }

.schedule-card{
  position:relative; background:var(--bg); border:1px solid var(--line); border-radius:26px;
  box-shadow:0 30px 70px rgba(43,33,25,.14);
  padding:3rem 2rem; text-align:center; overflow:hidden;
  display:flex; flex-direction:column; align-items:center; justify-content:center; gap:1.1rem;
  min-height:100%;
}
.schedule-badge{
  width:140px; padding:14px 8px; background:var(--olive); color:var(--maroon-dark);
  border-radius:58% 42% 53% 47% / 48% 55% 45% 52%;
  font-family:var(--f-display); text-transform:uppercase; font-size:1.2rem; letter-spacing:.02em;
}
.schedule-card h3{
  font-family:var(--f-display); text-transform:uppercase; color:var(--maroon);
  font-size:clamp(1.9rem,4.2vw,2.7rem); line-height:1.02;
}
.schedule-pill{
  background:var(--olive); color:var(--surface); font-family:var(--f-display); text-transform:uppercase;
  letter-spacing:.03em; font-size:1.05rem; padding:13px 32px; border-radius:100px;
}
.schedule-card .doodle-mini{ width:110px; height:auto; color:var(--maroon); opacity:.85; margin-top:.3rem; }
.schedule-detail{ width:100%; }
.schedule-detail-label{
  display:block; font-size:.68rem; font-weight:700; letter-spacing:.1em; text-transform:uppercase;
  color:var(--olive-dark); margin-bottom:.4rem;
}
.schedule-detail p{ font-size:.92rem; color:var(--ink-dim); line-height:1.5; }
.schedule-star{ position:absolute; color:var(--maroon); opacity:.7; font-size:1.3rem; line-height:1; }
.schedule-star.s1{ top:10%; left:8%; transform:rotate(-12deg); }
.schedule-star.s2{ bottom:12%; right:9%; transform:rotate(10deg); }
.schedule-star.s3{ top:42%; right:7%; font-size:.9rem; transform:rotate(-6deg); }
@media (max-width:900px){ .schedule-card{ padding:2.4rem 1.6rem; } }

/* ---------- footer ---------- */
footer{
  border-top:1px solid var(--line); padding:5rem 0 2rem;
  background:var(--bg-soft);
}
footer.checker{ padding-top:5rem; }
footer .wrap{ background:var(--bg); border-radius:28px; padding:3.5rem 2.5rem 2rem; box-shadow:0 20px 60px rgba(43,33,25,.1); }
.footer-cta{ text-align:center; margin-bottom:4rem; }
.footer-cta h2{ font-size:clamp(2.4rem,7vw,6rem); }
.footer-grid{ display:grid; grid-template-columns:1.4fr 1fr 1fr; gap:2.5rem; padding-bottom:3rem; border-bottom:1px solid var(--line); }
.footer-grid h5{ font-size:.75rem; letter-spacing:.12em; text-transform:uppercase; color:var(--maroon); margin-bottom:1.1rem; }
.footer-grid a, .footer-grid p{ display:block; color:var(--ink-dim); font-size:.92rem; margin-bottom:.6rem; transition:color .25s var(--ease); }
.footer-grid a:hover{ color:var(--ink); }
.footer-bottom{ display:flex; justify-content:space-between; align-items:center; padding-top:1.8rem; flex-wrap:wrap; gap:1rem; font-size:.78rem; color:var(--ink-dim); }
@media (max-width:800px){ .footer-grid{ grid-template-columns:1fr; } }

/* ---------- menu greeting hero ---------- */
.menu-greeting{
  font-family:var(--f-lazydog); color:var(--maroon);
  font-size:clamp(1.5rem,3.4vw,2.5rem); line-height:1.6; margin:0;
}
.menu-greeting-underline{
  text-decoration:underline; text-decoration-color:var(--olive); text-decoration-thickness:3px; text-underline-offset:6px;
}

/* ---------- menu banner (top title band) ---------- */
.menu-banner{
  background:var(--maroon); color:var(--bg);
  padding:5.5rem 0 4.5rem; text-align:center; position:relative; overflow:hidden;
}
.menu-banner::before{
  content:""; position:absolute; inset:0; opacity:.06; pointer-events:none;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.menu-banner-title{
  font-family:var(--f-lazydog); text-transform:uppercase; letter-spacing:0;
  font-size:clamp(3.6rem,11vw,8rem); line-height:1; color:var(--bg); margin:0;
}
.menu-banner-sub{
  font-family:var(--f-body); font-weight:600; font-size:1rem; letter-spacing:.02em;
  color:rgba(254,236,167,.8); margin-top:1rem;
}

/* ---------- menu showcase row (classics / doodle / signature / doodle / extras) ---------- */
.menu-row{
  display:grid;
  grid-template-columns:1fr .65fr 1.3fr .65fr 1fr;
  gap:1.6rem; align-items:start;
}
.menu-row-col h3.menu-row-head{
  font-family:var(--f-display); text-transform:uppercase; color:var(--maroon);
  font-size:1.15rem; letter-spacing:.04em; margin-bottom:1.2rem;
  display:flex; align-items:center; gap:10px;
}
.menu-row-head::after{ content:""; flex:1; height:1px; background:var(--line); }
.menu-row-lists{ display:flex; flex-direction:column; gap:1.5rem; }
.menu-row-lists ul{ display:flex; flex-direction:column; gap:.85rem; }
.menu-row-lists li{
  display:flex; justify-content:space-between; gap:.6rem; align-items:baseline;
  font-size:.85rem; font-weight:600; color:var(--ink);
}
.menu-row-lists li span{ color:var(--ink-dim); font-weight:500; font-size:.78rem; white-space:nowrap; }

.menu-row-doodle{ display:flex; align-items:center; justify-content:center; padding-top:2.4rem; }
.menu-row-doodle img{ width:100%; max-width:230px; height:auto; }
.menu-row-doodle.spin-left img{ transform:rotate(-4deg); }
.menu-row-doodle.spin-right img{ transform:rotate(5deg); }

.menu-signature-box{
  background:var(--maroon); color:var(--bg); border-radius:22px;
  padding:2rem 1.8rem; box-shadow:0 24px 50px rgba(43,33,25,.16);
}
.menu-signature-box h3.menu-row-head{ color:var(--bg); }
.menu-signature-box .menu-row-head::after{ background:rgba(254,236,167,.28); }
.menu-signature-item{ padding:.95rem 0; border-bottom:1px dashed rgba(254,236,167,.22); }
.menu-signature-item:last-child{ border-bottom:none; padding-bottom:0; }
.menu-signature-item .row{ display:flex; justify-content:space-between; gap:1rem; align-items:baseline; }
.menu-signature-item h4{ font-family:var(--f-body); font-weight:700; font-size:.92rem; letter-spacing:.02em; text-transform:uppercase; }
.menu-signature-item .row span{ font-family:var(--f-display); font-size:1.05rem; color:var(--bg); white-space:nowrap; }
.menu-signature-item p{ font-size:.8rem; color:rgba(254,236,167,.75); margin-top:.3rem; max-width:320px; }

.menu-row-extras ul{ display:flex; flex-direction:column; gap:.85rem; }
.menu-row-extras li{
  display:flex; justify-content:space-between; gap:.6rem; align-items:baseline;
  font-size:.85rem; font-weight:600; color:var(--ink);
}
.menu-row-extras li span{ color:var(--ink-dim); font-weight:500; font-size:.78rem; white-space:nowrap; }
.menu-row-extras .extras-group,
.menu-row-lists .extras-group{ margin-bottom:1.6rem; }
.menu-row-extras .extras-group:last-child,
.menu-row-lists .extras-group:last-child{ margin-bottom:0; }
.menu-row-extras .extras-label,
.menu-row-lists .extras-label{
  display:block; font-size:.68rem; font-weight:700; letter-spacing:.1em; text-transform:uppercase;
  color:var(--olive-dark); margin-bottom:.7rem;
}

@media (max-width:1080px){
  .menu-row{ grid-template-columns:1fr 1fr; }
  .menu-row-doodle{ padding-top:0; order:5; }
  .menu-signature-box{ grid-column:1 / -1; order:3; }
  .menu-row-extras{ order:4; }
}
@media (max-width:620px){
  .menu-row{ grid-template-columns:1fr; }
  .menu-row-doodle{ order:initial; }
  .menu-signature-box{ order:initial; }
  .menu-row-extras{ order:initial; }
}

/* ---------- seasonal band ---------- */
.seasonal-band{
  background:var(--olive); padding:4.5rem 0; text-align:center; position:relative; overflow:hidden;
}
.seasonal-band-title{
  font-family:var(--f-lazydog); text-transform:uppercase; letter-spacing:0;
  font-size:clamp(2.4rem,6.5vw,4.6rem); line-height:1; color:var(--maroon-dark); margin:0 0 .6rem;
}
.seasonal-band .lead{ margin:0 auto; color:var(--maroon-dark); opacity:.85; max-width:480px; }
.seasonal-list{ max-width:640px; margin:2.6rem auto 0; text-align:left; }
.seasonal-list .menu-item{ border-bottom-color:rgba(124,40,36,.22); }
.seasonal-list .menu-item-info h4{ color:var(--maroon-dark); }
.seasonal-list .menu-item-info p{ color:rgba(124,40,36,.72); }
.seasonal-list .menu-item-price{ color:var(--maroon-dark); }
.seasonal-list .placeholder-tag{ border-color:var(--maroon-dark); color:var(--maroon-dark); background:rgba(124,40,36,.08); }

/* ---------- pastries doodle accent ---------- */
.pastries-head-row{ display:flex; align-items:center; gap:1.6rem; flex-wrap:wrap; }
.pastries-doodle{ width:120px; flex-shrink:0; }
.pastries-doodle img{ width:100%; height:auto; }

/* ---------- small decorative doodle accents (used site-wide) ---------- */
.accent-doodle{ width:112px; margin:0 auto 1.1rem; }
.accent-doodle img{ width:100%; height:auto; display:block; filter:drop-shadow(0 10px 18px rgba(43,23,15,.14)); }
.accent-doodle.rot-left img{ transform:rotate(-7deg); }
.accent-doodle.rot-right img{ transform:rotate(6deg); }

/* ---------- gallery / instagram embed (native embed.js) ---------- */
.ig-embed-native{ max-width:540px; margin:0 auto; display:flex; justify-content:center; }

.ig-embed-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:1.6rem; max-width:1240px; margin:0 auto; }
.ig-embed-grid-item{ display:flex; justify-content:center; }
.ig-embed-grid-item .instagram-media{ width:100% !important; }
@media (max-width:900px){ .ig-embed-grid{ grid-template-columns:repeat(2,1fr); gap:1.2rem; } }
@media (max-width:620px){ .ig-embed-grid{ grid-template-columns:1fr; max-width:420px; gap:1.4rem; } }

/* ---------- gallery / instagram embed ---------- */
.ig-embed-wrap{
  position:relative; min-height:560px; border-radius:26px; overflow:hidden;
  border:1px dashed var(--maroon); background:var(--surface);
}
.ig-embed-frame{ width:100%; height:560px; border:0; display:block; }
.ig-embed-placeholder{
  position:absolute; inset:0; display:flex; flex-direction:column; align-items:center; justify-content:center;
  text-align:center; padding:3rem; gap:.9rem;
}
.ig-embed-placeholder p{ max-width:480px; color:var(--ink-dim); font-size:.95rem; line-height:1.6; }
.ig-embed-placeholder b{ color:var(--maroon); }
@media (max-width:640px){
  .ig-embed-wrap{ min-height:440px; }
  .ig-embed-frame{ height:440px; }
}

/* ---------- contact page ---------- */
.contact-grid{ display:grid; grid-template-columns:1.15fr .85fr; gap:4rem; align-items:start; width:100%; }
.contact-block{ margin-top:2.6rem; padding-top:2.4rem; border-top:1px solid var(--line); }
.contact-block h3{ font-family:var(--f-display); text-transform:uppercase; font-size:1.3rem; color:var(--maroon); margin-bottom:.6rem; letter-spacing:.02em; }
.contact-block > p{ color:var(--ink-dim); margin-bottom:1rem; }
.contact-block p b{ color:var(--ink); }
.contact-block a{ color:var(--maroon); border-bottom:1px solid transparent; transition:border-color .25s var(--ease); }
.contact-block a:hover{ border-color:var(--maroon); }

.collab-form{ display:flex; flex-direction:column; gap:1.1rem; margin-top:1.6rem; }
.form-row{ display:grid; grid-template-columns:1fr 1fr; gap:1.1rem; }
.collab-form label{ display:flex; flex-direction:column; gap:.5rem; font-size:.72rem; font-weight:700; letter-spacing:.08em; text-transform:uppercase; color:var(--ink-dim); }
.collab-form input, .collab-form select, .collab-form textarea{
  font-family:var(--f-body); font-size:.95rem; color:var(--ink); background:var(--surface);
  border:1px solid var(--line); border-radius:12px; padding:12px 14px; resize:vertical;
}
.collab-form input:focus, .collab-form select:focus, .collab-form textarea:focus{ outline:none; border-color:var(--olive); }
.collab-form button{ align-self:flex-start; margin-top:.4rem; border:0; cursor:pointer; }
.form-note{ font-size:.72rem; color:var(--ink-dim); margin-top:-.2rem; }
.form-status{ font-size:.85rem; font-weight:600; margin-top:-.4rem; }

.contact-doodle img{ max-width:420px; }

.contact-hero{ padding:120px 0 100px; }
@media (max-width:900px){
  .contact-grid{ grid-template-columns:1fr; }
  .form-row{ grid-template-columns:1fr; }
  .contact-hero{ padding:70px 0 30px; }
  .contact-doodle{ margin:0 auto 0.5rem; }
  .contact-doodle img{ max-width:160px; }
}

/* ---------- site footer (centered wordmark, flanking nav, divider, social, copyright) ---------- */
footer.site-footer{
  border-top:1px solid var(--line);
  background:var(--maroon); color:var(--bg);
  padding:4.2rem 0 2.2rem;
}
footer.site-footer .wrap{ background:none; border-radius:0; padding:0 32px; box-shadow:none; }
.footer-top{
  display:flex; align-items:center; justify-content:space-between; gap:2rem;
  padding-bottom:2.4rem;
}
.footer-wordmark{
  font-family:var(--f-display); text-transform:uppercase; letter-spacing:.02em;
  font-size:clamp(2.2rem,6vw,4rem); color:var(--bg); white-space:nowrap;
}
.footer-nav{ display:flex; align-items:center; gap:2.2rem; flex:1; }
.footer-nav.footer-nav-left{ justify-content:flex-start; }
.footer-nav.footer-nav-right{ justify-content:flex-end; }
.footer-nav a{
  font-size:.8rem; font-weight:600; letter-spacing:.1em; text-transform:uppercase;
  color:rgba(254,236,167,.8); transition:color .25s var(--ease);
}
.footer-nav a:hover{ color:var(--bg); }
.footer-divider{ background:rgba(254,236,167,.25); }
.footer-social{ display:flex; justify-content:center; gap:1rem; padding:2.2rem 0; }
.footer-social a{
  width:42px; height:42px; border-radius:50%; background:var(--bg); color:var(--maroon);
  display:flex; align-items:center; justify-content:center;
  transition:transform .3s var(--ease), background .3s var(--ease), color .3s var(--ease);
}
.footer-social a svg{ width:20px; height:20px; }
.footer-social a:hover{ transform:translateY(-3px); background:var(--olive); color:var(--maroon-dark); }
.footer-bottom-line{
  display:flex; flex-direction:column; align-items:center; gap:.35rem;
  text-align:center; font-size:.78rem; color:rgba(254,236,167,.75);
}
@media (max-width:760px){
  .footer-top{ flex-direction:column; text-align:center; gap:1.3rem; }
  .footer-nav{ justify-content:center; }
}

/* ---------- lightbox ---------- */
.lightbox{
  position:fixed; inset:0; background:rgba(15,11,7,.94); z-index:2000;
  display:flex; align-items:center; justify-content:center; padding:4vw;
  opacity:0; pointer-events:none; transition:opacity .35s var(--ease);
}
.lightbox.open{ opacity:1; pointer-events:auto; }
.lightbox img{ max-height:88vh; max-width:88vw; border-radius:14px; box-shadow:0 30px 80px rgba(0,0,0,.5); }
.lightbox-close{
  position:absolute; top:28px; right:32px; width:46px; height:46px; border-radius:50%;
  background:var(--bg); color:var(--ink); border:0; font-size:1.3rem; display:flex; align-items:center; justify-content:center;
}

/* ---------- utility ---------- */
.center{ text-align:center; }
.mt-lg{ margin-top:6rem; }
.pad{ padding:6.5rem 0; }
.pad-sm{ padding:4rem 0; }
.badge-round{
  width:150px; height:150px; border-radius:50%; border:1px dashed var(--olive);
  display:flex; align-items:center; justify-content:center; text-align:center;
  font-family:var(--f-display); text-transform:uppercase; font-size:.85rem; color:var(--olive-dark);
  animation:spin 16s linear infinite; letter-spacing:.15em;
}
@keyframes spin{ to{ transform:rotate(360deg); } }

.divider{ height:1px; background:var(--line); width:100%; margin:0; }

@media (max-width:640px){
  .wrap{ padding:0 20px; }
  .pad{ padding:4rem 0; }
  .footer-cta h2{ font-size:2.6rem; }
  .hero h1{ font-size:clamp(2.3rem,11vw,3.4rem); }
  h1.hero-h{ font-size:clamp(2.1rem,10vw,3rem) !important; }
  footer .wrap{ padding:2.5rem 1.4rem 1.6rem; border-radius:20px; }
}
