:root {
  --ink: #18231f;
  --muted: #5d6863;
  --line: #d8dfda;
  --paper: #fbfcfa;
  --soft: #eef4ef;
  --accent: #0e6b57;
  --accent-dark: #08483b;
  --warm: #b45b38;
  --white: #ffffff;
  --danger: #9b2d20;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

a {
  color: var(--accent-dark);
}

.wrap {
  width: min(100% - 48px, 1040px);
  margin: 0 auto;
}

.narrow {
  max-width: 760px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -100px;
  z-index: 10;
  background: var(--ink);
  color: var(--white);
  padding: 10px 14px;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 5;
  background: rgba(251, 252, 250, 0.96);
  border-bottom: 1px solid var(--line);
}

.nav {
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  position: relative;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 1.2rem;
  font-weight: 800;
  text-decoration: none;
}

.brand-mark {
  width: 48px;
  height: auto;
  flex: 0 0 auto;
  object-fit: contain;
}

.nav-toggle {
  width: 46px;
  min-height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  padding: 0;
  border-radius: 6px;
  font-weight: 700;
  cursor: pointer;
}

.nav-toggle-icon {
  display: grid;
  gap: 4px;
}

.nav-toggle-icon span {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-icon span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-icon span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-icon span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.nav-links {
  display: none;
  position: absolute;
  top: 64px;
  left: 0;
  right: 0;
  padding: 12px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 0 0 8px 8px;
}

.nav-links.is-open {
  display: grid;
  gap: 8px;
}

.nav-links a {
  min-height: 44px;
  display: flex;
  align-items: center;
  padding: 0 12px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 700;
}

.nav-links a.button {
  justify-content: center;
  padding: 12px 18px;
  color: var(--white);
  font-weight: 800;
}

.hero {
  background:
    linear-gradient(135deg, rgba(14, 107, 87, 0.12), rgba(180, 91, 56, 0.08)),
    var(--paper);
  padding: 56px 0 40px;
}

.hero-grid,
.content-grid {
  display: grid;
  gap: 28px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--warm);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

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

.eyebrow + h1,
.eyebrow + h2,
.eyebrow + h3 {
  margin-top: 12px;
}

h1 {
  font-size: 2.35rem;
  max-width: 780px;
}

h2 {
  font-size: 1.8rem;
}

h3 {
  font-size: 1.12rem;
}

.hero-text {
  max-width: 680px;
  margin: 18px 0 24px;
  color: var(--muted);
  font-size: 1.08rem;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 12px 18px;
  border: 0;
  border-radius: 6px;
  background: var(--accent);
  color: var(--white);
  font-family: inherit;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
}

.button {
  transition:
    background-color 160ms ease,
    color 160ms ease;
}

.button:hover,
.button:focus {
  background: var(--accent-dark);
  color: var(--white);
}

.hero-visual {
  display: grid;
  gap: 14px;
}

.hero-visual img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  border: 1px solid var(--line);
  box-shadow: 0 18px 45px rgba(24, 35, 31, 0.08);
}

.section {
  padding: 52px 0;
}

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

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

.cards {
  display: grid;
  gap: 16px;
  margin-top: 20px;
}

.card {
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

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

.form-section {
  background: var(--white);
}

.form-heading {
  max-width: 820px;
  margin-bottom: 22px;
}

.required-note {
  margin: 14px 0 0;
  color: var(--muted);
}

.required-marker {
  color: var(--danger);
  font-weight: 800;
}

.messages {
  margin-bottom: 18px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.messages p {
  margin: 0;
}

.intake-form {
  display: grid;
  gap: 18px;
}

.form-grid {
  display: grid;
  gap: 16px;
}

.form-field {
  display: grid;
  gap: 7px;
}

label {
  font-weight: 800;
}

.form-control {
  width: 100%;
  min-height: 46px;
  border: 1px solid #b8c4bd;
  border-radius: 6px;
  padding: 11px 12px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
}

.form-control:disabled {
  color: var(--muted);
  background: var(--soft);
  cursor: not-allowed;
}

.form-field-error .form-control,
.form-field-error .checkbox-input {
  border-color: var(--danger);
}

.consent-field.form-field-error {
  border-color: var(--danger);
  background: #fff6f4;
}

textarea.form-control {
  min-height: 88px;
  resize: vertical;
}

.form-control:focus,
.checkbox-input:focus,
.nav-toggle:focus,
.button:focus {
  outline: 3px solid rgba(14, 107, 87, 0.25);
  outline-offset: 2px;
}

.field-error {
  margin: 0;
  color: var(--danger);
  font-weight: 700;
}

.error-summary {
  padding: 18px;
  border: 2px solid var(--danger);
  border-radius: 8px;
  background: #fff6f4;
}

.error-summary:focus {
  outline: 3px solid rgba(155, 45, 32, 0.25);
  outline-offset: 3px;
}

.error-summary h3,
.error-summary p {
  margin: 0;
}

.error-summary p {
  margin-top: 8px;
}

.error-summary ul {
  margin: 12px 0 0;
  padding-left: 22px;
}

.error-summary a {
  color: var(--danger);
  font-weight: 800;
}

.help-text {
  margin: 0;
  color: var(--muted);
}

.consent-field {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 10px;
  align-items: start;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.checkbox-input {
  width: 20px;
  height: 20px;
  margin-top: 3px;
}

.consent-errors {
  grid-column: 1 / -1;
}

.submit-button {
  justify-self: stretch;
}

.submit-button:disabled {
  cursor: wait;
  opacity: 0.78;
}

.submit-spinner {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.45);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: submit-spin 0.75s linear infinite;
}

.submit-spinner[hidden] {
  display: none;
}

@keyframes submit-spin {
  to {
    transform: rotate(360deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .submit-spinner {
    animation: none;
    border-color: var(--white);
  }
}

.hidden-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.faq-list {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
}

summary {
  min-height: 44px;
  display: flex;
  align-items: center;
  font-weight: 800;
  cursor: pointer;
}

details p {
  margin: 8px 0 0;
  color: var(--muted);
}

.page-section {
  min-height: 58vh;
}

.site-footer {
  padding: 54px 0 0;
  background: var(--white);
  color: var(--ink);
  border-top: 1px solid var(--line);
  border-radius: 18px 18px 0 0;
  overflow: hidden;
}

.footer-inner {
  display: grid;
  gap: 38px;
}

.footer-top {
  display: grid;
  gap: 38px;
}

.footer-brand-block,
.footer-founder-block {
  min-width: 0;
  text-align: center;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--ink);
  font-size: clamp(2.25rem, 9vw, 2.85rem);
  font-weight: 800;
  line-height: 1;
}

.footer-brand-mark {
  width: clamp(94px, 26vw, 124px);
  height: auto;
  flex: 0 0 auto;
  object-fit: contain;
}

.footer-brand-block {
  padding-bottom: 34px;
  border-bottom: 1px solid var(--line);
}

.footer-brand-statement {
  max-width: 520px;
  margin: 18px 0 0;
  margin-right: auto;
  margin-left: auto;
  color: var(--ink);
  font-size: clamp(1.72rem, 7.2vw, 2.05rem);
  line-height: 1.48;
}

.footer-supporting-line {
  max-width: 520px;
  margin: 24px 0 0;
  margin-right: auto;
  margin-left: auto;
  color: var(--muted);
  font-size: clamp(1.38rem, 5.6vw, 1.65rem);
  line-height: 1.55;
}

.footer-founder-heading {
  display: grid;
  justify-items: center;
  gap: 14px;
}

.footer-founder-photo-frame {
  width: 100px;
  height: 100px;
  flex: 0 0 auto;
  border-radius: 50%;
  border: 3px solid var(--soft);
  box-shadow: 0 12px 28px rgba(24, 35, 31, 0.12);
  display: block;
  overflow: hidden;
}

.footer-founder-photo {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center -5%;
  transform: translate(4%) scale(1.2);
  transform-origin: center 18%;
}

.footer-location-icon svg {
  width: 60%;
  height: 60%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-founder-name,
.footer-founder-title,
.footer-founder-role,
.footer-location-list p,
.footer-meta {
  margin: 0;
}

.footer-founder-name {
  color: var(--ink);
  font-size: clamp(2rem, 8vw, 2.5rem);
  font-weight: 800;
  line-height: 1.1;
}

.footer-founder-title {
  margin-top: 10px;
  color: var(--accent);
  font-size: clamp(1.35rem, 5.8vw, 1.7rem);
  font-weight: 800;
  line-height: 1.2;
}

.footer-founder-role {
  margin-top: 8px;
  color: var(--ink);
  font-size: clamp(1.15rem, 4.8vw, 1.38rem);
  font-style: italic;
  line-height: 1.35;
}

.footer-location-list {
  display: grid;
  gap: 30px;
  justify-content: center;
  margin-top: 44px;
}

.footer-location-list p {
  display: grid;
  grid-template-columns: 60px minmax(0, auto);
  align-items: center;
  gap: 18px;
  color: var(--ink);
  font-size: clamp(1.3rem, 5.2vw, 1.58rem);
  text-align: left;
}

.footer-location-icon {
  width: 60px;
  height: 60px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--accent);
}

.footer-bottom {
  display: grid;
  gap: 34px;
  align-items: center;
  text-align: center;
  margin: 0 -24px;
  padding: 38px 24px 46px;
  background: var(--soft);
  border-top: 1px solid var(--line);
}

.footer-copyright {
  order: 2;
  color: var(--ink);
  font-size: clamp(1.28rem, 5.2vw, 1.55rem);
}

.footer-meta {
  display: grid;
  gap: 12px;
  color: var(--muted);
  font-size: clamp(1.28rem, 5.2vw, 1.55rem);
  line-height: 1.45;
}

.footer-meta span:first-child {
  color: var(--ink);
  font-size: clamp(1.45rem, 6vw, 1.8rem);
  font-weight: 800;
}

.footer-socials {
  order: 1;
  display: flex;
  justify-content: space-around;
  gap: 22px;
  align-items: center;
}

.footer-socials a {
  width: 64px;
  min-height: 64px;
  display: grid;
  place-items: center;
  color: var(--accent);
  border-radius: 50%;
  text-decoration: none;
  transition:
    background-color 160ms ease,
    color 160ms ease;
}

.footer-socials a:hover,
.footer-socials a:focus {
  background: var(--soft);
  color: var(--accent-dark);
}

.footer-socials img {
  width: 64px;
  height: 64px;
  display: block;
}

@media (min-width: 640px) {
  .wrap {
    width: min(100% - 64px, 1040px);
  }

  .button {
    width: auto;
  }

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

  .form-field-wide {
    grid-column: 1 / -1;
  }

  .submit-button {
    justify-self: start;
    min-width: 220px;
  }
}

@media (min-width: 768px) {
  h1 {
    font-size: 3.2rem;
  }

  h2 {
    font-size: 2.25rem;
  }

  .nav-toggle {
    display: none;
  }

  .nav-links {
    position: static;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0;
    border: 0;
    background: transparent;
  }

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

  .site-footer {
    padding: 56px 0 42px;
    border-radius: 0;
  }

  .footer-inner {
    gap: 34px;
  }

  .footer-top {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 56px;
    position: relative;
  }

  .footer-top::before {
    content: "";
    width: 1px;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    background: var(--line);
    transform: translateX(-0.5px);
  }

  .footer-brand-block {
    text-align: left;
    padding-right: 28px;
    padding-bottom: 0;
    border-bottom: 0;
  }

  .footer-founder-block {
    text-align: left;
    padding-left: 28px;
  }

  .footer-brand {
    font-size: 1.75rem;
  }

  .footer-brand-mark {
    width: 72px;
  }

  .footer-brand-statement {
    margin-top: 18px;
    font-size: 1.35rem;
    line-height: 1.35;
  }

  .footer-supporting-line {
    margin-top: 14px;
    font-size: 1.05rem;
    line-height: 1.5;
  }

  .footer-founder-heading {
    grid-template-columns: auto minmax(0, 1fr);
    justify-items: start;
    align-items: center;
    gap: 18px;
  }

  .footer-founder-name {
    font-size: 1.55rem;
  }

  .footer-founder-title {
    margin-top: 6px;
    font-size: 1.12rem;
  }

  .footer-founder-role {
    margin-top: 4px;
    font-size: 1rem;
  }

  .footer-location-list {
    gap: 16px;
    justify-content: start;
    margin-top: 28px;
  }

  .footer-location-list p {
    grid-template-columns: 34px minmax(0, auto);
    gap: 14px;
    font-size: 1rem;
  }

  .footer-location-icon {
    width: 34px;
    height: 34px;
  }

  .footer-bottom {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 22px;
    text-align: left;
    margin: 0;
    padding: 24px 0 0;
    background: transparent;
  }

  .footer-copyright {
    order: 1;
    font-size: 1rem;
  }

  .footer-meta {
    gap: 4px;
    font-size: 1rem;
  }

  .footer-meta span:first-child {
    font-size: 1rem;
  }

  .footer-socials {
    order: 2;
    justify-content: end;
    gap: 18px;
  }

  .footer-socials a {
    width: 44px;
    min-height: 44px;
  }

  .footer-socials img {
    width: 32px;
    height: 32px;
  }
}

@media (min-width: 1024px) {
  .wrap {
    width: min(100% - 96px, 1040px);
  }

  .hero {
    padding: 78px 0 62px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.55fr) minmax(300px, 0.85fr);
    align-items: center;
  }

  .content-grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    align-items: start;
  }

  .section {
    padding: 72px 0;
  }

}

@media (min-width: 1280px) {
  h1 {
    font-size: 3.65rem;
  }

}

.pricing-heading {
  position: static;
  z-index: auto;
  max-width: 780px;
  margin: 0 0 22px;
  text-align: left;
}

.pricing-offer {
  display: grid;
  gap: 22px;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(24, 35, 31, 0.08);
}

.pricing-summary {
  display: grid;
  gap: 14px;
  align-content: start;
}

.pricing-type {
  margin: 0;
  color: var(--warm);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-align: left;
  text-transform: uppercase;
  transition: none;
}

.pricing-summary h3 {
  min-height: 0;
  margin: 0;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.55rem;
  line-height: 1.08;
  font-weight: 800;
  text-align: left;
  text-transform: none;
}

.pricing-price {
  margin: 0;
  color: var(--accent-dark);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 3rem;
  line-height: 1;
  font-weight: 900;
  text-align: left;
  transition: none;
}

.pricing-copy {
  max-width: none;
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.55;
  text-align: left;
}

.pricing-details {
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.pricing-details h4 {
  margin: 0 0 14px;
  font-size: 1rem;
}

.pricing-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.pricing-list li {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.5;
}

.pricing-list li::before {
  content: "";
  width: 9px;
  height: 9px;
  position: absolute;
  left: 0;
  top: 0.5em;
  border: 2px solid var(--accent);
  transform: rotate(45deg);
  transition: none;
}

@media (min-width: 640px) {
  .brand-mark {
    width: 54px;
  }

  .pricing-offer {
    padding: 28px;
  }
}

@media (min-width: 768px) {
  .brand {
    gap: 12px;
  }

  .brand-mark {
    width: 60px;
  }

  .pricing-offer {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    align-items: start;
    gap: 32px;
  }

  .pricing-details {
    padding-top: 0;
    padding-left: 32px;
    border-top: 0;
    border-left: 1px solid var(--line);
  }

  .pricing-summary h3 {
    font-size: 1.9rem;
  }

}

@media (min-width: 1024px) {
  .pricing-offer {
    padding: 34px;
  }

  .pricing-price {
    font-size: 3.4rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .pricing-type,
  .pricing-price,
  .pricing-list li::before,
  .pricing-cta,
  .nav-toggle-icon span {
    transition: none;
  }
}
