/* Hope on the Road — page styles (HTML version) */

* { box-sizing: border-box; }
body { margin: 0; background: var(--cream-50); color: var(--fg); font-family: var(--font-body); }
img { display: block; max-width: 100%; }
a { color: inherit; }

/* ===== Nav ===== */
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 48px; border-bottom: 1px solid var(--border);
  background: rgba(253,250,245,0.9); backdrop-filter: blur(8px);
  position: sticky; top: 0; z-index: 10;
}
.nav-brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-brand img { height: 36px; }
.nav-brand span { font-family: var(--font-display); font-style: italic; font-size: 22px; color: var(--fg); font-weight: 500; }
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a { color: var(--fg-muted); text-decoration: none; font-size: 14px; font-weight: 500; transition: color 180ms var(--ease-slow); }
.nav-links a:hover { color: var(--accent); }
.btn-pill {
  background: var(--accent); color: var(--cream-50); border: none;
  padding: 8px 18px; border-radius: var(--r-pill);
  font-size: 13px; font-weight: 500; font-family: var(--font-body); cursor: pointer;
}
.btn-pill-lg { padding: 14px 28px; font-size: 14px; letter-spacing: 0.02em; }
.btn-ghost {
  background: rgba(253,250,245,0.12); color: var(--cream-50);
  border: 1px solid rgba(253,250,245,0.4); padding: 14px 28px;
  border-radius: var(--r-pill); font-size: 14px; font-weight: 500;
  font-family: var(--font-body); cursor: pointer; backdrop-filter: blur(6px);
}
.btn-outline {
  background: transparent; color: var(--fg);
  border: 1px solid var(--border-strong); padding: 12px 24px;
  border-radius: var(--r-pill); font-size: 14px; font-weight: 500;
  font-family: var(--font-body); cursor: pointer;
}
.btn-solid {
  background: var(--accent); color: var(--cream-50); border: none;
  padding: 12px 24px; border-radius: var(--r-pill); font-size: 14px;
  font-weight: 500; font-family: var(--font-body); cursor: pointer;
}

/* ===== Hero ===== */
.hero {
  position: relative; height: min(820px, 85vh); min-height: 640px;
  overflow: hidden; display: flex; align-items: flex-end;
  background: linear-gradient(180deg, rgba(34,29,22,0.35) 0%, rgba(34,29,22,0.45) 40%, rgba(34,29,22,0.88) 100%), url(assets/photos/hero.jpeg) center/cover;
}
.hero-inner { padding: 0 48px 96px; color: var(--cream-50); max-width: 1100px; position: relative; z-index: 1; }
.eyebrow-light {
  font-size: 12px; font-weight: 500; letter-spacing: 0.28em; text-transform: uppercase;
  opacity: 0.9; margin-bottom: 22px; display: flex; align-items: center; gap: 14px;
}
.eyebrow-light .rule { width: 40px; height: 1px; background: var(--cream-50); opacity: 0.6; }
.hero h1 {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(3.5rem, 9vw, 8rem); line-height: 0.98; letter-spacing: -0.025em;
  color: var(--cream-50); margin: 0 0 30px; text-wrap: balance;
}
.hero h1 em { font-style: italic; }
.hero-lede {
  font-family: var(--font-display); font-style: italic; font-size: 24px;
  max-width: 52ch; opacity: 0.95; line-height: 1.45; margin: 0 0 40px; font-weight: 400;
}
.hero-cta { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.hero-scroll {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  color: var(--cream-50); font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase;
  opacity: 0.7; display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.hero-scroll .line { width: 1px; height: 36px; background: currentColor; opacity: 0.6; }

/* ===== Crew ===== */
.crew { padding: 110px 48px; background: var(--cream-50); }
.crew-inner { max-width: 1200px; margin: 0 auto; }
.crew-head { text-align: center; margin-bottom: 64px; }
.eyebrow-accent { font-size: 12px; font-weight: 500; letter-spacing: 0.28em; text-transform: uppercase; color: var(--accent); margin-bottom: 14px; }
.crew h2 {
  font-family: var(--font-display); font-style: italic; font-weight: 500;
  font-size: 56px; line-height: 1.05; color: var(--fg);
  letter-spacing: -0.02em; max-width: 18ch; margin: 0 auto; text-wrap: balance;
}
.crew-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.crew-card { display: flex; flex-direction: column; align-items: flex-start; gap: 14px; }
.crew-photo { width: 100%; aspect-ratio: 4/5; border-radius: var(--r-lg); background-position: center; background-size: cover; box-shadow: var(--shadow-md); border: 1px solid var(--border); }
.crew-name { font-family: var(--font-display); font-style: italic; font-size: 26px; font-weight: 500; color: var(--fg); letter-spacing: -0.01em; }
.crew-role { font-size: 11px; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase; color: var(--accent); margin-top: 2px; }
.crew-note { font-size: 14px; color: var(--fg-muted); margin-top: 8px; line-height: 1.5; }

/* ===== Stats ===== */
.stats { padding: 80px 48px; background: var(--taupe-800); color: var(--cream-50); }
.stats-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; }
.stat { text-align: center; }
.stat-n { font-family: var(--font-display); font-style: italic; font-size: 72px; font-weight: 500; line-height: 1; color: var(--terracotta-300); letter-spacing: -0.03em; }
.stat-l { font-size: 12px; font-weight: 500; letter-spacing: 0.24em; text-transform: uppercase; color: var(--taupe-200); margin-top: 14px; }

/* ===== Latest stories (empty state) ===== */
.latest { padding: 110px 48px; background: var(--cream-100); }
.latest-inner { max-width: 900px; margin: 0 auto; text-align: center; }
.latest h2 { font-family: var(--font-display); font-style: italic; font-weight: 500; font-size: 44px; line-height: 1.1; color: var(--fg); letter-spacing: -0.02em; margin: 0 0 18px; }
.latest p { font-size: 16px; line-height: 1.7; color: var(--fg-muted); max-width: 46ch; margin: 0 auto 32px; }
.stage-card {
  max-width: 540px; margin: 0 auto; padding: 32px 36px;
  background: var(--cream-50); border: 1px dashed var(--border-strong);
  border-radius: var(--r-lg);
}
.stage-card .lbl { font-size: 11px; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase; color: var(--accent); margin-bottom: 10px; }
.stage-card .ttl { font-family: var(--font-display); font-style: italic; font-size: 26px; line-height: 1.2; color: var(--fg); letter-spacing: -0.01em; }

.stage-link { display: block; text-decoration: none; max-width: 720px; margin: 0 auto; }
.stage-card-rich {
  display: grid; grid-template-columns: 220px 1fr; gap: 0;
  padding: 0; max-width: none; overflow: hidden;
  border: 1px solid var(--border); background: var(--cream-50);
  box-shadow: var(--shadow-sm); transition: transform 220ms var(--ease-slow), box-shadow 220ms var(--ease-slow);
  text-align: left;
}
.stage-card-rich:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.stage-thumb { background-position: center; background-size: cover; min-height: 180px; }
.stage-body { padding: 28px 32px; display: flex; flex-direction: column; justify-content: center; gap: 8px; }
.stage-body .ttl { margin: 0; }
.stage-meta { font-size: 13px; color: var(--fg-muted); margin-top: 4px; letter-spacing: 0.02em; }
.stage-cta { margin-top: 14px; font-size: 13px; font-weight: 500; color: var(--accent); letter-spacing: 0.02em; }
@media (max-width: 700px) {
  .stage-card-rich { grid-template-columns: 1fr; }
  .stage-thumb { aspect-ratio: 16/9; min-height: 0; }
}

/* ===== Map ===== */
.map { padding: 100px 48px; background: var(--cream-100); position: relative; }
.map-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: center; }
.map h2 { font-family: var(--font-display); font-weight: 500; font-size: 48px; line-height: 1.05; color: var(--fg); margin: 0 0 20px; letter-spacing: -0.02em; }
.map h2 em { font-style: italic; }
.map p { font-size: 17px; line-height: 1.7; color: var(--fg-muted); max-width: 42ch; margin: 0 0 28px; }
.map-frame {
  aspect-ratio: 4/3; border-radius: var(--r-xl);
  background: linear-gradient(135deg, #F4DCCF 0%, #E9BBA3 40%, #DACEBE 100%);
  box-shadow: var(--shadow-lg); position: relative; overflow: hidden; border: 1px solid var(--border);
}
.map-status {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
}
.map-status-card {
  text-align: center; padding: 18px 28px;
  background: rgba(253,250,245,0.92); border-radius: var(--r-md);
  backdrop-filter: blur(6px); border: 1px dashed var(--border-strong);
}
.map-status-card .lbl { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--fg-muted); font-weight: 500; margin-bottom: 6px; }
.map-status-card .ttl { font-family: var(--font-display); font-style: italic; font-size: 22px; color: var(--fg); font-weight: 500; }

/* ===== Instagram band ===== */
.ig { padding: 96px 48px; background: var(--cream-50); }
.ig-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.4fr; gap: 56px; align-items: center; }
.ig h2 { font-family: var(--font-display); font-style: italic; font-weight: 500; font-size: 42px; line-height: 1.08; color: var(--fg); margin: 0 0 18px; letter-spacing: -0.02em; }
.ig p { font-size: 16px; line-height: 1.7; color: var(--fg-muted); margin: 0 0 24px; max-width: 40ch; }
.ig-link { display: inline-flex; align-items: center; gap: 8px; color: var(--accent); text-decoration: none; font-size: 15px; font-weight: 500; }
.ig-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.ig-cell { aspect-ratio: 1/1; background-position: center; background-size: cover; border-radius: var(--r-md); display: block; }

/* ===== Pull quote ===== */
.quote { padding: 120px 48px; background: var(--cream-50); text-align: center; }
.quote-inner { max-width: 740px; margin: 0 auto; }
.quote img { width: 100px; opacity: 0.6; margin: 0 auto 28px; }
.quote p { font-family: var(--font-display); font-style: italic; font-weight: 400; font-size: 38px; line-height: 1.3; color: var(--fg); margin: 0 0 32px; letter-spacing: -0.01em; }
.quote p em { font-style: italic; }
.quote .signoff { font-family: var(--font-script); font-size: 32px; color: var(--accent); font-weight: 500; }

/* ===== Newsletter ===== */
.newsletter { padding: 80px 48px; background: var(--taupe-800); color: var(--cream-50); }
.newsletter-inner { max-width: 600px; margin: 0 auto; text-align: center; }
.newsletter .eb { font-size: 12px; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase; color: var(--terracotta-300); margin-bottom: 16px; }
.newsletter h3 { font-family: var(--font-display); font-style: italic; font-weight: 500; font-size: 36px; line-height: 1.15; margin: 0 0 14px; color: var(--cream-50); }
.newsletter p { font-size: 15px; color: var(--taupe-200); margin: 0 0 28px; line-height: 1.6; }
.newsletter form { display: flex; gap: 10px; max-width: 420px; margin: 0 auto; }
.newsletter input {
  flex: 1; padding: 12px 16px; border-radius: var(--r-pill);
  border: 1px solid var(--taupe-600); background: var(--taupe-700);
  color: var(--cream-50); font-size: 14px; font-family: var(--font-body); outline: none;
}
.newsletter button {
  background: var(--accent); color: var(--cream-50); border: none;
  padding: 12px 22px; border-radius: var(--r-pill); font-size: 14px;
  font-weight: 500; font-family: var(--font-body); cursor: pointer;
}

/* ===== Footer ===== */
.footer { padding: 48px; background: var(--taupe-900); color: var(--taupe-300); font-size: 13px; }
.footer-inner { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; }
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-brand img { height: 36px; filter: brightness(1.4); }
.footer-brand span { font-family: var(--font-display); font-style: italic; font-size: 18px; color: var(--cream-50); }
.footer-links { display: flex; gap: 28px; flex-wrap: wrap; }
.footer-links a { color: var(--taupe-300); text-decoration: none; }
.footer-copy { opacity: 0.6; }

/* ===== Article (prologue) ===== */
.article-hero {
  position: relative; height: min(620px, 72vh); min-height: 440px;
  overflow: hidden; display: flex; align-items: flex-end;
  background: linear-gradient(180deg, rgba(34,29,22,0.2) 0%, rgba(34,29,22,0.35) 45%, rgba(34,29,22,0.85) 100%), url(assets/photos/hero.jpeg) center/cover;
}
.article-hero .inner { padding: 0 28px 64px; max-width: 820px; margin: 0 auto; color: var(--cream-50); width: 100%; }
.article-hero h1 {
  font-family: var(--font-display); font-style: italic; font-weight: 500;
  font-size: clamp(3rem, 8vw, 6.2rem); line-height: 1; letter-spacing: -0.025em;
  color: var(--cream-50); margin: 0 0 22px; text-wrap: balance;
}
.article-hero .sub { font-family: var(--font-display); font-style: italic; font-size: 22px; max-width: 52ch; opacity: 0.92; line-height: 1.45; font-weight: 400; margin: 0; }

.byline { max-width: 720px; margin: 0 auto; padding: 32px 28px 0; }
.meta-row { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; color: var(--fg-muted); font-size: 13px; }
.avatars { display: flex; align-items: center; gap: 10px; }
.avatar { width: 36px; height: 36px; border-radius: 50%; background-position: center; background-size: cover; border: 1px solid var(--border); }
.avatar + .avatar { margin-left: -12px; }
.dot { width: 4px; height: 4px; border-radius: 50%; background: var(--taupe-400); display: inline-block; }
.author-name { font-weight: 500; color: var(--fg); }

.wrap { max-width: 720px; margin: 0 auto; padding: 40px 28px 0; }
.wrap p { font-size: 19px; line-height: 1.75; color: var(--fg); margin: 0 0 1.25em; text-wrap: pretty; }
.wrap p.lede { font-family: var(--font-display); font-style: italic; font-weight: 400; font-size: 26px; line-height: 1.5; margin-bottom: 1.5em; }
.wrap h2 { font-family: var(--font-display); font-style: italic; font-weight: 500; font-size: 36px; line-height: 1.15; letter-spacing: -0.015em; margin: 2em 0 0.6em; color: var(--fg); }
.wrap blockquote { margin: 2.2em 0; padding: 0 0 0 22px; border-left: 3px solid var(--accent); font-family: var(--font-display); font-style: italic; font-size: 24px; line-height: 1.45; color: var(--fg); }
.drop::first-letter { font-family: var(--font-display); font-weight: 500; float: left; font-size: 5.2em; line-height: 0.85; padding: 6px 10px 0 0; color: var(--accent); }
.tag { font-size: 11px; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase; color: var(--accent); }
.signoff { font-family: var(--font-script); font-size: 38px; color: var(--accent); margin-top: 48px; line-height: 1; }
.from-where { font-size: 12px; color: var(--fg-muted); margin-top: 12px; letter-spacing: 0.08em; }
hr.wave { border: 0; height: 40px; background: url(assets/divider-wave.svg) center/100px no-repeat; opacity: 0.55; margin: 56px 0; }
.article-foot { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; padding: 0 0 80px; }
.article-foot a { font-size: 14px; color: var(--accent); text-decoration: none; font-weight: 500; }
.article-foot .label { font-size: 12px; color: var(--fg-muted); letter-spacing: 0.18em; text-transform: uppercase; }
.article-foot .next { font-size: 14px; color: var(--fg-muted); font-style: italic; }

/* ===== À propos page ===== */
.about-head { padding: 110px 48px 60px; background: var(--cream-50); text-align: center; }
.about-head-inner { max-width: 820px; margin: 0 auto; }
.about-head h1 { font-family: var(--font-display); font-weight: 500; font-size: clamp(3rem, 7vw, 5.6rem); line-height: 1.02; letter-spacing: -0.025em; color: var(--fg); margin: 0 0 22px; text-wrap: balance; }
.about-head h1 em { font-style: italic; }
.about-lede { font-family: var(--font-display); font-style: italic; font-size: 22px; color: var(--fg-muted); line-height: 1.5; max-width: 56ch; margin: 0 auto; font-weight: 400; }

.about-story { padding: 80px 48px 110px; background: var(--cream-50); }
.about-story-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-story h2 { font-family: var(--font-display); font-style: italic; font-weight: 500; font-size: 44px; line-height: 1.1; color: var(--fg); margin: 0 0 22px; letter-spacing: -0.02em; }
.about-story p { font-size: 17px; line-height: 1.75; color: var(--fg); margin: 0 0 1.2em; max-width: 48ch; }
.about-story-photo { aspect-ratio: 4/5; border-radius: var(--r-lg); background-position: center; background-size: cover; box-shadow: var(--shadow-md); border: 1px solid var(--border); }

.values { padding: 110px 48px; background: var(--cream-100); }
.values-inner { max-width: 1200px; margin: 0 auto; }
.values-title { font-family: var(--font-display); font-style: italic; font-weight: 500; font-size: 48px; line-height: 1.1; color: var(--fg); letter-spacing: -0.02em; text-align: center; margin: 14px 0 56px; text-wrap: balance; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.value { padding: 36px 32px; background: var(--cream-50); border: 1px solid var(--border); border-radius: var(--r-lg); }
.value-num { font-family: var(--font-display); font-style: italic; font-size: 32px; color: var(--accent); margin-bottom: 14px; font-weight: 500; }
.value h3 { font-family: var(--font-display); font-style: italic; font-weight: 500; font-size: 28px; color: var(--fg); margin: 0 0 12px; letter-spacing: -0.01em; }
.value p { font-size: 15px; line-height: 1.7; color: var(--fg-muted); margin: 0; }

.faq { padding: 110px 48px; background: var(--cream-50); }
.faq-inner { max-width: 760px; margin: 0 auto; text-align: center; }
.faq-list { margin-top: 12px; text-align: left; }
.faq-item { border-bottom: 1px solid var(--border); padding: 22px 0; }
.faq-item summary { cursor: pointer; list-style: none; font-family: var(--font-display); font-style: italic; font-size: 22px; font-weight: 500; color: var(--fg); letter-spacing: -0.01em; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-family: var(--font-body); font-style: normal; font-size: 26px; color: var(--accent); transition: transform 220ms var(--ease-slow); flex-shrink: 0; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { font-size: 16px; line-height: 1.7; color: var(--fg-muted); margin: 14px 0 4px; max-width: 60ch; }
.faq-item p a { color: var(--accent); text-decoration: none; }

.contact-cta { padding: 100px 48px; background: var(--cream-100); text-align: center; }
.contact-inner { max-width: 640px; margin: 0 auto; }
.contact-cta h2 { font-family: var(--font-display); font-style: italic; font-weight: 500; font-size: 44px; line-height: 1.1; color: var(--fg); margin: 14px 0 18px; letter-spacing: -0.02em; }
.contact-cta p { font-size: 16px; line-height: 1.7; color: var(--fg-muted); margin: 0 0 28px; }
.btn-solid-lg { display: inline-block; text-decoration: none; padding: 14px 28px; font-size: 15px; }

@media (max-width: 900px) {
  .about-story-inner, .values-grid { grid-template-columns: 1fr; }
  .about-head, .about-story, .values, .faq, .contact-cta { padding-left: 20px; padding-right: 20px; }
}

@media (max-width: 900px) {
  .nav { padding: 16px 20px; }
  .nav-links { gap: 16px; }
  .hero-inner, .crew, .stats, .latest, .map, .ig, .quote, .newsletter, .footer { padding-left: 20px; padding-right: 20px; }
  .crew-grid, .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .map-inner, .ig-inner { grid-template-columns: 1fr; }
}
