:root {
  --bg: #f9f5ee;
  --card: #fff8ec;
  --text: #1f1a16;
  --muted: #5a4b3f;
  --brand: #8f2d1e;
  --brand-2: #d35f1f;
  --accent: #264653;
  --line: #e5d6c3;
  --shadow: 0 20px 50px rgba(39, 23, 12, 0.12);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(1000px 400px at 10% -10%, rgba(211, 95, 31, 0.15), transparent 65%),
    radial-gradient(800px 300px at 90% 0%, rgba(38, 70, 83, 0.15), transparent 65%),
    var(--bg);
  line-height: 1.6;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem 1.2rem;
  backdrop-filter: blur(14px);
  background: rgba(249, 245, 238, 0.85);
  border-bottom: 1px solid rgba(143, 45, 30, 0.12);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--text);
  font-weight: 800;
}

.brand img {
  width: 42px;
  height: 42px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid rgba(143, 45, 30, 0.25);
}

.site-nav {
  display: flex;
  gap: 1rem;
}

.site-nav a {
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  position: relative;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--brand);
  transition: width 0.25s ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  width: 100%;
}

.cta-order,
.btn {
  border-radius: 999px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-order {
  padding: 0.6rem 1rem;
  color: #fff;
  background: linear-gradient(120deg, var(--brand), var(--brand-2));
}

.cta-order:hover,
.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.menu-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 0.25rem;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--text);
  margin: 5px 0;
}

.hero,
.section {
  width: min(1150px, 92%);
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  padding: 3.6rem 0 2.4rem;
}

.eyebrow {
  color: var(--brand);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 800;
  font-size: 0.78rem;
  margin-bottom: 0.4rem;
}

h1,
h2,
h3 {
  font-family: "Cinzel", serif;
  line-height: 1.2;
  margin: 0.2rem 0 0.7rem;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.4rem);
}

h2 {
  font-size: clamp(1.6rem, 3.4vw, 2.3rem);
}

.hero-content p {
  margin: 0 0 1.1rem;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 1rem 0;
}

.btn {
  padding: 0.72rem 1.2rem;
}

.btn-primary {
  background: linear-gradient(120deg, var(--brand), var(--brand-2));
  color: #fff;
}

.btn-secondary {
  background: #fff;
  color: var(--accent);
  border: 1px solid var(--line);
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.hero-highlights span {
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: rgba(38, 70, 83, 0.08);
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 700;
}

.hero-card {
  border-radius: 1.3rem;
  background: var(--card);
  border: 1px solid var(--line);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.hero-card div {
  padding: 1rem;
}

.section {
  padding: 2.4rem 0;
}

.section-heading {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 1.4rem;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.menu-grid img {
  width: 100%;
  border-radius: 1rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

.about-section {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.2rem;
  align-items: stretch;
}

.about-content ul {
  margin: 1rem 0 0;
  padding-left: 1.2rem;
}

.about-panel {
  background: linear-gradient(145deg, #fffaf0, #f6ecdd);
  border: 1px solid var(--line);
  border-radius: 1rem;
  padding: 1.2rem;
  box-shadow: var(--shadow);
}

.chef-section {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 1.2rem;
  align-items: center;
}

.chef-section img {
  width: 170px;
  height: 210px;
  object-fit: cover;
  justify-self: center;
  border-radius: 0.7rem;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.review-grid article {
  background: #fff;
  border-radius: 1rem;
  border: 1px solid var(--line);
  padding: 1rem;
  box-shadow: var(--shadow);
}

.payment-section {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 1.4rem;
  align-items: center;
}

.note {
  font-size: 0.92rem;
  color: var(--muted);
}

.qr-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 1rem;
  padding: 1rem;
  box-shadow: var(--shadow);
  text-align: center;
}

.qr-card img {
  width: min(100%, 320px);
  border-radius: 0.8rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.9rem;
}

.contact-grid a {
  background: #fff;
  border-radius: 1rem;
  border: 1px solid var(--line);
  text-decoration: none;
  color: var(--text);
  padding: 1rem;
  box-shadow: var(--shadow);
}

.site-footer {
  width: min(1150px, 92%);
  margin: 1rem auto 2rem;
  padding: 1rem 0 0;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  color: var(--muted);
}

.site-footer a {
  color: var(--brand);
  text-decoration: none;
  font-weight: 700;
}

.floating-wa {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 25;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(120deg, #1f9d52, #128c7e);
  border-radius: 999px;
  padding: 0.78rem 1.1rem;
  font-weight: 800;
  box-shadow: var(--shadow);
}

.floating-wa:hover {
  transform: translateY(-2px);
}

.order-main {
  width: min(1150px, 92%);
  margin: 0 auto;
  padding: 2.6rem 0;
}

.order-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.2rem;
  align-items: start;
}

.order-card,
.summary-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 1rem;
  box-shadow: var(--shadow);
  padding: 1rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem;
}

.field {
  display: grid;
  gap: 0.3rem;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  font-weight: 700;
  color: var(--muted);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0.65rem;
  padding: 0.65rem 0.75rem;
  font: inherit;
  background: #fffefb;
}

.field textarea {
  min-height: 100px;
  resize: vertical;
}

.summary-list {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--muted);
}

.info-block {
  margin-top: 0.8rem;
  padding: 0.8rem;
  border-radius: 0.8rem;
  background: #fffaf0;
  border: 1px solid var(--line);
}

.summary-main {
  width: min(980px, 92%);
  margin: 0 auto;
  padding: 2.4rem 0;
}

.invoice-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 1rem;
  box-shadow: var(--shadow);
  padding: 1.2rem;
}

.invoice-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  border-bottom: 1px dashed var(--line);
  padding-bottom: 0.8rem;
  margin-bottom: 0.9rem;
}

.invoice-id {
  color: var(--muted);
  font-weight: 700;
}

.invoice-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.7rem;
}

.invoice-row {
  border: 1px solid var(--line);
  background: #fffefb;
  border-radius: 0.7rem;
  padding: 0.65rem;
}

.invoice-row.full {
  grid-column: 1 / -1;
}

.invoice-row h3 {
  margin: 0;
  font-size: 0.85rem;
  color: var(--muted);
  font-family: "Manrope", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.invoice-row p {
  margin: 0.3rem 0 0;
  white-space: pre-wrap;
}

.invoice-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1rem;
}

.invoice-qr {
  margin-top: 1rem;
  border-top: 1px dashed var(--line);
  padding-top: 1rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

.invoice-qr img {
  width: 140px;
  height: auto;
  border-radius: 0.6rem;
  border: 1px solid var(--line);
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  animation: rise 0.75s ease forwards;
}

.reveal:nth-child(2) {
  animation-delay: 0.12s;
}

.reveal:nth-child(3) {
  animation-delay: 0.2s;
}

@keyframes rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 980px) {
  .hero,
  .about-section,
  .chef-section,
  .payment-section {
    grid-template-columns: 1fr;
  }

  .order-grid {
    grid-template-columns: 1fr;
  }

  .menu-grid,
  .review-grid,
  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .menu-toggle {
    display: inline-block;
    margin-left: auto;
  }

  .site-nav {
    position: absolute;
    top: 70px;
    right: 1rem;
    display: none;
    flex-direction: column;
    min-width: 190px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 0.7rem;
    padding: 0.6rem;
    box-shadow: var(--shadow);
  }

  .site-nav.open {
    display: flex;
  }

  .cta-order {
    display: none;
  }

  .menu-grid,
  .review-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 2.2rem;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .floating-wa {
    right: 0.8rem;
    bottom: 0.8rem;
  }

  .invoice-grid {
    grid-template-columns: 1fr;
  }
}

@media print {
  .site-header,
  .site-footer,
  .floating-wa,
  .invoice-actions {
    display: none !important;
  }

  body {
    background: #fff;
  }

  .summary-main {
    width: 100%;
    margin: 0;
    padding: 0;
  }

  .invoice-card {
    box-shadow: none;
    border: 0;
    padding: 0;
  }
}
