/* ── INTRO SPLIT ── */
.intro-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.intro-img {
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(21,32,56,0.14);
  position: relative;
}
.intro-img img { width: 100%; display: block; }
.intro-accent {
  position: absolute;
  bottom: -20px; right: -20px;
  width: 160px; height: 160px;
  border: 3px solid var(--gold);
  border-radius: 4px;
  opacity: 0.35; z-index: -1;
}

/* ── BENEFITS GRID ── */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 28px;
  margin-top: 56px;
}
.benefit-card { grid-column: span 2; }
/* Row 2 (cards 4 & 5): centered, leaving balanced space either side */
.benefit-card:nth-child(4) { grid-column: 2 / span 2; }
.benefit-card:nth-child(5) { grid-column: 4 / span 2; }
/* Long Lifespan: double width, centered on its own bottom row */
.benefit-wide { grid-column: 3 / span 2; }
.benefit-card {
  padding: 36px 28px;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: var(--white);
  transition: all 0.3s;
}
.benefit-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(21,32,56,0.08);
}
.benefit-icon { font-size: 2rem; margin-bottom: 16px; }
.benefit-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  color: var(--navy);
  margin-bottom: 10px;
}
.benefit-card p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.8;
  font-weight: 300;
}

/* ── COMPARISON TABLE ── */
.compare-wrap {
  margin-top: 56px;
  overflow-x: auto;
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}
.compare-table th {
  background: var(--navy);
  color: var(--white);
  padding: 18px 24px;
  text-align: left;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.compare-table th:first-child { border-radius: 4px 0 0 0; }
.compare-table th:last-child  { border-radius: 0 4px 0 0; }
.compare-table th.highlight { background: var(--gold); color: var(--navy); }
.compare-table td {
  padding: 16px 24px;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  font-weight: 300;
  line-height: 1.6;
}
.compare-table td.highlight {
  background: rgba(184,151,90,0.06);
  font-weight: 500;
  color: var(--navy);
}
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr:hover td { background: var(--cream); }
.compare-table tr:hover td.highlight { background: rgba(184,151,90,0.12); }
.tick { color: #2ecc71; font-weight: 700; }
.cross { color: #e74c3c; font-weight: 700; }
.neutral { color: var(--text-light); }

/* ── NZ CONTEXT ── */
.nz-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
  margin-top: 48px;
}
.nz-card {
  flex: 1 1 280px;
  max-width: 340px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: var(--white);
  transition: border-color 0.3s;
}
.nz-card:hover { border-color: var(--gold); }
.nz-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  flex-shrink: 0;
  min-width: 40px;
}
.nz-card h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.nz-card p {
  font-size: 0.83rem;
  color: var(--text-light);
  line-height: 1.75;
  font-weight: 300;
}

@media (max-width: 900px) {
  .intro-split { grid-template-columns: 1fr; gap: 40px; }
  .intro-accent { display: none; }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .benefit-card,
  .benefit-card:nth-child(4),
  .benefit-card:nth-child(5) { grid-column: auto; }
  .benefit-wide { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
  .benefits-grid { grid-template-columns: 1fr; }
  .benefit-wide { grid-column: auto; }
}
