:root {
  --bg: #050505;
  --bg-soft: #0c0c0c;
  --bg-card: #101010;
  --lime: #7ac142;
  --lime-bright: #8ed64b;
  --lime-deep: #4f8a24;
  --silver: #d8d8d8;
  --white: #f5f5f5;
  --muted: #9b9b9b;
  --line: rgba(255, 255, 255, 0.1);
  --font-display: "Oswald", "Arial Narrow", Impact, sans-serif;
  --font-body: "Montserrat", "Segoe UI", Helvetica, Arial, sans-serif;
  --max: 1120px;
  --header: 76px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--lime);
  text-decoration: none;
}

a:hover {
  color: var(--lime-bright);
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -40px;
  background: var(--lime);
  color: #111;
  padding: 8px 12px;
  z-index: 100;
  font-weight: 700;
}

.skip-link:focus {
  top: 12px;
}

.wrap {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header);
  display: flex;
  align-items: center;
  background: rgba(5, 5, 5, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.header-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
}

.brand img {
  width: 64px;
  height: 40px;
  object-fit: contain;
}

.brand-word {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.08em;
  font-size: 1.2rem;
}

.brand-name .num {
  color: var(--lime);
}

.brand-sub {
  margin-top: 4px;
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  color: var(--muted);
  text-transform: uppercase;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--white);
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  position: relative;
  margin-inline: auto;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle span::before {
  top: -6px;
}

.nav-toggle span::after {
  top: 6px;
}

.site-nav ul {
  display: flex;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav a {
  color: var(--silver);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--lime);
}

.hero {
  position: relative;
  padding: 72px 0 88px;
  isolation: isolate;
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  bottom: -40px;
  width: 280px;
  height: 420px;
  background: url("../assets/palm.svg") no-repeat bottom center / contain;
  opacity: 0.28;
  pointer-events: none;
  z-index: -1;
}

.hero::before {
  left: -40px;
}

.hero::after {
  right: -40px;
  transform: scaleX(-1);
}

.hero-glow {
  position: absolute;
  inset: auto 10% -80px;
  height: 180px;
  background: radial-gradient(ellipse at center, rgba(122, 193, 66, 0.18), transparent 70%);
  z-index: -1;
}

.hero-inner {
  text-align: center;
}

.logo-mark {
  width: min(280px, 70vw);
  margin: 0 auto 18px;
  filter: drop-shadow(0 8px 24px rgba(122, 193, 66, 0.18));
}

.wordmark {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 9vw, 6.4rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 0.9;
}

.wordmark .lovett {
  background: linear-gradient(180deg, #ffffff 0%, #cfcfcf 48%, #9b9b9b 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.wordmark .num {
  color: var(--lime);
  text-shadow: 0 0 24px rgba(122, 193, 66, 0.35);
}

.tagline {
  margin: 18px 0 8px;
  color: var(--silver);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.34em;
  text-transform: uppercase;
}

.tagline-rule {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.tagline-rule::before,
.tagline-rule::after {
  content: "";
  width: 56px;
  height: 2px;
  background: var(--lime);
}

.subline {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.location {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  color: var(--silver);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.pin {
  width: 14px;
  height: 14px;
  color: var(--lime);
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: none;
  border-radius: 4px;
  font-family: inherit;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.78rem;
  cursor: pointer;
}

.btn-primary {
  background: var(--lime);
  color: #111;
}

.btn-primary:hover {
  background: var(--lime-bright);
  color: #111;
}

.btn-ghost {
  border: 1px solid var(--lime);
  color: var(--lime);
}

.btn-ghost:hover {
  background: rgba(122, 193, 66, 0.12);
  color: var(--lime-bright);
}

.section {
  padding: 72px 0;
}

.section-head {
  text-align: center;
  margin-bottom: 40px;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--lime);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.1rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.05;
}

.lede {
  max-width: 640px;
  margin: 12px auto 0;
  color: var(--muted);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.service-card {
  background: linear-gradient(180deg, #141414, #0b0b0b);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 28px 16px 22px;
  text-align: center;
  min-height: 240px;
}

.service-card:hover {
  border-color: rgba(122, 193, 66, 0.45);
  box-shadow: 0 0 0 1px rgba(122, 193, 66, 0.12);
}

.hex {
  width: 84px;
  height: 92px;
  margin: 0 auto 16px;
}

.service-card h3 {
  margin: 0 0 8px;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.about,
.contact {
  background: var(--bg-soft);
}

.about-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.about p,
.contact p {
  color: var(--silver);
}

.panel {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 28px;
}

.email-link {
  display: inline-block;
  margin-top: 8px;
  font-size: 1.15rem;
  font-weight: 700;
  word-break: break-word;
}

.panel .location {
  margin-top: 12px;
}

.form-hint {
  color: var(--muted);
  font-size: 0.88rem;
}

.touch-form .field {
  margin-bottom: 16px;
}

.touch-form label {
  display: block;
  margin-bottom: 6px;
  color: var(--lime);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.touch-form input,
.touch-form select,
.touch-form textarea {
  width: 100%;
  background: #0a0a0a;
  border: 1px solid var(--line);
  color: var(--white);
  padding: 12px 14px;
  border-radius: 6px;
  font: inherit;
}

.touch-form select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--lime) 50%),
    linear-gradient(135deg, var(--lime) 50%, transparent 50%);
  background-position: calc(100% - 18px) calc(50% - 3px), calc(100% - 12px) calc(50% - 3px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.touch-form input:focus,
.touch-form select:focus,
.touch-form textarea:focus {
  outline: 2px solid var(--lime);
  border-color: var(--lime);
}

.touch-form textarea {
  resize: vertical;
  min-height: 96px;
}

.form-status {
  min-height: 1.4em;
  margin: 12px 0 0;
  color: var(--lime-bright);
  font-size: 0.88rem;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 28px 0 36px;
  text-align: center;
}

.motto {
  margin: 0;
  color: var(--lime);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.footer-meta {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.hiring-hero .wordmark {
  font-size: clamp(4rem, 14vw, 8.4rem);
}

.hiring {
  display: block;
  color: var(--lime);
  text-shadow:
    0 2px 0 var(--lime-deep),
    0 10px 28px rgba(122, 193, 66, 0.25);
}

.perks {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 18px;
  margin: 22px 0 0;
  color: var(--silver);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.perks span + span::before {
  content: "|";
  margin-right: 18px;
  color: var(--lime);
}

.apply-box {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.flyer-frame {
  max-width: 520px;
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}

.flyer-frame figcaption {
  padding: 12px;
  color: var(--muted);
  font-size: 0.82rem;
  text-align: center;
}

@media (max-width: 980px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 720px) {
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .site-nav {
    position: absolute;
    top: var(--header);
    left: 0;
    right: 0;
    background: #0a0a0a;
    border-bottom: 1px solid var(--line);
    display: none;
  }

  .site-nav.is-open {
    display: block;
  }

  .site-nav ul {
    flex-direction: column;
    gap: 0;
    padding: 8px 20px 16px;
  }

  .site-nav a {
    display: block;
    padding: 12px 0;
  }

  body.nav-open {
    overflow: hidden;
  }

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

  .hero {
    padding: 48px 0 64px;
  }

  .hero::before,
  .hero::after {
    width: 160px;
    height: 240px;
    opacity: 0.18;
  }
}

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