:root {
  --red: #c94f3d;
  --red-dark: #9f3528;
  --ink: #2a2725;
  --muted: #706964;
  --cream: #fbf7f2;
  --warm: #f0e5da;
  --line: rgba(42, 39, 37, 0.12);
  --white: #fffdf9;
  --shadow: 0 18px 45px rgba(42, 39, 37, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.site-header {
  position: fixed;
  top: 16px;
  left: 50%;
  z-index: 10;
  display: flex;
  width: min(1120px, calc(100% - 32px));
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px 14px 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  background: rgba(255, 253, 249, 0.88);
  box-shadow: 0 12px 28px rgba(42, 39, 37, 0.1);
  transform: translateX(-50%);
  backdrop-filter: blur(18px);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0;
  color: var(--red);
}

.brand-mark::before {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--red);
  content: "";
}

.nav {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  font-size: 14px;
}

.nav a {
  padding: 9px 12px;
  border-radius: 999px;
}

.nav a:hover {
  background: rgba(201, 79, 61, 0.1);
  color: var(--red-dark);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 128px min(7vw, 88px) 72px;
  color: white;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(24, 19, 17, 0.74) 0%, rgba(24, 19, 17, 0.36) 48%, rgba(24, 19, 17, 0.08) 100%),
    linear-gradient(0deg, rgba(24, 19, 17, 0.72) 0%, rgba(24, 19, 17, 0) 52%);
}

.hero-content {
  position: relative;
  width: min(760px, 100%);
}

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

.hero .eyebrow {
  color: #ffd7cf;
}

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

h1 {
  margin-bottom: 20px;
  font-size: clamp(44px, 8vw, 92px);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(32px, 5vw, 58px);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.18;
}

.hero-text {
  max-width: 610px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(18px, 2vw, 24px);
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 14px 22px;
  font-weight: 800;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--red);
  color: white;
  box-shadow: 0 12px 28px rgba(159, 53, 40, 0.24);
}

.button-primary:hover {
  background: var(--red-dark);
}

.button-light {
  background: rgba(255, 255, 255, 0.16);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.38);
}

.section {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(72px, 10vw, 118px) 0;
}

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

.section-heading.narrow {
  max-width: 720px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading p,
.intro-copy p,
.answer-card p,
.product-card p,
.benefit-grid p,
.doubt-grid p,
.final-cta p {
  color: var(--muted);
  font-size: 17px;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 28px;
  align-items: stretch;
}

.intro-copy {
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--white);
}

.intro-copy p:last-child,
.answer-card p:last-child {
  margin-bottom: 0;
}

.answer-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 320px;
  padding: clamp(28px, 4vw, 42px);
  border-radius: 22px;
  background: var(--red);
  color: white;
  box-shadow: var(--shadow);
}

.answer-card p {
  color: white;
  font-size: 22px;
  line-height: 1.35;
}

.quote-label {
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.value {
  padding-top: 0;
}

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

.value-grid article {
  min-height: 320px;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(42, 39, 37, 0.07);
}

.value-grid .value-main {
  background: var(--red);
  color: white;
  box-shadow: var(--shadow);
}

.value-grid p {
  color: var(--muted);
  font-size: 17px;
}

.value-main p {
  color: rgba(255, 255, 255, 0.88);
}

.value-kicker {
  display: inline-flex;
  margin-bottom: 54px;
  color: var(--red);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.value-main .value-kicker {
  color: rgba(255, 255, 255, 0.72);
}

.image-band {
  position: relative;
  display: grid;
  min-height: 620px;
  align-items: end;
  overflow: hidden;
  color: white;
}

.image-band::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(24, 19, 17, 0.76), rgba(24, 19, 17, 0.08) 58%),
    linear-gradient(90deg, rgba(24, 19, 17, 0.36), rgba(24, 19, 17, 0.02));
  content: "";
}

.image-band img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-band-text {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: 0 0 64px;
}

.image-band-text h2 {
  max-width: 760px;
}

.image-band-text p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 20px;
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.pillar-grid article {
  padding: 24px;
  border-radius: 20px;
  background: var(--white);
  border: 1px solid var(--line);
}

.pillar-grid h3 {
  color: var(--red-dark);
}

.pillar-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 16px;
}

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

.product-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(42, 39, 37, 0.08);
}

.product-card img {
  width: 100%;
  aspect-ratio: 4 / 4.4;
  background: white;
  object-fit: contain;
  padding: 16px;
}

.product-card div {
  min-height: 190px;
  padding: 24px;
  border-top: 1px solid var(--line);
}

.product-type {
  margin-bottom: 10px;
  color: var(--red) !important;
  font-size: 13px !important;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.categories {
  padding-top: 0;
}

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

.category-grid article {
  min-height: 210px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white);
}

.category-grid p {
  color: var(--muted);
  font-size: 16px;
}

.category-note {
  background: var(--ink) !important;
  color: white;
}

.category-note p {
  color: rgba(255, 255, 255, 0.78);
}

.calm {
  width: 100%;
  max-width: none;
  padding-right: max(18px, calc((100vw - 1120px) / 2));
  padding-left: max(18px, calc((100vw - 1120px) / 2));
  background: var(--warm);
}

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

.benefit-grid article {
  min-height: 280px;
  padding: 26px;
  border: 1px solid rgba(42, 39, 37, 0.1);
  border-radius: 20px;
  background: rgba(255, 253, 249, 0.72);
}

.benefit-grid span {
  display: inline-flex;
  margin-bottom: 42px;
  color: var(--red);
  font-size: 14px;
  font-weight: 900;
}

.situations {
  text-align: center;
}

.situation-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.situation-list div {
  border: 1px solid rgba(201, 79, 61, 0.18);
  border-radius: 999px;
  padding: 14px 18px;
  background: rgba(201, 79, 61, 0.08);
  color: var(--red-dark);
  font-weight: 800;
}

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

details {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 12px 28px rgba(42, 39, 37, 0.06);
}

summary {
  cursor: pointer;
  padding: 22px 24px;
  color: var(--ink);
  font-size: 20px;
  font-weight: 850;
}

details p {
  margin: -8px 24px 24px;
}

.final-cta {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 1.05fr);
  gap: clamp(24px, 5vw, 56px);
  align-items: center;
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto clamp(72px, 10vw, 116px);
  padding: clamp(22px, 3vw, 34px);
  border-radius: 28px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.final-cta img {
  width: 100%;
  min-height: 340px;
  border-radius: 20px;
  object-fit: cover;
}

.final-cta p {
  max-width: 560px;
  margin-bottom: 28px;
  font-size: 19px;
}

.final-cta .cta-note {
  margin-top: -8px;
  padding-left: 18px;
  border-left: 3px solid var(--red);
  color: var(--ink);
  font-size: 17px;
  font-weight: 650;
}

.final-cta .button {
  width: fit-content;
}

.footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 28px max(18px, calc((100vw - 1120px) / 2));
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.footer p {
  margin: 0;
}

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

  .nav {
    display: none;
  }

  .hero {
    min-height: 760px;
    padding: 112px 20px 48px;
  }

  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(24, 19, 17, 0.8) 0%, rgba(24, 19, 17, 0.3) 62%),
      linear-gradient(90deg, rgba(24, 19, 17, 0.54), rgba(24, 19, 17, 0.12));
  }

  .intro-grid,
  .doubt-grid,
  .final-cta {
    grid-template-columns: 1fr;
  }

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

  .benefit-grid,
  .pillar-grid,
  .category-grid,
  .value-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .site-header {
    top: 10px;
    width: calc(100% - 20px);
    padding: 10px 14px;
  }

  .brand-mark {
    font-size: 18px;
  }

  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 34px;
  }

  .hero {
    min-height: 680px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .product-grid,
  .benefit-grid,
  .pillar-grid,
  .category-grid,
  .value-grid {
    grid-template-columns: 1fr;
  }

  .product-card {
    border-radius: 18px;
  }

  .product-card div {
    min-height: auto;
  }

  .benefit-grid article,
  .value-grid article,
  .category-grid article {
    min-height: auto;
  }

  .image-band {
    min-height: 560px;
  }

  .final-cta {
    padding: 16px;
    border-radius: 22px;
  }
}
