:root {
  color-scheme: light;
  --ink: #17201d;
  --muted: #65716d;
  --line: #dce4de;
  --paper: #fbfaf5;
  --soft: #eef5ef;
  --white: #ffffff;
  --teal: #13827a;
  --teal-deep: #0b5b56;
  --coral: #d66f57;
  --amber: #d6a84e;
  --shadow: 0 22px 70px rgba(24, 48, 42, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family:
    Inter, "Noto Sans", "Segoe UI", Arial, sans-serif;
  line-height: 1.5;
  letter-spacing: 0;
}

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;
  min-height: 76px;
  padding: 16px clamp(18px, 4vw, 58px);
  color: var(--ink);
  transition:
    background 180ms ease,
    box-shadow 180ms ease;
}

.site-header[data-elevated="true"] {
  background: rgba(251, 250, 245, 0.94);
  box-shadow: 0 1px 24px rgba(28, 43, 38, 0.12);
  backdrop-filter: blur(14px);
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 2px solid var(--teal);
  border-radius: 50%;
  color: var(--teal);
  font-weight: 900;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.05;
}

.brand strong {
  font-size: 15px;
}

.brand small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 11px;
}

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

.nav a {
  color: var(--muted);
}

.nav a:hover {
  color: var(--teal-deep);
}

.header-action,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border-radius: 999px;
  font-weight: 850;
  white-space: nowrap;
}

.header-action {
  min-width: 78px;
  padding: 0 18px;
  background: var(--ink);
  color: var(--white);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
  padding: 128px clamp(18px, 5vw, 62px) 40px;
  color: var(--ink);
  background: var(--paper);
}

.hero-image {
  position: absolute;
  inset: 92px clamp(18px, 5vw, 62px) 0;
  z-index: -3;
  width: auto;
  height: auto;
  border-radius: 0;
  object-fit: cover;
}

.hero-image {
  width: calc(100% - clamp(18px, 5vw, 62px) * 2);
  height: calc(100% - 92px);
}

.hero-shade {
  position: absolute;
  inset: 92px clamp(18px, 5vw, 62px) 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(251, 250, 245, 0.96) 0%, rgba(251, 250, 245, 0.86) 38%, rgba(251, 250, 245, 0.28) 68%, rgba(251, 250, 245, 0.06) 100%),
    linear-gradient(180deg, rgba(251, 250, 245, 0.18) 0%, rgba(251, 250, 245, 0.02) 55%, rgba(251, 250, 245, 0.62) 100%);
}

.hero-content {
  width: min(790px, 100%);
  padding: 0 0 clamp(26px, 5vw, 58px);
}

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

h1,
h2,
h3,
p,
li {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  max-width: 880px;
  color: var(--ink);
  font-size: clamp(54px, 9vw, 118px);
  line-height: 0.9;
  letter-spacing: 0;
  overflow-wrap: normal;
  word-break: normal;
}

h1 span {
  display: block;
  white-space: nowrap;
}

.hero-copy {
  max-width: 650px;
  margin: 28px 0 0;
  color: #3c4945;
  font-size: clamp(17px, 2vw, 22px);
}

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

.button {
  min-width: 160px;
  padding: 0 24px;
}

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

.button.secondary {
  border: 1px solid rgba(23, 32, 29, 0.22);
  background: rgba(255, 255, 255, 0.64);
  color: var(--ink);
}

.summary-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: -1px clamp(18px, 5vw, 62px) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.68);
}

.summary-strip div {
  min-height: 124px;
  padding: 26px clamp(18px, 3vw, 42px);
  border-right: 1px solid var(--line);
}

.summary-strip div:last-child {
  border-right: 0;
}

.summary-strip span,
.facts dt {
  display: block;
  margin-bottom: 9px;
  color: var(--muted);
  font-size: 13px;
}

.summary-strip strong,
.facts dd {
  margin: 0;
  font-size: clamp(18px, 2vw, 25px);
  line-height: 1.25;
}

.section,
.company-band {
  padding: clamp(66px, 8vw, 112px) clamp(18px, 5vw, 62px);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 6vw, 88px);
  align-items: end;
  margin-bottom: 36px;
}

h2 {
  margin: 0;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1;
}

.service-grid {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.service-card {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: clamp(20px, 5vw, 72px);
  align-items: start;
  padding: clamp(24px, 4vw, 42px) 0;
  border-bottom: 1px solid var(--line);
}

.service-card span {
  color: var(--coral);
  font-size: 18px;
  font-weight: 900;
}

.service-card h3 {
  margin: 0 0 10px;
  font-size: clamp(26px, 4vw, 46px);
  line-height: 1.03;
}

.service-card p {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.company-band {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: clamp(34px, 7vw, 94px);
  background: var(--soft);
  color: var(--ink);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.company-copy p:not(.kicker) {
  max-width: 680px;
  color: var(--muted);
  font-size: 19px;
}

.facts {
  display: grid;
  align-content: start;
  gap: 0;
  margin: 0;
  border-top: 1px solid var(--line);
}

.facts div {
  display: grid;
  grid-template-columns: minmax(140px, 0.35fr) minmax(0, 1fr);
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.facts dt {
  margin: 0;
}

.facts dd {
  color: var(--ink);
  font-weight: 800;
}

.contact-section {
  background: var(--paper);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.72fr);
  gap: 18px;
}

.contact-panel,
.contact-note {
  background: var(--white);
  box-shadow: var(--shadow);
}

.contact-panel {
  display: grid;
  gap: 16px;
  padding: clamp(28px, 5vw, 52px);
  font-style: normal;
}

.contact-panel strong {
  font-size: clamp(30px, 5vw, 58px);
  line-height: 1;
}

.contact-panel span {
  color: var(--muted);
  font-size: 18px;
}

.contact-panel a {
  width: fit-content;
  color: var(--teal);
  font-weight: 900;
  font-size: 18px;
}

.contact-note {
  display: grid;
  align-content: space-between;
  gap: 28px;
  padding: clamp(26px, 4vw, 38px);
}

.contact-note p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.contact-note ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(18px, 5vw, 62px);
  background: var(--ink);
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
}

@media (max-width: 960px) {
  .nav {
    display: none;
  }

  .hero {
    min-height: 86vh;
  }

  .summary-strip,
  .section-heading,
  .company-band,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .summary-strip div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .summary-strip div:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 620px) {
  .site-header {
    min-height: 68px;
    padding-inline: 14px;
  }

  .brand small {
    display: none;
  }

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

  .header-action {
    display: none;
  }

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

  .hero-image,
  .hero-shade {
    inset: 76px 0 0;
  }

  .hero-image {
    width: 100%;
    height: calc(100% - 76px);
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(251, 250, 245, 0.98) 0%, rgba(251, 250, 245, 0.86) 66%, rgba(251, 250, 245, 0.42) 100%),
      linear-gradient(180deg, rgba(251, 250, 245, 0.22) 0%, rgba(251, 250, 245, 0.76) 100%);
  }

  h1 {
    font-size: clamp(43px, 14vw, 57px);
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .summary-strip {
    margin-inline: 0;
  }

  .service-card,
  .facts div {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .service-card h3 {
    font-size: clamp(27px, 9vw, 38px);
  }

  .site-footer {
    display: grid;
  }
}
