/* ================================================================
   ICHOR SHARED STYLES
   Applied to ichor.html and all piece pages.
   Includes: breathing room, savoir-faire section
   ================================================================ */


/* ================================================================
   CHANGE 2: BREATHING ROOM ON ICHOR PIECE PAGES
   Increases spacing ~50% between major sections
   ================================================================ */

/* Story section: increase padding */
.ichor-page .piece-story {
  padding: clamp(9rem, 20vw, 18rem) clamp(1.5rem, 5vw, 4rem);
}

/* Story grid: more gap between image and text */
.ichor-page .piece-story-grid {
  gap: clamp(4.5rem, 10vw, 12rem);
}

/* Story text: more space between paragraphs */
.ichor-page .piece-story-text p {
  margin-bottom: 3rem;
  line-height: 2.0;
}
.ichor-page .piece-story-text p:last-child {
  margin-bottom: 0;
}

/* Story label: push down more */
.ichor-page .piece-story-label {
  margin-bottom: 3.5rem;
}

/* Story image: add breathing room with padding */
.ichor-page .piece-story-image {
  margin-top: 1rem;
}

/* Construction section: increase padding */
.ichor-page .piece-construction {
  padding: clamp(6rem, 16vw, 14rem) clamp(1.5rem, 5vw, 4rem);
}

/* Construction header: more space below */
.ichor-page .piece-construction-header {
  margin-bottom: clamp(4.5rem, 10vw, 9rem);
}

/* Spec rows: more breathing room */
.ichor-page .spec-row {
  padding: 2rem 2rem;
}

/* CTA section: increase padding */
.ichor-page .piece-cta {
  padding: clamp(9rem, 20vw, 18rem) 2rem;
}

/* Gold flow dividers on piece pages: more margin */
.ichor-page .gold-flow {
  margin-top: 5rem;
  margin-bottom: 5rem;
}

/* Mobile adjustments */
@media (max-width: 900px) {
  .ichor-page .piece-story {
    padding: clamp(5rem, 12vw, 9rem) clamp(1.5rem, 5vw, 4rem);
  }
  .ichor-page .piece-story-grid {
    gap: 4rem;
  }
  .ichor-page .piece-construction {
    padding: clamp(4rem, 10vw, 8rem) clamp(1.5rem, 5vw, 4rem);
  }
  .ichor-page .piece-cta {
    padding: clamp(5rem, 12vw, 10rem) 2rem;
  }
}


/* ================================================================
   CHANGE 5: SAVOIR-FAIRE SECTION (ichor.html only)
   Craft story section between manifesto and piece cards
   ================================================================ */

.ichor-savoir-faire {
  position: relative;
  z-index: 1;
  padding: var(--space-32, 8rem) var(--space-8, 2rem);
  max-width: 1200px;
  margin: 0 auto;
}

.ichor-sf-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-align: center;
  background: linear-gradient(
    135deg,
    #2a1c00 0%, #6b4c12 8%, #b8942e 16%, #e8d06a 22%,
    #fffbe6 27%, #ffe680 32%, #c9a84c 38%, #8b6914 45%,
    #5c3d08 50%, #8b6914 55%, #c9a84c 62%, #ffe680 68%,
    #fffbe6 73%, #e8d06a 78%, #b8942e 84%, #6b4c12 92%,
    #2a1c00 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: clamp(4rem, 8vw, 7rem);
}

.ichor-sf-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(2.5rem, 4vw, 4rem);
}

.ichor-sf-block {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border: 1px solid rgba(201, 168, 76, 0.08);
  background: rgba(201, 168, 76, 0.015);
  position: relative;
}

/* Subtle gold corner accents */
.ichor-sf-block::before,
.ichor-sf-block::after {
  content: '';
  position: absolute;
  width: 12px;
  height: 12px;
  border-color: rgba(201, 168, 76, 0.2);
  border-style: solid;
  pointer-events: none;
}
.ichor-sf-block::before {
  top: -1px;
  left: -1px;
  border-width: 1px 0 0 1px;
}
.ichor-sf-block::after {
  bottom: -1px;
  right: -1px;
  border-width: 0 1px 1px 0;
}

.ichor-sf-label {
  font-family: 'Cinzel', serif;
  font-size: clamp(0.625rem, 0.8vw, 0.75rem);
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: linear-gradient(
    135deg,
    #2a1c00 0%, #6b4c12 8%, #b8942e 16%, #e8d06a 22%,
    #fffbe6 27%, #ffe680 32%, #c9a84c 38%, #8b6914 45%,
    #5c3d08 50%, #8b6914 55%, #c9a84c 62%, #ffe680 68%,
    #fffbe6 73%, #e8d06a 78%, #b8942e 84%, #6b4c12 92%,
    #2a1c00 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.3;
}

.ichor-sf-desc {
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(212, 207, 197, 0.75);
  letter-spacing: 0.01em;
}

/* Responsive: 2-col on tablet, 1-col on mobile */
@media (max-width: 1023px) {
  .ichor-sf-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 639px) {
  .ichor-sf-grid {
    grid-template-columns: 1fr;
  }
  .ichor-savoir-faire {
    padding: var(--space-16, 4rem) var(--space-4, 1rem);
  }
}
