@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600&family=Inter:wght@400;500;600&display=swap');

:root {
  --black: #111111;
  --muted: #444444;
  --line: #dedede;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  min-height: 100%;
  background: #fff;
  color: var(--black);
}

body {
  font-family: Inter, Arial, sans-serif;
}

.site {
  min-height: 100vh;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 5.5vw;
  display: flex;
  flex-direction: column;
}

.nav {
  height: 102px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.wordmark {
  color: var(--black);
  text-decoration: none;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 27px;
  font-weight: 600;
  letter-spacing: .02em;
}

.socials {
  display: flex;
  align-items: center;
  gap: 27px;
}

.socials a {
  color: #111;
  text-decoration: none;
  display: grid;
  place-items: center;
  width: 25px;
  height: 25px;
}

.icon {
  font-size: 14px;
  background: #111;
  color: #fff !important;
  border-radius: 6px;
  padding-left: 2px;
}

.x-icon {
  font-size: 22px;
  font-weight: 400;
}

.mail-icon {
  font-size: 24px;
  font-family: Arial, sans-serif;
  transform: translateY(-1px);
}

.hero {
  position: relative;
  flex: 1;
  min-height: 790px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.copy {
  position: relative;
  z-index: 2;
  width: 52%;
  padding-bottom: 2vh;
}

h1 {
  margin: 0 0 34px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(72px, 7vw, 112px);
  line-height: .9;
  font-weight: 500;
  letter-spacing: -.025em;
}

.rule {
  width: 72px;
  height: 2px;
  background: #111;
  margin-bottom: 36px;
}

p {
  margin: 0 0 14px;
  font-size: clamp(17px, 1.35vw, 21px);
  line-height: 1.9;
  letter-spacing: -.01em;
}

.launch {
  margin-top: 90px;
}

.launch span {
  display: block;
  margin-bottom: 13px;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: .22em;
}

.launch strong {
  display: block;
  font-size: clamp(48px, 5vw, 72px);
  line-height: 1;
  font-weight: 500;
  letter-spacing: -.035em;
}

.launch-rule {
  width: min(500px, 90%);
  height: 1px;
  background: #111;
  margin-top: 24px;
}

.cleaver-wrap {
  position: absolute;
  z-index: 1;
  width: 58%;
  right: -2%;
  top: 1%;
  bottom: -4%;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.cleaver {
  width: 105%;
  max-width: none;
  height: auto;
  transform: rotate(0deg);
  filter: drop-shadow(8px 12px 10px rgba(0,0,0,.14));
  mix-blend-mode: multiply;
}

footer {
  height: 58px;
  border-top: 1px solid var(--line);
  display: grid;
  place-items: center;
  color: #222;
  font-size: 14px;
}

@media (max-width: 900px) {
  .site { padding: 0 7vw; }
  .nav { height: 82px; }
  .hero {
    min-height: auto;
    padding: 72px 0 40px;
    display: block;
  }
  .copy { width: 100%; }
  h1 { font-size: 72px; }
  .cleaver-wrap {
    position: relative;
    width: 115%;
    right: auto;
    top: auto;
    bottom: auto;
    margin: -20px -8% 0;
  }
  .cleaver { width: 100%; }
  .launch { margin-top: 65px; }
}

@media (max-width: 560px) {
  .site { padding: 0 24px; }
  .wordmark { font-size: 23px; }
  .socials { gap: 15px; }
  .hero { padding-top: 58px; }
  h1 { font-size: 55px; margin-bottom: 25px; }
  .rule { margin-bottom: 26px; }
  p { font-size: 16px; line-height: 1.7; }
  .desktop { display: none; }
  .launch { margin-top: 55px; }
  .launch span { font-size: 13px; letter-spacing: .18em; }
  .launch strong { font-size: 47px; }
  .cleaver-wrap { margin-top: -15px; }
  footer { font-size: 12px; }
}
