:root {
  --ink: #222222;
  --muted: #6f6a6d;
  --pink: #1f5b4d;
  --pink-dark: #123f36;
  --blue: #467c69;
  --cream: #fffaf1;
  --peach: #f2eadb;
  --orange: #e5a13a;
  --vermilion: #c55234;
  --ink: #24312c;
  --muted: #756e64;
  --line: rgba(36, 49, 44, 0.14);
  --page: min(1180px, calc(100% - 64px));
  --shadow: 0 24px 60px rgba(52, 47, 36, 0.13);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: #fff; font-family: "DM Sans", Arial, sans-serif; font-size: 16px; line-height: 1.55; }
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { cursor: pointer; }
.page-width { width: var(--page); 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; }

.announcement { background: var(--ink); color: #fff; font-size: 12px; letter-spacing: 0.02em; }
.announcement-inner { min-height: 34px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.announcement p, .announcement a { margin: 0; }
.announcement a { opacity: .72; transition: opacity .2s ease; }
.announcement a:hover { opacity: 1; }
.announcement-dot { display: inline-block; width: 7px; height: 7px; margin-right: 8px; border-radius: 50%; background: #70d8a1; box-shadow: 0 0 0 4px rgba(112, 216, 161, .16); }

.site-header { position: relative; z-index: 20; background: #fff; }
.nav-shell { min-height: 84px; display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.brand { display: inline-flex; align-items: center; gap: 10px; white-space: nowrap; }
.brand-mark { width: 39px; height: 39px; display: grid; place-items: center; color: var(--pink); border: 1px solid var(--pink); border-radius: 13px 13px 13px 4px; background: var(--cream); }
.brand-mark svg { width: 27px; height: 27px; }
.brand-text { display: flex; align-items: flex-start; flex-direction: column; gap: 0; font-family: "Fraunces", Georgia, serif; font-size: 23px; font-weight: 700; line-height: .9; letter-spacing: -.06em; }
.brand-text strong { font-weight: 800; }
.brand-text em { color: var(--orange); font-family: "DM Sans", sans-serif; font-size: 9px; font-style: normal; font-weight: 700; letter-spacing: .18em; line-height: 1.6; }
.main-nav { display: flex; align-items: center; gap: clamp(18px, 3vw, 38px); color: #555052; font-size: 14px; font-weight: 600; }
.main-nav a { transition: color .2s ease; }
.main-nav a:hover { color: var(--pink); }
.main-nav .nav-call { display: inline-flex; align-items: center; gap: 8px; color: #fff; padding: 12px 17px; border-radius: 999px; background: var(--ink); }
.main-nav .nav-call:hover { color: #fff; background: var(--pink); }
.nav-phone-icon { width: 16px; height: 16px; flex: 0 0 auto; }
.menu-toggle { display: none; border: 0; background: none; }

.hero { position: relative; display: grid; grid-template-columns: minmax(0, .86fr) minmax(480px, 1.14fr); align-items: center; min-height: 620px; gap: 50px; padding-top: 52px; padding-bottom: 86px; overflow: hidden; background: linear-gradient(135deg, #fff 0%, var(--cream) 68%, #f6efe2 100%); }
.hero::before { position: absolute; top: -110px; left: -120px; width: 360px; height: 460px; border: 1px solid rgba(31,91,77,.13); border-radius: 55% 45% 55% 10%; content: ""; transform: rotate(-23deg); pointer-events: none; }
.hero::after { position: absolute; right: 5%; bottom: 18px; width: 210px; height: 140px; content: ""; opacity: .25; background-image: radial-gradient(circle, var(--vermilion) 1.2px, transparent 1.5px); background-size: 17px 17px; mask-image: linear-gradient(135deg, transparent 0%, #000 65%); pointer-events: none; }
.hero-copy { padding-block: 30px; }
.eyebrow { display: flex; align-items: center; gap: 10px; margin: 0 0 22px; color: var(--pink); font-size: 11px; font-weight: 700; letter-spacing: .15em; line-height: 1.2; text-transform: uppercase; }
.eyebrow-line { width: 26px; height: 2px; display: inline-block; background: currentColor; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: "Fraunces", Georgia, serif; line-height: 1.04; letter-spacing: -.055em; }
h1 { max-width: 600px; margin-bottom: 24px; font-size: clamp(60px, 7vw, 102px); font-weight: 600; }
h1 span, h2 i { color: var(--pink); font-style: normal; }
.hero-text { max-width: 440px; margin-bottom: 30px; color: var(--muted); font-size: 18px; line-height: 1.65; }
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 22px; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 13px; min-height: 50px; padding: 13px 20px; border: 1px solid transparent; border-radius: 999px; font-size: 13px; font-weight: 700; transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: #fff; background: var(--pink); box-shadow: 0 12px 22px rgba(224, 86, 122, .2); }
.button-primary:hover { background: var(--pink-dark); }
.button-dark { color: #fff; background: var(--ink); }
.button-dark:hover { background: var(--pink); }
.button-light { color: var(--ink); background: #fff; }
.button-light:hover { color: #fff; background: var(--pink); }
.text-link { display: inline-flex; align-items: center; gap: 8px; color: var(--ink); font-size: 13px; font-weight: 700; border-bottom: 1px solid var(--ink); padding-bottom: 3px; }
.text-link:hover { color: var(--pink); border-color: var(--pink); }
.phone-icon { display: inline-grid; place-items: center; width: 24px; height: 24px; border: 1px solid var(--line); border-radius: 50%; color: var(--pink); }
.phone-icon svg { width: 14px; height: 14px; }
.hero-proof { display: flex; align-items: center; gap: 14px; margin-top: 58px; }
.rating-stars { color: var(--pink); font-size: 16px; letter-spacing: 1px; white-space: nowrap; }
.rating-stars span { color: #dad1d2; }
.hero-proof p { margin: 0; color: var(--muted); font-size: 12px; }
.hero-proof strong { color: var(--ink); }

.hero-visual { position: relative; z-index: 1; min-height: 490px; }
.hero-visual::before { position: absolute; z-index: -1; top: -38px; right: 9%; width: 245px; height: 330px; border: 1px solid rgba(197,82,52,.24); border-radius: 52% 48% 52% 12%; content: ""; transform: rotate(26deg); pointer-events: none; }
.hero-photo { position: absolute; overflow: hidden; border-radius: 8px; background: var(--peach); box-shadow: var(--shadow); }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-photo-main { inset: 44px 18% 102px 16%; border-radius: 10px 10px 10px 52px; transform: rotate(2deg); }
.hero-photo-main::after { position: absolute; inset: 0; content: ""; background: linear-gradient(180deg, transparent 45%, rgba(34, 34, 34, .17)); }
.hero-photo-small { width: 54%; height: 51%; right: -2%; bottom: -4px; border: 8px solid #fff; transform: rotate(-5deg); }
.hero-photo-small img { object-position: center 48%; }
.real-photo-label { position: absolute; z-index: 2; left: 9px; right: 9px; bottom: 8px; display: flex; align-items: baseline; justify-content: space-between; gap: 8px; padding: 7px 9px; color: #fff; background: rgba(31,91,77,.93); font-size: 9px; }
.real-photo-label strong { font-size: 10px; }
.real-photo-label small { opacity: .8; font-size: 8px; }
.hero-label { position: absolute; z-index: 2; left: -3%; bottom: 10%; display: flex; align-items: center; gap: 12px; max-width: 210px; padding: 13px 16px 13px 12px; border-radius: 4px 18px 18px 18px; background: var(--blue); color: #fff; box-shadow: 0 14px 28px rgba(62, 124, 177, .24); transform: rotate(-4deg); }
.label-icon { display: grid; place-items: center; width: 29px; height: 29px; color: var(--blue); border-radius: 50%; background: #fff; font-size: 17px; }
.hero-label strong, .hero-label small { display: block; }
.hero-label strong { font-size: 12px; }
.hero-label small { margin-top: 2px; opacity: .78; font-size: 10px; }
.hero-scribble { position: absolute; right: 1%; top: 2%; color: var(--pink); font-family: "Space Grotesk", sans-serif; font-size: 21px; font-weight: 600; transform: rotate(9deg); }
.generated-note { position: absolute; top: 13px; left: 13px; z-index: 3; padding: 5px 8px; color: rgba(255,255,255,.8); border: 1px solid rgba(255,255,255,.26); border-radius: 999px; background: rgba(31,91,77,.74); font-size: 8px; letter-spacing: .07em; text-transform: uppercase; }

.quick-strip { background: var(--cream); border-top: 1px solid rgba(34, 34, 34, .05); border-bottom: 1px solid rgba(34, 34, 34, .05); }
.quick-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.quick-item { display: flex; align-items: center; gap: 15px; min-height: 100px; padding: 18px 24px; border-right: 1px solid var(--line); }
.quick-item:first-child { padding-left: 0; }
.quick-item:last-child { border-right: 0; }
.quick-number { color: var(--pink); font-family: "DM Sans", Arial, sans-serif; font-size: 12px; font-weight: 700; }
.quick-item strong, .quick-item small { display: block; }
.quick-item strong { font-size: 13px; }
.quick-item small { margin-top: 2px; color: var(--muted); font-size: 11px; }

.section { padding-top: 136px; padding-bottom: 134px; }
.section-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 70px; margin-bottom: 54px; }
.section-heading h2, .about-copy h2, .visit-copy h2, .contact-heading h2 { max-width: 620px; margin-bottom: 0; font-size: clamp(40px, 5vw, 68px); font-weight: 600; }
.section-intro { max-width: 350px; margin: 0 4% 6px 0; color: var(--muted); font-size: 14px; line-height: 1.7; }
.category-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.category-card { min-height: 350px; display: flex; flex-direction: column; padding: 20px 20px 22px; border-radius: 6px; overflow: hidden; }
.category-pink { color: #fff; background: var(--pink); background-image: radial-gradient(circle at 82% 12%, rgba(255,255,255,.16) 0 2px, transparent 2.5px); background-size: 20px 20px; }
.category-blue { color: #fff; background: var(--blue); }
.category-orange { color: var(--ink); background: var(--orange); background-image: radial-gradient(circle at 14% 20%, rgba(255,255,255,.25) 0 2px, transparent 2.5px); background-size: 22px 22px; }
.category-cream { color: var(--ink); background: var(--cream); }
.category-top { display: flex; align-items: center; justify-content: space-between; font-size: 10px; font-weight: 700; letter-spacing: .11em; text-transform: uppercase; }
.category-tag { opacity: .82; }
.category-arrow { font-size: 22px; line-height: 1; }
.category-card h3 { margin: 0 0 9px; font-size: 24px; letter-spacing: -.06em; }
.category-card p { max-width: 215px; margin: 0; opacity: .78; font-size: 12px; line-height: 1.55; }
.category-image { height: 165px; margin: auto 0 16px; overflow: hidden; border: 1px solid rgba(255,255,255,.24); border-radius: 4px; background: var(--peach); }
.category-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease, filter .3s ease; }
.category-card:hover .category-image img { transform: scale(1.05); filter: saturate(1.08); }
.category-illustration { position: relative; height: 165px; margin: auto 0 16px; }
.spice-bowl { display: flex; align-items: end; justify-content: center; gap: 6px; padding-bottom: 26px; }
.spice-bowl::after { position: absolute; bottom: 10px; left: 18%; right: 18%; height: 22px; border-radius: 0 0 60px 60px; background: rgba(255, 255, 255, .92); content: ""; }
.spice-bowl span { z-index: 1; width: 35px; height: 35px; border: 3px solid rgba(255, 255, 255, .8); border-radius: 50%; background: #a84756; }
.spice-bowl span:nth-child(2) { width: 51px; height: 51px; background: #d19d39; }
.spice-bowl span:nth-child(3) { width: 39px; height: 39px; background: #c7552a; }
.spice-bowl span:nth-child(4) { width: 30px; height: 30px; background: #8d6c32; }
.spice-bowl span:nth-child(5) { width: 45px; height: 45px; background: #efc26a; }
.rice-bag { width: 100%; display: grid; place-items: center; }
.rice-bag::before { position: absolute; width: 116px; height: 142px; border-radius: 49% 49% 12px 12px; background: #f3dfba; border: 4px solid rgba(34, 34, 34, .13); content: ""; transform: rotate(-4deg); }
.rice-bag::after { position: absolute; top: 12px; width: 70px; height: 12px; border-radius: 50%; background: rgba(62, 124, 177, .6); content: ""; }
.rice-bag span { z-index: 1; color: var(--blue); font-family: "DM Sans", Arial, sans-serif; font-size: 14px; font-weight: 700; letter-spacing: .1em; transform: rotate(-4deg); }
.snack-pack { width: 100%; display: grid; place-items: center; }
.snack-pack::before { position: absolute; width: 105px; height: 144px; border: 3px solid rgba(34, 34, 34, .12); border-radius: 8px; background: var(--pink); box-shadow: 9px 7px 0 rgba(255, 255, 255, .25); content: ""; transform: rotate(7deg); }
.snack-pack::after { position: absolute; width: 70px; height: 44px; border-radius: 50%; background: #f8db84; content: ""; transform: translate(0, 6px) rotate(7deg); }
.snack-pack span { z-index: 1; color: #fff; font-family: "DM Sans", Arial, sans-serif; font-size: 10px; font-weight: 700; transform: translateY(-42px) rotate(7deg); }
.fresh-basket { display: flex; align-items: center; justify-content: center; gap: 10px; }
.fresh-basket::before { position: absolute; bottom: 22px; width: 175px; height: 64px; border: 5px solid var(--pink); border-top: 0; border-radius: 0 0 90px 90px; content: ""; }
.fresh-basket::after { position: absolute; bottom: 73px; width: 120px; height: 30px; border-top: 5px solid var(--pink); border-radius: 50%; content: ""; }
.fresh-basket span { z-index: 1; display: grid; place-items: center; width: 42px; height: 54px; border-radius: 50% 50% 44% 44%; color: #fff; background: #84a954; font-size: 12px; transform: translateY(-8px) rotate(-10deg); }
.fresh-basket span:nth-child(2) { height: 67px; background: var(--orange); transform: translateY(-21px) rotate(3deg); }
.fresh-basket span:nth-child(3) { background: var(--blue); transform: translateY(-13px) rotate(12deg); }

.new-section { padding-bottom: 132px; }
.compact-heading { margin-bottom: 34px; }
.dark-link { margin-bottom: 7px; }
.new-grid { display: grid; grid-template-columns: 1.18fr .82fr; gap: 16px; }
.new-card { overflow: hidden; border-radius: 6px; background: var(--cream); }
.new-image { height: 315px; overflow: hidden; background: #ded5d1; }
.new-card-tall .new-image { height: 315px; }
.new-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.new-card:hover .new-image img { transform: scale(1.04); }
.new-card-body { display: grid; grid-template-columns: 38px 1fr 36px; align-items: center; gap: 15px; min-height: 110px; padding: 20px 22px; }
.new-index { align-self: start; color: var(--pink); font-family: "Space Grotesk", sans-serif; font-size: 12px; font-weight: 700; }
.new-card h3 { margin: 0 0 5px; font-size: 22px; }
.new-card p { margin: 0; color: var(--muted); font-size: 12px; }
.circle-arrow { display: grid; place-items: center; width: 34px; height: 34px; border: 1px solid var(--line); border-radius: 50%; font-size: 18px; transition: background .2s ease, color .2s ease; }
.new-card:hover .circle-arrow { color: #fff; background: var(--pink); }

.about-section { position: relative; padding-block: 130px; color: #fff; background: var(--blue); overflow: hidden; }
.about-section::after { position: absolute; right: -70px; bottom: -140px; width: 370px; height: 370px; border: 1px solid rgba(255,255,255,.16); border-radius: 50%; content: ""; }
.about-grid { display: grid; grid-template-columns: minmax(0, .93fr) minmax(0, 1.07fr); align-items: center; gap: clamp(50px, 9vw, 135px); }
.about-photo { position: relative; min-height: 555px; padding: 15px; border: 1px solid rgba(255,255,255,.35); border-radius: 3px 66px 3px 3px; transform: rotate(-2deg); }
.about-photo img { width: 100%; height: 100%; min-height: 523px; object-fit: cover; border-radius: 3px 50px 3px 3px; }
.photo-caption { position: absolute; right: -29px; bottom: 35px; padding: 13px 19px; color: var(--ink); background: var(--orange); font-family: "Fraunces", Georgia, serif; font-size: 13px; font-weight: 700; transform: rotate(7deg); }
.about-copy .eyebrow { color: var(--orange); }
.about-copy h2 { max-width: 590px; margin-bottom: 25px; }
.about-copy h2 i { color: var(--orange); }
.about-copy > p:not(.eyebrow) { max-width: 500px; color: rgba(255,255,255,.78); font-size: 15px; }
.about-facts { display: flex; gap: 42px; margin: 40px 0 36px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.24); }
.about-facts span { display: block; }
.about-facts strong, .about-facts small { display: block; }
.about-facts strong { color: var(--orange); font-family: "Fraunces", Georgia, serif; font-size: 23px; }
.about-facts small { margin-top: 3px; color: rgba(255,255,255,.7); font-size: 11px; }
.about-copy .button-dark { color: var(--ink); background: #fff; }
.about-copy .button-dark:hover { color: #fff; background: var(--pink); }

.review-section { display: grid; grid-template-columns: 100px 1fr 175px; align-items: center; gap: 28px; padding-top: 88px; padding-bottom: 92px; }
.review-mark { color: var(--pink); font-family: Georgia, serif; font-size: 120px; line-height: .6; transform: translateY(11px); }
.dark-stars { margin-bottom: 18px; }
.review-content blockquote { max-width: 700px; margin: 0 0 17px; font-family: "Space Grotesk", sans-serif; font-size: clamp(24px, 3vw, 38px); font-weight: 500; line-height: 1.13; letter-spacing: -.05em; }
.review-source { margin: 0; color: var(--muted); font-size: 11px; }
.review-score { padding-left: 24px; border-left: 1px solid var(--line); }
.review-score strong { font-family: "Fraunces", Georgia, serif; font-size: 50px; line-height: 1; letter-spacing: -.08em; }
.review-score span { color: var(--muted); font-size: 13px; }
.review-score small { display: block; margin-top: 8px; color: var(--muted); font-size: 11px; }

.visit-section { padding-top: 126px; padding-bottom: 110px; background: var(--cream); }
.visit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 90px; align-items: end; }
.visit-copy h2 { margin-bottom: 23px; }
.visit-lead { max-width: 455px; margin-bottom: 34px; color: var(--muted); font-size: 15px; }
.address-card { display: flex; gap: 15px; align-items: flex-start; max-width: 390px; padding-top: 22px; border-top: 1px solid var(--line); }
.address-icon { display: grid; place-items: center; width: 36px; height: 36px; border-radius: 50%; color: #fff; background: var(--pink); font-size: 21px; }
.address-card strong { font-size: 14px; }
.address-card p { margin: 4px 0 11px; color: var(--muted); font-size: 13px; }
.address-card a { color: var(--pink); font-size: 12px; font-weight: 700; }
.hours-card { padding: 31px 32px 28px; border-radius: 7px; background: #fff; box-shadow: 0 15px 38px rgba(34,34,34,.06); }
.hours-top { display: flex; justify-content: space-between; align-items: center; gap: 15px; padding-bottom: 22px; border-bottom: 1px solid var(--line); }
.hours-top .eyebrow { margin: 0; color: var(--ink); }
.open-pill { display: inline-flex; align-items: center; gap: 7px; color: #349567; font-size: 11px; font-weight: 700; }
.open-pill span { width: 7px; height: 7px; border-radius: 50%; background: #55bd8d; box-shadow: 0 0 0 4px rgba(85,189,141,.14); }
.hours-list { padding-block: 10px 14px; }
.hours-list div { display: flex; align-items: center; justify-content: space-between; padding: 6px 0; font-size: 13px; }
.hours-list span { color: var(--muted); }
.hours-list strong { font-size: 13px; }
.hours-list .closed strong { color: var(--pink); }
.full-button { width: 100%; margin-top: 4px; }
.map-wrap { position: relative; min-height: 370px; margin-top: 58px; overflow: hidden; border-radius: 6px; background: #e4ddd7; }
.map-wrap iframe { width: 100%; height: 370px; border: 0; filter: grayscale(.15) saturate(.85); }
.map-gate { position: absolute; z-index: 2; inset: 18px 18px auto; display: flex; align-items: center; gap: 16px; padding: 16px 18px; color: var(--ink); background: rgba(255,255,255,.96); box-shadow: 0 10px 30px rgba(34,34,34,.1); }
.map-gate.is-hidden { display: none; }
.map-pin { display: grid; place-items: center; width: 35px; height: 35px; flex: 0 0 auto; color: #fff; border-radius: 50%; background: var(--pink); font-size: 19px; }
.map-gate div { flex: 1; }
.map-gate strong { display: block; font-size: 13px; }
.map-gate p { margin: 2px 0 0; color: var(--muted); font-size: 11px; }
.map-gate .button { min-height: 40px; padding: 10px 15px; font-size: 11px; }

.contact-section { display: grid; grid-template-columns: .9fr 1.1fr; gap: 100px; padding-top: 136px; padding-bottom: 134px; }
.contact-heading > p:not(.eyebrow) { max-width: 430px; margin: 24px 0 32px; color: var(--muted); font-size: 15px; }
.contact-phone { display: flex; align-items: center; gap: 13px; max-width: 350px; padding-block: 16px; border-block: 1px solid var(--line); }
.contact-phone > span:last-child { margin-left: auto; color: var(--pink); font-size: 19px; }
.contact-phone-icon { display: grid; place-items: center; width: 34px; height: 34px; color: #fff; border-radius: 50%; background: var(--pink); }
.contact-phone-icon svg { width: 18px; height: 18px; }
.contact-phone small, .contact-phone strong { display: block; }
.contact-phone small { color: var(--muted); font-size: 11px; }
.contact-phone strong { font-family: "Fraunces", Georgia, serif; font-size: 20px; letter-spacing: -.03em; }
.social-note { display: flex; align-items: center; gap: 12px; margin-top: 25px; color: var(--muted); }
.instagram-icon { display: grid; place-items: center; width: 31px; height: 31px; border: 1px solid var(--line); border-radius: 9px; color: var(--pink); font-size: 25px; line-height: 1; }
.social-note strong, .social-note small { display: block; }
.social-note strong { color: var(--ink); font-size: 12px; }
.social-note small { font-size: 11px; }
.contact-form { padding: 31px 32px 28px; border: 1px solid var(--line); border-radius: 6px; background: var(--cream); }
.form-row { display: flex; flex-direction: column; gap: 8px; margin-bottom: 22px; }
.form-row label, .newsletter-form label { color: var(--ink); font-size: 11px; font-weight: 700; }
.form-row label span { color: var(--muted); font-weight: 400; }
.form-row input, .form-row textarea, .newsletter-input input { width: 100%; padding: 12px 0; color: var(--ink); border: 0; border-bottom: 1px solid var(--line); outline: 0; background: transparent; font-size: 14px; resize: vertical; }
.form-row input:focus, .form-row textarea:focus, .newsletter-input input:focus { border-color: var(--pink); }
.form-row input::placeholder, .form-row textarea::placeholder, .newsletter-input input::placeholder { color: #aca4a6; }
.form-submit { display: flex; align-items: center; gap: 20px; padding-top: 8px; }
.form-submit small { max-width: 230px; color: var(--muted); font-size: 10px; line-height: 1.45; }
.hidden-field { position: absolute; left: -9999px; }

.newsletter-section { color: #fff; background: var(--pink); }
.newsletter-inner { display: flex; justify-content: space-between; align-items: center; gap: 60px; padding-top: 74px; padding-bottom: 75px; }
.light-eyebrow { color: rgba(255,255,255,.75); }
.newsletter-inner h2 { margin: 0; font-size: clamp(37px, 4.5vw, 60px); }
.newsletter-inner h2 i { color: var(--orange); }
.newsletter-form { width: min(100%, 390px); }
.newsletter-form label { color: rgba(255,255,255,.8); }
.newsletter-input { display: flex; align-items: center; gap: 10px; margin-top: 7px; border-bottom: 1px solid rgba(255,255,255,.6); }
.newsletter-input input { padding-block: 13px; color: #fff; border: 0; }
.newsletter-input input::placeholder { color: rgba(255,255,255,.68); }
.newsletter-input button { width: 35px; height: 35px; flex: 0 0 auto; border: 0; border-radius: 50%; color: var(--pink); background: #fff; font-size: 19px; transition: transform .2s ease; }
.newsletter-input button:hover { transform: translateX(3px); }
.newsletter-form small { display: block; margin-top: 9px; color: rgba(255,255,255,.7); font-size: 10px; }

.legal-section { padding-top: 100px; padding-bottom: 90px; }
.legal-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; }
.legal-grid article { max-width: 500px; }
.legal-grid h2 { margin: 0 0 19px; font-size: 34px; }
.legal-grid p { color: var(--muted); font-size: 12px; }
.legal-grid a { color: var(--pink); font-weight: 600; }
.legal-hint { padding: 12px 14px; border-left: 2px solid var(--orange); background: var(--cream); font-size: 11px !important; }

.site-footer { color: rgba(255,255,255,.72); background: var(--ink); }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 28px; min-height: 100px; }
.footer-brand { color: #fff; }
.footer-brand .brand-mark { color: var(--orange); border-color: var(--orange); background: var(--ink); }
.footer-brand .brand-text em { color: var(--orange); }
.footer-inner p { margin: 0; font-size: 11px; }
.footer-links { display: flex; gap: 21px; font-size: 11px; }
.footer-links a:hover { color: #fff; }

.cookie-notice { position: fixed; z-index: 40; right: 22px; bottom: 22px; display: flex; align-items: flex-start; gap: 18px; width: min(430px, calc(100% - 44px)); padding: 17px 18px; border: 1px solid rgba(34,34,34,.09); border-radius: 6px; color: var(--ink); background: rgba(255,255,255,.97); box-shadow: 0 18px 50px rgba(34,34,34,.16); transition: opacity .25s ease, transform .25s ease; }
.cookie-notice.is-hidden { opacity: 0; pointer-events: none; transform: translateY(12px); }
.cookie-notice strong { display: block; margin-bottom: 3px; font-size: 12px; }
.cookie-notice p { max-width: 340px; margin: 0; color: var(--muted); font-size: 11px; line-height: 1.45; }
.cookie-close { width: 24px; height: 24px; flex: 0 0 auto; border: 0; color: var(--muted); background: none; font-size: 22px; line-height: 1; }

@media (max-width: 940px) {
  :root { --page: min(100% - 42px, 700px); }
  .main-nav { gap: 18px; }
  .main-nav .nav-call { padding-inline: 13px; }
  .hero { grid-template-columns: 1fr; gap: 16px; padding-top: 68px; }
  .hero-copy { padding-block: 0 15px; }
  .hero-visual { min-height: 510px; }
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .section-heading { align-items: flex-start; flex-direction: column; gap: 22px; }
  .section-intro { margin: 0; max-width: 560px; }
  .about-grid { gap: 55px; }
  .visit-grid { gap: 40px; }
  .contact-section { gap: 50px; }
}

@media (max-width: 700px) {
  :root { --page: calc(100% - 36px); }
  .announcement-inner { min-height: 39px; }
  .announcement-inner a { display: none; }
  .nav-shell { min-height: 76px; }
  .brand-text { font-size: 18px; }
  .menu-toggle { position: relative; z-index: 22; display: flex; flex-direction: column; gap: 4px; width: 35px; padding: 8px 0; }
  .menu-toggle span:not(.sr-only) { width: 25px; height: 2px; margin-left: auto; background: var(--ink); transition: transform .2s ease, opacity .2s ease; }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
  .main-nav { position: fixed; z-index: 21; inset: 0; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; gap: 25px; padding: 100px 35px 45px; color: var(--ink); background: #fff; font-family: "Space Grotesk", sans-serif; font-size: 30px; letter-spacing: -.04em; opacity: 0; pointer-events: none; transform: translateY(-7px); transition: opacity .2s ease, transform .2s ease; }
  .main-nav.is-open { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .main-nav .nav-call { margin-top: 8px; font-family: "DM Sans", sans-serif; font-size: 14px; letter-spacing: 0; }
  .hero { min-height: auto; padding-top: 55px; padding-bottom: 66px; }
  h1 { font-size: clamp(55px, 17vw, 92px); }
  .hero-text { font-size: 16px; }
  .hero-proof { align-items: flex-start; flex-direction: column; gap: 3px; margin-top: 39px; }
  .hero-visual { min-height: 350px; }
  .hero-photo-main { inset: 18px 16% 64px 7%; border-radius: 8px 8px 8px 40px; }
  .hero-photo-small { width: 53%; height: 49%; border-width: 5px; }
  .hero-label { left: -2%; bottom: 3%; max-width: 185px; padding: 10px 11px; }
  .hero-scribble { right: 0; top: -13px; font-size: 16px; }
  .quick-grid { grid-template-columns: 1fr; padding-block: 6px; }
  .quick-item, .quick-item:first-child { min-height: 64px; padding: 12px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .quick-item:last-child { border-bottom: 0; }
  .section { padding-top: 92px; padding-bottom: 88px; }
  .section-heading { margin-bottom: 35px; }
  .section-heading h2, .about-copy h2, .visit-copy h2, .contact-heading h2 { font-size: clamp(39px, 12vw, 57px); }
  .category-grid { gap: 10px; }
  .category-card { min-height: 290px; padding: 14px 14px 17px; }
  .category-illustration { height: 122px; }
  .category-image { height: 122px; }
  .category-card h3 { font-size: 20px; }
  .category-card p { font-size: 11px; }
  .spice-bowl span { width: 24px !important; height: 24px !important; }
  .spice-bowl::after { bottom: 7px; }
  .rice-bag::before { width: 85px; height: 106px; }
  .snack-pack::before { width: 78px; height: 105px; }
  .snack-pack::after { width: 53px; height: 33px; }
  .snack-pack span { transform: translateY(-30px) rotate(7deg); }
  .fresh-basket::before { width: 135px; height: 52px; bottom: 8px; }
  .fresh-basket::after { bottom: 51px; width: 92px; }
  .fresh-basket span { width: 30px; height: 42px; }
  .new-section { padding-bottom: 90px; }
  .new-grid { grid-template-columns: 1fr; gap: 12px; }
  .new-image, .new-card-tall .new-image { height: 245px; }
  .new-card-body { min-height: 92px; padding: 16px; }
  .new-card h3 { font-size: 19px; }
  .about-section { padding-block: 90px; }
  .about-grid { grid-template-columns: 1fr; gap: 55px; }
  .about-photo { min-height: 385px; }
  .about-photo img { min-height: 355px; }
  .photo-caption { right: -6px; bottom: 22px; }
  .about-facts { gap: 30px; margin-top: 30px; }
  .review-section { grid-template-columns: 45px 1fr; gap: 12px; padding-block: 72px; }
  .review-mark { font-size: 75px; }
  .review-score { grid-column: 2; padding-left: 0; border: 0; }
  .review-score strong { font-size: 38px; }
  .review-score small { display: inline; margin-left: 8px; }
  .visit-section { padding-top: 89px; padding-bottom: 80px; }
  .visit-grid { grid-template-columns: 1fr; gap: 45px; }
  .hours-card { padding: 24px 19px; }
  .map-wrap { min-height: 300px; margin-top: 42px; }
  .map-wrap iframe { height: 300px; }
  .map-gate { inset: 12px 12px auto; flex-wrap: wrap; gap: 10px; padding: 13px; }
  .map-gate div { min-width: calc(100% - 51px); }
  .map-gate .button { margin-left: 51px; }
  .contact-section { grid-template-columns: 1fr; gap: 50px; padding-top: 92px; padding-bottom: 90px; }
  .contact-form { padding: 24px 18px; }
  .form-submit { align-items: flex-start; flex-direction: column; gap: 13px; }
  .newsletter-inner { align-items: flex-start; flex-direction: column; gap: 42px; padding-block: 58px; }
  .newsletter-form { width: 100%; }
  .legal-section { padding-block: 75px; }
  .legal-grid { grid-template-columns: 1fr; gap: 45px; }
  .footer-inner { align-items: flex-start; flex-direction: column; gap: 17px; padding-block: 28px; }
  .footer-links { flex-wrap: wrap; gap: 12px 17px; }
  .cookie-notice { right: 12px; bottom: 12px; width: calc(100% - 24px); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
