.sbc {
  background: #FDF6EE;
  padding: 96px 0 64px;
  position: relative;
}

.sbc__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

@media (min-width: 900px) {
  .sbc__inner { padding: 0 48px; }
}

.sbc__header {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 0 0 48px;
}

@media (min-width: 900px) {
  .sbc__header {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: 32px;
  }
}

.sbc__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  font-family: 'Manrope', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #6B655F;
}

.sbc__eyebrow-divider {
  display: inline-block;
  width: 28px;
  height: 1px;
  background: #2A1F1A;
  opacity: 0.4;
}

.sbc__heading {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: clamp(32px, 4.5vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #2A1F1A;
  margin: 0;
  max-width: 600px;
}

/* Clean equal grid — every tile has the SAME shape. 2 cols mobile, 4 cols desktop. */
.sbc__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

@media (min-width: 750px) {
  .sbc__grid { gap: 18px; }
}

@media (min-width: 1000px) {
  .sbc__grid { grid-template-columns: repeat(4, 1fr); gap: 22px; }
}

/* Tile is the canvas. Aspect-ratio on the TILE (not the image) so image always fills. */
.sbc__tile {
  position: relative;
  display: block;
  text-decoration: none;
  color: inherit;
  background: #2A1F1A;
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.4s ease;
}

.sbc__tile:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 36px -16px rgba(42, 31, 26, 0.25);
}

/* Image fills the ENTIRE tile — no cream strip below */
.sbc__tile-image {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #2A1F1A;
}

.sbc__tile-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.sbc__tile:hover .sbc__tile-image img {
  transform: scale(1.06);
}

/* Strong bottom-up gradient so text always has dark backing */
.sbc__tile-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(42, 31, 26, 0) 35%, rgba(42, 31, 26, 0.55) 65%, rgba(42, 31, 26, 0.88) 100%);
  pointer-events: none;
  z-index: 1;
}

.sbc__tile-text {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 18px;
  z-index: 2;
  color: #FFFFFF;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.sbc__tile-kicker {
  font-family: 'Manrope', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #FFE5D0;
  opacity: 0.95;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.55);
}

.sbc__tile-label {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: #FFFFFF;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
}

.sbc__tile-label em { font-style: italic; }

.sbc__tile-arrow {
  position: absolute;
  right: 16px;
  bottom: 20px;
  z-index: 2;
  color: #FFFFFF;
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  background: rgba(42, 31, 26, 0.18);
  backdrop-filter: blur(2px);
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
}

.sbc__tile:hover .sbc__tile-arrow {
  background: #FFFFFF;
  color: #C63A22;
  transform: translateX(4px);
  border-color: #FFFFFF;
}

@media (min-width: 750px) {
  .sbc__tile-arrow { display: inline-flex; }
}
