*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", sans-serif;
  color: #111111;
  background-color: #ffffff;
  line-height: 1.7;
  font-weight: 300;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  padding: 1rem 2rem;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  transition: all 0.3s ease;
}
@media (min-width: 768px) {
  .header {
    padding: 1.5rem 4rem;
  }
}
.header__left {
  justify-self: start;
  display: flex;
  align-items: center;
}
.header__hamburger {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
}
.header__hamburger svg {
  width: 100%;
  height: 100%;
  stroke: #111111;
  stroke-width: 1.2;
  fill: none;
}
.header__hamburger:hover {
  opacity: 0.6;
}
@media (min-width: 1024px) {
  .header__hamburger {
    display: none;
  }
}
.header__nav {
  display: none;
}
@media (min-width: 1024px) {
  .header__nav {
    display: flex;
    gap: 2.5rem;
  }
}
.header__nav-link {
  font-family: "Inter", sans-serif;
  font-size: 0.8125rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #111111;
  transition: opacity 0.3s ease;
}
.header__nav-link:hover {
  opacity: 0.6;
}
.header__logo {
  justify-self: center;
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  letter-spacing: -0.02em;
  text-transform: lowercase;
  display: flex;
  justify-content: center;
  align-items: center;
}
.header__logo-img {
  height: 38px; /* Slightly larger for the delicate SVG */
  width: auto;
  object-fit: contain;
}
.header__right {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.header__icon {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
}
.header__icon svg {
  width: 100%;
  height: 100%;
  stroke: #111111;
  stroke-width: 1.2;
  fill: none;
}
.header__icon:hover {
  opacity: 0.6;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 200;
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  padding: 1.5rem 2rem;
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.mobile-menu--open {
  transform: translateX(0);
}
.mobile-menu__header {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 3rem;
}
.mobile-menu__close {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile-menu__close svg {
  width: 100%;
  height: 100%;
  stroke: #111111;
  stroke-width: 1.2;
  fill: none;
}
.mobile-menu__close:hover {
  opacity: 0.6;
}
.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: flex-start;
}
.mobile-menu__link {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  color: #111111;
  font-weight: 400;
  transition: opacity 0.3s ease;
}
.mobile-menu__link:hover {
  opacity: 0.6;
}

.hero {
  position: relative;
  min-height: calc(100vh - 80px);
  display: flex;
  flex-direction: column;
  background-color: #f9f8f6;
  overflow: hidden;
}
@media (min-width: 768px) {
  .hero {
    flex-direction: row;
    background-color: transparent;
  }
}
.hero__image-panel {
  position: relative;
  width: 100%;
  min-height: 60vh;
}
@media (min-width: 768px) {
  .hero__image-panel {
    position: absolute;
    top: 0;
    left: 0;
    width: 65%;
    height: 100%;
    z-index: 1;
  }
}
.hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__text-panel {
  position: relative;
  z-index: 2;
  background-color: #ffffff;
  padding: 2.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
@media (min-width: 768px) {
  .hero__text-panel {
    margin-left: auto;
    width: 50%;
    min-height: calc(100vh - 80px);
    padding: 3rem;
    background-color: #ffffff;
  }
}
@media (min-width: 1024px) {
  .hero__text-panel {
    padding: 0 8rem;
  }
}
.hero__subtitle {
  font-family: "Inter", sans-serif;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  color: #c4b5a2;
  margin-bottom: 2rem;
  font-weight: 500;
}
.hero__title {
  font-family: "Playfair Display", serif;
  color: #111111;
  font-size: 3.5rem;
  font-weight: 400;
  line-height: 1.05;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .hero__title {
    font-size: 4rem;
  }
}
@media (min-width: 1024px) {
  .hero__title {
    font-size: 5.5rem;
  }
}
.hero__button {
  display: inline-block;
  color: #111111;
  border: 1px solid rgba(17, 17, 17, 0.15);
  padding: 1.25rem 2.5rem;
  font-family: "Inter", sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.hero__button:hover {
  background-color: #111111;
  color: #ffffff;
  border-color: #111111;
}

.ethos {
  padding: 3rem 1.5rem;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .ethos {
    padding: 8rem 3rem;
  }
}
.ethos {
  padding-bottom: 0;
}
.ethos__title {
  font-family: "Playfair Display", serif;
  font-size: 2.25rem;
  font-weight: 400;
  margin-bottom: 0.75rem;
}
@media (min-width: 768px) {
  .ethos__title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
  }
}
.ethos__text {
  font-family: "Inter", sans-serif;
  font-size: 1.125rem;
  font-weight: 300;
  color: #888888;
  line-height: 2;
}
@media (min-width: 768px) {
  .ethos__text {
    font-size: 1.25rem;
  }
}

.collection {
  padding: 4rem 1.5rem;
}
@media (min-width: 768px) {
  .collection {
    padding: 8rem 4rem;
  }
}
.collection__header, .collection__grid {
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}
.collection__header {
  text-align: center;
  margin-bottom: 4rem;
}
@media (min-width: 768px) {
  .collection__header {
    margin-bottom: 6rem;
  }
}
.collection__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 768px) {
  .collection__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
}
@media (min-width: 1024px) {
  .collection__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 4.5rem;
  }
}
.collection--alt {
  background-color: #f9f8f6;
}
.collection--summer {
  background-color: #f9f8f6;
}

.next-gen {
  padding: 4rem 1.5rem;
  background-color: #ffffff;
}
@media (min-width: 768px) {
  .next-gen {
    padding: 8rem 4rem;
    display: flex;
    align-items: center;
    gap: 6rem;
    max-width: 1400px;
    margin: 0 auto;
  }
}
.next-gen__content {
  margin-bottom: 3rem;
  text-align: center;
}
@media (min-width: 768px) {
  .next-gen__content {
    flex: 1;
    text-align: left;
    margin-bottom: 0;
  }
}
.next-gen__button {
  color: #111111;
  border-color: #111111;
  margin-top: 1.5rem;
}
.next-gen__button:hover {
  background-color: #111111;
  color: #ffffff;
}
.next-gen__grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .next-gen__grid {
    flex: 2;
    flex-direction: row;
  }
}
.next-gen__image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  background-color: #ebebeb;
  min-width: 0;
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .next-gen__image {
    height: 600px;
    flex: 1;
  }
}
@media (min-width: 768px) {
  .next-gen__image--wide {
    flex: 1.5;
  }
}

.product-card {
  display: flex;
  flex-direction: column;
}
.product-card__link {
  display: block;
  width: 100%;
}
.product-card__image-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 133.33%;
  overflow: hidden;
  background-color: #ebebeb;
  margin-bottom: 1.25rem;
}
.product-card__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.8s ease;
}
.product-card:hover .product-card__image {
  transform: scale(1.03);
  opacity: 0.9;
}
.product-card__info {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.product-card__title {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
  letter-spacing: 0.05em;
}
.product-card__price {
  font-family: "Inter", sans-serif;
  font-size: 0.9375rem;
  font-weight: 300;
  color: #888888;
  letter-spacing: 0.05em;
}

.lookbook {
  padding: 4rem 1.5rem;
  background-color: #f9f8f6;
}
@media (min-width: 768px) {
  .lookbook {
    padding: 8rem 4rem;
  }
}
.lookbook__header, .lookbook__grid {
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}
.lookbook__header {
  text-align: center;
  margin-bottom: 3rem;
}
.lookbook__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media (min-width: 768px) {
  .lookbook__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
}
@media (min-width: 1024px) {
  .lookbook__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 3.5rem;
  }
}
.lookbook__item {
  position: relative;
  display: block;
  overflow: hidden;
  padding-bottom: 120%;
  background-color: #ebebeb;
}
.lookbook__item:hover .lookbook__image {
  transform: scale(1.03);
}
.lookbook__item:hover .lookbook__overlay {
  background-color: rgba(17, 17, 17, 0.4);
}
.lookbook__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.lookbook__overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(17, 17, 17, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.4s ease;
}
.lookbook__title {
  color: #ffffff;
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  font-weight: 400;
  text-align: center;
}

.fabric {
  display: flex;
  flex-direction: column;
  background-color: #111111;
  color: #ffffff;
}
@media (min-width: 768px) {
  .fabric {
    flex-direction: row;
    align-items: stretch;
  }
}
.fabric__content {
  flex: 1;
  padding: 4rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
@media (min-width: 768px) {
  .fabric__content {
    padding: 8rem 12%;
  }
}
.fabric__title {
  font-family: "Playfair Display", serif;
  font-size: 2.25rem;
  font-weight: 400;
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .fabric__title {
    font-size: 3.5rem;
  }
}
.fabric__text {
  font-family: "Inter", sans-serif;
  font-size: 1.125rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}
@media (min-width: 768px) {
  .fabric__text {
    font-size: 1.25rem;
  }
}
.fabric__button:hover {
  background-color: #ffffff;
  color: #111111;
}
.fabric__image-wrapper {
  flex: 1;
  position: relative;
  min-height: 400px;
  background-color: #888888;
}
.fabric__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.footer {
  background-color: #111111;
  color: #ffffff;
  padding: 4rem 1.5rem 2rem;
}
@media (min-width: 768px) {
  .footer {
    padding: 6rem 4rem 3rem;
  }
}
.footer__content {
  max-width: 1400px;
  margin: 0 auto;
}
.footer__top {
  display: flex;
  flex-direction: column;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  padding-bottom: 5rem;
  margin-bottom: 4rem;
}
@media (min-width: 768px) {
  .footer__top {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
  }
}
.footer__newsletter {
  width: 100%;
  max-width: 400px;
  margin-bottom: 3rem;
  text-align: center;
}
@media (min-width: 768px) {
  .footer__newsletter {
    text-align: left;
    margin-bottom: 0;
  }
}
.footer__title {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 1.5rem;
}
.footer__form {
  display: flex;
  border-bottom: 1px solid #ffffff;
  padding-bottom: 0.5rem;
}
.footer__input {
  flex: 1;
  background: transparent;
  border: none;
  color: #ffffff;
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
  font-weight: 300;
  outline: none;
}
.footer__input::placeholder {
  color: #888888;
}
.footer__submit {
  color: #ffffff;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding-left: 1rem;
  transition: color 0.3s ease;
}
.footer__submit:hover {
  color: #888888;
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  text-align: center;
}
@media (min-width: 768px) {
  .footer__links {
    flex-direction: row;
    gap: 3rem;
    text-align: left;
  }
}
.footer__link {
  font-size: 0.875rem;
  font-weight: 300;
  color: #ebebeb;
  transition: color 0.3s ease;
}
.footer__link:hover {
  color: #ffffff;
}
.footer__bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}
.footer__copyright {
  font-size: 0.75rem;
  font-weight: 300;
  color: #888888;
}
.footer__socials {
  display: flex;
  gap: 1.25rem;
}
.footer__social-link {
  width: 20px;
  height: 20px;
  display: block;
}
.footer__social-link svg {
  width: 100%;
  height: 100%;
  fill: #888888;
  transition: fill 0.3s ease;
}
.footer__social-link:hover svg {
  fill: #ffffff;
}

/*# sourceMappingURL=style.css.map */
