:root {
  --ink: #171614;
  --muted: #6c6863;
  --line: #dedbd6;
  --paper: #fffdfb;
  --blush: #fff1ea;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

a {
  color: inherit;
}

.site-header {
  align-items: center;
  background: rgba(255, 253, 251, 0.94);
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  min-height: 72px;
  padding: 12px max(24px, calc((100vw - 1160px) / 2));
  position: sticky;
  top: 0;
  z-index: 10;
}

.brand {
  align-items: center;
  display: inline-flex;
  font-size: 20px;
  font-weight: 720;
  gap: 10px;
  text-decoration: none;
}

.brand img {
  border-radius: 12px;
  height: 42px;
  width: 42px;
}

nav {
  display: flex;
  gap: 24px;
}

nav a {
  color: var(--muted);
  font-size: 15px;
  font-weight: 620;
  text-decoration: none;
}

nav a:hover,
nav a:focus-visible {
  color: var(--ink);
}

.intro {
  align-items: center;
  display: grid;
  gap: 72px;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  margin: 0 auto;
  max-width: 1160px;
  min-height: calc(100vh - 72px);
  overflow: hidden;
  padding: 64px 24px;
}

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

.eyebrow {
  color: #85634f;
  font-size: 14px;
  font-weight: 720;
  margin: 0 0 16px;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-size: clamp(46px, 7vw, 82px);
  font-weight: 760;
  line-height: 0.98;
  margin-bottom: 28px;
  max-width: 760px;
}

.lede {
  color: var(--muted);
  font-size: 20px;
  line-height: 1.55;
  margin-bottom: 30px;
  max-width: 620px;
}

.contact-button {
  background: var(--ink);
  border-radius: 6px;
  color: white;
  display: inline-flex;
  font-size: 16px;
  font-weight: 700;
  justify-content: center;
  min-height: 50px;
  padding: 15px 24px;
  text-decoration: none;
}

.contact-button:hover,
.contact-button:focus-visible {
  background: #383532;
}

.response-note {
  color: var(--muted);
  font-size: 13px;
  margin: 12px 0 0;
}

.product-preview {
  align-items: center;
  background: var(--blush);
  display: flex;
  justify-content: center;
  min-height: 560px;
  overflow: hidden;
  padding: 32px 20px 0;
}

.product-preview img {
  box-shadow: 0 24px 70px rgba(84, 56, 41, 0.2);
  display: block;
  height: auto;
  max-width: 290px;
  width: 76%;
}

.support-section,
.privacy-section {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 64px;
  grid-template-columns: minmax(220px, 0.7fr) minmax(0, 1.3fr);
  margin: 0 auto;
  max-width: 1160px;
  padding: 96px 24px;
  scroll-margin-top: 72px;
}

.section-heading {
  align-self: start;
  position: sticky;
  top: 112px;
}

.section-heading h2 {
  font-size: 42px;
  line-height: 1.08;
  margin-bottom: 18px;
}

.section-heading > p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.6;
}

.section-heading a,
.policy-content a {
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.faq-list,
.policy-content {
  border-top: 1px solid var(--line);
}

.faq-item,
.policy-content article {
  border-bottom: 1px solid var(--line);
  padding: 28px 0 30px;
}

.faq-item h3,
.policy-content h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.faq-item p,
.policy-content p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
  margin-bottom: 0;
}

.privacy-section {
  background: #f4f3f0;
  max-width: none;
  padding-left: max(24px, calc((100vw - 1112px) / 2));
  padding-right: max(24px, calc((100vw - 1112px) / 2));
}

footer {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1160px;
  padding: 32px 24px 48px;
}

footer p {
  color: var(--muted);
  font-size: 14px;
  margin: 0;
}

.footer-brand img {
  border-radius: 9px;
  height: 34px;
  width: 34px;
}

@media (max-width: 760px) {
  .site-header {
    min-height: 64px;
    padding: 10px 18px;
  }

  .brand {
    font-size: 18px;
  }

  .brand img {
    border-radius: 10px;
    height: 38px;
    width: 38px;
  }

  nav {
    gap: 16px;
  }

  .intro {
    gap: 48px;
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 64px 18px 0;
  }

  h1 {
    font-size: 50px;
  }

  .lede {
    font-size: 18px;
  }

  .product-preview {
    min-height: 470px;
  }

  .support-section,
  .privacy-section {
    gap: 30px;
    grid-template-columns: 1fr;
    padding: 72px 18px;
  }

  .section-heading {
    position: static;
  }

  .section-heading h2 {
    font-size: 36px;
  }

  footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
    padding: 28px 18px 40px;
  }
}
