:root {
  --gold: #8a80f1;        /* brand accent (periwinkle) */
  --gold-2: #b6b0f7;      /* light accent */
  --gold-deep: #5b63d6;   /* mid indigo */
  --grad: linear-gradient(105deg, #1a3098 0%, #3c48b2 45%, #8a80f1 100%);
  --ink: #0a0b18;
  --ink-2: #11142e;
  --panel: #161a36;
  --cream: #eef0ff;
  --muted: #9698c4;
  --line: rgba(138,128,241,.18);
  --radius: 22px;
  --maxw: 1180px;
  font-synthesis: none;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: "Inter", system-ui, sans-serif;
  background: var(--ink);
  color: var(--cream);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; }

/* ---------- decorative ---------- */
.glow {
  position: fixed; border-radius: 50%; filter: blur(90px);
  z-index: 0; pointer-events: none; opacity: .5;
}
.glow--1 { width: 48vw; height: 48vw; top: -14vw; right: -12vw; background: radial-gradient(circle, rgba(138,128,241,.6), transparent 70%); }
.glow--2 { width: 42vw; height: 42vw; bottom: 6vw; left: -14vw; background: radial-gradient(circle, rgba(60,72,178,.45), transparent 70%); opacity: .35; }

.grain {
  position: fixed; inset: 0; z-index: 1; pointer-events: none; opacity: .04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- shared type ---------- */
.section { position: relative; z-index: 2; max-width: var(--maxw); margin: 0 auto; padding: clamp(70px, 11vw, 150px) 24px; }
.head { max-width: 760px; margin-bottom: clamp(40px, 6vw, 70px); }
.kicker { font-weight: 600; letter-spacing: .16em; text-transform: uppercase; font-size: .78rem; color: var(--gold); margin-bottom: 18px; }
.kicker--light { color: var(--gold-2); }
.big {
  font-family: "Fraunces", serif; font-weight: 600; line-height: 1.02;
  letter-spacing: -.015em; font-size: clamp(2.1rem, 5.8vw, 4.3rem); margin-bottom: 24px;
}
.lead { font-size: clamp(1.02rem, 1.7vw, 1.25rem); max-width: 680px; color: var(--muted); }
.lead--light { color: rgba(238,240,255,.78); }

.hl { background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--grad); color: #fff; font-weight: 600;
  padding: 14px 26px; border-radius: 100px; text-decoration: none;
  font-size: .98rem; border: none; cursor: pointer;
  box-shadow: 0 12px 34px rgba(138,128,241,.22);
  transition: transform .25s cubic-bezier(.2,.8,.2,1), box-shadow .25s;
}
.btn:hover { transform: translateY(-3px); box-shadow: 0 18px 44px rgba(138,128,241,.34); }

/* centered label + right-pinned, gently nudging arrow */
.btn--arrow { justify-content: space-between; gap: 16px; }
.btn--big.btn--arrow { min-width: 250px; }
.btn__txt { flex: 1 1 auto; text-align: center; }
.btn__arrow { display: inline-block; line-height: 1; animation: btn-arrow 1.4s ease-in-out infinite; }
.btn:hover .btn__arrow { animation-duration: .85s; }
@keyframes btn-arrow { 0%, 100% { transform: translateX(-3px); } 50% { transform: translateX(4px); } }
.btn--ghost { background: transparent; color: var(--cream); box-shadow: none; border: 1.5px solid rgba(238,240,255,.22); }
.btn--ghost:hover { border-color: var(--gold); color: var(--gold-2); box-shadow: none; }
.btn--sm { padding: 10px 18px; font-size: .88rem; }
.btn--big { padding: 17px 32px; font-size: 1.05rem; }

/* ---------- nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 18px clamp(20px, 4vw, 48px);
  transition: background .3s, backdrop-filter .3s, padding .3s, border-color .3s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled { background: rgba(10,11,24,.78); backdrop-filter: blur(14px); padding-top: 12px; padding-bottom: 12px; border-bottom-color: var(--line); }
.nav__logo { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; flex: none; }
.nav__logo-img { height: 22px; width: auto; }
.nav__sub { font-size: .76rem; letter-spacing: .26em; text-transform: uppercase; color: var(--muted); transform: translateY(1px); white-space: nowrap; }
.nav__links { display: flex; gap: clamp(16px, 2vw, 30px); flex-wrap: nowrap; }
.nav__links a { text-decoration: none; font-size: .94rem; color: var(--cream); opacity: .82; white-space: nowrap; transition: opacity .2s, color .2s; }
.nav__links a:hover { opacity: 1; color: var(--gold-2); }
.nav .btn { flex: none; }

.nav__burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.nav__burger span { width: 24px; height: 2px; background: var(--cream); border-radius: 2px; transition: transform .3s, opacity .3s; }
.nav__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- hero ---------- */
.hero {
  position: relative; z-index: 2; min-height: 100svh;
  display: flex; flex-direction: column; justify-content: center;
  max-width: var(--maxw); margin: 0 auto; padding: 120px 24px 60px;
}
.hero__inner { max-width: 880px; }
.eyebrow {
  display: inline-block; font-size: .82rem; letter-spacing: .1em; color: var(--gold-2);
  border: 1px solid var(--line); padding: 8px 16px; border-radius: 100px; margin-bottom: 28px;
  background: rgba(138,128,241,.05);
}
.hero__title {
  font-family: "Fraunces", serif; font-weight: 600; line-height: 1; letter-spacing: -.02em;
  font-size: clamp(2rem, 7.5vw, 6rem); margin-bottom: 28px;
  overflow-wrap: break-word; hyphens: auto;
}
.hero__lead { font-size: clamp(1.05rem, 2vw, 1.32rem); max-width: 620px; color: var(--muted); margin-bottom: 36px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 56px; }
.hero__stats { display: flex; flex-wrap: wrap; gap: clamp(28px, 6vw, 64px); }
.hero__stats div { display: flex; flex-direction: column; }
.hero__stats strong { font-family: "Fraunces", serif; font-size: 2.4rem; line-height: 1; color: var(--gold-2); }
.hero__stats span { font-size: .9rem; color: var(--muted); margin-top: 4px; }
.hero__scroll { position: absolute; bottom: 26px; left: 24px; font-size: .76rem; letter-spacing: .25em; text-transform: uppercase; color: var(--muted); opacity: .7; }

/* ---------- marquee ---------- */
.marquee { position: relative; z-index: 2; overflow: hidden; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 18px 0; background: var(--ink-2); }
.marquee__track { display: flex; width: max-content; animation: scroll 34s linear infinite; }
.marquee__track span { font-family: "Fraunces", serif; font-size: 1.15rem; letter-spacing: .04em; color: var(--gold); white-space: nowrap; }
@keyframes scroll { to { transform: translateX(-50%); } }

/* ---------- service cards ---------- */
.cards { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.card {
  position: relative; background: var(--panel); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 34px 30px;
  transition: transform .3s cubic-bezier(.2,.8,.2,1), border-color .3s, background .3s;
}
.card:hover { transform: translateY(-6px); border-color: rgba(138,128,241,.4); background: #1b2046; }
.card__ico { font-size: 2.1rem; margin-bottom: 18px; }
.card h3 { font-family: "Fraunces", serif; font-weight: 600; font-size: 1.32rem; margin-bottom: 10px; overflow-wrap: break-word; }
.card p { color: var(--muted); font-size: .98rem; }
.card--feature { border-color: rgba(138,128,241,.4); background: linear-gradient(160deg, #1b2150, #161a36); }
.card--wide { grid-column: span 2; }
.card__tag { position: absolute; top: 22px; right: 22px; font-size: .7rem; letter-spacing: .08em; text-transform: uppercase; color: #fff; background: var(--grad); padding: 5px 11px; border-radius: 100px; font-weight: 600; }

/* ---------- foodtruck ---------- */
.foodtruck { position: relative; z-index: 2; background: linear-gradient(180deg, #11142e, #0c0e22); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.foodtruck__inner { max-width: var(--maxw); margin: 0 auto; padding: clamp(70px, 11vw, 140px) 24px; display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px; align-items: center; }
.ticks { list-style: none; margin: 26px 0 34px; display: grid; gap: 12px; }
.ticks li { position: relative; padding-left: 30px; color: rgba(238,240,255,.82); }
.ticks li::before { content: "✦"; position: absolute; left: 0; color: var(--gold); }

/* foodtruck photo */
.foodtruck__art { display: flex; justify-content: center; }
.foodtruck__photo {
  width: 100%; max-width: 440px; aspect-ratio: 3 / 4; object-fit: cover;
  border-radius: var(--radius); border: 1px solid var(--line);
  box-shadow: 0 26px 60px rgba(0,0,0,.5);
}

/* foodtruck gallery */
.foodtruck__gallery {
  max-width: var(--maxw); margin: 0 auto; padding: 0 24px clamp(70px, 11vw, 140px);
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px;
}
.foodtruck__gallery figure { margin: 0; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); }
.foodtruck__gallery img {
  width: 100%; height: 100%; aspect-ratio: 4 / 3; object-fit: cover; display: block;
  transition: transform .5s cubic-bezier(.2,.8,.2,1);
}
.foodtruck__gallery figure:hover img { transform: scale(1.06); }

/* ---------- founders ---------- */
.founders { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.founder { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 34px 30px; transition: transform .3s, border-color .3s; }
.founder:hover { transform: translateY(-5px); border-color: rgba(138,128,241,.35); }
.founder__photo { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; border-radius: 16px; margin-bottom: 20px; border: 1px solid var(--line); box-shadow: 0 14px 30px rgba(0,0,0,.35); }
.founder h3 { font-family: "Fraunces", serif; font-size: 1.4rem; margin-bottom: 2px; }
.founder__role { color: var(--gold); font-size: .86rem; letter-spacing: .04em; text-transform: uppercase; margin-bottom: 12px; }
.founder p:last-child { color: var(--muted); font-size: .96rem; }
.founders__note { margin-top: 30px; text-align: center; color: var(--muted); font-size: 1.08rem; }
.founders__note strong { color: var(--cream); font-family: "Fraunces", serif; letter-spacing: .02em; }

/* ---------- process ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.step { padding: 30px 24px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--panel); }
.step__n { font-family: "Fraunces", serif; font-size: 2.4rem; color: var(--gold-deep); display: block; margin-bottom: 14px; }
.step h3 { font-family: "Fraunces", serif; font-size: 1.2rem; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: .94rem; }

/* ---------- contact ---------- */
.contact { position: relative; z-index: 2; }
.contact__inner { max-width: var(--maxw); margin: 0 auto; padding: clamp(70px, 11vw, 140px) 24px; display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.contact__direct { display: flex; flex-direction: column; gap: 10px; margin-top: 30px; }
.contact__direct a { text-decoration: none; color: var(--gold-2); font-size: 1.05rem; transition: opacity .2s; }
.contact__direct a:hover { opacity: .75; }
.contact__person { margin-top: 16px; color: var(--muted); font-size: .98rem; }
.contact__person strong { color: var(--cream); }
.contact__form { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 36px 32px; display: grid; gap: 18px; }
.field { display: grid; gap: 7px; }
.field label { font-size: .85rem; letter-spacing: .04em; color: var(--muted); }
.field input, .field select, .field textarea {
  font: inherit; color: var(--cream); background: var(--ink-2); border: 1px solid var(--line);
  border-radius: 12px; padding: 13px 15px; outline: none; transition: border-color .2s;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--gold); }
.field textarea { resize: vertical; }
.field select { appearance: none; -webkit-appearance: none; }
.form__note { font-size: .9rem; min-height: 1.2em; }
.form__note.ok { color: #6fd49a; }
.form__note.err { color: #e88a6f; }

/* ---------- faq ---------- */
.faq__list { display: grid; gap: 14px; max-width: 840px; }
.faq__item { background: var(--panel); border: 1px solid var(--line); border-radius: 16px; padding: 0 24px; transition: border-color .3s, background .3s; }
.faq__item[open] { border-color: rgba(138,128,241,.4); background: #1b2046; }
.faq__item summary { cursor: pointer; list-style: none; font-family: "Fraunces", serif; font-weight: 600; font-size: 1.12rem; padding: 22px 0; display: flex; justify-content: space-between; align-items: center; gap: 18px; }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: "+"; font-family: "Inter", sans-serif; font-weight: 400; font-size: 1.7rem; color: var(--gold); transition: transform .3s; line-height: 1; flex: none; }
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__item p { color: var(--muted); padding: 0 0 24px; max-width: 72ch; }
.faq__item a { color: var(--gold-2); }

/* ---------- footer ---------- */
.footer { position: relative; z-index: 2; border-top: 1px solid var(--line); padding: 56px 24px 34px; background: var(--ink-2); }
.footer__inner { max-width: var(--maxw); margin: 0 auto; display: flex; flex-wrap: wrap; gap: 30px; justify-content: space-between; align-items: center; }
.footer__brand { display: flex; flex-direction: column; gap: 12px; }
.footer__logo { height: 52px; width: auto; }
.footer__brand p { color: var(--muted); font-size: .88rem; }
.footer__links { display: flex; flex-wrap: wrap; gap: 24px; }
.footer__links a { text-decoration: none; color: var(--cream); opacity: .8; font-size: .94rem; transition: color .2s; }
.footer__links a:hover { color: var(--gold-2); }
.footer__copy { max-width: var(--maxw); margin: 30px auto 0; color: var(--muted); font-size: .82rem; }

/* ---------- reveal anim ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s cubic-bezier(.2,.8,.2,1), transform .7s cubic-bezier(.2,.8,.2,1); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- responsive ---------- */
/* nav collapses to the hamburger before the inline links can crowd */
@media (max-width: 1024px) {
  .nav__links { display: none; }
  .nav__burger { display: flex; }
  .nav.open .nav__links {
    display: flex; flex-direction: column; gap: 18px;
    position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(10,11,24,.96); backdrop-filter: blur(14px);
    padding: 24px clamp(20px, 4vw, 48px); border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 880px) {
  .cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .card--wide { grid-column: span 2; }
  .foodtruck__inner, .contact__inner { grid-template-columns: 1fr; gap: 40px; }
  .foodtruck__gallery { grid-template-columns: 1fr; gap: 16px; }
  .founders { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 560px) {
  .cards { grid-template-columns: minmax(0, 1fr); }
  .card--wide { grid-column: span 1; }
  .steps { grid-template-columns: minmax(0, 1fr); }
  .nav .btn--sm { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .marquee__track { animation: none; }
  .btn__arrow { animation: none; transform: none; }
  html { scroll-behavior: auto; }
}
