:root {
  --cream: #fff7f4;
  --paper: #fffefd;
  --ink: #33201c;
  --muted: #846f68;
  --line: rgba(97, 64, 56, 0.12);
  --saffron: #f7c978;
  --tomato: #e88976;
  --green: #8cbf9f;
  --leaf: #eff8ee;
  --rose: #f8d9d0;
  --mint: #dff3e8;
  --shadow: 0 24px 70px rgba(127, 89, 78, 0.13);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  max-width: 100%;
  overflow-x: hidden;
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 3%, rgba(248, 217, 208, 0.82), transparent 28rem),
    radial-gradient(circle at 85% 0%, rgba(223, 243, 232, 0.9), transparent 26rem),
    radial-gradient(circle at 52% 12%, rgba(247, 201, 120, 0.18), transparent 24rem),
    var(--cream);
  font-family: "Nunito", system-ui, sans-serif;
}

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

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

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  display: flex;
  width: 100%;
  min-width: 0;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px clamp(16px, 4vw, 42px);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 247, 244, 0.88);
  backdrop-filter: blur(18px);
}

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

.brand-mark {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 16px;
  color: #fff;
  background: linear-gradient(145deg, var(--tomato), var(--saffron));
  font-weight: 900;
  box-shadow: 0 14px 30px rgba(232, 137, 118, 0.22);
}

.brand-logo {
  width: 54px;
  height: 54px;
  border: 2px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 14px 30px rgba(232, 137, 118, 0.18);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1rem;
}

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

.desktop-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  min-width: 0;
  gap: 10px 18px;
  color: var(--muted);
  font-weight: 900;
}

.desktop-nav a,
.header-cta {
  white-space: nowrap;
}

.desktop-nav a:hover {
  color: var(--tomato);
}

.header-cta,
.primary-button,
.secondary-button,
.plan-grid a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 999px;
  padding: 0 18px;
  font-weight: 950;
  text-align: center;
}

.header-cta,
.primary-button,
.plan-grid a {
  color: #fff;
  background: linear-gradient(135deg, var(--tomato), var(--saffron));
  box-shadow: 0 16px 34px rgba(232, 137, 118, 0.2);
}

.secondary-button {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--paper);
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.mobile-menu {
  position: fixed;
  z-index: 19;
  top: 73px;
  left: 0;
  right: 0;
  display: grid;
  gap: 8px;
  padding: 14px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 247, 244, 0.96);
}

.mobile-menu[hidden] {
  display: none;
}

.mobile-menu a {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--paper);
  padding: 12px;
  font-weight: 900;
}

.hero,
.section {
  width: min(1180px, calc(100% - 32px));
  max-width: 100%;
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.78fr);
  gap: clamp(22px, 4vw, 52px);
  align-items: center;
  min-height: calc(100vh - 78px);
  padding: 42px 0;
}

.hero > *,
.section > *,
.section-heading > *,
.story-section > *,
.catering-section > *,
.order-section > *,
.founder-inner > * {
  min-width: 0;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--tomato);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  font-family: "Fraunces", Georgia, serif;
}

h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(3.2rem, 8vw, 7.2rem);
  line-height: 0.9;
  letter-spacing: -0.03em;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4.6vw, 4.5rem);
  line-height: 0.98;
}

.hero-copy > p:not(.eyebrow),
.section-heading > p,
.story-section > p,
.order-copy p,
.catering-copy p {
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.65;
}

.hero-actions,
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.trust-strip span {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.66);
  padding: 9px 12px;
  color: var(--muted);
  font-weight: 900;
}

.hero-visual {
  position: relative;
  min-height: 580px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 34px;
  background:
    linear-gradient(145deg, rgba(255, 253, 248, 0.9), rgba(223, 243, 232, 0.72)),
    var(--paper);
  box-shadow: var(--shadow);
}

.hero-collage {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(130px, 0.78fr);
  grid-template-rows: 1fr 1fr;
  gap: 12px;
  padding: 12px;
}

.hero-collage::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent 48%, rgba(51, 32, 28, 0.16)),
    radial-gradient(circle at 18% 12%, rgba(255, 255, 255, 0.24), transparent 18rem);
}

.hero-collage > img:not(.hero-logo-badge) {
  position: relative;
  z-index: 0;
  height: 100%;
  min-height: 0;
  border-radius: 24px;
  object-fit: cover;
  box-shadow: 0 18px 40px rgba(43, 27, 18, 0.14);
  transition: transform 260ms ease, filter 260ms ease;
}

.hero-collage:hover > img:not(.hero-logo-badge) {
  filter: saturate(1.06) contrast(1.03);
}

.hero-collage > img:not(.hero-logo-badge):hover {
  transform: scale(1.025);
}

.hero-main-photo {
  grid-row: 1 / -1;
}

.hero-side-photo {
  aspect-ratio: 1 / 1;
}

.meal-card {
  position: absolute;
  z-index: 3;
  right: 18px;
  bottom: 18px;
  width: min(280px, calc(100% - 36px));
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 24px;
  background: rgba(255, 253, 248, 0.88);
  backdrop-filter: blur(14px);
  padding: 18px;
  box-shadow: 0 20px 44px rgba(43, 27, 18, 0.16);
}

.hero-logo-badge {
  position: absolute;
  z-index: 3;
  top: 18px;
  right: 18px;
  width: 96px;
  height: 96px;
  border: 4px solid rgba(255, 255, 255, 0.74);
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 18px 44px rgba(43, 27, 18, 0.18);
}

.meal-card span,
.menu-grid span,
.plan-grid span,
.trust-grid span {
  color: var(--tomato);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.meal-card strong {
  display: block;
  margin: 8px 0 4px;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.8rem;
}

.section {
  padding: clamp(46px, 7vw, 86px) 0;
}

.section-heading,
.story-section,
.catering-section,
.order-section {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(300px, 0.9fr);
  gap: 24px;
  align-items: start;
}

.founder-section {
  padding-top: 22px;
  padding-bottom: 22px;
}

.founder-story {
  border: 1px solid var(--line);
  border-radius: 34px;
  background:
    radial-gradient(circle at 12% 12%, rgba(248, 217, 208, 0.74), transparent 20rem),
    radial-gradient(circle at 92% 88%, rgba(223, 243, 232, 0.78), transparent 22rem),
    rgba(255, 253, 248, 0.78);
  padding: clamp(18px, 3vw, 28px);
  box-shadow: var(--shadow);
}

.founder-story summary {
  position: relative;
  display: grid;
  gap: 8px;
  cursor: pointer;
  list-style: none;
  padding-right: 58px;
}

.founder-story summary::-webkit-details-marker {
  display: none;
}

.founder-story summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 0;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--tomato), var(--saffron));
  font-size: 1.6rem;
  font-weight: 900;
  transform: translateY(-50%);
  box-shadow: 0 16px 34px rgba(232, 137, 118, 0.22);
}

.founder-story[open] summary::after {
  content: "-";
}

.founder-story summary strong {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.8rem, 4vw, 3.4rem);
  line-height: 1;
}

.founder-story summary small {
  color: var(--muted);
  font-size: 1rem;
  font-weight: 850;
  line-height: 1.5;
}

.founder-inner {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1fr);
  gap: clamp(18px, 4vw, 34px);
  align-items: center;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.founder-photo {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 30px;
  background: var(--rose);
  box-shadow: 0 24px 60px rgba(91, 55, 28, 0.14);
}

.founder-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 58%, rgba(51, 32, 28, 0.12));
}

.founder-photo img {
  aspect-ratio: 4 / 4.2;
  object-fit: cover;
  object-position: center top;
  transition: transform 260ms ease;
}

.founder-story:hover .founder-photo img {
  transform: scale(1.025);
}

.founder-copy {
  display: grid;
  gap: 14px;
}

.founder-copy h2,
.founder-copy p,
.founder-copy strong {
  margin: 0;
}

.founder-copy p {
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.66;
}

.founder-copy strong {
  border-left: 4px solid var(--tomato);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.66);
  padding: 16px 18px;
  color: var(--ink);
  font-size: 1.06rem;
  line-height: 1.55;
  box-shadow: 0 16px 34px rgba(91, 55, 28, 0.08);
}

.founder-copy > span {
  color: var(--tomato);
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 800;
}

.story-link {
  width: fit-content;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--tomato), var(--saffron));
  padding: 12px 16px;
  font-weight: 950;
  box-shadow: 0 16px 34px rgba(232, 137, 118, 0.2);
}

.founder-page-hero,
.founder-story-page {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.72fr);
  gap: clamp(22px, 5vw, 56px);
  align-items: center;
}

.founder-page-hero {
  min-height: calc(100vh - 78px);
  padding-top: 42px;
  padding-bottom: 42px;
}

.founder-page-copy > p:not(.eyebrow) {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.65;
}

.founder-page-photo,
.story-note-card,
.founder-video-card {
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.founder-page-photo {
  overflow: hidden;
  border-radius: 36px;
  background:
    radial-gradient(circle at 25% 10%, rgba(248, 217, 208, 0.8), transparent 18rem),
    var(--paper);
  padding: 12px;
}

.founder-page-photo img {
  border-radius: 26px;
  aspect-ratio: 4 / 4.6;
  object-fit: cover;
  object-position: center top;
}

.founder-story-page {
  align-items: start;
  padding-top: 30px;
}

.story-note-card,
.founder-video-card {
  border-radius: 34px;
  background:
    radial-gradient(circle at 12% 0%, rgba(247, 201, 120, 0.18), transparent 22rem),
    rgba(255, 253, 248, 0.86);
  padding: clamp(22px, 4vw, 38px);
}

.story-note-card p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

.story-note-card blockquote {
  margin: 24px 0;
  border-left: 5px solid var(--tomato);
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(248, 217, 208, 0.56), rgba(223, 243, 232, 0.58));
  padding: 20px;
  color: var(--ink);
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.35rem, 3vw, 2.2rem);
  font-weight: 700;
  line-height: 1.18;
}

.story-note-card > span {
  color: var(--tomato);
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.45rem;
  font-weight: 800;
}

.founder-video-card {
  position: sticky;
  top: 100px;
  display: grid;
  gap: 16px;
}

.founder-video-card h2 {
  font-size: clamp(1.8rem, 3.6vw, 3.4rem);
}

.founder-video-shell {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(140, 191, 159, 0.28);
  border-radius: 26px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(223, 243, 232, 0.72)),
    var(--paper);
  padding: 10px;
  box-shadow: 0 22px 54px rgba(91, 55, 28, 0.12);
}

.founder-video {
  display: block;
  width: 100% !important;
  max-height: 72vh;
  border-radius: 18px;
  background: var(--ink);
  object-fit: contain;
}

.video-play-card {
  position: absolute;
  inset: auto 22px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  color: #fff;
  background: rgba(51, 32, 28, 0.74);
  backdrop-filter: blur(14px);
  padding: 10px 12px 10px 18px;
  font: inherit;
  font-weight: 950;
  cursor: pointer;
  box-shadow: 0 20px 44px rgba(51, 32, 28, 0.24);
  transition: transform 180ms ease, background 180ms ease;
}

.video-play-card::after {
  content: "â–¶";
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 50%;
  color: var(--tomato);
  background: #fff;
  font-size: 0.95rem;
}

.video-play-card:hover {
  background: rgba(51, 32, 28, 0.88);
  transform: translateY(-2px);
}

.video-play-card.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
}

.video-note {
  margin: 0;
  border-radius: 18px;
  background: var(--mint);
  padding: 13px 14px;
  color: var(--green);
  font-weight: 900;
  line-height: 1.45;
}

.menu-grid,
.plan-grid,
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 26px;
}

.menu-poster-rail {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  max-width: 100%;
  gap: 16px;
  margin-top: 26px;
  overflow: hidden;
  padding: 4px;
}

.veg-note {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
  width: fit-content;
  margin-top: 22px;
  border: 1px solid rgba(140, 191, 159, 0.34);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(223, 243, 232, 0.9), rgba(255, 255, 255, 0.78));
  padding: 10px 14px;
  box-shadow: 0 16px 34px rgba(140, 191, 159, 0.16);
}

.veg-note strong {
  color: var(--green);
  font-weight: 950;
}

.veg-note span {
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 850;
}

.menu-poster-rail article {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #064440;
  box-shadow: 0 18px 48px rgba(6, 68, 64, 0.16);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.menu-poster-rail article:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 60px rgba(6, 68, 64, 0.22);
}

.menu-poster-rail img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

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

.menu-grid article,
.plan-grid article,
.trust-grid article,
.catering-card,
.order-form,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.82);
  box-shadow: 0 18px 48px rgba(91, 55, 28, 0.08);
}

.menu-grid article {
  overflow: hidden;
}

.menu-grid img {
  height: 250px;
  object-fit: cover;
}

.menu-grid article > span,
.menu-grid h3,
.menu-grid p {
  margin-left: 18px;
  margin-right: 18px;
}

.menu-grid article > span {
  display: block;
  margin-top: 18px;
}

.menu-grid h3,
.plan-grid h3 {
  margin-top: 8px;
  margin-bottom: 8px;
  font-size: 1.55rem;
}

.menu-grid p,
.plan-grid p,
.trust-grid p,
.faq-list p,
.catering-card li {
  color: var(--muted);
  line-height: 1.55;
}

.delivery-note {
  margin: 12px 0 0;
  border-radius: 16px;
  background: var(--mint);
  padding: 11px 12px;
  color: var(--green);
  font-size: 0.9rem;
  font-weight: 900;
  line-height: 1.45;
}

.menu-grid p {
  margin-bottom: 20px;
}

.plan-grid article,
.trust-grid article,
.catering-card {
  padding: 22px;
}

.plan-grid .featured {
  color: #fff;
  background:
    radial-gradient(circle at 90% 0%, rgba(244, 167, 44, 0.35), transparent 18rem),
    linear-gradient(145deg, #6f2b1f, #b93e28);
}

.plan-grid .featured span,
.plan-grid .featured p {
  color: rgba(255, 255, 255, 0.8);
}

.plan-grid .featured a {
  background: #fff;
  color: var(--tomato);
}

.catering-section {
  border: 1px solid var(--line);
  border-radius: 34px;
  background:
    radial-gradient(circle at 88% 12%, rgba(247, 201, 120, 0.28), transparent 22rem),
    var(--leaf);
  padding: clamp(24px, 5vw, 52px);
}

.catering-tags,
.gallery-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.catering-tags span {
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  padding: 8px 11px;
  color: var(--green);
  font-weight: 900;
}

.catering-card {
  background: var(--paper);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.8fr;
  grid-auto-rows: 230px;
  margin-top: 24px;
}

.gallery-grid img {
  height: 100%;
  border-radius: 24px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.gallery-grid img:first-child {
  grid-row: span 2;
}

.order-section {
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(201, 71, 45, 0.1), rgba(244, 167, 44, 0.16)),
    var(--paper);
  padding: clamp(24px, 5vw, 52px);
  box-shadow: var(--shadow);
}

.order-form {
  display: grid;
  gap: 14px;
  padding: 22px;
}

.order-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 950;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.spice-field {
  display: grid;
  gap: 9px;
  margin: 0;
  border: 0;
  padding: 0;
}

.spice-field legend {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 950;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.spice-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.spice-options label {
  display: inline-flex;
  cursor: pointer;
  letter-spacing: 0;
  text-transform: none;
}

.spice-options input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.spice-options span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  padding: 8px 12px;
  color: var(--muted);
  font-weight: 950;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.spice-options input:checked + span {
  border-color: rgba(232, 137, 118, 0.48);
  color: var(--ink);
  background: linear-gradient(135deg, var(--rose), var(--mint));
  transform: translateY(-2px);
}

.order-form input,
.order-form select,
.order-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: #fff;
  padding: 13px 14px;
  color: var(--ink);
  font: inherit;
  outline: none;
}

.order-form input:focus,
.order-form select:focus,
.order-form textarea:focus {
  border-color: rgba(201, 71, 45, 0.42);
  box-shadow: 0 0 0 4px rgba(201, 71, 45, 0.1);
}

.order-estimate {
  display: grid;
  gap: 5px;
  border: 1px solid rgba(140, 191, 159, 0.28);
  border-radius: 18px;
  background:
    radial-gradient(circle at 88% 0%, rgba(247, 201, 120, 0.32), transparent 12rem),
    var(--mint);
  padding: 15px;
}

.order-estimate span {
  color: var(--green);
  font-size: 0.74rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.order-estimate strong {
  color: var(--ink);
  font-family: "Fraunces", Georgia, serif;
  font-size: 2rem;
  line-height: 1;
}

.order-estimate p {
  margin: 0;
  color: var(--green);
  font-weight: 900;
  line-height: 1.4;
}

.form-note {
  margin: 0;
  border-radius: 16px;
  background: var(--leaf);
  padding: 12px;
  color: var(--green);
  font-weight: 900;
  line-height: 1.45;
}

.faq-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.faq-list details {
  padding: 18px;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 950;
}

.instagram-float {
  position: fixed;
  z-index: 18;
  right: 18px;
  bottom: 18px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #c13584, #f77737);
  padding: 13px 16px;
  font-weight: 950;
  box-shadow: 0 18px 44px rgba(193, 53, 132, 0.28);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(16px, 4vw, 42px);
  border-top: 1px solid var(--line);
  background: #fff0eb;
}

.site-footer strong,
.site-footer span {
  display: block;
}

.site-footer span {
  color: var(--muted);
}

.site-footer a {
  color: var(--tomato);
  font-weight: 950;
}

@media (max-width: 900px) {
  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .hero,
  .section-heading,
  .story-section,
  .catering-section,
  .order-section {
    grid-template-columns: 1fr;
  }

  .founder-inner {
    grid-template-columns: 1fr;
  }

  .founder-page-hero,
  .founder-story-page {
    grid-template-columns: 1fr;
  }

  .founder-page-hero {
    min-height: auto;
  }

  .founder-video-card {
    position: static;
  }

  .menu-grid,
  .plan-grid,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual {
    min-height: 430px;
  }

  .hero-collage {
    grid-template-columns: 1fr 0.78fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .site-header {
    gap: 10px;
    padding: 9px 12px;
  }

  .brand {
    gap: 8px;
  }

  .brand-logo {
    width: 42px;
    height: 42px;
  }

  .brand strong {
    font-size: 0.92rem;
  }

  .brand small {
    font-size: 0.68rem;
  }

  .menu-button {
    width: 39px;
    height: 39px;
    border-radius: 12px;
  }

  .mobile-menu {
    top: 61px;
    padding: 10px;
  }

  .mobile-menu a {
    padding: 10px 12px;
    font-size: 0.94rem;
  }

  h1 {
    font-size: clamp(2.45rem, 13vw, 3.45rem);
    line-height: 0.94;
  }

  h2 {
    font-size: clamp(1.75rem, 9vw, 2.55rem);
  }

  .hero,
  .section {
    width: min(100% - 20px, 1180px);
  }

  .hero {
    gap: 20px;
    padding: 24px 0 30px;
  }

  .section {
    padding: 34px 0;
  }

  .hero-copy > p:not(.eyebrow),
  .section-heading > p,
  .story-section > p,
  .order-copy p,
  .catering-copy p {
    font-size: 0.98rem;
    line-height: 1.5;
  }

  .eyebrow {
    margin-bottom: 8px;
    font-size: 0.7rem;
  }

  .hero-actions,
  .trust-strip {
    gap: 8px;
    margin-top: 16px;
  }

  .hero-actions .primary-button,
  .hero-actions .secondary-button,
  .order-form .primary-button {
    width: 100%;
  }

  .hero-visual {
    min-height: auto;
    border-radius: 24px;
  }

  .hero-collage {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 8px;
    padding: 8px;
  }

  .hero-collage > img:not(.hero-logo-badge) {
    height: auto;
    max-height: none;
    border-radius: 18px;
    aspect-ratio: 5 / 4;
  }

  .hero-main-photo {
    grid-row: auto;
  }

  .hero-side-photo {
    display: none;
  }

  .hero-logo-badge {
    top: 12px;
    right: 12px;
    width: 62px;
    height: 62px;
    border-width: 3px;
  }

  .meal-card {
    right: 10px;
    bottom: 10px;
    width: min(230px, calc(100% - 20px));
    border-radius: 18px;
    padding: 13px;
  }

  .meal-card strong {
    font-size: 1.38rem;
  }

  .trust-strip span,
  .catering-tags span {
    padding: 7px 10px;
    font-size: 0.84rem;
  }

  .section-heading,
  .story-section,
  .catering-section,
  .order-section {
    gap: 16px;
  }

  .founder-section {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .founder-story {
    border-radius: 24px;
    padding: 16px;
  }

  .founder-story summary {
    gap: 6px;
    padding-right: 48px;
  }

  .founder-story summary::after {
    width: 38px;
    height: 38px;
    font-size: 1.35rem;
  }

  .founder-story summary strong {
    font-size: clamp(1.55rem, 8vw, 2.35rem);
  }

  .founder-story summary small {
    font-size: 0.9rem;
    line-height: 1.35;
  }

  .founder-inner {
    gap: 14px;
    margin-top: 16px;
    padding-top: 16px;
  }

  .founder-photo {
    border-radius: 22px;
  }

  .founder-photo img {
    aspect-ratio: 4 / 3.35;
  }

  .founder-copy {
    gap: 10px;
  }

  .founder-copy p {
    font-size: 0.96rem;
    line-height: 1.48;
  }

  .founder-copy strong {
    border-radius: 15px;
    padding: 13px 14px;
    font-size: 0.96rem;
    line-height: 1.45;
  }

  .founder-copy > span {
    font-size: 1.18rem;
  }

  .story-link {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .founder-page-hero {
    gap: 18px;
    padding-top: 24px;
    padding-bottom: 28px;
  }

  .founder-page-copy > p:not(.eyebrow) {
    font-size: 0.98rem;
    line-height: 1.5;
  }

  .founder-page-photo {
    border-radius: 24px;
    padding: 8px;
  }

  .founder-page-photo img {
    border-radius: 18px;
    aspect-ratio: 4 / 3.45;
  }

  .founder-story-page {
    gap: 14px;
    padding-top: 10px;
  }

  .story-note-card,
  .founder-video-card {
    border-radius: 24px;
    padding: 18px;
  }

  .story-note-card p {
    margin-bottom: 13px;
    font-size: 0.96rem;
    line-height: 1.5;
  }

  .story-note-card blockquote {
    margin: 16px 0;
    border-radius: 16px;
    padding: 15px;
  }

  .story-note-card > span {
    font-size: 1.18rem;
  }

  .founder-video-shell {
    border-radius: 18px;
    padding: 7px;
  }

  .founder-video {
    border-radius: 13px;
    max-height: 68vh;
  }

  .video-play-card {
    inset: auto 14px 14px;
    padding: 8px 10px 8px 14px;
    font-size: 0.9rem;
  }

  .video-play-card::after {
    width: 34px;
    height: 34px;
  }

  .video-note {
    border-radius: 14px;
    padding: 11px 12px;
    font-size: 0.92rem;
  }

  .menu-grid,
  .plan-grid,
  .trust-grid {
    gap: 12px;
    margin-top: 18px;
  }

  .menu-poster-rail {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 16px;
    padding: 2px;
  }

  .veg-note {
    width: 100%;
    align-items: flex-start;
    border-radius: 18px;
    margin-top: 14px;
    padding: 9px 11px;
  }

  .veg-note span {
    font-size: 0.86rem;
  }

  .menu-grid img {
    height: 165px;
  }

  .menu-grid article > span,
  .menu-grid h3,
  .menu-grid p {
    margin-left: 14px;
    margin-right: 14px;
  }

  .menu-grid article > span {
    margin-top: 13px;
  }

  .menu-grid h3,
  .plan-grid h3 {
    margin-top: 5px;
    margin-bottom: 5px;
    font-size: 1.28rem;
  }

  .menu-grid p {
    margin-bottom: 14px;
  }

  .plan-grid article,
  .trust-grid article,
  .catering-card {
    padding: 16px;
  }

  .catering-section,
  .order-section {
    border-radius: 24px;
    padding: 20px;
  }

  .order-form {
    gap: 10px;
    padding: 16px;
  }

  .order-form input,
  .order-form select,
  .order-form textarea {
    border-radius: 12px;
    padding: 11px 12px;
  }

  .spice-options {
    gap: 6px;
  }

  .spice-options span {
    min-height: 34px;
    padding: 7px 10px;
    font-size: 0.88rem;
  }

  .order-estimate {
    border-radius: 15px;
    padding: 12px;
  }

  .order-estimate strong {
    font-size: 1.65rem;
  }

  .faq-list {
    gap: 9px;
    margin-top: 16px;
  }

  .faq-list details {
    padding: 14px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 165px;
    gap: 9px;
  }

  .gallery-grid img:first-child {
    grid-row: auto;
  }

  .instagram-float {
    right: 12px;
    bottom: 12px;
    padding: 11px 13px;
    font-size: 0.9rem;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    padding: 20px 14px 72px;
  }
}
