/* ============================================================
   Halalroo marketing site — shared styles
   ============================================================ */

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

:root {
  --primary: #1B5E20;
  --primary-light: #2E7D32;
  --primary-dark: #0F3D12;
  --gold: #C8A951;
  --gold-dark: #B89840;
  --cream: #F5F5DC;
  --cream-warm: #FAF8EC;
  --text: #1A1A1A;
  --muted: #6B6B6B;
  --muted-light: #9B9B95;
  --border: rgba(15, 61, 18, 0.1);
  --border-strong: rgba(15, 61, 18, 0.16);
  --card: #FFFFFF;
  --shadow: 0 3px 12px rgba(15, 61, 18, 0.06);
  --shadow-lg: 0 8px 30px rgba(15, 61, 18, 0.08);
  --shadow-xl: 0 20px 60px rgba(15, 61, 18, 0.12);
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--primary);
}

h1 { font-size: clamp(2.25rem, 5.5vw, 4rem); font-weight: 900; letter-spacing: -0.035em; }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.75rem); letter-spacing: -0.025em; }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.05rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

a { color: var(--primary); text-decoration: none; transition: color 0.15s; }
a:hover { text-decoration: underline; text-decoration-color: var(--gold); text-underline-offset: 3px; }

img { max-width: 100%; display: block; }
ul, ol { padding-left: 1.5rem; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.narrow { max-width: 780px; margin: 0 auto; padding: 0 24px; }

/* ============================================================
   NEW — Eyebrow labels (monospace section markers)
   ============================================================ */
.eyebrow {
  font-family: 'JetBrains Mono', 'Courier New', monospace;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-dark);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--gold);
}
.eyebrow.centered { justify-content: center; }
.eyebrow.centered::after {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--gold);
}

/* ============================================================
   NEW — Scroll reveal animations
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Stagger children — apply .reveal-stagger to a container */
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-stagger.visible > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger.visible > *:nth-child(2) { transition-delay: 0.12s; }
.reveal-stagger.visible > *:nth-child(3) { transition-delay: 0.19s; }
.reveal-stagger.visible > *:nth-child(4) { transition-delay: 0.26s; }
.reveal-stagger.visible > *:nth-child(5) { transition-delay: 0.33s; }
.reveal-stagger.visible > *:nth-child(6) { transition-delay: 0.4s; }
.reveal-stagger.visible > * { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-stagger > *, html { transition: none !important; animation: none !important; scroll-behavior: auto !important; }
  .reveal, .reveal-stagger > * { opacity: 1; transform: none; }
}

/* ---------- Nav ---------- */
.nav {
  background: rgba(245, 245, 220, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: relative;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Fraunces', serif;
  font-weight: 900;
  font-size: 1.25rem;
  color: var(--primary);
  letter-spacing: -0.02em;
}
.nav-logo:hover { text-decoration: none; }
.nav-logo svg { width: 36px; height: 36px; }

.nav-links { display: flex; gap: 28px; align-items: center; list-style: none; padding: 0; }
.nav-links a { font-size: 0.925rem; font-weight: 600; color: var(--text); }
.nav-links a:hover { color: var(--primary); text-decoration: none; }

.nav-cta {
  background: var(--gold);
  color: var(--primary-dark) !important;
  padding: 10px 18px;
  border-radius: 12px;
  font-weight: 800 !important;
  transition: background 0.15s;
}
.nav-cta:hover { background: var(--gold-dark); text-decoration: none; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: 10px;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--primary);
  margin: 5px 0;
  transition: 0.2s;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    align-items: stretch;
    padding: 20px 24px;
    gap: 4px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 12px 0; }
  .nav-cta { text-align: center; }
  .nav-toggle { display: block; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 14px;
  font-weight: 800;
  font-size: 0.95rem;
  font-family: 'Inter', sans-serif;
  border: none;
  cursor: pointer;
  transition: all 0.15s ease;
  text-decoration: none;
  line-height: 1;
  -webkit-tap-highlight-color: transparent;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary { background: var(--gold); color: var(--primary-dark); }
.btn-primary:hover { background: var(--gold-dark); box-shadow: 0 6px 20px rgba(200, 169, 81, 0.3); }

.btn-secondary { background: var(--primary); color: #FFFFFF; }
.btn-secondary:hover { background: var(--primary-light); box-shadow: 0 6px 20px rgba(27, 94, 32, 0.25); }

.btn-outline { background: transparent; color: var(--primary); border: 2px solid var(--primary); }
.btn-outline:hover { background: var(--primary); color: #FFFFFF; }

.btn-lg { padding: 16px 28px; font-size: 1rem; }
.btn-block { width: 100%; }

.btn .arrow { transition: transform 0.2s; }
.btn:hover .arrow { transform: translateX(3px); }

/* ============================================================
   NEW — Hero (asymmetric two-column)
   ============================================================ */
.hero {
  padding: 88px 0 100px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(200, 169, 81, 0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-content h1 { margin-bottom: 20px; }
.hero-content .subhead {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--muted);
  margin-bottom: 32px;
  line-height: 1.65;
  max-width: 520px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 24px; }
.hero-note {
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-note strong { color: var(--primary); font-weight: 700; }
.hero-note::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

/* Hero visual — floating restaurant cards */
.hero-visual {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-visual::before {
  content: "";
  position: absolute;
  inset: 10%;
  background: linear-gradient(135deg, rgba(27, 94, 32, 0.04), rgba(200, 169, 81, 0.06));
  border-radius: 40%;
  filter: blur(40px);
  z-index: 0;
}

.float-card {
  position: absolute;
  width: 260px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  z-index: 1;
  animation: float 6s ease-in-out infinite;
}
.float-card-1 {
  top: 40px;
  left: 20px;
  transform: rotate(-4deg);
  animation-delay: 0s;
}
.float-card-2 {
  top: 180px;
  right: 20px;
  transform: rotate(3deg);
  animation-delay: -2s;
  z-index: 2;
}
.float-card-3 {
  bottom: 20px;
  left: 80px;
  transform: rotate(-2deg);
  animation-delay: -4s;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(var(--rotate, 0)); }
  50% { transform: translateY(-12px) rotate(var(--rotate, 0)); }
}
.float-card-1 { --rotate: -4deg; }
.float-card-2 { --rotate: 3deg; }
.float-card-3 { --rotate: -2deg; }

.float-card-header {
  height: 100px;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 12px;
}
.float-card-header.green { background: linear-gradient(135deg, #1B5E20, #2E7D32); }
.float-card-header.gold { background: linear-gradient(135deg, #B89840, #C8A951); }
.float-card-header.blue { background: linear-gradient(135deg, #2980B9, #3498DB); }

.float-card-badge {
  background: rgba(255, 255, 255, 0.95);
  padding: 5px 9px;
  border-radius: 8px;
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.float-card-badge svg { width: 11px; height: 11px; }

.float-card-body { padding: 14px; }
.float-card-body h4 {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--text);
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.float-card-body .meta {
  font-size: 0.75rem;
  color: var(--muted);
  font-weight: 500;
}
.float-card-body .rating {
  margin-top: 8px;
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text);
}
.float-card-body .rating svg { width: 13px; height: 13px; color: var(--gold); }

@media (max-width: 900px) {
  .hero { padding: 56px 0 60px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { height: 380px; }
  .float-card { width: 220px; }
  .float-card-1 { top: 0; left: 0; }
  .float-card-2 { top: 120px; right: 0; }
  .float-card-3 { bottom: 0; left: 40px; }
}
@media (max-width: 560px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .hero-visual { height: 320px; }
  .float-card { width: 190px; }
  .float-card-header { height: 80px; }
}

/* ============================================================
   NEW — Stat strip
   ============================================================ */
.stat-strip {
  background: var(--primary);
  color: #FFFFFF;
  padding: 48px 0;
  margin: 0;
}
.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}
.stat {
  text-align: center;
  padding: 0 12px;
}
.stat-number {
  font-family: 'Fraunces', serif;
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.03em;
  display: block;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
@media (max-width: 640px) {
  .stat-strip { padding: 36px 0; }
  .stat-grid { grid-template-columns: repeat(2, 1fr); gap: 28px 16px; }
}

/* ---------- Sections ---------- */
section { padding: 72px 0; }
.section-title { text-align: center; margin-bottom: 56px; }
.section-title h2 { margin-bottom: 14px; }
.section-title p { color: var(--muted); max-width: 620px; margin: 0 auto; font-size: 1.05rem; }

.section-title-left { text-align: left; margin-bottom: 48px; }
.section-title-left h2 { margin-bottom: 14px; }
.section-title-left p { color: var(--muted); max-width: 620px; font-size: 1.05rem; }

/* ---------- Feature cards ---------- */
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }

.feature {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
.feature:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-strong);
}

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(27, 94, 32, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--primary);
}
.feature-icon svg { width: 26px; height: 26px; stroke-width: 2; }
.feature h3 { margin-bottom: 8px; font-family: 'Inter', sans-serif; font-weight: 800; font-size: 1.05rem; color: var(--text); letter-spacing: -0.01em; }
.feature p { color: var(--muted); font-size: 0.925rem; margin: 0; line-height: 1.6; }

/* ---------- City grid ---------- */
.city-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 12px;
  max-width: 800px;
  margin: 0 auto;
}
.city-chip {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px 20px;
  text-align: center;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.2s;
}
.city-chip:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.city-chip::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* ---------- Owner CTA ---------- */
.owner-cta {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #FFFFFF;
  border-radius: var(--radius-xl);
  padding: 72px 40px;
  text-align: center;
  max-width: 960px;
  margin: 0 auto;
  box-shadow: 0 24px 60px rgba(27, 94, 32, 0.2);
  position: relative;
  overflow: hidden;
}
.owner-cta::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(200, 169, 81, 0.15) 0%, transparent 70%);
  pointer-events: none;
}
.owner-cta > * { position: relative; z-index: 1; }
.owner-cta .eyebrow { color: var(--gold); margin-bottom: 20px; }
.owner-cta .eyebrow::before { background: var(--gold); }
.owner-cta h2 { color: #FFFFFF; margin-bottom: 16px; }
.owner-cta p { color: rgba(255, 255, 255, 0.82); max-width: 540px; margin: 0 auto 32px; font-size: 1.05rem; }

@media (max-width: 600px) {
  .owner-cta { padding: 48px 24px; }
}

/* ============================================================
   NEW — Mobile sticky CTA
   ============================================================ */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: rgba(245, 245, 220, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
  z-index: 90;
  transform: translateY(100%);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 -4px 20px rgba(15, 61, 18, 0.08);
}
.mobile-cta.visible { transform: translateY(0); }
.mobile-cta .btn { width: 100%; }

@media (max-width: 768px) {
  .mobile-cta { display: block; }
  footer { padding-bottom: 130px; }
}

/* ---------- Footer ---------- */
footer {
  background: var(--primary-dark);
  color: rgba(255, 255, 255, 0.8);
  padding: 72px 0 32px;
  margin-top: 0;
  border-top: 1px solid rgba(200, 169, 81, 0.15);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}
.footer-brand {
  font-family: 'Fraunces', serif;
  font-weight: 900;
  font-size: 1.4rem;
  color: #FFFFFF;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.footer-brand-desc {
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.82);
  max-width: 320px;
  margin-bottom: 16px;
}
footer h4 {
  color: var(--gold);
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  margin-bottom: 18px;
  font-weight: 800;
}
footer ul { list-style: none; padding: 0; }
footer ul li { margin-bottom: 12px; }
footer ul a { color: #FFFFFF; font-size: 0.9rem; font-weight: 500; }
footer ul a:hover { color: var(--gold); text-decoration: none; }

.socials { display: flex; gap: 10px; margin-top: 8px; }
.socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.15s;
}
.socials a:hover { background: var(--gold); color: var(--primary-dark); text-decoration: none; transform: translateY(-2px); }
.socials svg { width: 16px; height: 16px; fill: currentColor; }

.footer-bottom {
  max-width: 1180px;
  margin: 48px auto 0;
  padding: 24px 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand-desc { grid-column: 1 / -1; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ---------- Forms ---------- */
.form-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
  max-width: 640px;
  margin: 0 auto;
}
@media (max-width: 500px) { .form-card { padding: 28px 22px; } }

.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}
.form-group .hint {
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 500;
  margin-top: 6px;
  line-height: 1.4;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 15px;
  border: 1px solid var(--border);
  border-radius: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  background: #FFFFFF;
  transition: border-color 0.15s, box-shadow 0.15s;
  -webkit-appearance: none;
  appearance: none;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%236B6B6B' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(27, 94, 32, 0.1);
}
.form-group textarea { resize: vertical; min-height: 110px; font-family: inherit; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; gap: 0; } }

.form-checkbox {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 24px;
  font-size: 0.9rem;
  line-height: 1.5;
  cursor: pointer;
}
.form-checkbox input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--primary);
  cursor: pointer;
}
.form-checkbox span { color: var(--muted); }

.form-error {
  color: #C62828;
  font-size: 0.8rem;
  margin-top: 6px;
  font-weight: 600;
  display: none;
}
.form-group.has-error input,
.form-group.has-error select,
.form-group.has-error textarea { border-color: #C62828; }
.form-group.has-error .form-error { display: block; }
.form-checkbox.has-error .form-error { display: block; }

.form-banner {
  padding: 16px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 20px;
  display: none;
}
.form-banner.error {
  background: rgba(198, 40, 40, 0.08);
  border: 1px solid rgba(198, 40, 40, 0.25);
  color: #C62828;
  display: block;
}
.form-banner.success {
  background: rgba(27, 94, 32, 0.08);
  border: 1px solid rgba(27, 94, 32, 0.25);
  color: var(--primary);
  display: block;
}

/* ---------- FAQ accordion ---------- */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: box-shadow 0.15s;
}
.faq-item:hover { box-shadow: var(--shadow); }
.faq-question {
  width: 100%;
  text-align: left;
  padding: 20px 24px;
  background: none;
  border: none;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  transition: color 0.15s;
}
.faq-question:hover { color: var(--primary); }
.faq-question .arrow { transition: transform 0.25s; flex-shrink: 0; color: var(--primary); }
.faq-item.open .arrow { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-item.open .faq-answer { max-height: 800px; }
.faq-answer-inner { padding: 0 24px 22px; color: var(--muted); line-height: 1.7; font-size: 0.95rem; }
.faq-answer-inner p { margin-bottom: 10px; }
.faq-answer-inner ul { margin-bottom: 10px; }

/* ---------- Legal pages ---------- */
.legal { max-width: 800px; margin: 0 auto; padding: 0 24px; }
.legal .meta { color: var(--muted); font-size: 0.9rem; margin-bottom: 36px; }
.legal h2 { font-size: 1.25rem; margin-top: 40px; margin-bottom: 12px; font-family: 'Inter', sans-serif; font-weight: 800; letter-spacing: -0.01em; }
.legal h3 { font-size: 1.05rem; margin-top: 24px; margin-bottom: 8px; font-family: 'Inter', sans-serif; font-weight: 700; }
.legal p, .legal li { font-size: 0.95rem; line-height: 1.7; }
.legal ul, .legal ol { padding-left: 22px; margin-bottom: 16px; }
.legal li { margin-bottom: 8px; }
.legal table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  background: var(--card);
  border-radius: 12px;
  overflow: hidden;
  font-size: 0.9rem;
  box-shadow: var(--shadow);
}
.legal th, .legal td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}
.legal th { background: rgba(27, 94, 32, 0.06); font-weight: 700; color: var(--primary); }
.legal tr:last-child td { border-bottom: none; }
.legal .callout {
  background: rgba(200, 169, 81, 0.12);
  border: 1px solid rgba(200, 169, 81, 0.3);
  border-radius: 12px;
  padding: 20px;
  margin: 24px 0;
}
.legal .callout strong { color: var(--primary); }
.legal .warning {
  background: rgba(198, 40, 40, 0.06);
  border: 1px solid rgba(198, 40, 40, 0.25);
  border-radius: 12px;
  padding: 20px;
  margin: 24px 0;
}
.legal .warning strong { color: #C62828; }

/* ---------- Page header ---------- */
.page-header { padding: 72px 0 48px; text-align: center; }
.page-header h1 { margin-bottom: 12px; }
.page-header p { color: var(--muted); max-width: 620px; margin: 0 auto; font-size: 1.05rem; }
.page-header .meta { font-size: 0.9rem; color: var(--muted); }

/* ---------- Success page ---------- */
.success-icon {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: rgba(27, 94, 32, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: var(--primary);
  animation: pop 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes pop {
  0% { transform: scale(0.6); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}
.success-icon svg { width: 42px; height: 42px; stroke-width: 2.5; }

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.mt-4 { margin-top: 2rem; }
.mt-6 { margin-top: 3rem; }
.muted { color: var(--muted); }

/* ============================================================
   TIER 2 — Walkthrough section (replaces feature grid)
   ============================================================ */
.walkthrough {
  padding: 80px 0;
}
.walkthrough-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1120px;
  margin: 0 auto 100px;
  padding: 0 24px;
}
.walkthrough-row:last-child { margin-bottom: 0; }
.walkthrough-row.reverse { direction: rtl; }
.walkthrough-row.reverse > * { direction: ltr; }

.walkthrough-content .eyebrow { color: var(--gold-dark); }
.walkthrough-content h2 {
  font-size: clamp(1.5rem, 2.8vw, 2.25rem);
  margin-bottom: 16px;
  letter-spacing: -0.025em;
}
.walkthrough-content p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 460px;
}
.walkthrough-content .btn-inline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--primary);
  border-bottom: 2px solid var(--gold);
  padding-bottom: 4px;
  transition: all 0.15s;
}
.walkthrough-content .btn-inline:hover {
  color: var(--gold-dark);
  text-decoration: none;
  gap: 10px;
}

.walkthrough-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.walkthrough-visual::before {
  content: "";
  position: absolute;
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, rgba(200, 169, 81, 0.08) 0%, transparent 65%);
  border-radius: 50%;
  filter: blur(30px);
  z-index: 0;
}

@media (max-width: 900px) {
  .walkthrough-row {
    grid-template-columns: 1fr;
    gap: 48px;
    margin-bottom: 80px;
    text-align: center;
  }
  .walkthrough-row.reverse { direction: ltr; }
  .walkthrough-content p { margin-left: auto; margin-right: auto; }
}

/* ============================================================
   TIER 2 — CSS phone mockup
   ============================================================ */
.phone {
  position: relative;
  width: 260px;
  height: 520px;
  border-radius: 42px;
  background: #1A1A1A;
  padding: 10px;
  box-shadow: 0 30px 80px rgba(15, 61, 18, 0.22), 0 4px 12px rgba(0, 0, 0, 0.1);
  z-index: 1;
  transform: rotate(-3deg);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.walkthrough-row.reverse .phone { transform: rotate(3deg); }
.phone:hover { transform: rotate(0deg); }

.phone::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 24px;
  background: #1A1A1A;
  border-radius: 0 0 16px 16px;
  z-index: 5;
}

.phone-screen {
  width: 100%;
  height: 100%;
  border-radius: 32px;
  background: var(--cream);
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}

/* Fake status bar */
.phone-status {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px 6px;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--text);
}
.phone-status .dots {
  display: flex;
  gap: 3px;
}
.phone-status .dots span {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--text);
  opacity: 0.4;
}

/* Screen content area */
.phone-body {
  flex: 1;
  padding: 8px 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow: hidden;
}

/* Mini search bar */
.mini-search {
  background: #FFFFFF;
  border-radius: 12px;
  padding: 9px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  color: var(--muted-light);
  font-weight: 500;
  border: 1px solid var(--border);
  flex-shrink: 0;
}
.mini-search svg { width: 12px; height: 12px; opacity: 0.5; }

/* Mini heading */
.mini-heading {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--primary);
  letter-spacing: -0.01em;
  margin-top: 2px;
}

/* Mini restaurant card */
.mini-card {
  background: #FFFFFF;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(15, 61, 18, 0.05);
  display: flex;
  flex-direction: row;
  flex-shrink: 0;
}
.mini-card-img {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #1B5E20, #2E7D32);
  flex-shrink: 0;
  position: relative;
}
.mini-card-img.gold { background: linear-gradient(135deg, #B89840, #C8A951); }
.mini-card-img.blue { background: linear-gradient(135deg, #2980B9, #3498DB); }
.mini-card-body {
  padding: 8px 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  min-width: 0;
  flex: 1;
}
.mini-card-title {
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  letter-spacing: -0.01em;
}
.mini-card-meta {
  font-size: 0.6rem;
  color: var(--muted);
  font-weight: 500;
}
.mini-card-rating {
  display: flex;
  align-items: center;
  gap: 3px;
  font-size: 0.62rem;
  font-weight: 700;
  color: var(--text);
}
.mini-card-rating svg { width: 9px; height: 9px; color: var(--gold); }

/* Mini filter chips */
.mini-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  flex-shrink: 0;
}
.mini-chip {
  padding: 5px 9px;
  border-radius: 8px;
  background: #FFFFFF;
  border: 1px solid var(--border);
  font-size: 0.6rem;
  font-weight: 700;
  color: var(--muted);
}
.mini-chip.active {
  background: var(--primary);
  color: #FFFFFF;
  border-color: var(--primary);
}
.mini-chip.active-gold {
  background: var(--gold);
  color: var(--primary-dark);
  border-color: var(--gold);
}

/* Mini saved cards (with hearts) */
.mini-saved-row {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #FFFFFF;
  border-radius: 12px;
  padding: 8px;
  box-shadow: 0 2px 6px rgba(15, 61, 18, 0.05);
  flex-shrink: 0;
}
.mini-saved-img {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: linear-gradient(135deg, #1B5E20, #2E7D32);
  flex-shrink: 0;
}
.mini-saved-img.alt { background: linear-gradient(135deg, #B89840, #C8A951); }
.mini-saved-img.alt2 { background: linear-gradient(135deg, #2980B9, #3498DB); }
.mini-saved-info {
  flex: 1;
  min-width: 0;
}
.mini-saved-title {
  font-size: 0.68rem;
  font-weight: 800;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mini-saved-sub {
  font-size: 0.58rem;
  color: var(--muted);
  margin-top: 2px;
}
.mini-heart {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(224, 80, 90, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #E0505A;
  flex-shrink: 0;
}
.mini-heart svg { width: 10px; height: 10px; fill: currentColor; }

/* ============================================================
   TIER 2 — Section dividers
   ============================================================ */
.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}
.section-divider::before,
.section-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200, 169, 81, 0.35), transparent);
}
.section-divider span {
  color: var(--gold);
  font-size: 0.75rem;
  letter-spacing: 0.4em;
  opacity: 0.7;
}

/* ============================================================
   TIER 2 — FAQ two-column layout
   ============================================================ */
.faq-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 56px;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
  align-items: start;
}
.faq-main .faq-list { max-width: none; margin: 0; }

.faq-sidebar {
  position: sticky;
  top: 100px;
}
.faq-sidebar-card {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: 0 12px 40px rgba(27, 94, 32, 0.18);
  position: relative;
  overflow: hidden;
}
.faq-sidebar-card::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(200, 169, 81, 0.18) 0%, transparent 70%);
  pointer-events: none;
}
.faq-sidebar-card > * { position: relative; z-index: 1; }
.faq-sidebar-card h3 {
  color: #FFFFFF;
  font-family: 'Fraunces', serif;
  font-size: 1.4rem;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.faq-sidebar-card p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 22px;
}
.faq-sidebar-card .btn {
  width: 100%;
}

.faq-sidebar-extra {
  margin-top: 20px;
  padding: 20px;
  background: rgba(200, 169, 81, 0.1);
  border: 1px solid rgba(200, 169, 81, 0.25);
  border-radius: var(--radius);
}
.faq-sidebar-extra h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--gold-dark);
  margin-bottom: 8px;
  font-weight: 800;
}
.faq-sidebar-extra p {
  font-size: 0.85rem;
  color: var(--text);
  line-height: 1.5;
  margin: 0;
}
.faq-sidebar-extra a {
  color: var(--primary);
  font-weight: 700;
}

@media (max-width: 900px) {
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .faq-sidebar {
    position: static;
    order: -1;
  }
}