:root {
  --saffron: #ff7a00;
  --rust: #c2410c;
  --cream: #fff7ed;
  --sand: #faf3e0;
  --brown: #3f2a1d;
  --muted: #6b4b3a;
  --white: #ffffff;
  --border: #efd7c1;
  --shadow-soft: 0 12px 30px rgba(86, 49, 25, 0.08);
  --shadow-strong: 0 24px 60px rgba(86, 49, 25, 0.14);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background: var(--cream);
  color: var(--brown);
  line-height: 1.6;
}

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

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

.container {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 247, 237, 0.86);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(239, 215, 193, 0.85);
}

.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--saffron), #ff9e3d);
  color: var(--white);
  font-weight: 700;
  box-shadow: var(--shadow-soft);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-title {
  font-family: "Playfair Display", serif;
  /*font-family: "Sacramento", cursive;*/
  font-size: 1.5rem;
  font-weight: 700;
}

.brand-subtitle {
  font-size: 0.74rem;
  color: var(--muted);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--muted);
}

.nav-links a:hover,
.footer-links a:hover {
  color: var(--saffron);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 14px;
  border: 1px solid transparent;
  font-weight: 600;
  transition: 0.25s ease;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, var(--saffron), #ff8d1e);
  color: var(--white);
  box-shadow: 0 12px 24px rgba(255, 122, 0, 0.22);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--rust), #d65a1a);
  transform: translateY(-1px);
}

.btn-secondary {
  background: transparent;
  color: var(--brown);
  border-color: var(--border);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.6);
}

.btn-light {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.28);
}

.btn-light:hover {
  background: rgba(255, 255, 255, 0.08);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 10px 0 44px;
}

.hero-bg {
  position: absolute;
  border-radius: 999px;
  filter: blur(10px);
  pointer-events: none;
}

.hero-bg-1 {
  width: 420px;
  height: 420px;
  right: -100px;
  top: -70px;
  background: radial-gradient(circle, rgba(255, 122, 0, 0.16), transparent 68%);
}

.hero-bg-2 {
  width: 360px;
  height: 360px;
  left: -80px;
  bottom: -80px;
  background: radial-gradient(circle, rgba(194, 65, 12, 0.1), transparent 70%);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.72);
  color: var(--rust);
  font-size: 0.9rem;
  font-weight: 600;
}

.eyebrow.center {
  margin-inline: auto;
}

.hero-copy h1,
.section-head h2,
.cta-box h2 {
  font-family: "Playfair Display", serif;
  letter-spacing: -0.02em;
}

.hero-copy h1 {
  margin: 18px 0 18px;
  font-size: clamp(2.5rem, 5vw, 4.7rem);
  line-height: 1.04;
  max-width: 680px;
}

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

.hero-text {
  max-width: 590px;
  color: var(--muted);
  font-size: 1.08rem;
}

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

.benefits {
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  gap: 12px 18px;
  margin-top: 28px;
  max-width: 560px;
}

.benefit {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--brown);
  font-size: 0.95rem;
}

.benefit span {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(255, 122, 0, 0.14);
  color: var(--saffron);
  font-size: 0.82rem;
  font-weight: 700;
}

.hero-visual {
  position: relative;
  min-height: 760px;
}

.phone-card {
  position: absolute;
  left: 0;
  top: 44px;
  width: 320px;
  padding: 10px;
  border-radius: 40px;
  background: #161311;
  box-shadow: var(--shadow-strong);
  z-index: 2;
}

.phone-notch {
  width: 110px;
  height: 22px;
  margin: 0 auto 8px;
  border-radius: 999px;
  background: #2a231f;
}

.phone-screen {
  overflow: hidden;
  border-radius: 30px;
  background: #fffdf9;
}

.menu-banner {
  height: 150px;
  padding: 18px;
  background:
    linear-gradient(rgba(99, 54, 24, 0.22), rgba(99, 54, 24, 0.18)),
    linear-gradient(135deg, #cf6b1b, #9f4d17);
  position: relative;
}

.menu-banner::after {
  content: "";
  position: absolute;
  inset: auto 18px 14px;
  height: 48px;
  border-radius: 18px;
  background: rgba(255, 248, 240, 0.14);
  filter: blur(18px);
}

.menu-banner-text {
  position: relative;
  z-index: 1;
  color: var(--white);
}

.menu-logo {
  font-family: "Playfair Display", serif;
  font-size: 1.75rem;
  font-weight: 700;
}

.menu-tag {
  margin-top: 4px;
  font-size: 0.86rem;
  opacity: 0.95;
}

.restaurant-header {
  margin: -22px 16px 0;
  padding: 16px;
  border-radius: 20px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
  position: relative;
  z-index: 2;
}

.restaurant-header h3 {
  margin: 0;
  font-size: 1.4rem;
}

.restaurant-header p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.menu-list {
  padding: 14px 16px 10px;
}

.menu-item {
  padding: 14px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid #f1e5da;
}

.menu-item:last-child {
  border-bottom: 0;
}

.menu-item .dish-thumb {
  width: 56px;
  height: 56px;
  flex: 0 0 56px;
  border-radius: 10px;
  object-fit: cover;
  background: #fff;
  border: 1px solid rgba(241, 229, 218, 0.9);
}

.menu-item > div {
  flex: 1 1 auto;
}

.menu-item strong {
  display: block;
  font-size: 0.97rem;
}

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

.menu-item span {
  color: var(--saffron);
  font-weight: 700;
  white-space: nowrap;
}

.menu-cta {
  width: calc(100% - 32px);
  margin: 8px 16px 18px;
  min-height: 46px;
  border: 0;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--saffron), #ff8d1e);
  color: var(--white);
  font-weight: 600;
}

.qr-stand {
  position: absolute;
  right: 4px;
  top: 410px;
  width: 250px;
  padding: 22px;
  border-radius: 28px;
  background: linear-gradient(180deg, #fff9f2, #f7e8d6);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  text-align: center;
  z-index: 10;
}

.qr-title {
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  margin-bottom: 16px;
}

.qr-box {
  width: 170px;
  height: 170px;
  margin: 0 auto 14px;
  padding: 14px;
  border-radius: 18px;
  background: var(--white);
  box-shadow: inset 0 0 0 1px #f2dfcf;
}

.qr-inner {
  width: 100%;
  height: 100%;
  background: url("./assets/qr-code.png") center/cover no-repeat;
  border-radius: 10px;
}

.qr-stand p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.food-platter {
  position: absolute;
  right: 0;
  bottom: 6px;
  width: 380px;
  height: 230px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 20% 30%, rgba(255, 243, 228, 0.9), transparent 24%),
    linear-gradient(135deg, #e6b98c, #bd7b40);
  border: 1px solid rgba(184, 119, 66, 0.34);
  box-shadow: var(--shadow-strong);
  overflow: hidden;
}

.food-platter::before {
  content: "";
  position: absolute;
  inset: auto 20px 16px 20px;
  height: 18px;
  border-radius: 999px;
  background: rgba(92, 47, 18, 0.08);
  filter: blur(8px);
}

.food-bowl {
  position: absolute;
  border-radius: 999px;
  background: linear-gradient(180deg, #fff2df, #edd0ab);
  border: 6px solid rgba(255, 248, 241, 0.9);
  box-shadow: inset 0 0 0 2px rgba(159, 92, 42, 0.08);
}

.food-bowl::after {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 999px;
  background: radial-gradient(circle at 35% 30%, #f2c46d, #c95e27 74%);
}

.bowl-1 {
  width: 90px;
  height: 90px;
  left: 26px;
  bottom: 32px;
}

.bowl-2 {
  width: 122px;
  height: 122px;
  left: 114px;
  bottom: 18px;
}

.bowl-3 {
  width: 86px;
  height: 86px;
  right: 104px;
  bottom: 44px;
}

.bowl-4 {
  width: 102px;
  height: 102px;
  right: 18px;
  bottom: 24px;
}

.section {
  padding: 84px 0;
}

.section-soft {
  background:
    linear-gradient(180deg, rgba(250, 243, 224, 0.9), rgba(250, 243, 224, 0.9)),
    radial-gradient(circle at top right, rgba(255, 122, 0, 0.08), transparent 24%);
}

.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 42px;
}

.section-head h2 {
  margin: 16px 0 10px;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
}

.section-head p {
  margin: 0;
  color: var(--muted);
}

.feature-grid,
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

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

.info-card,
.step-card {
  padding: 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: var(--shadow-soft);
}

.icon-wrap {
  width: 54px;
  height: 54px;
  margin-bottom: 16px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: rgba(255, 122, 0, 0.13);
  color: var(--saffron);
  font-size: 1.4rem;
}

.info-card h3,
.step-card h3 {
  margin: 0 0 8px;
  font-size: 1.22rem;
}

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

.step-no {
  color: var(--saffron);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.cta-box {
  padding: 42px;
  border-radius: var(--radius-xl);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  background:
    radial-gradient(circle at top right, rgba(255, 155, 71, 0.14), transparent 28%),
    linear-gradient(135deg, #3f2a1d, #5a3825);
  color: var(--white);
  box-shadow: var(--shadow-strong);
}

.cta-box h2 {
  margin: 14px 0 8px;
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1.06;
}

.cta-box p {
  margin: 0;
  color: #f0d7c2;
  max-width: 620px;
}

.cta-eyebrow {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
  color: #ffbe84;
}

.cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.cta-actions .contact-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 8px;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
}

.cta-actions .contact-item {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: rgba(255, 255, 255, 0.95);
}

.cta-actions .contact-item svg {
  display: block;
  color: rgba(255, 255, 255, 0.9);
}

.cta-actions .contact-item span {
  display: inline-block;
}

.cta-actions .contact-item:hover svg,
.cta-actions .contact-item:hover span {
  color: var(--saffron);
}

/* contact toggle */
#contact-toggle {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

label[for="contact-toggle"].btn {
  display: inline-flex;
}

/* hide contact info by default on wide screens, show when checkbox is checked */
#contact-info {
  display: none;
  margin-top: 8px;
}

#contact-toggle:checked + label + #contact-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

@media (min-width: 1025px) {
  #contact-info {
    align-items: flex-end;
  }
}

@media (min-width: 1025px) {
  .cta-actions .contact-info {
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
    margin-top: 0;
  }
}

.site-footer {
  padding: 18px 0 36px;
  color: var(--muted);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  gap: 18px;
}

@media (max-width: 1024px) {
  .cta-box,
  .feature-grid,
  .steps-grid,
  .steps-grid-4 {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 760px;
    max-width: 460px;
    margin: 0 auto;
  }

  .phone-card {
    left: 50%;
    transform: translateX(-50%);
  }

  .qr-stand {
    right: auto;
    left: 50%;
    top: 410px;
    transform: translateX(-20%);
  }

  .food-platter {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    bottom: 0;
  }

  .cta-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 760px) {
  .nav-links {
    display: none;
  }

  .hero {
    padding-top: 42px;
  }

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

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

  .qr-stand {
    transform: translateX(4%);
  }

  .qr-box {
    width: 146px;
    height: 146px;
  }

  .food-platter {
    width: min(100%, 360px);
    height: 210px;
  }

  .cta-box {
    padding: 30px 22px;
  }
}

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

  .nav {
    min-height: 68px;
  }

  .brand-title {
    font-size: 1.25rem;
  }

  .btn {
    min-height: 44px;
    padding: 0 18px;
    text-align: center ;
  }

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

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

  .qr-stand {
    left: 50%;
    transform: translateX(-25%);
    top: 400px;
  }

  .food-platter {
    height: 190px;
  }

  .section {
    padding: 68px 0;
  }

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

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

  .phone-card {
    position: static;
    transform: none;
  }
}