:root {
  --ink: #11140f;
  --ink-soft: #2f352b;
  --paper: #f7f2e4;
  --cream: #fffaf0;
  --lime: #b7ef23;
  --lime-dark: #76a900;
  --grass: #315b16;
  --deep-grass: #17230f;
  --moss: #243715;
  --charcoal: #090b08;
  --gold: #f0ba48;
  --line: rgba(17, 20, 15, 0.16);
  --shadow: 0 22px 58px rgba(0, 0, 0, 0.24);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Oswald, Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

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

a {
  color: inherit;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px clamp(16px, 4vw, 58px);
  color: #fff;
  background: rgba(8, 10, 7, 0.82);
  border-bottom: 1px solid rgba(183, 239, 35, 0.24);
  backdrop-filter: blur(12px);
}

.brand img {
  width: 74px;
  height: auto;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.36));
}

.nav {
  display: flex;
  gap: clamp(12px, 3vw, 30px);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav a {
  position: relative;
  text-decoration: none;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -7px;
  height: 3px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--lime);
  transition: transform 180ms ease;
}

.nav a:hover::after,
.nav a:focus::after {
  transform: scaleX(1);
}

.hero {
  position: relative;
  min-height: 88vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 390px);
  gap: clamp(28px, 5vw, 66px);
  align-items: center;
  padding: 106px clamp(18px, 6vw, 86px) 58px;
  color: #fff;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(3, 5, 3, 0.9) 0%, rgba(7, 10, 5, 0.72) 42%, rgba(7, 9, 5, 0.2) 100%),
    linear-gradient(0deg, rgba(5, 7, 4, 0.84) 0%, rgba(5, 7, 4, 0.18) 42%),
    url("assets/landscape-hero-ai.webp") center / cover no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 190px;
  background:
    linear-gradient(180deg, rgba(7, 9, 5, 0), rgba(7, 9, 5, 0.92)),
    linear-gradient(90deg, rgba(183, 239, 35, 0.16), transparent 42%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 78% 26%, rgba(255, 212, 92, 0.2), transparent 24%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.42), transparent 60%);
}

.hero-content,
.hero-card {
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 760px;
}

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

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 0.98;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(4.4rem, 12vw, 8.6rem);
  text-shadow: 0 7px 26px rgba(0, 0, 0, 0.5);
}

h1 span {
  color: #f0f0e7;
  text-shadow:
    3px 3px 0 #111,
    5px 5px 0 rgba(183, 239, 35, 0.42);
}

h1 em {
  display: block;
  margin-top: -0.13em;
  color: var(--lime);
  font-family: "Permanent Marker", "Arial Black", cursive;
  font-size: 0.56em;
  font-style: normal;
  text-transform: none;
  transform: rotate(-2deg);
}

h2 {
  max-width: 850px;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(2.7rem, 6vw, 5rem);
}

h3 {
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 2rem;
}

.lead {
  max-width: 610px;
  margin: 18px 0 0;
  color: #f4efdf;
  font-size: clamp(1.18rem, 2.5vw, 1.45rem);
  font-weight: 400;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 20px;
  border: 2px solid transparent;
  border-radius: 5px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
}

.button-primary {
  color: #12160d;
  background: linear-gradient(180deg, #ceff38, var(--lime));
}

.button-secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.68);
  background: rgba(255, 255, 255, 0.08);
}

.hero-card {
  padding: 22px;
  color: #fff;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.03)),
    rgba(4, 6, 3, 0.7);
  border: 1px solid rgba(183, 239, 35, 0.28);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-card img {
  width: min(205px, 100%);
  height: auto;
  margin: 0 auto 18px;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.32));
}

.hero-card .role {
  margin: 0;
  color: var(--lime);
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 2.6rem;
  line-height: 0.95;
  text-transform: uppercase;
}

.subrole {
  margin: 2px 0 18px;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-card a {
  display: block;
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
}

.section {
  position: relative;
  padding: clamp(58px, 8vw, 100px) clamp(18px, 6vw, 86px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 370px);
  gap: clamp(28px, 6vw, 74px);
  align-items: center;
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.98), rgba(247, 242, 228, 0.96)),
    url("assets/landscape-detail-ai.webp") right center / min(760px, 58vw) auto no-repeat;
}

.intro::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 8px;
  background: linear-gradient(90deg, var(--lime), var(--gold), var(--lime-dark));
}

.section-copy p:last-child,
.values-copy p {
  max-width: 720px;
  margin: 22px 0 0;
  color: var(--ink-soft);
  font-size: 1.18rem;
}

.quote-strip {
  padding: 28px;
  color: #fff;
  background:
    linear-gradient(145deg, rgba(183, 239, 35, 0.16), transparent),
    var(--charcoal);
  border: 1px solid rgba(183, 239, 35, 0.3);
  border-radius: 8px;
  box-shadow: 0 20px 45px rgba(28, 42, 18, 0.18);
}

.quote-strip p {
  margin: 0;
  color: var(--lime);
  font-family: "Permanent Marker", cursive;
  font-size: 1.45rem;
}

.quote-strip strong {
  display: block;
  margin-top: 8px;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(3.2rem, 7vw, 5.2rem);
  line-height: 0.9;
  text-transform: uppercase;
}

.services {
  color: #fff;
  background:
    linear-gradient(180deg, rgba(9, 12, 7, 0.9), rgba(9, 12, 7, 0.94)),
    url("assets/landscape-detail-ai.webp") center / cover no-repeat;
  overflow: hidden;
}

.services::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 85% 22%, rgba(240, 186, 72, 0.18), transparent 30%),
    linear-gradient(90deg, rgba(183, 239, 35, 0.1), transparent 42%);
}

.section-heading,
.service-grid {
  position: relative;
  z-index: 1;
}

.section-heading {
  display: grid;
  gap: 10px;
  margin-bottom: 34px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-grid article {
  min-height: 250px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.03)),
    rgba(0, 0, 0, 0.34);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.2);
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 70px;
  height: 38px;
  margin-bottom: 28px;
  padding: 0 12px;
  color: #12160d;
  background: var(--lime);
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.service-grid p {
  margin: 12px 0 0;
  color: #e9ecdf;
  font-size: 1.05rem;
}

.values {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(270px, 0.82fr);
  gap: clamp(28px, 5vw, 66px);
  align-items: center;
  background:
    linear-gradient(90deg, rgba(247, 242, 228, 0.98), rgba(255, 250, 240, 0.86)),
    radial-gradient(circle at 85% 18%, rgba(240, 186, 72, 0.38), transparent 30%);
}

blockquote {
  margin: 0;
  padding: 30px;
  color: #fff;
  background:
    linear-gradient(145deg, rgba(183, 239, 35, 0.16), transparent 45%),
    var(--moss);
  border-left: 7px solid var(--lime);
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(36, 55, 21, 0.2);
}

blockquote p {
  margin: 0;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 0.98;
  text-transform: uppercase;
}

blockquote cite {
  display: block;
  margin-top: 18px;
  color: var(--lime);
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(6, 8, 5, 0.94), rgba(24, 38, 14, 0.76)),
    url("assets/landscape-detail-ai.webp") center / cover no-repeat;
}

.cta h2 {
  max-width: none;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px 24px;
  padding: 24px clamp(18px, 6vw, 86px);
  color: #fff;
  background: #050604;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--lime);
  font-weight: 700;
  text-decoration: none;
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
    padding-top: 116px;
  }

  .hero-card {
    max-width: 430px;
  }

  .intro,
  .values,
  .service-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .site-header {
    position: absolute;
    align-items: flex-start;
    padding-top: 10px;
  }

  .brand img {
    width: 70px;
  }

  .nav {
    gap: 10px;
    padding-top: 8px;
    font-size: 0.78rem;
  }

  .hero {
    padding: 104px 16px 46px;
  }

  h1 {
    font-size: clamp(4rem, 20vw, 5.6rem);
  }

  .lead {
    font-size: 1.1rem;
  }

  .hero-card {
    padding: 18px;
  }

  .hero-card img {
    display: none;
  }

  .hero-card .role {
    font-size: 2.1rem;
  }

  .subrole {
    margin-bottom: 8px;
    font-size: 0.86rem;
  }

  .hero-card a {
    padding: 10px 0;
    font-size: 1rem;
  }

  .button {
    width: 100%;
  }

  .quote-strip,
  blockquote,
  .service-grid article {
    padding: 22px;
  }

  .cta {
    display: grid;
  }
}
