:root {
  --paper: #f4f1ea;
  --ink: #10211f;
  --muted: #535b56;
  --line: #cbd5d1;
  --dark: #161a19;
  --gold: #e5ca8b;
  --focus: #0c6d5d;
  --thumb: #7e8983;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  scrollbar-color: var(--thumb) var(--paper);
  scrollbar-gutter: stable;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
}
a {
  color: inherit;
  cursor: pointer;
  text-underline-offset: 5px;
}
a:hover {
  text-decoration-thickness: 2px;
}
a:active {
  opacity: 0.8;
}
a:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 6px;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
p {
  line-height: 1.7;
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h2 {
  font:
    500 clamp(2.1rem, 4.4vw, 4rem)/1.06 Georgia,
    serif;
  letter-spacing: -0.035em;
}
h3 {
  font-size: 1.2rem;
  line-height: 1.35;
}
.wrap {
  width: min(1200px, calc(100% - 96px));
  margin-inline: auto;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.6;
}
.masthead {
  min-height: 86px;
  padding: 18px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  text-decoration: none;
  font-size: 1.1rem;
}
.brand img {
  object-fit: contain;
}
.text-link {
  display: inline-flex;
  gap: 20px;
  align-items: center;
  font-size: 0.9rem;
}
.skip {
  position: absolute;
  z-index: 5;
  top: 8px;
  left: 8px;
  transform: translateY(-200%);
  background: var(--paper);
  padding: 15px;
}
.skip:focus {
  transform: none;
}
.hero {
  position: relative;
  isolation: isolate;
  min-height: 610px;
  min-height: min(760px, calc(100svh - 86px));
  display: flex;
  align-items: center;
  background: var(--dark);
  color: var(--paper);
  overflow: hidden;
}
.hero-image {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 66% center;
}
.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(8, 14, 12, 0.92),
    rgba(8, 14, 12, 0.6) 42%,
    rgba(8, 14, 12, 0.05) 78%
  );
}
.hero-content {
  padding: 68px max(48px, calc((100vw - 1200px) / 2));
  padding-right: 24px;
  width: 100%;
  animation: arrive 0.65s ease-out;
}
.hero h1 {
  font:
    500 clamp(3.5rem, 7.5vw, 7rem)/1 Georgia,
    serif;
  letter-spacing: -0.045em;
  margin: 30px 0;
}
.hero h1 span {
  display: block;
  font:
    500 clamp(1rem, 1.5vw, 1.35rem)/1.5 Arial,
    Helvetica,
    sans-serif;
  letter-spacing: 0;
  margin-top: 18px;
}
.hero-copy {
  font-size: 1.1rem;
  margin-bottom: 30px;
}
.hero-caption {
  position: absolute;
  left: 48px;
  bottom: 12px;
  margin: 0;
  font-size: 0.7rem;
  color: var(--paper);
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 54px;
  padding: 17px 22px;
  background: var(--ink);
  color: var(--paper);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  border: 1px solid transparent;
  transition:
    background 0.18s,
    transform 0.18s;
}
.button:hover {
  background: var(--focus);
  transform: translateY(-2px);
}
.button-light {
  background: var(--paper);
  color: var(--ink);
}
.button-light:hover {
  background: var(--gold);
}
.hero a:focus-visible {
  outline-color: var(--gold);
}
.intro {
  padding-block: 92px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
}
.prose {
  color: var(--muted);
  max-width: 540px;
}
.disclosure {
  font-size: 0.85rem;
  border-left: 2px solid var(--line);
  padding-left: 18px;
  margin-bottom: 0;
}
.preview {
  margin-bottom: 100px;
}
.preview img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: contain;
  background: var(--dark);
}
figcaption {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 20px;
  color: var(--muted);
  font-size: 0.85rem;
}
.details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  padding-bottom: 90px;
}
.detail-heading {
  align-self: start;
  position: sticky;
  top: 36px;
}
.features article {
  border-top: 1px solid var(--line);
  padding: 26px 0 12px;
}
.features article p {
  color: var(--muted);
}
.contact {
  background: #e7e8df;
  border-top: 1px solid var(--line);
}
.contact-inner {
  padding-block: 80px;
}
.contact-inner > p:not(.eyebrow) {
  max-width: 530px;
  color: var(--muted);
}
.note {
  font-size: 0.8rem;
  margin: 16px 0 0;
}
footer {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  padding-block: 30px;
  font-size: 0.8rem;
}
footer span {
  flex: 1;
  color: var(--muted);
}
::-webkit-scrollbar {
  width: 12px;
}
::-webkit-scrollbar-track {
  background: var(--paper);
}
::-webkit-scrollbar-thumb {
  background: var(--thumb);
  border: 3px solid var(--paper);
  border-radius: 8px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--muted);
}
::-webkit-scrollbar-thumb:active {
  background: var(--ink);
}
@keyframes arrive {
  from {
    opacity: 0.4;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@media (max-width: 700px) {
  .wrap {
    width: calc(100% - 40px);
  }
  .masthead {
    padding: 14px 20px;
    min-height: 74px;
    gap: 14px;
  }
  .brand {
    font-size: 0.9rem;
    gap: 7px;
  }
  .brand img {
    width: 30px;
    height: 30px;
  }
  .masthead .text-link {
    font-size: 0.75rem;
    gap: 8px;
  }
  .hero {
    min-height: 570px;
  }
  .hero-content {
    padding: 54px 20px 80px;
  }
  .hero h1 {
    font-size: 3.7rem;
  }
  .hero-image {
    object-position: 64% center;
  }
  .hero::after {
    background: linear-gradient(
      90deg,
      rgba(8, 14, 12, 0.9),
      rgba(8, 14, 12, 0.55)
    );
  }
  .hero-caption {
    left: 20px;
    right: 20px;
    font-size: 0.65rem;
  }
  .intro,
  .details {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-block: 52px;
  }
  .preview {
    margin-bottom: 0;
  }
  .detail-heading {
    position: static;
  }
  figcaption {
    align-items: start;
    font-size: 0.75rem;
  }
  .contact-inner {
    padding-block: 52px;
  }
  footer {
    gap: 16px;
  }
  footer span {
    flex-basis: 100%;
    order: 3;
  }
  .button {
    max-width: 100%;
    font-size: 0.85rem;
  }
  .hero .eyebrow {
    max-width: 250px;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
  .button:hover {
    transform: none;
  }
  .detail-heading {
    position: static;
  }
}
@media (forced-colors: active) {
  :root {
    scrollbar-color: auto;
  }
  .button {
    border: 1px solid ButtonText;
  }
  .hero::after {
    background: Canvas;
  }
  .hero-image {
    opacity: 0.15;
  }
}
