:root {
  --bg: #f7efe3;
  --surface: rgba(255, 249, 241, 0.9);
  --surface-strong: #fffaf3;
  --surface-deep: #2b1b11;
  --ink: #22140d;
  --muted: #6f5a4a;
  --brand: #d86a1f;
  --brand-deep: #9a420f;
  --accent: #2d6a4f;
  --accent-soft: #d8ecdf;
  --border: rgba(79, 48, 27, 0.12);
  --shadow: 0 24px 60px rgba(69, 35, 15, 0.12);
  --shadow-soft: 0 14px 30px rgba(69, 35, 15, 0.08);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --max-width: 1120px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(216, 106, 31, 0.16), transparent 34%),
    radial-gradient(circle at top right, rgba(45, 106, 79, 0.1), transparent 28%),
    linear-gradient(180deg, #fbf5ea 0%, #f5ebdc 100%);
  position: relative;
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: auto auto 8% -8%;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(216, 106, 31, 0.13), transparent 68%);
  filter: blur(10px);
  pointer-events: none;
  z-index: -2;
}

body::after {
  inset: 12% -6% auto auto;
  background: radial-gradient(circle, rgba(45, 106, 79, 0.12), transparent 68%);
}

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

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

button,
input,
textarea {
  font: inherit;
}

button {
  border: 0;
  background: none;
  cursor: pointer;
}

input,
textarea {
  width: 100%;
}

main {
  display: block;
}

.material-symbols-outlined {
  font-variation-settings:
    "FILL" 0,
    "wght" 500,
    "GRAD" 0,
    "opsz" 24;
}

.container {
  width: min(var(--max-width), calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid var(--border);
  background: rgba(247, 239, 227, 0.82);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
}

.brand-mark {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: #fff;
  background: linear-gradient(145deg, var(--brand), var(--brand-deep));
  box-shadow: 0 18px 32px rgba(154, 66, 15, 0.28);
}

.brand-mark .material-symbols-outlined {
  font-size: 1.7rem;
}

.brand-copy {
  display: grid;
  gap: 0.1rem;
}

.brand-copy strong,
.display {
  font-family: "Fraunces", serif;
}

.brand-copy strong {
  font-size: 1.25rem;
  line-height: 1;
}

.brand-copy span {
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.nav-link {
  padding: 0.8rem 1rem;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 700;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--ink);
  background: rgba(216, 106, 31, 0.12);
  transform: translateY(-1px);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 16px;
  background: rgba(216, 106, 31, 0.1);
  color: var(--brand);
}

.btn,
.cart-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-height: 48px;
  padding: 0 1.2rem;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.btn:hover,
.cart-pill:hover {
  transform: translateY(-2px);
}

.btn.full,
.cart-pill.full {
  width: 100%;
}

.btn-small {
  min-height: 42px;
  padding: 0 1rem;
  font-size: 0.94rem;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(145deg, var(--brand), var(--brand-deep));
  box-shadow: 0 18px 30px rgba(154, 66, 15, 0.2);
}

.btn-secondary {
  color: var(--ink);
  background: rgba(255, 250, 243, 0.75);
  border: 1px solid rgba(216, 106, 31, 0.18);
}

.btn-ghost {
  color: var(--accent);
  background: rgba(45, 106, 79, 0.08);
}

.cart-pill {
  color: #fff;
  background: var(--surface-deep);
  box-shadow: var(--shadow-soft);
}

.badge-count {
  min-width: 1.55rem;
  padding: 0.1rem 0.45rem;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  text-align: center;
}

.page {
  padding: 1.2rem 0 4rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  width: fit-content;
  padding: 0.6rem 1rem;
  border-radius: 999px;
  background: rgba(216, 106, 31, 0.12);
  color: var(--brand);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  background: currentColor;
}

.section-heading {
  display: grid;
  gap: 0.9rem;
  margin-bottom: 2rem;
  max-width: 760px;
}

.section-heading h1,
.section-heading h2,
.section-heading h3,
.hero-copy h1 {
  margin: 0;
  font-family: "Fraunces", serif;
  line-height: 0.98;
  text-wrap: balance;
}

.section-heading p,
.hero-copy p,
.lead {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.hero {
  padding: 2.4rem 0 4rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 2rem;
  align-items: center;
}

.hero-copy {
  display: grid;
  gap: 1.3rem;
  max-width: 640px;
}

.hero-copy h1 {
  font-size: clamp(2.95rem, 7vw, 5.8rem);
}

.hero-copy h1 span {
  color: var(--brand);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.stat-card,
.panel,
.feature-card,
.menu-card,
.story-card,
.highlight-card,
.cart-item,
.summary-card,
.banner,
.floating-note,
.payment-option {
  border: 1px solid var(--border);
  background: var(--surface);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-soft);
}

.stat-card {
  padding: 1rem 1.1rem;
  border-radius: 20px;
}

.stat-card strong {
  display: block;
  font-size: 1.4rem;
  font-family: "Fraunces", serif;
}

.stat-card span {
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-visual {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: center;
}

.hero-plate {
  position: relative;
  width: min(100%, 520px);
  aspect-ratio: 0.92;
  padding: 1.1rem;
  border-radius: 38px;
  background:
    linear-gradient(180deg, rgba(255, 250, 243, 0.92), rgba(243, 230, 214, 0.88)),
    rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.65);
  box-shadow: var(--shadow);
  animation: floatPlate 6s ease-in-out infinite;
}

.hero-plate::before {
  content: "";
  position: absolute;
  inset: 1.25rem;
  border-radius: 30px;
  background: linear-gradient(145deg, rgba(216, 106, 31, 0.12), rgba(45, 106, 79, 0.08));
  z-index: 0;
}

.hero-plate img {
  position: relative;
  height: 100%;
  object-fit: cover;
  border-radius: 30px;
}

.floating-note {
  position: absolute;
  padding: 1rem 1.15rem;
  border-radius: 22px;
  max-width: 240px;
  display: grid;
  gap: 0.4rem;
}

.floating-note strong {
  font-family: "Fraunces", serif;
  font-size: 1.1rem;
}

.floating-note span,
.floating-note p,
.tiny-note,
.meta {
  color: var(--muted);
  margin: 0;
  line-height: 1.55;
}

.floating-note.top {
  top: 1.25rem;
  right: -0.4rem;
}

.floating-note.bottom {
  bottom: 1.6rem;
  left: -1rem;
}

.floating-note.accent {
  background: rgba(223, 245, 232, 0.9);
}

.section {
  padding: 1.2rem 0 1rem;
}

.section + .section {
  margin-top: 1rem;
}

.story-grid,
.contact-grid,
.menu-layout,
.cart-layout,
.checkout-grid,
.feature-grid {
  display: grid;
  gap: 1.4rem;
}

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

.feature-card,
.story-card {
  padding: 1.4rem;
  border-radius: var(--radius-md);
}

.feature-card .material-symbols-outlined,
.story-card .material-symbols-outlined,
.summary-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: rgba(216, 106, 31, 0.12);
  color: var(--brand);
}

.feature-card h3,
.story-card h3,
.panel h3,
.summary-card h2 {
  margin: 0.9rem 0 0.45rem;
  font-family: "Fraunces", serif;
  font-size: 1.35rem;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.1rem;
}

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

.menu-card {
  overflow: hidden;
  border-radius: 28px;
}

.menu-media {
  position: relative;
  aspect-ratio: 1.05;
  overflow: hidden;
}

.menu-media img {
  height: 100%;
  object-fit: cover;
  transition: transform 300ms ease;
}

.menu-card:hover .menu-media img {
  transform: scale(1.06);
}

.menu-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 250, 243, 0.9);
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--brand);
}

.menu-content {
  padding: 1.25rem;
  display: grid;
  gap: 0.9rem;
}

.menu-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 1rem;
}

.menu-head h3 {
  margin: 0;
  font-size: 1.3rem;
  font-family: "Fraunces", serif;
}

.menu-price {
  font-weight: 900;
  color: var(--brand);
  font-size: 1.15rem;
}

.tag-row,
.summary-line,
.detail-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.tag-row {
  justify-content: start;
  flex-wrap: wrap;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  background: rgba(45, 106, 79, 0.08);
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.card-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
}

.qty-stepper {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem;
  border-radius: 999px;
  background: rgba(216, 106, 31, 0.08);
}

.qty-stepper button {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  box-shadow: 0 8px 16px rgba(79, 48, 27, 0.08);
}

.qty-stepper strong {
  min-width: 2rem;
  text-align: center;
}

.panel {
  padding: 1.4rem;
  border-radius: var(--radius-lg);
}

.panel.compact {
  padding: 1.1rem;
}

.menu-layout {
  grid-template-columns: 290px minmax(0, 1fr);
  align-items: start;
}

.sticky-stack {
  display: grid;
  gap: 1rem;
}

.sticky-card {
  position: sticky;
  top: 98px;
}

.filter-group {
  display: grid;
  gap: 0.65rem;
}

.filter-chip {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: start;
  min-height: 50px;
  padding: 0 1rem;
  border-radius: 18px;
  color: var(--muted);
  background: rgba(255, 250, 243, 0.6);
  border: 1px solid transparent;
  font-weight: 800;
}

.filter-chip.active,
.filter-chip:hover {
  color: var(--ink);
  border-color: rgba(216, 106, 31, 0.18);
  background: rgba(216, 106, 31, 0.1);
}

.toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.search-box {
  position: relative;
  flex: 1;
}

.search-box .material-symbols-outlined {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
}

.search-box input,
.field,
.textarea {
  min-height: 54px;
  border-radius: 18px;
  border: 1px solid rgba(79, 48, 27, 0.12);
  background: rgba(255, 250, 243, 0.86);
  color: var(--ink);
  padding: 0 1rem 0 3rem;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.field {
  padding: 0 1rem;
}

.textarea {
  min-height: 128px;
  padding: 1rem;
  resize: vertical;
}

.search-box input:focus,
.field:focus,
.textarea:focus {
  border-color: rgba(216, 106, 31, 0.4);
  box-shadow: 0 0 0 4px rgba(216, 106, 31, 0.12);
}

.result-meta {
  white-space: nowrap;
  color: var(--muted);
  font-weight: 700;
}

.highlight-card {
  padding: 1.5rem;
  border-radius: var(--radius-lg);
}

.highlight-card ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: grid;
  gap: 0.65rem;
}

.highlight-card li {
  color: var(--muted);
}

.banner {
  padding: 1rem 1.2rem;
  border-radius: 22px;
  margin-bottom: 1.5rem;
  display: none;
}

.banner.show {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.banner strong {
  font-family: "Fraunces", serif;
  font-size: 1.25rem;
}

.story-grid {
  grid-template-columns: 1.15fr 0.85fr;
  align-items: start;
}

.process-list {
  display: grid;
  gap: 1rem;
}

.process-item {
  display: flex;
  gap: 0.9rem;
  align-items: start;
}

.process-item .index {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(216, 106, 31, 0.12);
  color: var(--brand);
  font-weight: 900;
}

.contact-panel {
  display: grid;
  gap: 1rem;
}

.contact-card {
  padding: 1.3rem;
  border-radius: var(--radius-md);
  background: linear-gradient(145deg, rgba(43, 27, 17, 0.96), rgba(74, 43, 23, 0.94));
  color: #fff9f1;
  box-shadow: var(--shadow);
}

.contact-card .eyebrow {
  background: rgba(255, 255, 255, 0.12);
  color: #ffe4cf;
}

.contact-details {
  display: grid;
  gap: 0.8rem;
  margin-top: 1rem;
}

.contact-details strong {
  display: block;
}

.contact-details span,
.contact-details a {
  color: rgba(255, 249, 241, 0.78);
}

.cart-layout {
  grid-template-columns: minmax(0, 1.15fr) 360px;
  align-items: start;
}

.cart-list {
  display: grid;
  gap: 1rem;
}

.cart-item {
  padding: 1rem;
  border-radius: 24px;
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 1rem;
}

.cart-item-media {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 20px;
}

.cart-item-media img {
  height: 100%;
  object-fit: cover;
}

.cart-item-body {
  display: grid;
  gap: 0.75rem;
}

.cart-item-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 1rem;
}

.cart-item-head h3,
.checkout-line strong {
  margin: 0;
  font-family: "Fraunces", serif;
}

.remove-link {
  color: #b03a21;
  font-weight: 800;
}

.summary-card {
  display: grid;
  gap: 1rem;
  border-radius: var(--radius-lg);
}

.summary-card h2 {
  margin: 0;
}

.summary-card hr {
  width: 100%;
  border: 0;
  border-top: 1px solid var(--border);
  margin: 0;
}

.summary-line span {
  color: var(--muted);
}

.summary-total strong {
  color: var(--brand);
  font-size: 1.45rem;
}

.empty-state {
  padding: 2rem;
  border-radius: var(--radius-lg);
  text-align: center;
  display: grid;
  gap: 0.9rem;
}

.empty-state .material-symbols-outlined {
  width: 70px;
  height: 70px;
  margin: 0 auto;
  border-radius: 24px;
  display: grid;
  place-items: center;
  background: rgba(216, 106, 31, 0.12);
  color: var(--brand);
  font-size: 2rem;
}

.checkout-grid {
  grid-template-columns: minmax(0, 1fr) 360px;
  align-items: start;
}

.checkout-stack {
  display: grid;
  gap: 1rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.field-group {
  display: grid;
  gap: 0.45rem;
}

.field-group label {
  font-size: 0.9rem;
  font-weight: 800;
}

.field-group > span {
  font-size: 0.9rem;
  font-weight: 800;
}

.map-box {
  min-height: 180px;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  background:
    linear-gradient(135deg, rgba(45, 106, 79, 0.3), rgba(216, 106, 31, 0.22)),
    url("https://lh3.googleusercontent.com/aida-public/AB6AXuAqcjF6sRopoY6GCNmStzl0QB847H4rYx1MK0IKZGgslpYkJRXxIGF0cD4otjnTsPozYZywYHaEb4-tpX2ZrWRic0E9JuFfIDof0P3dDA9LNsTn0cHHrfJsNY3LuLJ76KYT-waZJzlz5lMXiczVaDOu2kTQv73CvfapW9NdiqUUZq0GK9eOC9h739vM0fcwPtBbDtMjF69YBE2fmktOeKc_6S67CAohFZrTyfl2uPMeXWRH2J4BrqlJb2o5XNblgp4VQ7wx-F6i4Ks")
      center / cover no-repeat;
}

.map-box::after {
  content: "Tirupati delivery zone";
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  padding: 0.65rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 250, 243, 0.92);
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--brand);
}

.payment-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.payment-option {
  padding: 1rem;
  border-radius: 22px;
  display: grid;
  place-items: center;
  gap: 0.45rem;
  text-align: center;
  cursor: pointer;
}

.payment-option.active {
  border-color: rgba(216, 106, 31, 0.28);
  background: rgba(216, 106, 31, 0.12);
}

.payment-option input {
  display: none;
}

.checkout-lines {
  display: grid;
  gap: 0.85rem;
}

.checkout-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.checkout-line span {
  color: var(--muted);
}

.site-footer {
  padding: 1rem 0 2.5rem;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.footer-links {
  display: flex;
  gap: 1rem;
  color: var(--muted);
}

.reveal {
  animation: riseUp 700ms ease both;
}

.reveal.delay-1 {
  animation-delay: 120ms;
}

.reveal.delay-2 {
  animation-delay: 220ms;
}

.reveal.delay-3 {
  animation-delay: 320ms;
}

@keyframes floatPlate {
  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes riseUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 980px) {
  .hero-grid,
  .story-grid,
  .menu-layout,
  .cart-layout,
  .checkout-grid,
  .feature-grid,
  .menu-grid,
  .card-grid {
    grid-template-columns: 1fr;
  }

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

  .floating-note.top {
    right: 0;
  }

  .floating-note.bottom {
    left: 0;
  }

  .sticky-card {
    position: static;
  }
}

@media (max-width: 860px) {
  .nav-toggle {
    display: grid;
  }

  .site-nav {
    position: fixed;
    top: 84px;
    left: 1rem;
    right: 1rem;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    border-radius: 26px;
    background: rgba(255, 249, 241, 0.98);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: transform 220ms ease, opacity 220ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-links,
  .nav-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .nav-link,
  .cart-pill,
  .btn {
    width: 100%;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(var(--max-width), calc(100% - 1.25rem));
  }

  .header-inner {
    min-height: 70px;
  }

  .brand {
    gap: 0.65rem;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 14px;
  }

  .brand-mark .material-symbols-outlined {
    font-size: 1.35rem;
  }

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

  .brand-copy span {
    font-size: 0.64rem;
    letter-spacing: 0.11em;
  }

  .page {
    padding: 0.7rem 0 3rem;
  }

  .hero {
    padding: 1rem 0 2.2rem;
  }

  .hero-copy h1 {
    font-size: clamp(2.3rem, 12vw, 3.35rem);
    line-height: 1.02;
    letter-spacing: -0.04em;
  }

  .hero-copy {
    gap: 1rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-visual {
    min-height: 390px;
    margin-top: 0.25rem;
  }

  .hero-plate {
    padding: 0.85rem;
    border-radius: 30px;
  }

  .hero-plate::before {
    inset: 0.95rem;
    border-radius: 22px;
  }

  .hero-plate img {
    border-radius: 22px;
  }

  .floating-note {
    max-width: 190px;
    padding: 0.8rem 0.9rem;
    border-radius: 18px;
  }

  .floating-note strong {
    font-size: 0.98rem;
  }

  .floating-note.top {
    top: 0.65rem;
    right: 0.35rem;
  }

  .floating-note.bottom {
    left: 0.35rem;
    bottom: 0.65rem;
  }

  .stats-row {
    grid-template-columns: 1fr;
    gap: 0.7rem;
  }

  .stat-card {
    padding: 0.9rem 1rem;
  }

  .section-heading {
    margin-bottom: 1.35rem;
  }

  .section-heading h1,
  .section-heading h2 {
    font-size: clamp(1.95rem, 9vw, 2.5rem);
    line-height: 1.05;
  }

  .section {
    padding: 0.85rem 0;
  }

  .feature-card,
  .story-card,
  .highlight-card,
  .panel,
  .summary-card {
    padding: 1.05rem;
  }

  .card-grid {
    gap: 0.9rem;
  }

  .menu-content {
    padding: 1rem;
  }

  .card-actions,
  .cart-item-head,
  .detail-row {
    flex-direction: column;
    align-items: stretch;
  }

  .qty-stepper {
    width: 100%;
    justify-content: center;
  }

  .result-meta {
    white-space: normal;
  }

  .filter-group {
    grid-auto-flow: column;
    grid-auto-columns: max-content;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 0.25rem;
    scrollbar-width: none;
  }

  .filter-group::-webkit-scrollbar {
    display: none;
  }

  .filter-chip {
    width: auto;
    white-space: nowrap;
    min-height: 46px;
    font-size: 0.92rem;
  }

  .search-box input {
    min-height: 50px;
    padding-left: 2.8rem;
  }

  .summary-line,
  .checkout-line {
    align-items: flex-start;
  }

  .payment-option {
    min-height: 112px;
  }

  .payment-grid,
  .form-grid,
  .toolbar {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: stretch;
  }

  .footer-links {
    flex-wrap: wrap;
  }
}

@media (max-width: 480px) {
  .container {
    width: min(var(--max-width), calc(100% - 1rem));
  }

  .site-header {
    background: rgba(247, 239, 227, 0.92);
  }

  .nav-toggle {
    width: 42px;
    height: 42px;
    border-radius: 14px;
  }

  .eyebrow {
    padding: 0.48rem 0.82rem;
    font-size: 0.7rem;
    letter-spacing: 0.12em;
  }

  .hero-copy h1 {
    max-width: 11ch;
    font-size: clamp(1.85rem, 10vw, 2.45rem);
  }

  .hero-copy p,
  .section-heading p,
  .lead {
    font-size: 0.94rem;
    line-height: 1.65;
  }

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

  .floating-note {
    max-width: 148px;
    padding: 0.72rem 0.78rem;
  }

  .floating-note p,
  .tiny-note,
  .meta {
    font-size: 0.84rem;
  }

  .section-heading h1,
  .section-heading h2 {
    max-width: 12ch;
    font-size: 1.8rem;
  }

  .hero-plate {
    padding: 0.7rem;
    border-radius: 24px;
  }

  .hero-plate::before {
    inset: 0.8rem;
    border-radius: 18px;
  }

  .hero-plate img {
    border-radius: 18px;
  }

  .stat-card strong {
    font-size: 1.2rem;
  }

  .menu-head {
    flex-direction: column;
    gap: 0.4rem;
  }

  .menu-head h3 {
    font-size: 1.18rem;
  }

  .toolbar {
    gap: 0.7rem;
  }

  .cart-item {
    gap: 0.8rem;
    padding: 0.9rem;
  }

  .cart-item-media {
    max-width: 100%;
  }

  .payment-grid {
    gap: 0.65rem;
  }

  .cart-item {
    grid-template-columns: 1fr;
  }

  .cart-item-media {
    max-width: 180px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: start;
  }
}
