/* ===== Lookbook Left — Top-left image + Bottom-right overlapping text box ===== */

.lookbook-left-section {
  width: 100%;
  background-color: rgb(var(--color-background));
}

.lookbook-left__container {
  position: relative;
  max-width: var(--page-width, 1200px);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

/* Top-left image: 1:1, scales with container */
.lookbook-left__image {
  align-self: flex-start;
  width: calc(50% + 20px);
  max-width: 100%;
  aspect-ratio: 1 / 1;
  position: relative;
  overflow: hidden;
  background-color: rgba(var(--color-foreground), 0.05);
}

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

.lookbook-left__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(var(--color-foreground), 0.3);
}

/* Bottom-right text box: 1:1, in normal flow, overlaps image, offset 1/3 of image height */
.lookbook-left__text {
  position: relative;
  z-index: 2;
  width: calc(50% + 20px);
  max-width: 100%;
  aspect-ratio: 1 / 1;
  margin-top: calc((50% + 20px) * -2 / 3);
  background-color: #ffffff;
  border: 1px solid #cdc4bb;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
}

.lookbook-left__text-inner {
  text-align: center;
  width: 100%;
  max-width: 360px;
}

.lookbook-left__subtitle {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: #332C30;
  margin-bottom: 14px;
  line-height: 1;
}

.lookbook-left__title {
  font-family: "Cormorant Garamond", "Playfair Display", Georgia, "Times New Roman", serif;
  font-style: italic;
  font-weight: 400;
  font-size: 36px;
  letter-spacing: 0.01em;
  color: #332C30;
  margin: 0 0 0 0;
  line-height: 1.2;
}

/* Button: white bg, 1.5px black border, vertical line directly above */
.lookbook-left__button {
  position: relative;
  display: inline-block;
  padding: 16px 36px;
  margin-top: 38px;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  color: #000000;
  background-color: #ffffff;
  border: 1.5px solid #000000;
  outline: none;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.lookbook-left__button::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 28px;
  background-color: #000000;
}

.lookbook-left__button::after {
  content: none;
  box-shadow: none;
}

.lookbook-left__button:hover {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  text-decoration: none !important;
  outline: none !important;
}

/* ===== Mobile ===== */
@media (max-width: 959px) {
  .lookbook-left__container {
    padding: 0 16px;
  }

  .lookbook-left__image {
    width: 100%;
    max-width: 100%;
  }

  .lookbook-left__text {
    width: 100%;
    max-width: 100%;
    margin-top: 0;
    aspect-ratio: auto;
    min-height: 280px;
  }

  .lookbook-left__title {
    font-size: 28px;
  }
}
