:root {
  --ink: #161616;
  --muted: #5c6264;
  --paper: #ffffff;
  --soft: #f6f6f4;
  --cream: #f7f4f2;
  --line: #ddd8d1;
  --red: #c8171f;
  --dark: #111111;
  --rose: #f4e5e6;
}

* { box-sizing: border-box; }
html, body { width: 100%; overflow-x: hidden; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: #e9e9e6;
}

.page {
  width: min(1440px, 100%);
  margin: 0 auto;
  background: var(--paper);
  box-shadow: 0 30px 80px rgba(17, 17, 17, .14);
  overflow: hidden;
}

header, section, footer { padding-inline: clamp(24px, 5vw, 72px); }

header {
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
  border-bottom: 1px solid #efefec;
  background: white;
}

.brand { min-width: 248px; text-decoration: none; color: inherit; }
.brand img { width: clamp(178px, 17vw, 232px); height: auto; display: block; }
nav {
  display: flex;
  gap: clamp(14px, 2vw, 26px);
  flex: 1 1 420px;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
}
nav a { color: var(--ink); text-decoration: none; }
nav a.active { color: var(--red); }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 10px;
  background: var(--red);
  color: white;
  padding: 15px 22px;
  font-weight: 850;
  font-size: 16px;
  text-decoration: none;
  box-shadow: 0 12px 24px rgba(200, 23, 31, .22);
}
.button.secondary {
  background: white;
  color: var(--ink);
  border: 1px solid var(--line);
  box-shadow: none;
}

.hero {
  min-height: 590px;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, .98fr);
  gap: 60px;
  align-items: center;
  padding-block: 72px 82px;
  background:
    radial-gradient(circle at 88% 14%, rgba(200, 23, 31, .10), transparent 26%),
    linear-gradient(135deg, #fff 0%, var(--cream) 100%);
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  border: 1px solid #efefec;
  border-radius: 999px;
  background: white;
  padding: 8px 14px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 850;
}
.pill:before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--red);
}

h1, h2, h3, p { margin: 0; overflow-wrap: break-word; }
h1 {
  max-width: 680px;
  margin-top: 24px;
  font-size: clamp(42px, 5vw, 62px);
  line-height: 1.12;
}
h2 { max-width: 760px; font-size: clamp(32px, 4vw, 44px); line-height: 1.18; }
h3 { font-size: 22px; line-height: 1.25; }
.red { color: var(--red); }
.lead {
  max-width: 640px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.6;
}
.actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 26px; }
.trust { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }

.hero-media {
  position: relative;
  height: 460px;
  overflow: hidden;
  border: 1px solid #e5e5df;
  border-radius: 30px;
  background: var(--soft);
  box-shadow: 0 22px 50px rgba(17, 17, 17, .10);
}
.hero-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.photo-badge {
  position: absolute;
  left: 26px;
  top: 26px;
  max-width: 240px;
  border: 1px solid #ece8e1;
  border-radius: 16px;
  background: rgba(255,255,255,.94);
  padding: 14px 16px;
  box-shadow: 0 14px 34px rgba(17,17,17,.12);
}
.photo-badge strong { display: block; font-size: 14px; line-height: 1.25; }
.photo-badge span { display: block; margin-top: 5px; color: var(--muted); font-size: 12px; font-weight: 750; line-height: 1.35; }

.hero-proof {
  position: relative;
  display: grid;
  gap: 16px;
  align-self: stretch;
  min-height: 460px;
  border: 1px solid #e5e5df;
  border-radius: 30px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.96), rgba(247,244,242,.96)),
    radial-gradient(circle at 88% 12%, rgba(200,23,31,.14), transparent 30%);
  padding: 28px;
  box-shadow: 0 22px 50px rgba(17, 17, 17, .10);
}
.proof-card {
  border: 1px solid #ece8e1;
  border-radius: 18px;
  background: white;
  padding: 22px;
  box-shadow: 0 16px 34px rgba(17,17,17,.08);
}
.proof-card.kicker {
  background: var(--dark);
  color: white;
}
.proof-card strong {
  display: block;
  font-size: 22px;
  line-height: 1.2;
}
.proof-card span,
.proof-card p {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.5;
}
.proof-card.kicker span,
.proof-card.kicker p { color: #e7dfe0; }
.proof-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.mini-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.mini-gallery img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid #ece8e1;
  background: var(--soft);
}

.section { padding-block: 84px 88px; }
.section.soft { background: var(--soft); }
.section.dark { background: linear-gradient(135deg, #111, #2b0e11); color: white; }
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 34px;
}
.eyebrow {
  margin-bottom: 12px;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
}
.section-head p, .section-copy {
  max-width: 480px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}
.dark .section-head p, .dark .section-copy { color: #e7dfe0; }

.grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}
.grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.product-slider {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(300px, 360px);
  gap: 22px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: inline mandatory;
  padding: 4px 2px 18px;
}
.product-slider::-webkit-scrollbar { height: 10px; }
.product-slider::-webkit-scrollbar-track { background: #eeeae4; border-radius: 999px; }
.product-slider::-webkit-scrollbar-thumb { background: var(--red); border-radius: 999px; }
.slide-card {
  scroll-snap-align: start;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: white;
  padding: 18px;
  box-shadow: 0 14px 30px rgba(0,0,0,.08);
}
.slide-card img {
  width: 100%;
  aspect-ratio: 1.22;
  object-fit: cover;
  display: block;
  border-radius: 12px;
  margin-bottom: 18px;
  background: var(--soft);
}
.slide-card p { margin-top: 10px; color: var(--muted); line-height: 1.55; }
.slider-hint {
  margin-top: -18px;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
}

.card {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: white;
  padding: 18px;
  box-shadow: 0 14px 30px rgba(0,0,0,.08);
}
.card img {
  width: 100%;
  aspect-ratio: 1.35;
  object-fit: cover;
  display: block;
  border-radius: 12px;
  margin-bottom: 18px;
  background: var(--soft);
}
.card p { margin-top: 10px; color: var(--muted); line-height: 1.55; }
.card .button { margin-top: 18px; box-shadow: none; }

.feature-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.feature {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: white;
  padding: 22px;
}
.feature strong { display: block; margin-bottom: 8px; font-size: 18px; }
.feature p { color: var(--muted); line-height: 1.5; }
.price { color: var(--red); font-size: 26px; font-weight: 900; }

.price-table {
  width: 100%;
  margin-top: 18px;
  border-collapse: collapse;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: white;
}
.price-table th, .price-table td {
  padding: 14px 16px;
  border-bottom: 1px solid #eeeae4;
  text-align: left;
}
.price-table th { color: var(--muted); font-size: 13px; }
.price-table tr:last-child td { border-bottom: 0; }
.price-table td:last-child { color: var(--red); font-weight: 900; }

.split {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: 44px;
  align-items: center;
}
.panel {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: white;
  padding: 30px;
  box-shadow: 0 18px 36px rgba(0,0,0,.07);
}
.panel p, .panel li { color: var(--muted); line-height: 1.6; }
.panel ul { margin: 18px 0 0; padding-left: 20px; }

.cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding-block: 74px;
}
.cta p { margin-top: 16px; max-width: 720px; color: #e7dfe0; font-size: 18px; line-height: 1.6; }

footer {
  min-height: 210px;
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 34px;
  padding-block: 42px;
  background: var(--ink);
  color: white;
}
footer img { width: 210px; height: auto; display: block; padding: 8px; background: white; border-radius: 8px; }
footer p { margin-top: 14px; color: #d1d1c8; line-height: 1.55; }
footer a { color: white; text-decoration: none; font-weight: 800; }

@media (max-width: 1100px) {
  .grid, .grid.three { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .feature-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 900px) {
  header { align-items: flex-start; flex-direction: column; padding-block: 22px; }
  .brand { min-width: 0; }
  .brand img { width: min(230px, 72vw); }
  nav { width: 100%; flex: 0 1 auto; justify-content: flex-start; }
  .hero, .split { grid-template-columns: minmax(0, 1fr); }
  .hero { min-height: 0; padding-block: 48px; }
  .section-head, .cta, footer { flex-direction: column; align-items: stretch; }
  .hero-media { height: 360px; }
  .hero-proof { min-height: 0; }
}

@media (max-width: 560px) {
  header, section, footer { padding-inline: 20px; }
  nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 16px;
  }
  h1 { max-width: 320px; font-size: 32px; }
  h2 { max-width: 320px; font-size: 28px; }
  .lead, .section-head p, .section-copy { max-width: 320px; font-size: 16px; }
  .actions .button, header .button { width: 100%; }
  .trust { max-width: 320px; }
  .trust .pill {
    max-width: 100%;
    white-space: normal;
    line-height: 1.25;
  }
  .hero-media { width: 100%; max-width: 320px; height: 330px; }
  .hero-proof { width: 100%; max-width: 320px; padding: 18px; }
  .proof-grid, .mini-gallery { grid-template-columns: 1fr; }
  .mini-gallery { display: none; }
  .photo-badge { left: 18px; top: 18px; max-width: 210px; }
  .grid, .grid.three, .grid.two, .feature-list { grid-template-columns: 1fr; }
  .product-slider {
    grid-auto-columns: minmax(280px, 320px);
    max-width: 320px;
  }
  .price-table { font-size: 14px; }
  .price-table th, .price-table td { padding: 12px 10px; }
}
