:root {
  --ink: #2a2722;
  --muted: #665f54;
  --paper: #fffaf3;
  --ivory: #f6efe3;
  --rose: #b87870;
  --rose-dark: #7d4540;
  --green: #536c54;
  --gold: #b28a4b;
  --line: rgba(42, 39, 34, 0.16);
  --shadow: 0 22px 70px rgba(42, 39, 34, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  color: #fffaf5;
  background: linear-gradient(to bottom, rgba(31, 28, 23, 0.58), rgba(31, 28, 23, 0));
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(255, 250, 245, 0.78);
  border-radius: 50%;
  font-size: 0.76rem;
}

nav {
  display: flex;
  gap: clamp(14px, 3vw, 34px);
  font-size: 0.82rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 116px clamp(18px, 6vw, 72px) 72px;
  color: #fffaf5;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(28, 26, 21, 0.82) 0%, rgba(28, 26, 21, 0.52) 42%, rgba(28, 26, 21, 0.1) 100%),
    linear-gradient(0deg, rgba(28, 26, 21, 0.24), rgba(28, 26, 21, 0.06));
}

.hero-content {
  position: relative;
  max-width: 720px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #e4c78a;
}

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

h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: 0;
}

h1 {
  max-width: 11ch;
  margin-bottom: 22px;
  font-size: clamp(4rem, 11vw, 9.4rem);
  line-height: 0.86;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.2rem, 5vw, 4.9rem);
  line-height: 0.94;
}

h3 {
  margin-bottom: 14px;
  font-size: 1.55rem;
  line-height: 1.05;
}

.hero-copy {
  max-width: 650px;
  margin-bottom: 34px;
  color: rgba(255, 250, 245, 0.9);
  font-size: clamp(1.08rem, 2vw, 1.36rem);
}

.hero-actions,
.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button,
button {
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: 4px;
  padding: 14px 22px;
  font: inherit;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.button.primary,
button {
  color: #fffaf5;
  background: var(--rose-dark);
}

.button.secondary {
  border-color: rgba(255, 250, 245, 0.72);
  color: #fffaf5;
  background: rgba(255, 250, 245, 0.08);
  backdrop-filter: blur(8px);
}

.intro,
.inside,
.waitlist {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 1.05fr);
  gap: clamp(28px, 6vw, 88px);
  padding: clamp(64px, 9vw, 122px) clamp(18px, 6vw, 72px);
}

.intro {
  align-items: end;
  background: var(--paper);
}

.intro > p,
.inside-copy p,
.waitlist p {
  color: var(--muted);
  font-size: clamp(1.06rem, 1.6vw, 1.22rem);
}

.product-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-block: 1px solid var(--line);
  background: var(--ivory);
}

.product-band article {
  min-height: 292px;
  padding: clamp(30px, 5vw, 56px);
  border-right: 1px solid var(--line);
}

.product-band article:last-child {
  border-right: 0;
}

.product-band span {
  display: inline-block;
  margin-bottom: 36px;
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.product-band p,
.feature-list span {
  color: var(--muted);
}

.inside {
  align-items: start;
  background: #fbf5ed;
}

.feature-list {
  display: grid;
  gap: 14px;
}

.feature-list div {
  padding: 24px 0;
  border-top: 1px solid var(--line);
}

.feature-list strong,
.feature-list span {
  display: block;
}

.feature-list strong {
  margin-bottom: 8px;
  color: var(--green);
  font-size: 1.06rem;
}

.waitlist {
  align-items: center;
  color: #fffaf5;
  background: var(--green);
}

.waitlist .section-kicker {
  color: #e8ca8b;
}

.waitlist p {
  color: rgba(255, 250, 245, 0.82);
}

form {
  width: min(100%, 560px);
  justify-self: end;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(255, 250, 245, 0.22);
  background: rgba(255, 250, 245, 0.08);
  box-shadow: var(--shadow);
}

label {
  display: block;
  margin-bottom: 10px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

input {
  flex: 1 1 260px;
  min-height: 48px;
  min-width: 0;
  border: 1px solid rgba(255, 250, 245, 0.32);
  border-radius: 4px;
  padding: 13px 14px;
  color: #fffaf5;
  background: rgba(255, 250, 245, 0.12);
  font: inherit;
}

input::placeholder {
  color: rgba(255, 250, 245, 0.62);
}

@media (max-width: 800px) {
  .site-header {
    position: absolute;
    align-items: flex-start;
  }

  nav {
    display: none;
  }

  .hero {
    min-height: 88vh;
    padding-top: 106px;
    align-items: end;
  }

  .hero-overlay {
    background: linear-gradient(0deg, rgba(28, 26, 21, 0.9) 0%, rgba(28, 26, 21, 0.44) 74%, rgba(28, 26, 21, 0.28) 100%);
  }

  h1 {
    font-size: clamp(3.7rem, 20vw, 6.2rem);
  }

  .intro,
  .inside,
  .waitlist,
  .product-band {
    grid-template-columns: 1fr;
  }

  .product-band article {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  form {
    justify-self: stretch;
  }
}

@media (max-width: 520px) {
  .brand {
    font-size: 0.86rem;
  }

  .button,
  button,
  input {
    width: 100%;
  }
}
