/* ── Sculptural collection page ── */

/* ── WHITE HEADER (inner pages — before scroll) ── */
.inner-page .site-header:not(.is-scrolled) {
  color: #f5f2ed;
}

.inner-page .site-header:not(.is-scrolled) .brand-mark img {
  filter: brightness(0) invert(1);
}

.inner-page .site-header:not(.is-scrolled) .menu-toggle span {
  background: #f5f2ed;
}

.inner-page .site-header:not(.is-scrolled) .nav-dropdown__menu {
  color: var(--text-color);
}

/* ── HERO ── */
.sc-hero {
  position: relative;
  min-height: 100svh;
  background: #111a18;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.sc-hero__media {
  position: absolute;
  inset: 0;
}

.sc-hero__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
}

/* Deep teal-tinged gradient from bottom */
.sc-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 55%;
  background: linear-gradient(
    to top,
    rgba(10, 18, 16, 0.84) 0%,
    rgba(10, 18, 16, 0.34) 55%,
    transparent 100%
  );
  pointer-events: none;
}

.sc-hero__caption {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 var(--side-padding) clamp(2.5rem, 5vw, 4.5rem);
  text-align: center;
  color: #f0ede8;
}

.sc-eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  opacity: 0.6;
}

.sc-eyebrow--light {
  color: #9aada8;
  opacity: 1;
}

.sc-hero__title {
  margin: 0;
  font-size: clamp(2.4rem, 6vw, 5.2rem);
  font-weight: 400;
  letter-spacing: 0.12em;
  line-height: 1.08;
}

/* ── INTRO ── */
.sc-intro {
  padding-bottom: 4.5rem;
}

.sc-intro .collection-intro__copy p + p {
  margin-top: 1.1rem;
}

/* Thin teal rule above intro text */
.sc-intro .collection-intro__copy::before {
  content: "";
  display: block;
  width: 2.4rem;
  height: 1px;
  background: #2d5c50;
  margin: 0 auto 2rem;
  opacity: 0.45;
}

/* ── EDITORIAL SPLIT — images 5 & 6 ── */
.sc-editorial {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  align-items: stretch;
  min-height: min(92vh, 74rem);
  background: #e8e3db;
  overflow: hidden;
}

.sc-editorial__item {
  margin: 0;
  overflow: hidden;
}

.sc-editorial__item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.sc-editorial__item--left img  { object-position: center center; }
.sc-editorial__item--right img { object-position: center top; }

.sc-editorial__divider {
  background: rgba(23, 23, 23, 0.10);
  align-self: stretch;
}

/* ── GALLERY ROW 2 — 3 columns ── */
.sc-row2 {
  padding-top: 0;
}

.sc-gallery-three {
  width: var(--content-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.9rem;
  padding: 5.5rem 0;
}

.sc-gallery-three__item {
  margin: 0;
  overflow: hidden;
  background: #ece9e2;
}

.sc-gallery-three__item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  aspect-ratio: 0.75;
}

/* ── IN THE ATELIER — BTS section ── */
.sc-atelier {
  background: #111a18;
  padding: 6rem 0 7rem;
}

.sc-atelier__header {
  width: var(--content-width);
  margin: 0 auto 4rem;
  text-align: center;
  color: #e8e3db;
}

.sc-atelier__heading {
  margin: 0.5rem 0 1.25rem;
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.15;
}

.sc-atelier__text {
  margin: 0 auto;
  max-width: 34rem;
  font-size: 0.82rem;
  line-height: 1.75;
  letter-spacing: 0.04em;
  opacity: 0.58;
}

.sc-atelier__grid {
  width: var(--content-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.sc-atelier__item {
  margin: 0;
  overflow: hidden;
  background: #1c2a27;
}

.sc-atelier__item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  aspect-ratio: 0.82;
  transition: transform 400ms ease;
}

.sc-atelier__item:hover img {
  transform: scale(1.025);
}

/* ── Responsive ── */
@media (max-width: 820px) {
  .sc-editorial {
    grid-template-columns: 1fr;
    grid-template-rows: auto 1px auto;
    min-height: unset;
  }

  .sc-editorial__item img {
    aspect-ratio: 0.8;
    height: auto;
  }

  .sc-editorial__divider {
    height: 1px;
    background: rgba(23, 23, 23, 0.08);
  }

  .sc-gallery-three {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.3rem;
    padding: 4rem 0;
  }

  .sc-atelier {
    padding: 4.5rem 0 5.5rem;
  }

  .sc-atelier__header {
    margin-bottom: 3rem;
  }
}

@media (max-width: 540px) {
  .sc-hero__title {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .sc-gallery-three {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .sc-atelier__grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .sc-atelier__item img {
    aspect-ratio: 0.85;
  }
}
