:root {
  --red: #e01728;
  --red-deep: #c90f1f;
  --ink: #151313;
  --paper: #fff5ea;
  --white: #fffdf9;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--paper);
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(rgba(224, 23, 40, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(224, 23, 40, 0.035) 1px, transparent 1px),
    var(--paper);
  background-size: 24px 24px;
  font-family: "Helvetica Neue", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
}

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

.coming-soon {
  position: relative;
  display: flex;
  min-height: 100svh;
  flex-direction: column;
  overflow: hidden;
  padding: 28px clamp(24px, 5vw, 76px) 24px;
}

.coming-soon::before {
  position: absolute;
  z-index: 0;
  top: 0;
  right: clamp(48px, 11vw, 160px);
  width: 1px;
  height: 100%;
  background: rgba(224, 23, 40, 0.18);
  content: "";
}

.site-header,
.site-footer,
.hero {
  position: relative;
  z-index: 1;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand-logo {
  display: block;
  width: clamp(138px, 12.5vw, 172px);
  height: auto;
}

.hero {
  display: grid;
  flex: 1;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  align-items: center;
  gap: clamp(30px, 6vw, 96px);
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: clamp(52px, 8vh, 92px) 0 clamp(38px, 6vh, 68px);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 22px;
  color: var(--red);
  font-size: clamp(10px, 0.9vw, 13px);
  font-weight: 800;
  letter-spacing: 0.24em;
}

.eyebrow::before {
  width: 44px;
  height: 3px;
  background: var(--red);
  content: "";
}

h1 {
  margin: 0;
  font-size: clamp(54px, 7.2vw, 108px);
  font-weight: 900;
  letter-spacing: -0.07em;
  line-height: 0.98;
}

h1 span {
  display: block;
}

h1 span:last-child {
  margin-top: 0.12em;
  color: var(--red);
}

.lead {
  margin: clamp(30px, 5vh, 52px) 0 0;
  font-size: clamp(14px, 1.25vw, 18px);
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 2;
}

.launch-ticket {
  position: relative;
  display: flex;
  width: min(100%, 370px);
  min-height: 74px;
  margin: 32px 0 0 4px;
  overflow: hidden;
  border: 1px solid var(--ink);
  background: var(--white);
  box-shadow: 8px 9px 0 rgba(224, 23, 40, 0.14);
  transform: rotate(-1.5deg);
}

.launch-ticket::before,
.launch-ticket::after {
  position: absolute;
  z-index: 2;
  left: 68%;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--paper);
  content: "";
  transform: translateX(-50%);
}

.launch-ticket::before {
  top: -8px;
  border-bottom: 1px solid var(--ink);
}

.launch-ticket::after {
  bottom: -8px;
  border-top: 1px solid var(--ink);
}

.launch-ticket__act,
.launch-ticket__time {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 12px 16px;
}

.launch-ticket__act {
  width: 68%;
  border-right: 1px dashed rgba(21, 19, 19, 0.38);
}

.launch-ticket__time {
  width: 32%;
  color: var(--white);
  background: var(--red);
  text-align: center;
}

.launch-ticket span {
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.24em;
  line-height: 1;
}

.launch-ticket strong {
  margin-top: 7px;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1;
}

.launch-ticket__act strong span {
  color: var(--red);
  font-size: inherit;
  letter-spacing: inherit;
}

.hero__symbol {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 470px;
}

.hero-logo-frame {
  position: relative;
  width: min(37vw, 500px);
  height: min(37vw, 500px);
  min-width: 320px;
  min-height: 320px;
  transform: rotate(-5deg);
}

.hero-logo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter:
    drop-shadow(22px 26px 0 rgba(224, 23, 40, 0.11))
    drop-shadow(0 16px 24px rgba(73, 21, 25, 0.13));
}

.vertical-copy {
  position: absolute;
  top: 50%;
  right: -8px;
  margin: 0;
  color: var(--red-deep);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.28em;
  transform: translateY(-50%);
  writing-mode: vertical-rl;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  padding-top: 18px;
  border-top: 1px solid rgba(21, 19, 19, 0.18);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.2em;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 800px) {
  .coming-soon {
    padding: 22px 20px 18px;
  }

  .coming-soon::before {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 48px 0 36px;
  }

  h1 {
    font-size: clamp(50px, 15vw, 74px);
  }

  .lead {
    margin-top: 26px;
  }

  .hero__symbol {
    min-height: auto;
  }

  .hero-logo-frame {
    width: min(78vw, 390px);
    height: min(78vw, 390px);
    min-width: 0;
    min-height: 0;
  }

  .vertical-copy {
    right: 0;
  }
}

@media (max-width: 430px) {
  .brand-logo {
    width: 138px;
  }

  .hero {
    padding-top: 38px;
  }

  .eyebrow {
    margin-bottom: 16px;
  }

  .site-footer p:first-child {
    display: none;
  }

  .site-footer {
    justify-content: flex-end;
  }
}
