:root {
  color-scheme: dark;
  --bg: #020a10;
  --panel: #05111a;
  --panel-2: #07151d;
  --text: #f3eee5;
  --muted: #c8c5bd;
  --gold: #c99a34;
  --gold-2: #8f6824;
  --line: rgba(201, 154, 52, 0.72);
  --max: 1840px;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
}

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

a {
  color: inherit;
  text-decoration: none;
}

.section-dark {
  background: var(--bg);
  border-bottom: 2px solid var(--line);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 320px 1fr auto;
  align-items: center;
  gap: 42px;
  min-height: 154px;
  padding: 18px 80px 18px;
  background: rgba(1, 8, 14, 0.94);
  border-bottom: 2px solid var(--line);
  backdrop-filter: blur(12px);
}

.brand {
  display: block;
  width: 250px;
  height: 118px;
  overflow: hidden;
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 2.2vw, 56px);
  font-size: clamp(11px, 0.9vw, 17px);
  font-weight: 800;
  text-transform: uppercase;
  color: rgba(245, 241, 235, 0.78);
}

.header-cta,
.button,
.footer-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 70px;
  padding: 0 42px;
  border: 3px solid var(--gold-2);
  color: var(--gold);
  font-size: clamp(13px, 0.9vw, 20px);
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.hero {
  position: relative;
  min-height: 1018px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 10, 16, 1) 0%, rgba(2, 10, 16, 0.98) 30%, rgba(2, 10, 16, 0.62) 54%, rgba(2, 10, 16, 0.14) 78%),
    linear-gradient(0deg, rgba(2, 10, 16, 0.42), rgba(2, 10, 16, 0.08)),
    url("./assets/crops/hero-house-blended.jpg") center right / cover no-repeat;
  filter: saturate(0.9) contrast(1.05);
  transform: scale(1.03);
}

.hero-content {
  position: relative;
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 150px 90px 62px;
}

.eyebrow {
  margin: 0 0 44px;
  color: var(--gold);
  font-size: clamp(12px, 1.25vw, 24px);
  font-weight: 900;
  letter-spacing: 10px;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow span::before {
  content: "•";
  padding: 0 16px;
}

.compact {
  margin-bottom: 26px;
  font-size: clamp(12px, 0.9vw, 19px);
  letter-spacing: 7px;
}

.centered {
  text-align: center;
}

.hero h1,
.about-copy h2,
.services h2,
.advantage h2,
.founder h2,
.consult h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.05;
}

.hero h1 {
  max-width: 980px;
  font-size: clamp(54px, 4.8vw, 112px);
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
}

em {
  color: var(--gold);
  font-style: normal;
}

.hero-copy {
  max-width: 760px;
  margin: 42px 0 58px;
  color: var(--muted);
  font-size: clamp(18px, 1.25vw, 30px);
  font-weight: 700;
  line-height: 1.55;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.button-gold {
  min-width: 360px;
  border-color: var(--gold);
  background: linear-gradient(135deg, #d5aa43, #be8c2c);
  color: #111;
}

.button-outline {
  min-width: 340px;
  background: rgba(2, 10, 16, 0.68);
}

.presence {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 98px;
  color: var(--muted);
}

.presence strong {
  color: var(--gold);
  font-size: 21px;
  letter-spacing: 5px;
  line-height: 1.8;
  text-transform: uppercase;
}

.presence p {
  max-width: 230px;
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.45;
}

.divider {
  width: 2px;
  height: 92px;
  background: var(--line);
}

.map-mark {
  color: var(--gold);
  font-size: 54px;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(360px, 48%) 1fr;
  min-height: 760px;
}

.about-image {
  background:
    linear-gradient(90deg, transparent, rgba(2, 10, 16, 0.2)),
    url("./assets/crops/about-building.png") center / cover no-repeat;
}

.about-copy {
  padding: 95px clamp(46px, 5vw, 110px);
}

.about-copy h2 {
  max-width: 820px;
  font-size: clamp(42px, 3.8vw, 78px);
}

.about-copy > p {
  max-width: 920px;
  margin: 54px 0 76px;
  color: var(--muted);
  font-size: clamp(18px, 1.12vw, 27px);
  font-weight: 700;
  line-height: 1.55;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.stats article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px 18px;
  align-items: center;
  min-height: 90px;
  padding-left: 22px;
  border-left: 3px solid var(--line);
}

.icon,
.line-icon {
  color: var(--gold);
  font-size: 52px;
  line-height: 1;
}

.stats strong,
.stats small {
  display: block;
  text-transform: uppercase;
}

.stats strong {
  font-size: 17px;
  letter-spacing: 2px;
}

.stats small {
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.5;
}

.services {
  padding: 42px clamp(40px, 4.4vw, 82px) 70px;
  background:
    radial-gradient(circle at 50% 20%, rgba(129, 103, 67, 0.08), transparent 32%),
    var(--panel);
}

.services h2 {
  margin-bottom: 44px;
  text-align: center;
  font-size: clamp(42px, 3.2vw, 68px);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  max-width: var(--max);
  margin: 0 auto;
}

.service-card {
  overflow: hidden;
  border: 2px solid rgba(201, 154, 52, 0.45);
  background: #030c13;
}

.service-card img {
  width: 100%;
  aspect-ratio: 1.18;
  object-fit: cover;
}

.service-card div {
  min-height: 310px;
  padding: 30px 28px;
}

.service-card .line-icon {
  font-size: 50px;
}

.service-card h3,
.project-grid h3 {
  margin: 18px 0 16px;
  font-family: var(--serif);
  font-size: clamp(24px, 1.45vw, 34px);
  font-weight: 400;
  line-height: 1.12;
}

.service-card p {
  margin: 0 0 34px;
  color: var(--muted);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.45;
}

.service-card a,
.section-row a,
.consult a {
  color: var(--gold);
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.advantage {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 54px;
  padding: 100px clamp(48px, 5vw, 120px);
}

.advantage h2 {
  max-width: 410px;
  color: var(--muted);
  font-size: clamp(44px, 3.2vw, 72px);
}

.advantage-intro p,
.advantage-step p {
  color: var(--muted);
  font-size: clamp(18px, 1.15vw, 27px);
  line-height: 1.45;
}

.advantage-step {
  min-height: 260px;
  padding-left: 56px;
  border-left: 4px solid var(--line);
}

.advantage-step h3 {
  margin: 16px 0 22px;
  color: var(--gold);
  font-size: clamp(20px, 1.3vw, 31px);
  font-weight: 400;
  letter-spacing: 9px;
  text-transform: uppercase;
}

.projects {
  padding: 34px clamp(36px, 3vw, 72px) 70px;
}

.section-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  max-width: var(--max);
  margin: 0 auto 36px;
}

.section-row h2 {
  margin: 0;
  color: var(--gold);
  font-size: clamp(24px, 1.6vw, 36px);
  font-weight: 400;
  letter-spacing: 8px;
  text-transform: uppercase;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 28px;
  max-width: var(--max);
  margin: 0 auto;
}

.project-grid img {
  width: 100%;
  aspect-ratio: 1.03;
  object-fit: cover;
  filter: grayscale(1) contrast(1.05);
}

.project-grid h3 {
  margin: 26px 0 6px;
  color: var(--gold);
  font-size: clamp(18px, 1.25vw, 30px);
  letter-spacing: 7px;
  text-transform: uppercase;
}

.project-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 22px;
}

.founder {
  display: grid;
  grid-template-columns: 360px 1fr 0.75fr;
  gap: clamp(48px, 7vw, 140px);
  align-items: center;
  padding: 70px clamp(60px, 7vw, 150px);
}

.founder > img {
  width: 360px;
  height: 520px;
  object-fit: cover;
}

.founder h2 {
  font-size: clamp(44px, 3.1vw, 72px);
}

.founder p {
  color: var(--muted);
  font-size: clamp(17px, 1.05vw, 24px);
  line-height: 1.55;
}

blockquote {
  margin: 0;
  padding-left: 80px;
  border-left: 5px solid var(--line);
  color: var(--muted);
  font-size: clamp(28px, 2.1vw, 48px);
  line-height: 1.38;
}

blockquote span {
  display: block;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 100px;
  line-height: 0.7;
}

cite {
  display: block;
  margin-top: 24px;
  color: var(--gold);
  font-style: normal;
}

.consult {
  min-height: 520px;
  padding: 70px clamp(40px, 4vw, 90px);
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.86) 0%, rgba(0, 0, 0, 0.52) 34%, rgba(0, 0, 0, 0.08) 80%),
    url("./assets/crops/consult-building.png") center / cover no-repeat;
}

.consult div {
  max-width: 760px;
}

.consult h2 {
  font-family: var(--sans);
  font-size: clamp(48px, 4vw, 86px);
  line-height: 1.25;
}

.consult p {
  color: var(--text);
  font-size: clamp(20px, 1.35vw, 31px);
  line-height: 1.42;
}

.logos {
  padding: 44px clamp(40px, 4vw, 80px) 70px;
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: center;
  gap: clamp(44px, 6vw, 120px);
  max-width: var(--max);
  margin: 44px auto 74px;
}

.logo-grid img {
  max-height: 110px;
  margin: 0 auto;
  object-fit: contain;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.55fr 1.45fr;
  gap: clamp(40px, 5vw, 110px);
  padding: 70px clamp(40px, 4vw, 82px) 95px;
  border-bottom: 0;
}

.site-footer section + section {
  padding-left: clamp(30px, 4vw, 80px);
  border-left: 4px solid var(--line);
}

.footer-brand h2 {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: clamp(52px, 4vw, 82px);
  font-weight: 400;
  letter-spacing: 12px;
  text-transform: uppercase;
}

.footer-brand p:first-of-type,
.site-footer h3 {
  color: var(--gold);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 7px;
  text-transform: uppercase;
}

.site-footer p,
.site-footer a {
  display: block;
  margin: 0 0 13px;
  color: var(--text);
  font-size: clamp(18px, 1.2vw, 28px);
  line-height: 1.25;
}

.footer-brand p:last-of-type {
  max-width: 500px;
  margin-top: 40px;
  line-height: 1.35;
}

.socials {
  display: flex;
  gap: 20px;
  margin-top: 34px;
}

.socials a {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 12px;
  background: #1478f2;
  font-size: 34px;
  font-weight: 900;
}

.socials img {
  width: 58px;
  height: 58px;
}

.footer-cta {
  margin-top: 58px;
  color: var(--gold) !important;
}

@media (max-width: 1300px) {
  .site-header {
    grid-template-columns: 180px 1fr;
    min-height: auto;
    padding: 18px 28px;
  }

  .brand {
    width: 150px;
  }

  .main-nav {
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 12px 20px;
  }

  .header-cta {
    grid-column: 2;
    justify-self: end;
    min-height: 44px;
    padding: 0 18px;
    font-size: 11px;
  }

  .service-grid,
  .project-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .stats,
  .advantage,
  .founder,
  .site-footer {
    grid-template-columns: repeat(2, 1fr);
  }

  .logo-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 760px) {
  .site-header {
    position: relative;
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 18px;
  }

  .brand {
    width: 140px;
  }

  .main-nav {
    justify-content: flex-start;
    font-size: 10px;
  }

  .header-cta {
    grid-column: auto;
    justify-self: start;
  }

  .hero {
    min-height: 740px;
  }

  .hero-content {
    padding: 90px 24px 44px;
  }

  .eyebrow {
    letter-spacing: 4px;
  }

  .actions,
  .presence {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    min-width: 0;
    width: 100%;
  }

  .presence {
    gap: 18px;
    margin-top: 70px;
  }

  .divider {
    width: 100%;
    height: 2px;
  }

  .about-grid,
  .stats,
  .service-grid,
  .advantage,
  .project-grid,
  .founder,
  .logo-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .about-image {
    min-height: 320px;
  }

  .about-copy,
  .services,
  .advantage,
  .projects,
  .founder,
  .logos,
  .site-footer {
    padding-left: 24px;
    padding-right: 24px;
  }

  .founder > img {
    width: 100%;
    height: auto;
    max-height: 560px;
  }

  blockquote {
    padding-left: 28px;
  }

  .site-footer section + section {
    padding-left: 0;
    padding-top: 34px;
    border-left: 0;
    border-top: 3px solid var(--line);
  }
}
