/* brand-values.css — Styles for brand value landing pages */

/* ── Hero ── */
.nw-hero {
  padding: 3rem 0 2rem;
  text-align: center;
}
.nw-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}
.nw-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 0.75rem;
}
.nw-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 640px;
  margin: 0 auto 1.5rem;
  line-height: 1.6;
}
.nw-hero-stats {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}
.nw-hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}
.nw-hero-stat-val {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
}
.nw-hero-stat-label {
  font-size: 0.75rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ── Summary stat cards ── */
.nw-stats {
  padding: 1.5rem 0 2rem;
}
.summary-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.summary-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.summary-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(212, 168, 83, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}
.summary-data {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.summary-value {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-primary);
}
.summary-value small {
  font-size: 0.7em;
  font-weight: 400;
  color: var(--text-secondary);
}
.summary-label {
  font-size: 0.72rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ── Price chart ── */
.nw-chart-section {
  padding: 2rem 0;
}

/* ── Year bands (Values by Era) ── */
.nw-bands {
  padding: 2rem 0;
}
.nw-section-desc {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}
.nw-band-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
}
.nw-band-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.25rem;
  transition: border-color 0.2s, transform 0.2s;
}
.nw-band-card:hover {
  border-color: rgba(212, 168, 83, 0.3);
  transform: translateY(-2px);
}
.nw-band-empty {
  opacity: 0.45;
}
.nw-band-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0.75rem;
}
.nw-band-label {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
}
.nw-band-count {
  font-size: 0.75rem;
  color: var(--text-secondary);
  white-space: nowrap;
}
.nw-band-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.15rem;
}
.nw-band-sublabel {
  font-size: 0.7rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.75rem;
}
.nw-band-range {
  font-size: 0.85rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.nw-band-range-sep {
  color: rgba(255, 255, 255, 0.2);
}
.nw-band-range-label {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.3);
  margin-top: 0.25rem;
}
.nw-band-nodata {
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-style: italic;
}

/* ── Listings table ── */
.nw-listings {
  padding: 2rem 0;
}
.listings-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 10px;
  border: 1px solid var(--border);
}
.listings-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
}
.listings-table thead th {
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-secondary);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.75rem 1rem;
  text-align: left;
  white-space: nowrap;
  border-bottom: 1px solid var(--border);
}
.listings-table tbody td {
  padding: 0.65rem 1rem;
  color: var(--text-primary);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  white-space: nowrap;
}
.listings-table tbody tr:hover {
  background: rgba(212, 168, 83, 0.04);
}
.listings-table .price-cell {
  font-weight: 600;
  color: var(--accent);
}
.nw-floorplan-cell {
  max-width: 160px;
  overflow: hidden;
  text-overflow: ellipsis;
}
.nw-dealer-cell {
  max-width: 180px;
  overflow: hidden;
  text-overflow: ellipsis;
  color: var(--text-secondary) !important;
  font-size: 0.8rem;
}

/* ── Market insights ── */
.nw-insights {
  padding: 2rem 0;
}
.nw-insight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.25rem;
}
.nw-insight-grid > div,
.nw-insight-grid > article {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.5rem;
}
.nw-insight-grid h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--accent);
  margin: 0 0 0.5rem;
}
.nw-insight-grid p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* ── FAQ ── */
.nw-faq {
  padding: 2rem 0;
}
.nw-faq-list {
  max-width: 800px;
}
.nw-faq-item {
  border-bottom: 1px solid var(--border);
  padding: 1.25rem 0;
}
.nw-faq-item:first-child {
  padding-top: 0;
}
.nw-faq-q {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0 0 0.5rem;
  cursor: default;
}
.nw-faq-a {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.65;
}
.nw-faq-a p {
  margin: 0 0 0.5rem;
}
.nw-faq-a p:last-child {
  margin-bottom: 0;
}
.nw-faq-a a {
  color: var(--accent);
}

/* ── Internal links ── */
.nw-links {
  padding: 2rem 0 3rem;
}
.nw-link-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1rem;
}
.nw-link-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1rem 1.25rem;
  color: var(--text-primary);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: border-color 0.2s, transform 0.15s;
}
.nw-link-card:hover {
  border-color: rgba(212, 168, 83, 0.35);
  transform: translateY(-1px);
}
.nw-link-icon {
  color: var(--accent);
  flex-shrink: 0;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .nw-title { font-size: 1.8rem; }
  .nw-hero-stats { gap: 1.5rem; }
  .nw-hero-stat-val { font-size: 1.2rem; }
  .summary-grid { grid-template-columns: repeat(2, 1fr); }
  .nw-band-grid { grid-template-columns: repeat(2, 1fr); }
  .nw-insight-grid { grid-template-columns: 1fr; }
  .nw-link-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .summary-grid { grid-template-columns: 1fr; }
  .nw-band-grid { grid-template-columns: 1fr; }
  .nw-hero-stats { flex-direction: column; gap: 1rem; }
}
