/* ============================================================
   PAGE-SPECIFIC OVERRIDES — Backyard Playground
   ============================================================ */

/* ================================================================
   HOME PAGE
   ================================================================ */

/* Stats row */
.home-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  background: var(--color-charcoal);
}

.home-stat {
  flex: 1 1 160px;
  padding: var(--space-8) var(--space-6);
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.home-stat:last-child {
  border-right: none;
}

.home-stat__number {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  color: var(--color-brass);
  line-height: 1;
  font-weight: var(--weight-regular);
  display: block;
  margin-bottom: var(--space-2);
}

.home-stat__label {
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  font-weight: var(--weight-medium);
}

/* CTA Banner */
.cta-banner {
  background: linear-gradient(135deg, var(--color-brass-dark) 0%, var(--color-brass) 60%, var(--color-brass-light) 100%);
  padding-block: var(--space-16);
  text-align: center;
}

.cta-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(var(--text-2xl), 4vw, var(--text-4xl));
  color: var(--color-white);
  margin-bottom: var(--space-5);
}

.cta-banner p {
  font-size: var(--text-md);
  color: rgba(255,255,255,0.80);
  max-width: 48ch;
  margin-inline: auto;
  margin-bottom: var(--space-8);
  line-height: var(--leading-relaxed);
  max-width: 48ch;
}

/* ================================================================
   CRAFT PAGE
   ================================================================ */

/* Construction split with image */
.craft-construction {
  display: grid;
  gap: var(--space-12);
}

@media (min-width: 900px) {
  .craft-construction {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}

.craft-construction__img {
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-sand);
}

.craft-construction__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.craft-features-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: var(--space-3);
  margin-top: var(--space-6);
}

.craft-feature-tag {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-4);
  background: var(--color-white);
  border: var(--border);
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  color: var(--color-charcoal);
  font-weight: var(--weight-medium);
}

.craft-feature-tag svg {
  width: 16px;
  height: 16px;
  color: var(--color-brass);
  flex-shrink: 0;
}

/* ================================================================
   GALLERY PAGE
   ================================================================ */

.page-title-bar {
  background: var(--color-charcoal);
  padding-block: var(--space-10);
  padding-top: calc(80px + var(--space-10));
  text-align: center;
}

.page-title-bar h1 {
  color: var(--color-white);
  font-size: clamp(var(--text-2xl), 4vw, var(--text-3xl));
}

.gallery-page-hero {
  background: var(--color-charcoal);
  padding-block: var(--space-32) var(--space-16);
  text-align: center;
}

.gallery-page-hero h1 {
  color: var(--color-white);
  font-size: clamp(var(--text-3xl), 5vw, var(--text-4xl));
  margin-bottom: var(--space-5);
}

.gallery-page-hero p {
  font-size: var(--text-md);
  color: rgba(255,255,255,0.65);
  max-width: 48ch;
  margin-inline: auto;
  line-height: var(--leading-relaxed);
}

/* ================================================================
   CONTACT PAGE
   ================================================================ */

.contact-page-header {
  background: var(--color-charcoal);
  padding-block: var(--space-32) var(--space-16);
}

.contact-page-header h1 {
  color: var(--color-white);
  font-size: clamp(var(--text-3xl), 5vw, var(--text-4xl));
  margin-bottom: var(--space-5);
}

.contact-page-header p {
  font-size: var(--text-md);
  color: rgba(255,255,255,0.65);
  max-width: 48ch;
  line-height: var(--leading-relaxed);
}
