:root {
  --ink: #17130F;
  --ink-60: rgba(23, 19, 15, 0.58);
  --ink-38: rgba(23, 19, 15, 0.38);
  --hairline: rgba(23, 19, 15, 0.14);
  --brass: #9A6F42;
  --brass-line: rgba(154, 111, 66, 0.5);
  --paper: #FFFFFF;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Jost, "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--brass); text-decoration: none; }
a:hover { color: var(--ink); }
::selection { background: var(--brass); color: var(--paper); }

.teaser {
  min-height: 100vh;
  display: grid;
  grid-template-rows: 1fr auto;
}

.teaser__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 40px 40px;
}

.logo {
  display: block;
  width: min(520px, 74vw);
  height: auto;
  animation: rise 1.2s cubic-bezier(.2, .7, .2, 1) both;
}

.rule {
  display: block;
  width: min(520px, 74vw);
  height: 1px;
  margin: 52px 0 44px;
  background: var(--hairline);
  transform-origin: center;
  animation: drawline 1.4s .5s cubic-bezier(.2, .7, .2, 1) both;
}

.tagline {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 300;
  font-size: clamp(26px, 3.2vw, 44px);
  line-height: 1.15;
  animation: rise 1.2s .35s cubic-bezier(.2, .7, .2, 1) both;
}

.lede {
  margin: 34px 0 0;
  max-width: 40ch;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.9;
  letter-spacing: 0.01em;
  color: var(--ink-60);
  text-wrap: pretty;
  animation: rise 1.2s .5s cubic-bezier(.2, .7, .2, 1) both;
}

.cta {
  margin-top: 56px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 34px;
  border: 1px solid var(--brass-line);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass);
  transition: all .4s ease;
  animation: rise 1.2s .65s cubic-bezier(.2, .7, .2, 1) both;
}

.cta:hover {
  background: var(--brass);
  border-color: var(--brass);
  color: var(--paper);
  letter-spacing: 0.28em;
}

.footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 34px 40px;
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-38);
}

@keyframes rise {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: none; }
}

@keyframes drawline {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

@media (max-width: 600px) {
  .teaser__inner { padding: 90px 24px 32px; }
  .footer { padding: 28px 24px; justify-content: center; text-align: center; }
}
