@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,wght@0,400;0,500;0,600;1,400&family=Newsreader:opsz,wght@6..72,400;6..72,500&display=swap');

:root {
  --background: #d8ccbd;
  --background-light: #e9e1d7;
  --ink: #241d1a;
  --muted: rgba(36, 29, 26, 0.78);
  --line: rgba(36, 29, 26, 0.34);
  --serif: "Newsreader", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--background);
  -webkit-font-smoothing: antialiased;
}

.landing-page {
  min-height: 100vh;
}

.hero {
  min-height: 100vh;
  background:
    radial-gradient(circle at 80% 18%, rgba(255,255,255,.52), transparent 34%),
    radial-gradient(circle at 18% 76%, rgba(125, 138, 118, .18), transparent 32%),
    linear-gradient(120deg, #c8c3b7 0%, var(--background-light) 48%, #c7b7a4 100%);
}

.hero-inner {
  width: min(1260px, calc(100% - 72px));
  min-height: 100vh;
  margin: 0 auto;
  padding: 70px 0 42px;
  display: flex;
  flex-direction: column;
}

.launching {
  margin: 0;
  text-align: center;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: .17em;
}

.main-copy {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 68px 0 62px;
  text-align: center;
}

.eyebrow {
  margin: 0 0 42px;
  font-size: .86rem;
  font-weight: 500;
  letter-spacing: .28em;
}

h1 {
  max-width: 1120px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3.25rem, 5.4vw, 6rem);
  font-weight: 400;
  line-height: 1.06;
  letter-spacing: -.035em;
}

.subheadline {
  margin: 38px 0 0;
  font-size: clamp(1.15rem, 1.65vw, 1.7rem);
  font-style: italic;
  letter-spacing: .08em;
}

.description {
  max-width: 760px;
  margin: 31px auto 0;
  color: var(--muted);
  font-size: clamp(.96rem, 1.2vw, 1.1rem);
  line-height: 1.55;
  letter-spacing: .035em;
}

.bottom-panel {
  display: grid;
  grid-template-columns: 1fr 1.08fr 1fr;
  border-top: 1px solid var(--line);
}

.panel-column {
  min-height: 128px;
  padding: 22px 28px 8px 0;
  font-size: .84rem;
  line-height: 1.55;
}

.panel-column + .panel-column {
  border-left: 1px solid var(--line);
  padding-left: 42px;
}

.panel-center {
  text-align: center;
  padding-right: 42px;
}

.panel-right {
  padding-right: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.panel-label {
  width: 100%;
  margin: 0 0 15px;
  padding: 13px 16px;
  border: 1px solid rgba(36, 29, 26, .56);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .1em;
}

.panel-note {
  margin: 0;
  font-style: italic;
}

.brand-name {
  margin: 0 0 3px;
  font-family: var(--serif);
  font-size: 1.65rem;
}

.panel-column p {
  margin-top: 0;
}

@media (max-width: 900px) {
  .hero-inner {
    width: min(100% - 40px, 1260px);
    padding-top: 42px;
  }

  .main-copy {
    padding: 70px 0 50px;
  }

  h1 br {
    display: none;
  }

  .bottom-panel {
    grid-template-columns: 1fr;
  }

  .panel-column,
  .panel-column + .panel-column {
    min-height: auto;
    padding: 22px 0;
    border-left: 0;
    border-bottom: 1px solid var(--line);
    text-align: center;
  }

  .panel-right {
    align-items: center;
    border-bottom: 0 !important;
  }
}

@media (max-width: 600px) {
  .hero-inner {
    width: min(100% - 28px, 1260px);
  }

  .launching {
    font-size: .78rem;
  }

  .eyebrow {
    margin-bottom: 28px;
    font-size: .7rem;
    line-height: 1.5;
  }

  h1 {
    font-size: clamp(2.8rem, 14vw, 4rem);
  }

  .subheadline {
    margin-top: 28px;
    font-size: 1.06rem;
    line-height: 1.55;
  }

  .description {
    margin-top: 24px;
    font-size: .93rem;
  }
}
