:root {
  --pine: #0e3f3b;
  --pine-dark: #092c2a;
  --reef: #1f8a83;
  --coral: #d96f4f;
  --amber: #dba64b;
  --ink: #19211f;
  --muted: #66736f;
  --paper: #fcfbf7;
  --mist: #edf6f4;
  --clay: #f6eee8;
  --white: #ffffff;
  --line: #d9e2de;
  --shadow: 0 22px 55px rgba(14, 63, 59, .14);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(14, 63, 59, .045) 1px, transparent 1px),
    var(--paper);
  background-size: 72px 72px;
  font-family: Inter, Arial, Helvetica, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  height: 116px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 0 clamp(22px, 6vw, 82px);
  color: var(--white);
  background: rgba(9, 44, 42, .96);
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  backdrop-filter: blur(12px);
}

.logo-link {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 210px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  text-decoration: none;
}

.logo {
  width: 178px;
  max-width: 178px;
  max-height: 66px;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, .16));
}

.brand-name {
  display: block;
  margin-top: 3px;
  color: #eed9b1;
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: .14em;
  text-transform: uppercase;
  text-align: center;
  text-shadow: 0 8px 18px rgba(0, 0, 0, .18);
  white-space: nowrap;
}

.nav {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 800;
}

.nav a,
.footer a {
  text-decoration: none;
}

.nav a {
  display: flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 13px;
  border-radius: var(--radius);
  color: rgba(255, 255, 255, .78);
}

.nav a:hover,
.nav a[aria-current="page"] {
  color: var(--white);
  background: rgba(255, 255, 255, .1);
}

.nav-cta {
  margin-left: 8px;
  color: var(--pine-dark) !important;
  background: var(--amber) !important;
  box-shadow: 0 14px 32px rgba(219, 166, 75, .24);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: var(--radius);
  background: transparent;
  cursor: pointer;
  place-items: center;
  gap: 4px;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  background: var(--white);
}

main,
.footer {
  margin-right: 0;
}

.hero {
  min-height: calc(100vh - 116px);
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr);
  grid-template-rows: 1fr auto;
  column-gap: clamp(28px, 5vw, 74px);
  row-gap: 28px;
  align-items: center;
  padding: clamp(54px, 7vw, 92px) clamp(24px, 6vw, 82px) 34px;
}

.hero-copy {
  max-width: 650px;
}

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

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

h1,
h2,
h3 {
  line-height: 1.02;
  letter-spacing: 0;
}

h1 {
  max-width: 920px;
  margin-bottom: 26px;
  font-size: clamp(46px, 6.8vw, 86px);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(32px, 4.6vw, 58px);
}

h3 {
  margin-bottom: 12px;
  font-size: 24px;
}

.hero-copy p:not(.eyebrow),
.section-heading p,
.about-copy p,
.contact-copy p,
.content-grid p,
.page-hero p:not(.eyebrow),
.services-intro p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid var(--pine);
  border-radius: var(--radius);
  font: inherit;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

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

.primary {
  color: var(--white);
  background: var(--pine);
  box-shadow: 0 16px 34px rgba(14, 63, 59, .22);
}

.primary:hover {
  background: var(--pine-dark);
}

.secondary {
  color: var(--pine);
  background: transparent;
}

.hero-panel {
  position: relative;
  align-self: start;
  min-height: 0;
  aspect-ratio: 4 / 3;
  display: grid;
  place-items: center;
  padding: clamp(20px, 2.8vw, 38px);
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(14, 63, 59, .08);
  background:
    radial-gradient(circle at 50% 46%, rgba(237, 246, 244, .96), rgba(223, 238, 234, .74) 62%, rgba(223, 238, 234, .18) 100%);
  box-shadow: 0 18px 44px rgba(14, 63, 59, .08);
}

.hero-panel img {
  width: 92%;
  height: auto;
  max-height: 500px;
  object-fit: contain;
  background: transparent;
  filter: drop-shadow(0 15px 18px rgba(9, 44, 42, .14));
}

.hero-stats {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
  box-shadow: 0 14px 36px rgba(25, 33, 31, .08);
}

.hero-stats div {
  padding: 24px;
  background: rgba(255, 255, 255, .9);
}

.hero-stats strong,
.confidence strong {
  display: block;
  margin-bottom: 5px;
  font-size: 18px;
}

.hero-stats span,
.confidence p,
.feature-card p,
.service-card p,
.service-card li,
.timeline p,
.about-panel li,
.process-grid p,
.detail-list p {
  color: var(--muted);
}

.section {
  padding: 96px clamp(24px, 6vw, 82px);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 40px;
}

.services {
  background: var(--white);
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.feature-card {
  min-height: 270px;
  padding: 30px;
  color: inherit;
  background: var(--white);
  text-decoration: none;
  transition: background .18s ease, color .18s ease;
}

.feature-card:hover {
  color: var(--white);
  background: var(--pine);
}

.feature-card:hover p,
.feature-card:hover span {
  color: rgba(255, 255, 255, .76);
}

.feature-card span {
  display: block;
  margin-bottom: 34px;
  color: var(--coral);
  font-size: 13px;
  font-weight: 900;
}

.confidence {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 54px;
  color: var(--white);
  background: var(--pine);
}

.confidence .eyebrow {
  color: var(--amber);
}

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

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

.confidence-grid article {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .08);
}

.confidence p {
  color: rgba(255, 255, 255, .74);
}

.cta-band {
  text-align: center;
  background: var(--clay);
}

.cta-band h2 {
  max-width: 740px;
  margin-left: auto;
  margin-right: auto;
}

.page-hero,
.services-intro {
  position: relative;
  overflow: hidden;
  padding: 94px clamp(24px, 6vw, 82px) 74px;
  background: var(--mist);
  border-bottom: 1px solid var(--line);
}

.page-hero::after,
.services-intro::after {
  content: "";
  position: absolute;
  top: 48px;
  right: clamp(24px, 6vw, 82px);
  bottom: 48px;
  width: min(31vw, 360px);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(31, 138, 131, .88), rgba(217, 111, 79, .78)),
    var(--pine);
}

.page-hero > *,
.services-intro > * {
  position: relative;
  z-index: 1;
  max-width: min(760px, 62vw);
}

.page-hero h1,
.services-intro h1 {
  margin-bottom: 0;
}

.page-hero p:not(.eyebrow),
.services-intro p:not(.eyebrow) {
  margin-bottom: 8px;
}

.services-intro > p {
  margin-top: 24px;
}

.service-list {
  display: grid;
  gap: 18px;
}

.service-list .service-card {
  display: grid;
  grid-template-columns: minmax(210px, 300px) .85fr 1fr auto;
  gap: 24px;
  align-items: center;
  min-height: 0;
}

.service-card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 12px 32px rgba(14, 63, 59, .08);
}

.service-media {
  width: 100%;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(14, 63, 59, .14);
  border-radius: var(--radius);
  background: var(--mist);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .35);
}

.service-media img {
  width: 100%;
  aspect-ratio: 13 / 8;
  object-fit: cover;
}

.service-tag {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 22px;
  padding: 6px 10px;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--coral);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.service-card ul,
.about-panel ul {
  margin: 0;
  padding-left: 20px;
}

.service-card li,
.about-panel li {
  margin: 9px 0;
}

.service-card a {
  align-self: center;
  color: var(--pine);
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
}

.service-process {
  background: var(--mist);
}

.service-process h2 {
  max-width: 740px;
}

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

.process-grid article,
.detail-list article,
.about-panel {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 30px rgba(14, 63, 59, .07);
}

.process-grid strong,
.detail-list strong {
  display: block;
  margin-bottom: 10px;
  font-size: 18px;
}

.workflow {
  background: var(--white);
}

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

.timeline article {
  min-height: 300px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 12px 30px rgba(14, 63, 59, .07);
}

.timeline span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 34px;
  border-radius: 50%;
  color: var(--white);
  background: var(--pine);
  font-size: 13px;
  font-weight: 900;
}

.content-grid,
.about,
.contact {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 54px;
  align-items: start;
}

.content-grid {
  background: var(--clay);
}

.about {
  background: var(--white);
}

.about-copy p {
  max-width: 760px;
}

.about-panel {
  background: var(--mist);
}

.detail-list {
  display: grid;
  gap: 16px;
}

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

.contact-details {
  display: grid;
  gap: 10px;
  margin-top: 30px;
}

.contact-details a {
  width: fit-content;
  color: var(--pine);
  font-size: 18px;
  font-weight: 900;
  text-decoration-color: var(--coral);
  text-underline-offset: 4px;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--mist);
  box-shadow: var(--shadow);
}

.form-row {
  min-width: 0;
}

.wide,
.full,
.form-note {
  grid-column: 1 / -1;
}

label {
  display: block;
  margin-bottom: 7px;
  color: var(--pine-dark);
  font-size: 13px;
  font-weight: 900;
}

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

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(31, 138, 131, .18);
  border-color: var(--reef);
}

textarea {
  resize: vertical;
}

.form-note {
  margin: -4px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.form-note.success {
  color: var(--pine);
  font-weight: 800;
}

.contact-form button:disabled {
  cursor: wait;
  opacity: .72;
  transform: none;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.footer {
  display: grid;
  grid-template-columns: auto minmax(220px, 540px) auto;
  gap: 28px;
  align-items: center;
  padding: 34px clamp(24px, 6vw, 82px);
  color: var(--white);
  background: var(--pine-dark);
}

.footer-brand {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  width: 190px;
}

.footer img {
  width: 156px;
  max-width: 156px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, .16));
}

.footer p {
  margin: 0;
  color: rgba(255, 255, 255, .76);
}

.footer-copy {
  display: grid;
  gap: 8px;
  max-width: 540px;
}

.footer-email {
  width: fit-content;
  color: #eed9b1;
  font-weight: 900;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.footer nav {
  display: flex;
  gap: 18px;
  font-weight: 800;
}

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

@media (max-width: 1080px) {
  .site-header {
    height: 94px;
    padding: 0 22px;
  }

  .menu-toggle {
    display: grid;
  }

  .nav {
    position: absolute;
    top: 94px;
    left: 0;
    right: 0;
    display: none;
    padding: 12px 22px 24px;
    background: var(--pine-dark);
    border-bottom: 1px solid rgba(255, 255, 255, .12);
  }

  .logo-link {
    width: 174px;
  }

  .logo {
    width: 150px;
    max-width: 150px;
    max-height: 56px;
  }

  .brand-name {
    font-size: 11px;
    letter-spacing: .11em;
  }

  .nav.open {
    display: flex;
  }

  .hero,
  .confidence,
  .content-grid,
  .about,
  .contact,
  .page-hero,
  .services-intro {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-panel {
    width: min(100%, 760px);
    min-height: 0;
    margin: 0 auto;
  }

  .page-hero::after,
  .services-intro::after {
    position: relative;
    display: block;
    inset: auto;
    width: 100%;
    min-height: 120px;
    margin-top: 28px;
  }

  .page-hero > *,
  .services-intro > * {
    max-width: 100%;
  }

  .hero-stats,
  .feature-grid,
  .confidence-grid,
  .service-list .service-card,
  .process-grid,
  .timeline {
    grid-template-columns: 1fr;
  }

  .service-card a {
    align-self: start;
    white-space: normal;
  }

  .service-media {
    max-width: 520px;
  }

  .footer {
    grid-template-columns: 1fr;
    justify-items: start;
  }
}

@media (max-width: 640px) {
  body {
    background-size: 54px 54px;
  }

  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 34px;
  }

  .section,
  .hero,
  .page-hero,
  .services-intro {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero-panel {
    min-height: 0;
    padding: 22px 16px;
    aspect-ratio: 4 / 3;
  }

  .hero-panel img {
    width: 98%;
  }

  .hero-stats div,
  .feature-card,
  .service-card,
  .timeline article,
  .process-grid article,
  .detail-list article,
  .about-panel,
  .contact-form {
    padding: 22px;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .footer nav {
    flex-wrap: wrap;
  }
}
