/*
 * Home — testimonial / portrait quote section.
 * Portrait left (amber-tinted), large quote + attribution right.
 */

.home-quote {
  padding: 120px 48px;
  background: var(--ink-1);
  border-top: 1px solid var(--ink-3);
  border-bottom: 1px solid var(--ink-3);
}
.home-quote-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: center;
}
.home-quote-portrait {
  width: 100%;
  height: 520px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}
.home-quote-portrait::after {
  content: '';
  position: absolute;
  inset: 0;
  background: oklch(0.62 0.15 55 / 0.35);
  mix-blend-mode: multiply;
}
.home-quote-mark {
  font-family: var(--display);
  font-size: 120px;
  color: var(--amber);
  line-height: 0.6;
  margin-bottom: 24px;
  font-weight: 500;
}
.home-quote-text {
  font-family: var(--display);
  font-weight: 500;
  font-size: 40px;
  letter-spacing: -0.025em;
  line-height: 1.15;
  color: var(--paper);
  margin-bottom: 36px;
  text-wrap: balance;
}
.home-quote-rule {
  width: 64px;
  height: 2px;
  background: var(--amber);
  margin-bottom: 20px;
}
.home-quote-name {
  font-family: var(--display);
  font-weight: 600;
  font-size: 17px;
  color: var(--paper);
  margin-bottom: 4px;
}
.home-quote-role { font-size: 13px; color: var(--gray-2); margin-bottom: 4px; }

@media (max-width: 1024px) {
  .home-quote { padding: 96px 32px; }
  .home-quote-grid { gap: 48px; }
  .home-quote-text { font-size: 32px; }
}
@media (max-width: 768px) {
  .home-quote { padding: 72px 20px; }
  .home-quote-grid { grid-template-columns: 1fr; gap: 32px; }
  .home-quote-portrait { height: 360px; }
  .home-quote-text { font-size: 24px; }
  .home-quote-mark { font-size: 80px; }
}
@media (max-width: 480px) {
  .home-quote-text { font-size: 20px; }
}
