:root {
  --bg: #f7f4ef;
  --panel: #ffffff;
  --panel-soft: #fcfbf8;
  --line: rgba(17, 24, 39, 0.07);
  --line-strong: rgba(17, 24, 39, 0.12);
  --text: #111827;
  --muted: #6b7280;
  --accent: #9a7c4a;
  --accent-2: #60747d;
  --shadow: 0 14px 30px rgba(17, 24, 39, 0.06);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 10%, rgba(96, 116, 125, 0.07), transparent 24%),
    radial-gradient(circle at 85% 15%, rgba(154, 124, 74, 0.07), transparent 24%),
    linear-gradient(180deg, #fffdfb 0%, var(--bg) 100%);
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(17, 24, 39, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 24, 39, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.45;
}

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

.page {
  position: relative;
  width: min(1200px, calc(100% - 28px));
  margin: 0 auto;
  padding: 24px 0 56px;
}

.ambient {
  position: fixed;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.18;
}

.ambient-a {
  top: -120px;
  left: -120px;
  width: 420px;
  height: 420px;
  background: rgba(86, 108, 117, 0.2);
}

.ambient-b {
  top: 120px;
  right: -140px;
  width: 500px;
  height: 500px;
  background: rgba(138, 109, 59, 0.16);
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 10px 0 26px;
  position: relative;
}

.topbar::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(17, 24, 39, 0.12), transparent);
}

.brand {
  display: flex;
  align-items: center;
  gap: 18px;
  position: relative;
  padding: 0 12px 0 0;
  min-width: 0;
}

.brand-copy {
  display: grid;
  gap: 6px;
}

.brand-logo {
  width: 96px;
  height: 96px;
  padding: 0;
  object-fit: contain;
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  filter: drop-shadow(0 10px 18px rgba(16, 24, 40, 0.05));
  mix-blend-mode: multiply;
  position: relative;
  z-index: 1;
}

.brand::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 50%;
  width: 76px;
  height: 22px;
  transform: translateY(30px);
  border-radius: 999px;
  background: radial-gradient(circle, rgba(154, 124, 74, 0.12), transparent 72%);
  pointer-events: none;
}

.brand::after {
  content: "";
  position: absolute;
  left: 108px;
  top: 50%;
  width: 1px;
  height: 52px;
  transform: translateY(-50%);
  background: linear-gradient(180deg, transparent, rgba(17, 24, 39, 0.12), transparent);
}

.brand p,
.eyebrow,
.section-heading p,
.card h3,
.card p,
.contact-card p {
  margin: 0;
}

.brand p {
  font-weight: 700;
  letter-spacing: -0.04em;
  font-size: 1.02rem;
}

.brand-tagline {
  color: var(--muted);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  color: var(--muted);
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
}

.nav a {
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  transition: color 0.2s ease, transform 0.2s ease;
}

.nav a:hover {
  color: var(--text);
  transform: translateY(-1px);
  background: rgba(16, 24, 40, 0.04);
}

.nav-cta,
.button {
  border-radius: 999px;
  padding: 12px 18px;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.nav-cta {
  border: 1px solid rgba(16, 24, 40, 0.08);
  background: var(--text);
  color: #fff;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
  min-height: 62vh;
  align-content: center;
  padding: 24px 0 26px;
}

.hero-copy {
  display: grid;
  gap: 16px;
  max-width: 760px;
}

.eyebrow {
  color: var(--accent-2);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.74rem;
}

h1,
h2,
h3 {
  line-height: 1.06;
  letter-spacing: -0.04em;
  font-weight: 700;
}

h1 {
  margin: 0;
  max-width: 12ch;
  font-size: clamp(2.5rem, 4.1vw, 4.1rem);
  line-height: 1.04;
  letter-spacing: -0.05em;
}

h2 {
  font-size: clamp(1.6rem, 2.7vw, 2.35rem);
}

h3 {
  font-size: 1.04rem;
}

.lead {
  margin: 0;
  max-width: 60ch;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.82;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
}

.primary {
  background: var(--text);
  color: #fff;
}

.secondary {
  border-color: var(--line);
  background: #fff;
}

.hero-points-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-points-row span {
  padding: 9px 13px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.82);
  color: var(--muted);
  font-size: 0.78rem;
}

.hero-metric-bar {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.hero-metric-bar > div,
.spotlight-card,
.card,
.capability-chip,
.contact-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.hero-metric-bar > div {
  padding: 12px 14px;
}

.hero-metric-bar strong {
  display: block;
  color: var(--accent-2);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  margin-bottom: 6px;
}

.hero-metric-bar span {
  color: var(--text);
  font-size: 0.92rem;
  line-height: 1.5;
}

.section {
  padding: 32px 0;
}

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

.feature-card {
  padding: 18px;
  background: var(--panel-soft);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.feature-card p,
.section-heading p,
.spotlight-card p {
  margin: 0 0 12px;
  color: var(--accent-2);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.74rem;
}

.feature-card h2,
.spotlight-card h2 {
  margin: 0;
}

.section-heading {
  margin-bottom: 18px;
}

.section-heading h2 {
  margin: 0;
  max-width: 18ch;
}

.grid-3,
.grid-2,
.capability-grid {
  display: grid;
  gap: 18px;
}

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

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.capability-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card,
.capability-chip {
  padding: 20px;
  background: #fff;
}

.card p,
.capability-chip,
.contact-lead,
.contact-details span {
  color: var(--muted);
  line-height: 1.7;
}

.contact-card {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 24px;
  padding: 22px;
  background: linear-gradient(180deg, #fff, #fafafa);
}

.contact-details {
  display: grid;
  gap: 10px;
  align-content: center;
  justify-items: start;
  padding-left: 10px;
  border-left: 1px solid var(--line);
}

.contact-details a {
  color: var(--accent);
  font-weight: 600;
}

@media (max-width: 980px) {
  .feature-strip,
  .hero-metric-bar,
  .grid-3,
  .grid-2,
  .capability-grid,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .topbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .brand-logo {
    width: 84px;
    height: 84px;
  }

  .nav {
    width: 100%;
    justify-content: space-between;
  }

  .hero {
    min-height: auto;
    padding-top: 20px;
  }

  .brand::after {
    display: none;
  }

  .contact-details {
    border-left: 0;
    padding-left: 0;
    padding-top: 18px;
    border-top: 1px solid var(--line);
  }
}

@media (max-width: 640px) {
  .page {
    width: min(100% - 18px, 1200px);
  }

  h1 {
    max-width: none;
    font-size: clamp(2.4rem, 10vw, 3.8rem);
  }

  .card,
  .capability-chip,
  .feature-card,
  .spotlight-card,
  .contact-card,
  .hero-metric-bar > div {
    border-radius: 18px;
    padding: 18px;
  }
}
