/* Park'd Street Eats — warm & light homepage.
   Self-contained: does NOT touch styles.css (shared by trucks/privacy/terms). */

:root {
  --bg: #fffaf3;
  --bg-2: #fff2e4;
  --ink: #2c1e14;
  --muted: #7c6b5c;
  --faint: #a99b8c;
  --amber: #f4a45c;
  --orange: #f4863b;
  --deep: #e0701f;
  --brown: #3a2a1e;
  --card: #ffffff;
  --line: #f0e2d1;
  --radius: 20px;
  --max: 1180px;
  --shadow: 0 20px 50px rgba(126, 74, 22, 0.10);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg); color: var(--ink); line-height: 1.6;
  overflow-x: hidden; position: relative;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
em { font-style: normal; color: var(--deep); font-weight: 600; }

/* ---------- Ambient warm wash ---------- */
.ambient { position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.orb { position: absolute; border-radius: 50%; filter: blur(90px); opacity: .5; }
.orb--1 { width: 46vw; height: 46vw; left: -12vw; top: -12vw;
  background: radial-gradient(circle, rgba(244,134,59,.35), transparent 70%); }
.orb--2 { width: 40vw; height: 40vw; right: -14vw; top: 22vh;
  background: radial-gradient(circle, rgba(244,164,92,.30), transparent 70%); }
.orb--3 { width: 36vw; height: 36vw; left: 34vw; bottom: -14vw;
  background: radial-gradient(circle, rgba(255,206,150,.34), transparent 70%); }

/* ---------- Gradient text ---------- */
.grad { background: linear-gradient(100deg, var(--orange), var(--deep));
  -webkit-background-clip: text; background-clip: text; color: transparent; }
.grad--light { background: linear-gradient(100deg, #ffd9a8, #ffb066);
  -webkit-background-clip: text; background-clip: text; color: transparent; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-weight: 700; font-size: 15px; padding: 12px 22px; border-radius: 999px;
  border: 1px solid var(--line); background: #fff; color: var(--ink);
  cursor: pointer; transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn--sm { padding: 9px 16px; font-size: 14px; }
.btn--lg { padding: 15px 28px; font-size: 16px; }
.btn--glow { background: linear-gradient(100deg, var(--orange), var(--deep));
  color: #fff; border-color: transparent; box-shadow: 0 10px 26px rgba(224,112,31,.32); }
.btn--glow:hover { box-shadow: 0 16px 38px rgba(224,112,31,.42); }
.btn--ghost { background: rgba(244,134,59,.08); color: var(--deep);
  border-color: rgba(244,134,59,.28); }

/* ---------- Nav ---------- */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 50; padding: 16px 22px;
  transition: padding .25s ease, background .25s ease, box-shadow .25s ease; }
.nav.is-stuck { padding: 10px 22px; background: rgba(255,250,243,.82);
  backdrop-filter: blur(14px); box-shadow: 0 2px 20px rgba(126,74,22,.08); }
.nav__inner { max-width: var(--max); margin: 0 auto; display: flex;
  align-items: center; justify-content: space-between; gap: 18px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 800; }
.brand__logo { width: 38px; height: 38px; border-radius: 10px; object-fit: cover; }
.brand__name { font-family: "Fraunces", serif; font-size: 22px; font-weight: 700; color: var(--brown); }
.nav__links { display: flex; gap: 26px; }
.nav__links a { color: var(--muted); font-weight: 600; font-size: 15px; transition: color .15s ease; }
.nav__links a:hover { color: var(--deep); }

/* ---------- Hero ---------- */
.hero { position: relative; z-index: 1; min-height: 100svh; display: flex;
  align-items: center; padding: 120px 22px 60px; }
.hero__inner { max-width: var(--max); margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 44px; align-items: center; }
.pill { display: inline-flex; align-items: center; gap: 9px; padding: 7px 15px;
  border-radius: 999px; font-size: 13.5px; font-weight: 600; color: var(--deep);
  background: rgba(244,134,59,.10); border: 1px solid rgba(244,134,59,.24); margin-bottom: 22px; }
.pill__dot { width: 8px; height: 8px; border-radius: 50%; background: #35b96a;
  box-shadow: 0 0 0 4px rgba(53,185,106,.18); }
.hero__title { font-family: "Fraunces", serif; font-weight: 900;
  font-size: clamp(46px, 8vw, 88px); line-height: .96; letter-spacing: -.01em;
  color: var(--brown); margin-bottom: 22px; }
.hero__sub { color: var(--muted); font-size: clamp(16px, 1.7vw, 19px); max-width: 30em; margin-bottom: 26px; }
.hero__cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 16px; }
.hero__note { color: var(--faint); font-size: 14px; }

.hero__art { position: relative; display: flex; justify-content: center; }
.phone { position: relative; z-index: 2; width: 300px; aspect-ratio: 300/620;
  background: #12100e; border-radius: 42px; padding: 10px;
  box-shadow: 0 30px 70px rgba(58,42,30,.35); border: 1px solid #241f1a; }
.phone--hero { animation: float 7s ease-in-out infinite; transition: transform .2s ease; }
@keyframes float { 0%,100% { transform: translateY(-14px); } 50% { transform: translateY(-2px); } }
.phone__notch { position: absolute; top: 16px; left: 50%; transform: translateX(-50%);
  width: 92px; height: 20px; background: #12100e; border-radius: 0 0 14px 14px; z-index: 3; }
.phone__screen { width: 100%; height: 100%; border-radius: 34px; overflow: hidden; background: #fff; }
.phone__screen img { width: 100%; height: 100%; object-fit: contain; object-position: center; background: #fff; }

.chip { position: absolute; z-index: 3; display: inline-flex; align-items: center; gap: 7px;
  padding: 9px 14px; border-radius: 14px; font-size: 14px; font-weight: 700; color: var(--ink);
  background: rgba(255,255,255,.92); backdrop-filter: blur(8px);
  border: 1px solid var(--line); box-shadow: 0 12px 30px rgba(58,42,30,.14); }
.chip span { font-size: 16px; }
.chip--a { top: 16%; left: -6%; animation: bob 5s ease-in-out infinite; }
.chip--b { top: 52%; right: -8%; animation: bob 6s ease-in-out .6s infinite; }
.chip--c { bottom: 12%; left: 2%; animation: bob 5.5s ease-in-out .3s infinite; }
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

.scrollcue { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
  width: 26px; height: 42px; border: 2px solid rgba(124,107,92,.4); border-radius: 999px; }
.scrollcue span { position: absolute; left: 50%; top: 8px; width: 4px; height: 8px;
  background: var(--deep); border-radius: 2px; transform: translateX(-50%);
  animation: cue 1.6s ease-in-out infinite; }
@keyframes cue { 0% { opacity: 0; top: 8px; } 40% { opacity: 1; } 80% { opacity: 0; top: 22px; } }

/* ---------- Marquee ---------- */
.marquee { position: relative; z-index: 1; overflow: hidden; padding: 18px 0;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  background: var(--bg-2); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee__track { display: inline-flex; gap: 40px; white-space: nowrap;
  animation: scroll 42s linear infinite; }
.marquee__track span { font-weight: 700; color: var(--brown); font-size: 17px; }
@keyframes scroll { to { transform: translateX(-50%); } }

/* ---------- Value strip ---------- */
.strip { position: relative; z-index: 1; max-width: var(--max); margin: 0 auto; padding: 74px 22px 20px; }
.strip__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.vcard { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px; box-shadow: var(--shadow); }
.vcard__ico { font-size: 26px; margin-bottom: 10px; }
.vcard b { display: block; font-size: 16px; margin-bottom: 4px; color: var(--brown); }
.vcard span { color: var(--muted); font-size: 14px; }

/* ---------- Showcase band ---------- */
.band { position: relative; z-index: 1; height: 60vh; min-height: 400px; overflow: hidden;
  display: flex; align-items: flex-end; margin-top: 40px; }
.band__img { position: absolute; inset: 0; }
.band__img img { width: 100%; height: 118%; object-fit: cover; object-position: center; will-change: transform; }
.band::after { content: ""; position: absolute; inset: 0; background:
  linear-gradient(0deg, rgba(20,14,9,.85) 4%, rgba(20,14,9,.25) 50%, rgba(20,14,9,.4) 100%); }
.band__overlay { position: relative; z-index: 2; max-width: var(--max); margin: 0 auto;
  width: 100%; padding: 0 24px 50px; }
.band__eyebrow { color: var(--amber); font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; font-size: 12.5px; margin-bottom: 8px; }
.band__title { font-family: "Fraunces", serif; font-weight: 700;
  font-size: clamp(30px, 5vw, 52px); line-height: 1.05; color: #fff; }

/* ---------- Feature sections ---------- */
.feature { position: relative; z-index: 1; padding: 78px 22px; }
.feature__inner { max-width: var(--max); margin: 0 auto; display: grid;
  grid-template-columns: 1fr 1fr; gap: 54px; align-items: center; }
.feature__art { display: flex; justify-content: center; }
.eyebrow { display: inline-block; color: var(--deep); font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; font-size: 12.5px; margin-bottom: 12px; }
.feature h2 { font-family: "Fraunces", serif; font-weight: 700;
  font-size: clamp(30px, 4.4vw, 46px); line-height: 1.06; color: var(--brown); margin-bottom: 24px; }
.feats { list-style: none; display: flex; flex-direction: column; gap: 18px; }
.feats li { display: flex; gap: 14px; }
.feats__ico { flex: none; width: 42px; height: 42px; border-radius: 12px; display: grid;
  place-items: center; font-size: 20px; background: var(--bg-2); border: 1px solid var(--line); }
.feats li b { display: block; color: var(--brown); margin-bottom: 2px; }
.feats li div { color: var(--muted); font-size: 15px; }

/* Photo backing the floating phone */
.photostack { position: relative; width: min(420px, 88vw); }
.photostack__img { width: 100%; aspect-ratio: 3/4; object-fit: cover; border-radius: 22px;
  border: 6px solid #fff; box-shadow: var(--shadow); }
.photostack .phone--stacked { position: absolute; bottom: -22px; right: -22px; width: 148px;
  animation: none; box-shadow: 0 24px 55px rgba(58,42,30,.4); }
.photostack--right .phone--stacked { right: auto; left: -22px; }

/* Revenue comparison */
.revenue { margin: 26px 0; padding: 20px; background: var(--card);
  border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); }
.revenue__row { display: flex; justify-content: space-between; align-items: baseline;
  font-size: 14px; color: var(--muted); margin-bottom: 6px; }
.revenue__row b { font-size: 20px; font-weight: 800; }
.revenue__row--muted { margin-top: 14px; }
.revenue__bar { height: 10px; border-radius: 999px; background: var(--bg-2); overflow: hidden; }
.revenue__bar i { display: block; height: 100%; border-radius: 999px;
  background: linear-gradient(90deg, var(--orange), var(--deep)); }
.revenue__bar--muted i { background: #d8cbbd; }
.revenue__note { color: var(--faint); font-size: 13px; margin-top: 12px; }

/* ---------- Gallery ---------- */
.gallery { position: relative; z-index: 1; max-width: var(--max); margin: 0 auto;
  padding: 20px 22px 74px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.gallery__item { position: relative; margin: 0; overflow: hidden; border-radius: 20px;
  border: 1px solid var(--line); box-shadow: var(--shadow); aspect-ratio: 4/3; }
.gallery__item img { width: 100%; height: 100%; object-fit: cover;
  transition: transform .7s cubic-bezier(.2,.7,.2,1); }
.gallery__item:hover img { transform: scale(1.06); }
.gallery__item figcaption { position: absolute; left: 14px; bottom: 12px; padding: 6px 12px;
  border-radius: 999px; font-size: 13px; font-weight: 700; color: var(--ink);
  background: rgba(255,255,255,.9); backdrop-filter: blur(8px); border: 1px solid var(--line); }

/* ---------- How it works ---------- */
.how { position: relative; z-index: 1; max-width: var(--max); margin: 0 auto; padding: 40px 22px 80px; }
.how__inner h2 { font-family: "Fraunces", serif; font-weight: 700; text-align: center;
  font-size: clamp(28px, 4vw, 42px); color: var(--brown); margin-bottom: 40px; }
.steps { list-style: none; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.steps li { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px; box-shadow: var(--shadow); }
.steps__n { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 12px;
  font-weight: 800; color: #fff; background: linear-gradient(100deg, var(--orange), var(--deep));
  margin-bottom: 14px; }
.steps li b { display: block; color: var(--brown); font-size: 18px; margin-bottom: 6px; }
.steps li p { color: var(--muted); font-size: 15px; }

/* ---------- Waitlist ---------- */
/* ---------- Get the app ---------- */
.getapp { position: relative; z-index: 1; padding: 20px 22px 100px; }
.getapp__inner { max-width: 620px; margin: 0 auto; text-align: center;
  background: var(--card); border: 1px solid var(--line); border-radius: 28px;
  padding: 48px 34px; box-shadow: var(--shadow); }
.getapp__logo { width: 76px; height: 76px; border-radius: 18px; margin: 0 auto 18px;
  box-shadow: var(--shadow); }
.getapp h2 { font-family: "Fraunces", serif; font-weight: 700;
  font-size: clamp(28px, 4vw, 42px); line-height: 1.06; color: var(--brown); margin-bottom: 10px; }
.getapp__inner > p { color: var(--muted); margin-bottom: 22px; }
.soon { display: inline-flex; align-items: center; gap: 9px; padding: 7px 15px;
  border-radius: 999px; font-size: 13px; font-weight: 700; color: var(--deep);
  background: var(--bg-2); border: 1px solid var(--line); margin-bottom: 22px; }
.soon__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--orange);
  box-shadow: 0 0 0 0 rgba(244,134,59,.5); animation: soonpulse 2s infinite; }
@keyframes soonpulse { 0% { box-shadow: 0 0 0 0 rgba(244,134,59,.5); }
  70% { box-shadow: 0 0 0 8px rgba(244,134,59,0); } 100% { box-shadow: 0 0 0 0 rgba(244,134,59,0); } }
.badges { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.badge { display: inline-flex; align-items: center; gap: 11px; padding: 11px 18px;
  border-radius: 14px; background: var(--brown); color: #fff; cursor: default;
  border: 1px solid rgba(0,0,0,.2); box-shadow: 0 10px 24px rgba(58,42,30,.18);
  transition: transform .18s ease; }
.badge:hover { transform: translateY(-2px); }
.badge__ico { width: 26px; height: 26px; color: #fff; flex-shrink: 0; }
.badge__ico--play { width: 24px; height: 24px; }
.badge__txt { display: flex; flex-direction: column; line-height: 1.1; text-align: left; }
.badge__txt small { font-size: 10px; font-weight: 500; letter-spacing: .2px; opacity: .85; }
.badge__txt b { font-size: 18px; font-weight: 700; }
.getapp__note { color: var(--faint); font-size: 14px; margin-top: 22px; margin-bottom: 0; }

/* ---------- Footer ---------- */
.foot { position: relative; z-index: 1; border-top: 1px solid var(--line);
  padding: 40px 22px; text-align: center; background: var(--bg-2); }
.foot__inner { max-width: var(--max); margin: 0 auto; }
.foot .brand { justify-content: center; margin-bottom: 10px; }
.foot__tag { color: var(--muted); margin-bottom: 6px; }
.foot__meta { color: var(--faint); font-size: 14px; }
.foot__meta a { color: var(--deep); font-weight: 600; }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; gap: 30px; }
  .hero__art { margin-top: 10px; }
  .feature__inner { grid-template-columns: 1fr; gap: 34px; }
  .feature__art { order: -1; }
  .strip__grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .nav__links { display: none; }
  .hero__photo { width: 92%; }
  .phone { width: 250px; }
  .photostack .phone--stacked { width: 120px; right: -10px; bottom: -14px; }
  .photostack--right .phone--stacked { left: -10px; }
  .band { height: 46vh; min-height: 320px; }
  .strip__grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important;
    animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}
