:root {
  color-scheme: light;
  --paper: #f4f1ea;
  --ink: #171715;
  --graphite: #2f312f;
  --steel: #69716d;
  --ember: #f09a2d;
  --signal: #2c7270;
  --line: rgba(23, 23, 21, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--paper);
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Charter, "Bitstream Charter", "Sitka Text", Cambria, serif;
  letter-spacing: 0;
}

body::selection {
  color: #fff8ed;
  background: var(--signal);
}

a {
  color: inherit;
}

.hero {
  position: relative;
  min-height: 86vh;
  overflow: hidden;
  isolation: isolate;
  display: grid;
  align-items: center;
  padding: clamp(24px, 5vw, 76px);
  background: #d7d2c8;
}

.hero__image {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 63% 50%;
  transform: scale(1.01);
}

.hero__shade {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(
      90deg,
      rgba(245, 242, 235, 0.98) 0%,
      rgba(245, 242, 235, 0.88) 34%,
      rgba(245, 242, 235, 0.22) 64%,
      rgba(245, 242, 235, 0) 100%
    ),
    linear-gradient(
      180deg,
      rgba(23, 23, 21, 0.12) 0%,
      rgba(23, 23, 21, 0) 34%,
      rgba(23, 23, 21, 0.16) 100%
    );
}

.hero__content {
  width: min(640px, 100%);
  padding-top: clamp(20px, 6vh, 80px);
  animation: reveal 520ms ease-out both;
}

.kicker {
  margin: 0 0 18px;
  color: var(--signal);
  font-family: "Aptos", "Segoe UI", sans-serif;
  font-size: clamp(0.78rem, 1.4vw, 0.92rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  max-width: 10ch;
  color: var(--ink);
  font-size: clamp(4.2rem, 12vw, 11rem);
  font-weight: 700;
  line-height: 0.82;
}

.statement {
  max-width: 17ch;
  margin: clamp(22px, 4vw, 34px) 0 0;
  color: var(--graphite);
  font-size: clamp(1.5rem, 3.2vw, 3.2rem);
  line-height: 0.98;
}

.primary-link {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  margin-top: clamp(28px, 4vw, 42px);
  border-bottom: 2px solid var(--ember);
  color: var(--ink);
  font-family: "Aptos", "Segoe UI", sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.primary-link:focus-visible {
  outline: 3px solid var(--signal);
  outline-offset: 8px;
}

.spec-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
}

.spec-strip > div {
  min-height: 126px;
  padding: clamp(20px, 3vw, 34px);
  background:
    linear-gradient(135deg, rgba(44, 114, 112, 0.08), transparent 48%),
    var(--paper);
}

.spec-strip span,
.spec-strip strong {
  display: block;
}

.spec-strip span {
  color: var(--steel);
  font-family: "Aptos", "Segoe UI", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.spec-strip strong {
  max-width: 14ch;
  margin-top: 12px;
  color: var(--ink);
  font-size: clamp(1.3rem, 2.2vw, 2rem);
  font-weight: 700;
  line-height: 1;
}

@keyframes reveal {
  from {
    transform: translateY(18px);
  }

  to {
    transform: translateY(0);
  }
}

@media (max-width: 720px) {
  .hero {
    min-height: 84svh;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 0;
    background: var(--paper);
    isolation: auto;
    overflow: visible;
  }

  .hero__image {
    position: relative;
    inset: auto;
    z-index: 0;
    width: 100%;
    height: 44svh;
    max-height: 380px;
    min-height: 240px;
    object-fit: cover;
    object-position: 58% 46%;
    transform: none;
    flex: 0 0 auto;
    -webkit-mask-image:
      linear-gradient(180deg, #000 0%, #000 74%, transparent 100%);
    mask-image:
      linear-gradient(180deg, #000 0%, #000 74%, transparent 100%);
  }

  .hero__shade {
    display: none;
  }

  .hero__content {
    position: relative;
    z-index: 2;
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 6px 22px 34px;
    width: 100%;
    max-width: 100%;
  }

  .kicker {
    margin: 0 0 14px;
    font-size: 0.78rem;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(2.4rem, 12.5vw, 4.2rem);
    line-height: 0.86;
  }

  .statement {
    max-width: 16ch;
    margin-top: 20px;
    font-size: clamp(1.3rem, 5.4vw, 1.9rem);
    line-height: 1.05;
  }

  .primary-link {
    margin-top: 26px;
    align-self: flex-start;
  }

  .spec-strip {
    grid-template-columns: 1fr;
  }

  .spec-strip > div {
    min-height: 0;
    padding: 18px 22px;
  }

  .spec-strip strong {
    margin-top: 8px;
    font-size: 1.25rem;
  }
}

@media (max-width: 360px) {
  .hero__content {
    padding-left: 18px;
    padding-right: 18px;
  }

  h1 {
    font-size: clamp(2.2rem, 12vw, 3.4rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
