:root {
  --navy-950: #062945;
  --navy-900: #0b416f;
  --navy-800: #145582;
  --green-700: #4f7f25;
  --green-600: #669c32;
  --green-100: #eaf3df;
  --cream: #f7f4ed;
  --sand: #ece6da;
  --white: #ffffff;
  --ink: #173042;
  --muted: #5f6f78;
  --line: #dce3df;
  --shadow: 0 22px 55px rgba(6, 41, 69, 0.12);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 1rem;
  left: 1rem;
  transform: translateY(-150%);
  padding: .75rem 1rem;
  color: var(--white);
  background: var(--navy-950);
  border-radius: .25rem;
}
.skip-link:focus { transform: translateY(0); }

.shell { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }
.section { padding: 112px 0; }
.eyebrow {
  margin: 0 0 14px;
  color: var(--green-700);
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .15em;
  line-height: 1.4;
  text-transform: uppercase;
}
h1, h2, h3, p { margin-top: 0; }
h1, h2 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -.035em;
  line-height: 1.06;
}
h1 { margin-bottom: 25px; font-size: clamp(3.25rem, 6.2vw, 6.4rem); color: var(--navy-950); }
h1 em { color: var(--green-700); font-weight: inherit; }
h2 { margin-bottom: 24px; font-size: clamp(2.35rem, 4vw, 4rem); color: var(--navy-950); }
h3 { margin-bottom: 14px; color: var(--navy-950); font-size: 1.3rem; line-height: 1.25; }

.utility-bar { color: #eaf2f7; background: var(--navy-950); }
.utility-inner { display: flex; justify-content: space-between; align-items: center; min-height: 38px; font-size: .78rem; letter-spacing: .02em; }
.utility-inner p { margin: 0; }
.utility-inner a { text-decoration: none; }
.utility-inner a span { margin-left: .45rem; color: var(--white); font-weight: 800; }

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(11, 65, 111, .11);
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(15px);
}
.nav-wrap { display: flex; justify-content: space-between; align-items: center; min-height: 84px; gap: 40px; }
.brand { display: block; width: 235px; }
.brand img, .footer-brand img { width: 100%; height: auto; }
.site-nav { display: flex; align-items: center; gap: clamp(18px, 2vw, 32px); }
.site-nav > a:not(.button) { position: relative; color: var(--navy-950); font-size: .9rem; font-weight: 700; text-decoration: none; }
.site-nav > a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--green-600);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .22s ease;
}
.site-nav > a:hover::after, .site-nav > a:focus-visible::after { transform: scaleX(1); }
.menu-toggle { display: none; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 2px solid var(--navy-900);
  color: var(--white);
  background: var(--navy-900);
  font-size: .88rem;
  font-weight: 800;
  letter-spacing: .02em;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform .2s ease, background-color .2s ease, border-color .2s ease;
}
.button:hover { border-color: var(--navy-950); background: var(--navy-950); transform: translateY(-2px); }
.button-small { min-height: 44px; padding-inline: 18px; }
.text-link { color: var(--navy-900); font-weight: 800; text-underline-offset: 5px; }
.text-link span { display: inline-block; margin-left: 5px; transition: transform .2s ease; }
.text-link:hover span { transform: translateX(4px); }

.hero { position: relative; min-height: 710px; overflow: hidden; background: var(--cream); }
.hero-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-wash {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(247, 244, 237, .99) 0%, rgba(247, 244, 237, .96) 31%, rgba(247, 244, 237, .68) 48%, rgba(247, 244, 237, 0) 68%);
}
.hero-inner { position: relative; display: flex; align-items: center; min-height: 710px; }
.hero-copy { max-width: 655px; padding: 70px 0 86px; }
.hero-lede { max-width: 590px; margin-bottom: 31px; color: #405563; font-size: 1.13rem; line-height: 1.7; }
.hero-actions { display: flex; align-items: center; gap: 28px; }
.hero-note { margin: 24px 0 0; color: #687981; font-size: .82rem; font-weight: 600; }

.trust-strip { position: relative; z-index: 2; margin-top: -1px; color: var(--white); background: var(--navy-900); }
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.trust-grid div { padding: 29px 40px; border-right: 1px solid rgba(255,255,255,.17); }
.trust-grid div:first-child { padding-left: 0; }
.trust-grid div:last-child { border-right: 0; }
.trust-grid strong, .trust-grid span { display: block; }
.trust-grid strong { margin-bottom: 2px; font-family: var(--serif); font-size: 1.14rem; font-weight: 500; }
.trust-grid span { color: #cedde7; font-size: .79rem; }

.services { background: var(--white); }
.section-heading { display: grid; grid-template-columns: 1.35fr .65fr; align-items: end; gap: 90px; margin-bottom: 52px; }
.section-heading h2 { max-width: 790px; margin-bottom: 0; }
.section-heading > p { margin: 0 0 7px; color: var(--muted); }
.section-heading.compact { display: block; max-width: 740px; text-align: center; margin-inline: auto; }

.service-stories { display: grid; gap: 82px; }
.service-story {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(0, .96fr);
  align-items: center;
  gap: clamp(54px, 7vw, 96px);
}
.service-story:not(:last-child) { padding-bottom: 82px; border-bottom: 1px solid var(--line); }
.service-story:nth-child(even) { grid-template-columns: minmax(0, .96fr) minmax(0, 1.04fr); }
.service-story:nth-child(even) .service-photo { order: 2; }
.service-story:nth-child(even) .service-copy { order: 1; }
.service-photo { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: var(--cream); box-shadow: var(--shadow); }
.service-photo::after { position: absolute; right: 0; bottom: 0; width: 30%; height: 7px; content: ""; background: var(--green-600); }
.service-story:nth-child(even) .service-photo::after { right: auto; left: 0; background: var(--navy-800); }
.service-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.service-story:hover .service-photo img { transform: scale(1.025); }
.service-photo-focus-top img { object-position: center 25%; }
.service-copy { max-width: 510px; padding: 20px 0; }
.service-meta { display: flex; align-items: center; gap: 16px; margin-bottom: 17px; }
.service-meta span { color: var(--green-700); font-family: var(--serif); font-size: .85rem; font-weight: 700; }
.service-meta p { margin: 0; color: var(--green-700); font-size: .68rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.service-copy h3 { margin-bottom: 19px; font-family: var(--serif); font-size: clamp(2rem, 3vw, 2.85rem); font-weight: 500; letter-spacing: -.025em; }
.service-copy > p { color: var(--muted); font-size: 1rem; }
.service-points { display: grid; grid-template-columns: 1fr 1fr; gap: 9px 24px; margin: 25px 0 0; padding: 23px 0 0; border-top: 1px solid var(--line); list-style: none; }
.service-points li { position: relative; padding-left: 17px; color: var(--ink); font-size: .8rem; }
.service-points li::before { position: absolute; top: .68em; left: 0; width: 6px; height: 6px; border-radius: 50%; content: ""; background: var(--green-600); }
.service-outcome { margin: 25px 0 0; padding: 4px 0 4px 18px; border-left: 3px solid var(--green-600); color: var(--navy-900) !important; font-size: .86rem !important; font-weight: 700; }
.services-cta { display: flex; justify-content: center; align-items: center; gap: 26px; margin-top: 36px; }
.services-cta p { margin: 0; color: var(--muted); }

.care-story { background: var(--cream); }
.story-grid { display: grid; grid-template-columns: 1.08fr .92fr; align-items: center; gap: clamp(54px, 7vw, 104px); }
.story-image-wrap { position: relative; padding: 0 54px 54px 0; }
.story-image-wrap::before { position: absolute; top: -22px; left: -22px; width: 62%; height: 55%; content: ""; background: var(--green-100); }
.story-image-wrap img { position: relative; z-index: 1; width: 100%; aspect-ratio: 4 / 3; object-fit: cover; box-shadow: var(--shadow); }
.image-caption { position: absolute; z-index: 2; right: 0; bottom: 0; width: min(325px, 72%); padding: 25px 28px; color: #d8e5ed; background: var(--navy-950); font-size: .78rem; }
.image-caption span { display: block; margin-bottom: 5px; color: var(--white); font-family: var(--serif); font-size: 1.15rem; }
.story-copy > p:not(.eyebrow) { color: var(--muted); }
.principle-list { margin-top: 34px; border-top: 1px solid #d7d6cf; }
.principle-list > div { display: grid; grid-template-columns: 45px 1fr; gap: 14px; padding: 19px 0; border-bottom: 1px solid #d7d6cf; }
.principle-list span { color: var(--green-700); font-family: var(--serif); font-size: .8rem; }
.principle-list p { margin: 0; color: var(--muted); font-size: .88rem; }
.principle-list strong { display: block; margin-bottom: 2px; color: var(--navy-950); font-size: .95rem; }

.process { background: var(--white); }
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin: 54px 0 0; padding: 0; list-style: none; counter-reset: step; }
.process-grid li { position: relative; padding: 37px 35px 32px; border-top: 4px solid var(--green-600); background: var(--cream); }
.process-grid li:not(:last-child)::after { position: absolute; top: 55px; right: -23px; z-index: 2; width: 18px; height: 1px; content: ""; background: var(--navy-800); }
.step-number { display: block; margin-bottom: 46px; color: var(--green-700); font-family: var(--serif); font-size: .82rem; }
.process-grid p { margin-bottom: 0; color: var(--muted); font-size: .9rem; }

.contact-section { padding: 105px 0; color: #d8e6ee; background: var(--navy-950); }
.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; align-items: start; gap: 70px 90px; }
.contact-section h2 { max-width: 670px; color: var(--white); }
.contact-section p { max-width: 610px; }
.eyebrow-light { color: #9ecb72; }
.button-light { margin-top: 13px; border-color: var(--white); color: var(--navy-950); background: var(--white); }
.button-light:hover { border-color: var(--green-100); color: var(--navy-950); background: var(--green-100); }
.contact-form { padding: 38px; color: var(--ink); background: var(--white); box-shadow: 0 25px 65px rgba(0,0,0,.2); }
.form-heading { display: flex; align-items: end; justify-content: space-between; gap: 20px; margin-bottom: 28px; }
.form-heading h3 { margin: 0; font-family: var(--serif); font-size: 1.75rem; font-weight: 500; }
.form-kicker { margin: 0; color: var(--green-700); font-size: .67rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { display: grid; gap: 7px; }
.field-full { grid-column: 1 / -1; }
.field label { color: var(--navy-950); font-size: .76rem; font-weight: 800; }
.field label span { color: #788791; font-size: .68rem; font-weight: 600; }
.field input, .field select, .field textarea {
  width: 100%;
  border: 1px solid #cbd5d7;
  border-radius: 0;
  color: var(--ink);
  background: #fbfcfa;
  font: inherit;
  font-size: .9rem;
}
.field input, .field select { min-height: 48px; padding: 0 13px; }
.field textarea { min-height: 125px; padding: 11px 13px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--green-600); outline: 3px solid rgba(102,156,50,.2); outline-offset: 0; }
.privacy-note { margin: 17px 0 0; color: #697983; font-size: .72rem; line-height: 1.5; }
.form-actions { display: flex; align-items: center; gap: 18px; margin-top: 20px; }
.form-submit { border: 0; cursor: pointer; }
.form-submit:disabled { cursor: wait; opacity: .7; transform: none; }
.form-status { margin: 0; color: var(--green-700); font-size: .76rem; font-weight: 700; }
.form-status.is-error { color: #a23434; }
.honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.contact-card { display: grid; grid-column: 1 / -1; grid-template-columns: 1fr 1fr; gap: 26px 36px; padding: 38px; border: 1px solid rgba(255,255,255,.16); font-style: normal; background: rgba(255,255,255,.05); }
.contact-card div:nth-child(n+3) { padding-top: 20px; border-top: 1px solid rgba(255,255,255,.13); }
.contact-card span { display: block; margin-bottom: 9px; color: #9ecb72; font-size: .66rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.contact-card p { margin: 0; color: var(--white); font-size: .88rem; }
.contact-card a { text-underline-offset: 4px; }
.social-connect { display: flex; align-items: center; justify-content: space-between; }
.social-connect > span { margin: 0; }
.social-link {
  display: inline-flex;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(255,255,255,.18);
  transition: transform .2s ease, box-shadow .2s ease;
}
.social-link:hover { transform: translateY(-2px); box-shadow: 0 7px 18px rgba(0,0,0,.24); }
.social-link img { width: 42px; height: 42px; }

.site-footer { padding: 62px 0 24px; background: var(--cream); }
.footer-grid { display: grid; grid-template-columns: 260px 1fr auto; align-items: center; gap: 65px; padding-bottom: 42px; }
.footer-brand { display: block; width: 230px; }
.footer-grid > p { max-width: 430px; margin: 0; color: var(--muted); font-size: .86rem; }
.footer-grid nav { display: grid; gap: 7px; }
.footer-grid nav a { color: var(--navy-900); font-size: .82rem; font-weight: 800; text-decoration: none; }
.footer-grid nav a:hover { text-decoration: underline; text-underline-offset: 4px; }
.footer-grid nav a[aria-current="page"] { color: var(--green-700); }
.footer-bottom { display: flex; justify-content: space-between; padding-top: 22px; border-top: 1px solid #d8d7d0; color: #70808a; font-size: .72rem; }
.footer-bottom p { margin: 0; }

/* Privacy policy */
.policy-hero { padding: 92px 0 82px; background: var(--cream); border-bottom: 1px solid #e3ded3; }
.policy-hero-inner { max-width: 880px; }
.policy-hero h1 { margin-bottom: 24px; font-size: clamp(3.1rem, 6vw, 5.4rem); }
.policy-hero-inner > p:not(.eyebrow):not(.policy-date) { max-width: 720px; color: var(--muted); font-size: 1.12rem; }
.policy-date { margin: 30px 0 0; color: var(--navy-800); font-size: .86rem; }
.policy-section { padding: 90px 0 112px; }
.policy-layout { display: grid; grid-template-columns: minmax(210px, 280px) minmax(0, 760px); justify-content: space-between; gap: 76px; }
.policy-summary { align-self: start; padding: 28px; background: var(--green-100); border-top: 5px solid var(--green-600); }
.policy-summary h2 { margin-bottom: 18px; font-family: var(--sans); font-size: 1rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.policy-summary ul { margin: 0; padding-left: 20px; color: #41564d; font-size: .9rem; }
.policy-summary li + li { margin-top: 12px; }
.policy-content > section { padding: 38px 0; border-top: 1px solid var(--line); }
.policy-content > section:first-of-type { border-top: 0; }
.policy-content h2 { margin-bottom: 17px; font-family: var(--serif); font-size: clamp(1.75rem, 3vw, 2.25rem); }
.policy-content p, .policy-content li { color: #405563; }
.policy-content ul { padding-left: 23px; }
.policy-content li + li { margin-top: 8px; }
.policy-content a, .privacy-note a { color: var(--navy-800); font-weight: 700; text-underline-offset: 3px; }
.policy-notice { margin-bottom: 18px; padding: 27px 30px; color: var(--navy-950); background: #f3f7ee; border-left: 5px solid var(--green-600); }
.policy-notice strong { display: block; margin-bottom: 7px; font-family: var(--serif); font-size: 1.25rem; }
.policy-notice p { margin: 0; }
.policy-contact address { color: #405563; font-style: normal; }

:focus-visible { outline: 3px solid #8dba5f; outline-offset: 4px; }

@media (max-width: 1000px) {
  .site-nav { gap: 17px; }
  .site-nav > a:not(.button) { font-size: .82rem; }
  .brand { width: 205px; }
  .section-heading { grid-template-columns: 1fr; gap: 24px; }
  .section-heading > p { max-width: 690px; }
  .story-grid, .contact-grid { gap: 54px; }
  .footer-grid { grid-template-columns: 230px 1fr; }
  .footer-grid nav { grid-column: 1 / -1; grid-template-columns: repeat(5, auto); justify-content: start; gap: 26px; }
  .policy-layout { grid-template-columns: 1fr; gap: 44px; }
}

@media (max-width: 820px) {
  .shell { width: min(100% - 36px, 720px); }
  .section { padding: 82px 0; }
  .utility-inner p { display: none; }
  .utility-inner { justify-content: center; }
  .nav-wrap { min-height: 73px; }
  .menu-toggle { display: flex; align-items: center; gap: 10px; border: 0; color: var(--navy-950); background: none; font: 800 .8rem var(--sans); cursor: pointer; }
  .menu-bars { display: grid; width: 22px; gap: 4px; }
  .menu-bars i { display: block; width: 100%; height: 2px; background: currentColor; transition: transform .2s ease, opacity .2s ease; }
  .menu-toggle[aria-expanded="true"] .menu-bars i:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] .menu-bars i:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] .menu-bars i:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
  .site-nav { position: absolute; top: 100%; right: 0; left: 0; display: none; align-items: stretch; gap: 0; padding: 16px 18px 24px; border-top: 1px solid var(--line); background: var(--white); box-shadow: 0 18px 25px rgba(6,41,69,.12); }
  .site-nav.open { display: grid; }
  .site-nav > a:not(.button) { padding: 13px 8px; font-size: .95rem; }
  .site-nav > a:not(.button)::after { display: none; }
  .site-nav .button { margin-top: 10px; }
  .hero, .hero-inner { min-height: 690px; }
  .hero-image { object-position: 66% center; }
  .hero-wash { background: linear-gradient(90deg, rgba(247,244,237,.98) 0%, rgba(247,244,237,.91) 48%, rgba(247,244,237,.25) 100%); }
  .hero-copy { max-width: 600px; }
  .trust-grid { grid-template-columns: 1fr; padding-block: 10px; }
  .trust-grid div { padding: 18px 0; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.16); }
  .trust-grid div:last-child { border-bottom: 0; }
  .service-stories { gap: 60px; }
  .service-story, .service-story:nth-child(even) { grid-template-columns: 1fr; gap: 30px; }
  .service-story:not(:last-child) { padding-bottom: 60px; }
  .service-story:nth-child(even) .service-photo, .service-story:nth-child(even) .service-copy { order: initial; }
  .service-photo { aspect-ratio: 16 / 10; }
  .service-copy { max-width: 680px; }
  .story-grid, .contact-grid { grid-template-columns: 1fr; }
  .contact-grid { gap: 48px; }
  .contact-intro { max-width: 650px; }
  .story-image-wrap { max-width: 620px; }
  .process-grid { grid-template-columns: 1fr; }
  .process-grid li:not(:last-child)::after { display: none; }
  .step-number { margin-bottom: 24px; }
}

@media (max-width: 560px) {
  .shell { width: min(100% - 28px, 520px); }
  .section { padding: 68px 0; }
  .brand { width: 188px; }
  .menu-label { display: none; }
  .hero, .hero-inner { min-height: 690px; }
  .hero-image { object-position: 62% center; }
  .hero-wash { background: linear-gradient(90deg, rgba(247,244,237,.98) 0%, rgba(247,244,237,.93) 63%, rgba(247,244,237,.48) 100%); }
  .hero-copy { padding: 55px 0 72px; }
  h1 { font-size: clamp(3.05rem, 15vw, 4.35rem); }
  h2 { font-size: 2.35rem; }
  .hero-lede { font-size: 1rem; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 20px; }
  .service-stories { gap: 48px; }
  .service-story:not(:last-child) { padding-bottom: 48px; }
  .service-photo { aspect-ratio: 4 / 3; }
  .service-points { grid-template-columns: 1fr; }
  .services-cta { align-items: flex-start; flex-direction: column; gap: 10px; }
  .story-image-wrap { padding: 0 23px 57px 0; }
  .story-image-wrap::before { top: -12px; left: -12px; }
  .image-caption { width: 88%; }
  .contact-card { grid-template-columns: 1fr; padding: 28px; }
  .contact-card div:nth-child(n+3) { grid-column: auto; }
  .contact-form { padding: 28px 22px; }
  .form-heading, .form-actions { align-items: flex-start; flex-direction: column; }
  .form-grid { grid-template-columns: 1fr; }
  .field-full { grid-column: auto; }
  .footer-grid { grid-template-columns: 1fr; gap: 26px; }
  .footer-grid nav { grid-column: auto; grid-template-columns: 1fr 1fr; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 8px; }
  .policy-hero { padding: 68px 0 62px; }
  .policy-section { padding: 62px 0 78px; }
  .policy-summary { padding: 24px; }
  .policy-content > section { padding: 31px 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; }
}
