:root {
  --purple: #5f259f;
  --purple-dark: #5c068c;
  --purple-deep: #381153;
  --green: #43b02a;
  --green-dark: #319b42;
  --magenta: #bb16a3;
  --fuchsia: #e31c79;
  --cream: #f7f3e8;
  --paper: #fffdf9;
  --ink: #251c2e;
  --muted: #6d6474;
  --line: #e7e1e9;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(67, 25, 92, .12);
  --radius-lg: 34px;
  --radius-md: 22px;
  --max: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: Gotham, "Avenir Next", Montserrat, Arial, sans-serif; font-size: 16px; line-height: 1.55; -webkit-font-smoothing: antialiased; }
body.menu-open { overflow: hidden; }
a { color: inherit; }
img { display: block; max-width: 100%; }
button { font: inherit; }
.skip-link { position: fixed; left: 1rem; top: -5rem; z-index: 1000; padding: .75rem 1rem; color: var(--purple); background: white; border-radius: 10px; box-shadow: var(--shadow); }
.skip-link:focus { top: 1rem; }
.section-pad { width: min(calc(100% - 2rem), var(--max)); margin-inline: auto; }
.eyebrow { margin: 0 0 .65rem; color: rgba(255,255,255,.74); font-size: .72rem; font-weight: 900; letter-spacing: .15em; text-transform: uppercase; }
.eyebrow.purple { color: var(--purple); }
.eyebrow.green { color: var(--green-dark); }

.announcement { min-height: 38px; display: flex; align-items: center; justify-content: center; gap: .6rem; padding: .45rem 1rem; color: white; background: var(--purple-deep); font-size: .74rem; font-weight: 750; letter-spacing: .03em; text-align: center; }
.announcement a { color: white; text-underline-offset: 3px; }
.announcement-dot { width: 8px; height: 8px; background: #74df5a; border-radius: 50%; box-shadow: 0 0 0 4px rgba(116,223,90,.15); }
.site-header { position: sticky; top: 0; z-index: 40; background: rgba(255,253,249,.94); border-bottom: 1px solid rgba(95,37,159,.1); backdrop-filter: blur(15px); }
.nav-shell { width: min(calc(100% - 2rem), var(--max)); min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 2rem; margin-inline: auto; }
.brand { display: flex; align-items: center; gap: .75rem; text-decoration: none; }
.brand img { width: 66px; height: 52px; object-fit: cover; border-radius: 9px; }
.brand strong, .brand small { display: block; }
.brand strong { color: var(--purple); font-size: 1rem; letter-spacing: .04em; text-transform: uppercase; }
.brand small { color: var(--muted); font-size: .66rem; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; }
.site-nav { display: flex; align-items: center; gap: 1.45rem; }
.site-nav a { position: relative; color: #4b4051; font-size: .82rem; font-weight: 760; text-decoration: none; }
.site-nav > a:not(.nav-order)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -.35rem; height: 2px; background: var(--green); transition: right .2s ease; }
.site-nav > a:not(.nav-order):hover::after, .site-nav > a:not(.nav-order):focus-visible::after { right: 0; }
.site-nav .nav-order { padding: .75rem 1rem; color: white; background: var(--purple); border-radius: 12px; box-shadow: 0 10px 24px rgba(95,37,159,.18); }
.site-nav .nav-order:hover { background: var(--purple-dark); }
.menu-toggle { display: none; width: 44px; height: 44px; padding: 0; border: 0; background: transparent; cursor: pointer; }
.menu-toggle span { width: 24px; height: 2px; display: block; margin: 5px auto; background: var(--purple); border-radius: 3px; transition: transform .2s ease, opacity .2s ease; }

.hero { min-height: 660px; display: grid; grid-template-columns: 1fr .92fr; align-items: center; gap: clamp(2rem, 6vw, 5rem); padding-top: clamp(4rem, 7vw, 7rem); padding-bottom: clamp(4rem, 7vw, 6rem); }
.hero-copy { position: relative; z-index: 2; }
.hero-copy .eyebrow { color: var(--green-dark); }
.hero h1 { margin: 0; color: var(--purple-deep); font-size: clamp(3.8rem, 7vw, 7.4rem); line-height: .86; letter-spacing: -.075em; }
.hero h1 em { color: var(--fuchsia); font-family: Georgia, "Times New Roman", serif; font-weight: 500; }
.hero-lede { max-width: 610px; margin: 1.7rem 0 0; color: var(--muted); font-size: clamp(1.04rem, 1.6vw, 1.24rem); }
.button-row { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.6rem; }
.button { min-height: 50px; display: inline-flex; align-items: center; justify-content: center; gap: .45rem; padding: .78rem 1.15rem; border: 1px solid transparent; border-radius: 13px; font-size: .84rem; font-weight: 850; text-decoration: none; transition: transform .18s ease, box-shadow .18s ease, background .18s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: white; background: var(--purple); box-shadow: 0 12px 30px rgba(95,37,159,.2); }
.button-primary:hover { background: var(--purple-dark); }
.button-ghost { color: var(--purple); background: white; border-color: #dacde2; }
.button-ghost:hover { border-color: var(--purple); box-shadow: 0 12px 28px rgba(70,32,88,.08); }
.button-light { color: var(--purple); background: white; box-shadow: 0 12px 28px rgba(40,8,58,.15); }
.button-outline-light { color: white; background: transparent; border-color: rgba(255,255,255,.5); }
.button-dark { color: white; background: var(--purple-deep); }
.location-line { margin: 1.2rem 0 0; color: #756a79; font-size: .78rem; font-weight: 750; }
.location-line span { color: var(--green); }
.hero-art { position: relative; min-height: 520px; }
.hero-art::before { content: ""; position: absolute; inset: 7% 3% 2% 9%; background: linear-gradient(145deg, #e9f6e6, #f3eafa); border-radius: 48% 52% 45% 55% / 56% 42% 58% 44%; transform: rotate(-5deg); }
.hero-main-photo { position: absolute; inset: 10% 4% 5% 11%; margin: 0; overflow: hidden; background: white; border: 10px solid white; border-radius: 48% 52% 46% 54% / 55% 43% 57% 45%; box-shadow: var(--shadow); transform: rotate(2deg); }
.hero-main-photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-small-photo { position: absolute; z-index: 3; margin: 0; overflow: hidden; background: white; border: 7px solid white; border-radius: 22px; box-shadow: 0 18px 40px rgba(55,24,71,.18); }
.hero-small-photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-smoothie { width: 150px; height: 130px; left: 0; bottom: 3%; transform: rotate(-7deg); }
.hero-wrap { width: 180px; height: 135px; right: -2%; top: 2%; transform: rotate(7deg); }
.fresh-stamp { position: absolute; z-index: 4; right: -1%; bottom: 1%; width: 118px; height: 118px; display: grid; place-content: center; text-align: center; color: white; background: var(--fuchsia); border: 5px solid var(--paper); border-radius: 50%; box-shadow: 0 16px 35px rgba(113,18,95,.22); transform: rotate(-8deg); }
.fresh-stamp span, .fresh-stamp strong { display: block; line-height: 1.05; }
.fresh-stamp span { font-size: .62rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.fresh-stamp strong { font-family: Georgia, serif; font-size: 1.65rem; font-style: italic; }
.hero-orbit { position: absolute; border: 1px solid rgba(95,37,159,.16); border-radius: 50%; }
.hero-orbit-one { width: 96px; height: 96px; left: 2%; top: 5%; }
.hero-orbit-two { width: 34px; height: 34px; right: 12%; bottom: 2%; background: var(--green); border: 0; }

.proof-strip { display: grid; grid-template-columns: repeat(4,1fr); max-width: 1440px; margin-inline: auto; padding: 0 clamp(1rem,4vw,4rem); background: white; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.proof-strip > div { padding: 1.4rem 1.2rem; border-left: 1px solid var(--line); }
.proof-strip > div:last-child { border-right: 1px solid var(--line); }
.proof-strip strong, .proof-strip span { display: block; }
.proof-strip strong { color: var(--purple); font-size: .82rem; }
.proof-strip span { margin-top: .12rem; color: var(--muted); font-size: .7rem; }

.story { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(2.5rem, 8vw, 8rem); padding-top: clamp(5rem, 9vw, 9rem); padding-bottom: clamp(5rem, 9vw, 9rem); }
.story h2, .section-heading h2, .allergen-section h2, .catering-copy h2, .visit-card h2 { margin: .4rem 0 0; font-size: clamp(2.4rem, 4.7vw, 4.9rem); line-height: .98; letter-spacing: -.055em; }
.story-intro h2 { color: var(--purple-deep); }
.story-copy { align-self: center; max-width: 650px; }
.story-copy p { margin: 0 0 1rem; color: var(--muted); font-size: 1.02rem; }
.text-link { display: inline-flex; margin-top: .7rem; color: var(--purple); font-size: .82rem; font-weight: 850; text-underline-offset: 4px; }

.menu-section { padding: clamp(5rem,8vw,8rem) 0; background: #f5f1f7; }
.section-heading { display: flex; justify-content: space-between; align-items: end; gap: 4rem; }
.section-heading h2 { max-width: 760px; color: var(--purple-deep); }
.section-heading > p { max-width: 390px; margin: 0 0 .55rem; color: var(--muted); }
.menu-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; margin-top: 2.3rem; }
.menu-card { min-height: 450px; display: flex; flex-direction: column; overflow: hidden; border-radius: 28px; box-shadow: 0 16px 45px rgba(55,30,70,.08); }
.menu-card-copy { flex: 1; padding: 1.7rem; }
.menu-card-copy > span { font-size: .68rem; font-weight: 900; letter-spacing: .12em; }
.menu-card h3 { max-width: 320px; margin: .75rem 0 .5rem; font-size: 1.65rem; line-height: 1.05; }
.menu-card p { margin: 0; opacity: .78; font-size: .86rem; }
.menu-card img { width: 100%; height: 210px; object-fit: contain; background: white; }
.menu-card-purple { color: white; background: var(--purple); }
.menu-card-green { color: white; background: var(--green-dark); }
.menu-card-cream { color: var(--purple-deep); background: var(--cream); }
.menu-cta { display: flex; align-items: center; justify-content: space-between; gap: 2rem; margin-top: 1rem; padding: 1.4rem 1.6rem; color: white; background: linear-gradient(120deg, var(--purple-dark), var(--magenta)); border-radius: 22px; }
.menu-cta h3 { margin: 0; font-size: clamp(1.2rem,2vw,1.65rem); }

.allergen-section { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(2rem,7vw,7rem); align-items: center; padding-top: clamp(5rem,9vw,9rem); padding-bottom: clamp(5rem,9vw,9rem); }
.allergen-visual { min-height: 430px; display: flex; flex-direction: column; justify-content: end; padding: 2rem; color: white; background: linear-gradient(145deg, var(--green-dark), #207b35); border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.allergen-mark { width: 104px; height: 104px; display: grid; place-items: center; margin-bottom: auto; color: var(--green-dark); background: white; border-radius: 30px 30px 30px 6px; font-family: Georgia,serif; font-size: 4rem; font-style: italic; }
.allergen-section h2 { color: white; }
.allergen-lede { margin: 0; color: var(--ink); font-size: 1.12rem; font-weight: 700; }
.check-list { display: grid; gap: .7rem; margin: 1.4rem 0; padding: 0; list-style: none; }
.check-list li { position: relative; padding-left: 2rem; color: var(--muted); }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: -.1rem; width: 23px; height: 23px; display: grid; place-items: center; color: white; background: var(--green); border-radius: 50%; font-size: .72rem; font-weight: 900; }
.fine-print { padding: 1rem; color: #66545f; background: #fff5df; border: 1px solid #f0dba8; border-radius: 13px; font-size: .76rem; }

.catering-section { width: min(calc(100% - 2rem), 1420px); display: grid; grid-template-columns: .92fr 1.08fr; min-height: 650px; margin-inline: auto; overflow: hidden; background: var(--purple-deep); border-radius: 40px; box-shadow: var(--shadow); }
.catering-photo img { width: 100%; height: 100%; object-fit: cover; }
.catering-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(2.2rem,6vw,5.5rem); color: white; }
.catering-copy h2 { color: white; }
.catering-copy > p:not(.eyebrow):not(.offer-note) { color: rgba(255,255,255,.76); }
.event-tags { display: flex; flex-wrap: wrap; gap: .45rem; margin: 1rem 0; }
.event-tags span { padding: .38rem .62rem; color: white; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18); border-radius: 999px; font-size: .7rem; font-weight: 750; }
.catering-contact { display: grid; grid-template-columns: repeat(2,1fr); gap: .65rem; margin-top: .5rem; }
.catering-contact a { min-width: 0; padding: .85rem; color: white; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16); border-radius: 13px; text-decoration: none; }
.catering-contact small, .catering-contact strong { display: block; overflow-wrap: anywhere; }
.catering-contact small { color: rgba(255,255,255,.65); font-size: .66rem; }
.catering-contact strong { margin-top: .12rem; font-size: .8rem; }
.offer-note { margin: .7rem 0 0; color: #a9f196; font-size: .74rem; font-weight: 750; }

.connect-section { padding-top: clamp(5rem,9vw,9rem); padding-bottom: clamp(5rem,9vw,9rem); }
.connect-heading { margin-bottom: 2rem; }
.qr-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1rem; }
.qr-card { min-height: 440px; display: grid; grid-template-columns: minmax(0,1fr) 220px; gap: 1.5rem; align-items: center; padding: clamp(1.5rem,3vw,2.2rem); overflow: hidden; border-radius: 30px; }
.instagram-card { color: white; background: linear-gradient(135deg, #5f259f, #bb16a3 58%, #e31c79); }
.review-card { color: var(--purple-deep); background: #ebf7e8; border: 1px solid #d2eaca; }
.qr-card h3 { margin: .35rem 0 .55rem; font-size: clamp(1.65rem,2.7vw,2.5rem); line-height: 1.02; letter-spacing: -.035em; }
.qr-copy > p:not(.eyebrow) { opacity: .78; font-size: .86rem; }
.social-icon { width: 42px; height: 42px; display: grid; place-items: center; margin-bottom: 1.3rem; border: 1px solid currentColor; border-radius: 13px; font-size: 1.6rem; }
.star-icon { color: white; background: var(--green); border-color: var(--green); font-size: 1rem; }
.qr-frame { padding: .7rem; color: var(--purple); background: white; border-radius: 20px; box-shadow: 0 16px 40px rgba(49,15,67,.18); text-align: center; text-decoration: none; }
.qr-frame img { width: 100%; aspect-ratio: 1; object-fit: contain; image-rendering: pixelated; }
.qr-frame span { display: block; padding: .35rem 0 .15rem; font-size: .67rem; font-weight: 900; letter-spacing: .09em; text-transform: uppercase; }

.visit-section { padding-bottom: clamp(5rem,9vw,8rem); }
.visit-card { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; padding: clamp(2rem,5vw,4.5rem); background: var(--cream); border: 1px solid #eae0cc; border-radius: 34px; }
.visit-card h2 { max-width: 580px; color: var(--purple-deep); }
.visit-card address { margin-top: 1.5rem; color: var(--muted); font-style: normal; }
.visit-actions { display: grid; align-content: center; }
.visit-actions a { display: flex; flex-direction: column; padding: 1.1rem 0; color: var(--purple); border-top: 1px solid #dbd0bc; text-decoration: none; }
.visit-actions a:last-child { border-bottom: 1px solid #dbd0bc; }
.visit-actions small { color: var(--muted); font-size: .68rem; }
.visit-actions strong { margin-top: .15rem; font-size: 1rem; overflow-wrap: anywhere; }

.site-footer { padding: 4rem max(1rem,calc((100% - var(--max))/2)); color: white; background: var(--purple-deep); }
.footer-top { display: flex; justify-content: space-between; gap: 4rem; }
.footer-brand { display: flex; align-items: center; gap: 1rem; }
.footer-brand img { width: 100px; height: 80px; object-fit: cover; border-radius: 12px; }
.footer-brand p { color: rgba(255,255,255,.66); font-size: .78rem; }
.footer-links { display: flex; gap: clamp(3rem,8vw,7rem); }
.footer-links > div { display: flex; flex-direction: column; gap: .45rem; }
.footer-links strong { margin-bottom: .35rem; font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; }
.footer-links a { color: rgba(255,255,255,.7); font-size: .76rem; text-decoration: none; }
.footer-links a:hover { color: white; }
.footer-bottom { display: flex; justify-content: space-between; gap: 1rem; margin-top: 3rem; padding-top: 1rem; color: rgba(255,255,255,.48); border-top: 1px solid rgba(255,255,255,.12); font-size: .68rem; }

.js [data-reveal] { opacity: 0; transform: translateY(16px); transition: opacity .6s ease, transform .6s ease; }
.js [data-reveal].revealed { opacity: 1; transform: none; }

@media (max-width: 1060px) {
  .site-nav { gap: .85rem; }
  .site-nav a { font-size: .76rem; }
  .hero { grid-template-columns: 1fr .85fr; }
  .hero h1 { font-size: clamp(3.4rem,8vw,5.8rem); }
  .hero-art { min-height: 450px; }
  .menu-card { min-height: 410px; }
  .qr-card { grid-template-columns: 1fr 160px; }
}

@media (max-width: 860px) {
  .menu-toggle { display: block; }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .site-nav { position: fixed; inset: 116px 1rem auto; max-height: calc(100vh - 132px); display: none; flex-direction: column; align-items: stretch; gap: 0; padding: .65rem; overflow-y: auto; background: white; border: 1px solid var(--line); border-radius: 20px; box-shadow: var(--shadow); }
  .site-nav.open { display: flex; }
  .site-nav a { padding: .9rem; font-size: .9rem; }
  .site-nav > a:not(.nav-order)::after { display: none; }
  .site-nav .nav-order { margin-top: .35rem; text-align: center; }
  .hero { min-height: auto; grid-template-columns: 1fr; padding-top: 4rem; }
  .hero-copy { text-align: center; }
  .hero-lede { margin-inline: auto; }
  .hero .button-row { justify-content: center; }
  .hero-art { width: min(100%,600px); min-height: 500px; margin-inline: auto; }
  .proof-strip { grid-template-columns: repeat(2,1fr); }
  .proof-strip > div:nth-child(3) { border-top: 1px solid var(--line); }
  .proof-strip > div:nth-child(4) { border-top: 1px solid var(--line); }
  .story { grid-template-columns: 1fr; gap: 2rem; }
  .section-heading { align-items: flex-start; flex-direction: column; gap: 1rem; }
  .menu-cards { grid-template-columns: 1fr; }
  .menu-card { min-height: 280px; display: grid; grid-template-columns: 1fr 44%; }
  .menu-card img { height: 100%; min-height: 280px; }
  .allergen-section { grid-template-columns: 1fr; }
  .allergen-visual { min-height: 360px; }
  .catering-section { grid-template-columns: 1fr; }
  .catering-photo { max-height: 460px; }
  .qr-grid { grid-template-columns: 1fr; }
  .qr-card { grid-template-columns: 1fr 210px; }
}

@media (max-width: 620px) {
  .announcement { font-size: .65rem; }
  .brand img { width: 57px; height: 45px; }
  .brand small { display: none; }
  .nav-shell { min-height: 70px; }
  .site-nav { inset-block-start: 108px; }
  .hero { padding-top: 3rem; padding-bottom: 3rem; }
  .hero h1 { font-size: clamp(3.25rem,16vw,4.8rem); }
  .hero-art { min-height: 390px; }
  .hero-main-photo { inset: 9% 1% 4% 6%; }
  .hero-small-photo { border-width: 5px; }
  .hero-smoothie { width: 112px; height: 94px; }
  .hero-wrap { width: 130px; height: 96px; }
  .fresh-stamp { width: 92px; height: 92px; }
  .fresh-stamp strong { font-size: 1.25rem; }
  .proof-strip { grid-template-columns: 1fr; padding-inline: 1rem; }
  .proof-strip > div { border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .proof-strip > div:last-child { border-bottom: 0; }
  .proof-strip > div:nth-child(3), .proof-strip > div:nth-child(4) { border-top: 0; }
  .story h2, .section-heading h2, .allergen-section h2, .catering-copy h2, .visit-card h2 { font-size: clamp(2.2rem,11vw,3.3rem); }
  .menu-card { display: flex; min-height: 0; }
  .menu-card img { height: 190px; min-height: 0; }
  .menu-cta { align-items: flex-start; flex-direction: column; }
  .allergen-visual { min-height: 330px; }
  .catering-section { width: calc(100% - 1rem); border-radius: 28px; }
  .catering-photo { height: 320px; }
  .catering-contact { grid-template-columns: 1fr; }
  .qr-card { grid-template-columns: 1fr; text-align: center; }
  .social-icon { margin-inline: auto; }
  .qr-frame { width: min(100%,250px); margin-inline: auto; }
  .visit-card { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer-top { flex-direction: column; }
  .footer-links { justify-content: space-between; gap: 1rem; }
  .footer-bottom { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
}
