/* ============================================================
   Astra marketing site — shared layout & components.
   Built on the brand tokens in tokens.css.
   ============================================================ */

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--cream);
  color: var(--fg);
  font-family: var(--font-sans);
  font-size: var(--t-body);
  line-height: var(--lh-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { color: var(--ink-700); text-underline-offset: 3px; }
a:hover { color: var(--saffron-700); }
img { max-width: 100%; display: block; }

/* ---- Containers & sections ---- */
.container        { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.container-narrow { max-width: 760px;  margin: 0 auto; padding: 0 32px; }
.section          { padding: 96px 0; }
.section-sm       { padding: 64px 0; }

/* ---- Saffron livery stripe + top nav ---- */
.livery-stripe { height: 4px; background: var(--saffron-500); }

.site-header { position: sticky; top: 0; z-index: 50; background: var(--cream); transition: background 0.24s var(--ease-out), backdrop-filter 0.24s var(--ease-out), border-color 0.24s var(--ease-out); border-bottom: 1px solid transparent; }
.site-header.is-scrolled { background: rgba(251, 246, 236, 0.82); backdrop-filter: blur(8px); border-bottom-color: var(--stone-200); }
.nav-row { display: flex; align-items: center; justify-content: space-between; height: 84px; }
.brand-link { display: inline-flex; align-items: center; text-decoration: none; }
.brand-link img { height: 52px; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-link {
  color: var(--ink-700); text-decoration: none; font-size: 14px; font-weight: 600;
  padding: 8px 4px; transition: color 0.24s var(--ease-out);
}
.nav-link:hover, .nav-link.is-active { color: var(--saffron-700); }
.nav-cta { display: inline-flex; align-items: center; gap: 8px; }
@media (max-width: 880px) {
  .nav-links { gap: 14px; }
  .nav-link { display: none; }
  .nav-link.nav-link--phone { display: inline-flex; }
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-sans); font-weight: 700; font-size: 15px;
  padding: 13px 22px; border-radius: 8px; border: 0; cursor: pointer;
  text-decoration: none; line-height: 1;
  transition: background 0.24s var(--ease-out), transform 0.12s var(--ease-out), box-shadow 0.24s var(--ease-out), color 0.24s var(--ease-out);
}
.btn-primary { background: var(--saffron-500); color: var(--ink-800); box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--saffron-600); }
.btn-primary:active { background: var(--saffron-700); transform: scale(.99); }
.btn-secondary { background: var(--ink-700); color: var(--cream); font-weight: 600; }
.btn-secondary:hover { background: var(--ink-800); }
.btn-ghost { background: transparent; color: var(--ink-700); padding: 12px 8px; font-weight: 600; }
.btn-ghost:hover { color: var(--saffron-700); }
.btn-arrow svg { width: 16px; height: 16px; }

/* ---- Eyebrow ---- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--stone-600); margin: 0 0 16px;
}
.eyebrow::before {
  content: ""; display: inline-block; width: 18px; height: 1.5px; background: var(--saffron-600);
}

/* ---- Headings & body type ---- */
h1, h2, h3, h4 { margin: 0; color: var(--ink-700); text-wrap: balance; }
.display-xl { font-family: var(--font-display); font-size: clamp(48px, 6.4vw, 72px); line-height: 1.05; letter-spacing: -0.02em; font-weight: 600; }
.display-lg { font-family: var(--font-display); font-size: clamp(38px, 5vw, 56px);  line-height: 1.08; letter-spacing: -0.02em; font-weight: 600; }
.display-md { font-family: var(--font-display); font-size: clamp(30px, 4vw, 44px);  line-height: 1.1;  letter-spacing: -0.02em; font-weight: 600; }
.h1         { font-family: var(--font-display); font-size: clamp(28px, 3.6vw, 36px); line-height: 1.15; letter-spacing: -0.02em; font-weight: 600; }
.h2         { font-family: var(--font-display); font-size: 24px; line-height: 1.2; letter-spacing: -0.01em; font-weight: 600; margin-top: 40px; margin-bottom: 12px; }
.h3         { font-family: var(--font-sans);    font-size: 18px; line-height: 1.3; font-weight: 700; }

.lede { font-size: 19px; line-height: 1.55; color: var(--fg-muted); max-width: 60ch; margin: 18px 0 0; }
p { margin: 0 0 16px; max-width: 64ch; }
ul { margin: 0 0 20px; padding-left: 22px; max-width: 64ch; }
li { margin-bottom: 10px; line-height: 1.55; }
strong { font-weight: 600; }

/* Article shell — used by privacy / terms / about-style pages */
.article { padding: 56px 0 96px; }
.article .h2 { margin-top: 44px; }

/* ---- Cards ---- */
.card {
  background: var(--paper); border: 1px solid var(--stone-200);
  border-radius: 12px; box-shadow: var(--shadow-md);
  transition: box-shadow 0.24s var(--ease-out);
  padding: 24px;
}
.card:hover { box-shadow: var(--shadow-lg); }
.card-title { font-family: var(--font-sans); font-size: 18px; font-weight: 700; color: var(--ink-700); margin: 0 0 8px; }
.card-body  { color: var(--fg-muted); font-size: 15px; line-height: 1.55; }

/* Callout block — for "always reach us" / consent box / etc */
.callout {
  background: var(--paper); border: 1px solid var(--stone-200);
  border-left: 3px solid var(--saffron-500);
  border-radius: 12px; padding: 22px 26px; margin: 28px 0;
}
.callout-strong { border-left-color: var(--ink-700); }
.callout h3 { margin: 0 0 6px; font-size: 18px; color: var(--ink-700); font-weight: 700; }
.callout p:last-child { margin-bottom: 0; }
.callout .phone {
  display: inline-block; margin-top: 8px;
  font-family: var(--font-mono); font-size: 22px; font-weight: 600; color: var(--ink-700);
  letter-spacing: -0.01em;
}

/* ---- Trust strip ---- */
.trust-strip { background: var(--ink-700); color: var(--cream); padding: 24px 0; }
.trust-strip .container { display: flex; flex-wrap: wrap; gap: 36px; align-items: center; justify-content: center; }
.trust-item { display: inline-flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 600; }
.trust-item svg { width: 18px; height: 18px; stroke: var(--saffron-500); }

/* ---- Hero ---- */
.hero { padding: 72px 0 96px; position: relative; }
.hero .container { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 64px; align-items: center; }
.hero-copy h1 { font-family: var(--font-display); font-size: clamp(44px, 6vw, 72px); line-height: 1.05; letter-spacing: -0.02em; font-weight: 600; }
.hero-copy h1 em { font-style: italic; color: var(--saffron-700); font-weight: 600; }
.hero-copy .lede { font-size: 19px; line-height: 1.55; color: var(--fg-muted); max-width: 520px; margin-top: 24px; }
.hero-actions { display: flex; gap: 14px; margin-top: 36px; flex-wrap: wrap; }
.hero-trust   { display: flex; gap: 24px; margin-top: 44px; padding-top: 22px; border-top: 1px solid var(--stone-200); max-width: 520px; flex-wrap: wrap; }
.hero-trust .item { display: inline-flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 600; color: var(--ink-700); }
.hero-trust svg { width: 20px; height: 20px; stroke: var(--sage-500); }

.hero-figure { position: relative; }
.photo-placeholder {
  aspect-ratio: 4/5; border-radius: 20px;
  background: linear-gradient(135deg, var(--saffron-200), var(--saffron-100));
  border: 1px solid var(--saffron-300);
  display: flex; align-items: center; justify-content: center;
  color: var(--saffron-800);
  font-family: var(--font-mono); font-size: 12px; font-weight: 500;
  position: relative; overflow: hidden; text-align: center; padding: 24px;
}
.photo-placeholder::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 25% 30%, rgba(245, 184, 46, 0.4), transparent 40%),
    radial-gradient(circle at 75% 70%, rgba(110, 138, 107, 0.3), transparent 50%);
}
.photo-placeholder > span { position: relative; z-index: 1; }
.corner-accent {
  position: absolute; top: 0; right: 0;
  width: 64px; height: 64px;
  background: var(--saffron-500);
  clip-path: polygon(100% 0, 0 0, 100% 100%);
  border-top-right-radius: 20px;
}

/* Floating route card on hero */
.route-card {
  position: absolute; bottom: -24px; left: -32px;
  background: var(--paper); border: 1px solid var(--stone-200);
  border-radius: 12px; box-shadow: var(--shadow-lg);
  padding: 18px; width: 280px;
}
.route-card-row { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; }
.route-tag {
  background: var(--saffron-500); color: var(--ink-800);
  padding: 3px 9px; border-radius: 4px;
  font-family: var(--font-mono); font-size: 11px; font-weight: 700; letter-spacing: 0.05em;
}
.route-status {
  background: var(--sage-100); color: var(--sage-700);
  padding: 3px 10px; border-radius: 999px; font-size: 11px; font-weight: 700;
}
.route-name { font-family: var(--font-display); font-size: 20px; font-weight: 600; color: var(--ink-700); letter-spacing: -0.01em; }
.route-meta { font-size: 13px; color: var(--fg-muted); margin-top: 4px; }
.route-times { display: flex; gap: 16px; margin-top: 12px; padding-top: 12px; border-top: 1px solid var(--stone-100); font-family: var(--font-mono); font-size: 13px; color: var(--ink-700); }

@media (max-width: 880px) {
  .hero .container { grid-template-columns: 1fr; gap: 40px; }
  .hero-figure { max-width: 420px; }
  .route-card { left: 0; right: auto; }
}

/* ---- Section header (eyebrow + display heading + lede) ---- */
.section-head { max-width: 720px; margin: 0 0 48px; }
.section-head .display-md { margin: 0; }
.section-head .lede { margin-top: 18px; }

/* ---- Feature grid ---- */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feature {
  background: var(--paper); border: 1px solid var(--stone-200);
  border-radius: 12px; padding: 28px;
  display: flex; flex-direction: column; gap: 12px;
  transition: box-shadow 0.24s var(--ease-out);
}
.feature:hover { box-shadow: var(--shadow-md); }
.feature-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--saffron-100);
  display: flex; align-items: center; justify-content: center;
}
.feature-icon svg { width: 22px; height: 22px; stroke: var(--saffron-700); stroke-width: 1.75; }
.feature h3 { margin: 0; font-size: 18px; font-weight: 700; color: var(--ink-700); }
.feature p  { margin: 0; color: var(--fg-muted); font-size: 15px; }
@media (max-width: 880px) { .feature-grid { grid-template-columns: 1fr; } }

/* ---- Two-column "What we do" ---- */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
@media (max-width: 880px) { .two-col { grid-template-columns: 1fr; gap: 40px; } }

/* ---- Stats strip ---- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; padding: 48px 0; border-top: 1px solid var(--stone-200); border-bottom: 1px solid var(--stone-200); }
.stat { text-align: left; }
.stat-num { font-family: var(--font-display); font-size: 48px; font-weight: 600; color: var(--ink-700); line-height: 1; letter-spacing: -0.02em; }
.stat-lbl { font-size: 13px; color: var(--fg-muted); margin-top: 8px; font-weight: 500; }
@media (max-width: 880px) { .stats { grid-template-columns: 1fr 1fr; gap: 32px; } }

/* ---- Form controls (feedback, contact, etc.) ---- */
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 13px; font-weight: 700; color: var(--ink-700); margin-bottom: 6px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 11px 14px;
  font-family: var(--font-sans); font-size: 15px; color: var(--ink-700);
  background: var(--paper); border: 1px solid var(--stone-300); border-radius: 8px;
  transition: border-color 0.24s var(--ease-out), box-shadow 0.24s var(--ease-out);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--saffron-500); box-shadow: var(--focus-ring);
}
.field textarea { min-height: 140px; resize: vertical; line-height: 1.5; }
.field-help { font-size: 12px; color: var(--fg-muted); margin-top: 4px; }

/* Contact grid */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 36px; }
.contact-item {
  background: var(--paper); border: 1px solid var(--stone-200);
  border-radius: 12px; padding: 22px 26px;
}
.contact-item h3 { font-size: 14px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--stone-600); margin: 0 0 10px; font-weight: 700; }
.contact-item .phone { display: block; font-family: var(--font-mono); font-size: 22px; font-weight: 600; color: var(--ink-700); margin: 0 0 6px; }
.contact-item .note  { font-size: 13px; color: var(--fg-muted); margin: 0; }
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; } }

/* Status banners (feedback success / error) */
.banner { padding: 14px 18px; border-radius: 10px; font-size: 14px; display: flex; gap: 10px; align-items: flex-start; margin-bottom: 18px; }
.banner-success { background: var(--sage-100); color: var(--sage-700); border-left: 3px solid var(--sage-500); }
.banner-error   { background: var(--brick-100); color: var(--brick-700); border-left: 3px solid var(--brick-500); }
.banner.hidden  { display: none; }
.banner svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 1px; }

/* ---- Footer ---- */
.site-footer { background: var(--ink-700); color: var(--cream); padding: 56px 0 32px; margin-top: 64px; }
.site-footer a { color: var(--cream); text-decoration: none; }
.site-footer a:hover { color: var(--saffron-500); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; align-items: start; }
.footer-brand img { height: 32px; }
.footer-tagline { font-size: 14px; color: var(--ink-300); margin-top: 14px; max-width: 320px; }
.footer-col h4 { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--ink-300); margin: 0 0 14px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 10px; font-size: 14px; }
.footer-bottom {
  display: flex; flex-wrap: wrap; gap: 16px; justify-content: space-between; align-items: center;
  margin-top: 48px; padding-top: 24px; border-top: 1px solid rgba(251, 246, 236, 0.12);
  font-size: 12px; color: var(--ink-300);
}
.footer-bottom-links { display: flex; gap: 18px; }
@media (max-width: 880px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
}

/* ---- Draft banner ---- */
.draft-banner {
  background: var(--ink-700); color: var(--cream);
  padding: 8px 16px; text-align: center;
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.04em;
}
.draft-banner b { color: var(--saffron-500); }
.draft-banner a { color: var(--saffron-500); }
</content>
</invoke>