/* ============ Simple Inner Pages ============ */
/* Shared layout skeleton (page-hero, page-content, page-cta) reused by every simple */
/* content page (about, psyops, tacops, outdoors, speaking, contact). Each of those */
/* pages also has its own dedicated CSS file (about.css, psyops.css, etc.) for rules */
/* specific to that page. Depends on the design tokens defined in css/style.css */

.page-hero {
  background: var(--black);
  padding: 90px 0 60px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.page-hero .kicker {
  font-family: var(--font-label);
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  color: var(--gold-light);
  margin-bottom: 14px;
}
.page-hero h1 {
  font-family: var(--font-head);
  font-weight: 400;
  font-size: 2.8rem;
  line-height: 1.25;
}
.page-hero p:not(.kicker) {
  color: var(--text-muted);
  max-width: 760px;
  margin-top: 16px;
  font-size: 1.25rem;
}

.page-content { padding: 70px 0; }
.page-content.alt { background: var(--near-black); }
.page-content + .page-content { border-top: 1px solid rgba(255,255,255,0.06); }
.page-content h2 {
  font-family: var(--font-head);
  font-weight: 400;
  font-size: 2rem;
  margin-bottom: 20px;
}
.page-content p {
  color: var(--text-muted);
  font-size: 1.15rem;
  max-width: 780px;
  margin-bottom: 16px;
}
.page-content ul {
  color: var(--text-muted);
  font-size: 1.15rem;
  max-width: 780px;
  padding-left: 20px;
  margin-bottom: 16px;
}
.page-content ul li { margin-bottom: 10px; }

.page-cta {
  background: var(--black);
  padding: 70px 0;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.page-cta h2 {
  font-family: var(--font-head);
  font-weight: 400;
  font-size: 2rem;
  margin-bottom: 16px;
}
.page-cta p {
  color: var(--text-muted);
  font-size: 1.15rem;
  max-width: 600px;
  margin: 0 auto 26px;
}

/* ---- "Image CTA" variant: background photo, text left, button(s) right ---- */
/* Page-specific files set the actual background-image (see .about-cta, .psyops-cta, etc.) */
.page-cta.has-image { text-align: left; padding: 60px 0; }
.cta-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-text { max-width: 560px; }
.page-cta.has-image h2 { font-size: 2.4rem; margin: 0 0 16px; }
.page-cta.has-image p { color: var(--text-light); font-size: 1.25rem; margin: 0; max-width: none; }
.cta-buttons { display: flex; gap: 16px; flex-wrap: wrap; flex-shrink: 0; }
.page-cta.has-image .btn { flex-shrink: 0; font-size: 1.05rem; padding: 20px 40px; }

@media (max-width: 800px) {
  .page-cta.has-image { text-align: center; }
  .cta-inner { flex-direction: column; }
  .cta-text { max-width: none; }
}

.youtube-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 900px;
  margin-bottom: 26px;
}
.youtube-embed {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--near-black);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(185,162,106,0.15);
}
.youtube-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.youtube-embed img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
}
.youtube-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(10,10,9,0.75);
  border: 2px solid var(--text-light);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}
.youtube-play::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 54%;
  transform: translate(-50%, -50%);
  border-style: solid;
  border-width: 10px 0 10px 16px;
  border-color: transparent transparent transparent var(--text-light);
}
.youtube-embed:hover .youtube-play {
  background: var(--gold);
  border-color: var(--gold);
}
.youtube-embed:hover .youtube-play::before { border-left-color: var(--black); }

@media (max-width: 640px) {
  .youtube-grid { grid-template-columns: 1fr; }
}

.faq-list {
  display: flex;
  flex-direction: column;
  max-width: 780px;
}
.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
}
.faq-item:first-child { padding-top: 0; }
.faq-item:last-child { border-bottom: none; padding-bottom: 0; }

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-family: var(--font-head);
  font-size: 1.3rem;
  color: var(--gold);
  flex-shrink: 0;
}
.faq-item[open] summary::after { content: '\2212'; }

.faq-item h3 {
  font-family: var(--font-label);
  font-size: 1.1rem;
  letter-spacing: 0.02em;
  color: var(--gold-light);
  margin-bottom: 0;
}
.faq-item p {
  margin: 14px 0 0;
}

@media (max-width: 800px) {
  .page-hero h1 { font-size: 2rem; }
}
