:root {
  --bg: #12100e;
  --bg-alt: #1a1714;
  --panel: #201c18;
  --border: #332e28;
  --text: #ece6dd;
  --text-dim: #a89e91;
  --accent: #e8622c;
  --accent-dim: #b84e24;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  line-height: 1.6;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.narrow {
  max-width: 760px;
}

/* Header */
.site-header {
  border-bottom: 1px solid var(--border);
  background: var(--bg);
  position: sticky;
  top: 0;
  z-index: 10;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--text);
  text-decoration: none;
  font-size: 1.1rem;
}

.logo span {
  color: var(--accent);
}

.main-nav a {
  color: var(--text-dim);
  text-decoration: none;
  margin-left: 28px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: color 0.15s;
}

.main-nav a:hover {
  color: var(--accent);
}

/* Hero */
.hero {
  background:
    linear-gradient(180deg, rgba(18,16,14,0.4), rgba(18,16,14,0.95)),
    repeating-linear-gradient(135deg, #201c18 0, #201c18 2px, #191510 2px, #191510 40px);
  padding: 110px 0 90px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.eyebrow {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 18px;
}

.hero h1 {
  font-size: clamp(2.2rem, 6vw, 3.8rem);
  font-weight: 900;
  letter-spacing: 0.02em;
  margin-bottom: 20px;
}

.hero-sub {
  color: var(--text-dim);
  font-size: 1.15rem;
  max-width: 620px;
  margin: 0 auto 36px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 4px;
  font-weight: 700;
  text-decoration: none;
  font-size: 0.95rem;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.1s, background 0.15s;
}

.btn-primary {
  background: var(--accent);
  color: #14110d;
}

.btn-primary:hover {
  background: var(--accent-dim);
}

.btn-secondary {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}

.btn-secondary:hover {
  border-color: var(--text-dim);
}

/* Sections */
.section {
  padding: 90px 0;
  border-bottom: 1px solid var(--border);
}

.section-label {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.section h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 24px;
}

.section p {
  color: var(--text-dim);
  margin-bottom: 16px;
}

/* Timeline */
.timeline {
  margin: 40px 0;
  border-left: 2px solid var(--border);
  padding-left: 0;
}

.timeline-item {
  display: flex;
  gap: 20px;
  padding: 0 0 32px 24px;
  position: relative;
}

.timeline-marker {
  position: absolute;
  left: -12px;
  top: 2px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--accent);
  color: #14110d;
  font-weight: 800;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.timeline-content h3 {
  font-size: 1.05rem;
  margin-bottom: 6px;
  color: var(--text);
}

.timeline-content p {
  margin-bottom: 0;
}

.company-id {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.company-id img {
  border-radius: 8px;
  background: var(--panel);
  padding: 8px;
  border: 1px solid var(--border);
}

.company-id figcaption {
  color: var(--text-dim);
  font-size: 0.85rem;
  font-style: italic;
}

.story-photo {
  margin: 28px 0;
}

.story-photo img {
  width: 100%;
  border-radius: 8px;
  border: 1px solid var(--border);
  display: block;
}

.story-photo figcaption {
  color: var(--text-dim);
  font-size: 0.85rem;
  font-style: italic;
  margin-top: 8px;
}

.evidence-note {
  background: var(--panel);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: 4px;
  padding: 24px;
  margin: 32px 0;
}

.evidence-note h3 {
  margin-bottom: 8px;
  font-size: 1rem;
}

.evidence-note p {
  margin-bottom: 0;
}

.disclaimer {
  font-size: 0.85rem;
  font-style: italic;
  color: var(--text-dim);
  opacity: 0.8;
}

/* Form */
.story-form {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 32px;
  margin-top: 32px;
}

.form-row {
  margin-bottom: 20px;
}

.form-row label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 8px;
  color: var(--text);
}

.form-row input[type="text"],
.form-row input[type="email"],
.form-row input[type="tel"],
.form-row textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 12px 14px;
  color: var(--text);
  font-size: 0.95rem;
  font-family: inherit;
}

.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.checkbox-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.checkbox-row label {
  margin-bottom: 0;
  font-weight: 500;
  color: var(--text-dim);
}

.checkbox-row input {
  width: auto;
}

.form-note {
  font-size: 0.82rem;
  color: var(--text-dim);
  margin-top: 14px;
  margin-bottom: 0;
}

.contact-line a {
  color: var(--accent);
}

/* Footer */
.site-footer {
  padding: 32px 0;
  text-align: center;
}

.site-footer p {
  color: var(--text-dim);
  font-size: 0.85rem;
  margin: 0;
}

@media (max-width: 640px) {
  .main-nav a { margin-left: 16px; font-size: 0.85rem; }
  .section { padding: 60px 0; }
}
