:root {
  --ink: #16211d;
  --muted: #5c6863;
  --paper: #f7f5ef;
  --surface: #ffffff;
  --line: #d9ded6;
  --green: #174b3f;
  --green-2: #2f6f5d;
  --brass: #b4874f;
  --clay: #d8c8ac;
  --shadow: 0 24px 80px rgba(22, 33, 29, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 64px);
  color: white;
  background: linear-gradient(180deg, rgba(10, 17, 15, 0.76), rgba(10, 17, 15, 0));
}

.page-header {
  background: rgba(17, 23, 19, 0.94);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 176px;
  min-width: 176px;
}

.brand img {
  display: block;
  width: 100%;
  height: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.6vw, 34px);
  font-size: 14px;
  font-weight: 650;
}

.nav a,
.header-action,
.footer a {
  transition: color 160ms ease, border-color 160ms ease, background 160ms ease;
}

.nav a:hover,
.footer a:hover {
  color: var(--clay);
}

.header-action {
  border: 1px solid rgba(255, 255, 255, 0.62);
  padding: 11px 16px;
  font-size: 14px;
  font-weight: 750;
}

.header-action:hover {
  background: white;
  color: var(--green);
}

.hero {
  position: relative;
  min-height: 88svh;
  display: grid;
  align-items: center;
  padding: 116px clamp(20px, 5vw, 64px) 76px;
  overflow: hidden;
  color: white;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(9, 19, 17, 0.91) 0%, rgba(9, 19, 17, 0.68) 38%, rgba(9, 19, 17, 0.18) 78%),
    linear-gradient(180deg, rgba(9, 19, 17, 0.35), rgba(9, 19, 17, 0.2));
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--brass);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 720px;
  margin-bottom: 24px;
  font-size: clamp(44px, 7vw, 86px);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.06;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.2;
}

.hero-copy {
  max-width: 640px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.85);
  font-size: clamp(17px, 2vw, 21px);
}

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

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

.button.primary {
  background: var(--brass);
  color: #111713;
}

.button.primary:hover {
  background: #c99d64;
}

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

.button.secondary:hover {
  background: rgba(255, 255, 255, 0.14);
}

.signal-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.signal-band div {
  min-height: 126px;
  padding: 28px clamp(20px, 4vw, 54px);
  background: var(--surface);
}

.signal-band strong {
  display: block;
  margin-bottom: 8px;
  color: var(--green);
  font-size: 32px;
  line-height: 1;
}

.signal-band span {
  display: block;
  max-width: 340px;
  color: var(--muted);
}

.section {
  padding: clamp(72px, 9vw, 132px) clamp(20px, 5vw, 64px);
}

.brand-story {
  background: #111713;
  color: white;
}

.brand-story-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 1.05fr);
  gap: clamp(32px, 7vw, 96px);
  align-items: start;
}

.brand-story h2 {
  margin-bottom: 0;
}

.brand-story p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
}

.brand-story p:last-child {
  margin-bottom: 0;
}

.intro-grid,
.section-heading,
.method,
.contact {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  gap: clamp(32px, 7vw, 96px);
  align-items: start;
}

.intro-grid p,
.section-heading p,
.method-copy p,
.contact p {
  color: var(--muted);
  font-size: 18px;
}

.services {
  background: #eef1eb;
}

.strength-section {
  background: var(--surface);
}

.strength-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 36px;
  background: var(--line);
  border: 1px solid var(--line);
}

.strength-grid article {
  min-height: 230px;
  padding: 26px;
  background: var(--paper);
}

.strength-grid h3 {
  color: var(--green);
}

.strength-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

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

.offer-section {
  background: var(--green);
  color: white;
}

.offer-section .section-heading p {
  color: rgba(255, 255, 255, 0.78);
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 38px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.offer-grid article {
  min-height: 254px;
  padding: 28px;
  background: rgba(17, 23, 19, 0.22);
}

.offer-grid h3 {
  color: white;
}

.offer-grid p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
}

.service-card {
  min-height: 292px;
  padding: 26px;
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: 0 10px 35px rgba(22, 33, 29, 0.05);
}

.service-card .icon {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 38px;
  border: 1px solid var(--green);
  color: var(--green);
  font-size: 13px;
  font-weight: 850;
}

.service-card p,
.step p {
  margin-bottom: 0;
  color: var(--muted);
}

.method {
  align-items: center;
}

.steps {
  display: grid;
  gap: 14px;
}

.step {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 18px;
  padding: 24px;
  border-left: 4px solid var(--green-2);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.step span {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  background: var(--green);
  color: white;
  font-weight: 850;
}

.quote-band {
  padding: clamp(58px, 8vw, 96px) clamp(20px, 9vw, 128px);
  background: var(--green);
  color: white;
}

.quote-band p {
  max-width: 1100px;
  margin: 0 0 24px;
  font-size: clamp(28px, 4.8vw, 58px);
  line-height: 1.08;
  letter-spacing: 0;
}

.quote-band cite {
  display: block;
  color: var(--clay);
  font-size: 16px;
  font-style: normal;
  font-weight: 800;
}

.quote-band cite::before {
  content: "- ";
}

.contact {
  background: var(--surface);
}

.profile-link {
  display: inline-flex;
  align-items: center;
  margin-top: 10px;
  color: var(--green);
  font-weight: 850;
  border-bottom: 2px solid var(--brass);
}

.profile-link:hover {
  color: var(--brass);
}

.subpage-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: clamp(32px, 7vw, 96px);
  align-items: end;
  padding: clamp(142px, 16vw, 210px) clamp(20px, 5vw, 64px) clamp(58px, 8vw, 96px);
  background: #111713;
  color: white;
}

.subpage-hero h1 {
  margin-bottom: 0;
}

.subpage-hero p:not(.eyebrow) {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(17px, 2vw, 21px);
}

.reference-section {
  display: grid;
  gap: 28px;
  background: #eef1eb;
}

.reference-card {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(24px, 4vw, 54px);
  align-items: stretch;
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: 0 20px 60px rgba(22, 33, 29, 0.08);
}

.reference-card-wide {
  grid-template-columns: minmax(360px, 1.2fr) minmax(0, 0.8fr);
}

.reference-media {
  min-height: 380px;
  background: #111713;
  overflow: hidden;
}

.reference-media.portrait {
  min-height: 620px;
}

.reference-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reference-media.portrait img {
  object-position: center top;
}

.reference-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 5vw, 64px);
}

.reference-copy p:not(.section-kicker) {
  color: var(--muted);
  font-size: 18px;
}

.reference-facts {
  display: grid;
  gap: 1px;
  margin: 28px 0 0;
  background: var(--line);
}

.reference-facts div {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 18px;
  padding: 16px 0;
  background: var(--surface);
}

.reference-facts dt {
  color: var(--green);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.reference-facts dd {
  margin: 0;
  color: var(--ink);
  font-weight: 650;
}

.reference-cta {
  padding: clamp(58px, 8vw, 96px) clamp(20px, 5vw, 64px);
  background: var(--green);
  color: white;
}

.reference-cta h2,
.reference-cta p {
  max-width: 760px;
}

.reference-cta p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 19px;
}

.about-hero {
  display: grid;
  grid-template-columns: minmax(240px, 360px) minmax(0, 1fr);
  gap: clamp(30px, 5vw, 78px);
  align-items: center;
  padding: clamp(136px, 15vw, 198px) clamp(20px, 5vw, 64px) clamp(64px, 8vw, 112px);
  background: #111713;
  color: white;
}

.about-portrait {
  max-width: 360px;
  justify-self: start;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
}

.about-portrait img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
}

.about-intro h1 {
  margin-bottom: 24px;
}

.about-lead {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(19px, 2.4vw, 25px);
}

.about-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

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

.button.secondary.dark:hover {
  background: rgba(255, 255, 255, 0.12);
}

.about-summary {
  background: var(--surface);
}

.career-section {
  background: #eef1eb;
}

.timeline {
  display: grid;
  gap: 1px;
  margin-top: 42px;
  background: var(--line);
  border: 1px solid var(--line);
}

.timeline article {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  gap: clamp(20px, 4vw, 54px);
  padding: 26px;
  background: var(--surface);
}

.timeline span {
  color: var(--green);
  font-size: 14px;
  font-weight: 850;
}

.timeline p {
  margin-bottom: 0;
  color: var(--muted);
}

.credentials-section {
  background: var(--surface);
}

.credential-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.credential-grid article {
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid var(--line);
  background: var(--paper);
}

.clean-list {
  display: grid;
  gap: 12px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.clean-list li {
  padding-left: 18px;
  border-left: 3px solid var(--brass);
  color: var(--muted);
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid var(--line);
  background: var(--paper);
}

label {
  display: grid;
  gap: 8px;
  color: var(--green);
  font-size: 14px;
  font-weight: 800;
}

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

textarea {
  resize: vertical;
}

input:focus,
textarea:focus {
  border-color: var(--green-2);
  box-shadow: 0 0 0 3px rgba(47, 111, 93, 0.15);
}

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

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(20px, 5vw, 64px);
  background: #111713;
  color: rgba(255, 255, 255, 0.78);
}

.footer-brand {
  color: white;
}

.footer p {
  margin: 0;
}

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

@media (max-width: 980px) {
  .site-header {
    align-items: flex-start;
  }

  .nav {
    display: none;
  }

  .hero {
    min-height: 84svh;
  }

  .signal-band,
  .brand-story-grid,
  .intro-grid,
  .section-heading,
  .method,
  .contact,
  .subpage-hero,
  .reference-card,
  .reference-card-wide,
  .credential-grid {
    grid-template-columns: 1fr;
  }

  .about-hero {
    grid-template-columns: minmax(200px, 280px) minmax(0, 1fr);
    gap: 28px;
  }

  .about-portrait {
    max-width: 280px;
  }

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

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

  .header-action {
    display: none;
  }

  .brand {
    width: 136px;
    min-width: 136px;
  }

  .hero {
    min-height: 82svh;
    padding: 104px 18px 54px;
  }

  .about-hero {
    grid-template-columns: minmax(104px, 34vw) minmax(0, 1fr);
    gap: 18px;
    align-items: start;
  }

  .about-portrait {
    max-width: 150px;
  }

  .about-intro h1 {
    font-size: clamp(30px, 8vw, 42px);
  }

  .about-lead {
    font-size: 16px;
  }

  .hero-overlay {
    background: linear-gradient(90deg, rgba(9, 19, 17, 0.94), rgba(9, 19, 17, 0.54));
  }

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

  .signal-band,
  .service-grid,
  .offer-grid,
  .strength-grid {
    grid-template-columns: 1fr;
  }

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

  .strength-grid article {
    min-height: auto;
  }

  .offer-grid article {
    min-height: auto;
  }

  .reference-media,
  .reference-media.portrait {
    min-height: 360px;
  }

  .reference-facts div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .timeline article {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .service-card .icon {
    margin-bottom: 26px;
  }

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

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

@media (max-width: 420px) {
  .about-hero {
    grid-template-columns: 1fr;
  }

  .about-portrait {
    max-width: 260px;
  }
}
