/* Testimonials page — warm dark literary, matches theme.css */

/* ── Hero ── */
.tm-hero {
  padding: 90px 48px 80px;
  background: linear-gradient(180deg, #111009 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--border);
}

.tm-hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 80px;
  align-items: center;
}

.tm-kicker {
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0.8;
  margin-bottom: 20px;
}

.tm-founder-photo-wrap {
  margin-bottom: 20px;
}

.tm-founder-photo {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  border: 1px solid var(--border);
}

.tm-founder-note {
  font-size: 14px;
  font-weight: 300;
  color: var(--fg-muted);
  line-height: 1.6;
  margin-bottom: 28px;
}

.tm-headline {
  font-size: clamp(38px, 5vw, 68px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--fg);
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}

.tm-sub {
  font-size: 18px;
  font-weight: 300;
  color: var(--fg-muted);
  line-height: 1.8;
  max-width: 480px;
  margin-bottom: 40px;
}

.tm-cta {
  display: inline-block;
  padding: 13px 28px;
  background: var(--accent);
  color: var(--bg);
  font-family: 'DM Mono', monospace;
  font-size: 13px;
  text-decoration: none;
  border-radius: 4px;
  transition: opacity 0.15s;
}

.tm-cta:hover { opacity: 0.85; }

.tm-owl {
  width: 100%;
  max-width: 320px;
  display: block;
  margin: 0 auto;
}

/* ── Testimonials Grid ── */
.tm-section {
  padding: 80px 48px;
  background: var(--bg);
}

.tm-section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.tm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

/* Alternating offset for visual interest */
.tm-card:nth-child(5) {
  grid-column: 1 / -1;
  max-width: 720px;
  margin: 0 auto;
  width: 100%;
}

.tm-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 40px 36px;
  position: relative;
  transition: background 0.2s;
  display: flex;
  flex-direction: column;
}

.tm-card:hover {
  background: var(--surface-alt);
}

.tm-card-quote-mark {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 88px;
  line-height: 0.8;
  color: var(--accent);
  opacity: 0.25;
  margin-bottom: 16px;
  font-weight: 300;
}

.tm-card-text {
  font-size: 18px;
  font-weight: 300;
  font-style: italic;
  color: var(--fg);
  line-height: 1.75;
  flex: 1;
  margin-bottom: 32px;
}

.tm-card-footer {
  border-top: 1px solid var(--border);
  padding-top: 20px;
}

.tm-card-name {
  font-family: 'DM Mono', monospace;
  font-size: 14px;
  font-weight: 400;
  color: var(--fg);
  margin-bottom: 4px;
}

.tm-card-role {
  font-size: 14px;
  font-weight: 300;
  color: var(--fg-muted);
  margin-bottom: 8px;
}

.tm-card-tag {
  display: inline-block;
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.05em;
  color: var(--accent);
  opacity: 0.8;
  border: 1px solid rgba(232, 168, 73, 0.2);
  border-radius: 3px;
  padding: 3px 8px;
}

/* ── Context Strip ── */
.tm-context {
  padding: 48px 48px;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.tm-context-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.tm-context-label {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-muted);
  opacity: 0.6;
  margin-bottom: 20px;
}

.tm-context-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 6px;
  align-items: center;
}

.tm-context-item {
  font-size: 15px;
  font-weight: 300;
  color: var(--fg-muted);
}

.tm-context-sep {
  color: var(--accent);
  opacity: 0.3;
  font-size: 14px;
}

/* ── CTA Section ── */
.tm-cta-section {
  padding: 100px 48px;
  background: var(--bg);
  text-align: center;
}

.tm-cta-inner {
  max-width: 620px;
  margin: 0 auto;
}

.tm-cta-headline {
  font-size: clamp(28px, 3.5vw, 52px);
  font-weight: 300;
  color: var(--fg);
  line-height: 1.2;
  margin-bottom: 24px;
}

.tm-cta-body {
  font-size: 18px;
  font-weight: 300;
  color: var(--fg-muted);
  line-height: 1.8;
  margin-bottom: 40px;
}

.tm-cta-btn {
  display: inline-block;
  padding: 14px 32px;
  background: var(--accent);
  color: var(--bg);
  font-family: 'DM Mono', monospace;
  font-size: 13px;
  text-decoration: none;
  border-radius: 4px;
  transition: opacity 0.15s;
  margin-bottom: 32px;
}

.tm-cta-btn:hover { opacity: 0.85; }

.tm-cta-links {
  display: flex;
  justify-content: center;
  gap: 28px;
}

.tm-cta-link {
  font-family: 'DM Mono', monospace;
  font-size: 13px;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.15s;
}

.tm-cta-link:hover { color: var(--fg); }

/* ── Responsive ── */
@media (max-width: 900px) {
  .tm-hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .tm-owl { max-width: 200px; margin: 0 auto; }

  .tm-section { padding: 60px 24px; }
  .tm-grid { grid-template-columns: 1fr; }
  .tm-card:nth-child(5) { max-width: 100%; }
  .tm-card { padding: 28px 24px; }

  .tm-context { padding: 40px 24px; }
  .tm-cta-section { padding: 60px 24px; }
  .tm-book-cta { padding: 60px 24px; }
  .tm-book-cta-links { flex-direction: column; align-items: stretch; }
}

@media (max-width: 600px) {
  .tm-headline { font-size: 36px; }
  .tm-sub { font-size: 16px; }
  .tm-cta-links { flex-direction: column; gap: 16px; align-items: center; }
  .tm-book-cta-headline { font-size: 30px; }
}

/* ── Book a Call CTA ── */
.tm-book-cta {
  padding: 80px 48px;
  background: linear-gradient(180deg, var(--bg) 0%, var(--surface) 100%);
  border-top: 1px solid var(--border);
  text-align: center;
}

.tm-book-cta-inner {
  max-width: 620px;
  margin: 0 auto;
}

.tm-book-cta-kicker {
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0.8;
  margin-bottom: 20px;
}

.tm-book-cta-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(30px, 3.5vw, 48px);
  font-weight: 300;
  color: var(--fg);
  line-height: 1.2;
  margin-bottom: 20px;
}

.tm-book-cta-body {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 300;
  color: var(--fg-muted);
  line-height: 1.8;
  margin-bottom: 36px;
}

.tm-book-cta-links {
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}