:root {
  color-scheme: dark;
  --ink: #101713;
  --forest: #142a20;
  --moss: #a9cb64;
  --lime: #d5f27c;
  --paper: #f3f1e9;
  --paper-muted: #c9ccc4;
  --line: rgba(255, 255, 255, 0.18);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-size: 1rem;
  line-height: 1.6;
}

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  z-index: 20;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.7rem 1rem;
  background: var(--paper);
  color: var(--ink);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem clamp(1.25rem, 5vw, 5rem);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: white;
  font-size: 0.95rem;
  font-weight: 750;
  letter-spacing: 0.18em;
  text-decoration: none;
}

.brand-mark {
  width: 2.2rem;
  height: 2.2rem;
  overflow: visible;
  fill: var(--lime);
  stroke: var(--lime);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3;
}

.brand-mark path {
  fill: none;
}

.header-link {
  padding-bottom: 0.2rem;
  border-bottom: 1px solid currentColor;
  font-size: 0.9rem;
  font-weight: 650;
  text-decoration: none;
}

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  overflow: hidden;
  align-items: center;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: 58% center;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(7, 13, 9, 0.93) 0%, rgba(7, 13, 9, 0.67) 38%, rgba(7, 13, 9, 0.08) 72%),
    linear-gradient(0deg, rgba(7, 13, 9, 0.66) 0%, transparent 38%);
}

.hero-content {
  position: relative;
  z-index: 1;
  min-width: 0;
  width: min(45rem, 90%);
  padding: 8.5rem clamp(1.25rem, 7vw, 7.5rem) 9rem;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0 0 1.3rem;
  color: var(--lime);
  font-size: 0.75rem;
  font-weight: 750;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow span {
  width: 2.4rem;
  height: 1px;
  background: currentColor;
}

h1,
h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.93;
}

h1 {
  max-width: 8ch;
  font-size: clamp(4.2rem, 10vw, 9.8rem);
}

h1 em {
  color: var(--lime);
  font-weight: 400;
}

.hero-copy {
  min-width: 0;
  max-width: 37rem;
  margin: 2rem 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  overflow-wrap: break-word;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem;
  margin-top: 2.2rem;
}

.button {
  display: inline-flex;
  min-height: 3.2rem;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.3rem;
  border: 0;
  border-radius: 0;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 750;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--lime);
  outline-offset: 3px;
}

.button-primary {
  background: var(--lime);
  color: var(--ink);
}

.coming-soon {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.82rem;
  font-weight: 650;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-foot {
  position: absolute;
  z-index: 1;
  right: clamp(1.25rem, 5vw, 5rem);
  bottom: 2rem;
  left: clamp(1.25rem, 5vw, 5rem);
  display: flex;
  justify-content: flex-end;
  gap: clamp(1rem, 4vw, 4rem);
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(3rem, 8vw, 8rem);
  padding: clamp(5rem, 10vw, 9rem) clamp(1.25rem, 7vw, 7.5rem);
  background: var(--paper);
  color: var(--ink);
}

.eyebrow-dark {
  color: #587a26;
}

.contact h2 {
  max-width: 10ch;
  font-size: clamp(3.1rem, 6vw, 6rem);
}

.contact-intro > p:last-child {
  max-width: 32rem;
  margin-top: 1.8rem;
  color: #4f5951;
  font-size: 1.05rem;
}

.contact-form {
  display: grid;
  align-content: start;
  gap: 1.4rem;
}

.form-trap {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

label {
  display: grid;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

input,
textarea {
  width: 100%;
  border: 1px solid #abb0a7;
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-size: 1rem;
  line-height: 1.5;
  text-transform: none;
}

input {
  min-height: 3.3rem;
  padding: 0.7rem 0.85rem;
}

textarea {
  min-height: 9rem;
  padding: 0.8rem 0.85rem;
  resize: vertical;
}

.form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.form-footer p {
  max-width: 30rem;
  margin: 0;
  color: #687169;
  font-size: 0.78rem;
  line-height: 1.5;
}

.form-footer a,
.site-footer a,
.privacy-content a {
  text-underline-offset: 0.2em;
}

.turnstile-widget {
  min-height: 4.1rem;
}

.button-dark {
  flex: 0 0 auto;
  background: var(--forest);
  color: white;
}

.button:disabled {
  cursor: wait;
  opacity: 0.68;
  transform: none;
}

.form-status {
  min-height: 1.5rem;
  margin: 0;
  color: #587a26;
  font-weight: 650;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
  padding: 2rem clamp(1.25rem, 5vw, 5rem);
  background: var(--ink);
  color: var(--paper-muted);
  font-size: 0.78rem;
}

.site-footer p {
  margin: 0;
}

.site-footer p:last-child {
  text-align: right;
}

.brand-footer {
  font-size: 0.78rem;
}

.brand-footer .brand-mark {
  width: 1.8rem;
  height: 1.8rem;
}

.privacy-page {
  min-height: 100vh;
  background: var(--paper);
  color: var(--ink);
}

.privacy-header {
  position: static;
  background: var(--ink);
}

.privacy-content {
  width: min(48rem, calc(100% - 2.5rem));
  margin: 0 auto;
  padding: clamp(5rem, 10vw, 8rem) 0;
}

.privacy-content h1 {
  max-width: none;
  color: var(--forest);
  font-size: clamp(3.4rem, 8vw, 6.5rem);
}

.privacy-content h2 {
  margin-top: 2.8rem;
  color: var(--forest);
  font-family: inherit;
  font-size: 1.1rem;
  font-weight: 750;
  letter-spacing: 0;
  line-height: 1.3;
}

.privacy-content p,
.privacy-content li {
  color: #4f5951;
}

.privacy-content .privacy-updated {
  margin-top: 1.5rem;
  color: #687169;
  font-size: 0.85rem;
}

@media (max-width: 760px) {
  .site-header {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .brand {
    font-size: 0.8rem;
  }

  .header-link {
    font-size: 0.8rem;
  }

  .hero {
    min-height: 50rem;
  }

  .hero-image {
    object-position: 67% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(7, 13, 9, 0.89), rgba(7, 13, 9, 0.34)),
      linear-gradient(0deg, rgba(7, 13, 9, 0.8), transparent 55%);
  }

  .hero-content {
    align-self: end;
    width: 100%;
    max-width: 100%;
    padding: 8rem 1.25rem 9rem;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(2.9rem, 15.5vw, 6rem);
    line-height: 0.96;
  }

  .hero-copy {
    width: 100%;
    max-width: 34rem;
  }

  .hero-foot {
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 0.6rem 1.3rem;
    font-size: 0.65rem;
  }

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

  .form-row {
    grid-template-columns: 1fr;
  }

  .form-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 0.7rem;
  }

  .site-footer p:last-child {
    text-align: left;
  }
}

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

  .button {
    transition: none;
  }
}
