/* ==========================================================================
   She'Brews Coffee Co.
   Palette   — Bubblegum #F6AFCB · Hot Sauce #E31C6B · Saddle Cream #FBF1E1
               Espresso #3C2A22 · Turquoise Fizz #1FC0B8 · Cherry Pop #FF5A45
   Type      — Baloo 2 (display) · Rye (western accent) · Work Sans (body)
   Signature — Boot Cup scroll-snap rail with a color wash tied to each cup
   ========================================================================== */

:root{
  --bubblegum:#F6AFCB;
  --bubblegum-deep:#EE8FB6;
  --hot-sauce:#E31C6B;
  --cream:#FBF1E1;
  --cream-deep:#F3E4CC;
  --espresso:#3C2A22;
  --espresso-soft:#6B5347;
  --turquoise:#1FC0B8;
  --cherry:#FF5A45;
  --gold:#FFC93C;
  --white:#FFFFFF;

  --font-display:'Baloo 2', sans-serif;
  --font-western:'Rye', serif;
  --font-body:'Work Sans', sans-serif;

  --cowprint-tan: #C99A6E;

  --radius-lg:32px;
  --radius-md:20px;
  --radius-sm:12px;
  --radius-pill:999px;

  --shadow-soft: 0 20px 45px -20px rgba(60, 42, 34, 0.35);
  --shadow-pop: 0 12px 0 0 var(--espresso);

  --container: 1240px;
  --edge: clamp(24px, 5vw, 64px);

  --ease: cubic-bezier(.16,.84,.44,1);
}

*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *, *::before, *::after{ animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

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

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

.skip-link{
  position:absolute; left:-999px; top:0; background:var(--hot-sauce); color:var(--white);
  padding:12px 20px; z-index:999; border-radius:0 0 10px 0; font-weight:600;
}
.skip-link:focus{ left:0; }

:focus-visible{ outline: 3px solid var(--hot-sauce); outline-offset: 3px; }

/* ---------- Type helpers ---------- */
.eyebrow{
  font-family: var(--font-western);
  font-size: clamp(0.95rem, 1.4vw, 1.15rem);
  letter-spacing: 0.06em;
  color: var(--hot-sauce);
  margin: 0 0 14px;
}
.eyebrow--western{ color: var(--hot-sauce); }
.eyebrow--on-cream{ color: var(--hot-sauce); }

.section-heading{
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2rem, 4.4vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--espresso);
}
.section-heading--light{ color: var(--cream); }

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  font-family: var(--font-body); font-weight:600; font-size:1rem;
  padding: 16px 30px; border-radius: var(--radius-pill);
  border: 2px solid transparent; transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
  white-space: nowrap; position:relative; overflow:visible;
}
.btn--primary{ background: var(--hot-sauce); color: var(--white); box-shadow: 0 6px 0 0 #a5124b; }
.btn--primary:hover{ transform: translateY(-3px); box-shadow: 0 9px 0 0 #a5124b; }
.btn--primary:active{ transform: translateY(2px); box-shadow: 0 3px 0 0 #a5124b; }

.btn--ghost{ background:transparent; color: var(--espresso); border-color: var(--espresso); }
.btn--ghost:hover{ background: var(--espresso); color: var(--cream); }

.btn--outline{ background:transparent; color: var(--cream); border-color: var(--cream); }
.btn--outline:hover{ background: var(--cream); color: var(--espresso); }

.btn--full{ width:100%; }

/* ==========================================================================
   NAV
   ========================================================================== */
.nav{
  position: sticky; top:0; z-index: 200;
  background: rgba(251,241,225,0.88);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid rgba(60,42,34,0.08);
}
.nav::after{
  content:''; position:absolute; left:0; right:0; bottom:0; height:3px;
  background: linear-gradient(90deg, var(--hot-sauce), var(--gold), var(--turquoise), var(--cherry), var(--bubblegum-deep));
}
.nav__inner{
  max-width: var(--container); margin: 0 auto; padding: 14px var(--edge);
  display:flex; align-items:center; gap: 28px;
}
.nav__brand{ display:flex; align-items:center; gap:10px; margin-right:auto; }
.nav__badge{ width:42px; height:42px; border-radius:50%; object-fit:cover; box-shadow: 0 0 0 3px var(--bubblegum); }
.nav__wordmark{ font-family: var(--font-display); font-weight:700; font-size:1.3rem; color: var(--hot-sauce); }

.nav__links{ display:flex; gap:26px; font-weight:600; font-size:0.98rem; }
.nav__links a{ position:relative; padding: 4px 0; }
.nav__links a::after{
  content:''; position:absolute; left:0; bottom:-2px; width:0; height:2px; background: var(--hot-sauce);
  transition: width .25s var(--ease);
}
.nav__links a:hover::after{ width:100%; }

.nav__cta{
  background: var(--espresso); color: var(--cream); font-weight:600; padding:10px 22px;
  border-radius: var(--radius-pill); font-size:0.95rem; transition: background .2s;
}
.nav__cta:hover{ background: var(--hot-sauce); }

.nav__burger{ display:none; background:none; border:none; padding:8px; flex-direction:column; gap:5px; }
.nav__burger span{ width:24px; height:2px; background: var(--espresso); border-radius:2px; }

.mobile-menu{
  display:none; flex-direction:column; padding: 8px var(--edge) 20px; gap: 4px;
  background: var(--cream); border-bottom: 2px solid rgba(60,42,34,0.08);
}
.mobile-menu a{ padding: 12px 0; font-weight:600; border-bottom:1px solid rgba(60,42,34,0.08); }
.mobile-menu__cta{ color: var(--hot-sauce); }
.mobile-menu.is-open{ display:flex; }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero{
  position:relative; overflow:hidden;
  background:
    radial-gradient(90% 70% at 88% -6%, var(--bubblegum) 0%, transparent 52%),
    radial-gradient(75% 65% at 4% 104%, rgba(31,192,184,0.4) 0%, transparent 58%),
    radial-gradient(60% 50% at 50% 40%, rgba(255,201,60,0.12) 0%, transparent 60%),
    var(--cream);
  padding: clamp(50px, 8vw, 90px) 0 0;
}
.hero__inner{
  max-width: var(--container); margin:0 auto; padding: 0 var(--edge);
  display:grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(30px,5vw,60px);
  align-items:center;
}
.hero__copy{ position:relative; z-index:2; }
.hero__headline{
  font-family: var(--font-display); font-weight:600; font-size: clamp(2.6rem, 6vw, 4.6rem);
  line-height: 0.98; letter-spacing:-0.01em; color: var(--espresso);
}
.hero__headline-accent{ color: var(--hot-sauce); }
.hero__sub{
  margin-top: 22px; font-size: clamp(1.02rem, 1.4vw, 1.2rem); max-width: 46ch;
  color: var(--espresso-soft); line-height:1.6;
}
.hero__actions{ display:flex; gap:16px; margin-top: 34px; flex-wrap:wrap; }

.hero__visual{ position:relative; }
.hero__photo-frame{
  border-radius: var(--radius-lg); overflow:hidden; transform: rotate(3deg);
  box-shadow: var(--shadow-soft); border: 8px solid var(--white);
  transition: transform .1s linear;
  will-change: transform;
}
.hero__photo{ width:100%; height:auto; display:block; }

.fizz-bubble{
  position:fixed; z-index:9999; pointer-events:none; border-radius:50%;
  animation: fizzUp .9s ease-out forwards;
}
@keyframes fizzUp{
  0%{ transform: translate(0,0) scale(1); opacity:.9; }
  100%{ transform: var(--fizz-end) scale(.3); opacity:0; }
}

.hero__floater{
  position:absolute; border-radius:50%; overflow:hidden; box-shadow: 0 12px 30px -8px rgba(60,42,34,.45);
  border: 5px solid var(--white); z-index:3;
}
.hero__floater--badge{ width: 108px; height:108px; right:-18px; top:18px; animation: float 5s ease-in-out infinite; }
.hero__floater--badge img{ width:100%; height:100%; object-fit:cover; }

.hero__polaroid{
  position:absolute; left:-54px; bottom:-46px; width: 168px; z-index:3;
  background: var(--white); padding: 10px 10px 34px; border-radius: 6px;
  box-shadow: 0 18px 34px -14px rgba(60,42,34,.5); transform: rotate(-9deg);
}
.hero__polaroid img{ border-radius:2px; width:100%; aspect-ratio: 4/5; object-fit:cover; }
.hero__polaroid-cap{
  position:absolute; bottom:8px; left:0; right:0; text-align:center;
  font-family: var(--font-western); font-size:0.85rem; color: var(--espresso);
}

@keyframes float{ 0%,100%{ transform: translateY(0) rotate(-6deg);} 50%{ transform: translateY(-14px) rotate(2deg);} }

/* ==========================================================================
   MARQUEE
   ========================================================================== */
.marquee{
  background: var(--espresso); color: var(--cream); overflow:hidden;
  padding: 16px 0; white-space:nowrap; border-top: 4px solid var(--hot-sauce); border-bottom: 4px solid var(--hot-sauce);
}
.marquee__track{
  display:inline-flex; align-items:center; gap: 18px;
  font-family: var(--font-western); font-size: clamp(1.1rem, 2vw, 1.5rem); letter-spacing:0.03em;
  animation: marquee 32s linear infinite;
  padding-left: 100%;
}
.marquee__dot{ color: var(--hot-sauce); }
.mq-1{ color: var(--gold); }
.mq-2{ color: var(--turquoise); }
.mq-3{ color: var(--bubblegum); }
.mq-4{ color: var(--cherry); }

@keyframes marquee{ from{ transform: translateX(0);} to{ transform: translateX(-50%);} }

/* ==========================================================================
   STORY
   ========================================================================== */
.story{ padding: clamp(70px,10vw,130px) 0; }
.story__inner{
  max-width: var(--container); margin:0 auto; padding:0 var(--edge);
  display:grid; grid-template-columns: 0.75fr 1.25fr; gap: clamp(40px,6vw,90px); align-items:start;
}
.story__visual{ text-align:center; position:sticky; top:110px; }
.story__badge-card{
  background: var(--white); border-radius: var(--radius-lg); padding: 30px;
  box-shadow: var(--shadow-soft); display:inline-block; transform: rotate(-4deg);
}
.story__badge-card img{ width: 100%; max-width:280px; border-radius: var(--radius-md); }
.story__caption{ margin-top:22px; font-family: var(--font-western); color: var(--hot-sauce); font-size:1.1rem; }

.story__photo-card{
  background: var(--white); padding: 10px 10px 30px; border-radius: 6px;
  box-shadow: 0 18px 34px -14px rgba(60,42,34,.5); display:inline-block;
  transform: rotate(4deg); margin: -34px 0 0 52px; position:relative; max-width: 168px;
}
.story__photo-card img{ width:100%; border-radius:2px; aspect-ratio: 4/5; object-fit:cover; display:block; }
.story__photo-cap{
  position:absolute; bottom:8px; left:0; right:0; text-align:center;
  font-family: var(--font-western); font-size:0.8rem; color: var(--espresso);
}

.story__headline{ margin-bottom: 36px; }

.story__narrative p{
  font-size: 1.08rem; line-height:1.75; color: var(--espresso-soft); margin-top:22px; max-width:58ch;
}
.story__narrative p:first-child{ margin-top:0; }

.story__beat{
  font-family: var(--font-display); font-weight:600; color: var(--hot-sauce);
  font-size: clamp(1.35rem, 2.4vw, 1.75rem); line-height:1.4;
  margin-top: 42px !important; margin-bottom: 6px;
}
.story__beat--short{ font-size: clamp(1.6rem, 3vw, 2.2rem); }

.story__close{
  font-size: 1.15rem; line-height:1.7; color: var(--espresso); margin-top: 42px !important;
  padding-top: 32px; border-top: 2px solid rgba(60,42,34,0.12);
}
.story__close strong{ color: var(--hot-sauce); font-family: var(--font-display); font-weight:600; font-size:1.3rem; }

.menu__ticket{
  margin: 32px auto 0; max-width: 420px; background: var(--white);
  padding: 22px 26px; border-radius: 6px; transform: rotate(-1deg);
  box-shadow: var(--shadow-soft);
  background-image: repeating-linear-gradient(to bottom, transparent 0 30px, rgba(60,42,34,0.08) 30px 31px);
  position:relative;
}
.menu__ticket::before, .menu__ticket::after{
  content:''; position:absolute; left:0; right:0; height:14px; background: var(--bubblegum);
  border-radius: 50%; transform: scaleX(1.06);
}
.menu__ticket::before{ top:-7px; }
.menu__ticket::after{ bottom:-7px; }
.menu__ticket-row{
  font-family: var(--font-western); font-size:1.02rem; color: var(--espresso);
  display:flex; align-items:baseline; gap:14px; padding: 6px 0; justify-content:center;
}
.menu__ticket-row span{ color: var(--hot-sauce); font-size:1.3rem; min-width: 2.4ch; }

/* ==========================================================================
   PRESS
   ========================================================================== */
.press{ padding: 50px 0; background: var(--espresso); }
.press__inner{ max-width: 620px; margin: 0 auto; padding: 0 var(--edge); text-align:center; }
.press__eyebrow{ font-family: var(--font-western); color: var(--gold); font-size:1rem; margin-bottom:10px; }
.press__pub{ font-family: var(--font-display); font-weight:700; color: var(--cream); font-size: clamp(1.5rem, 3vw, 2rem); }
.press__desc{ color: var(--cream); opacity:0.8; margin-top:10px; font-size:1rem; line-height:1.5; }
.press__link{
  display:inline-block; margin-top:18px; color: var(--gold); font-weight:600; font-size:0.95rem;
  border-bottom: 2px solid var(--gold); padding-bottom:2px; transition: opacity .2s;
}
.press__link:hover{ opacity:0.7; }

/* ==========================================================================
   MENU
   ========================================================================== */
.menu{
  background:
    radial-gradient(circle at 8% 20%, var(--bubblegum-deep) 0 34px, transparent 35px),
    radial-gradient(circle at 32% 68%, var(--bubblegum-deep) 0 24px, transparent 25px),
    radial-gradient(circle at 62% 12%, var(--bubblegum-deep) 0 28px, transparent 29px),
    radial-gradient(circle at 85% 55%, var(--bubblegum-deep) 0 20px, transparent 21px),
    radial-gradient(circle at 46% 40%, var(--bubblegum-deep) 0 16px, transparent 17px),
    radial-gradient(circle at 18% 85%, var(--bubblegum-deep) 0 22px, transparent 23px),
    var(--bubblegum);
  background-size: 480px 480px;
  padding: clamp(70px,10vw,130px) 0; position:relative;
}
.menu__header{ max-width: var(--container); margin: 0 auto; padding: 0 var(--edge) 40px; text-align:center; }
.menu__header .section-heading{ color: var(--espresso); }
.menu__sugarfree{
  display:inline-block; margin: 18px auto 0; background: var(--white); color: var(--espresso);
  font-weight:600; font-size:0.92rem; padding: 10px 22px; border-radius: var(--radius-pill);
  box-shadow: var(--shadow-soft);
}

.menu__tabs{
  max-width: var(--container); margin: 0 auto; padding: 0 var(--edge);
  display:flex; gap:12px; justify-content:center; flex-wrap:wrap; margin-bottom: 46px;
}
.menu__tab{
  background: var(--cream); border:3px solid var(--espresso); color: var(--espresso);
  font-weight:700; padding: 12px 26px; border-radius: var(--radius-pill); font-size:1rem;
  transition: transform .2s var(--ease), background .2s var(--ease), color .2s var(--ease);
  transform: rotate(-2deg);
}
.menu__tab:nth-child(2){ transform: rotate(1.5deg); }
.menu__tab:nth-child(3){ transform: rotate(-1.5deg); }
.menu__tab:nth-child(4){ transform: rotate(2deg); }
.menu__tab:nth-child(5){ transform: rotate(-1deg); }
.menu__tab:nth-child(6){ transform: rotate(1.5deg); }
.menu__tab:hover{ transform: rotate(0deg) translateY(-2px); }
.menu__tab.is-active{ transform: rotate(0deg) translateY(-2px); color: var(--white); box-shadow: var(--shadow-soft); }
.menu__tab--soda.is-active{ background: var(--cherry); border-color: var(--cherry); }
.menu__tab--coffee.is-active{ background: var(--espresso); border-color: var(--espresso); }
.menu__tab--matcha.is-active{ background: var(--turquoise); border-color: var(--turquoise); }
.menu__tab--lemonade.is-active{ background: var(--gold); border-color: var(--gold); color: var(--espresso); }
.menu__tab--energy.is-active{ background: var(--hot-sauce); border-color: var(--hot-sauce); }
.menu__tab--greentea.is-active{ background: var(--bubblegum-deep); border-color: var(--bubblegum-deep); }

.menu__panels{ max-width: 980px; margin:0 auto; padding: 0 var(--edge); }
.menu__panel{ display:grid; grid-template-columns: 280px 1fr; gap: clamp(24px,4vw,50px); align-items:start; }
.menu__panel-photo{ border-radius: var(--radius-lg); overflow:hidden; box-shadow: var(--shadow-soft); position:sticky; top:110px; border: 5px solid var(--white); }
.menu__panel-photo img{ width:100%; aspect-ratio: 4/5; object-fit:cover; }
.menu__panel-photo--soda{ box-shadow: 0 20px 45px -20px rgba(255,90,69,.55); }
.menu__panel-photo--coffee{ box-shadow: 0 20px 45px -20px rgba(60,42,34,.55); }
.menu__panel-photo--matcha{ box-shadow: 0 20px 45px -20px rgba(31,192,184,.55); }
.menu__panel-photo--lemonade{ box-shadow: 0 20px 45px -20px rgba(255,201,60,.55); }
.menu__panel-photo--energy{ box-shadow: 0 20px 45px -20px rgba(227,28,107,.55); }
.menu__panel-photo--greentea{ box-shadow: 0 20px 45px -20px rgba(238,143,182,.55); }
.menu__panel-price{
  font-family: var(--font-western); color: var(--hot-sauce); font-size:1.2rem; margin-bottom: 26px;
}
.menu__note{ font-size:0.85rem; color: var(--espresso-soft); margin: -16px 0 26px; font-style:italic; }
.menu__subhead{
  font-family: var(--font-western); color: var(--hot-sauce); font-size:1rem;
  margin: 30px 0 16px; padding-top: 22px; border-top: 2px dashed rgba(60,42,34,0.18);
  display:flex; align-items:baseline; justify-content:space-between; flex-wrap:wrap; gap:8px;
}
.menu__subhead span{ font-family: var(--font-body); font-weight:600; font-size:0.85rem; color: var(--espresso-soft); }
.menu__list{ display:grid; grid-template-columns: 1fr 1fr; gap: 14px 22px; }
.menu__list--simple{ grid-template-columns: 1fr; }

.menu__item{
  background: var(--cream); padding: 18px 22px;
  border: 3px solid var(--espresso); transition: transform .2s var(--ease), background .2s var(--ease);
  border-radius: 22px 8px 22px 8px;
}
.menu__list > .menu__item:nth-child(even){ border-radius: 8px 22px 8px 22px; }
.menu__item:hover{ transform: translate(-4px,-4px); background: var(--white); }
.menu__item-head{ display:flex; align-items:center; gap:10px; flex-wrap:wrap; }
.menu__item h3{ font-family: var(--font-display); font-weight:600; font-size:1.15rem; color: var(--espresso); }
.menu__item p{ margin-top:6px; font-size:0.92rem; color: var(--espresso-soft); line-height:1.5; }
.menu__badge{
  font-family: var(--font-body); font-size:0.68rem; font-weight:700; text-transform:uppercase; letter-spacing:0.04em;
  background: var(--hot-sauce); color: var(--white); padding: 4px 10px; border-radius: var(--radius-pill);
}
.menu__badge--top{ background: var(--gold); color: var(--espresso); }

/* ==========================================================================
   FALL MENU (LIMITED TIME)
   ========================================================================== */
.fallmenu{ background: var(--espresso); padding: clamp(70px,10vw,130px) 0; }
.fallmenu__inner{ max-width: var(--container); margin:0 auto; padding:0 var(--edge); }
.fallmenu__header{ text-align:center; max-width:620px; margin:0 auto 54px; }
.fallmenu__sub{ color: var(--cream-deep); margin-top:14px; font-size:1rem; line-height:1.5; }
.fallmenu__group{ margin-top:50px; }
.fallmenu__group:first-of-type{ margin-top:0; }
.fallmenu__group-title{
  font-family: var(--font-western); color: var(--bubblegum); font-size:1.6rem;
  margin: 0 0 20px; letter-spacing:.02em;
}
.fallmenu__item{ background: rgba(255,255,255,0.06); }
.fallmenu__item:hover{ background: rgba(255,255,255,0.1); transform: translate(-4px,-4px); }
.fallmenu__item h3{ color: var(--cream); }
.fallmenu__item p{ color: var(--cream-deep); }

/* ==========================================================================
   TREATS / AÇAÍ
   ========================================================================== */
.treats{ padding: clamp(70px,10vw,130px) 0; background: var(--cream); }
.treats__inner{
  max-width: var(--container); margin:0 auto; padding: 0 var(--edge);
  display:grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(40px,6vw,90px); align-items:center;
}
.treats__visual{ text-align:center; }
.treats__photo-card{
  background: var(--white); border-radius: var(--radius-lg); padding: 16px;
  box-shadow: var(--shadow-soft); display:inline-block; transform: rotate(-3deg);
  max-width: 340px;
}
.treats__photo-card img{ width:100%; border-radius: var(--radius-md); aspect-ratio: 4/5; object-fit:cover; display:block; }
.treats__text{ margin-top:18px; font-size:1.08rem; line-height:1.6; color: var(--espresso-soft); max-width:48ch; }
.treats__drizzle{ margin-top:30px; }
.treats__drizzle-label{
  font-family: var(--font-western); color: var(--hot-sauce); font-size:1rem; margin-bottom:12px;
}
.treats__drizzle-list{ display:flex; gap:12px; flex-wrap:wrap; }
.treats__drizzle-list li{
  background: var(--white); border: 2px solid var(--espresso); color: var(--espresso);
  font-weight:600; font-size:0.92rem; padding: 8px 18px; border-radius: var(--radius-pill);
}

/* ==========================================================================
   BOOT CUPS — signature
   ========================================================================== */
.boots{
  padding: clamp(70px,10vw,130px) 0; text-align:center;
  background: linear-gradient(180deg, rgba(var(--wash),0.9), rgba(var(--wash),0.55) 60%, var(--espresso) 100%);
  transition: background 0.6s var(--ease);
  color: var(--cream);
}
.boots__header{ max-width: 720px; margin: 0 auto; padding: 0 var(--edge) 50px; }
.boots__sub{ margin-top:18px; font-size:1.08rem; line-height:1.6; opacity:0.92; }
.boots__status{
  display:inline-block; margin-top:20px; font-family: var(--font-western); font-size:0.98rem;
  padding: 10px 24px; border-radius: var(--radius-pill); background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.35);
}
.boots__status--out{ color: var(--gold); }
.boots__status--in{ color: var(--cream); }

.boots__rail-wrap{ padding: 0 var(--edge); position:relative; }
.boots__arrow{
  position:absolute; top:50%; translate: 0 -50%; z-index:5;
  width:52px; height:52px; border-radius:50%; border:none;
  background: var(--cream); color: var(--espresso); font-size:1.8rem; line-height:1;
  display:flex; align-items:center; justify-content:center;
  box-shadow: 0 10px 24px -10px rgba(0,0,0,.5);
  transition: transform .2s var(--ease), background .2s var(--ease);
}
.boots__arrow:hover{ transform: translateY(-50%) scale(1.08); background: var(--hot-sauce); color: var(--white); }
.boots__arrow--prev{ left: calc(var(--edge) + 4px); }
.boots__arrow--next{ right: calc(var(--edge) + 4px); }
.boots__rail{
  display:flex; gap: 26px; overflow-x:auto; scroll-snap-type: x mandatory;
  padding: 10px calc(50vw - 160px) 30px; -webkit-overflow-scrolling:touch;
  scrollbar-width: none; cursor: grab;
}
.boots__rail::-webkit-scrollbar{ display:none; }
.boots__slide{
  flex: 0 0 auto; width: 300px; scroll-snap-align:center;
  background: rgba(255,255,255,0.08); border-radius: var(--radius-lg); padding: 18px;
  backdrop-filter: blur(6px);
}
.boots__slide img{ border-radius: var(--radius-md); width:100%; aspect-ratio: 3/4; object-fit:cover; }
.boots__slide-cap{ margin-top:14px; font-family: var(--font-western); font-size:1.05rem; }

.boots__dots{ display:flex; gap:12px; justify-content:center; margin-top:14px; }
.boots__dots button{
  width:9px; height:9px; padding:0; border-radius:50%; border:none; background: rgba(255,255,255,0.35);
  transition: background .2s, transform .2s;
}
.boots__dots button.is-active{ background: var(--cream); transform: scale(1.3); }

/* ==========================================================================
   GALLERY
   ========================================================================== */
.gallery{ padding: clamp(70px,10vw,130px) 0; }
.gallery__header{ max-width: var(--container); margin:0 auto; padding:0 var(--edge) 44px; text-align:center; }
.gallery__grid{
  max-width: var(--container); margin:0 auto; padding: 0 var(--edge);
  display:grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; gap: 18px;
}
.gallery__item{ border-radius: var(--radius-md); overflow:hidden; grid-column: span 1; grid-row: span 1; }
.gallery__item--tall{ grid-row: span 2; }
.gallery__item--wide{ grid-column: span 2; }
.gallery__item img{ width:100%; height:100%; object-fit:cover; transition: transform .5s var(--ease); }
.gallery__item:hover img{ transform: scale(1.06); }

/* ==========================================================================
   FIND US
   ========================================================================== */
.findus{ background: var(--espresso); color: var(--cream); padding: clamp(70px,10vw,120px) 0; text-align:center; }
.findus__inner{ max-width: 700px; margin:0 auto; padding: 0 var(--edge); }
.findus__inner .section-heading{ color: var(--cream); }
.findus__text{ margin-top:18px; font-size:1.08rem; line-height:1.6; opacity:0.9; }
.findus__actions{ display:flex; gap:16px; justify-content:center; margin-top:34px; flex-wrap:wrap; }
.findus__note{ margin-top:18px; font-size:0.82rem; opacity:0.55; }

/* ==========================================================================
   CONTACT
   ========================================================================== */
.contact{
  background: linear-gradient(160deg, var(--bubblegum) 0%, var(--cream) 60%);
  color: var(--espresso); padding: clamp(70px,10vw,130px) 0;
}
.contact__inner{
  max-width: var(--container); margin:0 auto; padding: 0 var(--edge);
  display:grid; grid-template-columns: 1fr 1fr; gap: clamp(30px,6vw,80px); align-items:start;
}
.contact__text{ margin-top:18px; font-size:1.08rem; line-height:1.6; color: var(--espresso-soft); max-width:40ch; }

.contact__form{ background: var(--white); border-radius: var(--radius-lg); padding: clamp(26px,4vw,40px); box-shadow: var(--shadow-soft); }
.hp-field{ position:absolute; left:-9999px; }
.field{ margin-bottom:18px; }
.field label{ display:block; font-weight:600; font-size:0.92rem; margin-bottom:8px; color: var(--espresso); }
.field input, .field textarea{
  width:100%; border: 2px solid rgba(60,42,34,0.25); border-radius: var(--radius-sm); padding: 13px 16px;
  font-family: var(--font-body); font-size:1rem; background: var(--white); color: var(--espresso); resize:vertical;
  transition: border-color .2s;
}
.field input:focus, .field textarea:focus{ border-color: var(--hot-sauce); outline:none; }
.contact__success{ margin-top:16px; font-weight:600; color: var(--espresso); text-align:center; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer{ background: var(--espresso); color: var(--cream); padding-top: 60px; position:relative; }
.footer__inner{
  max-width: var(--container); margin:0 auto; padding: 0 var(--edge) 40px;
  display:flex; justify-content:space-between; align-items:flex-start; gap:30px; flex-wrap:wrap;
}
.footer__brand{ display:flex; align-items:center; gap:14px; }
.footer__badge{ width:52px; height:52px; border-radius:50%; object-fit:cover; }
.footer__tagline{ font-family: var(--font-display); font-weight:600; font-size:1.05rem; }
.footer__links{ display:flex; gap:20px; flex-wrap:wrap; font-weight:600; font-size:0.92rem; opacity:0.85; }
.footer__social{ display:flex; gap:20px; font-weight:600; font-size:0.92rem; opacity:0.85; }
.footer__cowprint{
  height: 26px; width:100%;
  background-image: radial-gradient(circle at 20% 50%, var(--cream) 0 6px, transparent 7px),
                     radial-gradient(circle at 55% 30%, var(--cream) 0 5px, transparent 6px),
                     radial-gradient(circle at 80% 60%, var(--cream) 0 7px, transparent 8px);
  background-size: 140px 26px; background-repeat: repeat-x; opacity:0.12;
}
.footer__legal{ text-align:center; font-size:0.82rem; padding: 18px var(--edge) 26px; opacity:0.6; }

/* ==========================================================================
   CURSOR DOT
   ========================================================================== */
.cursor-dot{
  position:fixed; width:16px; height:16px; background: var(--hot-sauce);
  pointer-events:none; z-index:999; transform: translate(-50%,-50%) rotate(-45deg);
  border-radius: 60% 60% 60% 0%;
  transition: left .09s linear, top .09s linear, width .2s var(--ease), height .2s var(--ease), background .2s var(--ease);
  display:none;
}
@media (hover:hover) and (pointer:fine){ .cursor-dot{ display:block; } }
.cursor-dot.is-active{ width:36px; height:36px; background: var(--turquoise); }

/* ==========================================================================
   REVEAL ON SCROLL
   ========================================================================== */
.reveal{ opacity:0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-visible{ opacity:1; transform:none; }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 900px){
  .nav__links, .nav__cta{ display:none; }
  .nav__burger{ display:flex; }

  .hero__inner{ grid-template-columns: 1fr; }
  .hero__visual{ order:-1; max-width: 380px; margin: 0 auto; padding: 0 30px 40px 40px; }
  .hero__floater--badge{ width:76px; height:76px; right:-6px; top:8px; }
  .hero__polaroid{ width: 128px; left:-30px; bottom:-30px; }

  .story__inner{ grid-template-columns: 1fr; text-align:center; }
  .story__visual{ position:static; }
  .story__narrative p, .story__close{ margin-left:auto; margin-right:auto; }
  .story__photo-card{ display:block; margin: -20px auto 0; max-width:150px; }
  .menu__ticket{ margin-left:auto; margin-right:auto; }

  .menu__panel{ grid-template-columns: 1fr; }
  .menu__panel-photo{ position:static; max-width: 260px; margin: 0 auto; }
  .menu__list{ grid-template-columns: 1fr; }

  .treats__inner{ grid-template-columns: 1fr; text-align:center; }
  .treats__text{ margin-left:auto; margin-right:auto; }
  .treats__drizzle-list{ justify-content:center; }

  .gallery__grid{ grid-template-columns: repeat(2, 1fr); grid-auto-rows: 170px; }
  .gallery__item--wide{ grid-column: span 2; }
  .gallery__item--tall{ grid-row: span 2; }

  .contact__inner{ grid-template-columns: 1fr; }
}

@media (max-width: 560px){
  .hero__actions{ flex-direction:column; }
  .hero__actions .btn{ width:100%; }
  .boots__rail{ padding-left: calc(50vw - 130px); padding-right: calc(50vw - 130px); }
  .boots__slide{ width: 260px; }
  .boots__arrow{ display:none; }
  .footer__inner{ flex-direction:column; }
}
