:root {
  --background: #fbf8f3;
  --surface: #fffdf8;
  --surface-muted: #f2eae2;
  --paper: #fbf8f3;
  --sage: #8fa18d;
  --forest: #425a46;
  --navy-ink: #23303b;
  --terracotta: #c8664a;
  --ink: #1a1a1a;
  --text: #2d2924;
  --muted: #756c62;
  --border: #ded3c5;
  --shadow: rgba(35, 48, 59, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(200, 102, 74, 0.08), transparent 28rem),
    radial-gradient(circle at top right, rgba(143, 161, 141, 0.16), transparent 24rem),
    var(--background);
  font-family: "Inter", Arial, sans-serif;
}

.paper-grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.25;
  background-image:
    radial-gradient(rgba(35, 48, 59, 0.16) 0.6px, transparent 0.6px),
    radial-gradient(rgba(200, 102, 74, 0.12) 0.6px, transparent 0.6px);
  background-position: 0 0, 12px 12px;
  background-size: 22px 22px;
}

.site-header,
main,
.site-footer {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 28px 0 18px;
}

.brand img {
  display: block;
  width: 220px;
  height: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
}

.nav .nav-cta {
  color: var(--surface);
  background: var(--forest);
  padding: 12px 18px;
  border-radius: 999px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1fr);
  align-items: center;
  gap: clamp(28px, 5vw, 84px);
  min-height: 620px;
  padding: 34px 0 58px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--terracotta);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  color: var(--ink);
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.08;
}

h1 {
  max-width: 560px;
  margin: 0;
  font-size: clamp(38px, 4.7vw, 62px);
  font-weight: 600;
  letter-spacing: -0.03em;
}

.lede {
  max-width: 540px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 52px;
  border-radius: 999px;
  padding: 0 24px;
  text-decoration: none;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button.primary {
  color: var(--surface);
  background: var(--forest);
  box-shadow: 0 16px 30px rgba(66, 90, 70, 0.2);
}

.button.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(66, 90, 70, 0.26);
}

.coming-soon {
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.hero-art {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 480px;
}

.hero-art::before {
  content: "";
  position: absolute;
  inset: 26px 28px 18px;
  border: 1px solid rgba(222, 211, 197, 0.92);
  border-radius: 34px;
  background: rgba(255, 253, 248, 0.62);
  box-shadow: 0 24px 80px rgba(35, 48, 59, 0.08);
}

.hero-art img {
  position: relative;
  width: min(100%, 610px);
  height: auto;
  filter: drop-shadow(0 24px 20px rgba(35, 48, 59, 0.16));
}

.stamp {
  position: absolute;
  top: 40px;
  right: 26px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 112px;
  height: 112px;
  border: 1px solid rgba(200, 102, 74, 0.65);
  border-radius: 999px;
  color: var(--terracotta);
  background: rgba(251, 248, 243, 0.8);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(12deg);
}

.handwritten {
  position: absolute;
  right: 12px;
  bottom: 32px;
  max-width: 210px;
  margin: 0;
  color: var(--forest);
  font-family: "Caveat", cursive;
  font-size: 30px;
  line-height: 0.95;
  transform: rotate(-5deg);
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding: 0 0 88px;
}

.trust-row article,
.card,
.feature-list article {
  border: 1px solid var(--border);
  background: rgba(255, 253, 248, 0.8);
  box-shadow: 0 14px 40px rgba(35, 48, 59, 0.05);
}

.trust-row article {
  border-radius: 22px;
  padding: 22px;
}

.trust-row span {
  color: var(--terracotta);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.trust-row h2 {
  margin: 12px 0 8px;
  font-size: 28px;
}

.trust-row p,
.card p,
.feature-copy p,
.feature-list p,
.closing-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.story-section {
  padding: 0 0 92px;
}

.section-heading {
  max-width: 540px;
  margin-bottom: 28px;
}

.section-heading h2,
.feature-copy h2,
.closing-card h2 {
  margin: 0;
  font-size: clamp(30px, 3vw, 42px);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.card {
  min-height: 220px;
  border-radius: 24px;
  padding: 24px;
}

.step-number {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  color: var(--surface);
  background: var(--forest);
  font-size: 14px;
  font-weight: 700;
}

.card h3,
.feature-list h3 {
  margin: 18px 0 10px;
  font-size: 24px;
}

.feature-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(380px, 1fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: start;
  padding: 0 0 92px;
}

.feature-copy p:last-child {
  margin-top: 20px;
  max-width: 540px;
  font-size: 17px;
}

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

.feature-list article {
  border-radius: 20px;
  padding: 20px 22px;
}

.feature-list h3 {
  margin-top: 0;
}

.closing-card {
  margin-bottom: 36px;
  border: 1px solid var(--border);
  border-radius: 32px;
  padding: clamp(26px, 4vw, 42px);
  text-align: center;
  background:
    linear-gradient(135deg, rgba(143, 161, 141, 0.14), rgba(200, 102, 74, 0.08)),
    rgba(255, 253, 248, 0.84);
}

.closing-card p {
  max-width: 520px;
  margin: 16px auto 24px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 0 0 36px;
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 900px) {
  .site-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero,
  .feature-band {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 20px;
  }

  .hero-art {
    order: -1;
    min-height: 380px;
  }

  .trust-row,
  .steps {
    grid-template-columns: 1fr;
  }

  .handwritten {
    right: 20px;
    bottom: 12px;
  }
}

@media (max-width: 640px) {
  .site-header,
  main,
  .site-footer {
    width: min(100% - 32px, 1180px);
  }

  .brand img {
    width: 190px;
  }

  .nav {
    width: 100%;
    justify-content: space-between;
    gap: 14px;
  }

  .nav a:not(.nav-cta) {
    font-size: 13px;
  }

  .hero-art {
    min-height: 310px;
  }

  .hero-art::before {
    inset: 10px 0 0;
  }

  .stamp {
    top: 18px;
    right: 0;
    width: 90px;
    height: 90px;
    font-size: 10px;
  }

  .handwritten {
    display: none;
  }

  h1 {
    font-size: 36px;
  }

  .lede {
    font-size: 16px;
  }

  .site-footer {
    flex-direction: column;
  }
}
