:root {
  --ink: #15171a;
  --muted: #62666d;
  --line: #dfe1e4;
  --soft: #f5f5f3;
  --paper: #ffffff;
  --accent: #176b5b;
  --accent-dark: #0f4b41;
  --signal: #d98b38;
  --max: 1180px;
  --shadow: 0 18px 50px rgba(20, 25, 28, 0.09);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}

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

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

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  padding: 9px 13px;
  color: #fff;
  background: var(--ink);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(223, 225, 228, 0.85);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
}

.nav-shell,
.container {
  width: min(calc(100% - 48px), var(--max));
  margin-inline: auto;
}

.nav-shell {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
  font-size: 14px;
  font-weight: 750;
  line-height: 1.2;
}

.brand-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 7px;
  color: #fff;
  background: var(--ink);
  font-size: 15px;
}

.brand-name span {
  display: block;
  color: var(--muted);
  font-size: 10px;
  font-weight: 650;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a {
  padding: 8px 11px;
  color: #50545a;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  color: var(--ink);
  background: var(--soft);
}

.site-nav .nav-contact {
  margin-left: 6px;
  color: #fff;
  background: var(--ink);
}

.site-nav .nav-contact:hover,
.site-nav .nav-contact:focus-visible,
.site-nav .nav-contact[aria-current="page"] {
  color: #fff;
  background: var(--accent-dark);
}

.menu-button {
  width: 42px;
  height: 42px;
  display: none;
  place-items: center;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  cursor: pointer;
}

.menu-button svg {
  width: 20px;
  height: 20px;
}

.hero {
  min-height: 690px;
  display: grid;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--soft);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(390px, 0.98fr);
  align-items: center;
  gap: 72px;
  padding-block: 82px;
}

.eyebrow {
  margin: 0 0 20px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 750;
  text-transform: uppercase;
}

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

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

h1 {
  max-width: 780px;
  margin-bottom: 28px;
  font-size: clamp(42px, 5.2vw, 72px);
  line-height: 1.02;
  font-weight: 720;
}

.legal-name {
  overflow-wrap: anywhere;
  font-size: clamp(38px, 4.6vw, 62px);
}

.hero-copy {
  max-width: 650px;
  margin-bottom: 32px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.65;
}

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

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 10px 17px;
  border: 1px solid var(--ink);
  border-radius: 6px;
  background: var(--ink);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.button:hover {
  border-color: var(--accent-dark);
  background: var(--accent-dark);
  transform: translateY(-1px);
}

.button.secondary {
  color: var(--ink);
  background: transparent;
  border-color: #b8bbc0;
}

.button.secondary:hover {
  border-color: var(--ink);
  background: #fff;
}

.button svg,
.text-link svg {
  width: 17px;
  height: 17px;
}

.hero-visual {
  position: relative;
  min-height: 460px;
}

.hero-image {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-label {
  position: absolute;
  right: -18px;
  bottom: 28px;
  width: min(275px, 72%);
  padding: 18px 20px;
  border-left: 4px solid var(--signal);
  background: #fff;
  box-shadow: 0 12px 36px rgba(20, 25, 28, 0.13);
}

.hero-label strong,
.hero-label span {
  display: block;
}

.hero-label strong {
  font-size: 15px;
}

.hero-label span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 13px;
}

.section {
  padding-block: 100px;
}

.section.soft {
  background: var(--soft);
}

.section-header {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 72px;
  margin-bottom: 56px;
}

.section-header h2,
.split-copy h2,
.cta h2,
.page-hero h1 {
  margin-bottom: 0;
  font-size: clamp(34px, 4.2vw, 54px);
  line-height: 1.08;
}

.section-header p,
.split-copy > p {
  max-width: 680px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 18px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}

.service-item {
  min-height: 230px;
  padding: 30px 24px 24px;
  border-right: 1px solid var(--line);
}

.service-item:first-child {
  padding-left: 0;
}

.service-item:last-child {
  border-right: 0;
}

.service-number {
  color: var(--accent);
  font-size: 13px;
  font-weight: 750;
}

.service-item h3 {
  margin: 60px 0 12px;
  font-size: 20px;
}

.service-item p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 88px;
  align-items: center;
}

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

.principle {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 14px;
  padding-block: 20px;
  border-bottom: 1px solid var(--line);
}

.principle span {
  color: var(--accent);
  font-size: 13px;
  font-weight: 750;
}

.principle h3 {
  margin: 0 0 4px;
  font-size: 17px;
}

.principle p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.cta-band {
  padding-block: 84px;
  color: #fff;
  background: var(--ink);
}

.cta {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
}

.cta .eyebrow {
  color: #7fc7b7;
}

.cta h2 {
  max-width: 720px;
}

.cta .button {
  color: var(--ink);
  border-color: #fff;
  background: #fff;
}

.page-hero {
  padding: 104px 0 74px;
  border-bottom: 1px solid var(--line);
  background: var(--soft);
}

.page-hero h1 {
  max-width: 860px;
  margin-bottom: 24px;
}

.page-hero p {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 20px;
}

.page-hero .meta-line {
  display: flex;
  gap: 26px;
  margin-top: 34px;
  color: #494d52;
  font-size: 14px;
}

.page-hero .meta-line span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(180px, 0.35fr) minmax(0, 1fr);
  gap: 82px;
}

.content-label {
  color: var(--accent);
  font-size: 13px;
  font-weight: 750;
  text-transform: uppercase;
}

.prose {
  max-width: 790px;
}

.prose > p:first-child {
  color: var(--ink);
  font-size: 25px;
  line-height: 1.55;
}

.prose p {
  color: var(--muted);
}

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

.capability-row {
  display: grid;
  grid-template-columns: 60px 0.8fr 1.2fr;
  gap: 30px;
  align-items: start;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}

.capability-row > span {
  color: var(--accent);
  font-size: 13px;
  font-weight: 750;
}

.capability-row h2 {
  margin: 0;
  font-size: 24px;
}

.capability-row p {
  margin: 0;
  color: var(--muted);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(420px, 1.2fr);
  gap: 100px;
}

.contact-intro h2 {
  margin-bottom: 18px;
  font-size: 36px;
  line-height: 1.15;
}

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

.contact-details {
  border-top: 1px solid var(--line);
}

.contact-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 30px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.contact-row dt {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.contact-row dd {
  margin: 0;
  font-weight: 650;
  overflow-wrap: anywhere;
}

.contact-row a {
  color: var(--accent-dark);
  text-decoration: underline;
  text-decoration-color: rgba(23, 107, 91, 0.35);
  text-underline-offset: 4px;
}

.policy-layout {
  display: grid;
  grid-template-columns: 230px minmax(0, 760px);
  gap: 90px;
  align-items: start;
}

.policy-nav {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 8px;
}

.policy-nav a {
  padding: 6px 0;
  color: var(--muted);
  font-size: 14px;
}

.policy-nav a:hover,
.policy-nav a:focus-visible {
  color: var(--accent-dark);
}

.policy-content section {
  padding-bottom: 36px;
  margin-bottom: 36px;
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 110px;
}

.policy-content h2 {
  margin-bottom: 14px;
  font-size: 25px;
}

.policy-content p,
.policy-content li {
  color: var(--muted);
}

.policy-content ul {
  padding-left: 20px;
}

.site-footer {
  padding: 56px 0 32px;
  border-top: 1px solid var(--line);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr 0.6fr;
  gap: 60px;
  padding-bottom: 48px;
}

.footer-company {
  max-width: 480px;
}

.footer-company .brand {
  margin-bottom: 18px;
}

.footer-company p,
.footer-column a,
.footer-bottom {
  color: var(--muted);
  font-size: 13px;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 9px;
}

.footer-column strong {
  margin-bottom: 6px;
  font-size: 13px;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

:focus-visible {
  outline: 3px solid rgba(23, 107, 91, 0.34);
  outline-offset: 3px;
}

@media (max-width: 960px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .hero-visual {
    max-width: 720px;
  }

  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-item:nth-child(2) {
    border-right: 0;
  }

  .service-item:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .split,
  .contact-layout {
    gap: 54px;
  }
}

@media (max-width: 760px) {
  .nav-shell,
  .container {
    width: min(calc(100% - 32px), var(--max));
  }

  .nav-shell {
    min-height: 64px;
  }

  .menu-button {
    display: grid;
  }

  .site-nav {
    position: absolute;
    top: 64px;
    right: 0;
    left: 0;
    display: none;
    align-items: stretch;
    padding: 12px 16px 18px;
    border-bottom: 1px solid var(--line);
    background: #fff;
    box-shadow: 0 16px 30px rgba(20, 25, 28, 0.08);
  }

  .site-nav[data-open="true"] {
    display: grid;
  }

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

  .site-nav .nav-contact {
    margin: 5px 0 0;
    text-align: center;
  }

  .brand-name span {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    gap: 44px;
    padding-block: 64px 52px;
  }

  h1 {
    font-size: 43px;
  }

  .legal-name {
    font-size: 38px;
  }

  .hero-copy,
  .page-hero p {
    font-size: 17px;
  }

  .hero-visual,
  .hero-image {
    min-height: 0;
    height: 340px;
  }

  .hero-label {
    right: 14px;
    bottom: 14px;
  }

  .section {
    padding-block: 72px;
  }

  .section-header,
  .split,
  .content-grid,
  .contact-layout,
  .policy-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .section-header {
    margin-bottom: 38px;
  }

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

  .service-item,
  .service-item:first-child {
    min-height: 0;
    padding: 26px 0;
    border-right: 0;
    border-top: 1px solid var(--line);
  }

  .service-item:first-child {
    border-top: 0;
  }

  .service-item h3 {
    margin-top: 24px;
  }

  .cta {
    display: grid;
    align-items: start;
  }

  .page-hero {
    padding: 72px 0 58px;
  }

  .page-hero .meta-line {
    flex-direction: column;
    gap: 8px;
  }

  .capability-row {
    grid-template-columns: 38px 1fr;
    gap: 12px;
  }

  .capability-row p {
    grid-column: 2;
  }

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

  .contact-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .policy-nav {
    position: static;
    grid-template-columns: repeat(2, 1fr);
    gap: 5px 18px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--line);
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 40px 24px;
  }

  .footer-company {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 390px) {
  h1 {
    font-size: 37px;
  }

  .legal-name {
    font-size: 34px;
  }

  .brand {
    gap: 8px;
    font-size: 13px;
  }

  .policy-nav {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
