@font-face {
  font-family: "BBB-Herthey-Futural";
  src: url("BBB-Herthey-Futural-40.woff") format("woff");
}

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

body {
  font-family: "BBB-Herthey-Futural", Helvetica;
  background-color: #ffffff;
}

.frame {
  width: 100%;
  padding: 50px 20px;
  position: relative;
}

.nav-item a {
  text-decoration: none;
  color: inherit;
}

.header {
  display: flex;
  justify-content: flex-end;
  gap: 40px;
  font-size: 20px;
  color: #a1b7ff;
  margin-bottom: 40px;
}

.header .nav-item {
  cursor: pointer;
  transition: color 0.3s ease;
}

.header .nav-item:hover {
  color: #a1b7ff;
}

.monogramme-container {
  position: absolute;
  top: 20px;
  left: 20px;
}

.monogramme {
  width: 70px;
  display: block;
}

.monogramme img {
  width: 100%;
  display: block;
}

/* =========================
   GRID
========================= */
.container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 300px;
  gap: 20px;
}

.item {
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.item2 img {
  object-position: center top;
}

/* ── MOBILE (max 768px) ── */
@media screen and (max-width: 768px) {
  .frame {
    padding: 70px 14px 30px 14px;
  }

  .header {
    font-size: 14px;
    gap: 20px;
    margin-right: 10px;
    margin-bottom: 50px;
    margin-top: -35px
  }

  .monogramme {
    width: 40px;
    margin-top: 0;
    margin-right: 0;
  }

  .container {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    gap: 14px;
  }

  .item {
    width: 100%;
  }

  .item img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }
}