/* Chicory Row — Six AM Counter
   Scene: the counter at six in the morning, one bulb over it, everything else
   still dark. The room is roasted-dark; the light is butter yellow and it only
   falls on things you can act on.
   Rules: nothing on this page has a hard corner — it's a room of cups, saucers,
   tins and shoulders. Every raised surface gets the same deep dual shadow, so
   the warm things genuinely sit above the dark. */

:root{
  --room:#2A1D16;        /* the dark room */
  --counter:#3B2A21;     /* the counter top */
  --shelf:#4A362B;
  --butter:#F2D08A;      /* the bulb. the only thing you can act on. */
  --fig:#7B4B57;
  --cream:#F7F1E6;
  --cream-76:rgba(247,241,230,.78);
  --cream-50:rgba(247,241,230,.52);

  --display:'Bricolage Grotesque',system-ui,sans-serif;
  --body:'Karla',system-ui,sans-serif;
  --page:1180px;
  --pad:clamp(20px,5vw,72px);

  --lift:0 30px 70px rgba(0,0,0,.42), 0 3px 10px rgba(0,0,0,.24);
  --lift-sm:0 14px 32px rgba(0,0,0,.3), 0 2px 6px rgba(0,0,0,.2);
}

*,*::before,*::after{ box-sizing:border-box; }

body{
  margin:0; background:var(--room); color:var(--cream);
  font-family:var(--body); font-size:clamp(16px,1.05vw,17.5px); line-height:1.6;
  -webkit-font-smoothing:antialiased;
}
h1,h2,h3{ font-family:var(--display); font-weight:800; margin:0; line-height:.98; letter-spacing:-.035em; }
a{ color:inherit; }
/* height:auto is required: the width/height attributes on every <img> would
   otherwise beat aspect-ratio and render images at their intrinsic height. */
img,svg{ max-width:100%; height:auto; }
:focus-visible{ outline:3px solid var(--butter); outline-offset:3px; }

.label{ font-family:var(--body); font-weight:700; font-size:11.5px; letter-spacing:.18em; text-transform:uppercase; color:var(--butter); margin:0 0 14px; }

/* ---- controls: full pill, butter, nothing else is butter */
.btn{
  display:inline-block; cursor:pointer; text-decoration:none; text-align:center;
  background:var(--butter); color:var(--room); border:2px solid var(--butter); border-radius:999px;
  padding:14px 30px;
  font-family:var(--body); font-weight:700; font-size:15.5px;
  box-shadow:var(--lift-sm);
  transition:transform .18s cubic-bezier(.2,.8,.3,1.1), box-shadow .18s ease;
}
.btn:hover{ transform:translateY(-3px); box-shadow:var(--lift); }
.btn-sm{ padding:10px 20px; font-size:14px; }
.btn-line{ background:transparent; color:var(--cream); border-color:rgba(247,241,230,.3); box-shadow:none; }
.btn-line:hover{ border-color:var(--butter); color:var(--butter); box-shadow:none; }

/* ---- nav */
.nav{ max-width:var(--page); margin:0 auto; padding:20px var(--pad); display:flex; align-items:center; gap:22px; }
.brand{ display:flex; align-items:center; gap:10px; font-family:var(--display); font-weight:800; font-size:21px; letter-spacing:-.04em; text-decoration:none; }
.mark{ width:27px; height:27px; color:var(--butter); }
.links{ display:flex; gap:26px; margin-left:auto; }
.links a{ font-size:15px; font-weight:500; text-decoration:none; color:var(--cream-76); }
.links a:hover{ color:var(--butter); }
@media (max-width:800px){ .links{ display:none; } .nav .btn-sm{ margin-left:auto; } }

/* ---- hero */
.hero{
  max-width:var(--page); margin:0 auto;
  padding:clamp(26px,4vw,56px) var(--pad) clamp(44px,6vw,76px);
  display:grid; grid-template-columns:1.28fr .72fr; gap:clamp(30px,5vw,64px); align-items:center;
}
@media (max-width:880px){ .hero{ grid-template-columns:1fr; } }
.kicker{ font-weight:700; font-size:12px; letter-spacing:.16em; text-transform:uppercase; color:var(--fig); margin:0 0 20px; }
.hero h1{ font-size:clamp(40px,5.6vw,84px); margin-bottom:24px; text-wrap:balance; }
.hero .lede{ font-size:clamp(17px,1.5vw,20.5px); color:var(--cream-76); max-width:42ch; margin:0 0 32px; }
.hero-btns{ display:flex; flex-wrap:wrap; gap:12px; }
.hero-art img{
  width:100%; max-width:420px; aspect-ratio:1/1; object-fit:cover; display:block;
  margin-inline:auto;
  border-radius:50%;              /* a circle, not the arch 999px was producing */
  box-shadow:var(--lift);
}

.steam{ opacity:.85; }
@media (prefers-reduced-motion:no-preference){
  .steam{ animation:rise 3.4s ease-in-out infinite; }
  .s2{ animation-delay:.5s; } .s3{ animation-delay:1s; }
}
@keyframes rise{ 0%,100%{ transform:translateY(0); opacity:.5; } 50%{ transform:translateY(-7px); opacity:.95; } }

/* ---- the open sign: a pill, because everything here is */
.strip{ max-width:var(--page); margin:0 auto clamp(20px,3vw,40px); padding:0 var(--pad); }
.strip p{
  margin:0; padding:16px 32px; border-radius:999px;
  background:var(--fig); color:var(--cream); font-size:15.5px;
  box-shadow:var(--lift-sm);
}
.strip strong{ color:var(--butter); }

/* ---- sections */
.section{ max-width:var(--page); margin:0 auto; padding:clamp(50px,6.5vw,96px) var(--pad); }
.section--tint{ max-width:none; background:var(--counter); border-radius:60px; margin-inline:clamp(10px,2vw,26px); }
.section--tint > *{ max-width:var(--page); margin-inline:auto; }
.head{ max-width:48ch; margin-bottom:clamp(28px,4vw,48px); }
.head h2{ font-size:clamp(32px,4.6vw,62px); }
.head .sub{ color:var(--cream-76); margin:16px 0 0; }

/* ---- menu: each line is a raised pill on the counter */
.menu{ display:grid; grid-template-columns:1fr 1fr; gap:clamp(28px,4vw,56px); }
@media (max-width:760px){ .menu{ grid-template-columns:1fr; } }
.menu-col h3{ font-size:27px; color:var(--butter); margin-bottom:20px; padding-left:26px; }
.menu ul{ list-style:none; padding:0; margin:0; display:grid; gap:8px; }
.menu li{
  display:flex; align-items:baseline; gap:14px;
  padding:15px 26px; border-radius:999px;
  background:var(--counter); box-shadow:var(--lift-sm);
}
.section--tint .menu li{ background:var(--shelf); }
.js-reveal .menu li.in{ animation:riseIn .5s ease both; }
@keyframes riseIn{ from{ opacity:0; transform:translateY(10px); } to{ opacity:1; transform:none; } }
.it{ flex:1; }
.pr{ font-weight:700; color:var(--butter); font-variant-numeric:tabular-nums; }

/* ---- story */
.story,.visit{ display:grid; grid-template-columns:1fr 1fr; gap:clamp(30px,5vw,68px); align-items:center; }
@media (max-width:860px){ .story,.visit{ grid-template-columns:1fr; } }
.story h2{ font-size:clamp(30px,4vw,52px); }
.prose p{ margin:0 0 18px; color:var(--cream-76); max-width:52ch; }
.prose p:last-child{ margin-bottom:0; }

/* ---- visit */
.visit h2{ font-size:clamp(32px,4.4vw,58px); margin-bottom:30px; }
.info{ display:grid; grid-template-columns:auto 1fr; gap:16px 28px; margin:0; }
.info dt{ font-weight:700; font-size:11.5px; letter-spacing:.16em; text-transform:uppercase; color:var(--butter); padding-top:5px; }
.info dd{ margin:0; color:var(--cream-76); }
.map img{ width:100%; aspect-ratio:3/2; object-fit:cover; display:block; border-radius:40px; box-shadow:var(--lift); }

/* ---- footer */
.foot{ max-width:var(--page); margin:0 auto; padding:clamp(44px,5.5vw,72px) var(--pad); color:var(--cream-76); font-size:15.5px; }
.foot p{ margin:0 0 8px; }
.foot-brand{ font-family:var(--display); font-weight:800; font-size:30px; color:var(--cream); letter-spacing:-.04em; }
.fine{ margin-top:22px; font-size:12.5px; color:var(--cream-50); line-height:1.75; max-width:62ch; }

/* ---- demo tag */
.demo-tag{
  position:fixed; right:16px; bottom:16px; z-index:60;
  display:flex; flex-direction:column; gap:1px;
  background:var(--butter); color:var(--room);
  padding:11px 20px; border-radius:999px; text-decoration:none; text-align:center;
  font-size:11px; letter-spacing:.05em; line-height:1.5;
  box-shadow:var(--lift);
}
.demo-tag span{ opacity:.7; text-transform:uppercase; font-size:9.5px; letter-spacing:.14em; }
.demo-tag strong{ font-weight:700; font-size:12px; }
.demo-tag:hover{ background:var(--cream); }
