:root {
  --paper: #f5eee8;
  --surface: #fbf7f2;
  --ink: #211b17;
  --muted: #70645c;
  --line: #dfd3c9;
  --accent: #b89172;
  --accent-dark: #9b765c;
  --soft: #eee3da;
  --shadow: 0 22px 54px rgba(95, 74, 58, 0.12);
  --serif: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, Georgia, serif;
}

* {
  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.6;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.page-nav {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  width: min(980px, calc(100% - 32px));
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 0;
  background: rgba(245, 238, 232, 0.88);
  backdrop-filter: blur(16px);
}

.brand-link {
  font-family: var(--serif);
  font-size: 1.55rem;
  text-decoration: none;
}

.page-nav nav {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  justify-content: center;
}

.page-nav nav a,
.nav-cta {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-decoration: none;
  text-transform: uppercase;
}

.nav-cta {
  color: var(--accent-dark);
}

.pevonia-hero,
.proof-strip {
  width: min(980px, calc(100% - 32px));
  margin: 0 auto;
}

.pevonia-hero {
  display: grid;
  min-height: 0;
  grid-template-columns: minmax(320px, 0.42fr) minmax(0, 0.58fr);
  align-items: center;
  gap: 20px;
  padding: 18px 0 0;
}

.hero-copy {
  align-self: center;
  padding: 8px 0 20px;
}

.eyebrow {
  margin: 0 0 10px;
  color: #927d6d;
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.centered {
  text-align: center;
}

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

h1,
h2 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.03;
  letter-spacing: 0;
}

h1 {
  max-width: 390px;
  margin-bottom: 12px;
  font-size: clamp(1.75rem, 3.1vw, 2.55rem);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(1.9rem, 3.2vw, 3.1rem);
}

.hero-copy p {
  max-width: 500px;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.55;
}

.rule {
  display: block;
  width: 46px;
  height: 1px;
  margin: 0 0 14px;
  background: var(--accent);
}

.hero-image {
  height: min(44vw, 390px);
  min-height: 300px;
  overflow: hidden;
  background: #ede4db;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-row,
.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.feature-row {
  margin: 18px 0 16px;
}

.feature-row article {
  display: grid;
  gap: 8px;
}

.feature-icon {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
}

.feature-icon img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  opacity: 0.74;
  mix-blend-mode: multiply;
}

.feature-row strong,
.proof-strip span {
  color: #5a4e46;
  font-size: 0.72rem;
  line-height: 1.45;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.outline-button,
.filled-button {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-decoration: none;
  text-transform: uppercase;
}

.outline-button {
  border: 1px solid #bfb0a3;
  color: #6d5c50;
  background: transparent;
}

.filled-button {
  border: 1px solid #e7c7d1;
  color: var(--ink);
  background: #e7c7d1;
}

.product-logo {
  position: absolute;
  right: 36px;
  bottom: 30px;
  display: grid;
  justify-items: center;
  color: #3c332f;
  text-transform: uppercase;
}

.product-logo strong {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  letter-spacing: 0.08em;
  text-transform: lowercase;
}

.product-logo span {
  margin-top: -8px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.product-logo small {
  margin-top: 18px;
  letter-spacing: 0.22em;
}

.proof-strip {
  margin: 10px auto 0;
  padding: 14px 0 24px;
}

@media (max-width: 940px) {
  .page-nav {
    align-items: flex-start;
    flex-direction: column;
  }

  .pevonia-hero {
    grid-template-columns: 1fr;
  }

  .hero-image {
    height: auto;
    min-height: 280px;
  }

  .feature-row,
  .proof-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .page-nav nav {
    gap: 12px;
  }

  .pevonia-hero,
  .proof-strip {
    width: calc(100% - 24px);
  }

  h1 {
    font-size: 2rem;
  }

  .feature-row,
  .proof-strip {
    grid-template-columns: 1fr;
  }
}
