*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream: #F5F0E8;
  --dark: #1A1410;
  --brown: #3D2B1F;
  --gold: #C8973A;
  --gold-light: #E8B96A;
  --rust: #B85C2A;
  --text-muted: #7A6A5A;
  --card-bg: #FDFAF5;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--dark);
  overflow-x: hidden;
}

/* ── NOISE TEXTURE OVERLAY ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 999;
  opacity: 0.5;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 3rem;
  background: rgba(245, 240, 232, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(200, 151, 58, 0.15);
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--brown);
  letter-spacing: -0.02em;
}

.nav-logo span { color: var(--gold); }

.nav-cta {
  background: var(--dark);
  color: var(--cream);
  border: none;
  padding: 0.55rem 1.4rem;
  border-radius: 2px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  text-transform: uppercase;
}

.nav-cta:hover { background: var(--brown); transform: translateY(-1px); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 80px;
  position: relative;
  overflow: hidden;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem 3rem 5rem 4rem;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(200, 151, 58, 0.12);
  border: 1px solid rgba(200, 151, 58, 0.3);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.4rem 0.9rem;
  border-radius: 2px;
  margin-bottom: 2rem;
  width: fit-content;
  animation: fadeUp 0.6s ease both;
}

.hero-badge::before { content: '◆'; font-size: 0.5rem; }

h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 4.5vw, 4.2rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--brown);
  margin-bottom: 1.5rem;
  animation: fadeUp 0.6s 0.1s ease both;
}

h1 em {
  font-style: italic;
  color: var(--gold);
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 420px;
  margin-bottom: 2.5rem;
  font-weight: 300;
  animation: fadeUp 0.6s 0.2s ease both;
}

/* ── WAITLIST FORM ── */
.waitlist-box {
  background: var(--card-bg);
  border: 1px solid rgba(200, 151, 58, 0.2);
  border-radius: 4px;
  padding: 2rem;
  max-width: 420px;
  animation: fadeUp 0.6s 0.3s ease both;
  box-shadow: 0 8px 40px rgba(61, 43, 31, 0.08);
}

.waitlist-box h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--brown);
  margin-bottom: 0.4rem;
}

.waitlist-box p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.form-row input, .form-row select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(61, 43, 31, 0.2);
  border-radius: 2px;
  background: white;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  color: var(--dark);
  outline: none;
  transition: border-color 0.2s;
}

.form-row input:focus, .form-row select:focus {
  border-color: var(--gold);
}

.form-row input::placeholder { color: #B0A090; }

.submit-btn {
  width: 100%;
  background: var(--gold);
  color: white;
  border: none;
  padding: 0.85rem;
  border-radius: 2px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}

.submit-btn:hover { background: var(--rust); transform: translateY(-1px); }

.form-note {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 0.75rem;
}

/* SUCCESS STATE */
.success-msg {
  display: none;
  text-align: center;
  padding: 1.5rem;
}

.success-msg .check {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
  display: block;
}

.success-msg h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--brown);
  margin-bottom: 0.5rem;
}

.success-msg p { font-size: 0.9rem; color: var(--text-muted); }

/* ── HERO RIGHT — MOCKUP ── */
.hero-right {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 5rem 3rem;
  overflow: hidden;
}

.hero-right::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -15%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(200,151,58,0.15) 0%, transparent 70%);
  pointer-events: none;
}

/* Phone mockup */
.phone-wrap {
  position: relative;
  animation: float 4s ease-in-out infinite, fadeUp 0.8s 0.4s ease both;
}

.phone {
  width: 260px;
  background: var(--dark);
  border-radius: 36px;
  padding: 12px;
  box-shadow:
    0 40px 80px rgba(61, 43, 31, 0.35),
    0 0 0 1px rgba(255,255,255,0.05),
    inset 0 1px 0 rgba(255,255,255,0.1);
  position: relative;
  z-index: 2;
}

.phone-inner {
  background: #FAFAF8;
  border-radius: 28px;
  overflow: hidden;
  height: 520px;
}

.phone-status {
  background: var(--dark);
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.phone-notch {
  width: 80px;
  height: 18px;
  background: #0a0a0a;
  border-radius: 0 0 14px 14px;
}

/* Menu content inside phone */
.menu-header {
  background: var(--brown);
  padding: 1rem;
  text-align: center;
}

.menu-header-name {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--cream);
  font-weight: 700;
}

.menu-header-sub {
  font-size: 0.6rem;
  color: rgba(245,240,232,0.6);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 2px;
}

.menu-cats {
  display: flex;
  gap: 0.5rem;
  padding: 0.75rem 0.75rem 0;
  overflow-x: auto;
}

.menu-cat {
  font-size: 0.6rem;
  font-weight: 500;
  padding: 0.3rem 0.6rem;
  border-radius: 20px;
  white-space: nowrap;
  letter-spacing: 0.03em;
}

.menu-cat.active { background: var(--gold); color: white; }
.menu-cat.inactive { background: #F0EDE8; color: var(--text-muted); }

.menu-items { padding: 0.5rem 0.75rem; }

.menu-item {
  display: flex;
  gap: 0.6rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(61,43,31,0.07);
  align-items: center;
}

.menu-item-img {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  flex-shrink: 0;
  object-fit: cover;
}

.menu-item-img-placeholder {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.menu-item-info { flex: 1; }

.menu-item-name {
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 2px;
}

.menu-item-desc {
  font-size: 0.55rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.menu-item-price {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--gold);
  white-space: nowrap;
}

/* QR card floating */
.qr-card {
  position: absolute;
  bottom: 20px;
  right: -50px;
  background: white;
  border-radius: 12px;
  padding: 0.75rem;
  box-shadow: 0 12px 40px rgba(61,43,31,0.2);
  z-index: 3;
  animation: float 4s 1s ease-in-out infinite;
  width: 100px;
  text-align: center;
}

.qr-svg {
  width: 60px;
  height: 60px;
  margin: 0 auto;
  display: block;
}

.qr-label {
  font-size: 0.55rem;
  color: var(--text-muted);
  margin-top: 4px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Stats bubble */
.stat-bubble {
  position: absolute;
  top: 80px;
  left: -40px;
  background: var(--gold);
  color: white;
  border-radius: 12px;
  padding: 0.6rem 0.9rem;
  z-index: 3;
  animation: float 4s 0.5s ease-in-out infinite;
  box-shadow: 0 8px 20px rgba(200,151,58,0.4);
}

.stat-bubble-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1;
}

.stat-bubble-txt {
  font-size: 0.6rem;
  opacity: 0.85;
  margin-top: 2px;
}

/* ── HOW IT WORKS ── */
.section {
  padding: 6rem 4rem;
}

.section-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 700;
  color: var(--brown);
  line-height: 1.2;
  margin-bottom: 3.5rem;
  max-width: 500px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.step {
  position: relative;
}

.step-num {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: rgba(200, 151, 58, 0.15);
  line-height: 1;
  margin-bottom: 1rem;
  display: block;
}

.step-icon {
  font-size: 1.8rem;
  margin-bottom: 0.75rem;
  display: block;
}

.step h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--brown);
  margin-bottom: 0.5rem;
}

.step p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── FEATURES ── */
.features-section {
  background: var(--brown);
  padding: 6rem 4rem;
  position: relative;
  overflow: hidden;
}

.features-section::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(200,151,58,0.2) 0%, transparent 70%);
  pointer-events: none;
}

.features-section .section-title { color: var(--cream); }

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 800px;
}

.feature-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 4px;
  padding: 1.5rem;
  transition: background 0.2s, transform 0.2s;
}

.feature-card:hover {
  background: rgba(255,255,255,0.09);
  transform: translateY(-2px);
}

.feature-icon { font-size: 1.5rem; margin-bottom: 0.75rem; display: block; }

.feature-card h4 {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 0.4rem;
}

.feature-card p {
  font-size: 0.82rem;
  color: rgba(245,240,232,0.5);
  line-height: 1.6;
}

/* ── PRICING PREVIEW ── */
.pricing-section {
  padding: 6rem 4rem;
  background: var(--cream);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 900px;
}

.pricing-card {
  background: var(--card-bg);
  border: 1px solid rgba(200,151,58,0.2);
  border-radius: 4px;
  padding: 2rem;
  position: relative;
}

.pricing-card.featured {
  background: var(--dark);
  border-color: var(--gold);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: white;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.8rem;
  border-radius: 20px;
  white-space: nowrap;
}

.pricing-plan {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.pricing-card.featured .pricing-plan { color: rgba(245,240,232,0.5); }

.pricing-price {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--brown);
  line-height: 1;
}

.pricing-card.featured .pricing-price { color: var(--cream); }

.pricing-price span {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--text-muted);
}

.pricing-divider {
  height: 1px;
  background: rgba(61,43,31,0.1);
  margin: 1.25rem 0;
}

.pricing-card.featured .pricing-divider { background: rgba(255,255,255,0.1); }

.pricing-features { list-style: none; }

.pricing-features li {
  font-size: 0.85rem;
  color: var(--text-muted);
  padding: 0.3rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.pricing-card.featured .pricing-features li { color: rgba(245,240,232,0.7); }

.pricing-features li::before { content: '✓'; color: var(--gold); font-weight: 700; }

.early-note {
  margin-top: 2rem;
  padding: 1rem 1.5rem;
  background: rgba(200,151,58,0.1);
  border-left: 3px solid var(--gold);
  border-radius: 2px;
  font-size: 0.88rem;
  color: var(--text-muted);
  max-width: 500px;
}

.early-note strong { color: var(--brown); }

/* ── FOOTER WAITLIST ── */
.footer-waitlist {
  background: var(--dark);
  padding: 5rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.footer-waitlist::before {
  content: '';
  position: absolute;
  top: -150px; left: 50%; transform: translateX(-50%);
  width: 600px; height: 300px;
  background: radial-gradient(ellipse, rgba(200,151,58,0.15) 0%, transparent 70%);
}

.footer-waitlist h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 1rem;
  position: relative;
}

.footer-waitlist p {
  color: rgba(245,240,232,0.5);
  max-width: 420px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.footer-form {
  display: flex;
  gap: 0.75rem;
  max-width: 440px;
  margin: 0 auto;
  position: relative;
}

.footer-form input {
  flex: 1;
  padding: 0.85rem 1.1rem;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 2px;
  background: rgba(255,255,255,0.06);
  color: white;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s;
}

.footer-form input::placeholder { color: rgba(255,255,255,0.3); }
.footer-form input:focus { border-color: var(--gold); }

.footer-form button {
  background: var(--gold);
  color: white;
  border: none;
  padding: 0.85rem 1.5rem;
  border-radius: 2px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}

.footer-form button:hover { background: var(--gold-light); }

.footer-bottom {
  margin-top: 4rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 0.8rem;
  color: rgba(245,240,232,0.3);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom a { color: var(--gold); text-decoration: none; }

/* ── COUNTER STRIP ── */
.counter-strip {
  background: var(--gold);
  padding: 1.25rem 4rem;
  display: flex;
  justify-content: center;
  gap: 4rem;
}

.counter-item { text-align: center; color: white; }

.counter-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  display: block;
  line-height: 1;
}

.counter-label {
  font-size: 0.7rem;
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 3px;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav { padding: 1rem 1.5rem; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: 6rem 1.5rem 2rem; }
  .hero-right { display: none; }
  .section { padding: 4rem 1.5rem; }
  .steps { grid-template-columns: 1fr; }
  .features-section { padding: 4rem 1.5rem; }
  .features-grid { grid-template-columns: 1fr; }
  .pricing-section { padding: 4rem 1.5rem; }
  .pricing-grid { grid-template-columns: 1fr; }
  .footer-waitlist { padding: 4rem 1.5rem; }
  .footer-form { flex-direction: column; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  .counter-strip { padding: 1.25rem 1.5rem; gap: 2rem; }
}
