:root {
  --bg: #f4efe6;
  --bg-strong: #1d1917;
  --text: #2c2624;
  --text-light: #f8f1e8;
  --accent: #b74922;
  --accent-2: #d67b36;
  --card: #fff8ef;
  --border: #ddcfbd;
  --shadow: 0 14px 40px rgba(40, 28, 20, 0.15);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Source Sans 3", sans-serif;
  background: radial-gradient(circle at 80% -10%, #e9b885 0%, rgba(233, 184, 133, 0) 50%), var(--bg);
  color: var(--text);
  line-height: 1.5;
}

a {
  color: inherit;
}

.container {
  width: min(1100px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  backdrop-filter: blur(8px);
  background: rgba(244, 239, 230, 0.88);
  border-bottom: 1px solid rgba(44, 38, 36, 0.1);
  z-index: 10;
}

.nav-row,
.footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: "Alegreya", serif;
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.brand-logo {
  width: 2rem;
  height: 2rem;
  object-fit: contain;
  display: block;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 4.8rem 0 3.2rem;
  background-image:
    linear-gradient(120deg, rgba(244, 239, 230, 0.95) 0%, rgba(244, 239, 230, 0.88) 52%, rgba(244, 239, 230, 0.82) 100%),
    url("./assets/thefolder_bannner.png");
  background-size: cover;
  background-position: center;
}

.hero-glow {
  position: absolute;
  width: 40rem;
  height: 40rem;
  right: -12rem;
  top: -18rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(183, 73, 34, 0.35), rgba(183, 73, 34, 0));
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 2rem;
  align-items: start;
}

.eyebrow {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}

h1,
h2,
h3 {
  font-family: "Alegreya", serif;
  line-height: 1.1;
  margin-top: 0;
}

h1 {
  font-size: clamp(2.2rem, 5.6vw, 4.1rem);
  margin-bottom: 1rem;
}

h2 {
  font-size: clamp(1.7rem, 3.4vw, 2.6rem);
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.38rem;
  margin-bottom: 0.55rem;
}

.lead {
  font-size: 1.2rem;
  max-width: 52ch;
}

.hero-actions {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.hero-card {
  border: 1px solid var(--border);
  background: linear-gradient(160deg, #fff7ee 0%, #f6e4cd 100%);
  border-radius: 1rem;
  padding: 1.2rem 1.3rem;
  box-shadow: var(--shadow);
}

.hero-card ul,
.card ul {
  margin: 0.5rem 0 0;
  padding-left: 1.05rem;
}

.section {
  padding: 4.2rem 0;
}

.section-cream {
  background: #efe3d3;
}

.section-dark {
  background: var(--bg-strong);
  color: var(--text-light);
}

.section-accent {
  background: linear-gradient(160deg, #2e231f 0%, #201916 45%, #35251f 100%);
  color: var(--text-light);
}

.cards {
  display: grid;
  gap: 1rem;
}

.two-up {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.three-up {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  padding: 1rem 1.05rem;
  border: 1px solid var(--border);
  border-radius: 0.9rem;
  background: var(--card);
}

.card-dark {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.25);
}

.waitlist-wrap {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: 1fr 1fr;
  align-items: start;
}

.waitlist-form {
  display: grid;
  gap: 0.8rem;
  background: rgba(255, 255, 255, 0.08);
  padding: 1rem;
  border-radius: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.waitlist-form label {
  display: grid;
  gap: 0.3rem;
  font-weight: 600;
}

.waitlist-form input,
.waitlist-form select {
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: #fffaf2;
  color: #231f1b;
  border-radius: 0.55rem;
  padding: 0.6rem 0.7rem;
  font: inherit;
}

.form-note {
  margin: 0;
  font-size: 0.9rem;
  opacity: 0.9;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.6rem 1rem;
  text-decoration: none;
  font-weight: 700;
  border: 1px solid transparent;
}

.btn-primary {
  background: linear-gradient(120deg, var(--accent) 0%, var(--accent-2) 100%);
  color: #fff;
}

.btn-secondary {
  border-color: rgba(44, 38, 36, 0.35);
}

.btn-ghost {
  border-color: rgba(44, 38, 36, 0.35);
  background: rgba(255, 255, 255, 0.65);
}

.site-footer {
  background: #181210;
  color: #f0e4d4;
}

.site-footer a {
  color: #f7b77e;
}

@media (max-width: 920px) {
  .hero-grid,
  .waitlist-wrap,
  .three-up,
  .two-up {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 3.8rem;
  }

  .brand {
    font-size: 1.2rem;
  }

  .brand-logo {
    width: 1.75rem;
    height: 1.75rem;
  }
}
