:root {
  --ink: #17211f;
  --muted: #5e6b67;
  --line: #dce5e0;
  --paper: #ffffff;
  --soft: #f5f8f4;
  --teal: #006b68;
  --teal-dark: #004947;
  --gold: #c78b1c;
  --coral: #b84e3d;
  --green: #2f7d4f;
  --shadow: 0 14px 40px rgba(23, 33, 31, 0.10);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.65;
}

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

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  z-index: 30;
  background: var(--paper);
  padding: 8px 12px;
  border: 1px solid var(--line);
}

.skip-link:focus {
  left: 12px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.header-inner,
.section-inner {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 700;
}

.brand img {
  width: 172px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: 8px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

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

.site-nav a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 600;
  white-space: nowrap;
}

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

.button,
.primary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: var(--teal);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  line-height: 1.2;
}

.button:hover,
.primary-action:hover {
  background: var(--teal-dark);
}

.button.secondary {
  background: var(--paper);
  color: var(--teal);
  border-color: var(--teal);
}

.hero {
  min-height: 580px;
  display: grid;
  align-items: end;
  color: #fff;
  background-image: linear-gradient(90deg, rgba(10, 24, 22, 0.86), rgba(10, 24, 22, 0.55), rgba(10, 24, 22, 0.2)), var(--hero-image);
  background-size: cover;
  background-position: center;
}

.hero .section-inner {
  padding: 108px 0 82px;
}

.eyebrow {
  margin: 0 0 14px;
  color: #f2c879;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.82rem;
}

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

h1 {
  max-width: 820px;
  margin-bottom: 18px;
  font-size: 3rem;
  line-height: 1.12;
}

.hero-text {
  max-width: 760px;
  margin-bottom: 28px;
  font-size: 1.12rem;
}

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

.section {
  padding: 72px 0;
}

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

.section.compact {
  padding: 48px 0;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 30px;
}

.section-heading h2 {
  margin-bottom: 12px;
  font-size: 2rem;
  line-height: 1.2;
}

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

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

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

.card {
  min-height: 100%;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.card h3 {
  margin-bottom: 10px;
  font-size: 1.08rem;
  line-height: 1.35;
}

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

.card a:not(.button),
.text-link {
  color: var(--teal);
  font-weight: 700;
  text-decoration: none;
}

.card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.content-flow {
  max-width: 900px;
}

.content-flow h2 {
  margin: 36px 0 12px;
  padding-top: 4px;
  font-size: 1.65rem;
  line-height: 1.25;
}

.content-flow h3 {
  margin: 26px 0 8px;
  font-size: 1.18rem;
}

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

.content-flow ul {
  margin: 0 0 20px;
  padding-left: 22px;
}

.cta-band {
  background: var(--teal-dark);
  color: #fff;
}

.cta-band .section-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}

.cta-band p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
}

.team-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 16px;
}

.site-footer {
  padding: 52px 0 26px;
  background: #121917;
  color: #dce5e0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 28px;
}

.footer-grid h2 {
  margin-bottom: 14px;
  font-size: 1rem;
  color: #fff;
}

.footer-grid ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-grid li {
  margin-bottom: 8px;
}

.footer-grid a {
  color: #dce5e0;
  text-decoration: none;
}

.footer-grid a:hover {
  color: #f2c879;
}

.footer-logo {
  width: 180px;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}

.copyright {
  margin-top: 36px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: #aab7b2;
  font-size: 0.92rem;
}

@media (max-width: 900px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 76px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--paper);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  h1 {
    font-size: 2.2rem;
  }

  .hero {
    min-height: 520px;
  }

  .grid,
  .grid.two,
  .footer-grid,
  .cta-band .section-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .header-inner,
  .section-inner {
    width: min(100% - 28px, 1160px);
  }

  .brand img {
    width: 148px;
  }

  h1 {
    font-size: 1.9rem;
  }

  .hero .section-inner {
    padding: 84px 0 58px;
  }

  .section {
    padding: 52px 0;
  }
}
