.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgb(36 74 58 / 0.09);
  background: var(--color-page);
}

.site-header__bar {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(calc(100% - 2 * var(--gutter)), var(--container));
  min-height: var(--header-height);
  margin-inline: auto;
  gap: var(--space-md);
}

.brand {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 0.7rem;
  color: var(--color-brand);
  text-decoration: none;
}

.brand__mark {
  display: grid;
  flex: 0 0 auto;
  width: 2.65rem;
  height: 2.65rem;
  place-items: center;
  border-radius: 50% 50% 50% 0.8rem;
  color: var(--white);
  background: var(--color-brand);
  font-family: var(--font-display);
  font-size: 1.45rem;
  line-height: 1;
}

.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand__text strong {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 400;
}

.brand__text small {
  margin-top: 0.25rem;
  color: var(--color-muted);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.5vw, 2.2rem);
}

.site-nav__list {
  display: flex;
  align-items: center;
  gap: clamp(0.9rem, 2vw, 1.7rem);
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav__list a {
  color: var(--color-muted);
  font-size: var(--text-sm);
  font-weight: 650;
  text-decoration: none;
}

.site-nav__list a:hover {
  color: var(--color-brand);
}

.menu-toggle,
.site-nav__close {
  display: none;
}

.btn {
  display: inline-flex;
  min-height: 3.35rem;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  padding: 0.85rem 1.5rem;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  font-weight: 750;
  text-decoration: none;
  transition: transform var(--fast) var(--ease), background var(--fast) var(--ease), box-shadow var(--fast) var(--ease);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--small {
  min-height: 2.8rem;
  padding: 0.65rem 1.15rem;
  font-size: var(--text-sm);
}

.btn--primary {
  color: var(--white);
  background: var(--color-brand);
  box-shadow: 0 12px 24px -14px rgb(24 51 41 / 0.9);
}

.btn--primary:hover {
  color: var(--white);
  background: var(--color-brand-strong);
  box-shadow: 0 18px 32px -16px rgb(24 51 41 / 0.9);
}

.btn--secondary {
  color: var(--color-brand);
  background: transparent;
  border-color: var(--sage-400);
}

.btn--secondary:hover {
  background: var(--sage-100);
}

.btn--full {
  width: 100%;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-brand);
  font-weight: 750;
  text-underline-offset: 0.3rem;
}

.text-link:hover {
  color: var(--color-accent-strong);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: var(--space-md);
  color: var(--color-brand);
  font-size: var(--text-xs);
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 1.8rem;
  height: 1px;
  background: var(--color-accent);
}

.eyebrow--light {
  color: var(--sage-200);
}

.eyebrow--light > span {
  background: var(--clay-500);
}

.hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(3.4rem, 7vw, 6.5rem);
  background: var(--color-page);
}

.hero__inner {
  display: grid;
  align-items: center;
  gap: clamp(2.5rem, 6vw, 6rem);
}

.hero__content {
  position: relative;
  z-index: 2;
}

.hero__content h1 {
  max-width: 12ch;
}

.hero__subtitle {
  max-width: 37rem;
  margin-bottom: var(--space-lg);
  color: var(--color-muted);
  font-size: clamp(1.08rem, 2vw, 1.28rem);
  line-height: 1.65;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.hero__highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 1.25rem;
  margin: 0;
  padding: 0;
  color: var(--color-muted);
  font-size: var(--text-sm);
  list-style: none;
}

.hero__highlights li {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.hero__highlights li span {
  display: grid;
  width: 1.25rem;
  height: 1.25rem;
  place-items: center;
  border-radius: 50%;
  color: var(--color-brand);
  background: var(--sage-200);
  font-size: 0.7rem;
  font-weight: 900;
}

.hero__visual {
  position: relative;
  width: min(100%, 31rem);
  margin: 0 auto;
}

.hero__image-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border: 0.65rem solid var(--white);
  border-radius: 48% 48% var(--radius-xl) var(--radius-xl);
  background: var(--sage-200);
  box-shadow: var(--shadow-lg);
}

.hero__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 30% center;
}

.hero__note {
  position: absolute;
  right: -0.5rem;
  bottom: 2.3rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 15.5rem;
  padding: 0.85rem 1rem;
  border: 1px solid rgb(36 74 58 / 0.1);
  border-radius: var(--radius-md);
  background: rgb(255 253 248 / 0.94);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(12px);
}

.hero__note-icon {
  display: grid;
  width: 2.5rem;
  height: 2.5rem;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--color-accent);
  font-size: 1.35rem;
}

.hero__note strong,
.hero__note small {
  display: block;
}

.hero__note strong {
  color: var(--color-brand-strong);
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 400;
}

.hero__note small {
  margin-top: 0.1rem;
  color: var(--color-muted);
  font-size: 0.72rem;
}

.photo-credit {
  position: absolute;
  right: 1rem;
  bottom: 0.65rem;
  color: rgb(255 255 255 / 0.82);
  font-size: 0.62rem;
  text-decoration: none;
}

@media (min-width: 55rem) {
  .hero__inner {
    grid-template-columns: minmax(0, 1.08fr) minmax(22rem, 0.82fr);
  }
}

.trust-strip {
  color: var(--white);
  background: var(--color-brand);
}

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

.trust-strip p {
  display: flex;
  min-height: 7rem;
  flex-direction: column;
  justify-content: center;
  margin: 0;
  padding: 1.25rem;
  border-right: 1px solid rgb(255 255 255 / 0.12);
}

.trust-strip p:nth-child(2) {
  border-right: 0;
}

.trust-strip strong {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
}

.trust-strip span {
  margin-top: 0.15rem;
  color: rgb(255 255 255 / 0.68);
  font-size: var(--text-xs);
}

.about {
  position: relative;
  background: var(--color-page);
}

.about__grid {
  display: grid;
  gap: clamp(2rem, 7vw, 7rem);
}

.about__intro h2 {
  max-width: 10ch;
}

.about__copy {
  max-width: 37rem;
}

.about__copy .lead {
  color: var(--color-brand-strong);
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 1.85rem);
  line-height: 1.42;
}

.about__copy > p:not(.lead) {
  color: var(--color-muted);
}

.signature {
  margin-top: var(--space-lg);
  color: var(--color-brand);
  font-family: var(--font-display);
  font-size: 2rem;
  font-style: italic;
}

.signature span {
  color: var(--color-accent);
}

@media (min-width: 50rem) {
  .trust-strip__inner {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .trust-strip p:nth-child(2) {
    border-right: 1px solid rgb(255 255 255 / 0.12);
  }

  .about__grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    align-items: start;
  }
}

.services {
  color: var(--white);
  background: var(--color-brand-strong);
}

.services h2,
.services h3 {
  color: var(--white);
}

.section-heading {
  display: grid;
  gap: 1rem;
  margin-bottom: clamp(2.5rem, 6vw, 4rem);
}

.section-heading h2 {
  max-width: 13ch;
  margin-bottom: 0;
}

.section-heading > p {
  max-width: 32rem;
  color: rgb(255 255 255 / 0.66);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 18rem), 1fr));
  margin: 0;
  padding: 0;
  border-top: 1px solid rgb(255 255 255 / 0.13);
  border-left: 1px solid rgb(255 255 255 / 0.13);
  list-style: none;
}

.service-card {
  position: relative;
  min-height: 18.5rem;
  overflow: hidden;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  border-right: 1px solid rgb(255 255 255 / 0.13);
  border-bottom: 1px solid rgb(255 255 255 / 0.13);
}

.service-card__number {
  display: block;
  margin-bottom: clamp(3rem, 6vw, 5rem);
  color: var(--sage-400);
  font-size: var(--text-xs);
  font-weight: 800;
  letter-spacing: 0.12em;
}

.service-card h3 {
  max-width: 13ch;
}

.service-card p {
  max-width: 30ch;
  margin-bottom: 0;
  color: rgb(255 255 255 / 0.64);
  font-size: var(--text-sm);
}

.service-card--featured {
  background: var(--clay-500);
}

.service-card--featured .service-card__number,
.service-card--featured p {
  color: rgb(255 255 255 / 0.82);
}

.service-card__word {
  position: absolute;
  right: -0.5rem;
  bottom: -1.5rem;
  color: rgb(255 255 255 / 0.08);
  font-family: var(--font-display);
  font-size: 4rem;
  font-style: italic;
}

.scope-note {
  display: flex;
  max-width: 48rem;
  align-items: flex-start;
  gap: 0.75rem;
  margin: var(--space-lg) 0 0;
  color: rgb(255 255 255 / 0.62);
  font-size: var(--text-xs);
}

.scope-note span {
  display: grid;
  flex: 0 0 auto;
  width: 1.35rem;
  height: 1.35rem;
  place-items: center;
  border: 1px solid rgb(255 255 255 / 0.3);
  border-radius: 50%;
  color: var(--white);
  font-family: var(--font-display);
}

@media (min-width: 48rem) {
  .section-heading {
    grid-template-columns: minmax(0, 1.3fr) minmax(18rem, 0.7fr);
    align-items: end;
  }
}

.process {
  background: var(--color-subtle);
}

.process__grid {
  display: grid;
  gap: clamp(3rem, 8vw, 7rem);
}

.process__intro {
  max-width: 31rem;
}

.process__intro > p:not(.eyebrow) {
  color: var(--color-muted);
}

.process__steps {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--color-border);
  list-style: none;
}

.process__steps li {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: var(--space-md);
  padding-block: 1.65rem;
  border-bottom: 1px solid var(--color-border);
}

.process__number {
  display: grid;
  width: 2.4rem;
  height: 2.4rem;
  place-items: center;
  border-radius: 50%;
  color: var(--color-brand);
  background: var(--sage-200);
  font-size: var(--text-sm);
  font-weight: 850;
}

.process__steps h3 {
  margin-bottom: 0.35rem;
  font-size: 1.45rem;
}

.process__steps p {
  max-width: 34rem;
  margin-bottom: 0;
  color: var(--color-muted);
  font-size: var(--text-sm);
}

.when {
  background: var(--color-page);
}

.when__panel {
  display: grid;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: var(--sage-200);
}

.when__heading {
  padding: clamp(2rem, 5vw, 4.5rem);
}

.when__heading h2 {
  max-width: 12ch;
}

.when__heading > p:not(.eyebrow) {
  max-width: 31rem;
  color: var(--color-muted);
}

.when__list {
  margin: 0;
  padding: clamp(1.25rem, 4vw, 2.5rem);
  background: var(--white);
  list-style: none;
}

.when__list li {
  display: grid;
  grid-template-columns: 2.2rem 1fr;
  gap: 0.9rem;
  padding-block: 1.15rem;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-text);
  line-height: 1.5;
}

.when__list li:last-child {
  border-bottom: 0;
}

.when__list span {
  color: var(--color-accent);
  font-size: var(--text-xs);
  font-weight: 850;
  letter-spacing: 0.06em;
}

@media (min-width: 54rem) {
  .process__grid {
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    align-items: start;
  }

  .process__intro {
    position: sticky;
    top: calc(var(--header-height) + 2rem);
  }

  .when__panel {
    grid-template-columns: minmax(0, 1fr) minmax(22rem, 0.9fr);
    align-items: center;
  }
}

.faq {
  background: var(--color-page);
}

.faq__grid {
  display: grid;
  gap: clamp(2.5rem, 8vw, 7rem);
}

.faq__intro {
  max-width: 31rem;
}

.faq__intro > p:not(.eyebrow) {
  color: var(--color-muted);
}

.faq__intro .btn {
  margin-top: var(--space-sm);
}

.faq__list {
  border-top: 1px solid var(--color-border);
}

.faq__item {
  border-bottom: 1px solid var(--color-border);
}

.faq__item summary {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 1.35rem;
  color: var(--color-brand-strong);
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.3vw, 1.4rem);
  line-height: 1.3;
  cursor: pointer;
  list-style: none;
}

.faq__item summary::-webkit-details-marker {
  display: none;
}

.faq__item summary span {
  position: relative;
  flex: 0 0 auto;
  width: 1.8rem;
  height: 1.8rem;
  border: 1px solid var(--sage-400);
  border-radius: 50%;
}

.faq__item summary span::before,
.faq__item summary span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.65rem;
  height: 1px;
  content: '';
  background: var(--color-brand);
  transform: translate(-50%, -50%);
}

.faq__item summary span::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: transform var(--fast) var(--ease);
}

.faq__item[open] summary span::after {
  transform: translate(-50%, -50%) rotate(0);
}

.faq__item p {
  max-width: 42rem;
  margin: -0.25rem 0 1.5rem;
  padding-right: 3rem;
  color: var(--color-muted);
  font-size: var(--text-sm);
}

@media (min-width: 54rem) {
  .faq__grid {
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
    align-items: start;
  }

  .faq__intro {
    position: sticky;
    top: calc(var(--header-height) + 2rem);
  }
}

.contact {
  padding-top: 0;
  background: var(--color-page);
}

.contact__panel {
  display: grid;
  gap: clamp(2.5rem, 6vw, 5rem);
  padding: clamp(2rem, 6vw, 5rem);
  border-radius: var(--radius-xl);
  color: var(--white);
  background: var(--color-brand);
}

.contact__content h2 {
  max-width: 12ch;
  color: var(--white);
}

.contact__content > p:not(.eyebrow):not(.contact__availability) {
  max-width: 32rem;
  color: rgb(255 255 255 / 0.7);
}

.contact__email {
  display: inline-block;
  margin-top: var(--space-sm);
  color: var(--white);
  font-weight: 750;
  text-underline-offset: 0.3rem;
  overflow-wrap: anywhere;
}

.contact__availability {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: var(--space-lg);
  color: rgb(255 255 255 / 0.7);
  font-size: var(--text-xs);
}

.contact__availability span {
  color: #8ed1a6;
  font-size: 0.55rem;
}

.contact-form {
  padding: clamp(1.35rem, 4vw, 2rem);
  border-radius: var(--radius-lg);
  color: var(--color-text);
  background: var(--color-page);
  box-shadow: var(--shadow-md);
}

.field {
  margin-bottom: 1rem;
}

.field label {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--color-brand-strong);
  font-size: var(--text-xs);
  font-weight: 800;
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 0.8rem 0.9rem;
  background: var(--white);
  transition: border-color var(--fast) ease, box-shadow var(--fast) ease;
}

.field textarea {
  min-height: 7rem;
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #89968f;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--sage-600);
  outline: 0;
  box-shadow: 0 0 0 3px rgb(102 134 115 / 0.16);
}

.form-note {
  margin: 0.75rem 0 0;
  color: var(--color-muted);
  font-size: 0.7rem;
  text-align: center;
}

@media (min-width: 54rem) {
  .contact__panel {
    grid-template-columns: minmax(0, 1fr) minmax(22rem, 0.78fr);
    align-items: center;
  }
}

.site-footer {
  padding-block: clamp(3rem, 7vw, 5rem) 1.5rem;
  color: var(--white);
  background: var(--pine-950);
}

.site-footer__inner {
  display: grid;
  gap: 2.5rem;
}

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

.brand--footer .brand__mark {
  color: var(--color-brand-strong);
  background: var(--sage-200);
}

.brand--footer .brand__text small {
  color: rgb(255 255 255 / 0.55);
}

.site-footer__brand > p {
  max-width: 23rem;
  margin-top: var(--space-md);
  color: rgb(255 255 255 / 0.58);
  font-size: var(--text-sm);
}

.site-footer__title {
  margin-bottom: var(--space-sm);
  color: var(--sage-400);
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-footer__links {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer__links li + li {
  margin-top: 0.55rem;
}

.site-footer a:not(.brand) {
  color: rgb(255 255 255 / 0.72);
  text-underline-offset: 0.25rem;
}

.site-footer a:hover {
  color: var(--white);
}

.site-footer__cta {
  display: inline-flex;
  gap: 0.5rem;
  margin-top: 0.5rem;
  font-weight: 750;
}

.site-footer__copy {
  margin-top: 3rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgb(255 255 255 / 0.11);
}

.site-footer__copy p {
  margin: 0;
  color: rgb(255 255 255 / 0.45);
  font-size: 0.72rem;
}

.floating-contact {
  position: fixed;
  right: max(1rem, env(safe-area-inset-right));
  bottom: max(1rem, env(safe-area-inset-bottom));
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.75rem 1rem;
  border: 1px solid rgb(255 255 255 / 0.22);
  border-radius: var(--radius-pill);
  color: var(--white);
  background: var(--color-accent);
  box-shadow: var(--shadow-md);
  font-size: var(--text-sm);
  text-decoration: none;
}

.floating-contact:hover {
  color: var(--white);
  background: var(--color-accent-strong);
}

.floating-contact > span {
  font-size: 1.25rem;
}

@media (min-width: 42rem) {
  .site-footer__inner {
    grid-template-columns: 1.4fr 0.7fr 1fr;
  }
}

.nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 95;
  border: 0;
  background: rgb(16 39 31 / 0.58);
}

.nav-backdrop[hidden] {
  display: none;
}

@media (max-width: 52.99rem) {
  .site-header__bar {
    min-height: 4.25rem;
  }

  .brand__mark {
    width: 2.35rem;
    height: 2.35rem;
    font-size: 1.25rem;
  }

  .brand__text strong {
    font-size: 1.2rem;
  }

  .menu-toggle {
    position: relative;
    display: grid;
    flex: 0 0 auto;
    width: 2.65rem;
    height: 2.65rem;
    place-items: center;
    border: 1px solid var(--color-border);
    border-radius: 50%;
    background: var(--white);
  }

  .menu-toggle__box,
  .menu-toggle__box::before,
  .menu-toggle__box::after {
    display: block;
    width: 1rem;
    height: 1.5px;
    border-radius: 2px;
    background: var(--color-brand);
    content: '';
  }

  .menu-toggle__box {
    position: relative;
  }

  .menu-toggle__box::before,
  .menu-toggle__box::after {
    position: absolute;
    left: 0;
  }

  .menu-toggle__box::before {
    top: -0.32rem;
  }

  .menu-toggle__box::after {
    top: 0.32rem;
  }

  .site-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 110;
    display: flex;
    width: min(88vw, 22rem);
    max-width: 100%;
    height: 100vh;
    height: 100dvh;
    align-items: stretch;
    flex-direction: column;
    gap: var(--space-lg);
    padding: max(1.25rem, env(safe-area-inset-top)) max(1.25rem, env(safe-area-inset-right)) max(1.25rem, env(safe-area-inset-bottom)) 1.25rem;
    overflow-y: auto;
    overscroll-behavior: contain;
    background: var(--color-page);
    box-shadow: var(--shadow-lg);
    visibility: hidden;
    transform: translateX(105%);
    transition: transform var(--base) var(--ease), visibility 0s linear var(--base);
  }

  .site-header[data-nav-open='true'] .site-nav {
    visibility: visible;
    transform: none;
    transition: transform var(--base) var(--ease);
  }

  .site-nav__close {
    display: inline-flex;
    align-self: flex-end;
    padding: 0.5rem;
    border: 0;
    color: var(--color-muted);
    background: transparent;
    font-size: var(--text-sm);
  }

  .site-nav__list {
    align-items: stretch;
    flex-direction: column;
    gap: 0;
  }

  .site-nav__list a {
    display: block;
    padding-block: 0.85rem;
    border-bottom: 1px solid var(--color-border);
    color: var(--color-brand-strong);
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 400;
  }

  .site-nav .btn {
    width: 100%;
    margin-top: auto;
    white-space: normal;
    text-align: center;
  }

  .hero__note {
    right: -0.25rem;
    min-width: 14rem;
  }
}

@media (max-width: 30rem) {
  .brand__text small {
    display: none;
  }

  .hero__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .hero__actions .text-link {
    justify-content: center;
  }

  .hero__note {
    position: relative;
    right: auto;
    bottom: auto;
    width: calc(100% - 1.5rem);
    margin: -2.1rem auto 0;
  }

  .photo-credit {
    bottom: 3.3rem;
  }

  .floating-contact strong {
    display: none;
  }

  .floating-contact {
    width: 3.35rem;
    height: 3.35rem;
    justify-content: center;
    padding: 0;
  }
}

html:has(.site-header[data-nav-open='true']) {
  overflow: hidden;
}
