/* ===== Latte & Tales — café website
   Palette (from design):
   green #415C35 · accent brown #9D682F · deep greens #3C5430 / #2C4226
   ink #20271C · #3A4434 · muted #5B6657 / #6B7464
   surfaces #FFFFFF · #F7F8F4 · cream #F4EBDD · sage #EEF2E9 · border #ECEEE6
=================================================================== */
:root{
  --green:#415C35;
  --green-deep:#3C5430;
  --green-deeper:#2C4226;
  --accent:#9D682F;
  --ink:#20271C;
  --ink-soft:#3A4434;
  --muted:#5B6657;
  --muted-2:#6B7464;
  --bg:#FFFFFF;
  --bg-soft:#F7F8F4;
  --cream:#F4EBDD;
  --sage:#EEF2E9;
  --border:#ECEEE6;
  --maxw:1200px;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  background:var(--bg);
  color:var(--ink-soft);
  font-family:'Plus Jakarta Sans',-apple-system,BlinkMacSystemFont,sans-serif;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
::selection{ background:var(--green); color:#fff; }
img{ max-width:100%; }
h1,h2,h3{ font-family:inherit; }

@keyframes blob{ 0%,100%{ transform:translate(0,0) scale(1); } 50%{ transform:translate(14px,-18px) scale(1.06); } }
@keyframes blob2{ 0%,100%{ transform:translate(0,0) scale(1); } 50%{ transform:translate(-16px,12px) scale(1.08); } }
@keyframes floaty{ 0%,100%{ transform:translateY(0); } 50%{ transform:translateY(-9px); } }

/* ---------- shared bits ---------- */
.section-title{
  font-weight:800; color:var(--ink); line-height:1.1; letter-spacing:-.02em;
  font-size:clamp(28px,4.2vw,46px); margin:0 0 18px;
}
.section-title--light{ color:#fff; }
.muted{ font-size:16px; line-height:1.7; color:var(--muted); margin:0 0 16px; }
.accent{ color:var(--accent); }
.eyebrow{ font-size:11px; font-weight:700; text-transform:uppercase; letter-spacing:.08em; color:var(--accent); }

.eyebrow-pill{
  display:inline-block; font-size:12.5px; font-weight:700; letter-spacing:.06em;
  text-transform:uppercase; padding:6px 13px; border-radius:999px; margin-bottom:14px;
}
.eyebrow-pill--brown{ color:var(--accent); background:var(--cream); }
.eyebrow-pill--white{ color:var(--accent); background:#fff; }
.eyebrow-pill--ghost{ color:#C9D9BD; background:rgba(255,255,255,.10); }

.btn{
  font-family:inherit; font-weight:700; font-size:15.5px; cursor:pointer;
  text-decoration:none; border:none; border-radius:14px; padding:15px 28px;
  display:inline-flex; align-items:center; gap:8px; line-height:1; transition:transform .2s ease, box-shadow .2s ease;
}
.btn--accent{ background:var(--accent); color:#fff; box-shadow:0 12px 26px -10px rgba(157,104,47,.65); }
.btn--accent:hover{ transform:translateY(-2px); box-shadow:0 16px 30px -10px rgba(157,104,47,.7); }
.btn--outline{ background:#fff; color:var(--green); border:1.5px solid #CFD8C6; padding:13.5px 26px; }
.btn--outline:hover{ border-color:var(--green); }

.dot{ width:9px; height:9px; border-radius:50%; display:inline-block; flex:none; }

/* ---------- NAV ---------- */
.nav{
  position:fixed; top:0; left:0; right:0; z-index:70;
  display:flex; align-items:center; justify-content:space-between;
  padding:12px clamp(16px,5vw,72px);
  transition:background .35s ease, box-shadow .35s ease, backdrop-filter .35s ease;
}
.nav.scrolled{
  background:rgba(255,255,255,.92);
  box-shadow:0 1px 18px -6px rgba(32,39,28,.18);
  backdrop-filter:saturate(150%) blur(12px);
  -webkit-backdrop-filter:saturate(150%) blur(12px);
}
.nav__logo{ display:flex; align-items:center; gap:10px; text-decoration:none; }
.nav__logo img{ height:clamp(40px,7vw,52px); width:auto; display:block; }
.nav__links{ display:flex; align-items:center; gap:clamp(16px,2.4vw,34px); }
.nav__links > a{ text-decoration:none; color:var(--ink-soft); font-size:15px; font-weight:600; }
.nav__links > a:hover{ color:var(--accent); }

.order{ position:relative; }
.order__toggle{ font-size:15px; padding:12px 24px; }
.order__caret{ font-size:10px; opacity:.8; }
.order__menu{
  position:absolute; right:0; top:calc(100% + 10px);
  background:#fff; border:1px solid var(--border); border-radius:18px;
  box-shadow:0 26px 54px -22px rgba(32,39,28,.4);
  padding:8px; width:216px; display:flex; flex-direction:column; gap:2px;
}
.order__menu[hidden]{ display:none; }
.order__menu a{
  text-decoration:none; display:flex; align-items:center; gap:11px;
  padding:12px 13px; border-radius:12px; color:var(--ink); font-weight:600; font-size:14.5px;
}
.order__menu a:hover{ background:var(--bg-soft); }

.nav__burger{
  display:none; background:#fff; border:1px solid var(--border); border-radius:12px;
  width:46px; height:46px; flex-direction:column; align-items:center; justify-content:center; gap:4.5px;
  cursor:pointer; box-shadow:0 6px 16px -10px rgba(32,39,28,.3);
}
.nav__burger span{ width:19px; height:2px; background:var(--ink); border-radius:2px; }

.mobile-panel{
  position:fixed; top:72px; left:12px; right:12px; z-index:69;
  background:#fff; border:1px solid var(--border); border-radius:22px;
  box-shadow:0 30px 60px -20px rgba(32,39,28,.35);
  padding:14px; display:flex; flex-direction:column; gap:4px;
}
.mobile-panel[hidden]{ display:none; }
.mobile-panel a{ text-decoration:none; color:var(--ink); font-size:17px; font-weight:600; padding:13px 14px; border-radius:12px; }
.mobile-panel a:hover{ background:var(--bg-soft); }
.mobile-panel__divider{ height:1px; background:var(--border); margin:6px 4px; }
.mobile-panel__cta{ text-align:center; background:var(--accent); color:#fff !important; font-weight:700; font-size:16px; padding:14px !important; border-radius:14px; }

/* ---------- HERO ---------- */
.hero{
  position:relative; overflow:hidden; background:var(--bg);
  padding:clamp(96px,14vw,132px) clamp(16px,5vw,72px) clamp(40px,6vw,72px);
}
.blob{ position:absolute; border-radius:50%; pointer-events:none; }
.blob--green{ top:-120px; right:-80px; width:520px; height:520px;
  background:radial-gradient(circle at 50% 50%, rgba(65,92,53,.13), rgba(65,92,53,0) 70%); animation:blob 14s ease-in-out infinite; }
.blob--brown{ bottom:-140px; left:-100px; width:460px; height:460px;
  background:radial-gradient(circle at 50% 50%, rgba(157,104,47,.12), rgba(157,104,47,0) 70%); animation:blob2 17s ease-in-out infinite; }

.hero__inner{
  position:relative; max-width:1200px; margin:0 auto;
  display:grid; grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
  gap:clamp(34px,5vw,64px); align-items:center;
}
.pill{ display:inline-flex; align-items:center; gap:8px; padding:7px 14px 7px 11px; border-radius:999px; font-size:13px; font-weight:700; margin-bottom:22px; }
.pill--green{ background:var(--sage); color:var(--green); }
.hero__title{ font-weight:800; color:var(--ink); line-height:1.04; letter-spacing:-.02em; font-size:clamp(38px,6.2vw,68px); margin:0 0 18px; }
.hero__lead{ font-size:clamp(16px,1.6vw,18.5px); line-height:1.6; color:var(--muted); max-width:44ch; margin:0 0 28px; }
.hero__actions{ display:flex; flex-wrap:wrap; gap:12px; align-items:center; }
.hero__facts{ display:flex; flex-wrap:wrap; gap:9px 22px; margin-top:30px; }
.fact{ display:inline-flex; align-items:center; gap:8px; font-size:13.5px; color:var(--muted-2); font-weight:600; }

.hero__media{ position:relative; min-height:380px; }
.hero__photo{ position:relative; width:88%; margin:0 auto; aspect-ratio:4/4.6; border-radius:28px; overflow:hidden; box-shadow:0 40px 80px -30px rgba(32,39,28,.4); }
.hero__photo img{ width:100%; height:100%; object-fit:cover; display:block; }
.hero__badge{ position:absolute; }
.hero__badge--open{ left:-2%; top:8%; background:var(--green); color:#fff; padding:11px 16px; border-radius:14px; box-shadow:0 16px 34px -14px rgba(65,92,53,.7); display:flex; align-items:center; gap:8px; font-size:13px; font-weight:700; }
.live-dot{ width:7px; height:7px; border-radius:50%; background:#A7E08A; box-shadow:0 0 0 4px rgba(167,224,138,.25); }
.hero__badge--menu{ right:-2%; bottom:10%; background:#fff; padding:13px 16px; border-radius:16px; box-shadow:0 18px 38px -16px rgba(32,39,28,.32); max-width:185px; }
.hero__badge-title{ font-size:14px; font-weight:600; color:var(--ink); line-height:1.35; margin-top:3px; }
.floaty{ animation:floaty 5.5s ease-in-out infinite; }

/* ---------- HIGHLIGHTS ---------- */
.highlights{ background:var(--bg-soft); padding:clamp(30px,4vw,44px) clamp(16px,5vw,72px); }
.highlights__grid{ max-width:var(--maxw); margin:0 auto; display:grid; grid-template-columns:repeat(auto-fit,minmax(220px,1fr)); gap:16px; }
.highlight{ display:flex; align-items:center; gap:14px; background:#fff; border:1px solid var(--border); border-radius:18px; padding:16px 18px; }
.highlight__icon{ flex:none; width:44px; height:44px; border-radius:13px; display:flex; align-items:center; justify-content:center; }
.highlight__icon--green{ background:var(--sage); color:var(--green); }
.highlight__icon--brown{ background:var(--cream); color:var(--accent); }
.highlight__title{ font-weight:700; color:var(--ink); font-size:15px; }
.highlight__sub{ font-size:13px; color:var(--muted-2); }

/* ---------- STORY ---------- */
.story{ padding:clamp(64px,8vw,108px) clamp(16px,5vw,72px); background:var(--bg); }
.story__inner{ max-width:1160px; margin:0 auto; display:grid; grid-template-columns:repeat(auto-fit,minmax(300px,1fr)); gap:clamp(36px,5vw,72px); align-items:center; }
.story__media{ position:relative; }
.story__photo{ aspect-ratio:5/6; border-radius:26px; overflow:hidden; box-shadow:0 30px 60px -28px rgba(32,39,28,.4); }
.story__photo img{ width:100%; height:100%; object-fit:cover; display:block; }
.story__stat{ position:absolute; right:-12px; bottom:-16px; background:var(--green); color:#fff; border-radius:20px; padding:18px 22px; max-width:220px; box-shadow:0 22px 44px -18px rgba(65,92,53,.6); }
.story__stat-num{ font-size:34px; font-weight:800; line-height:1; }
.story__stat-text{ font-size:12.5px; line-height:1.45; margin-top:5px; color:rgba(255,255,255,.9); }
.story__quote{ background:var(--sage); border:1px solid #DCE5D3; border-radius:18px; padding:18px 20px; margin:22px 0; display:flex; gap:14px; align-items:flex-start; }
.story__quote-icon{ flex:none; width:38px; height:38px; border-radius:11px; background:var(--green); color:#fff; display:flex; align-items:center; justify-content:center; }
.story__quote-label{ font-size:12px; font-weight:800; letter-spacing:.04em; text-transform:uppercase; color:var(--green); margin-bottom:5px; }
.story__quote-text{ margin:0; font-size:14.5px; line-height:1.6; color:var(--ink-soft); }

/* ---------- MENU ---------- */
.menu{ padding:clamp(64px,8vw,104px) clamp(16px,5vw,72px); background:var(--bg-soft); }
.menu__inner{ max-width:var(--maxw); margin:0 auto; }
.menu__head{ text-align:center; max-width:620px; margin:0 auto 38px; }
.menu__head .muted{ color:var(--muted-2); line-height:1.6; }
.menu__tabs{ display:flex; flex-wrap:wrap; justify-content:center; gap:10px; margin-bottom:34px; }
.tab{
  font-family:inherit; font-size:14px; font-weight:700; padding:11px 20px; border-radius:999px;
  cursor:pointer; border:1.5px solid #DCE0D5; background:#fff; color:var(--muted);
  transition:all .22s ease; white-space:nowrap;
}
.tab:hover{ border-color:var(--green); color:var(--green); }
.tab.is-active{ border-color:var(--green); background:var(--green); color:#fff; box-shadow:0 8px 18px -10px rgba(65,92,53,.7); }

.menu__grid{ display:grid; grid-template-columns:repeat(auto-fill,minmax(244px,1fr)); gap:20px; }
.dish{ background:#fff; border-radius:22px; border:1px solid var(--border); overflow:hidden; display:flex; flex-direction:column;
  box-shadow:0 6px 18px -10px rgba(32,39,28,.12); transition:transform .35s cubic-bezier(.2,.7,.2,1), box-shadow .35s ease; }
.dish:hover{ transform:translateY(-6px); box-shadow:0 24px 46px -18px rgba(32,39,28,.26); }
.dish__img{ aspect-ratio:4/3; overflow:hidden; }
.dish__img img{ width:100%; height:100%; object-fit:cover; display:block; transition:transform .6s cubic-bezier(.2,.7,.2,1); }
.dish:hover .dish__img img{ transform:scale(1.06); }
.dish__body{ padding:15px 16px 17px; }
.dish__cat{ display:inline-block; font-size:10.5px; font-weight:700; letter-spacing:.05em; text-transform:uppercase; color:var(--green); background:var(--sage); padding:4px 10px; border-radius:999px; margin-bottom:9px; }
.dish__name{ font-weight:700; color:var(--ink); font-size:17.5px; line-height:1.2; margin:0 0 5px; }
.dish__desc{ margin:0; font-size:13.5px; line-height:1.5; color:var(--muted-2); }

/* ---------- EXPERIENCE ---------- */
.experience{ padding:clamp(64px,8vw,108px) clamp(16px,5vw,72px); background:var(--green-deep); }
.experience__inner{ max-width:var(--maxw); margin:0 auto; }
.experience__head{ max-width:640px; margin-bottom:42px; }
.experience__lead{ font-size:16px; line-height:1.65; color:rgba(255,255,255,.72); margin:0; }
.experience__lead em{ color:#fff; font-style:italic; }
.experience__feature{ display:grid; grid-template-columns:repeat(auto-fit,minmax(300px,1fr)); gap:18px; margin-bottom:18px; }
.exp-photo{ position:relative; min-height:280px; border-radius:24px; overflow:hidden; box-shadow:0 28px 56px -28px rgba(0,0,0,.5); }
.exp-photo img{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; }
.exp-photo__overlay{ position:absolute; inset:0; background:linear-gradient(to top, rgba(20,28,15,.85), rgba(20,28,15,.04) 65%); }
.exp-photo__caption{ position:absolute; left:24px; right:24px; bottom:22px; }
.exp-photo__caption h3{ font-weight:700; color:#fff; font-size:24px; margin:0 0 5px; }
.exp-photo__caption p{ margin:0; font-size:14px; line-height:1.55; color:rgba(255,255,255,.82); }
.exp-library{ background:var(--accent); border-radius:24px; padding:28px; color:#fff; display:flex; flex-direction:column; justify-content:space-between; min-height:280px; }
.exp-library__icon{ width:48px; height:48px; border-radius:14px; background:rgba(255,255,255,.16); display:flex; align-items:center; justify-content:center; }
.exp-library h3{ font-weight:700; font-size:25px; margin:0 0 8px; }
.exp-library p{ margin:0; font-size:14.5px; line-height:1.6; color:rgba(255,255,255,.9); }

.experience__cards{ display:grid; grid-template-columns:repeat(auto-fit,minmax(220px,1fr)); gap:18px; }
.exp-card{ border-radius:22px; padding:24px; min-height:184px; display:flex; flex-direction:column; justify-content:space-between; }
.exp-card--glass{ background:rgba(255,255,255,.07); border:1px solid rgba(255,255,255,.12); }
.exp-card--mint{ background:var(--sage); }
.exp-card__icon{ width:44px; height:44px; border-radius:13px; background:rgba(255,255,255,.10); display:flex; align-items:center; justify-content:center; }
.exp-card__icon--solid{ background:var(--green); }
.exp-card h3{ font-weight:700; color:#fff; font-size:19px; margin:0 0 5px; }
.exp-card p{ margin:0; font-size:13.5px; line-height:1.55; color:rgba(255,255,255,.66); }
.exp-card h3.dark{ color:var(--ink); }
.exp-card p.dark-sub{ color:var(--muted); }

/* ---------- EVENTS ---------- */
.events{ padding:clamp(56px,7vw,96px) clamp(16px,5vw,72px); background:var(--bg); }
.events__card{ max-width:1160px; margin:0 auto; background:var(--cream); border-radius:30px; padding:clamp(28px,4vw,52px);
  display:grid; grid-template-columns:repeat(auto-fit,minmax(290px,1fr)); gap:clamp(28px,4vw,52px); align-items:center; }
.events__copy .section-title{ font-size:clamp(26px,3.8vw,42px); line-height:1.12; margin:0 0 14px; }
.events__lead{ font-size:16px; line-height:1.65; color:#6B5E4D; margin:0 0 24px; max-width:46ch; }
.events__photos{ display:grid; grid-template-columns:1fr 1fr; gap:14px; }
.events__photo{ aspect-ratio:3/4; border-radius:18px; overflow:hidden; box-shadow:0 20px 40px -22px rgba(32,39,28,.4); }
.events__photo img{ width:100%; height:100%; object-fit:cover; display:block; }
.events__photo--offset{ margin-top:22px; }

/* ---------- GALLERY ---------- */
.gallery{ padding:clamp(56px,7vw,96px) clamp(16px,5vw,72px); background:var(--bg-soft); }
.gallery__inner{ max-width:var(--maxw); margin:0 auto; }
.gallery__head{ display:flex; flex-wrap:wrap; align-items:flex-end; justify-content:space-between; gap:14px; margin-bottom:30px; }
.gallery__head .section-title{ font-size:clamp(26px,3.8vw,44px); margin:0; }
.gallery__hint{ font-size:13.5px; color:var(--muted-2); font-weight:600; }
.gallery__masonry{ columns:4 220px; column-gap:16px; }
.gallery__item{ break-inside:avoid; margin-bottom:16px; border-radius:18px; overflow:hidden; cursor:pointer; box-shadow:0 14px 30px -18px rgba(32,39,28,.36); }
.gallery__item img{ width:100%; display:block; transition:opacity .3s ease, transform .5s ease; }
.gallery__item:hover img{ opacity:.93; transform:scale(1.03); }

/* ---------- VISIT ---------- */
.visit{ padding:clamp(64px,8vw,108px) clamp(16px,5vw,72px); background:var(--green-deeper); }
.visit__inner{ max-width:var(--maxw); margin:0 auto; display:grid; grid-template-columns:repeat(auto-fit,minmax(300px,1fr)); gap:clamp(32px,5vw,56px); }
.visit__copy .section-title{ margin:0 0 28px; }
.visit__rows{ display:flex; flex-direction:column; gap:14px; max-width:440px; }
.visit__row{ display:flex; gap:15px; align-items:flex-start; background:rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.10); border-radius:16px; padding:16px 18px; text-decoration:none; }
.visit__row--link{ align-items:center; }
.visit__icon{ flex:none; width:40px; height:40px; border-radius:12px; background:rgba(255,255,255,.10); color:#C9D9BD; display:flex; align-items:center; justify-content:center; }
.visit__label{ font-weight:700; color:#fff; font-size:14.5px; margin-bottom:3px; }
.visit__val{ color:rgba(255,255,255,.72); font-size:14.5px; line-height:1.5; }
.visit .mint{ color:#C9D9BD; }
.visit__links{ display:flex; flex-wrap:wrap; gap:10px; margin-top:26px; }
.chip{ text-decoration:none; display:inline-flex; align-items:center; gap:8px; padding:13px 22px; border-radius:14px; color:#fff; font-weight:700; font-size:14.5px; }
.chip--ghost{ background:transparent !important; border:1.5px solid rgba(255,255,255,.28); }
.visit__map{ min-height:380px; border-radius:24px; overflow:hidden; box-shadow:0 30px 60px -28px rgba(0,0,0,.5); border:1px solid rgba(255,255,255,.10); }
.visit__map iframe{ width:100%; height:100%; min-height:380px; border:0; display:block; }

/* ---------- FOOTER ---------- */
.footer{ background:var(--bg-soft); padding:48px clamp(16px,5vw,72px) 36px; border-top:1px solid var(--border); }
.footer__inner{ max-width:var(--maxw); margin:0 auto; display:flex; flex-wrap:wrap; gap:30px; justify-content:space-between; align-items:flex-start; }
.footer__brand{ max-width:330px; }
.footer__brand img{ height:64px; width:auto; display:block; margin-bottom:14px; }
.footer__brand p{ font-size:14px; line-height:1.6; color:var(--muted-2); margin:0; }
.footer__cols{ display:flex; gap:48px; flex-wrap:wrap; }
.footer__col{ display:flex; flex-direction:column; gap:11px; }
.footer__head{ font-size:11px; font-weight:800; letter-spacing:.08em; text-transform:uppercase; color:var(--accent); margin-bottom:2px; }
.footer__col a{ text-decoration:none; color:var(--muted); font-size:14.5px; font-weight:500; }
.footer__col a:hover{ color:var(--accent); }
.footer__bar{ max-width:var(--maxw); margin:32px auto 0; padding-top:20px; border-top:1px solid var(--border); display:flex; flex-wrap:wrap; gap:10px; justify-content:space-between; }
.footer__bar span{ font-size:12.5px; color:#97A08C; }

/* ---------- LIGHTBOX ---------- */
.lightbox{ position:fixed; inset:0; z-index:90; background:rgba(20,28,15,.9); backdrop-filter:blur(6px);
  display:flex; align-items:center; justify-content:center; padding:5vw; cursor:zoom-out; }
.lightbox[hidden]{ display:none; }
.lightbox img{ max-width:92vw; max-height:88vh; border-radius:16px; box-shadow:0 40px 90px -30px rgba(0,0,0,.7); }

/* ---------- reveal-on-scroll ---------- */
.reveal{ opacity:0; transform:translateY(24px); transition:opacity .8s ease, transform .8s cubic-bezier(.2,.7,.2,1); }
.reveal.is-visible{ opacity:1; transform:none; }

/* ---------- responsive ---------- */
@media (max-width:820px){
  .nav__links{ display:none; }
  .nav__burger{ display:flex; }
  .gallery__masonry{ columns:2 160px; }
}
@media (min-width:821px){
  .mobile-panel{ display:none !important; }
}
@media (prefers-reduced-motion:reduce){
  *{ animation:none !important; }
  html{ scroll-behavior:auto; }
  .reveal{ opacity:1; transform:none; }
}
