:root {
  --ink: #0b0f0d;
  --evergreen: #102d27;
  --forest: #1d4237;
  --moss: #667367;
  --copper: #c78358;
  --copper-dark: #9f603b;
  --nickel: #cfd7d0;
  --stone: #efebe2;
  --paper: #fbf7ef;
  --panel: #fffdf8;
  --muted: #6c7169;
  --line: rgba(11, 15, 13, 0.12);
  --line-light: rgba(255, 253, 248, 0.14);
  --shadow: 0 24px 80px rgba(11, 15, 13, 0.18);
  --radius: 8px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, #fbf7ef 0%, #f5efe4 48%, #fbf7ef 100%);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  text-rendering: geometricPrecision;
}

body::selection {
  color: var(--paper);
  background: var(--evergreen);
}

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 16px;
  left: 50%;
  width: min(calc(100% - 48px), var(--max-width));
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px 14px;
  color: var(--paper);
  background: rgba(11, 15, 13, 0.66);
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  backdrop-filter: blur(22px) saturate(138%);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.22);
}

.brand,
.nav-links,
.hero-actions,
.trust-strip,
.process-grid,
.site-footer {
  display: flex;
  align-items: center;
}

.brand {
  gap: 12px;
  min-width: 220px;
  font-size: 0.96rem;
  font-weight: 700;
  padding-left: 4px;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: #120e0b;
  background:
    linear-gradient(145deg, #f2b17d 0%, var(--copper) 48%, #7d4a31 100%);
  border-radius: 50%;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.36),
    0 8px 22px rgba(199, 131, 88, 0.3);
}

.nav-links {
  justify-content: center;
  gap: 28px;
  color: rgba(255, 250, 240, 0.84);
  font-size: 0.92rem;
}

.nav-links a,
.header-cta,
.button {
  transition:
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

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

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 14px;
  color: var(--paper);
  border: 1px solid rgba(255, 250, 240, 0.32);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
}

.header-cta span {
  width: 8px;
  height: 8px;
  background: #65d889;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(101, 216, 137, 0.14);
}

.header-cta:hover {
  background: rgba(255, 250, 240, 0.13);
}

.hero {
  position: relative;
  min-height: 88svh;
  overflow: hidden;
  display: grid;
  align-items: center;
  padding: 132px 38px 116px;
  color: var(--paper);
  background: var(--ink);
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 63% center;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(5, 8, 7, 0.92) 0%, rgba(5, 8, 7, 0.7) 43%, rgba(5, 8, 7, 0.08) 100%),
    linear-gradient(0deg, rgba(5, 8, 7, 0.72) 0%, rgba(5, 8, 7, 0.04) 43%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(660px, 100%);
  margin-left: max(0px, calc((100vw - var(--max-width)) / 2));
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--copper);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  max-width: 720px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 4.55rem;
  line-height: 1.02;
  font-weight: 500;
  text-wrap: balance;
}

.hero-copy {
  max-width: 620px;
  margin: 24px 0 0;
  color: rgba(255, 250, 240, 0.82);
  font-size: 1.12rem;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font: inherit;
  font-size: 0.95rem;
  font-weight: 800;
}

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

.button-primary {
  color: var(--paper);
  background: linear-gradient(135deg, #c98b62 0%, var(--copper-dark) 100%);
  box-shadow: 0 10px 30px rgba(184, 115, 69, 0.28);
}

.button-primary:hover {
  background: linear-gradient(135deg, #d3986f 0%, #a9653d 100%);
}

.button-secondary {
  color: var(--paper);
  border-color: rgba(255, 250, 240, 0.36);
  background: rgba(255, 250, 240, 0.08);
}

.button-secondary:hover {
  background: rgba(255, 250, 240, 0.15);
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  width: min(560px, 100%);
  margin-top: 28px;
}

.hero-proof div {
  padding: 14px 16px;
  background: rgba(255, 253, 248, 0.08);
  border: 1px solid rgba(255, 253, 248, 0.13);
  border-radius: var(--radius);
  backdrop-filter: blur(12px);
}

.hero-proof strong,
.hero-proof span {
  display: block;
}

.hero-proof strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  line-height: 1;
  font-weight: 500;
}

.hero-proof span {
  margin-top: 6px;
  color: rgba(255, 253, 248, 0.62);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.trust-strip {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 26px;
  width: min(calc(100% - 76px), var(--max-width));
  transform: translateX(-50%);
  justify-content: space-between;
  gap: 18px;
  padding: 18px 22px;
  color: rgba(255, 250, 240, 0.84);
  background: rgba(11, 15, 13, 0.72);
  border: 1px solid rgba(255, 250, 240, 0.13);
  border-radius: var(--radius);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}

.trust-strip span {
  position: relative;
  padding-left: 16px;
  font-size: 0.9rem;
  font-weight: 700;
}

.trust-strip span::before {
  content: "";
  position: absolute;
  top: 0.64em;
  left: 0;
  width: 6px;
  height: 6px;
  background: var(--copper);
  border-radius: 50%;
}

.intro-band,
.signal-band,
.section,
.standards-section,
.process-section,
.neighborhood-section,
.contact-section {
  width: min(calc(100% - 76px), var(--max-width));
  margin: 0 auto;
}

.intro-band {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 42px;
  padding: 64px 0 42px;
  border-bottom: 1px solid var(--line);
}

.intro-band h2,
.section-heading h2,
.standards-copy h2,
.neighborhood-section h2,
.contact-section h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.45rem;
  line-height: 1.12;
  font-weight: 500;
}

.intro-band p:last-child,
.section-heading p,
.standards-copy p,
.neighborhood-section p,
.contact-section p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.section-heading p {
  max-width: 620px;
  margin-top: 18px;
}

.signal-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  margin-top: 34px;
  color: var(--paper);
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.signal-band div {
  min-height: 154px;
  padding: 28px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0)),
    var(--evergreen);
}

.signal-band span,
.protocol-tags span {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  color: rgba(255, 253, 248, 0.62);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.signal-band strong {
  display: block;
  max-width: 290px;
  margin-top: 20px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.32rem;
  line-height: 1.22;
  font-weight: 500;
}

.section,
.process-section {
  padding: 92px 0;
}

.section-heading {
  max-width: 680px;
  margin-bottom: 38px;
}

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

.service-card {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  padding: 26px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 34px rgba(20, 23, 21, 0.06);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--copper), rgba(199, 131, 88, 0));
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(199, 131, 88, 0.34);
  box-shadow: 0 26px 70px rgba(11, 15, 13, 0.13);
}

.service-card:first-child {
  color: var(--paper);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0)),
    var(--ink);
}

.service-card:first-child p {
  color: rgba(255, 253, 248, 0.68);
}

.service-number,
.process-grid span {
  display: block;
  margin-bottom: 54px;
  color: var(--copper);
  font-size: 0.8rem;
  font-weight: 900;
}

.service-card h3,
.standards-list h3,
.process-grid h3 {
  margin: 0 0 10px;
  font-size: 1.08rem;
}

.service-card p,
.standards-list p,
.process-grid p {
  margin: 0;
  color: var(--muted);
}

.standards-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 54px;
  padding: 88px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.standards-copy p {
  margin-top: 20px;
}

.protocol-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.protocol-tags span {
  color: var(--evergreen);
  padding: 9px 12px;
  background: rgba(199, 131, 88, 0.12);
  border: 1px solid rgba(199, 131, 88, 0.24);
  border-radius: 999px;
}

.standards-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.standards-list div {
  min-height: 176px;
  padding: 26px;
  color: var(--paper);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0)),
    var(--evergreen);
  border-radius: var(--radius);
}

.standards-list div:nth-child(2),
.standards-list div:nth-child(3) {
  background: #253b34;
}

.standards-list p {
  color: rgba(255, 250, 240, 0.72);
}

.process-grid {
  align-items: stretch;
  gap: 16px;
}

.process-grid article {
  flex: 1;
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.82), rgba(239, 235, 226, 0.92));
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.neighborhood-section {
  padding: 82px 0;
  text-align: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.neighborhood-section p {
  max-width: 720px;
  margin: 18px auto 0;
}

.contact-section {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 48px;
  align-items: start;
  padding: 96px 0;
}

.contact-section p {
  margin-top: 20px;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0)),
    var(--ink);
  border: 1px solid rgba(255, 253, 248, 0.12);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 250, 240, 0.78);
  font-size: 0.88rem;
  font-weight: 700;
}

.contact-form input,
.contact-form select {
  width: 100%;
  min-height: 48px;
  color: var(--paper);
  background: rgba(255, 250, 240, 0.08);
  border: 1px solid rgba(255, 250, 240, 0.18);
  border-radius: var(--radius);
  padding: 12px 14px;
  font: inherit;
}

.contact-form select {
  appearance: none;
}

.contact-form input::placeholder {
  color: rgba(255, 250, 240, 0.42);
}

.contact-form input:focus,
.contact-form select:focus {
  outline: 2px solid rgba(184, 115, 69, 0.72);
  outline-offset: 2px;
}

.contact-form .button {
  margin-top: 8px;
  width: 100%;
}

.contact-form .form-note {
  margin: 0;
  color: rgba(255, 253, 248, 0.54);
  font-size: 0.84rem;
}

.site-footer {
  justify-content: space-between;
  gap: 24px;
  padding: 28px 38px;
  color: rgba(255, 250, 240, 0.76);
  background: #080b0a;
  font-size: 0.88rem;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--paper);
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 980px) {
  .site-header {
    padding: 16px 24px;
  }

  .nav-links {
    display: none;
  }

  .hero {
    min-height: 86svh;
    padding: 110px 24px 128px;
  }

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

  .trust-strip,
  .intro-band,
  .signal-band,
  .section,
  .standards-section,
  .process-section,
  .neighborhood-section,
  .contact-section {
    width: min(calc(100% - 48px), var(--max-width));
  }

  .intro-band,
  .standards-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

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

  .signal-band {
    grid-template-columns: 1fr;
  }

  .process-grid {
    display: grid;
    grid-template-columns: 1fr;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    padding: 28px 24px;
  }
}

@media (max-width: 680px) {
  .site-header {
    gap: 12px;
  }

  .brand {
    min-width: auto;
  }

  .brand span:last-child {
    display: none;
  }

  .header-cta {
    padding: 9px 12px;
    font-size: 0.82rem;
  }

  .hero {
    min-height: 84svh;
    padding: 96px 20px 126px;
  }

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

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(13, 17, 15, 0.89) 0%, rgba(13, 17, 15, 0.64) 100%),
      linear-gradient(0deg, rgba(13, 17, 15, 0.5) 0%, rgba(13, 17, 15, 0) 50%);
  }

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

  .hero-copy {
    font-size: 1rem;
  }

  .hero-proof {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    margin-top: 18px;
  }

  .hero-proof div {
    display: block;
    padding: 10px 8px;
  }

  .hero-proof strong {
    font-size: 1rem;
  }

  .hero-proof span {
    margin-top: 5px;
    font-size: 0.64rem;
    text-align: left;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .button {
    width: 100%;
  }

  .trust-strip {
    bottom: 18px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: calc(100% - 40px);
    padding: 14px;
  }

  .trust-strip span {
    font-size: 0.82rem;
  }

  .intro-band,
  .signal-band,
  .section,
  .standards-section,
  .process-section,
  .neighborhood-section,
  .contact-section {
    width: calc(100% - 40px);
  }

  .intro-band h2,
  .section-heading h2,
  .standards-copy h2,
  .neighborhood-section h2,
  .contact-section h2 {
    font-size: 2rem;
  }

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

  .service-card {
    min-height: auto;
  }

  .service-number,
  .process-grid span {
    margin-bottom: 34px;
  }

  .contact-form {
    padding: 20px;
  }
}
