:root {
  --ink: #18211c;
  --muted: #5c665e;
  --line: #d9ded7;
  --paper: #f7f6f0;
  --white: #ffffff;
  --forest: #214b35;
  --field: #ba9a5a;
  --clay: #8b4f35;
  --shadow: 0 24px 70px rgba(24, 33, 28, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 86px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.5;
}

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

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(24, 33, 28, 0.94);
  color: var(--white);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  width: max-content;
  font-weight: 800;
}

.brand-mark {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.13);
  font-size: 0.8rem;
  letter-spacing: 0;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 3vw, 34px);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.94rem;
  font-weight: 600;
}

.header-cta {
  justify-self: end;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.12);
  font-size: 0.88rem;
  font-weight: 700;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #151c18;
  color: var(--white);
  contain: paint;
}

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

.hero-image {
  object-fit: cover;
  transform: translateZ(0);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(13, 21, 16, 0.88) 0%, rgba(13, 21, 16, 0.63) 43%, rgba(13, 21, 16, 0.2) 100%),
    linear-gradient(0deg, rgba(13, 21, 16, 0.86) 0%, rgba(13, 21, 16, 0.1) 52%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto clamp(120px, 16vh, 180px);
  padding: 0 clamp(0px, 4vw, 48px);
}

.eyebrow,
.section-label {
  margin: 0 0 18px;
  color: var(--field);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 20px;
  font-size: clamp(4.3rem, 12vw, 10.5rem);
  line-height: 0.86;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 640px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.13rem, 2vw, 1.45rem);
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 13px 20px;
  border: 1px solid transparent;
  font-weight: 800;
}

.button.primary {
  background: var(--field);
  color: #17120a;
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--white);
}

.hero-stats {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(980px, calc(100% - 36px));
  margin: 0 auto -1px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-bottom: 0;
  background: rgba(10, 17, 13, 0.86);
}

.hero-stats div {
  min-height: 108px;
  padding: 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-stats div:last-child {
  border-right: 0;
}

.hero-stats strong,
.hero-stats span {
  display: block;
}

.hero-stats strong {
  margin-bottom: 5px;
  color: var(--white);
  font-size: 1.25rem;
}

.hero-stats span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
}

.section {
  scroll-margin-top: 86px;
  display: grid;
  grid-template-columns: minmax(140px, 0.35fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 86px);
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(76px, 10vw, 132px) clamp(18px, 4vw, 48px);
}

.section-copy h2,
.approach-item h2,
.contact-section h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 4.1rem);
  line-height: 1.03;
}

.section-copy p,
.approach-item p,
.contact-section p {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.08rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 clamp(18px, 4vw, 48px) clamp(76px, 9vw, 120px);
  gap: 16px;
}

.feature-card {
  min-height: 268px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.58);
}

.feature-number {
  display: block;
  margin-bottom: 46px;
  color: var(--clay);
  font-weight: 800;
}

.feature-card h3 {
  margin-bottom: 12px;
  font-size: 1.35rem;
}

.feature-card p {
  color: var(--muted);
}

.seller-section {
  scroll-margin-top: 86px;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 0.62fr);
  gap: clamp(34px, 7vw, 92px);
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(76px, 9vw, 118px) clamp(18px, 4vw, 48px);
  border-top: 1px solid var(--line);
}

.seller-content h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 4.1rem);
  line-height: 1.03;
}

.seller-content p {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.08rem;
}

.seller-points {
  display: grid;
  gap: 12px;
  align-self: start;
}

.seller-points div {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.seller-points strong,
.seller-points span {
  display: block;
}

.seller-points strong {
  margin-bottom: 7px;
  color: var(--ink);
  font-size: 1.05rem;
}

.seller-points span {
  color: var(--muted);
  font-size: 0.96rem;
}

.approach {
  align-items: start;
  border-top: 1px solid var(--line);
}

.approach-list {
  display: grid;
  gap: 34px;
}

.approach-item {
  padding-bottom: 34px;
  border-bottom: 1px solid var(--line);
}

.approach-item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.statement {
  padding: clamp(70px, 11vw, 140px) clamp(18px, 6vw, 88px);
  background: var(--forest);
  color: var(--white);
}

.statement p {
  max-width: 1080px;
  margin: 0 auto;
  font-size: clamp(2.2rem, 5vw, 5.5rem);
  font-weight: 800;
  line-height: 1;
}

.contact-section {
  scroll-margin-top: 86px;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
  gap: clamp(34px, 7vw, 92px);
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(76px, 10vw, 128px) clamp(18px, 4vw, 48px);
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #cbd2ca;
  border-radius: 6px;
  padding: 13px 14px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
}

.hidden-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

textarea {
  resize: vertical;
}

.form-button {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 24px clamp(18px, 4vw, 56px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.92rem;
}

@media (max-width: 820px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .header-cta {
    padding: 9px 12px;
    font-size: 0.8rem;
  }

  .hero {
    min-height: 88vh;
  }

  .hero-content {
    margin: 0 auto 132px;
    padding: 0;
  }

  h1 {
    font-size: clamp(3.7rem, 17vw, 6rem);
  }

  .hero-stats,
  .feature-grid,
  .section,
  .seller-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    width: calc(100% - 24px);
  }

  .hero-stats div {
    min-height: 92px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .hero-stats div:last-child {
    border-bottom: 0;
  }

  .section {
    gap: 12px;
  }

  .feature-grid {
    padding-bottom: 72px;
  }

  .feature-number {
    margin-bottom: 26px;
  }

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

@media (max-width: 520px) {
  .site-header {
    padding: 14px;
  }

  .brand span:last-child {
    max-width: 86px;
    line-height: 1.05;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .statement p {
    font-size: 2.25rem;
  }

  .site-footer {
    flex-direction: column;
  }
}

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