:root {
  color-scheme: light;
  --ink: #16211f;
  --muted: #52615d;
  --paper: #f7f9f8;
  --white: #ffffff;
  --line: #dce4e0;
  --teal: #0f766e;
  --teal-dark: #073f3b;
  --amber: #c77b21;
  --leaf: #6b8f71;
  --shadow: 0 18px 45px rgba(18, 33, 31, 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.55;
}

a {
  color: inherit;
}

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

.site-header.solid {
  position: sticky;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  text-decoration: none;
}

.brand-logo {
  display: block;
  width: clamp(190px, 24vw, 265px);
  height: auto;
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(5, 21, 19, 0.18);
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 28px);
  font-size: 0.94rem;
  font-weight: 700;
}

nav a {
  text-decoration: none;
}

.hero {
  position: relative;
  min-height: min(760px, 92vh);
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: var(--teal-dark);
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: 58% center;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(5, 21, 19, 0.88), rgba(5, 21, 19, 0.54) 42%, rgba(5, 21, 19, 0.05) 78%),
    linear-gradient(0deg, rgba(5, 21, 19, 0.78), rgba(5, 21, 19, 0.08) 48%);
}

.hero-content {
  position: relative;
  width: min(760px, calc(100% - 40px));
  margin: 0 0 clamp(42px, 8vh, 88px) clamp(20px, 6vw, 88px);
  padding-top: 120px;
}

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

.hero h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(2.75rem, 7vw, 5.8rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 610px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.05rem, 2vw, 1.26rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
}

.button.primary {
  background: var(--amber);
  color: #16100a;
}

.button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.42);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.section,
.split-section,
.band,
.contact-section,
.policy-main {
  padding: clamp(64px, 9vw, 112px) clamp(20px, 6vw, 88px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) minmax(280px, 1.2fr);
  gap: clamp(28px, 5vw, 72px);
  background: var(--white);
}

.intro h2,
.section-heading h2,
.split-copy h2,
.contact-section h2,
.policy h1 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.06;
  letter-spacing: 0;
}

.intro p:last-child,
.split-copy p,
.contact-section p {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

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

.service-card,
.process-row article,
.contact-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.service-card {
  min-height: 280px;
  padding: 24px;
}

.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 34px;
  border-radius: 8px;
  background: rgba(15, 118, 110, 0.1);
  color: var(--teal);
  font-weight: 900;
}

.service-card h3,
.process-row h3 {
  margin: 24px 0 10px;
  font-size: 1.18rem;
}

.service-card p,
.process-row p,
.policy p {
  margin: 0;
  color: var(--muted);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(280px, 0.78fr);
  gap: clamp(28px, 5vw, 78px);
  align-items: center;
  background: #edf4f1;
}

.split-copy p {
  margin-top: 22px;
}

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

.check-list li {
  padding: 12px 0 12px 34px;
  border-top: 1px solid rgba(15, 118, 110, 0.2);
  background: linear-gradient(90deg, var(--teal) 0 18px, transparent 18px) left 20px / 18px 2px no-repeat;
  color: #293936;
  font-weight: 700;
}

.inline-link {
  display: inline-flex;
  margin-top: 24px;
  color: var(--teal);
  font-weight: 900;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.metrics-panel {
  display: grid;
  gap: 12px;
}

.metrics-panel div {
  padding: 28px;
  border-left: 5px solid var(--amber);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

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

.metrics-panel strong {
  font-size: 2.15rem;
  line-height: 1;
}

.metrics-panel span {
  margin-top: 8px;
  color: var(--muted);
}

.process {
  background: var(--teal-dark);
  color: var(--white);
}

.process .section-kicker {
  color: #f2b666;
}

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

.process-row article {
  min-height: 190px;
  padding: 26px;
  color: var(--ink);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(280px, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  background: var(--white);
}

.contact-card {
  display: grid;
  gap: 14px;
  padding: 30px;
  font-style: normal;
}

.contact-card a {
  color: var(--teal);
  font-weight: 800;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px clamp(20px, 6vw, 88px);
  color: rgba(255, 255, 255, 0.78);
  background: #111b19;
  font-size: 0.92rem;
}

.site-footer a {
  color: var(--white);
  font-weight: 800;
  text-decoration: none;
}

.policy-main {
  background: var(--paper);
}

.policy {
  max-width: 850px;
  margin: 0 auto;
  padding: 56px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.policy h2 {
  margin: 34px 0 10px;
  font-size: 1.35rem;
}

.policy a {
  color: var(--teal);
  font-weight: 800;
}

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

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

@media (max-width: 680px) {
  .site-header {
    position: absolute;
    align-items: flex-start;
    padding: 14px 16px;
  }

  .brand-logo {
    width: 158px;
  }

  nav {
    gap: 10px;
    font-size: 0.83rem;
  }

  .hero {
    min-height: 760px;
  }

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

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(5, 21, 19, 0.94), rgba(5, 21, 19, 0.66) 58%, rgba(5, 21, 19, 0.2)),
      linear-gradient(0deg, rgba(5, 21, 19, 0.82), rgba(5, 21, 19, 0.12) 55%);
  }

  .hero-content {
    width: calc(100% - 32px);
    margin: 0 16px 42px;
    padding-top: 110px;
  }

  .hero h1 {
    font-size: clamp(2.45rem, 14vw, 4.2rem);
  }

  .hero-actions,
  .site-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .section,
  .split-section,
  .band,
  .contact-section,
  .policy-main {
    padding: 56px 16px;
  }

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

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

  .policy {
    padding: 28px 20px;
  }
}
