:root {
  --cream: #f3dfc0;
  --cream-light: #fff8ec;
  --ink: #111111;
  --muted: #665d52;
  --white: #ffffff;
  --accent: #b76732;
  --accent-dark: #8c4722;
  --border: rgba(17, 17, 17, 0.13);
  --max-width: 1120px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream-light);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

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

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

a:focus-visible {
  outline: 3px solid var(--accent-dark);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--white);
  color: var(--ink);
  border: 2px solid var(--ink);
  border-radius: 6px;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: min(90%, var(--max-width));
  margin: 0 auto;
}

.site-header {
  background: var(--cream);
  border-bottom: 1px solid var(--border);
}

nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: -0.03em;
  font-size: 1.2rem;
}

.brand-mark {
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  position: relative;
  display: grid;
  place-items: center;
}

.brand-mark::after {
  content: "↗";
  font-size: 1.2rem;
  font-weight: 800;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 0.94rem;
  font-weight: 700;
}

.nav-links a:hover,
.footer-links a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.nav-links a:hover {
  color: var(--accent-dark);
}

.button {
  display: inline-block;
  background: var(--ink);
  color: var(--white);
  padding: 13px 21px;
  border-radius: 6px;
  font-weight: 700;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.button:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

.button-light {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}

.button-light:hover {
  background: var(--white);
  color: var(--ink);
}

.hero {
  background: var(--cream);
  padding: 84px 0 96px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 70px;
}

.eyebrow {
  color: var(--accent-dark);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.77rem;
  font-weight: 800;
  margin-bottom: 18px;
}

h1 {
  max-width: 720px;
  font-size: clamp(2.8rem, 7vw, 5.7rem);
  line-height: 0.98;
  letter-spacing: -0.065em;
  margin-bottom: 25px;
}

.hero-copy {
  max-width: 600px;
  color: var(--muted);
  font-size: 1.15rem;
  margin-bottom: 30px;
}

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

.hero-card {
  min-height: 330px;
  background: var(--cream-light);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(74, 47, 24, 0.1);
}

.hero-card::before {
  content: "";
  position: absolute;
  width: 270px;
  height: 270px;
  border: 2px solid var(--accent);
  border-radius: 50%;
  top: -105px;
  right: -65px;
}

.hero-card::after {
  content: "FIELD  →  READY  →  LEAD";
  position: absolute;
  top: 32px;
  left: 30px;
  color: var(--accent-dark);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.card-message {
  position: relative;
  z-index: 1;
  font-size: 2rem;
  line-height: 1.05;
  letter-spacing: -0.05em;
  font-weight: 800;
  max-width: 270px;
}

section {
  padding: 92px 0;
}

.section-heading {
  max-width: 690px;
  margin-bottom: 44px;
}

.section-heading h2 {
  font-size: clamp(2.1rem, 4vw, 3.6rem);
  line-height: 1.02;
  letter-spacing: -0.055em;
  margin-bottom: 16px;
}

.section-heading > p:last-child {
  color: var(--muted);
  font-size: 1.08rem;
}

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

.service {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 30px;
}

.service-number {
  color: var(--accent-dark);
  font-size: 0.8rem;
  font-weight: 800;
  margin-bottom: 45px;
}

.service h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
  letter-spacing: -0.025em;
}

.service > p:last-child {
  color: var(--muted);
  margin-bottom: 0;
}

.dark-section {
  background: var(--ink);
  color: var(--white);
}

.dark-section .section-heading > p:last-child {
  color: #c9c1b6;
}

.training-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 65px;
  align-items: center;
}

.training-list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}

.training-list li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  padding: 17px 0;
  font-size: 1.08rem;
}

.training-list li::before {
  content: "↗";
  color: #e49a65;
  font-weight: 800;
  margin-right: 12px;
}

.quote {
  background: var(--cream);
  color: var(--ink);
  padding: 37px;
  border-radius: 10px;
  font-size: 1.55rem;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.035em;
}

.quote p {
  margin-bottom: 0;
}

.quote cite {
  display: block;
  color: var(--accent-dark);
  margin-top: 25px;
  font-size: 0.78rem;
  font-style: normal;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.contact {
  text-align: center;
  background: var(--cream);
}

.contact h2 {
  font-size: clamp(2.3rem, 5vw, 4.4rem);
  line-height: 1;
  letter-spacing: -0.06em;
  margin-bottom: 18px;
}

.contact > .container > p:not(.eyebrow) {
  color: var(--muted);
  max-width: 570px;
  margin: 0 auto 28px;
  font-size: 1.08rem;
}

footer {
  background: var(--ink);
  color: #d6cec2;
  padding: 28px 0;
  font-size: 0.86rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}

.footer-inner p {
  margin-bottom: 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-links a:hover {
  color: var(--white);
}

@media (max-width: 800px) {
  .nav-links {
    display: none;
  }

  .hero-grid,
  .training-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .hero {
    padding: 64px 0 72px;
  }

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

  section {
    padding: 68px 0;
  }

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

@media (max-width: 560px) {
  nav {
    min-height: auto;
    padding: 14px 0;
    gap: 12px;
  }

  .brand {
    font-size: 1rem;
    gap: 9px;
  }

  .brand-mark {
    width: 32px;
    height: 32px;
  }

  .nav-button {
    padding: 10px 13px;
    font-size: 0.9rem;
  }

  h1 {
    font-size: clamp(2.75rem, 14vw, 3.35rem);
  }

  .hero-card {
    min-height: 260px;
  }
}

@media (max-width: 380px) {
  .brand span:last-child {
    max-width: 105px;
    line-height: 1.05;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
