:root {
  --warm-ivory: #f7f1ee;
  --charcoal: #121212;
  --earth-red: #9f281f;
  --moss: #537332;
  --leaf: #5d8239;
  --stone: #a3a59e;
  --white: #fffdfb;
  --line: rgba(18, 18, 18, 0.14);
  --shadow: 0 24px 70px rgba(18, 18, 18, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 12px clamp(18px, 4vw, 56px);
  background: rgba(247, 241, 238, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: min(210px, 48vw);
}

.brand img {
  width: 100%;
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 700;
}

.main-nav a {
  padding: 8px 10px;
  border-radius: 4px;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  background: var(--charcoal);
  color: var(--white);
}

.hero,
.services,
.products,
.process,
.location,
.contact,
.product-hero,
.software-section,
.visibility-section {
  padding-inline: clamp(18px, 4vw, 56px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(290px, 0.72fr);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  min-height: calc(100svh - 76px);
  padding-block: clamp(42px, 8vw, 96px) clamp(28px, 6vw, 72px);
  border-bottom: 1px solid var(--line);
}

.hero-copy {
  max-width: 820px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--earth-red);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

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

h1 {
  max-width: 980px;
  margin: 0;
  font-size: clamp(2.2rem, 6.4vw, 5.8rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3.4vw, 3.3rem);
  line-height: 1.06;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 1.28rem;
  line-height: 1.18;
  letter-spacing: 0;
}

.hero-text {
  max-width: 680px;
  margin: 24px 0 0;
  color: rgba(18, 18, 18, 0.76);
  font-size: clamp(1.05rem, 2vw, 1.32rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 2px solid var(--charcoal);
  border-radius: 4px;
  font-weight: 900;
}

.button-primary {
  background: var(--charcoal);
  color: var(--white);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--earth-red);
  border-color: var(--earth-red);
}

.button-secondary {
  background: transparent;
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: var(--leaf);
  border-color: var(--leaf);
  color: var(--white);
}

.hero-mark {
  position: relative;
  justify-self: center;
  width: min(520px, 100%);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.hero-mark img {
  width: 100%;
}

.services {
  padding-block: clamp(56px, 9vw, 112px);
}

.products {
  padding-block: clamp(52px, 8vw, 96px);
  border-top: 1px solid var(--line);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(180px, 0.34fr) minmax(0, 0.66fr);
  gap: 28px;
  margin-bottom: 28px;
}

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

.service-card {
  display: flex;
  min-height: 430px;
  flex-direction: column;
  gap: 18px;
  padding: clamp(20px, 3vw, 30px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.service-card:nth-child(2) {
  border-top: 6px solid var(--moss);
}

.service-card:nth-child(3) {
  border-top: 6px solid var(--earth-red);
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--charcoal);
  color: var(--white);
  border-radius: 50%;
  font-size: 0.82rem;
  font-weight: 900;
}

.service-card p,
.process p,
.contact p {
  margin: 0;
  color: rgba(18, 18, 18, 0.72);
}

.service-card ul {
  display: grid;
  gap: 10px;
  margin: auto 0 0;
  padding: 0;
  list-style: none;
}

.service-card li {
  padding-top: 10px;
  border-top: 1px solid var(--line);
  color: rgba(18, 18, 18, 0.82);
  font-weight: 700;
}

.product-feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: end;
  padding: clamp(22px, 4vw, 38px);
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 8px solid var(--earth-red);
  border-radius: 8px;
}

.product-copy {
  max-width: 780px;
}

.product-label {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--moss);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.product-copy h3 {
  font-size: clamp(2rem, 4vw, 4rem);
}

.product-copy p {
  max-width: 720px;
  margin: 16px 0 0;
  color: rgba(18, 18, 18, 0.72);
  font-size: 1.08rem;
}

.process {
  display: grid;
  grid-template-columns: minmax(220px, 0.32fr) minmax(0, 0.68fr);
  gap: 32px;
  padding-block: clamp(48px, 8vw, 96px);
  background: var(--charcoal);
  color: var(--white);
}

.process .eyebrow,
.process p {
  color: rgba(255, 253, 251, 0.74);
}

.process-list {
  display: grid;
  gap: 1px;
  background: rgba(255, 253, 251, 0.18);
}

.process-list article {
  display: grid;
  grid-template-columns: 46px minmax(120px, 0.26fr) minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 22px 0;
  background: var(--charcoal);
}

.process-list span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  background: var(--leaf);
  border-radius: 50%;
  font-weight: 900;
}

.location {
  display: grid;
  grid-template-columns: minmax(0, 0.58fr) minmax(260px, 0.42fr);
  gap: 28px;
  align-items: stretch;
  padding-block: clamp(52px, 8vw, 88px);
  border-bottom: 1px solid var(--line);
}

.location-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 760px;
}

.location-copy p:last-child {
  max-width: 620px;
  margin: 18px 0 0;
  color: rgba(18, 18, 18, 0.72);
  font-size: 1.08rem;
}

.location-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 260px;
  padding: clamp(22px, 4vw, 38px);
  background: var(--moss);
  color: var(--white);
  border-radius: 8px;
}

.location-panel span {
  color: rgba(255, 253, 251, 0.72);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.location-panel strong {
  margin-top: 4px;
  font-size: clamp(2.2rem, 5vw, 4.6rem);
  line-height: 0.98;
}

.location-panel p {
  max-width: 420px;
  margin: 22px 0 0;
  color: rgba(255, 253, 251, 0.78);
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.62fr) minmax(260px, 0.38fr);
  gap: 28px;
  align-items: center;
  padding-block: clamp(56px, 8vw, 92px);
}

.contact-copy {
  max-width: 760px;
}

.contact-copy p:last-child {
  max-width: 650px;
  margin-top: 16px;
  font-size: 1.08rem;
}

.contact-panel {
  display: grid;
  gap: 16px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.contact-link {
  color: var(--earth-red);
  font-size: clamp(1rem, 2vw, 1.24rem);
  font-weight: 900;
  overflow-wrap: anywhere;
}

.product-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.48fr);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  min-height: calc(92svh - 76px);
  padding-block: clamp(54px, 9vw, 112px);
  border-bottom: 1px solid var(--line);
}

.software-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 360px;
  padding: clamp(24px, 4vw, 42px);
  background: var(--charcoal);
  color: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.software-panel span {
  color: var(--leaf);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.software-panel strong {
  margin-top: 14px;
  font-size: clamp(2rem, 4.4vw, 4.3rem);
  line-height: 1;
}

.software-panel p {
  max-width: 460px;
  margin: 22px 0 0;
  color: rgba(255, 253, 251, 0.76);
}

.software-section {
  padding-block: clamp(56px, 9vw, 112px);
}

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

.feature-card {
  min-height: 260px;
  padding: clamp(20px, 3vw, 30px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.feature-card h3 {
  margin-bottom: 16px;
}

.feature-card p {
  margin: 0;
  color: rgba(18, 18, 18, 0.72);
}

.visibility-section {
  display: grid;
  grid-template-columns: minmax(220px, 0.34fr) minmax(0, 0.66fr);
  gap: 32px;
  padding-block: clamp(52px, 8vw, 96px);
  background: var(--moss);
  color: var(--white);
}

.visibility-section .eyebrow {
  color: rgba(255, 253, 251, 0.72);
}

.visibility-list {
  display: grid;
  gap: 1px;
  background: rgba(255, 253, 251, 0.22);
}

.visibility-list article {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 18px;
  padding: 22px 0;
  background: var(--moss);
}

.visibility-list span {
  color: rgba(255, 253, 251, 0.72);
  font-weight: 900;
}

.visibility-list p {
  margin: 0;
  color: rgba(255, 253, 251, 0.82);
}

@media (max-width: 900px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  .main-nav {
    justify-content: flex-start;
  }

  .hero,
  .section-heading,
  .product-feature,
  .process,
  .location,
  .contact,
  .product-hero,
  .visibility-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-mark {
    width: min(420px, 100%);
  }

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

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

  .service-card {
    min-height: 0;
  }

  .feature-card,
  .software-panel {
    min-height: 0;
  }
}

@media (max-width: 620px) {
  .site-header {
    min-height: 0;
  }

  .main-nav {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .main-nav a {
    border: 1px solid var(--line);
  }

  .hero-actions .button,
  .contact-panel .button {
    width: 100%;
  }

  .process-list article {
    grid-template-columns: 38px minmax(0, 1fr);
  }

  .process-list p {
    grid-column: 2;
  }
}
