/* —— Hero —— */
.hero {
  position: relative;
  min-height: calc(100svh - var(--nav-height));
  overflow: hidden;
  background: var(--color-cream);
}

.hero__picture,
.hero__picture img {
  width: 100%;
  height: 100%;
  min-height: calc(100svh - var(--nav-height));
}

.hero__picture img {
  object-fit: cover;
  object-position: right center; /* mobile: subject on the right */
}

@media (min-width: 768px) {
  .hero__picture img {
    object-position: center center; /* keep both figures + the gap between them */
  }
}

.hero__overlay {
  display: none;
}

/*
  Mobile: open field is the left half — dark type, no panel, clear of the right-side figure.
*/
.hero__content {
  position: absolute;
  left: 1.25rem;
  right: auto;
  top: 18%;
  bottom: auto;
  z-index: 2;
  width: min(72%, 18.5rem);
  max-width: 18.5rem;
  padding: 0;
  color: var(--color-off-black);
  background: none;
}

/*
  Desktop: park copy in the vertical gap between the seated model (left)
  and the standing figure (far right) — no box, dark type on the light ground.
*/
@media (min-width: 768px) {
  .hero__content {
    left: 38%;
    right: auto;
    top: 14%;
    width: min(34vw, 26rem);
    max-width: 26rem;
  }
}

@media (min-width: 1100px) {
  .hero__content {
    left: 40%;
    width: min(30vw, 28rem);
    max-width: 28rem;
  }
}

.hero__title {
  font-family: var(--font-serif);
  font-weight: 900;
  font-size: clamp(2.35rem, 9.5vw, 6.25rem);
  line-height: 0.88;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  max-width: 12ch;
  margin-left: 0;
  color: var(--color-off-black);
}

@media (min-width: 768px) {
  .hero__title {
    font-size: clamp(2.85rem, 5.8vw, 5.75rem);
  }
}

.hero__sub {
  margin-top: var(--space-lg);
  max-width: 20rem;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--color-warm-gray);
}

.hero__cta {
  margin-top: var(--space-xl);
}

/* —— Statement —— */
.statement {
  text-align: center;
  padding-block: var(--space-5xl);
  background: var(--color-cream);
}

.statement__line {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 4.5vw, 3.25rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  max-width: 18ch;
  margin-inline: auto;
  color: var(--color-off-black);
}

.statement__line .is-light {
  font-weight: 300;
  display: block;
}

.statement__line .is-bold {
  font-weight: 700;
  display: block;
  margin-top: 0.15em;
}

.statement__link {
  display: inline-block;
  margin-top: var(--space-2xl);
}

/* —— Featured —— */
.featured {
  padding-block: var(--space-3xl) var(--space-5xl);
}

.featured__header {
  display: grid;
  gap: var(--space-sm);
  margin-bottom: var(--space-3xl);
  max-width: 28rem;
}

.featured__title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  text-transform: uppercase;
  letter-spacing: -0.03em;
  font-weight: 700;
}

.featured__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg) var(--space-md);
  align-items: start;
}

@media (min-width: 768px) {
  .featured__grid {
    grid-template-columns: repeat(12, 1fr);
    gap: var(--space-2xl) var(--space-lg);
  }

  .featured__grid .product-card:nth-child(1) {
    grid-column: 1 / span 7;
  }

  .featured__grid .product-card:nth-child(2) {
    grid-column: 8 / span 5;
    margin-top: var(--space-3xl);
  }

  .featured__grid .product-card:nth-child(3) {
    grid-column: 1 / span 4;
  }

  .featured__grid .product-card:nth-child(4) {
    grid-column: 5 / span 4;
    margin-top: var(--space-2xl);
  }

  .featured__grid .product-card:nth-child(5) {
    grid-column: 9 / span 4;
  }

  .featured__grid .product-card:nth-child(6) {
    grid-column: 3 / span 7;
    margin-top: calc(var(--space-xl) * -1);
  }

  .featured__grid .product-card:nth-child(1) .product-card__media,
  .featured__grid .product-card:nth-child(6) .product-card__media {
    aspect-ratio: 5 / 4;
  }

  .featured__grid .product-card:nth-child(1) .product-card__name,
  .featured__grid .product-card:nth-child(6) .product-card__name {
    font-size: 1.65rem;
  }
}

@media (max-width: 767px) {
  .featured__grid .product-card:nth-child(1),
  .featured__grid .product-card:nth-child(6) {
    grid-column: 1 / -1;
  }

  .featured__grid .product-card:nth-child(2) {
    margin-top: var(--space-xl);
  }
}

/* —— Lifestyle quote —— */
.lifestyle-quote {
  position: relative;
  min-height: min(85vh, 52rem);
  overflow: hidden;
  background: var(--color-off-black);
}

.lifestyle-quote img {
  width: 100%;
  height: 100%;
  min-height: min(85vh, 52rem);
  object-fit: cover;
  object-position: center top;
}

.lifestyle-quote__text {
  position: absolute;
  top: 8%;
  right: 5%;
  z-index: 2;
  width: min(90%, 22rem);
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(1.35rem, 3.2vw, 2.15rem);
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--color-off-black);
  text-align: right;
}

@media (min-width: 768px) {
  .lifestyle-quote__text {
    top: 10%;
    right: 8%;
    width: min(38%, 26rem);
  }
}

/* —— Craft values —— */
.craft {
  padding-block: var(--space-5xl);
}

.craft__header {
  margin-bottom: var(--space-2xl);
}

.craft__grid {
  display: grid;
  gap: var(--space-2xl);
  grid-template-columns: 1fr;
  border-top: 1px solid color-mix(in srgb, var(--color-warm-gray) 30%, transparent);
  padding-top: var(--space-2xl);
}

@media (min-width: 700px) {
  .craft__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-3xl) var(--space-2xl);
  }
}

@media (min-width: 1000px) {
  .craft__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
  }
}

.craft__item h3 {
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: var(--space-md);
  line-height: 1.3;
}

.craft__item p {
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--color-warm-gray);
  max-width: 18rem;
}

/* —— Dual lifestyle —— */
.dual-lifestyle {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.35rem;
  background: var(--color-cream);
}

@media (min-width: 700px) {
  .dual-lifestyle {
    grid-template-columns: 1.5fr 1fr;
  }
}

.dual-lifestyle__frame {
  overflow: hidden;
  min-height: 22rem;
}

@media (min-width: 700px) {
  .dual-lifestyle__frame {
    min-height: 36rem;
  }

  .dual-lifestyle__frame--wide {
    min-height: 42rem;
  }
}

.dual-lifestyle__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--ease-out);
}

.dual-lifestyle__frame:hover img {
  transform: scale(1.03);
}

/* —— Newsletter —— */
.newsletter {
  background: var(--color-off-black);
  color: var(--color-cream);
  padding-block: var(--space-4xl);
}

.newsletter__inner {
  max-width: 36rem;
}

.newsletter__title {
  font-size: clamp(2rem, 5vw, 3.25rem);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.newsletter__sub {
  margin-top: var(--space-md);
  font-size: 0.9375rem;
  color: color-mix(in srgb, var(--color-cream) 70%, transparent);
  max-width: 26rem;
}
