:root {
  --red: #ad0707;
  --red-2: #d13a2f;
  --green: #2f7d32;
  --gold: #d99923;
  --ink: #171313;
  --muted: #6f645c;
  --cream: #fff8eb;
  --cream-2: #f5ead7;
  --line: rgba(42, 25, 12, 0.14);
  --card: rgba(255, 252, 246, 0.86);
  --shadow: 0 22px 60px rgba(89, 49, 17, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, rgba(255, 248, 235, 0.7), rgba(255, 255, 255, 0.78)),
    linear-gradient(135deg, #fffaf0 0%, #f8efdf 46%, #fffdf8 100%);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
}

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

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

button,
input {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  min-height: 76px;
  padding: 14px clamp(18px, 5vw, 72px);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 20px;
  align-items: center;
  border-bottom: 1px solid rgba(42, 25, 12, 0.08);
  background: rgba(255, 248, 235, 0.88);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 20px;
  font-weight: 800;
}

.brand-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--red);
  color: #fff;
  font-size: 15px;
  letter-spacing: 0;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 2.4vw, 30px);
  color: #332a25;
  font-weight: 700;
}

.site-nav a {
  padding: 10px 0;
}

.site-nav a:hover {
  color: var(--red);
}

.header-cta,
.primary-button,
.secondary-button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  font-weight: 800;
}

.header-cta,
.primary-button {
  padding: 0 22px;
  background: linear-gradient(180deg, #c70c0c, #9d0000);
  color: #fff;
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.18);
}

.secondary-button {
  padding: 0 20px;
  border: 1px solid rgba(173, 7, 7, 0.35);
  color: var(--red);
  background: rgba(255, 255, 255, 0.3);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.35);
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  margin: 4px auto;
  display: block;
  background: var(--ink);
}

main {
  overflow: hidden;
}

.hero {
  min-height: auto;
  padding: clamp(42px, 6vw, 72px) clamp(18px, 5vw, 72px) clamp(46px, 5vw, 70px);
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.86fr);
  gap: clamp(36px, 6vw, 80px);
  align-items: start;
  isolation: isolate;
}

.hero-copy {
  max-width: 680px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--red);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero h1 {
  margin: 0;
  max-width: 680px;
  font-size: clamp(42px, 6.4vw, 78px);
  line-height: 1;
}

.hero-copy > p:not(.eyebrow),
.promo-band p,
.about-section p,
.contact-grid p,
.features p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 560px;
  margin: 24px 0 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.hero-stats {
  max-width: 620px;
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 252, 246, 0.62);
  overflow: hidden;
}

.hero-stats article {
  padding: 20px;
  border-right: 1px solid var(--line);
}

.hero-stats article:last-child {
  border-right: 0;
}

.hero-stats strong {
  display: block;
  color: var(--red);
  font-size: 28px;
}

.hero-stats span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.hero-visual {
  position: relative;
  align-self: start;
  height: clamp(360px, 34vw, 500px);
  min-height: 0;
  display: grid;
  align-items: end;
  overflow: hidden;
  border-radius: 14px;
}

.hero-visual img,
.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero-visual img {
  object-position: center 44%;
}

.floating-card {
  position: absolute;
  left: 22px;
  bottom: 22px;
  width: min(260px, calc(100% - 44px));
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 252, 246, 0.94);
  box-shadow: 0 18px 38px rgba(89, 49, 17, 0.15);
  overflow-wrap: anywhere;
}

.floating-card strong,
.floating-card span {
  display: block;
}

.floating-card strong {
  color: var(--red);
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.1;
  white-space: nowrap;
}

.floating-card span {
  margin-top: 6px;
  color: var(--muted);
  font-weight: 700;
}

.features,
.section,
.promo-band,
.site-footer {
  margin-inline: clamp(18px, 5vw, 72px);
}

.features {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding-bottom: 52px;
}

.features article,
.menu-card,
.contact-grid article,
.promo-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--card);
}

.features article {
  padding: 28px;
  box-shadow: 0 12px 34px rgba(89, 49, 17, 0.08);
}

.icon {
  width: 48px;
  height: 48px;
  margin-bottom: 22px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: #f0ebe2;
  color: var(--red);
  font-size: 16px;
  font-weight: 800;
}

.features h2 {
  margin: 0 0 10px;
  font-size: 22px;
}

.features p,
.contact-grid p {
  margin: 0;
  font-size: 15px;
}

.section {
  padding: 56px 0;
}

.section-header {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  margin-bottom: 26px;
}

.section-header h2,
.promo-band h2,
.about-section h2 {
  margin: 0;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.08;
}

.section-intro {
  max-width: 620px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.search-box {
  width: min(100%, 360px);
}

.search-box input {
  width: 100%;
  min-height: 52px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 7px;
  outline: 0;
  background: rgba(255, 252, 246, 0.78);
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.filter {
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: rgba(255, 252, 246, 0.74);
  color: #2d2925;
  font-weight: 800;
  cursor: pointer;
}

.filter.active {
  background: var(--red);
  color: #fff;
}

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

.menu-card {
  overflow: hidden;
  display: flex;
  min-height: 100%;
  flex-direction: column;
  box-shadow: 0 14px 38px rgba(89, 49, 17, 0.1);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.menu-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(89, 49, 17, 0.15);
}

.menu-image {
  height: clamp(360px, 32vw, 520px);
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(245, 234, 215, 0.78)),
    #e9e5dc;
  color: var(--red);
  overflow: hidden;
}

.menu-image img {
  width: 100%;
  height: 100%;
  padding: 12px;
  box-sizing: border-box;
  object-fit: contain !important;
  object-position: center;
  transition: transform 260ms ease;
}

.menu-card:hover .menu-image img {
  transform: none;
}

.menu-image-empty {
  border-bottom: 1px dashed rgba(173, 7, 7, 0.32);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.66), rgba(245, 234, 215, 0.82)),
    var(--cream-2);
  color: var(--red);
}

.menu-image-empty img {
  opacity: 0.92;
}

.menu-image-empty span {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border: 2px dashed rgba(173, 7, 7, 0.45);
  border-radius: 8px;
  font-size: 34px;
  font-weight: 800;
}

.menu-image-empty small {
  margin-top: -24px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.menu-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 18px;
}

.menu-title-row {
  min-height: 54px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  justify-content: space-between;
}

.menu-title-row h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.25;
}

.menu-badge {
  flex: 0 0 auto;
  padding: 7px 9px;
  border-radius: 6px;
  background: rgba(47, 125, 50, 0.1);
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
}

.menu-body p {
  flex: 1;
  min-height: 66px;
  margin: 0 0 16px;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.55;
}

.menu-footer {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}

.price {
  color: var(--red);
  font-size: 20px;
  font-weight: 800;
}

.order-button,
.edit-hint {
  min-height: 40px;
  padding: 0 14px;
  border-radius: 6px;
  font-weight: 800;
}

.order-button {
  display: inline-flex;
  align-items: center;
  border: 0;
  background: var(--red);
  color: #fff;
  cursor: pointer;
}

.edit-hint {
  display: inline-flex;
  align-items: center;
  border: 1px dashed rgba(173, 7, 7, 0.45);
  color: var(--red);
}

.menu-card-empty {
  background: rgba(255, 252, 246, 0.62);
  box-shadow: none;
}

.promo-band {
  padding: clamp(36px, 6vw, 64px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 36px;
  align-items: center;
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(173, 7, 7, 0.94), rgba(216, 58, 47, 0.86)),
    var(--red);
  color: #fff;
}

.promo-band .eyebrow,
.promo-band p {
  color: rgba(255, 255, 255, 0.84);
}

.promo-band p {
  max-width: 680px;
}

.promo-band .primary-button {
  margin-top: 10px;
  border: 0;
  background: #fff;
  color: var(--red);
  cursor: pointer;
}

.promo-status {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 800;
}

.promo-status.success {
  color: #fff;
}

.promo-card {
  min-height: 260px;
  display: grid;
  place-items: center;
  align-content: center;
  background: rgba(255, 255, 255, 0.95);
  color: var(--ink);
  text-align: center;
}

.promo-card span {
  font-weight: 900;
}

.promo-card strong {
  display: block;
  color: var(--red);
  font-size: 94px;
  line-height: 1;
}

.promo-card small {
  color: var(--muted);
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
}

.about-section {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: clamp(32px, 6vw, 72px);
  align-items: center;
}

.about-image {
  height: clamp(360px, 38vw, 460px);
  min-height: 0;
}

.about-image img {
  object-position: center;
}

.about-section p {
  margin: 20px 0 0;
}

.quote {
  margin-top: 28px;
  padding: 24px;
  border-left: 5px solid var(--red);
  border-radius: 0 8px 8px 0;
  background: rgba(255, 252, 246, 0.76);
  color: #2f2822;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.45;
}

.contact-section {
  padding-top: 40px;
}

.order-section {
  padding-top: 34px;
}

.order-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 20px;
  align-items: start;
}

.order-panel,
.order-summary {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--card);
  box-shadow: 0 14px 38px rgba(89, 49, 17, 0.08);
}

.order-panel {
  min-height: 260px;
  padding: 18px;
}

.order-list {
  display: grid;
  gap: 12px;
}

.order-empty {
  min-height: 220px;
  display: grid;
  place-items: center;
  border: 1px dashed rgba(173, 7, 7, 0.28);
  border-radius: 8px;
  color: var(--muted);
  font-weight: 800;
  text-align: center;
}

.order-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto auto;
  gap: 14px;
  align-items: center;
  padding: 16px;
  border: 1px solid rgba(42, 25, 12, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.48);
}

.order-item h3 {
  margin: 0;
  font-size: 18px;
}

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

.qty-control {
  display: inline-grid;
  grid-template-columns: 36px 38px 36px;
  align-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fffdf8;
}

.qty-control button {
  width: 36px;
  height: 36px;
  border: 0;
  background: transparent;
  color: var(--red);
  font-weight: 900;
  cursor: pointer;
}

.qty-control strong {
  text-align: center;
}

.order-item-total {
  color: var(--red);
  white-space: nowrap;
}

.remove-order {
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid rgba(173, 7, 7, 0.26);
  border-radius: 6px;
  background: rgba(173, 7, 7, 0.06);
  color: var(--red);
  font-weight: 800;
  cursor: pointer;
}

.order-summary {
  position: sticky;
  top: 98px;
  padding: 22px;
}

.order-summary h3 {
  margin: 0 0 18px;
  font-size: 24px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.summary-row strong {
  color: var(--ink);
}

.promo-summary {
  display: none;
}

.promo-summary.active {
  display: flex;
}

.promo-summary span,
.promo-summary strong {
  color: var(--green);
}

.summary-total strong {
  color: var(--red);
  font-size: 22px;
}

.order-note {
  display: grid;
  gap: 8px;
  margin-top: 16px;
  color: var(--muted);
  font-weight: 800;
}

.order-note textarea {
  width: 100%;
  resize: vertical;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 7px;
  outline: 0;
  background: rgba(255, 252, 246, 0.8);
  color: var(--ink);
}

.order-actions {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.order-actions .primary-button,
.order-actions .secondary-button {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.order-actions button:disabled {
  opacity: 0.48;
  cursor: not-allowed;
}

.order-help {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.contact-grid article {
  padding: 24px;
}

.contact-grid h3 {
  margin: 0 0 10px;
  color: var(--red);
}

.site-footer {
  margin-top: 24px;
  padding: 28px 0 44px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer strong {
  color: var(--ink);
}

.empty-state {
  grid-column: 1 / -1;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--card);
  color: var(--muted);
  text-align: center;
  font-weight: 800;
}

@media (max-width: 960px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav,
  .header-cta {
    display: none;
  }

  .site-header.open .site-nav {
    grid-column: 1 / -1;
    display: grid;
    gap: 4px;
    justify-content: stretch;
    padding-top: 10px;
  }

  .site-header.open .site-nav a {
    padding: 14px 0;
    border-top: 1px solid var(--line);
  }

  .hero,
  .about-section,
  .promo-band,
  .order-layout {
    grid-template-columns: 1fr;
  }

  .order-summary {
    position: static;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual {
    height: 380px;
  }

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

@media (max-width: 640px) {
  .hero {
    padding-top: 42px;
  }

  .hero h1 {
    font-size: 38px;
  }

  .hero-actions,
  .section-header,
  .site-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-stats,
  .features,
  .menu-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .hero-stats article:last-child {
    border-bottom: 0;
  }

  .floating-card {
    left: 16px;
    right: 16px;
    bottom: 16px;
    width: auto;
  }

  .hero-visual,
  .about-image {
    height: 340px;
  }

  .menu-title-row {
    min-height: auto;
    flex-direction: column;
  }

  .menu-body p {
    min-height: auto;
  }

  .menu-image {
    height: 360px;
  }

  .promo-band {
    margin-inline: 0;
    border-radius: 0;
  }

  .promo-card strong {
    font-size: 74px;
  }

  .order-item {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .qty-control {
    width: max-content;
  }
}
