/* Passenger Confessions public website v1 - August 2026 */
:root {
  --bg: #050505;
  --bg-2: #121212;
  --panel: #1c1a17;
  --panel-2: #0d0d0d;
  --text: #f4ebdd;
  --muted: #c9bfaf;
  --faint: #877f75;
  --amber: #d8891f;
  --amber-soft: #f0a33a;
  --border: #3a332b;
  --border-soft: rgba(244, 235, 221, 0.14);
  --danger-soft: rgba(216, 137, 31, 0.12);
  --max: 1240px;
  --radius: 10px;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
  --header-height: 78px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; color-scheme: dark; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.58;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
:focus-visible { outline: 3px solid rgba(240, 163, 58, 0.72); outline-offset: 3px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; left: 16px; top: -80px; z-index: 1000; background: var(--amber); color: #080808; padding: 10px 14px; border-radius: 5px; font-weight: 900; text-decoration: none; }
.skip-link:focus { top: 12px; }
.container { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
.narrow { width: min(calc(100% - 40px), 860px); margin-inline: auto; }

.review-bar { background: #19130c; border-bottom: 1px solid rgba(216, 137, 31, 0.35); color: #e7c48d; font-size: 13px; text-align: center; padding: 8px 0; }
.site-header { position: sticky; top: 0; z-index: 100; background: rgba(5, 5, 5, 0.95); backdrop-filter: blur(16px); border-bottom: 1px solid var(--border-soft); }
.header-inner { min-height: var(--header-height); display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; min-width: 226px; }
.brand img { width: 50px; height: 50px; border: 2px solid var(--text); border-radius: 2px; }
.brand-copy { display: grid; font-weight: 900; font-size: 18px; line-height: 1.02; letter-spacing: 0.055em; text-transform: uppercase; }
.brand-copy .accent { color: var(--amber-soft); }
.brand-tag { display: block; color: var(--amber-soft); font-size: 11px; margin-top: 5px; letter-spacing: 0.01em; }
.nav { display: flex; align-items: center; justify-content: flex-end; gap: clamp(14px, 1.7vw, 27px); }
.nav a { color: #e8e1d7; text-decoration: none; font-size: 14px; white-space: nowrap; padding: 9px 0; border-bottom: 2px solid transparent; }
.nav a:hover, .nav a[aria-current="page"] { color: var(--amber-soft); border-bottom-color: var(--amber); }
.nav .nav-cta { padding: 12px 17px; border: 0; border-radius: 5px; background: linear-gradient(135deg, var(--amber-soft), var(--amber)); color: #0a0907; font-weight: 900; }
.nav .nav-cta:hover { color: #050505; border-bottom-color: transparent; filter: brightness(1.05); }
.menu-toggle { display: none; border: 1px solid var(--border); color: var(--text); background: #111; min-width: 46px; min-height: 42px; border-radius: 6px; font-size: 21px; }

.hero { position: relative; min-height: 650px; display: grid; align-items: center; overflow: hidden; isolation: isolate; background: #090909; }
.hero::before { content: ""; position: absolute; inset: 0; z-index: -2; background-image: var(--hero-image); background-size: cover; background-position: var(--hero-position, center); filter: saturate(0.91) contrast(1.07); transform: scale(1.01); }
.hero::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, rgba(2, 2, 2, 0.96) 0%, rgba(2, 2, 2, 0.86) 31%, rgba(2, 2, 2, 0.47) 58%, rgba(2, 2, 2, 0.28) 100%), linear-gradient(180deg, rgba(0,0,0,0.05), rgba(0,0,0,0.46)); }
.hero.compact { min-height: 510px; }
.hero-copy { width: min(660px, 100%); padding: 88px 0; }
.eyebrow { margin: 0 0 14px; color: var(--amber-soft); font-size: 13px; font-weight: 900; letter-spacing: 0.09em; text-transform: uppercase; }
h1, h2, h3 { margin-top: 0; line-height: 1.08; letter-spacing: -0.028em; }
h1 { margin-bottom: 21px; font-size: clamp(47px, 6.2vw, 80px); }
.hero.compact h1 { font-size: clamp(43px, 5.2vw, 68px); }
h2 { font-size: clamp(31px, 4.1vw, 50px); margin-bottom: 16px; }
h3 { font-size: 22px; margin-bottom: 10px; }
.accent { color: var(--amber-soft); }
.lead { max-width: 660px; margin: 0; color: #e4ddd3; font-size: clamp(18px, 2vw, 23px); }
.mood-line { margin-top: 20px; color: #d8c8ae; font-style: italic; font-size: 16px; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.btn { display: inline-flex; min-height: 49px; align-items: center; justify-content: center; gap: 9px; padding: 12px 21px; border: 1px solid transparent; border-radius: 5px; text-decoration: none; font-weight: 900; line-height: 1.2; }
.btn-primary { background: linear-gradient(135deg, var(--amber-soft), var(--amber)); color: #090806; }
.btn-primary:hover { filter: brightness(1.06); }
.btn-secondary { background: rgba(0,0,0,0.42); border-color: rgba(244,235,221,0.48); color: var(--text); }
.btn-secondary:hover { border-color: var(--amber-soft); color: var(--amber-soft); }
.btn-quiet { background: transparent; border-color: var(--border); color: var(--amber-soft); }
.btn[aria-disabled="true"], .btn:disabled { opacity: 0.48; pointer-events: none; }
.text-link { display: inline-block; margin-top: 18px; color: var(--amber-soft); font-weight: 800; text-decoration: none; }
.text-link:hover { text-decoration: underline; }

.section { padding: 78px 0; }
.section-tight { padding: 48px 0; }
.section-dark { background: var(--bg-2); }
.section-panel { background: linear-gradient(180deg, #0a0a0a, #070707); border-block: 1px solid var(--border-soft); }
.section-intro { max-width: 790px; margin: 0 0 32px; color: var(--muted); font-size: 18px; }
.grid { display: grid; gap: 20px; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.card { background: linear-gradient(145deg, rgba(28,26,23,0.92), rgba(12,12,12,0.96)); border: 1px solid var(--border-soft); border-radius: var(--radius); padding: 25px; box-shadow: 0 10px 38px rgba(0,0,0,0.16); }
.card p { margin-bottom: 0; color: var(--muted); }
.icon { width: 58px; height: 58px; display: grid; place-items: center; border: 1px solid rgba(216,137,31,0.55); border-radius: 50%; color: var(--amber-soft); margin-bottom: 18px; }
.icon svg { width: 27px; height: 27px; stroke: currentColor; fill: none; stroke-width: 1.8; }
.split { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 34px; align-items: start; }
.callout { padding: 21px 23px; border-left: 3px solid var(--amber); background: linear-gradient(90deg, rgba(216,137,31,0.12), rgba(216,137,31,0.02)); color: #e8dfd2; font-size: 20px; }
.notice { margin: 22px 0; padding: 14px 17px; border: 1px solid rgba(216,137,31,0.45); border-radius: 7px; background: var(--danger-soft); color: #e7c48d; }
.status-pill { display: inline-flex; align-items: center; gap: 7px; padding: 5px 10px; border: 1px solid rgba(216,137,31,0.48); border-radius: 999px; color: var(--amber-soft); font-size: 12px; font-weight: 900; }
.feature-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 13px; }
.feature-list li { position: relative; padding-left: 28px; color: #e1d9cf; }
.feature-list li::before { content: ""; position: absolute; left: 0; top: 0.51em; width: 9px; height: 9px; border: 2px solid var(--amber); border-radius: 50%; }

.steps { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border: 1px solid var(--border-soft); border-radius: var(--radius); overflow: hidden; }
.step { padding: 30px; border-right: 1px solid var(--border-soft); background: #0b0b0b; }
.step:last-child { border-right: 0; }
.step-number { width: 51px; height: 51px; display: grid; place-items: center; margin-bottom: 18px; border: 1px solid rgba(216,137,31,0.52); border-radius: 50%; color: var(--amber-soft); font-size: 21px; font-weight: 900; }
.step p { color: var(--muted); margin-bottom: 0; }

.story-grid, .product-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 19px; }
.story-card, .product-card { display: flex; flex-direction: column; min-height: 100%; overflow: hidden; border: 1px solid var(--border-soft); border-radius: var(--radius); background: linear-gradient(145deg, rgba(24,23,21,0.96), rgba(9,9,9,0.98)); }
.story-card { padding: 23px; min-height: 255px; }
.story-card h3 { margin-top: 17px; }
.story-card p { color: var(--muted); }
.story-card .story-footer { margin-top: auto; padding-top: 20px; color: var(--faint); font-size: 13px; }
.story-meta { color: var(--amber-soft); font-size: 12px; font-weight: 900; letter-spacing: 0.07em; text-transform: uppercase; }
.filter-row { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 25px; }
.filter-btn { border: 1px solid var(--border); border-radius: 999px; background: #111; color: #ddd5ca; padding: 8px 14px; }
.filter-btn.active, .filter-btn:hover { background: var(--amber); border-color: var(--amber); color: #090806; font-weight: 900; }
.product-card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; background: #0a0a0a; border-bottom: 1px solid var(--border-soft); }
.product-body { display: flex; flex-direction: column; gap: 9px; flex: 1; padding: 18px; }
.product-category { color: var(--amber-soft); font-size: 12px; font-weight: 900; letter-spacing: 0.08em; text-transform: uppercase; }
.product-title { font-size: 20px; font-weight: 900; line-height: 1.2; }
.product-note { color: var(--muted); font-size: 14px; flex: 1; }
.product-body .btn { margin-top: 6px; }

.form-panel { padding: 28px; border: 1px solid var(--border-soft); border-radius: var(--radius); background: #0d0d0d; box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 7px; margin-bottom: 16px; }
.form-group.full { grid-column: 1 / -1; }
label { font-weight: 800; }
.field-note { color: var(--faint); font-size: 13px; }
input, textarea, select { width: 100%; border: 1px solid rgba(244,235,221,0.22); border-radius: 6px; background: #111; color: var(--text); padding: 13px 14px; }
input:focus, textarea:focus, select:focus { border-color: var(--amber); box-shadow: 0 0 0 3px rgba(216,137,31,0.13); outline: none; }
textarea { min-height: 180px; resize: vertical; }
.radio-row { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 10px; }
.radio-card { display: flex; align-items: center; gap: 9px; padding: 12px; border: 1px solid var(--border-soft); border-radius: 6px; background: #101010; }
.radio-card input { width: auto; accent-color: var(--amber); }
.check { display: flex; gap: 10px; align-items: flex-start; margin: 13px 0; color: var(--muted); font-size: 14px; }
.check input { width: 18px; height: 18px; margin-top: 3px; accent-color: var(--amber); flex: 0 0 auto; }

.guide-card { display: grid; grid-template-columns: 210px 1fr; gap: 28px; align-items: center; padding: 30px; border: 1px solid var(--border-soft); border-radius: var(--radius); background: linear-gradient(145deg, #15130f, #0a0a0a); }
.guide-cover { min-height: 285px; padding: 25px; display: grid; align-content: center; text-align: center; border: 1px solid rgba(216,137,31,0.35); background: radial-gradient(circle at 50% 20%, rgba(216,137,31,0.14), transparent 55%), #070707; box-shadow: var(--shadow); }
.guide-cover strong { color: var(--amber-soft); font-size: 31px; line-height: 1.02; text-transform: uppercase; }
.guide-cover small { color: var(--muted); margin-top: 14px; }

.footer { padding: 47px 0 18px; border-top: 1px solid var(--border-soft); background: #060606; }
.footer-grid { display: grid; grid-template-columns: 1.35fr 0.9fr 0.9fr 1.35fr; gap: 29px; }
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.footer-brand img { width: 51px; height: 51px; border: 2px solid var(--text); }
.footer h4 { margin: 0 0 14px; color: var(--amber-soft); font-size: 13px; letter-spacing: 0.07em; text-transform: uppercase; }
.footer p { color: var(--muted); font-size: 14px; }
.footer a { display: block; margin: 8px 0; color: #cbc2b6; text-decoration: none; font-size: 14px; }
.footer a:hover { color: var(--amber-soft); }
.email-form { display: grid; gap: 9px; }
.email-row { display: flex; }
.email-row input { border-radius: 5px 0 0 5px; background: #f0ece6; color: #15120d; }
.email-row button { border: 0; border-radius: 0 5px 5px 0; background: var(--amber); color: #080705; font-weight: 900; padding: 0 17px; }
.email-consent { display: flex; align-items: flex-start; gap: 8px; color: var(--faint); font-size: 12px; }
.email-consent input { width: 15px; height: 15px; margin-top: 2px; accent-color: var(--amber); }
.footer-bottom { margin-top: 30px; padding-top: 15px; border-top: 1px solid var(--border-soft); color: var(--faint); font-size: 12px; text-align: center; }

.page-home { --hero-image: url('../img/heroes/home-desktop.webp'); --hero-position: 58% center; }
.page-read { --hero-image: url('../img/heroes/read-desktop.webp'); --hero-position: center; }
.page-share { --hero-image: url('../img/heroes/share-desktop.webp'); --hero-position: center; }
.page-handbook { --hero-image: url('../img/heroes/handbook-desktop.webp'); --hero-position: 61% center; }
.page-shop { --hero-image: url('../img/heroes/shop-desktop.webp'); --hero-position: 62% center; }
.page-about { --hero-image: url('../img/heroes/about-desktop.webp'); --hero-position: center; }
.page-contact { --hero-image: url('../img/heroes/contact-desktop.webp'); --hero-position: center; }

@media (max-width: 1050px) {
  .menu-toggle { display: inline-grid; place-items: center; }
  .nav { position: absolute; left: 0; right: 0; top: var(--header-height); display: none; padding: 20px; flex-direction: column; align-items: stretch; background: rgba(5,5,5,0.99); border-bottom: 1px solid var(--border); }
  .nav.open { display: flex; }
  .nav a { padding: 10px 0; }
  .nav .nav-cta { text-align: center; }
  .brand { min-width: 0; }
  .grid-4 { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .story-grid, .product-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .footer-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
}

@media (max-width: 760px) {
  :root { --header-height: 70px; }
  .container, .narrow { width: min(calc(100% - 24px), var(--max)); }
  .review-bar { font-size: 11px; padding: 7px 10px; }
  .brand img { width: 45px; height: 45px; }
  .brand-copy { font-size: 15px; }
  .brand-tag { display: none; }
  .hero { min-height: 590px; }
  .hero.compact { min-height: 520px; }
  .hero::before { background-image: var(--hero-mobile); background-position: var(--hero-mobile-position, center); }
  .hero::after { background: linear-gradient(180deg, rgba(2,2,2,0.34) 0%, rgba(2,2,2,0.68) 43%, rgba(2,2,2,0.95) 78%, rgba(2,2,2,0.98) 100%); }
  .hero-copy { padding: 105px 0 54px; }
  h1 { font-size: clamp(42px, 13vw, 62px); }
  .hero.compact h1 { font-size: clamp(40px, 12vw, 57px); }
  .lead { font-size: 18px; }
  .actions { display: grid; }
  .actions .btn { width: 100%; }
  .section { padding: 56px 0; }
  .grid-2, .grid-3, .grid-4, .story-grid, .product-grid, .footer-grid, .form-grid, .split { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .step { border-right: 0; border-bottom: 1px solid var(--border-soft); }
  .step:last-child { border-bottom: 0; }
  .radio-row { grid-template-columns: 1fr; }
  .guide-card { grid-template-columns: 1fr; }
  .guide-cover { min-height: 235px; }
  .email-row { display: grid; gap: 8px; }
  .email-row input, .email-row button { min-height: 48px; border-radius: 5px; }
  .page-home { --hero-mobile: url('../img/heroes/home-mobile.webp'); --hero-mobile-position: 62% center; }
  .page-read { --hero-mobile: url('../img/heroes/read-mobile.webp'); --hero-mobile-position: 50% center; }
  .page-share { --hero-mobile: url('../img/heroes/share-mobile.webp'); --hero-mobile-position: 52% center; }
  .page-handbook { --hero-mobile: url('../img/heroes/handbook-mobile.webp'); --hero-mobile-position: 62% center; }
  .page-shop { --hero-mobile: url('../img/heroes/shop-mobile.webp'); --hero-mobile-position: 50% center; }
  .page-about { --hero-mobile: url('../img/heroes/about-mobile.webp'); --hero-mobile-position: center; }
  .page-contact { --hero-mobile: url('../img/heroes/contact-mobile.webp'); --hero-mobile-position: 50% center; }
}


/* Public website additions */
.site-status { display: inline-flex; align-items: center; gap: 8px; padding: 7px 11px; border: 1px solid rgba(216,137,31,.34); border-radius: 999px; color: var(--amber-soft); background: rgba(216,137,31,.07); font-size: 12px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.site-status::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--amber-soft); box-shadow: 0 0 0 4px rgba(216,137,31,.12); }
.editorial-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 18px; }
.editorial-card { min-height: 255px; display: flex; flex-direction: column; justify-content: space-between; padding: 26px; border: 1px solid var(--border-soft); border-radius: var(--radius); background: linear-gradient(145deg, rgba(28,26,23,.95), rgba(9,9,9,.96)); box-shadow: 0 18px 50px rgba(0,0,0,.18); }
.editorial-card .kicker { color: var(--amber-soft); font-size: 12px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.editorial-card h3 { margin: 14px 0 12px; font-size: clamp(24px,3vw,34px); line-height: 1.08; }
.editorial-card p { color: var(--muted); margin: 0; }
.editorial-card .source-note { margin-top: 24px; padding-top: 14px; border-top: 1px solid var(--border-soft); color: var(--faint); font-size: 12px; }
.status-panel { padding: 34px; border: 1px solid rgba(216,137,31,.35); border-radius: var(--radius); background: radial-gradient(circle at 85% 15%, rgba(216,137,31,.15), transparent 40%), linear-gradient(145deg,#15120e,#080808); box-shadow: var(--shadow); }
.status-panel h2 { margin-top: 0; }
.status-panel .actions { margin-bottom: 0; }
.collection-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 18px; }
.collection-card { padding: 26px; border: 1px solid var(--border-soft); border-radius: var(--radius); background: var(--panel-2); }
.collection-card h3 { margin: 12px 0 10px; }
.collection-card ul { margin: 16px 0 0; padding-left: 18px; color: var(--muted); }
.collection-card li { margin: 7px 0; }
.cta-band { padding: 34px; border: 1px solid var(--border-soft); border-radius: var(--radius); display: flex; align-items: center; justify-content: space-between; gap: 24px; background: linear-gradient(110deg, rgba(216,137,31,.13), rgba(13,13,13,.95) 45%); }
.cta-band h2 { margin: 0 0 8px; }
.cta-band p { margin: 0; color: var(--muted); }
.legal-copy h2 { margin-top: 42px; }
.legal-copy h3 { margin-top: 30px; }
.legal-copy p, .legal-copy li { color: var(--muted); }
.legal-copy ul { padding-left: 22px; }
.page-note { color: var(--faint); font-size: 13px; }
.footer-status { padding: 15px; border: 1px solid var(--border-soft); border-radius: 8px; background: #0b0b0b; }
.footer-status strong { display: block; color: var(--text); margin-bottom: 5px; }
.footer-status span { color: var(--muted); font-size: 13px; }
.form-panel select { width: 100%; min-height: 49px; border: 1px solid var(--border); border-radius: 5px; background: #0a0a0a; color: var(--text); padding: 12px 14px; }
.external-link::after { content: " ↗"; }
.btn-disabled { opacity: .55; cursor: not-allowed; pointer-events: none; }
.handbook-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 22px; }
.handbook-card { display: grid; grid-template-columns: 170px 1fr; gap: 24px; align-items: center; padding: 26px; border: 1px solid var(--border-soft); border-radius: var(--radius); background: linear-gradient(145deg,#15130f,#080808); }
.handbook-cover { min-height: 225px; display: grid; place-items: center; padding: 20px; border: 1px solid rgba(216,137,31,.35); background: radial-gradient(circle at 50% 20%,rgba(216,137,31,.16),transparent 56%),#070707; text-align: center; }
.handbook-cover strong { color: var(--amber-soft); font-size: 23px; line-height: 1.03; text-transform: uppercase; }
.handbook-card p { color: var(--muted); }

@media (max-width: 1050px) {
  .editorial-grid, .collection-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .handbook-grid { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .editorial-grid, .collection-grid { grid-template-columns: 1fr; }
  .cta-band { align-items: flex-start; flex-direction: column; }
  .handbook-card { grid-template-columns: 1fr; }
  .handbook-cover { min-height: 180px; }
  .site-status { display: none; }
}
