:root {
  --ink: #182235;
  --muted: #5f6b7a;
  --paper: #f8f5ef;
  --paper-strong: #fffdf8;
  --line: rgba(24, 34, 53, 0.14);
  --denim: #1d4c79;
  --brass: #a37a31;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  line-height: 1.55;
}

body {
  margin: 0;
}

main {
  overflow: hidden;
}

.hero {
  position: relative;
  min-height: 92svh;
  display: flex;
  align-items: center;
  background-image: url("assets/jeans-hero.png");
  background-position: center right;
  background-size: cover;
  isolation: isolate;
}

.hero__shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(255, 253, 248, 0.96) 0%, rgba(255, 253, 248, 0.9) 34%, rgba(255, 253, 248, 0.38) 68%, rgba(255, 253, 248, 0.1) 100%),
    linear-gradient(180deg, rgba(255, 253, 248, 0.1), rgba(248, 245, 239, 0.84));
}

.hero__content {
  width: min(760px, calc(100% - 40px));
  margin: 0 auto;
  padding: 88px 0 120px;
}

.eyebrow,
.section-label {
  margin: 0 0 14px;
  color: var(--denim);
  font-size: 0.82rem;
  font-weight: 750;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  letter-spacing: 0;
  line-height: 1.05;
}

h1 {
  max-width: 680px;
  font-size: clamp(3rem, 8vw, 6.8rem);
  font-weight: 820;
}

h2 {
  font-size: clamp(1.75rem, 4vw, 3.1rem);
  font-weight: 780;
}

p {
  font-size: 1.04rem;
}

.hero__lead {
  max-width: 600px;
  margin: 28px 0 0;
  color: #303b4c;
  font-size: clamp(1.1rem, 2vw, 1.32rem);
}

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

.intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 340px);
  gap: 56px;
  padding: 80px 0;
  border-bottom: 1px solid var(--line);
}

.intro__text p,
.section-grid p {
  color: var(--muted);
}

.intro__note {
  align-self: start;
  padding: 28px;
  border-left: 4px solid var(--brass);
  background: rgba(255, 253, 248, 0.7);
}

.intro__note span {
  display: block;
  color: var(--denim);
  font-size: 3.8rem;
  font-weight: 820;
  line-height: 1;
}

.intro__note p {
  margin-bottom: 0;
  color: #465466;
}

.section-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 56px;
  padding: 80px 0;
}

.section-grid article {
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.facts {
  display: grid;
  grid-template-columns: minmax(260px, 380px) minmax(0, 1fr);
  gap: 64px;
  padding: 78px 0 96px;
}

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

.facts__list div {
  min-height: 168px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper-strong);
}

.facts__list span {
  display: block;
  margin-bottom: 26px;
  color: var(--brass);
  font-weight: 800;
}

.facts__list p {
  margin: 0;
  color: #38465a;
}

@media (max-width: 780px) {
  .hero {
    min-height: 84svh;
    background-position: 62% center;
  }

  .hero__shade {
    background:
      linear-gradient(180deg, rgba(255, 253, 248, 0.95) 0%, rgba(255, 253, 248, 0.88) 48%, rgba(248, 245, 239, 0.74) 100%);
  }

  .hero__content {
    padding: 72px 0 96px;
  }

  .intro,
  .section-grid,
  .facts {
    grid-template-columns: 1fr;
    gap: 34px;
    width: min(100% - 32px, 1120px);
  }

  .intro,
  .section-grid {
    padding: 56px 0;
  }

  .facts {
    padding: 56px 0 72px;
  }

  .facts__list {
    grid-template-columns: 1fr;
  }
}
