/* ==========================================================
   INTAKE PAGE · DEPT HEAD LANDING
   Extends the main site styles with page-specific blocks
   ========================================================== */

/* Remove default link underline from nav brand and footer brand wrappers */
.nav-brand a,
.footer-brand a {
  text-decoration: none;
  color: inherit;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: opacity 0.2s;
}
.nav-brand a:hover,
.footer-brand a:hover {
  opacity: 0.7;
}

/* Hero */
.intake-hero {
  padding: 140px 0 100px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}
.intake-hero-title {
  font-family: var(--serif);
  font-size: clamp(44px, 7vw, 96px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  font-weight: 400;
  margin: 32px 0 40px;
  max-width: 1100px;
  color: var(--bone);
}
.intake-hero-title .title-line {
  display: block;
}
.intake-hero-sub {
  font-family: var(--serif);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.45;
  color: var(--cream);
  font-weight: 300;
  max-width: 780px;
  margin-bottom: 48px;
}
.read-time {
  font-family: var(--mono, "JetBrains Mono", monospace);
  font-size: 11px;
  letter-spacing: 0.25em;
  color: var(--gold);
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}

/* Promise Section */
.promise-section {
  padding: 120px 0;
  border-bottom: 1px solid var(--line);
  background: radial-gradient(ellipse at 50% 30%, rgba(201, 169, 97, 0.04), transparent 60%);
}
.promise-card {
  background: linear-gradient(180deg, rgba(201, 169, 97, 0.06), rgba(201, 169, 97, 0.02));
  border: 1px solid var(--gold);
  padding: 60px 56px;
  margin: 60px 0 32px;
  position: relative;
  max-width: 900px;
}
.promise-card::before,
.promise-card::after {
  content: "";
  position: absolute;
  width: 24px; height: 24px;
  border: 1px solid var(--gold);
}
.promise-card::before { top: -1px; left: -1px; border-right: none; border-bottom: none; }
.promise-card::after  { bottom: -1px; right: -1px; border-left: none; border-top: none; }

.promise-mark {
  font-size: 24px;
  color: var(--gold);
  margin-bottom: 24px;
  letter-spacing: 0.1em;
}
.promise-mark img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 0 12px rgba(201, 169, 97, 0.22));
}
.promise-text {
  font-family: var(--serif);
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.4;
  font-weight: 400;
  color: var(--bone);
  letter-spacing: -0.01em;
  margin-bottom: 24px;
}
.promise-text em {
  color: var(--gold);
  font-style: italic;
}
.promise-sig {
  font-family: var(--mono, "JetBrains Mono", monospace);
  font-size: 11px;
  letter-spacing: 0.25em;
  color: var(--gold);
  margin-top: 16px;
}
.promise-followup {
  font-family: var(--serif);
  font-size: 18px;
  font-style: italic;
  color: var(--cream);
  max-width: 700px;
  opacity: 0.8;
}

/* Why Section */
.why-section {
  padding: 120px 0;
  border-bottom: 1px solid var(--line);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin: 80px 0 48px;
}
@media (max-width: 900px) {
  .why-grid { grid-template-columns: 1fr; gap: 24px; }
}
.why-block {
  padding: 40px 32px;
  background: var(--ink-card, rgba(255, 255, 255, 0.02));
  border-top: 1px solid var(--gold);
  border-left: 1px solid rgba(201, 169, 97, 0.2);
}
.why-block h3 {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
  color: var(--bone);
  letter-spacing: -0.01em;
  margin-bottom: 16px;
  line-height: 1.2;
}
.why-block p {
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1.55;
  color: var(--cream);
  font-weight: 300;
  opacity: 0.85;
}
.why-footer {
  font-family: var(--serif);
  font-size: 18px;
  font-style: italic;
  color: var(--gold);
  max-width: 900px;
  line-height: 1.5;
}

/* Process Timeline */
.process-page-section {
  padding: 120px 0;
  border-bottom: 1px solid var(--line);
}
.process-timeline {
  list-style: none;
  padding: 0;
  margin: 80px 0 0;
  max-width: 960px;
}
.timeline-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  margin-bottom: 60px;
  position: relative;
}
.timeline-step:last-child { margin-bottom: 0; }

.step-marker {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.step-num {
  width: 56px; height: 56px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 500;
  color: var(--gold);
  background: var(--ink, #0a0a0a);
  z-index: 2;
  flex-shrink: 0;
}
.step-line {
  position: absolute;
  top: 56px;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: calc(100% + 60px);
  background: linear-gradient(to bottom, var(--gold), rgba(201, 169, 97, 0.2));
  z-index: 1;
}
.timeline-step:last-child .step-line { display: none; }

.step-body {
  padding-bottom: 20px;
}
.step-label {
  font-family: var(--mono, "JetBrains Mono", monospace);
  font-size: 11px;
  letter-spacing: 0.25em;
  color: var(--gold);
  margin-bottom: 16px;
  font-weight: 500;
}
.step-body h3 {
  font-family: var(--serif);
  font-size: clamp(28px, 3.5vw, 38px);
  font-weight: 400;
  color: var(--bone);
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  line-height: 1.15;
}
.step-body p {
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.6;
  color: var(--cream);
  font-weight: 300;
  margin-bottom: 16px;
  max-width: 720px;
}
.step-note {
  font-size: 15px !important;
  color: var(--gold) !important;
  border-left: 2px solid var(--gold);
  padding-left: 20px;
  margin-top: 24px !important;
  font-style: italic;
  opacity: 0.95;
}
.step-note strong {
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.02em;
}

@media (max-width: 640px) {
  .timeline-step { grid-template-columns: 48px 1fr; gap: 20px; }
  .step-num { width: 40px; height: 40px; font-size: 14px; }
  .step-line { top: 40px; }
}

/* Oracle Section */
.oracle-section {
  padding: 120px 0;
  border-bottom: 1px solid var(--line);
  background: radial-gradient(ellipse at 50% 50%, rgba(201, 169, 97, 0.02), transparent 70%);
}
.oracle-lead {
  font-family: var(--serif);
  font-size: 22px;
  font-style: italic;
  color: var(--cream);
  max-width: 800px;
  margin-bottom: 60px;
  line-height: 1.5;
}
.artifact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}
@media (max-width: 900px) {
  .artifact-grid { grid-template-columns: 1fr; gap: 20px; }
}
.artifact-card {
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid var(--line);
  padding: 36px 32px;
  transition: border-color 0.3s var(--t-easing), transform 0.3s var(--t-easing);
}
.artifact-card:hover {
  border-color: var(--gold-dim, rgba(201, 169, 97, 0.5));
  transform: translateY(-2px);
}
.artifact-num {
  font-family: var(--mono, "JetBrains Mono", monospace);
  font-size: 11px;
  letter-spacing: 0.25em;
  color: var(--gold);
  margin-bottom: 18px;
}
.artifact-card h3 {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
  color: var(--bone);
  margin: 0 0 14px;
  letter-spacing: -0.01em;
  line-height: 1.15;
}
.artifact-card p {
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1.6;
  color: var(--cream);
  font-weight: 300;
  margin: 0;
}

.oracle-foot {
  font-family: var(--mono, "JetBrains Mono", monospace);
  font-size: 12px;
  letter-spacing: 0.08em;
  line-height: 1.7;
  color: var(--gold-dim, rgba(201, 169, 97, 0.6));
  max-width: 720px;
  margin: 0;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}

/* FAQ */
.faq-section {
  padding: 120px 0;
  border-bottom: 1px solid var(--line);
}
.faq-list {
  margin-top: 80px;
  max-width: 900px;
}
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 24px 0;
  transition: all 0.3s var(--t-easing);
}
.faq-item[open] {
  border-bottom-color: var(--gold);
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-family: var(--serif);
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 400;
  color: var(--bone);
  letter-spacing: -0.01em;
  padding: 12px 0;
  transition: color 0.3s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--gold); }
.faq-item[open] summary { color: var(--gold); }
.faq-icon {
  font-family: var(--mono, "JetBrains Mono", monospace);
  font-size: 28px;
  font-weight: 300;
  color: var(--gold);
  transition: transform 0.3s var(--t-easing);
  flex-shrink: 0;
  line-height: 1;
}
.faq-item[open] .faq-icon {
  transform: rotate(45deg);
}
.faq-body {
  padding-top: 16px;
  max-width: 780px;
}
.faq-body p {
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.6;
  color: var(--cream);
  font-weight: 300;
  margin-bottom: 16px;
}
.faq-body p:last-child { margin-bottom: 0; }
.faq-body em {
  color: var(--gold);
  font-style: italic;
}

/* Begin section */
.begin-section {
  padding: 140px 0 120px;
  text-align: center;
  background: radial-gradient(ellipse at center, rgba(201, 169, 97, 0.08), transparent 70%);
}
.begin-inner {
  max-width: 900px;
  margin: 0 auto;
}
.section-eyebrow.centered {
  justify-content: center;
}
.begin-title {
  font-family: var(--serif);
  font-size: clamp(56px, 8vw, 112px);
  font-weight: 400;
  letter-spacing: -0.03em;
  color: var(--bone);
  margin: 32px 0 32px;
  line-height: 1;
}
.begin-sub {
  font-family: var(--serif);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.5;
  color: var(--cream);
  font-weight: 300;
  max-width: 680px;
  margin: 0 auto 60px;
}
.begin-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 48px;
}
@media (max-width: 700px) {
  .begin-actions { grid-template-columns: 1fr; gap: 16px; }
}
.begin-btn {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  padding: 32px 32px;
  border: 1px solid var(--gold);
  background: rgba(201, 169, 97, 0.02);
  text-decoration: none;
  position: relative;
  transition: all 0.3s var(--t-easing);
  gap: 6px;
}
.begin-btn.primary {
  background: var(--gold);
  color: var(--ink, #0a0a0a);
}
.begin-btn.primary:hover {
  background: var(--gold-bright, #d9b872);
}
.begin-btn.secondary {
  color: var(--bone);
}
.begin-btn.secondary:hover {
  background: rgba(201, 169, 97, 0.08);
}
.begin-btn-label {
  font-family: var(--mono, "JetBrains Mono", monospace);
  font-size: 11px;
  letter-spacing: 0.25em;
  font-weight: 600;
  opacity: 0.7;
}
.begin-btn-title {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin: 4px 0 2px;
}
.begin-btn-sub {
  font-family: var(--serif);
  font-size: 15px;
  font-style: italic;
  opacity: 0.8;
  font-weight: 300;
}
.begin-btn .arrow {
  position: absolute;
  top: 32px;
  right: 32px;
  font-family: var(--serif);
  font-size: 24px;
  transition: transform 0.3s;
}
.begin-btn:hover .arrow {
  transform: translate(4px, -4px);
}
.begin-note {
  font-family: var(--serif);
  font-size: 16px;
  font-style: italic;
  color: var(--cream);
  opacity: 0.7;
  max-width: 600px;
  margin: 0 auto;
}

/* TOUCH-DEVICE OVERRIDES */
@media (hover: none) {
  .artifact-card:hover {
    transform: none;
  }
  .begin-btn:hover .arrow {
    transform: none;
  }
}
