:root {
  --ink: #10110f;
  --muted: #5c635d;
  --paper: #f8fbf8;
  --white: #ffffff;
  --line: #d8ddd2;
  --lime: #c7f464;
  --mint: #1dbf91;
  --coral: #f45b69;
  --gold: #f6c445;
  --deep: #191a16;
  --shadow: 0 22px 60px rgba(16, 17, 15, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  letter-spacing: 0;
}

button,
input,
textarea,
select {
  font: inherit;
}

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

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 20;
  transform: translateY(-160%);
  border-radius: 6px;
  background: var(--lime);
  color: var(--ink);
  padding: 0.75rem 1rem;
  font-weight: 800;
}

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

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem clamp(1rem, 4%, 3.5rem);
  color: var(--white);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 900;
}

.brand-mark {
  display: inline-grid;
  width: 2.25rem;
  height: 2.25rem;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 8px;
  background: var(--lime);
  color: var(--ink);
  font-weight: 950;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  font-size: 0.95rem;
  font-weight: 750;
}

.nav-links a,
.footer-links a {
  text-decoration: none;
}

.nav-links a:hover,
.footer-links a:hover {
  text-decoration: underline;
  text-decoration-thickness: 2px;
}

.nav-cta {
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 6px;
  padding: 0.72rem 1rem;
  color: var(--white);
  text-decoration: none;
  font-weight: 850;
}

.hero {
  position: relative;
  min-height: 88svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: var(--deep);
}

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

.hero-media img {
  height: 100%;
  object-fit: cover;
  filter: saturate(0.95) contrast(1.08);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(16, 17, 15, 0.92) 0%, rgba(16, 17, 15, 0.7) 44%, rgba(16, 17, 15, 0.28) 100%),
    linear-gradient(0deg, rgba(16, 17, 15, 0.88) 0%, rgba(16, 17, 15, 0.08) 48%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(980px, calc(100% - 2rem));
  padding: 9rem 0 4.5rem;
  margin-left: clamp(1rem, 6%, 5rem);
}

.eyebrow,
.section-kicker,
.service-label,
.planner-label {
  margin: 0 0 1rem;
  color: var(--coral);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--lime);
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.03;
}

h1 {
  max-width: 920px;
  font-size: 4.85rem;
}

h2 {
  font-size: 3rem;
}

h3 {
  font-size: 1.32rem;
}

p {
  line-height: 1.65;
}

.hero-copy {
  max-width: 710px;
  margin: 1.4rem 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.18rem;
}

.hero-actions,
.planner-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.hero-actions {
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.1rem;
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 0.85rem 1.2rem;
  cursor: pointer;
  text-decoration: none;
  font-weight: 900;
}

.button-primary {
  background: var(--lime);
  color: var(--ink);
}

.button-primary:hover {
  background: #d9ff7c;
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.7);
  color: var(--white);
}

.button-secondary:hover {
  border-color: var(--lime);
  color: var(--lime);
}

.signal-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  max-width: 790px;
  margin: 2.8rem 0 0;
}

.signal-row div {
  border-top: 2px solid rgba(199, 244, 100, 0.9);
  padding-top: 0.85rem;
}

.signal-row dt {
  font-size: 1.12rem;
  font-weight: 950;
}

.signal-row dd {
  margin: 0.25rem 0 0;
  color: rgba(255, 255, 255, 0.76);
}

section {
  padding: 6rem clamp(1rem, 5%, 4.5rem);
}

.intro-section {
  padding-top: 4rem;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(16rem, 0.7fr);
  gap: 2rem;
  align-items: start;
}

.intro-grid p,
.outcomes-copy p,
.planner-copy p,
.contact-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.section-heading {
  max-width: 850px;
  margin-bottom: 2.4rem;
}

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

.service-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 32px rgba(16, 17, 15, 0.08);
}

.service-card img {
  height: 17rem;
  object-fit: cover;
}

.service-body {
  padding: 1.35rem;
}

.service-body p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.outcomes-section {
  display: grid;
  grid-template-columns: minmax(18rem, 0.82fr) minmax(0, 1.18fr);
  gap: 3rem;
  background: var(--deep);
  color: var(--white);
}

.outcomes-copy {
  position: sticky;
  top: 2rem;
  align-self: start;
}

.outcomes-copy p {
  color: rgba(255, 255, 255, 0.72);
  margin-top: 1.2rem;
}

.outcome-list {
  display: grid;
  gap: 1rem;
}

.outcome-list article,
.process-grid article {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  padding: 1.3rem;
}

.outcome-list span,
.process-grid span {
  display: inline-grid;
  width: 2.3rem;
  height: 2.3rem;
  margin-bottom: 1.2rem;
  place-items: center;
  border-radius: 8px;
  background: var(--gold);
  color: var(--ink);
  font-weight: 950;
}

.outcome-list p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
}

.trust-section {
  display: grid;
  grid-template-columns: minmax(16rem, 0.85fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: center;
  background: #eef3ed;
}

.trust-image img {
  height: 41rem;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.trust-copy p {
  color: var(--muted);
  font-size: 1.08rem;
}

.trust-list {
  display: grid;
  gap: 0.8rem;
  padding: 0;
  margin: 1.5rem 0 0;
  list-style: none;
}

.trust-list li {
  position: relative;
  padding-left: 1.8rem;
  line-height: 1.5;
}

.trust-list li::before {
  content: "";
  position: absolute;
  top: 0.45rem;
  left: 0;
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 2px;
  background: var(--mint);
}

.planner-section {
  display: grid;
  grid-template-columns: minmax(18rem, 0.78fr) minmax(0, 1.22fr);
  gap: 2.5rem;
  align-items: start;
  background: var(--white);
}

.planner-copy p {
  margin-top: 1.2rem;
}

.planner {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  padding: 1rem;
}

.planner-controls {
  margin-bottom: 1rem;
}

.planner-tab {
  min-height: 3rem;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  padding: 0.7rem 1rem;
  font-weight: 900;
}

.planner-tab.is-active,
.planner-tab:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}

.planner-result {
  min-height: 21rem;
  border-radius: 8px;
  background: var(--deep);
  color: var(--white);
  padding: 1.5rem;
}

.planner-result p {
  color: rgba(255, 255, 255, 0.74);
}

.planner-result ul {
  display: grid;
  gap: 0.6rem;
  margin: 1.2rem 0 0;
  padding-left: 1.15rem;
}

.process-section {
  background: #f3f8f3;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

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

.process-grid article {
  border-color: var(--line);
  background: var(--white);
}

.process-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(18rem, 0.85fr) minmax(0, 1.15fr);
  gap: 3rem;
  align-items: start;
  background: var(--deep);
  color: var(--white);
}

.contact-copy {
  position: sticky;
  top: 2rem;
}

.contact-copy p {
  margin-top: 1.2rem;
  color: rgba(255, 255, 255, 0.75);
}

.contact-copy a {
  color: var(--lime);
  font-weight: 850;
}

.query-form {
  display: grid;
  gap: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  padding: 1.2rem;
  background: rgba(255, 255, 255, 0.06);
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

label {
  display: grid;
  gap: 0.45rem;
  font-weight: 850;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--ink);
  padding: 0.85rem 0.9rem;
}

textarea {
  resize: vertical;
}

input:focus,
textarea:focus,
select:focus,
.button:focus,
.planner-tab:focus,
.nav-cta:focus,
a:focus {
  outline: 3px solid var(--lime);
  outline-offset: 3px;
}

.form-submit {
  width: fit-content;
  margin-top: 0.25rem;
}

.form-note {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.94rem;
}

.site-footer {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  padding: 2rem clamp(1rem, 5%, 4.5rem);
  background: var(--ink);
  color: var(--white);
}

.site-footer p {
  margin: 0.8rem 0 0;
  color: rgba(255, 255, 255, 0.7);
}

.footer-links {
  display: grid;
  gap: 0.65rem;
  justify-items: end;
  font-weight: 800;
}

@media (max-width: 980px) {
  h1 {
    font-size: 3.4rem;
  }

  h2 {
    font-size: 2.35rem;
  }

  .nav-links {
    display: none;
  }

  .intro-grid,
  .service-grid,
  .outcomes-section,
  .trust-section,
  .planner-section,
  .process-grid,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .outcomes-copy,
  .contact-copy {
    position: static;
  }

  .trust-image img {
    height: 28rem;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 0.9rem 1rem;
  }

  .nav-cta {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    width: calc(100% - 2rem);
    margin: 0 auto;
    padding-top: 5.8rem;
    padding-bottom: 1.25rem;
  }

  h1 {
    font-size: 2.05rem;
  }

  h2 {
    font-size: 2rem;
  }

  section {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .hero-copy {
    font-size: 0.98rem;
    line-height: 1.5;
  }

  .hero-actions {
    margin-top: 1.4rem;
  }

  .signal-row,
  .field-grid {
    grid-template-columns: 1fr;
  }

  .signal-row {
    display: none;
  }

  .intro-section {
    padding-top: 2rem;
  }

  .service-card img,
  .trust-image img {
    height: 18rem;
  }

  .site-footer {
    flex-direction: column;
  }

  .footer-links {
    justify-items: start;
  }
}
