:root {
  color-scheme: light;
  --ink: #171717;
  --muted: #5a626d;
  --paper: #fffaf4;
  --surface: #ffffff;
  --line: #d8d6ce;
  --leaf: #25674f;
  --leaf-dark: #174332;
  --coral: #df6b57;
  --gold: #e8b44f;
  --sky: #dbeef3;
  --focus: #0f766e;
  --shadow: 0 18px 48px rgba(22, 32, 30, 0.14);
  --content: 1120px;
}

* {
  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);
}

body.locked {
  overflow: hidden;
}

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid rgba(15, 118, 110, 0.45);
  outline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 250, 244, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(23, 23, 23, 0.08);
}

.nav {
  max-width: var(--content);
  margin: 0 auto;
  padding: 14px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0;
  font-size: 1.45rem;
}

.brand-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  background:
    radial-gradient(circle at 68% 28%, var(--gold) 0 18%, transparent 19%),
    linear-gradient(135deg, var(--leaf), var(--leaf-dark));
  font-weight: 900;
  line-height: 1;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 0.96rem;
  color: #30353b;
}

.nav-links a {
  text-decoration: none;
}

.nav-links a:hover {
  color: var(--leaf);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: var(--ink);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.nav-toggle svg {
  width: 22px;
  height: 22px;
}

.hero {
  position: relative;
  min-height: min(760px, calc(100vh - 72px));
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #1e332c;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(18, 29, 26, 0.82) 0%, rgba(18, 29, 26, 0.68) 32%, rgba(18, 29, 26, 0.24) 64%, rgba(18, 29, 26, 0.08) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.28), transparent 36%);
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(var(--content), 100%);
  margin: 0 auto;
  padding: 92px 22px 98px;
  color: #fff;
}

.eyebrow {
  margin: 0 0 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: #f8d581;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: currentColor;
}

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

.hero-copy {
  margin: 24px 0 0;
  max-width: 590px;
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.9);
}

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

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 18px;
  border-radius: 8px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 800;
  line-height: 1.15;
}

.button.primary {
  background: var(--gold);
  color: #1d211d;
}

.button.secondary {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.42);
  color: #fff;
}

.button.dark {
  background: var(--leaf-dark);
  color: #fff;
}

.section {
  padding: 82px 22px;
}

.section.alt {
  background: #ffffff;
}

.section-inner {
  width: min(var(--content), 100%);
  margin: 0 auto;
}

.section-kicker {
  margin: 0 0 10px;
  color: var(--coral);
  font-size: 0.79rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  font-weight: 900;
}

h2,
.page-title {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.04;
  letter-spacing: 0;
}

.section-lead {
  margin: 18px 0 0;
  max-width: 780px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.65;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
  margin-top: 38px;
}

.panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px;
  box-shadow: 0 12px 30px rgba(25, 35, 34, 0.08);
}

.panel h3 {
  margin: 0 0 12px;
  font-size: 1.32rem;
}

.panel p,
.panel li {
  color: var(--muted);
  line-height: 1.62;
}

.panel p {
  margin: 0;
}

.panel ul {
  padding-left: 20px;
  margin: 16px 0 0;
}

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

.service {
  min-height: 140px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
}

.service-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--sky);
  color: var(--leaf-dark);
  margin-bottom: 16px;
}

.service-icon svg {
  width: 22px;
  height: 22px;
  stroke-width: 2;
}

.service h3 {
  margin: 0 0 7px;
  font-size: 1.03rem;
}

.service p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
  font-size: 0.96rem;
}

.trust-band {
  background: var(--leaf-dark);
  color: #fff;
}

.trust-band h2 {
  color: #fff;
}

.trust-band .section-lead {
  color: rgba(255, 255, 255, 0.76);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 36px;
}

.trust-item {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.06);
}

.trust-item h3 {
  margin: 0 0 10px;
  color: #f8d581;
}

.trust-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.6;
}

.cta-band {
  background: linear-gradient(135deg, var(--sky), #fff7e5);
}

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

.cta p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.6;
  max-width: 650px;
}

.page-hero {
  padding: 76px 22px 56px;
  background: linear-gradient(135deg, var(--sky), #fff7e5 52%, #ffffff);
  border-bottom: 1px solid var(--line);
}

.page-hero .section-inner {
  max-width: 920px;
}

.page-hero p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.65;
}

.policy {
  padding: 56px 22px 86px;
  background: var(--surface);
}

.policy article {
  width: min(860px, 100%);
  margin: 0 auto;
}

.policy h2 {
  margin-top: 38px;
  font-size: 1.42rem;
  line-height: 1.24;
}

.policy h2:first-child {
  margin-top: 0;
}

.policy h3 {
  margin: 24px 0 8px;
  font-size: 1.04rem;
}

.policy p,
.policy li {
  color: var(--muted);
  line-height: 1.72;
}

.policy ul {
  margin: 12px 0 0;
  padding-left: 22px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 26px;
  margin-top: 36px;
}

.contact-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.contact-list {
  display: grid;
  gap: 18px;
  margin-top: 24px;
}

.contact-list a {
  color: var(--leaf-dark);
  font-weight: 800;
}

form {
  display: grid;
  gap: 14px;
}

label {
  display: grid;
  gap: 7px;
  font-weight: 800;
}

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

textarea {
  min-height: 138px;
  resize: vertical;
}

.form-note {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
  font-size: 0.95rem;
}

.site-footer {
  padding: 34px 22px;
  background: #141f1b;
  color: rgba(255, 255, 255, 0.82);
}

.footer-inner {
  width: min(var(--content), 100%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-links a {
  color: inherit;
  text-decoration: none;
}

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

.fine-print {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.66);
}

@media (max-width: 820px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: fixed;
    inset: 63px 16px auto 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface);
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 13px 12px;
    border-radius: 8px;
  }

  .nav-links a:hover {
    background: var(--sky);
  }

  .hero {
    min-height: 650px;
  }

  .hero::after {
    background:
      linear-gradient(0deg, rgba(18, 29, 26, 0.86) 0%, rgba(18, 29, 26, 0.74) 48%, rgba(18, 29, 26, 0.18) 100%),
      linear-gradient(90deg, rgba(18, 29, 26, 0.38), rgba(18, 29, 26, 0.08));
  }

  .hero img {
    object-position: 58% center;
  }

  .hero-content {
    align-self: flex-end;
    padding-top: 210px;
    padding-bottom: 56px;
  }

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

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

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

@media (max-width: 520px) {
  .nav {
    padding-inline: 16px;
  }

  .brand {
    font-size: 1.3rem;
  }

  .hero h1 {
    font-size: 3.4rem;
  }

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

  .section {
    padding: 62px 18px;
  }

  .page-hero {
    padding: 54px 18px 42px;
  }

  .policy {
    padding-inline: 18px;
  }

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

  .panel,
  .trust-item,
  .contact-card {
    padding: 22px;
  }
}
