/* ---------- L5 Transport — landing styles ---------- */

:root {
  --bg: #ffffff;
  --bg-muted: #f5f7f2;          /* cream-mint tinted */
  --bg-dark: #0f2419;           /* deep forest green */
  --bg-darker: #081810;
  --ink: #0f1e17;               /* very dark forest, not blue-black */
  --ink-2: #3a4b41;
  --ink-3: #6d7c72;
  --line: #e4e8de;              /* faint mint line */
  --line-dark: #1c3627;
  --accent: #f5b942;            /* warm amber/honey gold */
  --accent-2: #e5a833;
  --accent-ink: #0f2419;        /* deep green on gold for max contrast */
  --success: #16a34a;
  --error: #dc2626;
  --radius: 14px;
  --radius-sm: 10px;
  --shadow-sm: 0 2px 6px rgba(15, 36, 25, 0.06);
  --shadow: 0 12px 32px -12px rgba(15, 36, 25, 0.18);
  --shadow-lg: 0 30px 60px -20px rgba(15, 36, 25, 0.35);
  --font-sans: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  --font-display: 'Space Grotesk', var(--font-sans);
  --max: 1180px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 24px; }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 40;
  background: rgba(255,255,255,0.85);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
.nav__brand {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-weight: 700; color: var(--ink);
  font-size: 20px; letter-spacing: -0.02em; text-decoration: none;
}
.nav__mark {
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border-radius: 8px;
  background: var(--ink); color: var(--accent);
  font-weight: 800; font-size: 14px;
}
.nav__logo {
  width: 40px; height: 40px; display: block; object-fit: contain;
}
.nav__links { display: flex; gap: 28px; }
.nav__links a { color: var(--ink-2); font-weight: 500; font-size: 15px; }
.nav__links a:hover { color: var(--ink); text-decoration: none; }
@media (max-width: 720px) { .nav__links { display: none; } }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 18px; border-radius: 12px; border: 1px solid transparent;
  font-family: var(--font-sans); font-weight: 600; font-size: 15px;
  cursor: pointer; text-decoration: none; transition: transform .05s ease, box-shadow .2s ease, background .2s ease;
  white-space: nowrap;
}
.btn:hover { text-decoration: none; }
.btn:active { transform: translateY(1px); }
.btn--sm { padding: 8px 14px; font-size: 14px; border-radius: 10px; }
.btn--lg { padding: 16px 26px; font-size: 16px; border-radius: 14px; }
.btn--block { display: flex; width: 100%; }
.btn--primary { background: var(--accent); color: var(--accent-ink); box-shadow: 0 8px 20px -8px rgba(245,185,66,.55); }
.btn--primary:hover { background: #efaa30; }
.btn--ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.4); }
.btn--ghost:hover { background: rgba(255,255,255,.08); }
.btn--dark { background: var(--ink); color: #fff; }
.btn--dark:hover { background: #1c3627; }

/* ---------- Flash ---------- */
.flash {
  position: fixed; top: 84px; left: 50%; transform: translateX(-50%); z-index: 50;
  padding: 12px 18px; border-radius: 12px; font-weight: 600; font-size: 14px;
  box-shadow: var(--shadow);
  animation: flashIn .25s ease-out, flashOut .3s ease-in 5s forwards;
}
.flash--success { background: #ecfdf5; color: #065f46; border: 1px solid #a7f3d0; }
.flash--error { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }
@keyframes flashIn { from { opacity: 0; transform: translate(-50%, -8px); } to { opacity: 1; transform: translate(-50%, 0); } }
@keyframes flashOut { to { opacity: 0; transform: translate(-50%, -8px); } }

/* ---------- Hero ---------- */
.hero {
  position: relative; isolation: isolate;
  min-height: 82vh; display: flex; align-items: center;
  color: #fff; overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transform: scale(1.05);
  z-index: -2;
}
.hero__scrim {
  position: absolute; inset: 0;
  background:
    radial-gradient(1200px 500px at 20% 100%, rgba(15,36,25,.35), transparent 70%),
    linear-gradient(180deg, rgba(6,10,19,.55) 0%, rgba(6,10,19,.85) 100%);
  z-index: -1;
}
.hero__inner { padding: 100px 24px 120px; }
.eyebrow {
  display: inline-block; padding: 6px 12px; border-radius: 999px;
  background: rgba(245,185,66,.18); color: var(--accent-2);
  font-weight: 600; font-size: 12px; letter-spacing: .08em; text-transform: uppercase;
}
.eyebrow--light { background: rgba(255,255,255,.08); color: #fff; }
.eyebrow--dark { background: rgba(11,18,32,.1); color: var(--ink); }
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 76px); line-height: 1.02;
  font-weight: 700; letter-spacing: -0.03em;
  margin: 22px 0 18px; max-width: 900px;
}
.accent { color: var(--accent); }
.hero__lede {
  font-size: clamp(17px, 1.5vw, 20px); max-width: 640px; color: #dfe6d9; margin-bottom: 32px;
}
.hero__cta { display: flex; gap: 12px; flex-wrap: wrap; }
.hero__badges {
  list-style: none; padding: 0; margin: 56px 0 0;
  display: grid; gap: 20px; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  max-width: 820px;
}
.hero__badges li {
  padding: 18px 20px; border-left: 3px solid var(--accent);
  background: rgba(255,255,255,.04);
  border-radius: 0 10px 10px 0;
  display: flex; flex-direction: column; gap: 2px;
}
.hero__badges strong { font-size: 16px; }
.hero__badges span { color: #c9d6cc; font-size: 13px; }

/* ---------- Sections ---------- */
.section { padding: 96px 0; }
.section--muted { background: var(--bg-muted); }
.section--dark { background: var(--bg-dark); color: #fff; }
.section--accent { background: linear-gradient(135deg, var(--accent) 0%, #efaa30 100%); color: var(--accent-ink); }
.section__head { max-width: 720px; margin-bottom: 48px; }
.section__head--light { color: #fff; }
.section__head h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.4vw, 44px); line-height: 1.1;
  letter-spacing: -0.02em; margin: 14px 0 12px;
}
.section__sub { color: #c9d6cc; font-size: 17px; }
.section--dark .section__sub { color: #c9d6cc; }
.muted { color: var(--ink-3); }

/* ---------- Grid + cards ---------- */
.grid { display: grid; gap: 20px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--split { align-items: center; gap: 48px; }
@media (max-width: 900px) {
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
}
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px; box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.card__icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: linear-gradient(135deg, rgba(245,185,66,.22), rgba(245,185,66,.06));
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 16px;
}
.card h3 { margin: 0 0 8px; font-size: 18px; font-family: var(--font-display); }
.card p { margin: 0; color: var(--ink-2); font-size: 15px; }

/* ---------- Steps ---------- */
.steps {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 24px; grid-template-columns: repeat(3, 1fr);
  counter-reset: step;
}
@media (max-width: 900px) { .steps { grid-template-columns: 1fr; } }
.steps li {
  background: #fff; border-radius: var(--radius); padding: 28px;
  border: 1px solid var(--line); position: relative;
}
.steps__num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--ink); color: var(--accent);
  font-family: var(--font-display); font-weight: 700; font-size: 16px;
  margin-bottom: 14px;
}
.steps h3 { margin: 0 0 6px; font-size: 18px; font-family: var(--font-display); }
.steps p { margin: 0; color: var(--ink-2); font-size: 15px; }

/* ---------- Checklist ---------- */
.checklist {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px 24px;
}
@media (max-width: 700px) { .checklist { grid-template-columns: 1fr; } }
.checklist li {
  padding-left: 32px; position: relative; color: var(--ink-2); font-size: 16px;
}
.checklist li::before {
  content: ''; position: absolute; left: 0; top: 4px;
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--accent);
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20"><path fill="black" d="M8.243 14.657L4.586 11l1.414-1.414 2.243 2.243 5.657-5.657L15.314 7.6z"/></svg>') center/70% no-repeat;
          mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20"><path fill="black" d="M8.243 14.657L4.586 11l1.414-1.414 2.243 2.243 5.657-5.657L15.314 7.6z"/></svg>') center/70% no-repeat;
}

/* ---------- Form ---------- */
.form {
  max-width: 820px; margin: 0 auto;
  background: #fff; color: var(--ink);
  border-radius: 20px; padding: 40px;
  box-shadow: var(--shadow-lg);
}
@media (max-width: 640px) { .form { padding: 24px; border-radius: 16px; } }
.form__group { margin-bottom: 20px; }
.form__group label {
  display: block; margin-bottom: 8px;
  font-weight: 600; font-size: 14px; color: var(--ink);
}
.form__group label small { font-weight: 400; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form__row--3 { grid-template-columns: 2fr 1fr 1fr; }
@media (max-width: 640px) { .form__row, .form__row--3 { grid-template-columns: 1fr; } }
.req { color: var(--accent); }
.form input[type="text"],
.form input[type="email"],
.form input[type="tel"],
.form input[type="number"],
.form input[type="file"],
.form select,
.form textarea {
  width: 100%; padding: 12px 14px; font: inherit; color: var(--ink);
  border: 1px solid var(--line); border-radius: var(--radius-sm);
  background: #fff; transition: border-color .15s ease, box-shadow .15s ease;
}
.form input:focus,
.form select:focus,
.form textarea:focus {
  outline: none; border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(245,185,66,.18);
}
.form textarea { resize: vertical; min-height: 96px; }
.err { color: var(--error); font-size: 13px; margin-top: 6px; display: block; }
.fine { text-align: center; color: var(--ink-3); font-size: 13px; margin: 14px 0 0; }

.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px; border: 1px solid var(--line); border-radius: 999px;
  cursor: pointer; font-size: 14px; user-select: none;
  transition: all .15s ease; background: #fff;
}
.chip input { appearance: none; -webkit-appearance: none; width: 0; height: 0; margin: 0; }
.chip:has(input:checked) { background: var(--ink); color: #fff; border-color: var(--ink); }
.chip:hover { border-color: var(--ink-3); }

.radios { display: flex; gap: 20px; flex-wrap: wrap; }
.radios label { font-weight: 500; color: var(--ink-2); cursor: pointer; }

/* ---------- Gallery ---------- */
.gallery {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
  border-radius: var(--radius); overflow: hidden;
}
@media (max-width: 900px) { .gallery { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .gallery { grid-template-columns: 1fr; } }
.gallery__item {
  aspect-ratio: 4 / 3; background-size: cover; background-position: center;
  border-radius: var(--radius-sm); transition: transform .3s ease;
}
.gallery__item:hover { transform: scale(1.02); }

/* ---------- Newsletter ---------- */
.newsletter {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 40px; align-items: center;
}
@media (max-width: 900px) { .newsletter { grid-template-columns: 1fr; } }
.newsletter h2 {
  font-family: var(--font-display); font-size: clamp(24px, 3vw, 36px);
  line-height: 1.1; margin: 12px 0 8px; letter-spacing: -0.02em;
}
.newsletter p { margin: 0; opacity: .85; }
.newsletter__form {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
  background: rgba(255,255,255,.15);
  border-radius: 16px; padding: 12px;
}
.newsletter__form input {
  padding: 14px 16px; border: none; border-radius: 10px;
  font: inherit; color: var(--ink);
  background: #fff;
}
.newsletter__form input:focus { outline: 2px solid var(--ink); outline-offset: 1px; }
.newsletter__form button { grid-column: 1 / -1; }
@media (max-width: 640px) { .newsletter__form { grid-template-columns: 1fr; } }

.newsletter__ok {
  display: flex; align-items: flex-start; gap: 14px;
  background: rgba(255,255,255,.2);
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 16px; padding: 18px 20px;
  color: var(--accent-ink); font-size: 15px; line-height: 1.5;
  animation: fadeInUp .3s ease-out;
}
.newsletter__ok strong { font-size: 17px; display: block; margin-bottom: 2px; }
.newsletter__ok-check {
  flex-shrink: 0;
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--accent-ink); color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; font-weight: 800;
}
.newsletter__err {
  background: rgba(255,255,255,.9); color: #991b1b;
  border-radius: 10px; padding: 10px 14px; margin-bottom: 10px;
  font-size: 14px; font-weight: 600;
}
@keyframes fadeInUp { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin: 0 auto; }
.faq details {
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 20px 22px; background: #fff; margin-bottom: 12px;
  transition: box-shadow .2s ease;
}
.faq details[open] { box-shadow: var(--shadow-sm); }
.faq summary {
  cursor: pointer; font-weight: 600; font-size: 17px; color: var(--ink);
  list-style: none; display: flex; justify-content: space-between; align-items: center;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+'; font-size: 24px; color: var(--accent); transition: transform .2s ease;
}
.faq details[open] summary::after { content: '−'; }
.faq p { margin: 12px 0 0; color: var(--ink-2); line-height: 1.6; }

/* ---------- Footer ---------- */
.footer { background: var(--bg-darker); color: #c9d6cc; padding: 56px 0 32px; }
.footer__inner {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; align-items: center;
}
@media (max-width: 800px) { .footer__inner { grid-template-columns: 1fr; gap: 24px; align-items: start; } }
.footer__brand { display: flex; flex-direction: column; gap: 10px; }
.footer__lockup {
  max-width: 300px; width: 100%; height: auto; display: block;
  /* Show the black-background lockup by adding a subtle backdrop so the black card sits nicely on the darker page */
  border-radius: 8px;
}
.footer__brand .muted { color: #8a978d; font-size: 13px; margin: 0; }
.footer__links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer__links a { color: #c9d6cc; font-weight: 500; }
.footer__links a:hover { color: #fff; text-decoration: none; }
.footer__meta { color: #6d7c72; font-size: 12px; line-height: 1.5; text-align: right; }
@media (max-width: 800px) { .footer__meta { text-align: left; } }

/* ---------- Honeypot ---------- */
.hp-field {
  position: absolute !important;
  left: -9999px !important; top: -9999px !important;
  width: 1px !important; height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* ---------- Error / thanks pages ---------- */
.error { padding: 120px 24px; text-align: center; }
.error h1 { font-family: var(--font-display); font-size: 72px; margin: 0 0 12px; }
.error p { color: var(--ink-2); font-size: 18px; margin: 0 0 24px; }

.thanks {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(180deg, #f6f7f9 0%, #ffffff 100%);
  padding: 40px 20px;
}
.thanks__inner { max-width: 560px; text-align: center; }
.thanks__check {
  width: 76px; height: 76px; border-radius: 50%;
  background: var(--accent); color: var(--accent-ink);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 44px; font-weight: 800; margin: 0 auto 20px;
  box-shadow: 0 20px 40px -12px rgba(245,185,66,.5);
}
.thanks h1 {
  font-family: var(--font-display); font-size: clamp(28px, 4vw, 40px);
  margin: 0 0 12px; letter-spacing: -0.02em;
}
.thanks p { color: var(--ink-2); font-size: 17px; margin: 0 0 12px; }
