:root {
  --ink: #171712;
  --paper: #efe9dc;
  --paper-soft: #f7f3eb;
  --accent: #d7ff43;
  --white: #fffdf7;
  --line: rgba(23, 23, 18, .18);
  --shadow: 0 24px 70px rgba(14, 17, 13, .18);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper-soft);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.hero {
  min-height: 100svh;
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr auto;
  overflow: hidden;
  isolation: isolate;
  background: #8a7b6f;
  color: var(--white);
}

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

.hero__shade {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(12, 13, 10, .86) 0%, rgba(12, 13, 10, .52) 45%, rgba(12, 13, 10, .12) 100%),
    linear-gradient(0deg, rgba(12, 13, 10, .52) 0%, transparent 42%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: .19;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.22'/%3E%3C/svg%3E");
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px clamp(22px, 4vw, 68px);
  border-bottom: 1px solid rgba(255,255,255,.25);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: inherit;
  text-decoration: none;
}
.brand__mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.38);
  border-radius: 50%;
}
.brand__mark svg { width: 24px; height: 24px; }
.brand__name {
  font-size: clamp(1rem, 1.6vw, 1.24rem);
  font-weight: 760;
  letter-spacing: -.035em;
}
.brand__name span { opacity: .62; font-weight: 520; }

.status {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .13em;
  font-weight: 700;
}
.status__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(215,255,67,.12);
  animation: pulse 2.2s ease-in-out infinite;
}

.hero__content {
  align-self: center;
  max-width: 840px;
  padding: 80px clamp(22px, 6vw, 110px) 64px;
}
.eyebrow {
  margin: 0 0 24px;
  font-size: .78rem;
  font-weight: 740;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: var(--accent);
}
h1 {
  margin: 0;
  max-width: 900px;
  font-size: clamp(3.2rem, 8.8vw, 8.6rem);
  line-height: .88;
  letter-spacing: -.075em;
  font-weight: 750;
}
h1 em {
  color: transparent;
  -webkit-text-stroke: 1.4px rgba(255,255,255,.82);
  font-style: normal;
  font-weight: 500;
}
.lead {
  max-width: 610px;
  margin: 34px 0 0;
  color: rgba(255,255,255,.78);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  line-height: 1.65;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
  margin-top: 38px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease;
  box-shadow: 0 10px 30px rgba(215,255,67,.15);
}
.button:hover { transform: translateY(-2px); box-shadow: 0 14px 34px rgba(215,255,67,.23); }
.text-link {
  appearance: none;
  border: 0;
  background: none;
  color: inherit;
  padding: 12px 0;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  border-bottom: 1px solid rgba(255,255,255,.35);
}
.text-link span { display: inline-block; margin-left: 8px; }

.hero__meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255,255,255,.25);
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .13em;
  font-weight: 680;
}
.hero__meta span { padding: 22px clamp(22px, 4vw, 68px); border-right: 1px solid rgba(255,255,255,.2); }
.hero__meta span:last-child { border-right: 0; }

.intro {
  display: grid;
  grid-template-columns: .7fr 1.5fr auto;
  gap: clamp(28px, 5vw, 86px);
  align-items: start;
  padding: clamp(70px, 10vw, 150px) clamp(22px, 6vw, 110px);
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.intro__label {
  padding-top: 9px;
  font-size: .76rem;
  text-transform: uppercase;
  letter-spacing: .13em;
  font-weight: 800;
}
.intro__copy h2 {
  margin: 0;
  max-width: 720px;
  font-size: clamp(2.6rem, 6vw, 6.2rem);
  line-height: .98;
  letter-spacing: -.065em;
}
.intro__copy p {
  max-width: 640px;
  margin: 28px 0 0;
  color: rgba(23,23,18,.66);
  font-size: 1.05rem;
  line-height: 1.72;
}
.intro__mail {
  align-self: end;
  white-space: nowrap;
  font-size: .92rem;
  font-weight: 750;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 5px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(22px, 6vw, 110px);
  background: var(--paper-soft);
  font-size: .82rem;
  color: rgba(23,23,18,.68);
}
.site-footer a { text-decoration: none; font-weight: 700; }

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(.78); opacity: .68; }
}

@media (max-width: 900px) {
  .hero__shade {
    background: linear-gradient(90deg, rgba(12,13,10,.83), rgba(12,13,10,.35)), linear-gradient(0deg, rgba(12,13,10,.5), transparent 44%);
  }
  .intro { grid-template-columns: 1fr; }
  .intro__mail { align-self: start; justify-self: start; }
}

@media (max-width: 640px) {
  .site-header { padding-top: 20px; padding-bottom: 20px; }
  .status { font-size: 0; }
  .status__dot { margin-right: 4px; }
  .brand__name { font-size: 1rem; }
  .hero__content { padding-top: 70px; }
  h1 { font-size: clamp(3rem, 16vw, 5.4rem); }
  .hero__meta { grid-template-columns: 1fr; }
  .hero__meta span { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.16); padding-top: 14px; padding-bottom: 14px; }
  .hero__meta span:last-child { border-bottom: 0; }
  .site-footer { flex-direction: column; }
}

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