:root {
  --ink: #101820;
  --ink-soft: #4b5563;
  --muted: #6b7280;
  --paper: #fbfbf8;
  --white: #ffffff;
  --line: #d9ded8;
  --line-soft: #edf0ed;
  --green: #1f6f2e;
  --green-2: #2f8f46;
  --green-soft: #e9f4ea;
  --dark: #0f1a22;
  --dark-2: #172632;
  --shadow: 0 22px 70px rgba(16, 24, 32, 0.1);
  --max: 1240px;
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Manrope", "Helvetica Neue", sans-serif;
  letter-spacing: 0;
}

a {
  color: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px max(22px, calc((100vw - var(--max)) / 2));
  background: rgba(251, 251, 248, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: fit-content;
  color: var(--ink);
  text-decoration: none;
}

.brand-mark {
  position: relative;
  display: grid;
  width: 46px;
  height: 38px;
  place-items: center;
  color: transparent;
  font-size: 0;
}

.brand-mark::before,
.brand-mark::after {
  position: absolute;
  content: "";
  transform: skewX(-14deg);
}

.brand-mark::before {
  width: 38px;
  height: 11px;
  top: 8px;
  left: 3px;
  background: var(--ink);
}

.brand-mark::after {
  width: 28px;
  height: 11px;
  left: 16px;
  bottom: 8px;
  background: var(--green-2);
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand-text {
  font-size: 22px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.brand-subtitle {
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 58px;
  font-size: 16px;
  font-weight: 700;
}

.nav a {
  position: relative;
  color: var(--ink);
  text-decoration: none;
}

.nav a:hover,
.nav a[aria-current="page"] {
  color: var(--green);
}

.nav a[aria-current="page"]::after,
.nav a:hover::after {
  position: absolute;
  right: 0;
  bottom: -25px;
  left: 0;
  height: 3px;
  background: var(--green);
  content: "";
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
  align-items: center;
  gap: 10px;
  width: min(var(--max), calc(100% - 44px));
  min-height: 600px;
  margin: 0 auto;
  padding: 54px 0 30px;
  border-bottom: 1px solid var(--line);
  overflow: visible;
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding: 30px 0 34px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: 56px;
  font-weight: 800;
  line-height: 1.14;
}

.hero-line {
  margin: 24px 0 0;
  color: var(--green);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.32;
}

.hero-body {
  max-width: 560px;
  margin: 28px 0 0;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.7;
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 18px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

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

.button-primary {
  color: #fff;
  background: var(--green);
  border: 1px solid var(--green);
}

.button-secondary {
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
}

.button-dark {
  color: #fff;
  background: var(--ink);
  border: 1px solid var(--ink);
}

.hero-visual {
  position: relative;
  min-width: 0;
  margin-right: 0;
  pointer-events: none;
}

.hero-visual img {
  width: min(680px, 100%);
  max-width: 100%;
  filter: drop-shadow(0 28px 36px rgba(16, 24, 32, 0.14));
}

.identity-strip {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: 1.35fr 1fr 1.05fr;
  width: min(var(--max), calc(100% - 44px));
  margin: -1px auto 0;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.identity-item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 18px;
  min-height: 112px;
  align-items: center;
  padding: 24px 22px;
  border-left: 1px solid var(--line);
}

.identity-item:first-child {
  border-left: 0;
}

.identity-icon {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  color: var(--green);
  background: var(--green-soft);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}

.fact-label {
  display: block;
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.identity-item strong {
  display: block;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.company-statement {
  max-width: 920px;
  padding-top: 76px;
  padding-bottom: 90px;
  text-align: left;
}

.company-statement h2 {
  max-width: 760px;
}

.company-statement p:not(.eyebrow) {
  max-width: 760px;
  margin: 24px 0 0;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.75;
}

.section {
  width: min(var(--max), calc(100% - 44px));
  margin: 0 auto;
  padding: 72px 0;
}

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

.section h2,
.page-hero h1,
.legal-page h1 {
  margin: 0;
  color: var(--ink);
  font-size: 42px;
  font-weight: 800;
  line-height: 1.18;
}

.profile-copy p,
.contact-card p,
.contact-notes p,
.legal-page p,
.not-found p {
  margin: 26px 0 0;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.75;
}

.page-hero {
  width: min(var(--max), calc(100% - 44px));
  margin: 0 auto;
  padding: 92px 0 54px;
  border-bottom: 1px solid var(--line);
}

.page-hero p:not(.eyebrow) {
  max-width: 760px;
  margin: 22px 0 0;
  color: var(--ink-soft);
  font-size: 20px;
  line-height: 1.6;
}

.profile-layout {
  display: grid;
  grid-template-columns: 380px minmax(0, 1fr);
  gap: 58px;
}

.profile-panel,
.contact-card {
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 36px rgba(16, 24, 32, 0.06);
}

.profile-panel h2,
.contact-card h2,
.copy-block h2 {
  margin: 0;
  font-size: 30px;
  font-weight: 800;
  line-height: 1.18;
}

.profile-panel dl {
  display: grid;
  gap: 22px;
  margin: 28px 0 0;
}

.profile-panel dt {
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.profile-panel dd {
  margin: 0;
  font-weight: 800;
  line-height: 1.45;
}

.profile-copy {
  display: grid;
  gap: 56px;
}

.copy-block p + p {
  margin-top: 16px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: 28px;
}

.contact-card h2 {
  overflow-wrap: anywhere;
}

.contact-notes {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.contact-notes div {
  padding: 24px;
  background: var(--white);
}

.contact-notes h3 {
  margin: 0 0 10px;
  font-size: 18px;
}

.legal-page {
  width: min(820px, calc(100% - 44px));
  margin: 0 auto;
  padding: 92px 0;
}

.legal-page h1 {
  margin-bottom: 12px;
}

.legal-date {
  margin-bottom: 42px;
}

.legal-page section {
  padding: 28px 0;
  border-top: 1px solid var(--line);
}

.legal-page h2 {
  margin: 0 0 12px;
  font-size: 22px;
}

.footer {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 26px;
  padding: 34px max(22px, calc((100vw - var(--max)) / 2));
  color: rgba(255, 255, 255, 0.82);
  background: var(--ink);
}

.footer strong {
  color: #fff;
}

.footer p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.58);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px 24px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
}

.footer-links a:hover {
  color: #fff;
}

.not-found {
  display: grid;
  min-height: 100vh;
  place-content: center;
  gap: 18px;
  width: min(640px, calc(100% - 44px));
  margin: 0 auto;
  text-align: center;
}

.not-found h1 {
  margin: 0;
  font-size: 56px;
}

.not-found .button {
  justify-self: center;
  margin-top: 8px;
}

@media (max-width: 1120px) {
  .nav {
    gap: 28px;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
    padding-top: 54px;
  }

  .hero h1 {
    max-width: 860px;
    font-size: 50px;
  }

  .hero-visual {
    margin: -34px auto 0;
  }

  .hero-visual img {
    width: min(760px, 100%);
    max-width: 100%;
  }

  .identity-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .identity-item {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .identity-item:nth-child(1),
  .identity-item:nth-child(2) {
    border-top: 0;
  }

  .identity-item:nth-child(2n) {
    border-left: 1px solid var(--line);
  }

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

@media (max-width: 700px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }

  .nav {
    width: 100%;
    justify-content: space-between;
    gap: 12px;
    font-size: 14px;
  }

  .nav a:hover::after,
  .nav a[aria-current="page"]::after {
    display: none;
  }

  .brand-mark {
    width: 42px;
    height: 34px;
  }

  .brand-text {
    font-size: 20px;
  }

  .hero {
    width: min(100% - 32px, var(--max));
    padding-top: 44px;
  }

  .hero h1 {
    font-size: 40px;
    line-height: 1.12;
  }

  .hero-line {
    font-size: 21px;
  }

  .hero-body {
    font-size: 16px;
  }

  .button,
  .hero-actions {
    width: 100%;
  }

  .hero-visual {
    margin-top: 8px;
  }


  .identity-strip {
    grid-template-columns: 1fr;
    width: min(100% - 32px, var(--max));
  }

  .identity-item,
  .identity-item:nth-child(2n) {
    min-height: 102px;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

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

  .section,
  .page-hero,
  .legal-page {
    width: min(100% - 32px, var(--max));
  }

  .section {
    padding: 56px 0;
  }

  .section h2,
  .page-hero h1,
  .legal-page h1 {
    font-size: 34px;
  }

  .footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-links {
    justify-content: flex-start;
  }
}
