:root {
  --yellow: #f9bd17;
  --yellow-light: #ffd95e;
  --red: #e74829;
  --red-dark: #c8351e;
  --ink: #1d1915;
  --cream: #fff4cf;
  --paper: #fffdf7;
  --white: #fff;
  --muted: #685e53;
  --line: rgba(29,25,21,.16);
  --shell: min(1180px, calc(100% - 40px));
  --shadow: 0 22px 60px rgba(70,44,8,.16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0; color: var(--ink); background: var(--paper);
  font-family: "DM Sans", system-ui, sans-serif; font-size: 16px; line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
.shell { width: var(--shell); margin-inline: auto; }
.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; }
.skip-link { position: fixed; left: 15px; top: -70px; z-index: 100; padding: 10px 16px; color: white; background: var(--red); font-weight: 800; transition: top .2s; }
.skip-link:focus { top: 15px; }
:focus-visible { outline: 3px solid var(--red); outline-offset: 3px; }

.site-header {
  position: fixed; inset: 0 0 auto; z-index: 50; color: white;
  border-bottom: 1px solid rgba(255,255,255,.18); transition: background .25s, box-shadow .25s;
}
.site-header.scrolled { background: rgba(29,25,21,.96); box-shadow: 0 9px 30px rgba(0,0,0,.25); backdrop-filter: blur(12px); }
.header-inner { height: 84px; display: flex; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; align-items: center; gap: 12px; color: inherit; text-decoration: none; }
.brand-logo { display: block; width: 112px; height: 76px; object-fit: contain; object-position: center; }
.footer-logo { width: 225px; height: auto; object-fit: contain; }
.chick-mark {
  display: grid; place-items: center; width: 45px; height: 45px; border-radius: 50%;
  color: var(--ink); background: var(--yellow); border: 3px solid var(--ink);
  font: 800 .85rem/1 "Archivo Black", sans-serif; transform: rotate(-6deg);
}
.brand-type { display: flex; flex-direction: column; line-height: .93; }
.brand-type strong { font: 400 1rem/1 "Archivo Black", sans-serif; letter-spacing: .02em; }
.brand-type small { margin-top: 6px; color: var(--yellow); font-weight: 800; font-size: .66rem; letter-spacing: .24em; }
.site-nav { display: flex; align-items: center; gap: 28px; }
.site-nav a { color: rgba(255,255,255,.84); font-size: .88rem; font-weight: 700; text-decoration: none; }
.site-nav a:hover { color: var(--yellow); }
.site-nav .nav-phone { color: white; font-weight: 800; white-space: nowrap; }
.site-nav .nav-phone::before { content: "☎"; margin-right: 7px; color: var(--yellow); }
.site-nav .nav-cta { padding: 10px 18px; color: var(--ink); background: var(--yellow); border-radius: 999px; }
.site-nav .nav-cta:hover { color: var(--ink); background: var(--yellow-light); }
.menu-button { display: none; background: transparent; border: 0; padding: 8px; }
.menu-button > span:not(.sr-only) { display: block; width: 27px; height: 3px; margin: 4px 0; background: white; border-radius: 10px; }

.hero {
  position: relative; min-height: 760px; height: 92svh; display: flex; align-items: center;
  color: white; background: var(--ink); isolation: isolate; overflow: hidden;
}
.hero-image { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-overlay {
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(90deg, rgba(19,16,13,.97) 0%, rgba(19,16,13,.84) 35%, rgba(19,16,13,.12) 66%, rgba(19,16,13,.03) 100%),
              linear-gradient(0deg, rgba(19,16,13,.48), transparent 48%);
}
.hero-content { padding-top: 80px; }
.local-pill {
  display: inline-flex; gap: 9px; align-items: center; margin-bottom: 23px; padding: 8px 13px;
  color: var(--yellow); border: 1px solid rgba(249,189,23,.6); border-radius: 999px;
  font-size: .72rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
}
.hero h1, .section-heading h2, .intro h2, .drip-section h2, .how h2, .story h2, .faq h2, .final-cta h2 {
  font-family: "Archivo Black", sans-serif; letter-spacing: -.05em; line-height: .94;
}
.hero h1 { max-width: 720px; margin: 0 0 25px; font-size: clamp(4.1rem, 8vw, 7.6rem); }
.hero h1 span { color: var(--yellow); }
.hero-content > p { max-width: 585px; margin: 0; color: rgba(255,255,255,.76); font-size: clamp(1.02rem, 1.7vw, 1.22rem); }
.hero-actions, .final-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.button {
  display: inline-flex; align-items: center; justify-content: center; gap: 12px; min-height: 54px;
  padding: 14px 23px; border: 2px solid transparent; border-radius: 999px;
  font-size: .92rem; font-weight: 800; text-decoration: none; transition: transform .2s, background .2s;
}
.button:hover { transform: translateY(-3px) rotate(-.4deg); }
.button-red { color: white; background: var(--red); }
.button-red:hover { background: #ff5838; }
.button-light { color: var(--ink); background: white; }
.button-yellow { color: var(--ink); background: var(--yellow); }
.button-yellow:hover { background: var(--yellow-light); }
.button-outline { color: white; border-color: rgba(255,255,255,.6); }
.button-outline:hover { background: rgba(255,255,255,.1); }
.hero-burst {
  position: absolute; right: 4.2vw; bottom: 4.5vh; display: grid; place-items: center; align-content: center;
  width: 168px; aspect-ratio: 1; padding: 20px; border-radius: 50%; color: var(--ink); background: var(--yellow);
  border: 4px solid var(--ink); outline: 2px dashed var(--yellow); outline-offset: 8px; text-align: center; transform: rotate(7deg);
}
.hero-burst span { font-size: .58rem; font-weight: 800; letter-spacing: .14em; }
.hero-burst strong { font: 400 2.1rem/1 "Archivo Black", sans-serif; }

.marquee { overflow: hidden; color: white; background: var(--red); border-block: 3px solid var(--ink); }
.marquee-track { display: flex; align-items: center; width: max-content; padding: 14px 0; animation: marquee 28s linear infinite; }
.marquee span { padding-inline: 24px; font: 400 .84rem/1 "Archivo Black", sans-serif; letter-spacing: .08em; }
.marquee i { color: var(--yellow); font-style: normal; }
@keyframes marquee { to { transform: translateX(-50%); } }

.section { padding: 115px 0; }
.eyebrow { margin: 0 0 15px; color: var(--red); font-size: .74rem; font-weight: 800; letter-spacing: .17em; text-transform: uppercase; }
.eyebrow.light { color: var(--yellow); }
.intro { background: var(--cream); }
.intro-layout { display: grid; grid-template-columns: 1.05fr .95fr; gap: 9%; align-items: end; }
.intro h2 { margin: 0; font-size: clamp(3rem, 6vw, 5.7rem); }
.intro-copy > p { margin: 0; color: var(--muted); font-size: 1.1rem; }
.mini-proof { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 32px; padding-top: 25px; border-top: 2px solid var(--ink); }
.mini-proof div { display: flex; flex-direction: column; }
.mini-proof strong { font: 400 1.7rem/1 "Archivo Black", sans-serif; }
.mini-proof span { margin-top: 7px; color: var(--muted); font-size: .82rem; font-weight: 700; }

.menu { background: var(--paper); }
.section-heading { max-width: 760px; margin-bottom: 52px; }
.section-heading.centered { margin-inline: auto; text-align: center; }
.section-heading h2 { margin: 0 0 22px; font-size: clamp(3rem, 6vw, 5.6rem); }
.section-heading > p:last-child { max-width: 620px; color: var(--muted); font-size: 1.05rem; }
.centered > p:last-child { margin-inline: auto; }
.signature-feature { display: grid; grid-template-columns: .9fr 1.1fr; min-height: 650px; margin-bottom: 16px; overflow: hidden; background: var(--yellow); }
.signature-image { position: relative; min-height: 570px; overflow: hidden; }
.signature-image img { width: 100%; height: 100%; object-fit: cover; }
.image-sticker {
  position: absolute; left: 24px; top: 24px; display: grid; place-items: center; width: 100px; aspect-ratio: 1;
  border-radius: 50%; color: white; background: var(--red); border: 3px solid var(--ink);
  font: 400 .78rem/1.1 "Archivo Black", sans-serif; text-align: center; transform: rotate(-9deg);
}
.signature-copy { position: relative; display: flex; flex-direction: column; justify-content: center; padding: clamp(40px, 7vw, 88px); }
.menu-number { position: absolute; right: 30px; top: 24px; color: rgba(29,25,21,.35); font: 400 .72rem/1 "Archivo Black", sans-serif; }
.signature-copy h3 { margin: 0 0 21px; font: 400 clamp(3.5rem, 6vw, 6rem)/.92 "Archivo Black", sans-serif; letter-spacing: -.05em; }
.signature-copy > p:not(.eyebrow) { max-width: 520px; color: rgba(29,25,21,.74); font-size: 1.05rem; }
.tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.tags span { padding: 7px 11px; border: 1px solid rgba(29,25,21,.38); border-radius: 999px; font-size: .75rem; font-weight: 800; }
.menu-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.menu-card { position: relative; min-height: 430px; padding: 0; overflow: hidden; border: 2px solid var(--ink); transition: transform .22s, box-shadow .22s; }
.menu-card:hover { transform: translateY(-6px) rotate(-.5deg); box-shadow: 9px 9px 0 var(--ink); }
.menu-card-image { display: block; width: 100%; height: 215px; object-fit: cover; border-bottom: 2px solid var(--ink); transition: transform .35s ease; }
.menu-card:hover .menu-card-image { transform: scale(1.035); }
.menu-card-copy { position: relative; min-height: 213px; padding: 27px 28px 30px; }
.menu-card.red { color: white; background: var(--red); }
.menu-card.dark { color: white; background: var(--ink); }
.menu-card.cream { background: var(--cream); }
.menu-card.yellow { background: var(--yellow); }
.menu-card .menu-number { color: currentColor; opacity: .45; }
.menu-card h3 { margin: 31px 0 12px; font: 400 1.6rem/1.05 "Archivo Black", sans-serif; letter-spacing: -.03em; }
.menu-card-copy > p:last-child { margin: 0; color: currentColor; opacity: .72; font-size: .9rem; }
.menu-card.red .eyebrow, .menu-card.dark .eyebrow { color: var(--yellow); }

.drip-section { padding: 105px 0; color: white; background: var(--red); overflow: hidden; }
.drip-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 8%; align-items: center; }
.drip-section h2 { margin: 0; font-size: clamp(3.2rem, 6vw, 5.7rem); }
.drip-list { display: flex; flex-wrap: wrap; gap: 12px; }
.drip-list > span {
  display: flex; flex-direction: column; padding: 15px 19px; color: var(--ink); background: var(--yellow);
  border: 2px solid var(--ink); border-radius: 11px; font-weight: 800; transform: rotate(-1deg); box-shadow: 5px 5px 0 var(--ink);
}
.drip-list > span:nth-child(even) { transform: rotate(1.5deg); background: var(--cream); }
.drip-list small { margin-top: 2px; color: var(--muted); font-size: .68rem; font-weight: 600; text-transform: uppercase; }

.catering { background: var(--cream); }
.package-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; align-items: stretch; }
.package-card { position: relative; min-height: 430px; padding: 42px 34px; background: white; border: 2px solid var(--ink); box-shadow: 7px 7px 0 rgba(29,25,21,.14); }
.package-card.standout { transform: translateY(-15px); color: white; background: var(--ink); box-shadow: 9px 9px 0 var(--red); }
.package-icon { display: grid; place-items: center; width: 54px; height: 54px; border-radius: 50%; color: var(--ink); background: var(--yellow); font: 400 .75rem/1 "Archivo Black", sans-serif; }
.package-card h3 { margin: 36px 0 15px; font: 400 1.85rem/1.08 "Archivo Black", sans-serif; letter-spacing: -.03em; }
.package-card p { color: var(--muted); font-size: .92rem; }
.package-card.standout p { color: rgba(255,255,255,.65); }
.package-card ul { display: grid; gap: 9px; margin: 25px 0 0; padding: 0; list-style: none; font-size: .86rem; font-weight: 700; }
.package-card li::before { content: "✓"; color: var(--red); margin-right: 8px; }
.package-card.standout li::before { color: var(--yellow); }
.most-loved { position: absolute; right: -2px; top: 24px; padding: 8px 12px; color: var(--ink); background: var(--red); font-size: .64rem; font-weight: 900; letter-spacing: .12em; }
.diet-note { display: flex; align-items: center; gap: 15px; max-width: 800px; margin: 48px auto 0; padding: 20px 24px; background: var(--yellow-light); border: 2px solid var(--ink); }
.diet-note span { font-size: 1.6rem; }
.diet-note p { margin: 0; }

.how { color: white; background: var(--ink); }
.how-layout { display: grid; grid-template-columns: .85fr 1.15fr; gap: 10%; }
.how-title { position: sticky; top: 120px; align-self: start; }
.how h2 { margin: 0 0 30px; font-size: clamp(3.5rem, 6vw, 5.8rem); }
.booking-steps { margin: 0; padding: 0; list-style: none; }
.booking-steps li { display: grid; grid-template-columns: 65px 1fr; gap: 24px; padding: 34px 0; border-top: 1px solid rgba(255,255,255,.18); }
.booking-steps li:last-child { border-bottom: 1px solid rgba(255,255,255,.18); }
.booking-steps > li > span { display: grid; place-items: center; width: 55px; height: 55px; border-radius: 50%; color: var(--ink); background: var(--red); font: 400 1rem/1 "Archivo Black", sans-serif; }
.booking-steps li:nth-child(2) > span { background: var(--yellow); }
.booking-steps h3 { margin: 0 0 7px; font: 400 1.45rem/1.2 "Archivo Black", sans-serif; }
.booking-steps p { margin: 0; color: rgba(255,255,255,.62); }

.story { background: var(--yellow); overflow: hidden; }
.story-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: 9%; align-items: center; }
.story-art { position: relative; min-height: 520px; border: 3px solid var(--ink); background: var(--red); box-shadow: 14px 14px 0 var(--ink); overflow: hidden; }
.sun { position: absolute; left: 50%; top: 45%; z-index: 2; display: grid; place-items: center; width: 235px; aspect-ratio: 1; border-radius: 50%; color: var(--ink); background: var(--yellow); border: 4px solid var(--ink); transform: translate(-50%,-50%) rotate(-6deg); font: 400 4rem/1 "Archivo Black", sans-serif; }
.checker { position: absolute; inset: 55% 0 0; background-color: var(--paper); background-image: linear-gradient(45deg,var(--ink) 25%,transparent 25%),linear-gradient(-45deg,var(--ink) 25%,transparent 25%),linear-gradient(45deg,transparent 75%,var(--ink) 75%),linear-gradient(-45deg,transparent 75%,var(--ink) 75%); background-size: 50px 50px; background-position: 0 0,0 25px,25px -25px,-25px 0; }
.story-art > span { position: absolute; z-index: 3; left: 50%; bottom: 22px; padding: 7px 12px; background: var(--yellow); border: 2px solid var(--ink); transform: translateX(-50%) rotate(2deg); font: 400 .72rem/1 "Archivo Black", sans-serif; }
.story h2 { margin: 0 0 25px; font-size: clamp(3.2rem, 6vw, 5.5rem); }
.story-copy > p:not(.eyebrow):not(.story-tagline) { color: rgba(29,25,21,.72); }
.story-tagline { margin-top: 28px; font: 400 1.35rem/1.2 "Archivo Black", sans-serif; }

.faq { background: var(--paper); }
.faq-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: 9%; }
.faq-heading { position: sticky; top: 120px; align-self: start; }
.faq h2 { margin: 0; font-size: clamp(3rem, 5vw, 4.8rem); }
.accordion details { border-top: 2px solid var(--ink); }
.accordion details:last-child { border-bottom: 2px solid var(--ink); }
.accordion summary { display: flex; align-items: center; justify-content: space-between; gap: 22px; padding: 25px 4px; list-style: none; cursor: pointer; font: 400 1.13rem/1.35 "Archivo Black", sans-serif; }
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary span { color: var(--red); font: 700 1.5rem/1 "DM Sans", sans-serif; transition: transform .2s; }
.accordion details[open] summary span { transform: rotate(45deg); }
.accordion details div { padding: 0 45px 25px 4px; color: var(--muted); }
.accordion details div p { margin: 0; }

.final-cta { position: relative; padding: 125px 0; color: white; background: var(--red); text-align: center; overflow: hidden; }
.final-cta::before, .final-cta::after { content: ""; position: absolute; width: 250px; aspect-ratio: 1; border-radius: 50%; background: var(--yellow); border: 4px solid var(--ink); }
.final-cta::before { left: -170px; top: -110px; }
.final-cta::after { right: -150px; bottom: -130px; }
.final-inner { position: relative; z-index: 1; max-width: 900px; }
.final-cta h2 { margin: 0; font-size: clamp(4rem, 9vw, 8rem); }
.final-actions { justify-content: center; }
.instagram-link { display: inline-block; margin-top: 26px; color: white; font-weight: 800; }

.site-footer { padding: 65px 0 25px; color: white; background: var(--ink); }
.footer-main { display: grid; grid-template-columns: .8fr 1fr 1.2fr; gap: 7%; align-items: center; }
.footer-main > p { margin: 0; color: rgba(255,255,255,.55); font-size: .9rem; }
.footer-links { display: flex; flex-wrap: wrap; gap: 10px 20px; justify-content: flex-end; }
.footer-links a { color: rgba(255,255,255,.72); font-size: .82rem; font-weight: 700; text-decoration: none; }
.footer-links a:hover { color: var(--yellow); }
.footer-legal { display: flex; justify-content: space-between; gap: 20px; margin-top: 48px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.13); color: rgba(255,255,255,.4); font-size: .72rem; }
.mobile-quote { display: none; }
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 900px) {
  :root { --shell: min(100% - 32px, 720px); }
  .menu-button { display: block; }
  .site-nav { position: absolute; top: 74px; left: 16px; right: 16px; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 12px; background: rgba(29,25,21,.98); border: 1px solid rgba(255,255,255,.16); box-shadow: 0 20px 50px rgba(0,0,0,.35); }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 13px 14px; }
  .site-nav .nav-cta { margin-top: 5px; text-align: center; }
  .hero { min-height: 760px; height: auto; padding: 130px 0 90px; }
  .hero-image { object-position: 61% center; opacity: .8; }
  .hero-overlay { background: linear-gradient(90deg,rgba(19,16,13,.96),rgba(19,16,13,.62)),linear-gradient(0deg,rgba(19,16,13,.65),transparent); }
  .hero-burst { width: 125px; right: 28px; bottom: 28px; }
  .intro-layout, .drip-layout, .how-layout, .story-layout, .faq-layout { grid-template-columns: 1fr; gap: 60px; }
  .signature-feature { grid-template-columns: 1fr 1fr; }
  .signature-copy { padding: 42px 32px; }
  .menu-grid { grid-template-columns: repeat(2, 1fr); }
  .package-grid { grid-template-columns: 1fr; }
  .package-card { min-height: auto; }
  .package-card.standout { transform: none; }
  .how-title, .faq-heading { position: static; }
  .story-art { max-width: 520px; width: 100%; margin-inline: auto; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-links { grid-column: 1 / -1; justify-content: flex-start; }
}

@media (max-width: 620px) {
  :root { --shell: calc(100% - 28px); }
  body { padding-bottom: 64px; }
  .header-inner { height: 72px; }
  .chick-mark { width: 40px; height: 40px; }
  .brand-type strong { font-size: .86rem; }
  .hero { min-height: 700px; align-items: flex-end; padding: 120px 0 75px; }
  .hero h1 { font-size: clamp(3.5rem, 17vw, 5.15rem); }
  .hero-actions, .final-actions { flex-direction: column; }
  .button { width: 100%; }
  .hero-burst { display: none; }
  .section { padding: 84px 0; }
  .intro h2, .section-heading h2, .drip-section h2, .how h2, .story h2, .faq h2 { font-size: 2.85rem; }
  .signature-feature { grid-template-columns: 1fr; }
  .signature-image { height: 510px; min-height: 0; }
  .signature-copy h3 { font-size: 3.5rem; }
  .menu-grid { grid-template-columns: 1fr; }
  .menu-card { min-height: 280px; }
  .drip-section { padding: 82px 0; }
  .drip-layout { gap: 35px; }
  .drip-list { gap: 9px; }
  .drip-list > span { padding: 12px 14px; }
  .booking-steps li { grid-template-columns: 52px 1fr; gap: 18px; }
  .booking-steps > li > span { width: 46px; height: 46px; }
  .story-art { min-height: 400px; box-shadow: 9px 9px 0 var(--ink); }
  .sun { width: 190px; font-size: 3.2rem; }
  .final-cta { padding: 90px 0; }
  .final-cta h2 { font-size: 4rem; }
  .footer-main { grid-template-columns: 1fr; gap: 28px; }
  .footer-links { grid-column: auto; justify-content: flex-start; }
  .footer-legal { flex-direction: column; }
  .mobile-quote { position: fixed; z-index: 60; inset: auto 0 0; display: flex; align-items: center; justify-content: center; gap: 10px; height: 64px; color: white; background: var(--red); font-weight: 900; text-decoration: none; box-shadow: 0 -8px 25px rgba(0,0,0,.22); }
}

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