/* meettravis.ai content pages — About, Boot Guides, articles.
   Static CSS, no build step. Upload to public_html alongside the .html files. */

:root {
  --navy: #001D34;
  --cream: #F0EBDF;
  --gold: #EDA13A;
  --rule: rgba(240, 235, 223, 0.12);
  --rule-strong: rgba(240, 235, 223, 0.28);
}

*, *::before, *::after { box-sizing: border-box; }

html, body { margin: 0; padding: 0; }

body {
  background: var(--navy);
  color: var(--cream);
  font-family: 'Instrument Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--cream); text-decoration: none; }
a:hover { color: var(--gold); }

img { max-width: 100%; }

/* ---- header / footer ---- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px 24px;
  padding: 18px clamp(20px, 5vw, 80px);
  background: rgba(0, 29, 52, 0.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--rule);
}

.wordmark {
  font-family: 'Anton', 'Arial Narrow', sans-serif;
  font-size: 15px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}
.wordmark span { color: var(--gold); }

.site-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px clamp(16px, 2.2vw, 28px);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.site-nav [aria-current="page"] { color: var(--gold); }

.btn {
  padding: 9px 16px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--navy);
  letter-spacing: 0.14em;
}
.btn:hover { background: #F2B65A; color: var(--navy); }

.btn-lg {
  display: inline-block;
  padding: 16px 28px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.btn-lg:hover { background: #F2B65A; color: var(--navy); }

.site-footer {
  border-top: 1px solid var(--rule);
  padding: 26px clamp(20px, 5vw, 80px) 34px;
}
.site-footer .inner {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px 24px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.site-footer .credit { opacity: 0.55; }
.site-footer nav { display: flex; flex-wrap: wrap; gap: 8px 22px; }

/* ---- page shell ---- */

.wrap { max-width: 1080px; margin: 0 auto; padding: 0 clamp(20px, 5vw, 80px); }

.section {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 56px;
  padding: clamp(44px, 7vh, 76px) 0;
}
.section + .section,
.section.ruled { border-top: 1px solid var(--rule); }

.rail {
  margin: 0;
  flex: 0 0 140px;
  padding-top: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}
.body { flex: 1 1 420px; min-width: 0; }

/* ---- type ---- */

h1, h2 {
  font-family: 'Anton', 'Arial Narrow', sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  margin: 0;
}
h1 { font-size: clamp(38px, 5vw, 64px); line-height: 1.0; letter-spacing: 0.01em; max-width: 22ch; }
h2 { font-size: clamp(26px, 3vw, 38px); line-height: 1.04; max-width: 26ch; }
h3 { margin: 0; font-size: 18px; font-weight: 600; letter-spacing: -0.01em; }

p { text-wrap: pretty; }
.lede { margin: 28px 0 0; font-size: clamp(18px, 1.5vw, 20px); line-height: 1.55; max-width: 64ch; }
.prose { max-width: 64ch; }
.prose p { margin: 20px 0 0; line-height: 1.68; }
.prose p:first-child { margin-top: 28px; }

.steps { margin: 28px 0 0; padding: 0 0 0 1.3em; display: flex; flex-direction: column; gap: 24px; max-width: 64ch; }
.steps li { padding-left: 6px; }
.steps p { margin: 8px 0 0; line-height: 1.68; }

/* ---- FAQ ---- */

.faq { padding: clamp(52px, 8vh, 88px) 0 clamp(44px, 7vh, 76px); border-top: 1px solid var(--rule-strong); }
.faq > h2 { font-size: clamp(32px, 4vw, 52px); line-height: 1.0; max-width: none; }
.faq .intro { margin: 18px 0 0; line-height: 1.6; max-width: 58ch; opacity: 0.7; }
.faq-list { margin-top: clamp(28px, 4vh, 44px); }

/* FAQ ENTRY — copy one .faq-item to add a question. */
.faq-item { padding: 28px 0; border-top: 1px solid var(--rule); }
.faq-item:last-child { border-bottom: 1px solid var(--rule); }
.faq-item h3 { font-size: clamp(20px, 1.7vw, 23px); letter-spacing: -0.014em; line-height: 1.28; max-width: 34ch; }
.faq-item p { margin: 14px 0 0; line-height: 1.7; max-width: 62ch; }

/* ---- closing call to action ---- */

.cta {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px 40px;
  padding: clamp(44px, 7vh, 76px) 0 clamp(52px, 9vh, 96px);
}
.cta.ruled { border-top: 1px solid var(--rule-strong); padding-top: clamp(40px, 6vh, 64px); }
.cta .copy { flex: 1 1 380px; min-width: 0; }
.cta h2 { font-size: clamp(26px, 3vw, 38px); max-width: 22ch; }
.cta p { margin: 16px 0 0; line-height: 1.66; max-width: 52ch; }

/* ---- blog index ---- */

.index-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px clamp(24px, 4vw, 56px);
  padding: clamp(44px, 7vh, 76px) 0 clamp(30px, 5vh, 48px);
  border-bottom: 1px solid var(--rule);
}
.index-head .copy { flex: 1 1 420px; min-width: 0; }
.index-head .eyebrow { margin: 0 0 16px; font-size: 11px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); }
.index-head .blurb { margin: 20px 0 0; font-size: clamp(17px, 1.3vw, 19px); line-height: 1.6; max-width: 58ch; opacity: 0.82; }
.index-head .count { margin: 22px 0 0; font-size: 12px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; opacity: 0.5; }
.index-head figure { margin: 0; flex: 1 1 280px; max-width: 440px; min-width: 0; }
.index-head img { display: block; width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: 50% 30%; border-radius: 4px; }

.year { margin: clamp(32px, 5vh, 52px) 0 6px; font-family: 'Instrument Sans', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; opacity: 0.45; }

.post-list { margin: 0; padding: 0; list-style: none; padding-bottom: clamp(40px, 7vh, 80px); }
.post-list li { border-bottom: 1px solid var(--rule); }

/* POST ROW — copy one <li> to add an article to the index. */
.post {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px clamp(20px, 3vw, 44px);
  padding: clamp(18px, 2.6vh, 24px) 8px;
}
.post:hover { background: rgba(240, 235, 223, 0.05); color: var(--cream); }
.post time { flex: 0 0 96px; font-size: 12px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; opacity: 0.5; }
.post .text { flex: 1 1 420px; min-width: 0; }
.post h3 { font-size: clamp(19px, 1.7vw, 24px); letter-spacing: -0.014em; line-height: 1.28; }
.post .summary { margin: 7px 0 0; font-size: 16px; line-height: 1.56; opacity: 0.72; max-width: 62ch; }
.post .topic { flex: 0 0 110px; font-size: 10px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); opacity: 0.85; }

/* ---- article ---- */

.back { display: inline-flex; align-items: center; gap: 10px; margin-top: clamp(32px, 5vh, 64px); font-size: 11px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; opacity: 0.65; }

.article { max-width: 820px; padding: clamp(28px, 4vh, 44px) 0 0; }
.article .eyebrow { margin: 0 0 16px; font-size: 11px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); }
.article h1 { font-size: clamp(34px, 4.2vw, 58px); max-width: 26ch; }
.article .meta { margin: 20px 0 0; display: flex; flex-wrap: wrap; gap: 6px 16px; font-size: 12px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; opacity: 0.55; }
.article .standfirst { margin: clamp(26px, 4vh, 38px) 0 0; font-size: clamp(19px, 1.5vw, 22px); line-height: 1.55; max-width: 62ch; }
.article h2 { margin: clamp(34px, 5vh, 52px) 0 0; font-size: clamp(24px, 2.4vw, 32px); line-height: 1.08; max-width: none; }
.article p { margin: 16px 0 0; line-height: 1.68; max-width: 64ch; opacity: 0.88; }
.article .faq { margin-top: clamp(44px, 7vh, 76px); padding: clamp(30px, 4.5vh, 44px) 0 0; }
.article .faq > h2 { margin: 0 0 clamp(24px, 3.5vh, 34px); font-size: clamp(24px, 2.4vw, 32px); }
.article .faq-item p { opacity: 1; }
