:root {
  --black: #111111;
  --soft-black: #34302d;
  --muted: #6d6864;
  --accent: #bb7053;
  --line: #dedbd8;
  --white: #ffffff;
  --page-width: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--black);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.page-width {
  width: min(calc(100% - 72px), var(--page-width));
  margin: 0 auto;
}

.site-header {
  min-height: 118px;
  display: flex;
  align-items: center;
  background: #fff;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.logo {
  width: 116px;
  height: auto;
}

.header-cta {
  color: var(--black);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
}

.header-cta:hover {
  text-decoration: underline;
  text-underline-offset: 5px;
}

/* Homepage */

.hero {
  padding: 110px 0 170px;
}

.hero-content {
  max-width: 1080px;
}

.hero h1 {
  max-width: 980px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(58px, 7.2vw, 108px);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.96;
}

.hero-subtitle {
  max-width: 890px;
  margin: 44px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(27px, 3.2vw, 46px);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.14;
}

.hero-subtitle span {
  display: block;
}

.button {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  padding: 0 25px;
  border: 1px solid var(--black);
  border-radius: 4px;
  background: var(--black);
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  text-decoration: none;
  cursor: pointer;
}

.button:hover {
  background: #2e2e2e;
}

.hero .button {
  margin-top: 44px;
}

.feature-list {
  padding-bottom: 100px;
}

.feature {
  display: grid;
  grid-template-columns: minmax(280px, 0.88fr) minmax(360px, 1.12fr);
  gap: clamp(55px, 8vw, 128px);
  align-items: center;
  min-height: 760px;
  padding: 105px 0;
  border-top: 1px solid var(--line);
}

.feature:nth-child(even) {
  grid-template-columns: minmax(360px, 1.12fr) minmax(280px, 0.88fr);
}

.feature:nth-child(even) .feature-image {
  order: 2;
}

.feature-image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-image img {
  width: min(100%, 520px);
  max-height: 590px;
  object-fit: contain;
}

.feature-copy {
  max-width: 650px;
}

.feature h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 5.2vw, 76px);
  font-weight: 400;
  letter-spacing: -0.052em;
  line-height: 0.98;
}

.feature p {
  max-width: 560px;
  margin: 30px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(25px, 2.5vw, 37px);
  letter-spacing: -0.024em;
  line-height: 1.18;
}

.statement {
  padding: 155px 0 180px;
  border-top: 1px solid var(--line);
}

.statement p {
  max-width: 1050px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(58px, 7vw, 102px);
  font-weight: 400;
  letter-spacing: -0.06em;
  line-height: 0.97;
}

.final-cta {
  padding: 120px 0 145px;
  background: var(--black);
  color: #fff;
}

.final-cta h2 {
  max-width: 950px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(49px, 6vw, 86px);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.final-cta .button {
  margin-top: 44px;
  border-color: #fff;
  background: #fff;
  color: var(--black);
}

.site-footer {
  padding: 70px 0 80px;
  background: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr;
  gap: 60px;
}

.footer-heading {
  margin: 0 0 15px;
  font-size: 14px;
  font-weight: 700;
}

.footer-copy,
.footer-link {
  margin: 0;
  color: var(--soft-black);
  font-size: 15px;
  line-height: 1.8;
  text-decoration: none;
}

.footer-link:hover {
  text-decoration: underline;
}

/* Waitlist page */

.waitlist-header {
  min-height: 122px;
}

.waitlist-main {
  padding: 104px 0 130px;
}

.waitlist-title {
  max-width: 1060px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(41px, 5vw, 70px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1;
}

.waitlist-intro {
  max-width: 970px;
  margin: 8px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(31px, 3.4vw, 49px);
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.waitlist-form-wrap {
  max-width: 760px;
  margin-top: 78px;
}

.form-field {
  margin-bottom: 24px;
}

.form-field label {
  display: block;
  margin-bottom: 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 16px;
}

.required {
  color: var(--muted);
  font-size: 13px;
}

.form-field input {
  width: 100%;
  height: 57px;
  padding: 0 18px;
  border: 1px solid var(--black);
  border-radius: 999px;
  background: #fff;
  color: var(--black);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 17px;
  outline: none;
}

.form-field input:focus {
  box-shadow: 0 0 0 3px rgba(187, 112, 83, 0.18);
}

.form-submit {
  margin-top: -2px;
  padding: 0 20px;
  border-radius: 5px;
}

.form-submit[disabled] {
  cursor: wait;
  opacity: 0.68;
}

.honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.form-error {
  display: none;
  margin-top: 18px;
  color: #a32c20;
  font-size: 14px;
}

.form-error.is-visible {
  display: block;
}

.form-success {
  display: none;
  max-width: 920px;
  margin-top: 90px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(39px, 4.5vw, 64px);
  letter-spacing: -0.045em;
  line-height: 1.07;
}

.form-success.is-visible {
  display: block;
}

@media (max-width: 850px) {
  .page-width {
    width: min(calc(100% - 40px), var(--page-width));
  }

  .site-header {
    min-height: 92px;
  }

  .hero {
    padding: 78px 0 110px;
  }

  .feature,
  .feature:nth-child(even) {
    grid-template-columns: 1fr;
    gap: 54px;
    min-height: auto;
    padding: 85px 0;
  }

  .feature:nth-child(even) .feature-image {
    order: 0;
  }

  .feature-image {
    justify-content: flex-start;
  }

  .feature-image img {
    width: min(100%, 500px);
  }

  .statement {
    padding: 110px 0 125px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .waitlist-main {
    padding: 72px 0 100px;
  }
}

@media (max-width: 520px) {
  .page-width {
    width: min(calc(100% - 28px), var(--page-width));
  }

  .logo {
    width: 102px;
  }

  .header-cta {
    font-size: 13px;
  }

  .hero h1 {
    font-size: 53px;
  }

  .hero-subtitle {
    font-size: 27px;
  }

  .hero-subtitle span {
    display: inline;
  }

  .feature h2 {
    font-size: 47px;
  }

  .feature p {
    font-size: 25px;
  }

  .statement p {
    font-size: 52px;
  }

  .final-cta h2 {
    font-size: 48px;
  }

  .waitlist-title {
    font-size: 40px;
  }

  .waitlist-intro {
    font-size: 31px;
  }

  .waitlist-form-wrap {
    margin-top: 60px;
  }
}
