:root {
  --teal-deep: #0b3b36;
  --teal-ink: #0e2622;
  --cream: #fbf6ee;
  --cream-warm: #f3e9d8;
  --sage: #cfdad0;
  --terracotta: #de7c42;
  --terracotta-dark: #b85f2c;
  --gold: #b8935f;
  --line: rgba(11, 59, 54, 0.14);
  --text: #16231f;
  --text-soft: #516059;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--text);
  font-family: "Inter", sans-serif;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
.display,
.headline,
.brand-text .name,
.ledger .title,
.trust-row .num {
  font-family: "Fraunces", serif;
  letter-spacing: -0.01em;
}

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

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

button,
a {
  transition:
    background-color 180ms ease,
    color 180ms ease,
    opacity 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
}

.bg-wash {
  background:
    radial-gradient(900px 500px at 85% -10%, rgba(222, 124, 66, 0.16), transparent 60%),
    radial-gradient(700px 500px at -5% 20%, rgba(11, 59, 54, 0.1), transparent 60%),
    var(--cream);
}

.site-nav-shell {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 18px 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 14px;
  background: rgba(251, 246, 238, 0.78);
  backdrop-filter: blur(14px);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.6) inset, 0 8px 24px rgba(11, 59, 54, 0.06);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: linear-gradient(155deg, var(--teal-deep), var(--teal-ink));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(11, 59, 54, 0.25);
}

.brand-mark img {
  width: 26px;
  height: 26px;
  object-fit: contain;
  filter: brightness(1.05) contrast(1.05);
}

.brand-text {
  min-width: 0;
}

.brand-text .name {
  display: block;
  font-weight: 600;
  font-size: 15.5px;
  line-height: 1.1;
  color: var(--teal-ink);
}

.brand-text .tag {
  display: block;
  font-size: 10.5px;
  color: var(--text-soft);
  font-family: "IBM Plex Mono", monospace;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--teal-ink);
}

.nav-links a {
  opacity: 0.78;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  opacity: 1;
}

.menu-toggle {
  display: none;
  border: 0;
  border-radius: 999px;
  background: var(--teal-deep);
  color: var(--white);
  padding: 11px 16px;
  font: inherit;
  font-weight: 600;
}

.cta-btn {
  background: var(--terracotta);
  color: var(--white);
  padding: 11px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 6px 16px rgba(222, 124, 66, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.25);
  opacity: 1;
}

.cta-btn:hover,
.cta-btn:focus-visible {
  background: var(--terracotta-dark);
  transform: translateY(-1px);
}

.hero {
  padding: 84px 0 60px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: var(--teal-deep);
  font-weight: 500;
  border: 1px solid var(--line);
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
  margin-bottom: 26px;
  font-family: "IBM Plex Mono", monospace;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.eyebrow .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--terracotta);
}

.headline {
  font-size: 54px;
  font-weight: 600;
  line-height: 1.04;
  color: var(--teal-ink);
  margin: 0 0 24px;
}

.sub {
  font-size: 17.5px;
  line-height: 1.6;
  color: var(--text-soft);
  max-width: 520px;
  margin: 0 0 36px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-bottom: 46px;
}

.hero-ctas .cta-btn {
  padding: 14px 28px;
  font-size: 14.5px;
}

.ghost-btn {
  padding: 13px 24px;
  border-radius: 999px;
  border: 1.5px solid var(--teal-deep);
  color: var(--teal-deep);
  font-weight: 600;
  font-size: 14.5px;
}

.ghost-btn:hover,
.ghost-btn:focus-visible {
  background: rgba(11, 59, 54, 0.05);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  border-top: 1px solid var(--line);
  padding-top: 24px;
}

.trust-row .num {
  font-size: 26px;
  font-weight: 600;
  color: var(--teal-ink);
}

.trust-row .lbl {
  font-size: 11.5px;
  color: var(--text-soft);
  font-family: "IBM Plex Mono", monospace;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 2px;
}

.ledger {
  background: linear-gradient(165deg, #ffffff 0%, var(--cream-warm) 100%);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 30px 30px 26px;
  box-shadow: 0 30px 60px -20px rgba(11, 59, 54, 0.22), 0 1px 0 rgba(255, 255, 255, 0.8) inset;
  position: relative;
}

.ledger::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 22px;
  padding: 1px;
  background: linear-gradient(165deg, rgba(184, 147, 95, 0.5), transparent 40%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.ledger-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 22px;
}

.ledger .title {
  font-size: 18px;
  font-weight: 600;
  color: var(--teal-ink);
}

.sub2 {
  font-size: 12px;
  color: var(--text-soft);
  margin-top: 3px;
}

.live-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 10.5px;
  color: var(--teal-deep);
  background: rgba(11, 59, 54, 0.06);
  padding: 5px 10px;
  border-radius: 999px;
  white-space: nowrap;
}

.live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #3f9e6d;
  box-shadow: 0 0 0 3px rgba(63, 158, 109, 0.18);
}

.ledger-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 13px 0;
  border-top: 1px dashed var(--line);
}

.ledger-row:first-of-type {
  border-top: none;
}

.l-name {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text);
}

.l-meta {
  font-family: "IBM Plex Mono", monospace;
  font-size: 10.5px;
  color: var(--text-soft);
  margin-top: 2px;
}

.l-val {
  font-family: "Fraunces", serif;
  font-size: 19px;
  font-weight: 600;
  color: var(--teal-ink);
  white-space: nowrap;
}

.bar-track {
  width: 88px;
  height: 5px;
  border-radius: 99px;
  background: rgba(11, 59, 54, 0.08);
  overflow: hidden;
  margin-top: 6px;
}

.bar-fill {
  height: 100%;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--terracotta), var(--gold));
}

.ledger-foot {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.seal {
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  color: var(--text-soft);
}

.band {
  background: var(--teal-deep);
  padding: 46px 0;
}

.band-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.band-copy {
  max-width: 560px;
}

.band .lbl {
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  color: rgba(251, 246, 238, 0.55);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 12px;
}

.band h2 {
  margin: 0;
  color: rgba(251, 246, 238, 0.94);
  font-size: 30px;
  line-height: 1.2;
}

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

.band-points span {
  border: 1px solid rgba(251, 246, 238, 0.18);
  color: rgba(251, 246, 238, 0.9);
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-family: "IBM Plex Mono", monospace;
}

.section {
  padding: 90px 0;
}

.section-soft {
  background: linear-gradient(180deg, rgba(207, 218, 208, 0.18), rgba(255, 255, 255, 0));
}

.section-head {
  max-width: 680px;
  margin-bottom: 56px;
}

.section-head .eyebrow {
  margin-bottom: 18px;
}

.section-head h2 {
  font-size: 36px;
  font-weight: 600;
  color: var(--teal-ink);
  margin: 0 0 14px;
  line-height: 1.15;
}

.section-head p {
  color: var(--text-soft);
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}

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

.six-grid {
  grid-template-columns: repeat(3, 1fr);
}

.svc-card {
  background: var(--cream);
  padding: 36px 30px;
  transition: background-color 0.2s ease;
}

.svc-card:hover {
  background: #ffffff;
}

.svc-mark {
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  color: var(--terracotta-dark);
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.svc-card h3,
.engagement-copy h3,
.about-card h3,
.promise-card h3 {
  font-size: 19px;
  font-weight: 600;
  color: var(--teal-ink);
  margin: 0 0 10px;
}

.svc-card p,
.engagement-copy p,
.about-card p,
.promise-card p,
.footer-copy,
.footer-details p {
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.6;
  margin: 0;
}

.engagement-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.engagement-card,
.about-card,
.promise-card {
  background: rgba(255, 255, 255, 0.56);
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 18px 38px rgba(11, 59, 54, 0.06);
}

.engagement-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  background: #f0ece4;
}

.engagement-copy {
  padding: 24px;
}

.about-shell {
  display: grid;
  gap: 32px;
}

.about-head {
  margin-bottom: 0;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.about-card {
  padding: 28px;
}

.promise-row {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
}

.promise-card {
  padding: 28px;
}

.promise-brand {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 18px;
}

.promise-mark {
  width: 60px;
  height: 60px;
}

.promise-mark img {
  width: 34px;
  height: 34px;
}

.closer {
  padding: 110px 0;
  text-align: center;
}

.closer h2 {
  font-size: 42px;
  color: var(--teal-ink);
  margin: 0 0 18px;
}

.closer p {
  color: var(--text-soft);
  font-size: 16px;
  margin: 0 0 36px;
}

.site-footer {
  background: var(--teal-ink);
  color: rgba(251, 246, 238, 0.65);
  padding: 50px 0 30px;
  font-size: 13px;
}

.footer-inner,
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 32px;
}

.footer-inner {
  align-items: flex-start;
}

.footer-brand .brand-text .name {
  color: rgba(251, 246, 238, 0.95);
}

.footer-brand .brand-text .tag {
  color: rgba(251, 246, 238, 0.6);
}

.footer-brand-block {
  max-width: 440px;
}

.footer-copy {
  margin-top: 18px;
  color: rgba(251, 246, 238, 0.72);
}

.footer-details {
  display: grid;
  gap: 12px;
}

.footer-details a {
  color: rgba(251, 246, 238, 0.95);
}

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

.footer-social a:hover,
.footer-social a:focus-visible,
.footer-details a:hover,
.footer-details a:focus-visible {
  color: #ffffff;
}

.footer-bottom {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(251, 246, 238, 0.14);
}

@media (max-width: 1080px) {
  .hero-grid,
  .band-shell,
  .promise-row,
  .footer-inner,
  .footer-bottom {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

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

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

  .headline {
    font-size: 40px;
  }

  .nav-inner {
    border-radius: 28px;
    flex-wrap: wrap;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 10px 6px 6px;
  }

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

  .nav-links .cta-btn {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 720px) {
  .wrap {
    padding: 0 20px;
  }

  .hero,
  .section,
  .closer {
    padding: 72px 0;
  }

  .six-grid,
  .engagement-grid,
  .about-grid,
  .promise-row {
    grid-template-columns: 1fr;
  }

  .trust-row {
    gap: 22px;
  }

  .ledger {
    padding: 24px 22px;
  }

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

  .band h2,
  .section-head h2,
  .closer h2 {
    font-size: 30px;
  }

  .headline {
    font-size: 34px;
  }

  .sub {
    font-size: 16px;
  }

  .promise-brand {
    grid-template-columns: 1fr;
  }

  .brand-text .tag {
    font-size: 9px;
  }
}
