:root {
  color-scheme: light;
  --bg: #f7f5ef;
  --paper: #fffdf8;
  --ink: #23282a;
  --muted: #626c6f;
  --line: #d8d3c8;
  --accent: #2f6f73;
  --accent-dark: #1f5053;
  --accent-soft: #dfeae5;
  --warm: #a96331;
  --warm-soft: #f1e5d7;
  --shadow: 0 18px 50px rgba(35, 40, 42, 0.08);
  --radius: 18px;
  --max: 1160px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  font-size: 1rem;
  line-height: 1.68;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: var(--accent-dark);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

a:hover {
  color: var(--warm);
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--warm);
  outline-offset: 4px;
}

h1,
h2,
h3,
p,
ul,
ol {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--ink);
  font-weight: 700;
  letter-spacing: -0.025em;
}

h1 {
  max-width: 920px;
  margin-bottom: 24px;
  font-size: clamp(2.65rem, 6.5vw, 5.6rem);
  line-height: 0.99;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2rem, 4.3vw, 3.4rem);
  line-height: 1.08;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.24rem;
  line-height: 1.28;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  transform: translateY(-160%);
  border-radius: 6px;
  background: var(--ink);
  color: #fff;
  padding: 10px 16px;
  font-weight: 700;
}

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

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(216, 211, 200, 0.9);
  background: rgba(247, 245, 239, 0.95);
  backdrop-filter: blur(12px);
}

.header-inner {
  display: flex;
  min-height: 84px;
  max-width: var(--max);
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin: 0 auto;
  padding: 14px 24px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  text-decoration: none;
}

.brand:hover {
  color: var(--ink);
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: var(--accent-dark);
  color: #fff;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.brand-text {
  display: grid;
  line-height: 1.18;
}

.brand-text strong {
  font-size: 0.98rem;
}

.brand-text small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.75rem;
}

.nav-toggle {
  display: none;
  min-width: 46px;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: var(--paper);
  color: var(--ink);
  cursor: pointer;
}

.nav-toggle-icon,
.nav-toggle-icon::before,
.nav-toggle-icon::after {
  display: block;
  width: 21px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  content: "";
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle-icon {
  position: relative;
}

.nav-toggle-icon::before,
.nav-toggle-icon::after {
  position: absolute;
  left: 0;
}

.nav-toggle-icon::before {
  transform: translateY(-7px);
}

.nav-toggle-icon::after {
  transform: translateY(7px);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-icon {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-icon::before {
  transform: translateY(0) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-icon::after {
  transform: translateY(0) rotate(-45deg);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav a {
  border-radius: 7px;
  color: #475154;
  padding: 9px 10px;
  font-size: 0.88rem;
  font-weight: 650;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  background: var(--accent-soft);
  color: var(--accent-dark);
}

.site-nav .nav-contact {
  margin-left: 6px;
  background: var(--accent-dark);
  color: #fff;
  padding-inline: 14px;
}

.site-nav .nav-contact:hover {
  background: var(--ink);
  color: #fff;
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 88px 24px;
}

.section-sm {
  padding-top: 56px;
  padding-bottom: 56px;
}

.section-heading {
  max-width: 790px;
  margin-bottom: 38px;
}

.section-heading p:last-child {
  max-width: 710px;
  color: #455054;
  font-size: 1.08rem;
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--warm);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.lead {
  max-width: 760px;
  color: #3f494c;
  font-size: clamp(1.12rem, 2vw, 1.35rem);
  line-height: 1.56;
}

.hero-promise {
  max-width: 790px;
  margin-bottom: 14px;
  color: var(--accent-dark);
  font-size: clamp(1.35rem, 2.6vw, 1.85rem);
  font-weight: 800;
  line-height: 1.28;
  letter-spacing: -0.02em;
}

.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero::after {
  position: absolute;
  z-index: -1;
  top: -170px;
  right: -190px;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: rgba(223, 234, 229, 0.65);
  content: "";
}

.hero-inner {
  display: grid;
  min-height: 650px;
  grid-template-columns: minmax(0, 1.35fr) minmax(290px, 0.65fr);
  align-items: center;
  gap: 74px;
}

.hero-service .hero-inner {
  min-height: 560px;
}

.hero-compact .hero-inner {
  min-height: 500px;
}

.hero-priority {
  box-shadow: inset 0 5px 0 var(--warm);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--accent-dark);
  border-radius: 8px;
  padding: 11px 19px;
  font-weight: 750;
  text-align: center;
  text-decoration: none;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

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

.button-primary {
  background: var(--accent-dark);
  color: #fff;
}

.button-primary:hover {
  background: var(--ink);
  color: #fff;
}

.button-secondary {
  background: transparent;
  color: var(--accent-dark);
}

.button-secondary:hover {
  background: var(--accent-soft);
  color: var(--accent-dark);
}

.trust-card,
.hero-note {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.92);
  box-shadow: var(--shadow);
  padding: 28px;
}

.trust-card::before,
.hero-note::before {
  display: block;
  width: 54px;
  height: 5px;
  margin-bottom: 24px;
  border-radius: 5px;
  background: var(--warm);
  content: "";
}

.trust-card p,
.hero-note p {
  color: #475154;
}

.trust-card p:last-child,
.hero-note p:last-child {
  margin-bottom: 0;
}

.hero-metric {
  text-align: center;
}

.hero-metric::before {
  margin-right: auto;
  margin-left: auto;
}

.metric {
  display: grid;
  margin-bottom: 22px;
  color: var(--ink) !important;
  line-height: 1.1;
}

.metric strong {
  color: var(--accent-dark);
  font-size: clamp(3.6rem, 8vw, 5.6rem);
  letter-spacing: -0.06em;
}

.metric span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.metric-result {
  margin-bottom: 0;
}

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

.trust-list li {
  position: relative;
  padding-left: 27px;
  color: #3f494c;
}

.trust-list li::before {
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 10px;
  height: 10px;
  border: 2px solid var(--accent);
  border-radius: 50%;
  content: "";
}

.intro-strip {
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

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

.intro-item {
  border-left: 3px solid var(--accent);
  padding-left: 18px;
}

.intro-item strong {
  display: block;
  margin-bottom: 5px;
  font-size: 1.05rem;
}

.intro-item span {
  color: var(--muted);
  font-size: 0.94rem;
}

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

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

.card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  padding: 28px;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: #b5c5bf;
  box-shadow: var(--shadow);
}

.card-number {
  margin-bottom: 38px;
  color: var(--warm);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.card p {
  color: #4b5659;
}

.card-link {
  margin-top: auto;
  padding-top: 14px;
  font-weight: 750;
  text-decoration: none;
}

.card-link::after {
  display: inline-block;
  margin-left: 7px;
  content: "→";
  transition: transform 160ms ease;
}

.card-link:hover::after {
  transform: translateX(4px);
}

.surface-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: start;
  gap: 72px;
}

.split-copy p {
  color: #455054;
  font-size: 1.05rem;
}

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

.feature-list li {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--bg);
  padding: 18px 20px 18px 52px;
}

.feature-list li::before {
  position: absolute;
  top: 22px;
  left: 21px;
  width: 14px;
  height: 8px;
  transform: rotate(-45deg);
  border-bottom: 2px solid var(--accent-dark);
  border-left: 2px solid var(--accent-dark);
  content: "";
}

.feature-list strong {
  display: block;
  margin-bottom: 3px;
}

.feature-list span {
  color: var(--muted);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: steps;
}

.steps li {
  position: relative;
  border-top: 1px solid var(--line);
  padding: 58px 24px 0 0;
  counter-increment: steps;
}

.steps li::before {
  position: absolute;
  top: 16px;
  left: 0;
  color: var(--warm);
  content: "0" counter(steps);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.steps p {
  color: var(--muted);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(240px, 330px) minmax(0, 1fr);
  align-items: center;
  gap: 68px;
}

.portrait-wrap {
  position: relative;
}

.portrait-wrap::before {
  position: absolute;
  z-index: -1;
  right: -18px;
  bottom: -18px;
  width: 74%;
  height: 74%;
  border-radius: var(--radius);
  background: var(--accent-soft);
  content: "";
}

.portrait-wrap img {
  width: 100%;
  aspect-ratio: 3 / 4;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow);
}

.about-copy {
  max-width: 700px;
}

.about-copy p {
  color: #455054;
  font-size: 1.06rem;
}

.about-copy .signature {
  margin-top: 28px;
  color: var(--ink);
  font-weight: 750;
}

.notice {
  border-left: 4px solid var(--warm);
  border-radius: 0 12px 12px 0;
  background: var(--warm-soft);
  padding: 20px 22px;
}

.notice p:last-child {
  margin-bottom: 0;
}

.notice-spaced {
  margin-top: 38px;
}

.inline-cta {
  margin-top: 26px;
}

.compact-content {
  max-width: 900px;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--paper);
  padding: 24px 26px;
}

.faq-item h3 {
  margin-bottom: 8px;
}

.faq-item p {
  margin-bottom: 0;
  color: #4b5659;
}

.cta-section {
  padding-top: 48px;
  padding-bottom: 88px;
}

.cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 38px;
  border-radius: 24px;
  background: var(--accent-dark);
  color: #fff;
  padding: clamp(28px, 5vw, 54px);
}

.cta-panel h2,
.cta-panel p {
  color: #fff;
}

.cta-panel h2 {
  max-width: 720px;
  font-size: clamp(1.9rem, 4vw, 3rem);
}

.cta-panel p {
  max-width: 720px;
  margin-bottom: 0;
  opacity: 0.85;
}

.cta-panel .button {
  border-color: #fff;
  background: #fff;
  color: var(--accent-dark);
}

.cta-panel .button:hover {
  background: var(--warm-soft);
  color: var(--ink);
}

.cta-panel-priority {
  box-shadow: 0 22px 60px rgba(31, 80, 83, 0.22);
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #ebe7dd;
}

.footer-inner {
  display: grid;
  max-width: var(--max);
  grid-template-columns: 1.2fr 1fr 0.8fr;
  gap: 48px;
  margin: 0 auto;
  padding: 52px 24px 28px;
}

.footer-title {
  margin-bottom: 10px;
  font-size: 1.05rem;
  font-weight: 800;
}

.footer-inner p,
.footer-inner li {
  color: #4c5557;
  font-size: 0.93rem;
}

.footer-links {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links li + li {
  margin-top: 5px;
}

.footer-links a {
  color: #384244;
}

.footer-bottom {
  display: flex;
  max-width: var(--max);
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
  padding: 20px 24px 28px;
}

.footer-bottom p {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.breadcrumb {
  max-width: var(--max);
  margin: 0 auto;
  padding: 18px 24px 0;
  color: var(--muted);
  font-size: 0.84rem;
}

.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.breadcrumb li:not(:last-child)::after {
  margin-left: 7px;
  color: #9aa1a2;
  content: "/";
}

.breadcrumb a {
  color: var(--muted);
}

.legal-page {
  max-width: 880px;
  min-height: 58vh;
}

.legal-page h1 {
  font-size: clamp(2.6rem, 6vw, 4.4rem);
}

.legal-page section {
  border-top: 1px solid var(--line);
  padding: 30px 0 8px;
}

.legal-page h2 {
  font-size: 1.45rem;
}

.legal-page p,
.legal-page li {
  color: #455054;
}

.contact-details {
  font-style: normal;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

@media (max-width: 1040px) {
  .js .nav-toggle {
    display: inline-flex;
  }

  .header-inner {
    flex-wrap: wrap;
  }

  .site-nav {
    width: 100%;
    flex-wrap: wrap;
  }

  .js .site-nav {
    position: fixed;
    top: 84px;
    right: 0;
    bottom: 0;
    left: 0;
    display: none;
    align-content: start;
    align-items: stretch;
    flex-direction: column;
    gap: 4px;
    overflow-y: auto;
    border-top: 1px solid var(--line);
    background: var(--bg);
    padding: 18px 24px 30px;
  }

  .js .site-nav[data-open="true"] {
    display: flex;
  }

  .site-nav a {
    padding: 12px 14px;
    font-size: 1rem;
  }

  .site-nav .nav-contact {
    margin: 8px 0 0;
    text-align: center;
  }

  .hero-inner {
    gap: 42px;
  }
}

@media (max-width: 820px) {
  .section {
    padding: 68px 20px;
  }

  .hero-inner,
  .hero-service .hero-inner,
  .split,
  .about-grid,
  .cta-panel {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .hero-inner {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .hero-note,
  .trust-card {
    max-width: 600px;
  }

  .intro-grid,
  .card-grid,
  .steps,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .intro-grid {
    gap: 20px;
  }

  .steps {
    gap: 26px;
  }

  .about-grid {
    align-items: start;
  }

  .portrait-wrap {
    max-width: 310px;
  }

  .cta-panel {
    align-items: start;
  }

  .cta-panel .button {
    justify-self: start;
  }

  .footer-inner {
    gap: 26px;
  }
}

@media (max-width: 560px) {
  h1 {
    font-size: clamp(2.35rem, 12vw, 3.35rem);
  }

  .header-inner {
    min-height: 76px;
    padding: 11px 16px;
  }

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

  .brand-text small {
    display: none;
  }

  .js .site-nav {
    top: 76px;
  }

  .section {
    padding: 56px 16px;
  }

  .breadcrumb {
    padding-inline: 16px;
  }

  .hero-inner {
    padding-top: 54px;
    padding-bottom: 58px;
  }

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

  .button {
    width: 100%;
  }

  .card,
  .trust-card,
  .hero-note,
  .faq-item {
    padding: 22px;
  }

  .cta-panel .button {
    justify-self: stretch;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    padding-inline: 16px;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
