:root {
  --ink: #17202a;
  --muted: #526172;
  --line: #d8e0e7;
  --paper: #f7f5ef;
  --white: #ffffff;
  --blue: #234b63;
  --blue-dark: #183547;
  --green: #60735d;
  --yellow: #e7b73f;
  --rust: #b65f38;
  --shadow: 0 24px 60px rgba(23, 32, 42, 0.18);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.5;
}

img,
svg {
  display: block;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.site-header {
  align-items: center;
  background: rgba(247, 245, 239, 0.92);
  border-bottom: 1px solid rgba(216, 224, 231, 0.8);
  display: flex;
  gap: 24px;
  justify-content: space-between;
  left: 0;
  padding: 14px clamp(18px, 4vw, 56px);
  position: fixed;
  right: 0;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(16px);
}

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

.brand-logo-wrap {
  align-items: center;
  display: grid;
  height: 48px;
  overflow: hidden;
  place-items: center;
  width: 58px;
}

.brand-logo {
  height: 50px;
  object-fit: contain;
  width: 64px;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1rem;
  line-height: 1.15;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
  margin-top: 1px;
}

.site-nav {
  align-items: center;
  display: flex;
  gap: clamp(18px, 3vw, 34px);
  font-size: 0.94rem;
  font-weight: 650;
}

.site-nav a {
  color: var(--blue-dark);
}

.site-nav a:hover {
  color: var(--rust);
}

.menu-button {
  align-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  display: none;
  height: 42px;
  justify-content: center;
  padding: 0;
  width: 42px;
}

.menu-button span:not(.sr-only) {
  background: var(--ink);
  display: block;
  height: 2px;
  position: absolute;
  width: 18px;
}

.menu-button span:nth-child(1) {
  transform: translateY(-6px);
}

.menu-button span:nth-child(3) {
  transform: translateY(6px);
}

.hero {
  min-height: 92vh;
  overflow: hidden;
  padding: 112px clamp(18px, 6vw, 84px) 72px;
  position: relative;
  display: flex;
  align-items: center;
}

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

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(247, 245, 239, 0.98) 0%, rgba(247, 245, 239, 0.9) 34%, rgba(247, 245, 239, 0.26) 68%),
    linear-gradient(0deg, rgba(23, 32, 42, 0.2), rgba(23, 32, 42, 0.04));
  inset: 0;
  position: absolute;
}

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

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

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

h1 {
  font-size: clamp(3rem, 6vw, 6.9rem);
  letter-spacing: 0;
  line-height: 0.92;
  margin-bottom: 24px;
  max-width: 980px;
}

h2 {
  font-size: clamp(2rem, 4vw, 4.1rem);
  letter-spacing: 0;
  line-height: 1;
  margin-bottom: 18px;
}

h3 {
  font-size: 1.15rem;
  line-height: 1.15;
  margin-bottom: 10px;
}

.hero-copy {
  color: #344454;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  max-width: 620px;
}

.hero-actions,
.cta-section {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  align-items: center;
  border: 1px solid transparent;
  display: inline-flex;
  font-weight: 800;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--yellow);
  box-shadow: 0 12px 24px rgba(183, 129, 29, 0.2);
  color: #1b1b17;
}

.button-secondary {
  background: rgba(255, 255, 255, 0.7);
  border-color: rgba(35, 75, 99, 0.22);
  color: var(--blue-dark);
}

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

.stats-band div {
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  padding: 28px clamp(18px, 4vw, 52px);
}

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

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

.stats-band strong {
  color: var(--yellow);
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.stats-band span {
  color: rgba(255, 255, 255, 0.78);
  max-width: 360px;
}

.section {
  padding: clamp(68px, 9vw, 128px) clamp(18px, 6vw, 84px);
}

.split-section {
  display: grid;
  gap: clamp(34px, 5vw, 72px);
  grid-template-columns: minmax(240px, 0.82fr) minmax(0, 1.4fr);
}

.section-heading {
  max-width: 560px;
}

.section-heading h2 {
  color: var(--blue-dark);
}

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

.service-card {
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 12px 34px rgba(23, 32, 42, 0.06);
  min-height: 230px;
  padding: 28px;
}

.service-icon {
  align-items: center;
  background: #eef3f2;
  color: var(--green);
  display: grid;
  height: 46px;
  margin-bottom: 24px;
  place-items: center;
  width: 46px;
}

.service-icon svg {
  height: 24px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  fill: none;
  width: 24px;
}

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

.process-section {
  background: var(--white);
}

.process-list {
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 42px;
}

.process-list article {
  border-right: 1px solid var(--line);
  padding: 28px 22px 12px 0;
}

.process-list article + article {
  padding-left: 22px;
}

.process-list article:last-child {
  border-right: 0;
}

.process-list span {
  color: var(--rust);
  display: block;
  font-size: 0.82rem;
  font-weight: 900;
  margin-bottom: 18px;
}

.deliverables-section {
  align-items: center;
  display: grid;
  gap: clamp(34px, 6vw, 96px);
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
}

.deliverables-panel {
  background: var(--blue);
  box-shadow: var(--shadow);
  color: var(--white);
  padding: clamp(28px, 5vw, 54px);
}

.deliverables-panel strong {
  color: var(--yellow);
  display: block;
  font-size: 1.2rem;
  margin-bottom: 18px;
}

.deliverables-panel ul {
  display: grid;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.deliverables-panel li {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  padding-top: 12px;
}

.testimonials-section {
  background: #edf1f2;
}

.testimonial-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 38px;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 190px;
  padding: 26px;
}

.testimonial-card p {
  color: var(--blue-dark);
  font-size: 1.35rem;
  font-weight: 850;
  line-height: 1.12;
  margin-bottom: 28px;
}

.testimonial-card span {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.cta-section {
  background: var(--green);
  color: var(--white);
  justify-content: space-between;
  padding: clamp(42px, 7vw, 78px) clamp(18px, 6vw, 84px);
}

.cta-section h2 {
  max-width: 880px;
}

.cta-section .eyebrow {
  color: #ffe2a0;
}

.contact-section {
  align-items: start;
  display: grid;
  gap: clamp(36px, 7vw, 104px);
  grid-template-columns: minmax(280px, 0.82fr) minmax(320px, 0.78fr);
}

.contact-methods {
  display: grid;
  gap: 10px;
  margin-top: 26px;
}

.contact-methods a {
  color: var(--blue-dark);
  font-weight: 850;
}

.contact-methods span {
  color: var(--muted);
}

.contact-form {
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 16px 42px rgba(23, 32, 42, 0.08);
  display: grid;
  gap: 18px;
  padding: clamp(24px, 4vw, 36px);
}

label {
  color: var(--blue-dark);
  display: grid;
  font-size: 0.9rem;
  font-weight: 800;
  gap: 8px;
}

input,
select,
textarea {
  background: #fbfcfd;
  border: 1px solid var(--line);
  color: var(--ink);
  font: inherit;
  min-height: 46px;
  padding: 11px 12px;
  width: 100%;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--yellow);
  outline: 3px solid rgba(231, 183, 63, 0.28);
}

.contact-form .button {
  border: 0;
  cursor: pointer;
  justify-self: start;
}

.form-note {
  color: var(--muted);
  font-size: 0.9rem;
  min-height: 1.4em;
  margin: 0;
}

.site-footer {
  align-items: center;
  background: #dfe9ec;
  color: var(--ink);
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  justify-content: space-between;
  padding: 30px clamp(18px, 6vw, 84px);
}

.site-footer .brand small,
.site-footer p {
  color: #4f5f68;
}

.footer-meta {
  display: grid;
  gap: 4px;
  text-align: right;
}

.site-footer p {
  margin: 0;
}

.footer-meta a {
  color: var(--blue-dark);
  font-weight: 800;
}

.footer-meta a:hover {
  color: var(--rust);
}

@media (max-width: 880px) {
  .menu-button {
    display: inline-flex;
  }

  .site-nav {
    background: var(--white);
    border: 1px solid var(--line);
    box-shadow: 0 18px 44px rgba(23, 32, 42, 0.16);
    display: none;
    gap: 0;
    left: 18px;
    padding: 8px;
    position: fixed;
    right: 18px;
    top: 76px;
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a {
    padding: 13px 12px;
  }

  .hero {
    min-height: 88vh;
    padding-top: 104px;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(247, 245, 239, 0.98) 0%, rgba(247, 245, 239, 0.86) 72%, rgba(247, 245, 239, 0.48) 100%),
      linear-gradient(0deg, rgba(23, 32, 42, 0.18), rgba(23, 32, 42, 0));
  }

  .stats-band,
  .split-section,
  .process-list,
  .deliverables-section,
  .contact-section,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .stats-band div,
  .process-list article {
    border-right: 0;
  }

  .stats-band div,
  .process-list article {
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .process-list article {
    border-bottom-color: var(--line);
    padding: 24px 0;
  }

  .process-list article + article {
    padding-left: 0;
  }

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

@media (max-width: 540px) {
  .brand small {
    display: none;
  }

  .brand {
    gap: 10px;
  }

  .brand-logo-wrap {
    height: 44px;
    width: 50px;
  }

  .brand-logo {
    height: 46px;
    width: 58px;
  }

  .hero-actions,
  .hero-actions .button,
  .cta-section .button,
  .contact-form .button {
    width: 100%;
  }

  .hero {
    min-height: 86vh;
  }

  h1 {
    font-size: clamp(2.45rem, 12vw, 3.35rem);
    line-height: 0.98;
  }

  .service-card,
  .contact-form {
    padding: 22px;
  }

  .footer-meta {
    text-align: left;
  }
}
