:root {
  --green-dark: #22382c;
  --green: #304f3e;
  --burgundy: #6f1d2f;
  --burgundy-light: #8b263d;
  --gold: #f4c96b;
  --cream: #f8f5ee;
  --cream-dark: #eadfcd;
  --text: #1f2d24;
  --muted: #6d6252;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(31, 45, 36, 0.14);
  --radius-xl: 32px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--cream);
}

img, svg {
  max-width: 100%;
}

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

button, .button {
  font-family: inherit;
}

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

.section-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: radial-gradient(circle at 10% 25%, rgba(244, 201, 107, 0.28), transparent 28%),
    radial-gradient(circle at 90% 80%, rgba(139, 38, 61, 0.45), transparent 30%),
    linear-gradient(135deg, var(--green-dark), var(--green), var(--burgundy));
}

.nav {
  position: relative;
  z-index: 10;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.brand-logo {
  width: 62px;
  height: 62px;
  object-fit: contain;
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.18));
  flex-shrink: 0;
}

.brand strong {
  display: block;
  font-size: 1.25rem;
  letter-spacing: -0.04em;
}

.brand small {
  display: block;
  margin-top: 2px;
  font-size: 0.67rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.62);
}

@media (max-width: 640px) {
  .brand-logo {
    width: 52px;
    height: 52px;
  }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-weight: 700;
  color: rgba(255,255,255,0.78);
}

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

.nav-cta {
  padding: 12px 20px;
  border-radius: 999px;
  color: var(--green-dark) !important;
  background: var(--gold);
}

.mobile-menu-button {
  display: none;
  border: 0;
  color: var(--white);
  font-size: 1.7rem;
  background: transparent;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 70px 0 104px;
}

.eyebrow, .section-heading span, .benefits-copy span, .guest-section span {
  display: inline-flex;
  color: var(--burgundy-light);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.22em;
}

.hero .eyebrow {
  margin-bottom: 24px;
  padding: 10px 16px;
  border-radius: 999px;
  color: rgba(255,255,255,0.86);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.16);
}

.hero h1 {
  margin: 0;
  max-width: 680px;
  font-size: clamp(3rem, 7vw, 6.4rem);
  line-height: 0.94;
  letter-spacing: -0.075em;
  font-weight: 900;
}

.hero-copy > p {
  margin: 28px 0 0;
  max-width: 620px;
  color: rgba(255,255,255,0.8);
  font-size: 1.12rem;
  line-height: 1.8;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 26px;
  border-radius: 999px;
  font-weight: 900;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.button.primary {
  color: var(--green-dark);
  background: var(--gold);
  box-shadow: 0 15px 35px rgba(244, 201, 107, 0.25);
}

.button.secondary {
  color: var(--white);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.22);
}

.subnote {
  margin-top: 18px !important;
  font-size: 0.92rem !important;
  color: rgba(255,255,255,0.56) !important;
}

.phone-wrap {
  display: flex;
  justify-content: center;
}

.phone {
  width: min(380px, 100%);
  padding: 14px;
  border-radius: 44px;
  background: #0f1713;
  box-shadow: 0 38px 90px rgba(0,0,0,0.32);
  border: 1px solid rgba(255,255,255,0.18);
}

.phone-screen {
  padding: 22px;
  border-radius: 34px;
  color: var(--text);
  background: var(--cream);
}

.screen-header {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  margin-bottom: 20px;
}

.screen-header span {
  color: #7a6b56;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.screen-header h2 {
  margin: 4px 0 0;
  font-size: 1.75rem;
  letter-spacing: -0.06em;
}

.qr-mark {
  font-size: 2.2rem;
  color: var(--burgundy);
}

.allergen-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 16px;
}

.allergen-buttons button {
  border: 1px solid #d9cbb7;
  border-radius: 999px;
  background: var(--white);
  padding: 10px;
  color: var(--text);
  font-weight: 800;
  box-shadow: 0 4px 12px rgba(0,0,0,0.04);
}

.result-card {
  padding: 15px;
  border-radius: 20px;
  margin-top: 12px;
}

.result-card strong {
  display: block;
  margin-bottom: 6px;
  font-size: 0.84rem;
}

.result-card h3 {
  margin: 0;
  font-size: 1rem;
}

.result-card p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

.clear {
  background: #eef9f1;
  border: 1px solid #bee7ca;
}

.clear strong { color: #257045; }
.cross {
  background: #fff8dc;
  border: 1px solid #f1dc87;
}
.cross strong { color: #967112; }
.contains {
  background: #fff0ef;
  border: 1px solid #f3c1bd;
}
.contains strong { color: #b3342b; }

.quick-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 88px 0;
}

.info-card, .step-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: var(--shadow);
}

.card-icon {
  font-size: 2.15rem;
  margin-bottom: 18px;
}

.info-card h2, .step-card h3 {
  margin: 0;
  font-size: 1.6rem;
  letter-spacing: -0.05em;
}

.info-card p, .step-card p, .section-heading p, .benefits-copy p, .guest-section p, .cta-card p {
  color: var(--muted);
  line-height: 1.75;
}

.how-section {
  background: var(--white);
  padding: 90px 0;
}

.section-heading {
  max-width: 760px;
}

.section-heading h2, .benefits-copy h2, .guest-section h2, .cta-card h2 {
  margin: 14px 0 0;
  font-size: clamp(2.25rem, 5vw, 4rem);
  line-height: 1.02;
  letter-spacing: -0.075em;
}

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

.step-card {
  background: var(--cream);
  border: 1px solid var(--cream-dark);
  box-shadow: none;
}

.step-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 22px;
  border-radius: 18px;
  color: var(--gold);
  background: var(--green-dark);
  font-weight: 900;
}

.step-card small {
  display: block;
  margin-bottom: 10px;
  color: var(--burgundy-light);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.benefits-section {
  padding: 92px 0;
}

.benefit-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.benefit-list div {
  padding: 20px;
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0 10px 26px rgba(31, 45, 36, 0.08);
  font-weight: 800;
  line-height: 1.55;
}

.guest-section {
  padding: 92px 0;
  color: var(--white);
  background: var(--green-dark);
}

.guest-section span {
  color: var(--gold);
}

.guest-section p {
  color: rgba(255,255,255,0.75);
}

.feature-box {
  padding: 34px;
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 30px 60px rgba(0,0,0,0.18);
}

.feature-box h3 {
  margin: 0 0 20px;
  font-size: 1.8rem;
  letter-spacing: -0.05em;
}

.feature-box ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature-box li {
  position: relative;
  padding: 12px 0 12px 22px;
  font-weight: 800;
}

.feature-box li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 20px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--gold);
}

.cta-section {
  padding: 92px 0;
}

.cta-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
  padding: 52px;
  border-radius: 36px;
  color: var(--white);
  background: linear-gradient(135deg, var(--burgundy), var(--green-dark));
  box-shadow: var(--shadow);
}

.cta-card p {
  max-width: 700px;
  color: rgba(255,255,255,0.76);
}

.footer {
  padding: 34px 0;
  border-top: 1px solid var(--cream-dark);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
  font-size: 0.9rem;
}

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

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.12s; }
.delay-2 { transition-delay: 0.24s; }

@media (max-width: 900px) {
  .section-grid,
  .quick-cards,
  .steps,
  .benefit-list,
  .cta-card {
    grid-template-columns: 1fr;
  }

  .hero-content {
    padding-top: 42px;
  }

  .phone-wrap {
    order: -1;
  }

  .nav-links {
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    border-radius: 22px;
    background: rgba(15, 23, 19, 0.94);
    backdrop-filter: blur(12px);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 12px;
  }

  .mobile-menu-button {
    display: block;
  }

  .cta-card {
    padding: 34px;
  }

  .footer-inner {
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .container,
  .nav,
  .hero-content {
    width: min(100% - 28px, 1120px);
  }

  .brand small {
    display: none;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .hero-actions .button,
  .cta-card .button {
    width: 100%;
  }

  .info-card,
  .step-card,
  .feature-box {
    padding: 24px;
  }
}
