:root {
  color-scheme: light;
  --background: #f4efe6;
  --surface: #fffdf9;
  --surface-alt: #fff7ed;
  --surface-muted: #f6efe5;
  --border: #eadfcd;
  --border-strong: #d8cfbf;
  --text: #1f1b17;
  --muted: #5f584d;
  --subtle: #7b7468;
  --primary: #bb4d00;
  --primary-dark: #8f3900;
  --primary-soft: #fff4e8;
  --success: #166534;
  --ink: #12100d;
  --blue: #17324d;
  --white: #fffdf9;
  --shadow: 0 24px 80px rgba(31, 27, 23, 0.14);
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body,
button,
input {
  letter-spacing: 0;
}

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: 72px;
  padding: 0 clamp(20px, 4vw, 56px);
  color: var(--white);
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.site-header[data-elevated="true"] {
  background: rgba(255, 253, 249, 0.92);
  color: var(--text);
  border-bottom: 1px solid rgba(234, 223, 205, 0.9);
  box-shadow: 0 12px 34px rgba(31, 27, 23, 0.08);
  backdrop-filter: blur(18px);
}

.brand,
.desktop-nav,
.hero-actions,
.cta-actions,
.site-footer {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 850;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid currentColor;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 900;
}

.desktop-nav {
  gap: 28px;
  color: currentColor;
  font-size: 14px;
  font-weight: 700;
}

.desktop-nav a {
  opacity: 0.78;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  opacity: 1;
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 8px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.header-cta {
  padding: 0 18px;
  background: var(--white);
  color: var(--primary-dark);
  border: 1px solid rgba(255, 253, 249, 0.42);
}

.site-header[data-elevated="true"] .header-cta {
  background: var(--primary);
  color: var(--white);
}

.hero {
  position: relative;
  min-height: min(760px, calc(100svh - 80px));
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.hero-media,
.hero-media img,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: 0.48;
  filter: saturate(0.92) contrast(1.06);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(18, 16, 13, 0.94) 0%, rgba(18, 16, 13, 0.73) 46%, rgba(18, 16, 13, 0.28) 100%),
    linear-gradient(180deg, rgba(18, 16, 13, 0.18) 0%, rgba(18, 16, 13, 0.72) 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(var(--max-width), calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(132px, 18vh, 180px) 0 58px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--primary);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ffd7b2;
}

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

h1 {
  max-width: 780px;
  margin-bottom: 18px;
  font-size: clamp(64px, 12vw, 132px);
  line-height: 0.86;
  font-weight: 950;
}

h2 {
  margin-bottom: 18px;
  color: var(--text);
  font-size: clamp(34px, 5vw, 64px);
  line-height: 0.98;
  font-weight: 920;
}

h3 {
  margin-bottom: 10px;
  font-size: 21px;
  line-height: 1.12;
}

.hero-lead {
  max-width: 670px;
  margin-bottom: 30px;
  color: rgba(255, 253, 249, 0.86);
  font-size: clamp(19px, 2.4vw, 28px);
  line-height: 1.18;
  font-weight: 650;
}

.hero-actions,
.cta-actions {
  gap: 12px;
  flex-wrap: wrap;
}

.button {
  padding: 0 20px;
  border: 1px solid transparent;
}

.button.primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 16px 36px rgba(187, 77, 0, 0.25);
}

.button.primary:hover,
.button.primary:focus-visible {
  background: var(--primary-dark);
}

.button.secondary {
  background: rgba(255, 253, 249, 0.12);
  color: var(--white);
  border-color: rgba(255, 253, 249, 0.34);
  backdrop-filter: blur(10px);
}

.button.ghost {
  color: var(--primary-dark);
  border-color: var(--border-strong);
  background: var(--surface);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 150px));
  gap: 12px;
  margin: 54px 0 0;
}

.hero-metrics div {
  padding: 14px;
  border: 1px solid rgba(255, 253, 249, 0.28);
  border-radius: 8px;
  background: rgba(255, 253, 249, 0.09);
}

.hero-metrics dt {
  color: #ffd7b2;
  font-size: 13px;
  font-weight: 900;
}

.hero-metrics dd {
  margin: 2px 0 0;
  color: rgba(255, 253, 249, 0.76);
  font-size: 13px;
}

.intro-strip {
  display: grid;
  place-items: center;
  padding: 28px 20px;
  background: var(--blue);
  color: var(--white);
  text-align: center;
}

.intro-strip p {
  width: min(900px, 100%);
  margin: 0;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 720;
}

.section {
  width: min(var(--max-width), calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(78px, 10vw, 128px) 0;
}

.section-heading {
  max-width: 860px;
  margin-bottom: 42px;
}

.section-heading.narrow {
  max-width: 760px;
}

.section-heading p,
.product-copy p,
.cta-copy p {
  color: var(--muted);
  font-size: clamp(17px, 2vw, 21px);
}

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

.feature-card,
.proof-grid article {
  min-height: 238px;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 18px 48px rgba(31, 27, 23, 0.08);
}

.feature-number {
  display: block;
  margin-bottom: 46px;
  color: var(--primary);
  font-size: 13px;
  font-weight: 950;
}

.feature-card p,
.proof-grid p {
  color: var(--muted);
}

.product-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.product-copy {
  max-width: 470px;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 26px;
  color: var(--text);
  font-weight: 720;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--success);
}

.product-shot {
  overflow: hidden;
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.product-shot img {
  width: 100%;
  height: auto;
}

.premium-section {
  width: 100%;
  max-width: none;
  padding-left: max(20px, calc((100% - var(--max-width)) / 2));
  padding-right: max(20px, calc((100% - var(--max-width)) / 2));
  background: var(--surface-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.proof-grid article {
  background: var(--background);
}

.proof-grid article:nth-child(2) {
  border-color: rgba(22, 101, 52, 0.24);
}

.proof-grid article:nth-child(3) {
  border-color: rgba(23, 50, 77, 0.24);
}

.cta-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.cta-copy {
  max-width: 720px;
}

.site-footer {
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  padding: 34px 20px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 14px;
}

.site-footer a {
  color: var(--primary-dark);
  font-weight: 750;
}

@media (max-width: 900px) {
  .desktop-nav {
    display: none;
  }

  .product-section,
  .feature-grid,
  .proof-grid {
    grid-template-columns: 1fr;
  }

  .product-copy {
    max-width: none;
  }

  .cta-section {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  .site-header {
    height: 64px;
    padding: 0 16px;
  }

  .brand span:last-child {
    display: none;
  }

  .header-cta {
    min-height: 40px;
    padding: 0 12px;
    font-size: 13px;
  }

  .hero {
    min-height: calc(100svh - 64px);
  }

  .hero-inner {
    width: calc(100% - 32px);
    padding-top: 118px;
  }

  h1 {
    font-size: clamp(54px, 18vw, 86px);
  }

  .hero-metrics {
    grid-template-columns: 1fr;
    margin-top: 34px;
  }

  .button {
    width: 100%;
  }

  .section {
    width: calc(100% - 32px);
  }
}
