:root {
  --ink: #151716;
  --graphite: #252a28;
  --muted: #66706a;
  --paper: #f6f3ed;
  --white: #fffdf8;
  --teal: #0f5d5e;
  --teal-dark: #0a393c;
  --gold: #b88539;
  --sage: #d8dfd2;
  --line: rgba(21, 23, 22, 0.14);
  --shadow: 0 24px 60px rgba(12, 18, 16, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  overflow-x: clip;
}

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

img,
svg {
  display: block;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  color: var(--white);
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  color: var(--ink);
  background: rgba(255, 253, 248, 0.94);
  box-shadow: 0 12px 30px rgba(16, 22, 20, 0.1);
  backdrop-filter: blur(14px);
}

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

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
  overflow-wrap: anywhere;
}

.brand strong {
  font-size: 0.98rem;
  line-height: 1.1;
}

.brand small {
  margin-top: 2px;
  color: currentColor;
  font-size: 0.72rem;
  opacity: 0.72;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 30px);
  font-size: 0.92rem;
  font-weight: 700;
}

.nav-links a {
  position: relative;
  padding: 4px 0;
}

.nav-links a::after {
  position: absolute;
  right: 0;
  bottom: -4px;
  left: 0;
  height: 2px;
  background: var(--gold);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 8px;
  color: inherit;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  grid-area: 1 / 1;
  width: 18px;
  height: 2px;
  background: currentColor;
  transition: transform 180ms ease;
}

.nav-toggle span:first-child {
  transform: translateY(-4px);
}

.nav-toggle span:last-child {
  transform: translateY(4px);
}

.site-header.is-open .nav-toggle span:first-child {
  transform: rotate(45deg);
}

.site-header.is-open .nav-toggle span:last-child {
  transform: rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 92vh;
  min-height: 92svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: #111615;
}

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

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

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(12, 16, 15, 0.88) 0%, rgba(12, 16, 15, 0.68) 36%, rgba(12, 16, 15, 0.24) 68%, rgba(12, 16, 15, 0.1) 100%),
    linear-gradient(0deg, rgba(12, 16, 15, 0.7) 0%, rgba(12, 16, 15, 0) 35%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(720px, calc(100% - 36px));
  margin-left: clamp(18px, 7vw, 96px);
  padding-top: 76px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(3.8rem, 10vw, 8.8rem);
  line-height: 0.86;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 610px;
  margin-bottom: 30px;
  color: rgba(255, 253, 248, 0.84);
  font-size: clamp(1.1rem, 1.9vw, 1.45rem);
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 12px 18px;
  font-weight: 850;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

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

.button.primary:hover,
.button.primary:focus-visible {
  background: var(--teal-dark);
}

.button.secondary {
  color: var(--white);
  border-color: rgba(255, 253, 248, 0.46);
  background: rgba(255, 253, 248, 0.08);
}

.metrics-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--ink);
  color: var(--white);
}

.metrics-band div {
  min-height: 128px;
  padding: clamp(22px, 4vw, 42px);
  border-right: 1px solid rgba(255, 253, 248, 0.15);
}

.metrics-band div:last-child {
  border-right: 0;
}

.metrics-band strong,
.metrics-band span {
  display: block;
}

.metrics-band strong {
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 1.05rem;
}

.metrics-band span {
  max-width: 320px;
  color: rgba(255, 253, 248, 0.72);
}

.section,
.split-section,
.contact-section {
  padding: clamp(68px, 9vw, 120px) clamp(18px, 5vw, 72px);
}

.section-heading {
  max-width: 820px;
  margin-bottom: clamp(28px, 5vw, 54px);
}

h2 {
  max-width: 780px;
  margin-bottom: 16px;
  font-size: clamp(2rem, 4.3vw, 4.7rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.section-heading p:not(.eyebrow),
.split-copy p,
.contact-section > div > p {
  max-width: 660px;
  color: var(--muted);
  font-size: 1.08rem;
}

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

.service-card {
  min-width: 0;
  min-height: 330px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.65) inset;
}

.icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  margin-bottom: 34px;
  border-radius: 8px;
  color: var(--teal);
  background: var(--sage);
}

.icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.service-card h3,
.process-grid h3 {
  margin-bottom: 10px;
  font-size: 1.28rem;
  line-height: 1.1;
}

.service-card p,
.process-grid p,
.outcome-list p {
  margin-bottom: 0;
  color: var(--muted);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1fr);
  gap: clamp(36px, 7vw, 96px);
  align-items: start;
  background: var(--white);
}

.text-link {
  display: inline-flex;
  margin-top: 14px;
  color: var(--teal);
  font-weight: 850;
}

.text-link::after {
  margin-left: 8px;
  content: "->";
}

.outcome-list {
  border-top: 1px solid var(--line);
}

.outcome-list div {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 22px;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}

.outcome-list span {
  color: var(--gold);
  font-weight: 900;
}

.outcome-list p {
  max-width: 660px;
  font-size: clamp(1.2rem, 2vw, 1.75rem);
  line-height: 1.24;
}

.process-section {
  background: linear-gradient(180deg, var(--paper) 0%, #ecefe7 100%);
}

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

.process-grid article {
  min-width: 0;
  min-height: 260px;
  padding: 28px;
  border: 1px solid rgba(15, 93, 94, 0.2);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.76);
}

.process-grid span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  margin-bottom: 54px;
  border-radius: 50%;
  color: var(--white);
  background: var(--teal);
  font-weight: 900;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 520px);
  gap: clamp(36px, 7vw, 92px);
  color: var(--white);
  background: var(--graphite);
}

.contact-section h2 {
  color: var(--white);
}

.contact-section > div > p {
  color: rgba(255, 253, 248, 0.72);
}

.contact-direct {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.contact-direct a {
  width: fit-content;
  color: var(--sage);
  font-weight: 800;
}

.contact-form {
  min-width: 0;
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid rgba(255, 253, 248, 0.14);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.08);
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 7px;
  color: rgba(255, 253, 248, 0.82);
  font-size: 0.88rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(255, 253, 248, 0.2);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--white);
  background: rgba(255, 253, 248, 0.08);
  font: inherit;
}

textarea {
  resize: vertical;
}

select option {
  color: var(--ink);
}

input:focus,
select:focus,
textarea:focus,
button:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(184, 133, 57, 0.52);
  outline-offset: 3px;
}

.form-note {
  min-height: 22px;
  margin: 0;
  color: var(--sage);
  font-size: 0.9rem;
}

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

@media (max-width: 980px) {
  .service-grid,
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .metrics-band {
    grid-template-columns: 1fr;
  }

  .metrics-band div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 253, 248, 0.15);
  }
}

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

  .nav-toggle {
    display: grid;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    right: 16px;
    left: 16px;
    display: grid;
    gap: 0;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
  }

  .site-header.is-open .nav-links {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links a {
    padding: 15px 16px;
    border-bottom: 1px solid var(--line);
  }

  .nav-links a:last-child {
    border-bottom: 0;
  }

  .nav-links a::after {
    display: none;
  }

  .hero {
    min-height: 86vh;
    min-height: 86svh;
    align-items: end;
  }

  .hero-image {
    object-position: 66% center;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(12, 16, 15, 0.28) 0%, rgba(12, 16, 15, 0.9) 58%, rgba(12, 16, 15, 0.95) 100%),
      linear-gradient(90deg, rgba(12, 16, 15, 0.58), rgba(12, 16, 15, 0.18));
  }

  .hero-content {
    width: auto;
    margin: 0;
    padding: 130px 18px 42px;
  }

  h1 {
    font-size: clamp(2.9rem, 16vw, 5.2rem);
    overflow-wrap: anywhere;
  }

  .button {
    width: 100%;
  }

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

  .service-card,
  .process-grid article {
    min-height: auto;
  }

  .outcome-list div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .site-footer {
    display: grid;
  }
}

@media (max-width: 380px) {
  .brand {
    gap: 9px;
  }

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

  .brand small {
    display: none;
  }

  .hero-content {
    padding-right: 16px;
    padding-left: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
