html {
  background: var(--color-paper);
  scroll-padding-top: 112px;
}

body {
  background: var(--color-paper);
  color: var(--color-ink);
  font-family: var(--font-sans);
  overflow-x: hidden;
}

section {
  width: 100%;
}

.section-pad {
  padding: clamp(88px, 11vw, 190px) var(--side);
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  gap: clamp(48px, 8vw, 150px);
  max-width: var(--container);
  margin: 0 auto;
}

.section-tint {
  background: var(--color-cream);
}

.eyebrow {
  color: var(--color-rust);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 5px;
  line-height: 1.3;
  margin-bottom: 28px;
}

h1,
h2,
h3 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 0.98;
}

h2 {
  font-size: clamp(46px, 6.2vw, 92px);
  letter-spacing: 0;
}

p {
  line-height: 1.7;
}

a {
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease, opacity 180ms ease, transform 180ms ease;
}

.animations-ready .reveal {
  opacity: 0;
  transform: translate3d(0, 28px, 0);
  transition: opacity 900ms ease, transform 900ms cubic-bezier(0.18, 0.68, 0.18, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.animations-ready .reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.animations-ready .reveal-soft {
  transform: translate3d(0, 16px, 0);
}

.animations-ready .reveal-scale {
  transform: translate3d(0, 24px, 0) scale(0.985);
}

.animations-ready .reveal-scale.is-visible {
  transform: translate3d(0, 0, 0) scale(1);
}

.section-copy {
  color: var(--color-muted);
  font-size: 17px;
  max-width: 650px;
  padding-top: clamp(42px, 5vw, 82px);
}

.section-copy p + p {
  margin-top: 8px;
}

.button,
.text-link,
.wide-link {
  align-items: center;
  display: inline-flex;
  font-size: 12px;
  font-weight: 700;
  gap: 14px;
  letter-spacing: 0.2px;
  line-height: 1;
  white-space: nowrap;
}

.button {
  border: 1px solid transparent;
  min-height: 50px;
  padding: 0 26px;
  position: relative;
}

.button-primary {
  background: var(--color-rust-light);
  border-color: var(--color-rust-light);
  color: #fff;
}

.button-primary:hover {
  background: var(--color-rust);
  border-color: var(--color-rust);
  transform: translateY(-1px);
}

.button-light {
  background: var(--color-cream);
  border-color: var(--color-cream);
  color: var(--color-ink);
}

.button-light:hover {
  background: #fff;
  border-color: rgba(255, 255, 255, 0.72);
  transform: translateY(-1px);
}

.text-link {
  border-bottom: 1px solid currentColor;
  color: var(--color-ink);
  opacity: 0.86;
  padding-bottom: 8px;
}

.text-link-light {
  color: #fff;
}

.text-link:hover {
  opacity: 1;
  transform: translateX(2px);
}

.wide-link {
  background: var(--color-charcoal);
  border: 1px solid var(--color-charcoal);
  color: #fff;
  justify-content: center;
  min-height: 52px;
  padding: 0 28px;
  width: 100%;
}

.wide-link:hover {
  background: transparent;
  color: var(--color-charcoal);
}

.product-card,
.fabric-list article,
.steps article,
.faq-list details {
  transition: background 260ms ease, border-color 260ms ease, box-shadow 260ms ease, transform 260ms ease;
}

.product-card:hover,
.fabric-list article:hover {
  box-shadow: 0 18px 44px rgba(34, 35, 29, 0.07);
  transform: translateY(-3px);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  .animations-ready .reveal,
  .animations-ready .reveal-scale,
  .animations-ready .reveal-soft {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 900px) {
  .section-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .section-copy {
    padding-top: 0;
  }

  .eyebrow {
    font-size: 11px;
    letter-spacing: 3px;
  }
}

@media (max-width: 520px) {
  :root {
    --side: 32px;
  }

  h2 {
    font-size: clamp(36px, 10vw, 42px);
  }

  .button,
  .text-link,
  .wide-link {
    white-space: normal;
  }
}
