:root {
  --ink: #0b0b0b;
  --paper: #eeeeee;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-width: 1024px;
  min-height: 100%;
  margin: 0;
}

body {
  overflow: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: Futura, "Futura PT", "Century Gothic", Avenir, sans-serif;
}

.coming-soon {
  display: flex;
  width: 100vw;
  height: 100vh;
  min-height: 620px;
  overflow: hidden;
  background: linear-gradient(to bottom, #ffffff 0%, #eeeeee 100%);
}

.column {
  flex: 1 1 0;
  min-width: 0;
  height: 100%;
}

.column-product {
  display: flex;
  align-items: center;
}

.column-content {
  align-self: center;
}

.column-portrait {
  padding-top: 8.1vh;
  padding-right: 4vw;
}

.product-image {
  display: block;
  width: 96%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.portrait-image {
  display: block;
  width: 100%;
  height: 83.5vh;
  object-fit: cover;
  object-position: center center;
}

.intro {
    width: 42%;
    margin: 0 auto;
    display: flex;
    height: 100%;
    margin-top: -25%;
    flex-direction: column;
    text-transform: uppercase;
    justify-content: center;
}
.brand {
  margin: 0 0 0.55rem;
  line-height: 0;
}

.brand img {
  display: block;
  width: 14vw;
  height: auto;
  margin-bottom: -25px;
  mix-blend-mode: multiply;
  transform: translateX(-12%);
}

.status,
.claim {
  margin: 0;
  font-size: clamp(0.68rem, 0.84vw, 1.28rem);
  line-height: 1.04;
  letter-spacing: 0.025em;
}

.status {
  margin-bottom: 2.15rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.claim {
  font-weight: 500;
}

@media (max-aspect-ratio: 4 / 3) {
 

  .product-image {
    width: 100%;
  }

  .column-portrait {
    padding-right: 4vw;
  }
}

@media (max-width: 767px) {
  html,
  body {
    min-width: 0;
    height: auto;
  }

  body {
    overflow: auto;
  }

  .coming-soon {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: auto;
    min-height: 100vh;
    padding: 0 2.5vw 18vw;
    overflow: visible;
  }

  .column,
  .intro {
    display: contents;
  }

  .brand {
    order: 1;
    align-self: center;
    width: 54vw;
    margin: 3.5vw 0 0;
  }

  .brand img {
    width: 100%;
    margin: 0;
    transform: none;
    margin-bottom:-10px;
  }

  .status {
    order: 2;
    align-self: center;
    margin: -1vw 0 5.8vw;
    font-size: clamp(0.72rem, 3vw, 1rem);
    line-height: 1;
    text-align: center;
  }

  .portrait-image {
    order: 3;
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  .claim {
    order: 4;
    align-self: center;
    margin: 15vw 0 0;
    font-size: clamp(0.72rem, 3vw, 1rem);
    line-height: 1.05;
  }

  .product-image {
    order: 5;
    width: 100%;
    height: auto;
    margin-top: 15vw;
    object-fit: contain;
  }
}
