
:root{
  --ink:#181818;
  --paper:#fffaf5;
  --pink:#f5c5cc;
  --pink-strong:#f18ca3;
  --cream:#f4e7d6;
  --cone:#b89571;
  --green:#254735;
  --yellow:#f6d95c;
  --border:rgba(24,24,24,.13);
  --radius:28px;
  --shadow:0 24px 80px rgba(20,20,20,.14);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  background:var(--paper);
  color:var(--ink);
  font-family:Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height:1.5;
  overflow-x:hidden;
}
img{display:block;width:100%;height:auto}
a{color:inherit;text-decoration:none}
button{font:inherit}
::selection{background:var(--pink);color:var(--ink)}
.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}
.section-pad{padding:110px clamp(24px,6vw,96px)}
.eyebrow{
  margin:0 0 18px;
  font-size:.78rem;
  font-weight:800;
  letter-spacing:.16em;
  text-transform:uppercase;
}
h1,h2,h3,p{margin-top:0}
h1,h2,h3{
  font-family:Georgia, "Times New Roman", serif;
  letter-spacing:-.045em;
}
h1{font-size:clamp(4rem,9vw,9rem);line-height:.84;margin-bottom:28px}
h2{font-size:clamp(3.1rem,6vw,6.6rem);line-height:.93;margin-bottom:24px}
h3{font-size:clamp(2rem,3.4vw,3.5rem);line-height:1}
em{font-weight:400;color:var(--pink-strong)}
.button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:54px;
  padding:0 24px;
  border:2px solid var(--ink);
  border-radius:999px;
  font-weight:800;
  transition:.2s ease;
}
.button:hover{transform:translateY(-2px)}
.button-dark{background:var(--ink);color:white}
.button-dark:hover{background:#303030}
.button-light{background:rgba(255,255,255,.9)}
.button-pink{background:var(--pink);color:var(--ink)}
.text-link{font-weight:800;text-decoration:underline;text-underline-offset:4px}

.site-header{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  z-index:50;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  padding:14px clamp(18px,4vw,56px);
  background:rgba(255,250,245,.92);
  backdrop-filter:blur(18px);
  border-bottom:1px solid rgba(24,24,24,.08);
}
.brand{display:block;width:82px}
.brand img{mix-blend-mode:multiply}
.site-nav{display:flex;align-items:center;gap:28px;font-weight:750}
.site-nav a:not(.nav-cta){position:relative}
.site-nav a:not(.nav-cta)::after{
  content:"";position:absolute;left:0;bottom:-5px;width:0;height:2px;background:var(--ink);transition:.2s
}
.site-nav a:hover::after{width:100%}
.nav-cta{padding:11px 18px;border-radius:999px;background:var(--ink);color:#fff}
.menu-toggle{display:none;background:none;border:0;width:42px;height:42px;padding:8px}
.menu-toggle span:not(.sr-only){display:block;height:2px;background:var(--ink);margin:6px 0}

.hero{
  position:relative;
  min-height:94vh;
  margin-top:88px;
  display:grid;
  align-items:end;
  overflow:hidden;
  background:#d7b7a3;
}
.hero-media,.hero-overlay{position:absolute;inset:0}
.hero-media img{width:100%;height:100%;object-fit:cover;object-position:center 53%}
.hero-overlay{background:linear-gradient(90deg,rgba(0,0,0,.68) 0%,rgba(0,0,0,.3) 50%,rgba(0,0,0,.06) 100%)}
.hero-copy{
  position:relative;
  z-index:2;
  max-width:1050px;
  padding:70px clamp(24px,6vw,96px) 80px;
  color:white;
}
.hero-copy .eyebrow{color:#fff}
.hero h1 span{color:var(--pink)}
.hero-lede{font-size:clamp(1rem,1.4vw,1.28rem);max-width:650px;margin-bottom:32px}
.hero-actions{display:flex;gap:12px;flex-wrap:wrap}
.hero .button-light{color:var(--ink)}
.hero-sticker{
  position:absolute;
  right:6vw;
  bottom:7vw;
  z-index:3;
  width:120px;height:120px;
  display:grid;place-items:center;
  border-radius:50%;
  background:var(--pink);
  border:2px solid var(--ink);
  font-size:4rem;
  transform:rotate(8deg);
  box-shadow:var(--shadow);
}

.ticker{overflow:hidden;background:var(--ink);color:white;border-top:1px solid #333;border-bottom:1px solid #333}
.ticker-track{
  display:flex;align-items:center;gap:26px;
  width:max-content;
  padding:16px 0;
  font-weight:900;letter-spacing:.06em;
  animation:ticker 26s linear infinite;
}
.ticker-track span{white-space:nowrap}
.ticker-track i{font-style:normal;color:var(--pink)}
@keyframes ticker{to{transform:translateX(-50%)}}

.intro{display:grid;grid-template-columns:1.15fr .85fr;gap:7vw;align-items:end}
.intro-copy h2{margin-bottom:0}
.intro-text{font-size:clamp(1.1rem,1.5vw,1.4rem);max-width:650px}
.intro-text p:last-child{margin-bottom:0}

.feature-grid{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  grid-template-rows:minmax(360px,41vw) minmax(360px,41vw);
  gap:16px;
  padding:0 clamp(16px,2vw,30px);
}
.feature-card{position:relative;overflow:hidden;border-radius:var(--radius);min-height:380px;background:#222}
.feature-tall{grid-row:1/3}
.feature-card img{width:100%;height:100%;object-fit:cover;transition:transform .5s ease}
.feature-card:hover img{transform:scale(1.025)}
.feature-shade{position:absolute;inset:0;background:linear-gradient(180deg,transparent 25%,rgba(0,0,0,.72) 100%)}
.feature-copy{position:absolute;left:0;right:0;bottom:0;padding:34px;color:white}
.feature-copy p{font-size:.75rem;font-weight:900;letter-spacing:.15em;text-transform:uppercase;margin-bottom:8px}
.feature-copy h3{margin-bottom:10px}
.feature-copy span{font-size:1rem;max-width:550px;display:block}

.menu-section{background:var(--pink)}
.section-heading{max-width:900px;margin-bottom:55px}
.section-heading>p:last-child{max-width:680px;font-size:1.2rem}
.menu-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:16px}
.menu-panel{
  background:var(--paper);
  border:2px solid var(--ink);
  border-radius:24px;
  padding:28px;
  box-shadow:8px 8px 0 var(--ink);
}
.menu-panel-top{display:flex;align-items:flex-start;justify-content:space-between;gap:20px;border-bottom:1px solid var(--border);padding-bottom:18px;margin-bottom:18px}
.menu-number{font-weight:900;font-size:.8rem}
.menu-panel h3{font-size:2.15rem;margin:0}
.price-list{list-style:none;padding:0;margin:0}
.price-list li{display:flex;justify-content:space-between;gap:16px;padding:8px 0;border-bottom:1px dashed rgba(24,24,24,.15)}
.price-list strong{white-space:nowrap}
.menu-note{font-size:.85rem;opacity:.65;margin:16px 0 0}
.menu-panel .text-link{display:inline-block;margin-top:16px}
.menu-footer{
  margin-top:24px;
  padding:34px;
  border-radius:24px;
  background:var(--ink);
  color:white;
  display:flex;justify-content:space-between;align-items:center;gap:30px;
}
.menu-footer>div{max-width:780px}
.menu-footer h3{font-size:2.3rem;margin-bottom:10px}
.menu-footer p:last-child{margin-bottom:0;opacity:.8}
.menu-footer .button-dark{background:white;color:var(--ink);border-color:white;white-space:nowrap}

.lemonade-section{
  display:grid;grid-template-columns:1fr 1fr;
  min-height:720px;
  background:var(--yellow);
}
.lemonade-photo{min-height:650px}
.lemonade-photo img{width:100%;height:100%;object-fit:cover}
.lemonade-copy{display:flex;flex-direction:column;justify-content:center;padding:80px clamp(28px,7vw,110px)}
.lemonade-copy p:not(.eyebrow){font-size:1.25rem;max-width:600px}
.ingredient-line{display:flex;align-items:center;gap:10px;flex-wrap:wrap;margin:20px 0 32px;font-weight:900;text-transform:uppercase;letter-spacing:.08em}
.ingredient-line i{font-style:normal;color:#8d7022}

.experience{background:#f8eee6}
.experience-grid{
  display:grid;
  grid-template-columns:1.5fr .9fr;
  grid-template-rows:minmax(320px,36vw) minmax(240px,25vw);
  gap:16px;
}
.experience-grid figure{margin:0;border-radius:var(--radius);overflow:hidden}
.experience-grid img{width:100%;height:100%;object-fit:cover}
.experience-main{grid-row:1/3}
.experience-quote{
  background:var(--green);
  color:white;
  border-radius:var(--radius);
  padding:40px;
  display:flex;flex-direction:column;justify-content:flex-end
}
.quote-mark{font-family:Georgia,serif;font-size:6rem;line-height:.6;color:var(--pink)}
.experience-quote p{font-family:Georgia,serif;font-size:clamp(2rem,3.5vw,4rem);line-height:1;margin:24px 0}
.experience-quote>span:last-child{font-weight:800;letter-spacing:.08em;text-transform:uppercase;font-size:.8rem}

.gallery-section{background:var(--ink);color:white;padding-bottom:40px}
.gallery-heading{padding-bottom:55px}
.gallery-track{
  display:grid;
  grid-template-columns:repeat(6,minmax(260px,1fr));
  gap:12px;
  overflow-x:auto;
  padding:0 20px 30px;
  scroll-snap-type:x mandatory;
}
.gallery-track figure{margin:0;min-width:260px;aspect-ratio:4/5;border-radius:22px;overflow:hidden;scroll-snap-align:center}
.gallery-track img{width:100%;height:100%;object-fit:cover}

.hours{background:var(--cream)}
.hours-card{
  display:grid;grid-template-columns:1fr 1fr;
  background:var(--paper);
  border:2px solid var(--ink);
  border-radius:32px;
  overflow:hidden;
  box-shadow:12px 12px 0 var(--ink);
}
.hours-left{padding:60px;border-right:2px solid var(--ink)}
.location-copy{font-size:1.25rem;margin-bottom:32px}
.hours-list{padding:40px 60px}
.hours-list>div{display:flex;justify-content:space-between;gap:20px;padding:15px 0;border-bottom:1px solid var(--border);font-size:1.1rem}
.hours-list p{font-size:.8rem;opacity:.6;margin:18px 0 0}

.social-strip{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  min-height:620px;
  background:var(--pink);
}
.social-strip img{width:100%;height:100%;object-fit:cover}
.social-copy{display:flex;flex-direction:column;justify-content:center;padding:70px clamp(24px,7vw,100px)}
.social-copy>span{font-weight:900;text-transform:uppercase;letter-spacing:.1em}
.social-copy h2{margin:18px 0 30px}
.social-copy a{font-weight:900;font-size:1.1rem;text-decoration:underline;text-underline-offset:5px}

footer{
  background:var(--ink);
  color:white;
  padding:46px clamp(24px,6vw,90px);
  display:grid;
  grid-template-columns:auto 1fr auto;
  align-items:center;
  gap:40px;
}
.footer-brand{width:110px;background:white;border-radius:50%;padding:8px}
.footer-links{display:flex;justify-content:center;gap:26px;flex-wrap:wrap;font-weight:800}
footer>p{margin:0;font-size:.82rem;opacity:.7}

.reveal{opacity:0;transform:translateY(26px);transition:opacity .7s ease,transform .7s ease}
.reveal.visible{opacity:1;transform:none}

@media (max-width: 980px){
  .site-nav{
    position:absolute;top:100%;left:0;right:0;
    display:none;flex-direction:column;align-items:stretch;
    background:var(--paper);padding:24px;border-bottom:1px solid var(--border)
  }
  .site-nav.open{display:flex}
  .menu-toggle{display:block}
  .hero{min-height:820px}
  .hero-overlay{background:linear-gradient(180deg,rgba(0,0,0,.15),rgba(0,0,0,.7))}
  .hero-copy{padding-bottom:55px}
  .hero-sticker{width:86px;height:86px;font-size:2.8rem}
  .intro{grid-template-columns:1fr;gap:30px}
  .menu-grid{grid-template-columns:repeat(2,1fr)}
  .lemonade-section{grid-template-columns:1fr}
  .lemonade-photo{height:70vh;min-height:520px}
  .experience-grid{grid-template-columns:1fr;grid-template-rows:auto}
  .experience-main{grid-row:auto;height:65vh}
  .experience-side{height:55vh}
  .experience-quote{min-height:320px}
  .hours-card{grid-template-columns:1fr}
  .hours-left{border-right:0;border-bottom:2px solid var(--ink)}
  .social-strip{grid-template-columns:1fr}
  .social-strip img{height:70vh}
  footer{grid-template-columns:1fr;text-align:center}
  .footer-brand{margin:auto}
}

@media (max-width: 680px){
  .section-pad{padding:78px 20px}
  .brand{width:70px}
  .hero{margin-top:78px;min-height:720px}
  .hero-copy{padding:50px 20px}
  .hero h1{font-size:clamp(3.5rem,18vw,5.8rem)}
  .hero-lede{font-size:1rem}
  .hero-sticker{display:none}
  .ticker-track{font-size:.85rem}
  .feature-grid{grid-template-columns:1fr;grid-template-rows:auto;padding:0 10px}
  .feature-tall{grid-row:auto}
  .feature-card{height:65vh;min-height:480px}
  .menu-grid{grid-template-columns:1fr}
  .menu-panel{box-shadow:6px 6px 0 var(--ink)}
  .menu-footer{flex-direction:column;align-items:flex-start}
  .lemonade-copy{padding:70px 20px}
  .experience-main{height:56vh}
  .experience-side{height:52vh}
  .hours-card{box-shadow:7px 7px 0 var(--ink)}
  .hours-left,.hours-list{padding:36px 24px}
  .hours-list>div{font-size:.98rem}
  .social-copy{padding:70px 20px}
}

@media (prefers-reduced-motion:reduce){
  *{scroll-behavior:auto!important}
  .ticker-track{animation:none}
  .reveal{opacity:1;transform:none;transition:none}
}


/* V2 Sundae Cone showcase */
.sundae-showcase{background:#fffaf5}
.sundae-heading{max-width:980px;margin-bottom:48px}
.sundae-heading>p:last-child{max-width:760px;font-size:1.2rem}
.sundae-feature-grid{display:grid;grid-template-columns:1.25fr .75fr;grid-template-rows:minmax(340px,34vw) minmax(340px,34vw);gap:16px}
.sundae-feature{position:relative;overflow:hidden;min-height:360px;border-radius:28px;background:#1d1d1d}
.sundae-feature-hero{grid-row:1/3}
.sundae-feature img{width:100%;height:100%;object-fit:cover;transition:transform .45s ease}
.sundae-feature:hover img{transform:scale(1.03)}
.sundae-overlay{position:absolute;inset:0;background:linear-gradient(180deg,transparent 16%,rgba(0,0,0,.82) 100%)}
.sundae-copy{position:absolute;left:0;right:0;bottom:0;padding:34px;color:white}
.sundae-copy h3{font-size:clamp(2.25rem,4vw,4.4rem);margin:10px 0}
.sundae-copy p{max-width:660px;margin:0;font-size:1rem}
.special-badge{display:inline-block;padding:7px 12px;border-radius:999px;background:var(--pink);color:var(--ink);font-size:.72rem;font-weight:900;letter-spacing:.08em;text-transform:uppercase}
.sundae-list{display:grid;grid-template-columns:repeat(3,1fr);margin-top:18px;border:2px solid var(--ink);border-radius:24px;overflow:hidden}
.sundae-list>div{padding:24px;border-right:1px solid var(--border);border-bottom:1px solid var(--border)}
.sundae-list strong{display:block;font-family:Georgia,serif;font-size:1.35rem;margin-bottom:8px}
.sundae-list span{font-size:.92rem;opacity:.75}
.sundae-price{margin-top:18px;background:var(--ink);color:white;border-radius:24px;padding:24px 30px;display:flex;align-items:center;justify-content:space-between;gap:24px}
.sundae-price span{font-weight:900;letter-spacing:.08em;font-size:.82rem}
.sundae-price strong{font-family:Georgia,serif;color:var(--pink);font-size:3rem;line-height:1}
@media (max-width:980px){.sundae-list{grid-template-columns:repeat(2,1fr)}}
@media (max-width:680px){
  .sundae-feature-grid{grid-template-columns:1fr;grid-template-rows:auto}
  .sundae-feature-hero{grid-row:auto}
  .sundae-feature{height:62vh;min-height:470px}
  .sundae-list{grid-template-columns:1fr}
  .sundae-price{align-items:flex-start;flex-direction:column}
}
