:root {
  --ink: #17201d;
  --forest: #234d3c;
  --leaf: #74a642;
  --mint: #d7ead5;
  --rice: #f8f2e8;
  --paper: #fffaf2;
  --guava: #e86f52;
  --aqua: #2f8f9d;
  --blueberry: #3a4271;
  --line: rgba(23, 32, 29, 0.14);
  --shadow: 0 24px 80px rgba(23, 32, 29, 0.14);
  --radius: 8px;
  --sans: "Manrope", Arial, sans-serif;
  --serif: "Fraunces", Georgia, serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--sans);
  background:
    radial-gradient(circle at top left, rgba(116, 166, 66, 0.15), transparent 26rem),
    linear-gradient(135deg, rgba(47, 143, 157, 0.06), transparent 28rem),
    var(--rice);
  line-height: 1.65;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background-image:
    linear-gradient(90deg, rgba(23, 32, 29, 0.055) 1px, transparent 1px),
    linear-gradient(rgba(23, 32, 29, 0.055) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(to bottom, black, transparent 72%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.16;
  background:
    repeating-radial-gradient(ellipse at 24% 18%, transparent 0 18px, var(--forest) 19px 20px, transparent 21px 36px),
    repeating-radial-gradient(ellipse at 78% 74%, transparent 0 22px, var(--aqua) 23px 24px, transparent 25px 44px);
}

a {
  color: inherit;
}

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

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 30;
  background: var(--ink);
  color: var(--paper);
  padding: 0.7rem 1rem;
  border-radius: var(--radius);
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(248, 242, 232, 0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

.nav-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 0.7rem 0;
}

.brand {
  display: inline-grid;
  grid-template-columns: 42px auto;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  font-weight: 900;
  letter-spacing: 0;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(23, 32, 29, 0.22);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, var(--guava) 0 16%, transparent 17%),
    conic-gradient(from 20deg, var(--leaf), var(--aqua), var(--blueberry), var(--guava), var(--leaf));
  position: relative;
  box-shadow: inset 0 0 0 7px var(--paper);
}

.brand-mark::after {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px dashed rgba(23, 32, 29, 0.45);
  border-radius: 50%;
}

.brand-text {
  line-height: 1;
}

.brand-text small {
  display: block;
  margin-top: 0.25rem;
  color: rgba(23, 32, 29, 0.64);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.nav-links {
  order: 3;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  overflow-x: auto;
  scrollbar-width: none;
}

.nav-links::-webkit-scrollbar {
  display: none;
}

.nav-links a {
  flex: 0 0 auto;
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 800;
  padding: 0.55rem 0.68rem;
  border-radius: 999px;
  color: rgba(23, 32, 29, 0.75);
}

.nav-links a:hover,
.nav-links a:focus {
  background: var(--mint);
  color: var(--ink);
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.78rem 1.1rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--paper);
  font-weight: 900;
  text-decoration: none;
  line-height: 1.1;
  box-shadow: 0 14px 36px rgba(23, 32, 29, 0.16);
}

.header-cta {
  display: none;
}

.btn.alt {
  background: transparent;
  color: var(--ink);
  border-color: rgba(23, 32, 29, 0.28);
  box-shadow: none;
}

.btn:hover,
.btn:focus {
  transform: translateY(-1px);
}

main {
  overflow: hidden;
}

.section,
.hero,
.page-hero {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  min-height: calc(100svh - 76px);
  padding: 3rem 0 2rem;
  display: grid;
  align-items: center;
  gap: 2rem;
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 1rem;
  color: var(--forest);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.eyebrow::before {
  content: "";
  width: 36px;
  height: 2px;
  background: var(--guava);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--serif);
  line-height: 0.96;
  font-weight: 800;
  letter-spacing: 0;
}

h1 {
  max-width: 12ch;
  font-size: clamp(3.4rem, 14vw, 8.4rem);
}

h2 {
  max-width: 12ch;
  font-size: clamp(2.35rem, 8vw, 5.2rem);
}

h3 {
  font-size: clamp(1.45rem, 5vw, 2.15rem);
}

.lead {
  max-width: 64ch;
  color: rgba(23, 32, 29, 0.76);
  font-size: clamp(1.05rem, 2vw, 1.24rem);
}

.hero-actions,
.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.7rem;
}

.hero-card {
  position: relative;
  min-height: 500px;
  padding: 1rem;
  background:
    linear-gradient(145deg, rgba(255, 250, 242, 0.72), rgba(215, 234, 213, 0.36)),
    var(--paper);
  border: 1px solid rgba(23, 32, 29, 0.12);
  border-radius: 28px 8px 28px 8px;
  box-shadow: var(--shadow);
}

.plate-orbit {
  position: absolute;
  inset: 1rem;
  border-radius: 50%;
  background:
    radial-gradient(circle, var(--paper) 0 31%, transparent 32%),
    conic-gradient(from -35deg, var(--leaf) 0 22%, var(--guava) 22% 38%, var(--aqua) 38% 61%, var(--blueberry) 61% 76%, var(--mint) 76% 100%);
  border: 1px solid rgba(23, 32, 29, 0.14);
  overflow: hidden;
}

.plate-orbit::before,
.plate-orbit::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(23, 32, 29, 0.2);
  border-radius: 50%;
}

.plate-orbit::before {
  inset: 13%;
}

.plate-orbit::after {
  inset: 27%;
  border-style: dashed;
}

.atlas-line {
  position: absolute;
  inset: 12%;
  opacity: 0.64;
}

.pulse-dot {
  position: absolute;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: var(--guava);
  box-shadow: 0 0 0 8px rgba(232, 111, 82, 0.18);
}

.pulse-dot.one {
  top: 20%;
  left: 26%;
}

.pulse-dot.two {
  right: 18%;
  top: 45%;
  background: var(--aqua);
  box-shadow: 0 0 0 8px rgba(47, 143, 157, 0.18);
}

.pulse-dot.three {
  bottom: 19%;
  left: 48%;
  background: var(--leaf);
  box-shadow: 0 0 0 8px rgba(116, 166, 66, 0.18);
}

.note {
  position: absolute;
  max-width: 190px;
  padding: 0.78rem;
  border: 1px solid rgba(23, 32, 29, 0.16);
  background: rgba(255, 250, 242, 0.94);
  border-radius: var(--radius);
  box-shadow: 0 14px 36px rgba(23, 32, 29, 0.11);
  font-size: 0.82rem;
  font-weight: 800;
}

.note strong {
  display: block;
  color: var(--guava);
  font-size: 1.25rem;
  font-family: var(--serif);
  line-height: 1;
}

.note.top {
  top: 8%;
  right: -0.3rem;
}

.note.bottom {
  left: -0.3rem;
  bottom: 8%;
}

.section {
  padding: 4.5rem 0;
}

.section-head {
  display: grid;
  gap: 1rem;
  margin-bottom: 2rem;
}

.split {
  display: grid;
  gap: 2rem;
}

.service-grid,
.stats-grid,
.testimonial-grid,
.values-grid,
.team-grid,
.info-grid,
.policy-grid {
  display: grid;
  gap: 1rem;
}

.service-card,
.testimonial,
.stat,
.value-card,
.team-card,
.info-card,
.policy-card,
.faq-item,
.form-panel {
  background: rgba(255, 250, 242, 0.86);
  border: 1px solid rgba(23, 32, 29, 0.13);
  border-radius: var(--radius);
  box-shadow: 0 18px 52px rgba(23, 32, 29, 0.08);
}

.service-card,
.testimonial,
.value-card,
.team-card,
.info-card,
.policy-card,
.faq-item {
  padding: 1.25rem;
}

.service-card {
  min-height: 245px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: attr(data-code);
  position: absolute;
  top: 0.8rem;
  right: 0.9rem;
  color: rgba(23, 32, 29, 0.15);
  font-family: var(--serif);
  font-size: 4rem;
  font-weight: 900;
  line-height: 1;
}

.service-card p,
.testimonial p,
.value-card p,
.team-card p,
.info-card p,
.policy-card p,
.faq-item p,
.page-copy p,
li {
  color: rgba(23, 32, 29, 0.74);
}

.service-card .tag {
  width: fit-content;
  padding: 0.32rem 0.55rem;
  background: var(--mint);
  border-radius: 999px;
  color: var(--forest);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.stat {
  padding: 1rem;
  border-left: 8px solid var(--leaf);
}

.stat:nth-child(2) {
  border-color: var(--guava);
}

.stat:nth-child(3) {
  border-color: var(--aqua);
}

.stat strong {
  display: block;
  font-family: var(--serif);
  font-size: clamp(2.3rem, 12vw, 4.2rem);
  line-height: 0.92;
}

.testimonial {
  position: relative;
}

.testimonial::before {
  content: "";
  display: block;
  width: 54px;
  height: 54px;
  margin-bottom: 1rem;
  background:
    linear-gradient(90deg, transparent 44%, rgba(23, 32, 29, 0.22) 45% 55%, transparent 56%),
    linear-gradient(0deg, transparent 44%, rgba(23, 32, 29, 0.22) 45% 55%, transparent 56%),
    conic-gradient(from 25deg, var(--guava), var(--leaf), var(--aqua), var(--guava));
  border-radius: 50%;
  box-shadow: inset 0 0 0 13px var(--paper);
}

.testimonial cite {
  display: block;
  margin-top: 1rem;
  font-style: normal;
  font-weight: 900;
}

.faq-list {
  display: grid;
  gap: 0.8rem;
}

.faq-item h3 {
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.25;
}

.band {
  margin: 3rem 0;
  padding: 3rem 0;
  background: var(--forest);
  color: var(--paper);
}

.band .section {
  padding: 0;
}

.band .lead,
.band p {
  color: rgba(255, 250, 242, 0.8);
}

.route-strip {
  display: grid;
  gap: 0.7rem;
  margin-top: 1.5rem;
}

.route-strip span {
  display: block;
  padding: 0.75rem 0;
  border-top: 1px solid rgba(255, 250, 242, 0.22);
  color: rgba(255, 250, 242, 0.88);
  font-weight: 800;
}

.page-hero {
  padding: 4rem 0 2rem;
}

.page-hero h1 {
  max-width: 11ch;
}

.page-copy {
  max-width: 76ch;
}

.timeline {
  display: grid;
  gap: 1rem;
  counter-reset: step;
}

.timeline-item {
  position: relative;
  padding: 1.15rem 1.15rem 1.15rem 4rem;
  background: rgba(255, 250, 242, 0.82);
  border: 1px solid rgba(23, 32, 29, 0.13);
  border-radius: var(--radius);
}

.timeline-item::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  position: absolute;
  left: 1rem;
  top: 1rem;
  color: var(--guava);
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 900;
}

.form-panel {
  padding: 1rem;
}

form {
  display: grid;
  gap: 0.9rem;
}

label {
  display: grid;
  gap: 0.35rem;
  font-weight: 900;
}

input,
textarea,
select {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(23, 32, 29, 0.22);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
  font: inherit;
  padding: 0.8rem;
}

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

.site-footer {
  margin-top: 4rem;
  background: var(--ink);
  color: var(--paper);
}

.footer-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 3rem 0 1.5rem;
  display: grid;
  gap: 2rem;
}

.footer-grid {
  display: grid;
  gap: 1.5rem;
}

.footer-brand {
  max-width: 34rem;
}

.footer-brand .brand {
  color: var(--paper);
}

.footer-brand .brand-text small,
.footer-shell p,
.footer-shell li,
.footer-shell a {
  color: rgba(255, 250, 242, 0.74);
}

.footer-shell h2,
.footer-shell h3 {
  font-family: var(--sans);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.footer-shell ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.45rem;
}

.footer-shell a {
  text-decoration: none;
}

.footer-shell a:hover {
  color: var(--paper);
}

.footer-bottom {
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 250, 242, 0.14);
  font-size: 0.86rem;
}

@media (min-width: 720px) {
  .hero,
  .split,
  .section-head,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .service-grid,
  .testimonial-grid,
  .values-grid,
  .team-grid,
  .info-grid,
  .policy-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .route-strip {
    grid-template-columns: repeat(4, 1fr);
  }

  .form-panel {
    padding: 1.5rem;
  }
}

@media (min-width: 980px) {
  .nav-shell {
    flex-wrap: nowrap;
  }

  .nav-links {
    order: initial;
    width: auto;
    display: flex;
  }

  .header-cta {
    display: flex;
  }

  .hero {
    grid-template-columns: 1.04fr 0.96fr;
  }

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

  .hero-card {
    min-height: 620px;
  }

  .footer-grid {
    grid-template-columns: 1.3fr 0.7fr 0.8fr 0.8fr;
  }
}

@media (max-width: 430px) {
  .brand {
    grid-template-columns: 36px auto;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
  }

  .brand-text small {
    display: none;
  }

  .hero-card {
    min-height: 380px;
  }

  .note {
    max-width: 150px;
    font-size: 0.74rem;
  }
}
