:root {
  --background: #f7f3ed;
  --surface: #fffaf2;
  --surface-strong: #ffffff;
  --ink: #2e2a24;
  --muted: #6f675c;
  --line: #e4d8c8;
  --accent: #8d6e4f;
  --accent-dark: #5f4732;
  --soft: #efe5d8;
  --shadow: 0 24px 80px rgba(60, 43, 25, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: ui-serif, Georgia, "Times New Roman", serif;
  background:
    radial-gradient(circle at top left, rgba(255, 250, 242, 0.9), transparent 34rem),
    var(--background);
  color: var(--ink);
  line-height: 1.55;
}

a {
  color: inherit;
}

.site-header {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 26px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: var(--surface-strong);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  box-shadow: 0 10px 30px rgba(60, 43, 25, 0.08);
}

.brand-name {
  font-size: 1.06rem;
}

.nav {
  display: flex;
  gap: 22px;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.94rem;
  color: var(--muted);
}

.nav a {
  text-decoration: none;
}

.nav a:hover {
  color: var(--ink);
}

.hero {
  width: min(1120px, calc(100% - 40px));
  margin: 54px auto 84px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 56px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 14px;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--accent-dark);
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 700px;
  margin-bottom: 22px;
  font-size: clamp(3rem, 7vw, 5.8rem);
  line-height: 0.96;
  letter-spacing: -0.055em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
  margin-bottom: 18px;
}

h3 {
  font-size: 1.65rem;
  line-height: 1.1;
  margin-bottom: 14px;
}

.lead {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.25rem;
}

.hero-actions {
  margin-top: 34px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 700;
  text-decoration: none;
}

.primary {
  background: var(--ink);
  color: var(--surface);
}

.secondary {
  background: var(--surface-strong);
  border: 1px solid var(--line);
  color: var(--ink);
}

.hero-card {
  background: rgba(255, 250, 242, 0.88);
  border: 1px solid var(--line);
  border-radius: 34px;
  box-shadow: var(--shadow);
  padding: 18px;
  transform: rotate(1.2deg);
}

.card-top {
  height: 42px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding-left: 10px;
  border-bottom: 1px solid var(--line);
}

.card-top span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--soft);
}

.preview-list {
  padding: 20px 6px 6px;
  display: grid;
  gap: 14px;
}

.preview-item {
  background: var(--surface-strong);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 22px;
}

.preview-item strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.1rem;
}

.preview-item p {
  color: var(--muted);
  margin-bottom: 0;
}

.section {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto 84px;
}

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

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.product-card {
  background: var(--surface-strong);
  border: 1px solid var(--line);
  border-radius: 32px;
  padding: 32px;
}

.product-label {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--soft);
  color: var(--accent-dark);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.product-card p:not(.product-label) {
  color: var(--muted);
  font-size: 1.05rem;
}

.store-button {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--surface);
  text-decoration: none;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
}

.split {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: start;
  padding: 48px;
  border-radius: 36px;
  background: rgba(255, 250, 242, 0.76);
  border: 1px solid var(--line);
}

.text-block {
  color: var(--muted);
  font-size: 1.12rem;
}

.final-cta {
  text-align: center;
  max-width: 760px;
}

.final-cta p {
  color: var(--muted);
  font-size: 1.1rem;
}

.final-cta a {
  color: var(--accent-dark);
  font-weight: 700;
}

.footer {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 34px 0 48px;
  color: var(--muted);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.9rem;
  border-top: 1px solid var(--line);
}

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

  .nav {
    gap: 16px;
    flex-wrap: wrap;
  }

  .hero {
    margin-top: 28px;
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .hero-card {
    transform: none;
  }

  .product-grid,
  .split {
    grid-template-columns: 1fr;
  }

  .split {
    padding: 28px;
    gap: 24px;
  }

  h1 {
    font-size: clamp(3rem, 16vw, 4.8rem);
  }
}

@media (max-width: 520px) {
  .site-header,
  .hero,
  .section,
  .footer {
    width: min(100% - 28px, 1120px);
  }

  .hero-actions {
    flex-direction: column;
  }

  .button,
  .store-button {
    width: 100%;
  }

  .product-card {
    padding: 24px;
  }
}
