:root {
  --bg: #fff8ec;
  --bg-soft: #f7efe2;
  --surface: #ffffff;
  --surface-warm: #fffaf2;
  --text: #211b14;
  --muted: #746d63;
  --line: #e6dccd;
  --accent: #f07818;
  --accent-dark: #bd520d;
  --green: #1f7a4d;
  --green-soft: #e9f6ee;
  --charcoal: #1d2520;
  --danger: #b42318;
  --shadow: 0 14px 34px rgba(64, 43, 20, 0.12);
  --radius: 8px;
  --maxwidth: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 86px;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.5;
  padding-bottom: 104px;
}

body.modal-open {
  overflow: hidden;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  color: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

body h1,
body h2,
body h3,
body p {
  margin-top: 0;
}

body h1,
body h2,
body h3 {
  color: var(--text);
  line-height: 1.08;
}

body h1 {
  font-size: 2.75rem;
  font-weight: 900;
  letter-spacing: 0;
  margin-bottom: 16px;
  max-width: 760px;
}

body h2 {
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: 0;
  margin-bottom: 8px;
}

body h3 {
  font-size: 1.08rem;
  font-weight: 850;
  letter-spacing: 0;
  margin-bottom: 8px;
}

[hidden] {
  display: none !important;
}

.skip-link {
  background: var(--charcoal);
  border-radius: var(--radius);
  color: #ffffff;
  left: 12px;
  padding: 10px 12px;
  position: fixed;
  top: 12px;
  transform: translateY(-160%);
  transition: transform 0.2s ease;
  z-index: 100;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  background: rgba(255, 250, 242, 0.94);
  border-bottom: 1px solid rgba(230, 220, 205, 0.85);
  position: sticky;
  top: 0;
  z-index: 60;
}

.nav-shell {
  align-items: center;
  display: flex;
  gap: 18px;
  justify-content: space-between;
  margin: 0 auto;
  max-width: var(--maxwidth);
  min-height: 72px;
  padding: 0 18px;
  position: relative;
}

.brand {
  align-items: center;
  display: inline-flex;
  gap: 10px;
  min-width: 178px;
}

.brand-mark {
  align-items: center;
  background: var(--charcoal);
  border-radius: var(--radius);
  color: #fff7ea;
  display: inline-flex;
  font-weight: 900;
  height: 42px;
  justify-content: center;
  width: 42px;
}

.brand-copy {
  display: grid;
  line-height: 1.1;
}

.brand-copy strong {
  font-size: 0.98rem;
  font-weight: 900;
}

.brand-copy small {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 750;
}

.nav-links {
  align-items: center;
  display: flex;
  gap: 6px;
  justify-content: center;
}

.nav-links a {
  border-radius: var(--radius);
  color: #3f3428;
  font-size: 0.92rem;
  font-weight: 800;
  padding: 10px 11px;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  background: var(--green-soft);
  color: var(--green);
  outline: none;
}

.nav-links .venture-back-link {
  border-right: 1px solid var(--line);
  color: var(--green);
  font-size: 0.85rem;
  margin-right: 12px;
  padding-right: 16px;
}

.nav-actions {
  align-items: center;
  display: flex;
  gap: 8px;
}

.nav-toggle {
  display: none;
}

.btn,
.icon-button,
.nav-toggle {
  align-items: center;
  border: 0;
  border-radius: var(--radius);
  cursor: pointer;
  display: inline-flex;
  font-weight: 850;
  gap: 8px;
  justify-content: center;
  min-height: 44px;
  padding: 10px 15px;
  transition: background 0.16s ease, border-color 0.16s ease, box-shadow 0.16s ease, color 0.16s ease, transform 0.16s ease;
}

.nav-toggle {
  display: none;
}

.btn:hover,
.icon-button:hover,
.nav-toggle:hover {
  transform: translateY(-1px);
}

.btn:focus-visible,
.icon-button:focus-visible,
.nav-toggle:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  box-shadow: 0 0 0 3px rgba(31, 122, 77, 0.2);
  outline: 2px solid var(--green);
  outline-offset: 2px;
}

.btn:disabled {
  cursor: not-allowed;
  opacity: 0.58;
  transform: none;
}

.btn.primary {
  background: var(--accent);
  box-shadow: 0 12px 24px rgba(240, 120, 24, 0.22);
  color: #ffffff;
}

.btn.primary:hover {
  background: var(--accent-dark);
}

.btn.outline,
.btn.light {
  background: #ffffff;
  border: 1px solid var(--line);
  color: var(--text);
}

.btn.light {
  background: rgba(255, 255, 255, 0.9);
}

.btn.dark {
  background: var(--charcoal);
  color: #ffffff;
}

.btn.compact {
  min-height: 40px;
  padding: 8px 12px;
}

.btn.large {
  min-height: 50px;
  padding: 12px 18px;
}

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

.icon-button,
.nav-toggle {
  background: #ffffff;
  border: 1px solid var(--line);
  min-width: 44px;
  padding: 10px;
  position: relative;
}

.icon-button.with-label {
  padding-inline: 12px;
}

.btn svg,
.icon-button svg,
.nav-toggle svg,
.badge svg,
.step-card svg,
.trust-card svg {
  height: 18px;
  width: 18px;
}

.cart-count {
  align-items: center;
  background: var(--green);
  border: 2px solid #ffffff;
  border-radius: 999px;
  color: #ffffff;
  display: inline-flex;
  font-size: 0.72rem;
  font-weight: 900;
  height: 21px;
  justify-content: center;
  min-width: 21px;
  padding: 0 5px;
  position: absolute;
  right: -7px;
  top: -7px;
}

.hero {
  background:
    linear-gradient(90deg, rgba(31, 23, 15, 0.84) 0%, rgba(31, 23, 15, 0.58) 46%, rgba(31, 23, 15, 0.18) 100%),
    url("https://images.unsplash.com/photo-1585937421612-70a008356fbe?auto=format&fit=crop&w=1800&q=82");
  background-position: center;
  background-size: cover;
  min-height: 78svh;
}

.hero-shade {
  align-items: center;
  display: grid;
  gap: 28px;
  grid-template-columns: 1fr;
  margin: 0 auto;
  max-width: var(--maxwidth);
  min-height: 78svh;
  padding: 56px 18px 72px;
}

.hero-content {
  color: #fff7ea;
  max-width: 720px;
}

.hero h1 {
  color: #ffffff;
  max-width: 820px;
}

.hero-order-card {
  align-self: center;
  background: rgba(255, 250, 242, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: var(--radius);
  box-shadow: 0 24px 70px rgba(16, 11, 5, 0.32);
  color: var(--text);
  display: grid;
  gap: 14px;
  max-width: 390px;
  padding: 18px;
}

.hero-order-card h2 {
  font-size: 1.62rem;
  margin-bottom: 0;
}

.hero-card-head,
.hero-card-meta span {
  align-items: center;
  display: inline-flex;
  gap: 8px;
}

.hero-card-head {
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.live-dot {
  background: var(--green);
  border-radius: 999px;
  box-shadow: 0 0 0 6px rgba(31, 122, 77, 0.14);
  height: 9px;
  width: 9px;
}

.hero-menu-list {
  display: grid;
  gap: 10px;
}

.hero-menu-list > div {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: grid;
  gap: 3px;
  padding: 12px;
}

.hero-menu-list strong {
  font-size: 0.96rem;
}

.hero-menu-list span,
.hero-card-meta {
  color: var(--muted);
  font-size: 0.88rem;
}

.hero-card-meta {
  display: grid;
  gap: 8px;
}

.hero-card-meta svg {
  color: var(--green);
  height: 17px;
  width: 17px;
}

.eyebrow,
.section-kicker {
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #bff1cf;
}

.subtitle {
  color: rgba(255, 250, 242, 0.88);
  font-size: 1.08rem;
  line-height: 1.65;
  margin-bottom: 22px;
  max-width: 620px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.checker-message {
  color: var(--muted);
  font-size: 0.9rem;
  margin: 0;
  min-height: 20px;
}

.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 14px;
}

.badge,
.status-pill,
.plan-tag {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-size: 0.78rem;
  font-weight: 900;
  gap: 6px;
  line-height: 1;
  padding: 8px 10px;
}

.badge {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: #ffffff;
}

.status-pill.success,
.plan-tag {
  background: var(--green-soft);
  color: var(--green);
}

.quick-strip {
  background: var(--charcoal);
  color: #ffffff;
  display: grid;
  gap: 1px;
  grid-template-columns: 1fr;
  margin: -36px auto 8px;
  max-width: var(--maxwidth);
  position: relative;
  width: calc(100% - 36px);
  z-index: 2;
}

.quick-strip > div {
  background: rgba(255, 255, 255, 0.045);
  display: grid;
  gap: 3px;
  padding: 16px;
}

.quick-strip span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.84rem;
}

.quick-strip strong {
  color: #ffffff;
  font-size: 1.02rem;
}

.service-proof {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr;
}

.proof-item {
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: flex;
  gap: 12px;
  padding: 14px;
}

.proof-item svg {
  background: var(--green-soft);
  border-radius: var(--radius);
  color: var(--green);
  flex: 0 0 auto;
  height: 38px;
  padding: 9px;
  width: 38px;
}

.proof-item div {
  display: grid;
  gap: 2px;
}

.proof-item strong {
  font-size: 0.98rem;
}

.proof-item span {
  color: var(--muted);
  font-size: 0.9rem;
}

.section-block {
  margin: 0 auto;
  max-width: var(--maxwidth);
  padding: 46px 18px 0;
}

.section-head {
  align-items: end;
  display: flex;
  gap: 16px;
  justify-content: space-between;
  margin-bottom: 18px;
}

.muted {
  color: var(--muted);
}

.form-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr;
}

.field {
  color: #3c3025;
  display: grid;
  font-weight: 850;
  gap: 7px;
}

.field input,
.field select,
.field textarea,
.search-field,
.range-field,
.select-field,
.preference-form input,
.preference-form select {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--text);
}

.field input,
.field select,
.field textarea,
.preference-form input,
.preference-form select {
  min-height: 46px;
  padding: 11px 12px;
  width: 100%;
}

.field textarea {
  min-height: 92px;
  resize: vertical;
}

.error {
  color: var(--danger);
  display: block;
  font-size: 0.88rem;
  min-height: 18px;
}

.menu-tools {
  align-items: center;
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr;
  margin-bottom: 18px;
}

.search-field {
  align-items: center;
  display: flex;
  gap: 8px;
  min-height: 48px;
  padding: 0 12px;
}

.search-field svg {
  color: var(--muted);
  flex: 0 0 auto;
  height: 18px;
  width: 18px;
}

.search-field input {
  background: transparent;
  border: 0;
  min-height: 44px;
  outline: none;
  width: 100%;
}

.segmented {
  background: #f1e6d7;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: flex;
  gap: 4px;
  overflow-x: auto;
  padding: 4px;
}

.chip {
  background: transparent;
  border: 0;
  border-radius: var(--radius);
  cursor: pointer;
  flex: 1 0 auto;
  font-weight: 850;
  min-height: 38px;
  padding: 8px 12px;
  white-space: nowrap;
}

.chip.active {
  background: var(--surface);
  color: var(--green);
  box-shadow: 0 4px 12px rgba(64, 43, 20, 0.08);
}

.range-field,
.select-field {
  display: grid;
  gap: 8px;
  padding: 10px 12px;
}

.range-field span,
.select-field span {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 850;
}

.range-field input {
  accent-color: var(--green);
}

.select-field select {
  background: transparent;
  border: 0;
  min-height: 24px;
  outline: none;
}

.menu-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}

.menu-card,
.subscription-card,
.step-card,
.trust-card,
blockquote {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 28px rgba(64, 43, 20, 0.08);
}

.menu-card {
  display: grid;
  overflow: hidden;
  position: relative;
}

.menu-card.selected {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(31, 122, 77, 0.13), 0 14px 34px rgba(64, 43, 20, 0.13);
}

.menu-image {
  aspect-ratio: 16 / 10;
  background:
    linear-gradient(135deg, rgba(240, 120, 24, 0.18), rgba(31, 122, 77, 0.12)),
    #eadbc5;
  overflow: hidden;
  position: relative;
}

.menu-image img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.menu-image.image-fallback::after {
  color: rgba(33, 27, 20, 0.52);
  content: "Fresh homemade meal";
  font-weight: 900;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
}

.menu-body {
  display: grid;
  gap: 12px;
  padding: 15px;
}

.menu-meta {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.menu-meta span {
  background: var(--surface-warm);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 850;
  padding: 5px 8px;
}

.menu-meta .veg {
  background: var(--green-soft);
  border-color: #c9ead6;
  color: var(--green);
}

.menu-card h3 {
  margin-bottom: 0;
}

.includes {
  color: var(--muted);
  margin: 0;
  min-height: 44px;
}

.menu-bottom,
.cart-item,
.summary-box div,
.dashboard-item {
  align-items: center;
  display: flex;
  gap: 12px;
  justify-content: space-between;
}

.menu-price {
  background: var(--charcoal);
  border-radius: var(--radius);
  color: #ffffff;
  font-size: 1rem;
  font-weight: 900;
  padding: 8px 10px;
  white-space: nowrap;
}

.qty {
  align-items: center;
  display: inline-flex;
  gap: 7px;
}

.step {
  align-items: center;
  background: #f0e7d9;
  border: 1px solid transparent;
  border-radius: var(--radius);
  color: var(--text);
  cursor: pointer;
  display: inline-flex;
  font-size: 1.24rem;
  font-weight: 900;
  height: 40px;
  justify-content: center;
  line-height: 1;
  width: 40px;
}

.step.plus {
  background: var(--green);
  color: #ffffff;
}

.step:hover {
  border-color: #bba98f;
}

.qty-input {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 900;
  height: 40px;
  text-align: center;
  width: 48px;
}

.empty-state,
.empty-cart {
  background: var(--surface-warm);
  border: 1px dashed #bfae93;
  border-radius: var(--radius);
  color: var(--muted);
  margin: 0;
  padding: 14px;
}

.subscription-grid,
.steps-grid,
.trust-grid,
.testimonial-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}

.subscription-card,
.step-card,
.trust-card {
  display: grid;
  gap: 10px;
  padding: 18px;
}

.subscription-card.featured {
  border-color: rgba(240, 120, 24, 0.55);
  box-shadow: 0 0 0 3px rgba(240, 120, 24, 0.12), var(--shadow);
}

.subscription-price {
  color: var(--accent-dark);
  font-size: 1.3rem;
  font-weight: 900;
  margin-bottom: 0;
}

.subscription-card ul {
  color: var(--muted);
  display: grid;
  gap: 7px;
  margin: 0 0 6px 18px;
  padding: 0;
}

.step-card svg,
.trust-card svg {
  color: var(--green);
  height: 28px;
  width: 28px;
}

.step-card p,
.trust-card p {
  color: var(--muted);
  margin: 0;
}

.cart-items {
  min-height: 52px;
}

.cart-item {
  border-bottom: 1px dashed var(--line);
  padding: 11px 0;
}

.cart-item strong {
  display: block;
}

.cart-item small {
  color: var(--muted);
}

.cart-footer {
  align-items: center;
  display: flex;
  gap: 12px;
  justify-content: space-between;
  margin-top: 14px;
}

.total {
  font-size: 1.12rem;
  font-weight: 900;
}

.areas-section,
.contact-section {
  align-items: center;
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
}

.inline-link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.inline-link-row a {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--green);
  font-size: 0.9rem;
  font-weight: 800;
  padding: 9px 13px;
  text-decoration: none;
}

.local-seo-section {
  padding-top: 42px;
}

.local-guide-grid {
  display: grid;
  gap: 14px;
}

.local-guide-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
  display: grid;
  gap: 10px;
  padding: 18px;
}

.local-guide-card span {
  color: var(--accent-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.local-guide-card h3 {
  font-size: 1.12rem;
  margin: 0;
}

.local-guide-card p {
  color: var(--muted);
  margin: 0;
}

.local-guide-card a {
  color: var(--green);
  font-weight: 900;
  text-decoration: none;
}

.seo-hero {
  background:
    linear-gradient(90deg, rgba(31, 23, 15, 0.88), rgba(31, 23, 15, 0.56)),
    url("https://images.unsplash.com/photo-1565557623262-b51c2513a641?auto=format&fit=crop&w=1800&q=82");
  background-position: center;
  background-size: cover;
  color: #fff7ea;
  padding: 112px 18px 58px;
}

.seo-hero-inner {
  margin: 0 auto;
  max-width: var(--maxwidth);
}

.breadcrumb {
  color: rgba(255, 250, 242, 0.78);
  display: flex;
  flex-wrap: wrap;
  font-size: 0.9rem;
  gap: 8px;
  margin-bottom: 18px;
}

.breadcrumb a {
  color: #bff1cf;
  font-weight: 800;
  text-decoration: none;
}

.seo-hero h1 {
  color: #ffffff;
  max-width: 860px;
}

.seo-hero p {
  max-width: 760px;
}

.seo-layout {
  display: grid;
  gap: 18px;
}

.content-panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
  padding: 20px;
}

.content-panel h2,
.content-panel h3 {
  margin-top: 0;
}

.content-panel p,
.content-panel li {
  color: var(--muted);
}

.seo-list {
  display: grid;
  gap: 10px;
  padding-left: 18px;
}

.article-meta {
  color: var(--accent-dark);
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.newsletter-section {
  align-items: center;
  background: var(--charcoal);
  color: #ffffff;
  display: grid;
  gap: 22px;
  grid-template-columns: 1fr;
  margin-top: 46px;
  max-width: none;
  padding: 42px max(18px, calc((100vw - var(--maxwidth)) / 2 + 18px));
}

.newsletter-section h2 {
  color: #ffffff;
}

.newsletter-section .section-kicker {
  color: #bff1cf;
}

.newsletter-section .muted {
  color: rgba(255, 250, 242, 0.76);
}

.newsletter-copy {
  max-width: 620px;
}

.newsletter-form {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  display: grid;
  gap: 12px;
  padding: 16px;
}

.newsletter-form .field {
  color: #fff7ea;
}

.newsletter-form input {
  background: #ffffff;
}

.newsletter-form .checker-message {
  color: rgba(255, 250, 242, 0.82);
}

.site-footer {
  align-items: center;
  background: #172018;
  color: rgba(255, 250, 242, 0.82);
  display: grid;
  gap: 18px;
  margin-top: 54px;
  padding: 28px 18px;
}

.site-footer > div,
.site-footer nav {
  margin: 0 auto;
  max-width: var(--maxwidth);
  width: 100%;
}

.site-footer strong {
  color: #ffffff;
  display: block;
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.site-footer p {
  margin: 0;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
}

.site-footer a {
  color: #bff1cf;
  font-weight: 800;
  text-decoration: none;
}

.contact-actions {
  display: grid;
  gap: 10px;
}

.trust-grid {
  margin-bottom: 16px;
}

blockquote {
  margin: 0;
  padding: 18px;
}

blockquote p {
  color: #3a2d20;
  font-weight: 750;
  margin-bottom: 10px;
}

blockquote cite {
  color: var(--muted);
  font-style: normal;
  font-weight: 850;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-question {
  align-items: center;
  background: transparent;
  border: 0;
  cursor: pointer;
  display: flex;
  font-weight: 900;
  justify-content: space-between;
  padding: 16px;
  text-align: left;
  width: 100%;
}

.faq-question svg {
  flex: 0 0 auto;
  height: 18px;
  transition: transform 0.16s ease;
  width: 18px;
}

.faq-question[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.faq-answer {
  border-top: 1px solid var(--line);
  color: var(--muted);
  padding: 0 16px 16px;
}

.faq-answer p {
  margin: 12px 0 0;
}

.sticky-order {
  align-items: center;
  background: rgba(255, 255, 255, 0.96);
  border-top: 1px solid var(--line);
  bottom: 0;
  box-shadow: 0 -12px 32px rgba(64, 43, 20, 0.13);
  display: flex;
  gap: 12px;
  justify-content: space-between;
  left: 0;
  padding: 10px 14px;
  position: fixed;
  right: 0;
  z-index: 55;
}

.sticky-info {
  display: grid;
  gap: 2px;
}

.sticky-line {
  color: var(--muted);
  font-size: 0.9rem;
}

.sticky-line strong {
  color: var(--text);
}

.sticky-actions {
  align-items: center;
  display: flex;
  gap: 8px;
}

.floating-whatsapp {
  align-items: center;
  background: #24d366;
  border: 0;
  border-radius: 999px;
  bottom: 86px;
  box-shadow: 0 12px 28px rgba(31, 122, 77, 0.28);
  color: #ffffff;
  cursor: pointer;
  display: inline-flex;
  height: 54px;
  justify-content: center;
  position: fixed;
  right: 16px;
  width: 54px;
  z-index: 54;
}

.floating-whatsapp svg {
  height: 24px;
  width: 24px;
}

.notice {
  background: var(--charcoal);
  border-radius: var(--radius);
  bottom: 152px;
  box-shadow: var(--shadow);
  color: #ffffff;
  display: none;
  left: 50%;
  max-width: calc(100vw - 28px);
  padding: 12px 14px;
  position: fixed;
  text-align: center;
  transform: translateX(-50%);
  width: max-content;
  z-index: 80;
}

.modal {
  align-items: center;
  background: rgba(29, 37, 32, 0.58);
  inset: 0;
  justify-content: center;
  padding: 18px;
  position: fixed;
  z-index: 90;
}

.modal:not([hidden]) {
  display: flex;
}

.modal-panel {
  background: var(--surface-warm);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 24px 70px rgba(18, 16, 13, 0.32);
  max-height: calc(100svh - 36px);
  overflow: auto;
  padding: 18px;
  width: min(100%, 960px);
}

.account-panel {
  width: min(100%, 1000px);
}

.success-panel {
  max-width: 460px;
  overflow: hidden;
  position: relative;
  text-align: center;
}

.modal-head {
  align-items: start;
  display: flex;
  gap: 12px;
  justify-content: space-between;
  margin-bottom: 18px;
}

.checkout-layout,
.dashboard-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
}

.checkout-side,
.checkout-details,
.login-form,
.dashboard-grid section {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
}

.checkout-details {
  display: grid;
  gap: 14px;
  margin-top: 16px;
}

.checkout-details h3 {
  margin-bottom: 0;
}

.location-capture {
  gap: 8px;
}

.payment-options {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
}

.payment-options label {
  align-items: center;
  background: var(--surface-warm);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: flex;
  font-weight: 850;
  gap: 8px;
  min-height: 44px;
  padding: 10px 12px;
}

.payment-options input {
  accent-color: var(--green);
}

.summary-box {
  background: var(--charcoal);
  border-radius: var(--radius);
  color: #ffffff;
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
  padding: 14px;
}

.summary-box span {
  color: rgba(255, 255, 255, 0.72);
}

.summary-box div:last-child {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding-top: 8px;
}

.dashboard-head {
  align-items: center;
  display: flex;
  gap: 12px;
  justify-content: space-between;
  margin-bottom: 14px;
}

.dashboard-list {
  display: grid;
  gap: 10px;
}

.dashboard-item {
  background: var(--surface-warm);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px;
}

.dashboard-item p {
  color: var(--muted);
  margin: 2px 0 0;
}

.preference-form {
  display: grid;
  gap: 10px;
}

.preference-form label {
  color: #3c3025;
  display: grid;
  font-weight: 850;
  gap: 6px;
}

.success-icon {
  align-items: center;
  background: var(--green);
  border-radius: 999px;
  color: #ffffff;
  display: inline-flex;
  height: 62px;
  justify-content: center;
  margin-bottom: 14px;
  position: relative;
  width: 62px;
  z-index: 1;
}

.success-icon svg {
  height: 30px;
  width: 30px;
}

.success-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 18px;
}

.confetti span {
  animation: confetti 1.4s ease-out infinite;
  background: var(--accent);
  border-radius: 2px;
  height: 12px;
  position: absolute;
  top: -16px;
  width: 8px;
}

.confetti span:nth-child(1) { left: 14%; }
.confetti span:nth-child(2) { animation-delay: 0.12s; background: var(--green); left: 31%; }
.confetti span:nth-child(3) { animation-delay: 0.22s; background: #f2c14e; left: 50%; }
.confetti span:nth-child(4) { animation-delay: 0.32s; background: #be5a38; left: 68%; }
.confetti span:nth-child(5) { animation-delay: 0.42s; background: #2f6f9f; left: 82%; }

@keyframes confetti {
  0% {
    opacity: 0;
    transform: translateY(0) rotate(0deg);
  }
  20% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateY(240px) rotate(220deg);
  }
}

@media (min-width: 640px) {
  body h1 {
    font-size: 3.45rem;
  }

  .quick-strip,
  .service-proof,
  .form-grid,
  .subscription-grid,
  .steps-grid,
  .trust-grid,
  .testimonial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .field.full {
    grid-column: 1 / -1;
  }

  .menu-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 900px) {
  body h1 {
    font-size: 4.35rem;
  }

  .hero-shade {
    grid-template-columns: minmax(0, 1fr) minmax(330px, 390px);
  }

  .quick-strip {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .service-proof {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .menu-tools {
    grid-template-columns: minmax(260px, 1.2fr) minmax(310px, 1.2fr) minmax(170px, 0.7fr) minmax(180px, 0.8fr);
  }

  .menu-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .subscription-grid,
  .trust-grid,
  .local-guide-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .steps-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .areas-section,
  .newsletter-section,
  .contact-section {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.45fr);
  }

  .contact-actions {
    justify-self: end;
    min-width: 320px;
  }

  .checkout-layout {
    grid-template-columns: minmax(0, 1fr) 330px;
  }

  .dashboard-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .seo-layout {
    grid-template-columns: minmax(0, 1fr) 330px;
  }
}

@media (max-width: 1030px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    display: none;
    flex-direction: column;
    left: 18px;
    padding: 8px;
    position: absolute;
    right: 18px;
    top: calc(100% + 8px);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    width: 100%;
  }
}

@media (max-width: 760px) {
  body {
    padding-bottom: 126px;
  }

  body h1 {
    font-size: 2.38rem;
  }

  body h2 {
    font-size: 1.62rem;
  }

  .nav-shell {
    gap: 8px;
    min-height: 68px;
    padding: 0 12px;
  }

  .brand {
    min-width: 0;
  }

  .brand-copy small {
    display: none;
  }

  .nav-actions {
    gap: 6px;
  }

  .icon-button.with-label span,
  .nav-actions .btn span {
    display: none;
  }

  .nav-actions .btn {
    min-width: 44px;
    padding-inline: 10px;
  }

  .hero,
  .hero-shade {
    min-height: 74svh;
  }

  .hero {
    background-position: 62% center;
  }

  .hero-shade {
    padding: 38px 16px 64px;
  }

  .quick-strip {
    margin-top: -26px;
    width: calc(100% - 24px);
  }

  .section-block {
    padding-top: 38px;
  }

  .newsletter-section {
    padding-bottom: 38px;
  }

  .section-head,
  .cart-footer,
  .dashboard-head {
    align-items: stretch;
    flex-direction: column;
  }

  .menu-bottom {
    align-items: stretch;
    flex-direction: column;
  }

  .menu-bottom .qty {
    justify-content: space-between;
  }

  .sticky-order {
    align-items: stretch;
    flex-direction: column;
    padding-bottom: max(10px, env(safe-area-inset-bottom));
  }

  .sticky-actions {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
  }

  .floating-whatsapp {
    bottom: 138px;
  }

  .modal {
    align-items: stretch;
    padding: 10px;
  }

  .modal-panel {
    max-height: calc(100svh - 20px);
    width: 100%;
  }
}

@media (max-width: 430px) {
  .hero-ctas {
    align-items: stretch;
    flex-direction: column;
  }

  .success-actions {
    align-items: stretch;
    flex-direction: column;
  }
}

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