:root {
  --forest: #123b32;
  --deep: #08251f;
  --sand: #e7ddc8;
  --cream: #f7f1e7;
  --copper: #994526;
  --yellow: #f0c85a;
  --ink: #172923;
  --white: #fff;
  --sans:
    Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  --serif: Georgia, "Times New Roman", serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.6;
  overflow-x: clip;
}
img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
}
header nav a,
footer a,
.card-copy a,
.breadcrumbs a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
}
button,
input,
select,
textarea {
  font: inherit;
}
.skip {
  position: absolute;
  left: -999px;
}
.skip:focus {
  left: 1rem;
  top: 1rem;
  background: #fff;
  padding: 0.7rem;
  z-index: 99;
}
header {
  height: 72px;
  padding: 0 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--cream);
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid #173a3120;
}
.wordmark {
  display: grid;
  text-decoration: none;
  line-height: 1;
  min-height: 44px;
  align-content: center;
}
.wordmark b {
  font-family: var(--serif);
  font-size: 1.75rem;
}
.wordmark span {
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.menu {
  border: 0;
  background: none;
  display: grid;
  grid-template-columns: 22px auto;
  align-items: center;
  gap: 0 0.5rem;
  min-width: 44px;
  min-height: 44px;
  cursor: pointer;
}
.menu i {
  display: block;
  width: 22px;
  border-top: 1px solid;
}
.menu span {
  grid-row: 1/3;
  grid-column: 2;
}
header nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--cream);
  padding: 1rem 5vw;
  border-bottom: 1px solid #173a3120;
}
header nav.open {
  display: grid;
  gap: 0.7rem;
}
header nav a {
  text-decoration: none;
}
.hero {
  position: relative;
  min-height: calc(100svh - 72px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--forest);
  color: #fff;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 60% center;
}
.wash {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #08251f38 10%, #08251fe8 80%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 4rem 6vw 8rem;
  max-width: 1000px;
}
.eyebrow,
.chapter {
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 900;
}
.eyebrow {
  color: var(--yellow);
}
h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.04;
  margin: 0.25em 0;
}
h1 {
  font-size: clamp(2.7rem, 7vw, 6.7rem);
}
h2 {
  font-size: clamp(2.2rem, 5vw, 4.8rem);
}
h3 {
  font-size: clamp(1.35rem, 2vw, 1.8rem);
}
.hero-content > p:not(.eyebrow) {
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  max-width: 680px;
}
.actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.7rem;
  margin-top: 1.7rem;
}
.pill {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.8rem 1.2rem;
  text-decoration: none;
  font-weight: 800;
  border: 1px solid transparent;
  cursor: pointer;
}
.light {
  background: var(--yellow);
  color: var(--deep);
}
.outline {
  border-color: #fff;
  color: #fff;
}
.dark {
  background: var(--deep);
  color: #fff;
}
.hero-note {
  position: absolute;
  z-index: 2;
  bottom: 1.5rem;
  left: 6vw;
  right: 6vw;
  display: flex;
  overflow: auto;
  gap: 1rem;
  font-size: 0.7rem;
  color: #e8e0d0;
}
.hero-note span {
  white-space: nowrap;
}
.hero-note span:before {
  content: "•";
  color: var(--yellow);
  margin-right: 0.5rem;
}
.pattern {
  position: absolute;
  z-index: 1;
  right: -60px;
  top: 20%;
  width: 220px;
  height: 220px;
  border: 1px solid #fff3;
  border-radius: 50%;
  box-shadow:
    0 0 0 28px #ffffff08,
    0 0 0 56px #ffffff08;
}
.intro,
.pathways,
.method,
.answers,
.contact {
  padding: clamp(4rem, 9vw, 9rem) 6vw;
}
.intro {
  display: grid;
  gap: 2rem;
}
.intro .chapter,
.pathways .chapter,
.method .chapter,
.answers .chapter,
.contact .chapter {
  color: var(--copper);
}
.intro p {
  font-size: 1.08rem;
  max-width: 700px;
}
.round-link {
  display: grid;
  place-items: center;
  width: 140px;
  height: 140px;
  background: var(--copper);
  color: #fff;
  border-radius: 50%;
  text-align: center;
  text-decoration: none;
  font-weight: 800;
  line-height: 1.25;
}
.pathways {
  background: var(--sand);
}
.pathway-title {
  max-width: 750px;
  margin-bottom: 3rem;
}
.cards {
  display: grid;
  gap: 1.2rem;
}
.card {
  background: var(--cream);
  border-radius: 40px 40px 8px 8px;
  overflow: hidden;
}
.card-image img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}
.card-copy {
  padding: 1.4rem;
}
.card-copy > span {
  font-size: 0.7rem;
  text-transform: uppercase;
  color: var(--copper);
  font-weight: 900;
  letter-spacing: 0.15em;
}
.card-copy a {
  font-weight: 800;
  color: var(--forest);
}
.story {
  display: grid;
  background: var(--forest);
  color: #fff;
}
.story-portrait img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}
.story-copy {
  padding: clamp(3rem, 7vw, 7rem) 6vw;
}
.story-copy .chapter {
  color: var(--yellow);
}
.quote {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 4vw, 3.5rem);
  line-height: 1.15;
}
.story-copy > p:not(.quote) {
  color: #d8e0dc;
}
.method-head {
  max-width: 850px;
}
.timeline {
  margin-top: 3rem;
  border-left: 1px solid var(--copper);
  padding-left: 1.5rem;
  display: grid;
  gap: 2rem;
}
.timeline article > span {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--copper);
  color: #fff;
  font-weight: 900;
  margin-left: -2.8rem;
}
.answers {
  background: var(--sand);
  display: grid;
  gap: 2.5rem;
}
.accordion details {
  border-top: 1px solid #173a3144;
  padding: 1.2rem 0;
}
.accordion details:last-child {
  border-bottom: 1px solid #173a3144;
}
.accordion summary {
  font-family: var(--serif);
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 48px;
  padding: 0.35rem 0;
}
.accordion summary i {
  font-family: var(--sans);
  font-style: normal;
}
.contact {
  background: var(--deep);
  color: #fff;
  display: grid;
  gap: 3rem;
}
.contact-heading > p {
  color: #d0ddd8;
}
.direct {
  display: grid;
  gap: 0.6rem;
  margin-top: 2rem;
  color: var(--yellow);
  font-weight: 800;
}
.contact form {
  display: grid;
  gap: 1rem;
  background: #ffffff0b;
  border: 1px solid #ffffff22;
  border-radius: 28px;
  padding: 1.3rem;
}
.contact label {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 0.4rem;
  font-size: 0.82rem;
}
.contact label span {
  color: var(--yellow);
}
.contact input,
.contact select,
.contact textarea {
  grid-column: 1/3;
  width: 100%;
  padding: 0.8rem;
  background: #fff;
  color: var(--ink);
  border: 0;
  border-radius: 10px;
}
.contact .consent {
  display: flex;
  align-items: start;
}
.contact .consent input {
  width: 24px;
  min-width: 24px;
  height: 24px;
}
.contact button {
  width: 100%;
}
footer {
  background: #061a16;
  color: #fff;
  padding: 3rem 6vw 6rem;
  display: grid;
  gap: 1.2rem;
}
footer div:last-child {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
footer a {
  color: #fff;
}
.mobile-actions {
  position: fixed;
  z-index: 30;
  bottom: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--cream);
  box-shadow: 0 -8px 30px #0003;
}
.mobile-actions a {
  text-align: center;
  padding: 0.9rem 0.4rem;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 900;
  border-right: 1px solid #173a3120;
}
.mobile-actions a:nth-child(2) {
  background: var(--yellow);
}
:focus-visible {
  outline: 3px solid #208cff;
  outline-offset: 3px;
}
@media (min-width: 850px) {
  .menu {
    display: none;
  }
  header nav {
    display: flex;
    position: static;
    padding: 0;
    background: none;
    border: 0;
    gap: 1.7rem;
  }
  .hero-content {
    padding-bottom: 7rem;
  }
  .hero-note {
    left: auto;
    right: 3vw;
    bottom: 3rem;
    flex-direction: column;
  }
  .intro {
    grid-template-columns: 150px 1fr 180px;
    align-items: center;
  }
  .cards {
    grid-template-columns: repeat(3, 1fr);
  }
  .card:nth-child(2) {
    transform: translateY(3rem);
  }
  .story {
    grid-template-columns: 1fr 1fr;
  }
  .story-portrait img {
    height: 100%;
    min-height: 720px;
  }
  .timeline {
    grid-template-columns: repeat(3, 1fr);
    border-left: 0;
    border-top: 1px solid var(--copper);
    padding-left: 0;
    padding-top: 1.5rem;
  }
  .timeline article > span {
    margin: -2.8rem 0 1rem;
  }
  .answers {
    grid-template-columns: 0.8fr 1.2fr;
  }
  .contact {
    grid-template-columns: 1fr 1fr;
  }
  .contact form {
    padding: 2rem;
  }
  .mobile-actions {
    display: none;
  }
  footer {
    padding-bottom: 3rem;
    grid-template-columns: 1fr 1fr auto;
    align-items: center;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .card:nth-child(2) {
    transform: none;
  }
}

/* Multipage extensions */
.page-hero {
  position: relative;
  min-height: 78svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--forest);
  color: #fff;
}
.page-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-hero .shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #08251f35, #08251fed 88%);
}
.page-hero .page-hero-copy {
  position: relative;
  z-index: 2;
  padding: 5rem 6vw 6.5rem;
  max-width: 1050px;
}
.page-hero h1 {
  font-size: clamp(2.65rem, 6.6vw, 6.2rem);
}
.page-hero .hero-reassurance {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1.2rem;
  margin-top: 1.5rem;
  font-size: 0.75rem;
  color: #eee5d5;
}
.page-hero .hero-reassurance span:before {
  content: "•";
  color: var(--yellow);
  margin-right: 0.5rem;
}
.breadcrumbs {
  font-size: 0.72rem;
  margin-bottom: 1rem;
  color: #e9dfce;
}
.breadcrumbs a {
  color: inherit;
}
.content-section {
  padding: clamp(4rem, 8vw, 8rem) 6vw;
}
.content-grid {
  display: grid;
  gap: 3rem;
  max-width: 1280px;
  margin: auto;
}
.prose {
  max-width: 780px;
}
.prose p,
.prose li {
  font-size: 1.02rem;
}
.prose ul {
  padding-left: 1.2rem;
}
.prose li {
  margin: 0.55rem 0;
}
.side-card {
  align-self: start;
  background: var(--sand);
  border-radius: 28px;
  padding: 1.5rem;
}
.side-card h3 {
  margin-top: 0;
}
.side-card ul {
  padding: 0;
  list-style: none;
}
.side-card li {
  padding: 0.7rem 0;
  border-bottom: 1px solid #173a312e;
}
.keyword-band {
  background: var(--forest);
  color: #fff;
  padding: 1.2rem 6vw;
  display: flex;
  gap: 1.5rem;
  overflow: auto;
  scrollbar-width: none;
}
.keyword-band span {
  white-space: nowrap;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.keyword-band span:before {
  content: "✦";
  color: var(--yellow);
  margin-right: 0.6rem;
}
.situations {
  background: var(--sand);
}
.situation-grid {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}
.situation-card {
  background: var(--cream);
  padding: 1.3rem;
  border-radius: 18px;
}
.situation-card span {
  color: var(--copper);
  font-size: 0.7rem;
  font-weight: 900;
}
.situation-card p {
  margin-bottom: 0;
}
.split-feature {
  display: grid;
  background: var(--forest);
  color: #fff;
}
.split-feature img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}
.split-copy {
  padding: clamp(3rem, 7vw, 7rem) 6vw;
}
.split-copy p {
  color: #d5e1dd;
}
.safe-note {
  padding: 1rem;
  border-left: 3px solid var(--yellow);
  background: #ffffff0a;
  margin: 1.5rem 0;
}
.service-links {
  padding: clamp(4rem, 8vw, 7rem) 6vw;
  background: var(--sand);
}
.service-links-grid {
  display: grid;
  gap: 1rem;
}
.service-link {
  background: var(--cream);
  border-radius: 18px;
  padding: 1.3rem;
  text-decoration: none;
}
.service-link span {
  color: var(--copper);
  font-size: 0.7rem;
  font-weight: 900;
}
.page-faq {
  padding: clamp(4rem, 8vw, 8rem) 6vw;
}
.page-faq-grid {
  display: grid;
  gap: 2.5rem;
}
.page-faq details {
  border-top: 1px solid #173a3144;
  padding: 1.15rem 0;
}
.page-faq details:last-child {
  border-bottom: 1px solid #173a3144;
}
.page-faq summary {
  font-family: var(--serif);
  font-size: 1.15rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 48px;
  padding: 0.35rem 0;
}
.cta-panel {
  margin: 0 6vw clamp(4rem, 8vw, 8rem);
  padding: clamp(2rem, 5vw, 4rem);
  background: var(--copper);
  color: #fff;
  border-radius: 36px;
  display: grid;
  gap: 1rem;
}
.cta-panel .pill {
  width: fit-content;
  max-width: 100%;
}
.contact-page {
  min-height: calc(100svh - 72px);
  padding: clamp(4rem, 8vw, 8rem) 6vw;
  background: var(--deep);
  color: #fff;
}
.contact-layout {
  display: grid;
  gap: 3rem;
  max-width: 1280px;
  margin: auto;
}
.contact-page form {
  background: #ffffff0b;
  border: 1px solid #ffffff24;
  padding: 1.4rem;
  border-radius: 28px;
  display: grid;
  gap: 1rem;
}
.contact-page label {
  display: grid;
  gap: 0.35rem;
  font-weight: 800;
  font-size: 0.82rem;
}
.contact-page input,
.contact-page select,
.contact-page textarea {
  width: 100%;
  padding: 0.85rem;
  border-radius: 10px;
  border: 0;
}
.contact-page .consent {
  display: flex;
  align-items: start;
  font-weight: 500;
}
.contact-page .consent input {
  width: 24px;
  min-width: 24px;
  height: 24px;
  margin-top: 0.3rem;
}
.thank-you {
  min-height: calc(100svh - 72px);
  display: grid;
  place-items: center;
  padding: 5rem 6vw;
  background: var(--forest);
  color: #fff;
}
.thank-card {
  max-width: 820px;
  text-align: center;
}
.thank-mark {
  display: grid;
  place-items: center;
  width: 90px;
  height: 90px;
  margin: 0 auto 2rem;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--deep);
  font-size: 2rem;
}
.next-steps {
  display: grid;
  gap: 0.8rem;
  text-align: left;
  margin: 2.5rem 0;
}
.next-steps article {
  background: #ffffff0c;
  border: 1px solid #ffffff20;
  padding: 1rem;
  border-radius: 14px;
}
.logo-img {
  width: 132px;
  height: auto;
}
.footer-logo {
  filter: brightness(0) invert(1);
}
.legal-placeholder {
  font-size: 0.75rem;
  color: #aabbb5;
}
.hidden-field {
  position: absolute;
  left: -9999px;
}
@media (max-width: 849px) {
  header nav a {
    width: 100%;
    padding: 0.45rem 0;
  }
  .page-hero .page-hero-copy {
    padding-top: 4rem;
  }
  .hero-note {
    bottom: 5rem;
  }
  .page-hero h1 {
    overflow-wrap: anywhere;
  }
  .round-link {
    width: 128px;
    height: 128px;
  }
  footer {
    padding-bottom: 7rem;
  }
}
@media (min-width: 850px) {
  .content-grid {
    grid-template-columns: 1.25fr 0.75fr;
  }
  .situation-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .split-feature {
    grid-template-columns: 1fr 1fr;
  }
  .split-feature img {
    height: 100%;
    min-height: 680px;
  }
  .service-links-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .page-faq-grid {
    grid-template-columns: 0.75fr 1.25fr;
  }
  .cta-panel {
    grid-template-columns: 1fr auto;
    align-items: center;
  }
  .contact-layout {
    grid-template-columns: 0.85fr 1.15fr;
  }
  .contact-page form {
    padding: 2rem;
  }
  .next-steps {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Client reviews */
.reviews {
  background: var(--forest);
  color: #fff;
  padding: clamp(4rem, 8vw, 8rem) 6vw;
}
.reviews .chapter {
  color: var(--yellow);
}
.reviews-head {
  max-width: 860px;
  margin-bottom: clamp(2rem, 4vw, 3.2rem);
}
.reviews-head > p {
  color: #d5e1dd;
}
.review-grid {
  display: grid;
  gap: 1rem;
  max-width: 1320px;
}
.review {
  background: #ffffff0d;
  border: 1px solid #ffffff24;
  border-radius: 22px;
  padding: 1.4rem;
  display: grid;
  align-content: start;
  gap: 0.9rem;
}
.review-stars {
  color: var(--yellow);
  font-size: 0.95rem;
  line-height: 1;
  letter-spacing: 0.16em;
}
.review p {
  margin: 0;
  color: #e2ebe7;
  font-size: 0.97rem;
}
.review-author {
  display: grid;
  gap: 0.2rem;
}
.review-author b {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.1rem;
}
.review-author span {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--sand);
}
.review-note {
  max-width: 780px;
  margin: clamp(1.6rem, 3vw, 2.4rem) 0 0;
  font-size: 0.75rem;
  color: #aec2bb;
}
.reviews-inline {
  max-width: 1280px;
  margin: clamp(3rem, 6vw, 5rem) auto 0;
}
.reviews-inline h2 {
  font-size: clamp(1.7rem, 3.2vw, 2.7rem);
}
.reviews-inline > p {
  color: #d0ddd8;
  max-width: 720px;
}
.reviews-inline .review-grid {
  margin-top: 1.6rem;
}

/* Google reviews badge and rating summary */
.g-badge {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.45rem 0.6rem;
  width: fit-content;
  max-width: 100%;
  padding: 0.6rem 0.95rem;
  border-radius: 999px;
  background: #ffffff14;
  border: 1px solid #ffffff30;
  color: #fff;
  font-size: 0.78rem;
  line-height: 1;
}
.g-badge-logo,
.g-summary-logo {
  display: inline-flex;
}
.g-badge-logo svg {
  width: 17px;
  height: 17px;
}
.g-summary-logo svg {
  width: 22px;
  height: 22px;
}
.g-badge-score {
  font-weight: 900;
}
.g-badge-count {
  color: #cfdcd6;
}
.g-badge-stars {
  color: var(--yellow);
  font-size: 0.86rem;
  letter-spacing: 0.06em;
  line-height: 1;
  white-space: nowrap;
}
@supports (background-clip: text) or (-webkit-background-clip: text) {
  .g-badge-stars {
    background-image: linear-gradient(90deg, var(--yellow) 98%, #ffffff3d 98%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
}
.hero-content .g-badge,
.page-hero-copy .g-badge {
  margin-top: 1.5rem;
}
.thank-card .g-badge {
  margin: 1.6rem auto 0;
}
.footer-brand {
  display: grid;
  gap: 1rem;
  justify-items: start;
}
.g-summary {
  display: grid;
  gap: 0.7rem;
  justify-items: start;
  width: fit-content;
  max-width: 100%;
  margin-top: 1.9rem;
  padding: 1.1rem 1.35rem;
  border-radius: 20px;
  background: #ffffff12;
  border: 1px solid #ffffff2b;
}
.g-summary-rating {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.4rem 0.7rem;
  margin: 0;
}
.g-summary-score {
  font-family: var(--serif);
  font-size: 2rem;
  line-height: 1;
}
.g-summary .g-badge-stars {
  font-size: 1.12rem;
}
.g-summary-count {
  font-size: 0.85rem;
  color: #d5e1dd;
}
.g-summary-verified {
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--yellow);
}
@media (min-width: 850px) {
  .review-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
  }
}
