:root {
  color-scheme: light;
  --ink: #162128;
  --muted: #5d6b75;
  --paper: #f8fbfa;
  --panel: #ffffff;
  --soft: #e9f3ef;
  --line: #d8e4df;
  --forest: #214d3e;
  --forest-strong: #123429;
  --clay: #bf6b42;
  --clay-soft: #f4e2d7;
  --shadow: 0 18px 44px rgba(22, 33, 40, 0.12);
  --radius: 8px;
  --wrapper: 1120px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.62;
}

a {
  color: var(--forest);
  text-decoration-color: rgba(33, 77, 62, 0.28);
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--clay);
}

.wrapper {
  width: min(var(--wrapper), calc(100% - 40px));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: 12px;
  z-index: 20;
  transform: translateY(-160%);
  border-radius: 6px;
  background: var(--ink);
  color: #fff;
  padding: 8px 12px;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(216, 228, 223, 0.84);
  background: rgba(248, 251, 250, 0.94);
  backdrop-filter: blur(18px);
}

.site-nav {
  display: flex;
  align-items: center;
  min-height: 72px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
}

.brand-logo {
  display: block;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(33, 77, 62, 0.22);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 4px 12px rgba(22, 33, 40, 0.1);
  object-fit: cover;
}

.hero {
  background:
    linear-gradient(115deg, rgba(95, 127, 79, 0.15), rgba(255, 255, 255, 0.66) 48%, rgba(191, 107, 66, 0.12)),
    var(--paper);
  padding: 60px 0 52px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.75fr);
  gap: 52px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--forest);
  font-size: 0.78rem;
  font-weight: 820;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  color: var(--ink);
  line-height: 1.08;
}

h1 {
  max-width: 780px;
  font-size: clamp(2.75rem, 5.2vw, 4.65rem);
}

h2 {
  font-size: clamp(1.75rem, 2.8vw, 2.35rem);
}

.hero-lede {
  max-width: 760px;
  margin: 24px 0 0;
  color: #33424a;
  font-size: clamp(1.16rem, 2vw, 1.42rem);
  line-height: 1.48;
}

.bridge-note {
  max-width: 700px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 1px solid var(--forest);
  border-radius: 8px;
  background: var(--forest);
  color: #fff;
  font-weight: 800;
  padding: 10px 16px;
  text-decoration: none;
}

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

.button.secondary {
  border-color: var(--line);
  background: var(--panel);
  color: var(--ink);
}

.button.secondary:hover {
  border-color: rgba(191, 107, 66, 0.3);
  background: var(--clay-soft);
}

.hero-panel,
.contact-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}

.hero-panel {
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-logo-wrap {
  display: flex;
  min-height: 280px;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 50% 45%, rgba(255, 255, 255, 0.9) 0 34%, rgba(223, 234, 222, 0.7) 35% 58%, rgba(191, 107, 66, 0.16) 59% 100%),
    linear-gradient(135deg, rgba(223, 234, 222, 0.82), rgba(244, 226, 215, 0.7)),
    var(--soft);
  padding: 26px;
}

.hero-logo-wrap img {
  display: block;
  width: min(220px, 72%);
  aspect-ratio: 1;
  border-radius: 999px;
  box-shadow: 0 18px 36px rgba(22, 33, 40, 0.2);
  object-fit: cover;
}

.hero-panel-copy,
.contact-panel {
  padding: 24px;
}

.hero-panel-copy p,
.contact-panel p {
  color: var(--muted);
}

.section {
  padding: 64px 0;
}

.contact-section {
  padding-top: 48px;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--forest-strong);
  color: #e7eee9;
  padding: 34px 0;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.site-footer p {
  margin: 0;
  font-weight: 800;
}

.site-footer a {
  color: #e7eee9;
  margin-left: 14px;
}

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

  .hero-panel {
    max-width: 520px;
  }
}

@media (max-width: 720px) {
  body {
    font-size: 16px;
  }

  .wrapper {
    width: min(var(--wrapper), calc(100% - 28px));
  }

  .site-nav {
    padding: 14px 0;
  }

  .hero {
    padding: 48px 0;
  }

  h1 {
    font-size: clamp(2.45rem, 11vw, 3.2rem);
  }

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

  .button {
    width: 100%;
  }

  .section {
    padding: 48px 0;
  }

  .site-footer a {
    display: inline-block;
    margin: 10px 14px 0 0;
  }
}
