:root {
  color-scheme: light;
  --bg: #fff8ef;
  --surface: #ffffff;
  --surface-strong: #fff1df;
  --text: #24160d;
  --muted: #7b6658;
  --brand: #b45309;
  --brand-dark: #7c2d12;
  --border: #efd8be;
  --shadow: 0 24px 70px rgba(124, 45, 18, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top right, rgba(251, 191, 36, 0.28), transparent 34rem),
    linear-gradient(180deg, #fff8ef 0%, #ffffff 72%);
  color: var(--text);
  font-family:
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  line-height: 1.7;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 248, 239, 0.88);
  border-bottom: 1px solid rgba(239, 216, 190, 0.72);
  backdrop-filter: blur(16px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: 1120px;
  margin: 0 auto;
  padding: 1rem 1.25rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 1.25rem;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  width: 2.45rem;
  height: 2.45rem;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  border-radius: 0.9rem;
  box-shadow: 0 10px 24px rgba(180, 83, 9, 0.22);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  color: var(--muted);
  font-size: 0.98rem;
  font-weight: 650;
}

.nav-links a:hover {
  color: var(--brand-dark);
}

.hero,
.section {
  max-width: 1120px;
  margin: 0 auto;
  padding: 5rem 1.25rem;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  align-items: center;
  gap: 4rem;
  min-height: 78vh;
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--brand);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.05em;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 1rem;
  font-size: clamp(2.6rem, 8vw, 5.3rem);
  line-height: 1.05;
  letter-spacing: -0.05em;
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.16;
  letter-spacing: -0.035em;
}

h3 {
  margin-bottom: 0.45rem;
  font-size: 1.2rem;
}

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

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.15rem;
  padding: 0.85rem 1.35rem;
  color: #fff;
  background: var(--brand-dark);
  border: 1px solid var(--brand-dark);
  border-radius: 999px;
  font-weight: 800;
  box-shadow: 0 16px 30px rgba(124, 45, 18, 0.18);
}

.button:hover {
  transform: translateY(-1px);
}

.button.secondary {
  color: var(--brand-dark);
  background: rgba(255, 255, 255, 0.72);
  border-color: var(--border);
  box-shadow: none;
}

.phone-card {
  width: min(100%, 340px);
  margin-inline: auto;
  padding: 0.9rem;
  background: #2b170e;
  border-radius: 2.3rem;
  box-shadow: var(--shadow);
}

.phone-top {
  width: 6rem;
  height: 0.42rem;
  margin: 0.4rem auto 1rem;
  background: rgba(255, 255, 255, 0.28);
  border-radius: 999px;
}

.app-preview {
  min-height: 510px;
  padding: 1.4rem;
  background:
    linear-gradient(180deg, rgba(255, 241, 223, 0.82), #fff),
    var(--surface);
  border-radius: 1.7rem;
}

.preview-logo {
  display: inline-flex;
  margin-bottom: 2rem;
  padding: 0.4rem 0.8rem;
  color: var(--brand-dark);
  background: var(--surface-strong);
  border-radius: 999px;
  font-weight: 900;
}

.app-preview h2 {
  margin-bottom: 1.4rem;
  font-size: 1.85rem;
}

.menu-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.8rem;
  padding: 1rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 1.1rem;
}

.menu-item strong {
  color: var(--brand);
}

.checkout {
  margin-top: 2rem;
  padding: 1rem;
  color: #fff;
  text-align: center;
  background: var(--brand-dark);
  border-radius: 1rem;
  font-weight: 900;
}

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

.features article,
.privacy,
.contact {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--border);
  border-radius: 1.5rem;
  box-shadow: 0 18px 50px rgba(124, 45, 18, 0.08);
}

.features article {
  padding: 1.4rem;
}

.features p,
.privacy p,
.contact p {
  color: var(--muted);
}

.privacy,
.contact {
  margin-top: 2rem;
  padding: 2rem;
}

.contact .button {
  direction: ltr;
  margin-top: 0.5rem;
}

.footer {
  max-width: 1120px;
  margin: 0 auto;
  padding: 2rem 1.25rem 3rem;
  color: var(--muted);
  text-align: center;
}

@media (max-width: 820px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    width: 100%;
    justify-content: space-between;
    gap: 0.75rem;
    font-size: 0.9rem;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    min-height: auto;
    padding-top: 3rem;
  }

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

@media (max-width: 480px) {
  .hero,
  .section {
    padding-inline: 1rem;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .phone-card {
    border-radius: 1.7rem;
  }

  .app-preview {
    min-height: 430px;
  }
}
