/* ===== ABOUT ===== */
.about-year {
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 2px;
  color: var(--text-muted);
  white-space: nowrap;
}

.about-timeline-track {
  flex: 1;
  height: 2px;
  background: rgba(255,255,255,0.1);
  position: relative;
  overflow: hidden;
}

.about-chapter {
  flex-shrink: 0;
  height: clamp(220px, 38vh, 300px);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.about-chapter-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.8vw, 54px);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
  line-height: 1.05;
  text-transform: uppercase;
}

.about-chapter-desc {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-secondary);
  max-width: 560px;
  margin-bottom: 20px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 32px;
  justify-content: flex-start;
}

.stat-item { text-align: left; }

.stat-number {
  font-family: var(--font-display);
  font-size: 42px;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ===== CONTACT ===== */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-info .section-label { text-align: left; }
.contact-info .section-title { text-align: left; margin-bottom: 16px; }

.contact-description {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 40px;
}

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

.contact-detail-icon {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.5;
}

.contact-detail-text { font-size: 14px; color: var(--text-secondary); }

.contact-detail-text strong {
  display: block;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.contact-social {
  display: flex;
  gap: 16px;
  margin-top: 40px;
}

.contact-social a {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  text-decoration: none;
}

.contact-social a:hover {
  border-color: var(--accent);
  background: rgba(26, 107, 255, 0.1);
}

.contact-social a svg {
  width: 16px;
  height: 16px;
  fill: var(--text-secondary);
  transition: fill 0.3s ease;
}

.contact-social a:hover svg { fill: var(--accent); }

.contact-form-wrapper {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 40px;
}

.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }

.form-group label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.form-group input,
.form-group textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-primary);
  transition: border-color 0.3s ease;
  outline: none;
  border-radius: 0;
  -webkit-appearance: none;
}

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

.form-group textarea { resize: vertical; min-height: 120px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.form-submit {
  padding: 16px 40px;
  background: var(--accent);
  border: none;
  color: #fff;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  align-self: flex-start;
}

.form-submit:hover {
  background: var(--accent-glow);
  box-shadow: 0 0 30px rgba(26, 107, 255, 0.3);
}

/* ===== FORM PRIVACY NOTE ===== */
.form-privacy-note {
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 12px;
  opacity: 0.7;
}

.form-privacy-note a {
  color: var(--color-accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ===== FOOTER ===== */
.footer {
  position: relative;
  z-index: 5; /* above #shared-video-bg (fixed, z-index 0) which stays display:block past av-wrapper */
  padding: 32px 48px;
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,0.04);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--text-muted);
}

.footer a {
  color: var(--text-muted);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s;
}

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

/* ===== FAQ ===== */
.faq-section {
  /* The fixed #shared-video-bg (z-index 0) stays display:block past the av-wrapper pin
     by design. Without this stacking context, FAQ content renders behind it: dropdown
     text invisible, visible "break" as the dark FAQ rises behind the warm video frame. */
  position: relative;
  z-index: 5;
  background: var(--dark);
  padding: clamp(60px, 10vh, 120px) 24px;
  border-top: 1px solid rgba(255,255,255,0.04);
}

.faq-inner {
  max-width: 880px;
  margin: 0 auto;
}

.faq-eyebrow {
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 3px;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.faq-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.1;
  text-transform: uppercase;
  margin-bottom: 40px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--dark-surface);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 4px;
  overflow: hidden;
  transition: border-color 0.2s;
}

.faq-item[open] {
  border-color: rgba(26,107,255,0.35);
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 56px 18px 22px;
  position: relative;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.45;
  color: var(--text-primary);
  user-select: none;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--accent);
  transition: transform 0.2s;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: '–';
}

.faq-item summary:hover {
  background: rgba(255,255,255,0.02);
}

.faq-item p {
  padding: 0 22px 20px 22px;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-secondary);
}

@media (max-width: 600px) {
  .faq-section { padding: 56px 16px; }
  .faq-item summary { padding: 16px 48px 16px 18px; font-size: 15px; }
  .faq-item summary::after { right: 18px; font-size: 22px; }
  .faq-item p { padding: 0 18px 18px 18px; font-size: 14px; }
}
