:root {
  font-family:
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Arial,
    sans-serif;
  line-height: 1.4;
  --ink: #111;
  --muted: #444;
  --border: #ddd;

  /* Brand */
  --brand: #0b3d2e; /* deep green */
  --brand-ink: #ffffff;
  --radius: 12px;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fff;
}

.container {
  max-width: 1050px;
  margin: 0 auto;
  padding: 16px;
}

.site-header {
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 10;
}
.site-header .container {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.brand {
  font-weight: 800;
  text-decoration: none;
  color: var(--ink);
  letter-spacing: 0.2px;
}

.nav a {
  margin-right: 10px;
  text-decoration: none;
  color: var(--ink);
}
.nav a:hover {
  text-decoration: underline;
}

.cta {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

/* Legacy buttons (keep for backward compatibility) */
.btn {
  display: inline-block;
  padding: 10px 12px;
  border: 1px solid var(--ink);
  text-decoration: none;
  color: #fff;
  background: var(--ink);
  border-radius: var(--radius);
  font-weight: 600;
}
.btn:hover {
  filter: brightness(0.95);
}
.btn-outline {
  background: transparent;
  color: var(--ink);
}
.btn-lg {
  padding: 12px 14px;
}

/* Standardized CTA buttons */
.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 12px 16px;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.2px;
  transition:
    transform 120ms ease,
    filter 120ms ease;
}

.btn-primary {
  background: var(--brand);
  color: var(--brand-ink);
  border: 1px solid var(--brand);
}
.btn-primary:hover {
  filter: brightness(0.95);
}
.btn-primary:active {
  transform: translateY(1px);
}

.btn-secondary {
  background: transparent;
  color: var(--brand);
  border: 2px solid var(--brand);
}
.btn-secondary:hover {
  filter: brightness(0.98);
}
.btn-secondary:active {
  transform: translateY(1px);
}

.is-hidden {
  display: none !important;
}

.hero {
  padding: 20px 0;
}
.hero h1 {
  margin: 0 0 8px;
  line-height: 1.15;
}
.hero p {
  margin: 0 0 14px;
  color: var(--muted);
  max-width: 70ch;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 12px;
}
.card {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px;
  text-decoration: none;
  color: var(--ink);
  background: #fff;
}
.card:hover {
  border-color: #cfcfcf;
}

.site-footer {
  border-top: 1px solid var(--border);
  margin-top: 24px;
}
.fineprint {
  color: var(--muted);
  font-size: 0.9rem;
}

/* Optional sections for conversion blocks (safe even if unused yet) */
.how-it-works,
.deposit-info,
.trip-request {
  margin-top: 22px;
}
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}
.step {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px;
  background: #fff;
}
.step h3 {
  margin: 0 0 8px;
}
.step p {
  margin: 0;
  color: var(--muted);
}

.trip-request form {
  display: grid;
  gap: 10px;
  max-width: 560px;
}
.trip-request label {
  font-weight: 600;
}
.trip-request input,
.trip-request select,
.trip-request textarea {
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font: inherit;
}
.trip-request textarea {
  min-height: 110px;
  resize: vertical;
}

.form-status {
  font-size: 0.95rem;
  font-weight: 600;
}
.form-embed {
  max-width: 900px;
  margin: 0 auto 3rem auto;
}

.form-embed iframe {
  display: block;
  width: 100%;
  border: 0;
}
.post-intake-notice {
  max-width: 900px;
  margin: 2rem auto 4rem auto;
  padding: 1.5rem;
  background: #f8f9fb;
  border-left: 4px solid #1f3c88;
}

.post-intake-notice h3 {
  margin-top: 0;
}
