.garden-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: clamp(24px, 4vh, 48px) clamp(24px, 5vw, 80px);
}

.back-link {
  font-size: 14px;
  letter-spacing: 1.5px;
  text-decoration: none;
  color: #001122;
  opacity: 0.6;
}

.back-link:hover {
  opacity: 1;
}

.garden-brand {
  font-size: 20px;
  letter-spacing: 3px;
}

.garden-page {
  width: min(900px, calc(100% - 48px));
  margin: 0 auto;
  padding-bottom: 120px;
}

.garden-title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 400;
  letter-spacing: 3px;
  margin: 0 0 clamp(40px, 6vh, 72px);
}

.garden-section {
  margin-bottom: clamp(32px, 5vh, 56px);
}

.adnan-quote {
  font-size: 14px;
  letter-spacing: 1.5px;
  color: rgba(0, 17, 34, 0.5);
  margin: 0 0 24px;
  font-style: italic;
}

.garden-subtitle {
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 400;
  letter-spacing: 2px;
  margin: 0 0 32px;
  text-transform: lowercase;
}

/* ── Palette ── */

.palette-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  gap: 12px;
  margin-bottom: 48px;
}

.swatch {
  aspect-ratio: 1;
  border-radius: 12px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 8px;
  transition: transform 0.2s;
}

.swatch:hover {
  transform: scale(1.05);
}

.swatch span {
  font-size: 9px;
  letter-spacing: 0.3px;
  text-align: center;
  opacity: 0;
  transition: opacity 0.2s;
  line-height: 1.4;
  text-shadow: 0 1px 3px rgba(0,0,0,0.5);
  color: #fff;
}

.swatch-light span {
  text-shadow: none;
  color: #292929;
}

.swatch:hover span {
  opacity: 1;
}

/* ── Figures ── */

.color-figure,
.shapes-figure {
  margin: 0;
}

.color-figure img,
.shapes-figure img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

@media (max-width: 600px) {
  .palette-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
