
:root {
  --bg: #090b09;
  --panel: #111411;
  --panel-2: #151815;
  --text: #f4f5f2;
  --muted: #b5bab2;
  --line: rgba(255,255,255,.12);
  --accent: #a6cf38;
  --max: 1220px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, Arial, sans-serif;
  line-height: 1.55;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 20;
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(22px, 5vw, 76px);
  background: linear-gradient(to bottom, rgba(5,6,5,.82), transparent);
}
.brand img { width: 176px; filter: brightness(0) invert(1); }
nav { display: flex; gap: 34px; }
nav a {
  font-size: 13px;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: rgba(255,255,255,.82);
}
nav a:hover { color: var(--accent); }

.hero {
  min-height: 100svh;
  position: relative;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 132px clamp(22px, 6vw, 92px) 80px;
}
.hero-bg {
  position: absolute;
  inset: -4%;
  background: url("assets/hero.jpg") center / cover no-repeat;
  animation: drift 16s ease-in-out infinite alternate;
}
.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4,5,4,.97) 0%, rgba(4,5,4,.82) 34%, rgba(4,5,4,.18) 72%, rgba(4,5,4,.32) 100%),
    linear-gradient(0deg, rgba(4,5,4,.6) 0%, transparent 45%);
}
.hero-content {
  position: relative;
  z-index: 2;
  width: min(680px, 100%);
}
.eyebrow {
  margin: 0 0 16px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
}
h1, h2, h3 {
  font-family: "Barlow Condensed", Arial, sans-serif;
  text-transform: uppercase;
  margin-top: 0;
}
h1 {
  margin-bottom: 14px;
  font-size: clamp(74px, 10vw, 148px);
  line-height: .82;
  letter-spacing: -.025em;
}
.lead {
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 300;
  margin: 26px 0 10px;
}
.opening {
  color: var(--muted);
  margin: 0 0 34px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 210px;
  min-height: 58px;
  border: 1px solid var(--accent);
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 13px;
  transition: .25s ease;
}
.button:hover {
  background: var(--accent);
  color: #0a0c09;
  transform: translateY(-2px);
}
.scroll-cue {
  position: absolute;
  z-index: 2;
  bottom: 30px;
  left: 50%;
  width: 24px;
  height: 38px;
  border: 1px solid rgba(255,255,255,.38);
  border-radius: 18px;
}
.scroll-cue span {
  position: absolute;
  top: 8px;
  left: 10px;
  width: 3px;
  height: 7px;
  border-radius: 3px;
  background: var(--accent);
  animation: scroll 1.7s infinite;
}

.section {
  padding: 110px clamp(22px, 5vw, 76px);
  max-width: 1440px;
  margin: auto;
}
.section-heading { text-align: center; margin-bottom: 58px; }
.section-heading h2,
.contact-panel h2 {
  margin-bottom: 0;
  font-size: clamp(40px, 5vw, 70px);
  line-height: .95;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.feature {
  padding: 44px 32px 48px;
  border-right: 1px solid var(--line);
}
.feature:last-child { border-right: 0; }
.icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(166,207,56,.5);
  color: var(--accent);
  margin-bottom: 24px;
  font-size: 23px;
}
.feature h3 {
  font-size: 24px;
  margin-bottom: 12px;
}
.feature p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.contact-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
}
.contact-panel {
  min-height: 520px;
  padding: 92px clamp(28px, 6vw, 92px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--panel);
}
.contact-panel:first-child {
  background:
    linear-gradient(rgba(6,7,6,.82), rgba(6,7,6,.92)),
    url("assets/hero.jpg") center / cover;
}
.contact-panel + .contact-panel { border-left: 1px solid var(--line); }
.contact-panel > p:not(.eyebrow) {
  color: var(--muted);
  max-width: 520px;
}
.text-link {
  margin-top: 20px;
  font-size: 18px;
  color: var(--accent);
}
.text-link span { display: inline-block; transition: .2s; }
.text-link:hover span { transform: translate(4px,-4px); }
address {
  margin-top: 22px;
  color: var(--muted);
  font-style: normal;
}

footer {
  padding: 34px clamp(22px, 5vw, 76px);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  border-top: 1px solid var(--line);
  color: #aeb3ac;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
}
footer img {
  width: 146px;
  filter: brightness(0) invert(1);
}
footer p { margin: 0; }
footer p:last-child { text-align: right; }

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .75s ease, transform .75s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes drift {
  from { transform: scale(1.02); }
  to { transform: scale(1.08) translate3d(-1%, -1%, 0); }
}
@keyframes scroll {
  0% { opacity: 0; transform: translateY(0); }
  30% { opacity: 1; }
  100% { opacity: 0; transform: translateY(13px); }
}

@media (max-width: 900px) {
  .site-header { height: 76px; }
  .brand img { width: 142px; }
  nav a:first-child { display: none; }
  .hero {
    min-height: 820px;
    align-items: end;
    padding-bottom: 92px;
  }
  .hero-bg { background-position: 62% center; }
  .hero-shade {
    background:
      linear-gradient(0deg, rgba(4,5,4,.98) 0%, rgba(4,5,4,.78) 48%, rgba(4,5,4,.32) 100%);
  }
  h1 { font-size: clamp(72px, 22vw, 118px); }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .feature:nth-child(2) { border-right: 0; }
  .feature:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .contact-section { grid-template-columns: 1fr; }
  .contact-panel + .contact-panel { border-left: 0; border-top: 1px solid var(--line); }
  footer { grid-template-columns: 1fr; text-align: center; }
  footer img { margin: auto; }
  footer p:last-child { text-align: center; }
}
@media (max-width: 560px) {
  nav { display: none; }
  .hero { padding-left: 22px; padding-right: 22px; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature { border-right: 0; border-bottom: 1px solid var(--line); }
  .feature:last-child { border-bottom: 0; }
  .section { padding-top: 80px; padding-bottom: 80px; }
  .contact-panel { min-height: 430px; padding: 70px 24px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
