:root {
  --forest-950: #082a25;
  --forest-900: #0d342e;
  --forest-800: #123f37;
  --forest-700: #1b594c;
  --navy-900: #102d46;
  --ink: #17221e;
  --muted: #5d6b65;
  --line: #d8dfda;
  --cream: #f4f1e8;
  --cream-deep: #e9e3d4;
  --white: #fff;
  --gold: #8b682d;
  --error: #9b2c2c;
  --shadow: 0 24px 64px rgba(8, 42, 37, 0.12);
  --radius-large: 32px;
  --radius: 18px;
  --shell: 1200px;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

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

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

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--white);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

button,
input,
select,
textarea {
  color: inherit;
  font: inherit;
}

button,
select {
  cursor: pointer;
}

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

h1,
h2 {
  color: var(--forest-950);
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.06;
}

h1 {
  max-width: 900px;
  margin-bottom: 1.5rem;
  font-size: clamp(2.65rem, 5.3vw, 4.75rem);
}

h2 {
  margin-bottom: 1.35rem;
  font-size: clamp(2.15rem, 4.2vw, 3.8rem);
}

h3 {
  margin-bottom: 0.65rem;
  color: var(--forest-950);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  line-height: 1.3;
}

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

address {
  font-style: normal;
}

::selection {
  color: var(--white);
  background: var(--forest-700);
}

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

.shell {
  width: min(calc(100% - 2rem), var(--shell));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.7rem 1rem;
  color: var(--white);
  background: var(--forest-950);
  border-radius: 8px;
  transform: translateY(-160%);
}

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

.eyebrow,
.card-kicker {
  margin-bottom: 0.85rem;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.35;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.25rem;
  border: 1px solid var(--forest-800);
  border-radius: 999px;
  color: var(--white);
  background: var(--forest-800);
  box-shadow: 0 8px 18px rgba(8, 42, 37, 0.12);
  font-size: 0.95rem;
  font-weight: 750;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
  transition: color 160ms ease, background-color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.button:hover {
  color: var(--white);
  background: var(--forest-950);
  border-color: var(--forest-950);
  transform: translateY(-1px);
}

.button-small {
  min-height: 42px;
  padding: 0.65rem 1rem;
  font-size: 0.86rem;
}

.button-light {
  color: var(--forest-950);
  background: var(--white);
  border-color: var(--white);
}

.button-light:hover {
  color: var(--forest-950);
  background: var(--cream);
  border-color: var(--cream);
}

.button-full {
  width: 100%;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--forest-800);
  font-weight: 800;
  text-decoration: none;
}

.text-link span {
  transition: transform 160ms ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(13, 52, 46, 0.1);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(15px);
}

.site-header.is-scrolled {
  box-shadow: 0 8px 30px rgba(8, 42, 37, 0.08);
}

.header-inner {
  position: relative;
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 0.85rem;
  color: var(--forest-950);
  font-size: 1.03rem;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
}

.brand img {
  width: 72px;
  height: auto;
}

.brand > span {
  padding-left: 0.85rem;
  border-left: 1px solid var(--line);
}

.brand > span span {
  color: var(--forest-700);
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(0.7rem, 2vw, 1.45rem);
}

.primary-nav > a:not(.button) {
  position: relative;
  color: #33433c;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
}

.primary-nav > a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: -0.4rem;
  left: 0;
  height: 2px;
  background: var(--forest-700);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.primary-nav > a:not(.button):hover::after,
.primary-nav > a:not(.button):focus-visible::after,
.primary-nav > a[aria-current="page"]::after {
  transform: scaleX(1);
}

.primary-nav > a[aria-current="page"] {
  color: var(--forest-950);
}

.nav-toggle {
  display: none;
  min-width: 74px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  font-size: 0.83rem;
  font-weight: 800;
}

.nav-toggle-icon {
  position: relative;
  display: block;
  width: 17px;
  height: 14px;
}

.nav-toggle-icon i {
  position: absolute;
  left: 0;
  width: 17px;
  height: 2px;
  border-radius: 4px;
  background: currentColor;
  transition: transform 160ms ease, top 160ms ease;
}

.nav-toggle-icon i:first-child {
  top: 3px;
}

.nav-toggle-icon i:last-child {
  top: 9px;
}

.nav-open .nav-toggle-icon i:first-child {
  top: 6px;
  transform: rotate(45deg);
}

.nav-open .nav-toggle-icon i:last-child {
  top: 6px;
  transform: rotate(-45deg);
}

.hero {
  padding: clamp(2.25rem, 5vw, 5rem) 0 clamp(3rem, 6vw, 5.5rem);
  background:
    radial-gradient(circle at 15% 20%, rgba(233, 227, 212, 0.76), transparent 30rem),
    linear-gradient(180deg, #fbfaf7 0%, #fff 100%);
}

.hero-grid {
  display: grid;
  align-items: center;
  gap: clamp(2.2rem, 5vw, 5rem);
  grid-template-columns: minmax(0, 1.03fr) minmax(380px, 0.97fr);
}

.hero-copy {
  max-width: 710px;
}

.hero-copy > p:not(.eyebrow):not(.assurance) {
  max-width: 650px;
  color: #43524c;
  font-size: clamp(1rem, 1.7vw, 1.15rem);
}

.hero-lead {
  color: #2f4039 !important;
  font-size: clamp(1.12rem, 2.1vw, 1.32rem) !important;
  line-height: 1.58;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-top: 2rem;
}

.assurance {
  display: flex;
  max-width: 650px;
  align-items: flex-start;
  gap: 0.7rem;
  margin-top: 1.65rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

.assurance > span {
  display: inline-grid;
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--forest-700);
  font-size: 0.72rem;
}

.hero-visual {
  position: relative;
  min-height: 620px;
}

.hero-visual::before {
  position: absolute;
  z-index: 0;
  top: -1.25rem;
  right: -1.25rem;
  width: 70%;
  height: 58%;
  border: 1px solid #cfd8d2;
  border-radius: var(--radius-large);
  content: "";
}

.hero-visual > img {
  position: absolute;
  z-index: 1;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: var(--radius-large) 5rem var(--radius-large) var(--radius-large);
  box-shadow: var(--shadow);
  object-fit: cover;
  object-position: 52% center;
}

.contact-card {
  position: absolute;
  z-index: 2;
  right: -1.5rem;
  bottom: 2.2rem;
  display: flex;
  min-width: 240px;
  flex-direction: column;
  padding: 1.2rem 1.35rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  color: var(--white);
  background: rgba(8, 42, 37, 0.94);
  box-shadow: 0 18px 40px rgba(8, 42, 37, 0.22);
}

.contact-card span {
  margin-bottom: 0.25rem;
  color: #d9e7df;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.contact-card a {
  font-family: var(--serif);
  font-size: 1.55rem;
  text-decoration: none;
}

.contact-card small {
  color: #d9e7df;
}

.trust-strip {
  padding: 1.45rem 0;
  color: var(--white);
  background: var(--forest-950);
}

.trust-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(3, 1fr);
}

.trust-grid > div {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.4rem clamp(0.25rem, 2vw, 1.5rem);
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.trust-grid > div:first-child {
  padding-left: 0;
}

.trust-grid > div:last-child {
  border-right: 0;
}

.trust-grid p {
  color: #dce7e1;
  font-size: 0.85rem;
  line-height: 1.45;
}

.trust-grid strong {
  color: var(--white);
}

.trust-number {
  color: #d6b675;
  font-family: var(--serif);
  font-size: 1.45rem;
}

.section {
  padding: clamp(4.5rem, 9vw, 8rem) 0;
}

.section-tint {
  background: var(--cream);
}

.section-dark {
  color: #dce7e1;
  background: var(--forest-950);
}

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

.section-dark .eyebrow {
  color: #d6b675;
}

.section-heading {
  max-width: 730px;
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}

.section-heading-wide {
  max-width: 850px;
}

.section-heading > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.08rem;
}

.section-dark .section-heading > p:not(.eyebrow) {
  color: #c7d7cf;
}

.section-heading.centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.reason-grid {
  display: grid;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  grid-template-columns: repeat(2, 1fr);
}

.reason-card {
  min-height: 280px;
  padding: clamp(1.5rem, 3.5vw, 2.75rem);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.reason-card > span {
  display: block;
  margin-bottom: 2rem;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 1.4rem;
}

.reason-card h3 {
  max-width: 410px;
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  font-weight: 500;
}

.reason-card p {
  max-width: 470px;
  color: var(--muted);
}

.facts-layout {
  display: grid;
  align-items: center;
  gap: clamp(2.5rem, 6vw, 6rem);
  grid-template-columns: minmax(330px, 0.92fr) minmax(0, 1.08fr);
}

.editorial-image {
  margin: 0;
}

.editorial-image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-large);
  box-shadow: var(--shadow);
  object-fit: cover;
  object-position: center;
}

.editorial-image figcaption {
  max-width: 440px;
  margin-top: 1rem;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.5;
}

.facts-copy > p:not(.eyebrow):not(.soft-note) {
  color: var(--muted);
  font-size: 1.05rem;
}

.fact-list {
  margin: 2rem 0 1.75rem;
  padding: 0;
  list-style: none;
}

.fact-list li {
  display: grid;
  gap: 1rem;
  padding: 1.2rem 0;
  border-top: 1px solid #d4cec0;
  grid-template-columns: 42px 1fr;
}

.fact-list li > span {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid #bcb39f;
  border-radius: 50%;
  color: var(--forest-800);
  font-size: 0.82rem;
  font-weight: 800;
}

.fact-list h3 {
  margin: 0 0 0.25rem;
  font-size: 1.02rem;
}

.fact-list p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.soft-note {
  margin-bottom: 1.5rem;
  padding: 1rem 1.1rem;
  border-left: 3px solid var(--forest-700);
  color: #43524c;
  background: rgba(255, 255, 255, 0.46);
  font-size: 0.9rem;
}

.path-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1.18fr 0.82fr;
}

.path-card {
  display: flex;
  min-height: 330px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: clamp(2rem, 5vw, 4rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-large);
  background:
    linear-gradient(145deg, rgba(244, 241, 232, 0.72), rgba(255, 255, 255, 0.8)),
    var(--white);
}

.path-card-primary {
  color: #dce7e1;
  background:
    radial-gradient(circle at 90% 10%, rgba(255, 255, 255, 0.12), transparent 15rem),
    var(--forest-800);
  border-color: var(--forest-800);
}

.path-card h3 {
  font-family: var(--serif);
  font-size: clamp(1.65rem, 3.4vw, 2.6rem);
  font-weight: 500;
}

.path-card-primary h3 {
  color: var(--white);
}

.path-card p:not(.card-kicker) {
  max-width: 540px;
  margin-bottom: 1.5rem;
}

.path-card:not(.path-card-primary) p:not(.card-kicker) {
  color: var(--muted);
}

.path-card .card-kicker {
  color: #d6b675;
}

.industry-band {
  padding: clamp(4.5rem, 8vw, 7rem) 0;
  color: #dce7e1;
  background:
    radial-gradient(circle at 12% 88%, rgba(255, 255, 255, 0.08), transparent 24rem),
    var(--forest-800);
}

.industry-layout {
  display: grid;
  align-items: center;
  gap: clamp(2.5rem, 7vw, 7rem);
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
}

.industry-copy {
  max-width: 580px;
}

.industry-copy h2 {
  color: var(--white);
}

.industry-copy > p:not(.eyebrow) {
  margin-bottom: 1.6rem;
  color: #d3e0da;
  font-size: 1.05rem;
}

.industry-band .eyebrow {
  color: #e3c990;
}

.industry-links {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.industry-links a {
  display: grid;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  grid-template-columns: 36px minmax(0, 1fr) 24px;
  text-decoration: none;
}

.industry-links a > span:first-child {
  color: #e3c990;
  font-family: var(--serif);
}

.industry-links strong,
.industry-links small {
  display: block;
}

.industry-links strong {
  font-size: 1.02rem;
}

.industry-links small {
  margin-top: 0.12rem;
  color: #c5d6ce;
  font-size: 0.8rem;
}

.industry-links b {
  font-size: 1.2rem;
  transition: transform 160ms ease;
}

.industry-links a:hover b {
  transform: translateX(4px);
}

.process-list {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
  grid-template-columns: repeat(3, 1fr);
}

.process-list li {
  min-height: 255px;
  padding: 0 2rem;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.process-list li:first-child {
  padding-left: 0;
  border-left: 0;
}

.process-list li > span {
  display: block;
  margin-bottom: 3rem;
  color: #d6b675;
  font-family: var(--serif);
  font-size: 1.6rem;
}

.process-list p {
  color: #c7d7cf;
}

.contact-section {
  background:
    radial-gradient(circle at 6% 95%, rgba(233, 227, 212, 0.9), transparent 30rem),
    var(--white);
}

.contact-layout {
  display: grid;
  align-items: start;
  gap: clamp(2.5rem, 7vw, 7rem);
  grid-template-columns: minmax(0, 0.8fr) minmax(480px, 1.2fr);
}

.contact-intro {
  position: sticky;
  top: 120px;
}

.contact-intro > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.05rem;
}

.direct-contact {
  margin-top: 2rem;
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
}

.contact-line {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.75rem 0;
  border-top: 1px solid var(--line);
  color: var(--forest-950);
  text-decoration: none;
}

.contact-line > span {
  display: grid;
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--forest-800);
  font-size: 0.8rem;
}

.inquiry-form {
  display: grid;
  gap: 1rem;
  padding: clamp(1.35rem, 4vw, 2.5rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-large);
  background: var(--white);
  box-shadow: var(--shadow);
}

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

.inquiry-form label:not(.check-label) {
  display: grid;
  gap: 0.42rem;
}

.inquiry-form label > span:first-child {
  color: #33433c;
  font-size: 0.84rem;
  font-weight: 750;
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
  width: 100%;
  min-height: 52px;
  padding: 0.75rem 0.9rem;
  border: 1px solid #bfc9c3;
  border-radius: 10px;
  background: var(--white);
  transition: border-color 150ms ease, box-shadow 150ms ease;
}

.inquiry-form textarea {
  min-height: 130px;
  resize: vertical;
}

.inquiry-form input:focus,
.inquiry-form select:focus,
.inquiry-form textarea:focus {
  border-color: var(--forest-700);
  box-shadow: 0 0 0 4px rgba(27, 89, 76, 0.12);
  outline: none;
}

.inquiry-form.was-validated :invalid {
  border-color: var(--error);
}

.optional-fields {
  border: 1px solid var(--line);
  border-radius: 10px;
}

.optional-fields summary {
  padding: 0.9rem 1rem;
  color: var(--forest-800);
  font-size: 0.86rem;
  font-weight: 800;
  cursor: pointer;
}

.optional-fields-inner {
  padding: 0 1rem 1rem;
}

.check-label {
  display: grid;
  align-items: start;
  gap: 0.65rem;
  grid-template-columns: 20px 1fr;
}

.check-label input {
  width: 18px;
  min-height: 18px;
  margin-top: 0.2rem;
  accent-color: var(--forest-700);
}

.check-label span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 500;
}

.form-note {
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.5;
}

.form-status {
  min-height: 1.5em;
  margin: 0;
  color: var(--forest-700);
  font-size: 0.83rem;
  font-weight: 700;
}

.form-status.is-error {
  color: var(--error);
}

.faq-layout {
  display: grid;
  align-items: start;
  gap: clamp(2rem, 7vw, 7rem);
  grid-template-columns: 0.75fr 1.25fr;
}

.faq-layout .section-heading {
  position: sticky;
  top: 120px;
  margin-bottom: 0;
}

.faq-list {
  border-top: 1px solid #cbc4b5;
}

.faq-list details {
  border-bottom: 1px solid #cbc4b5;
}

.faq-list summary {
  position: relative;
  padding: 1.35rem 3rem 1.35rem 0;
  color: var(--forest-950);
  font-family: var(--serif);
  font-size: clamp(1.12rem, 2vw, 1.4rem);
  font-weight: 600;
  line-height: 1.35;
  list-style: none;
  cursor: pointer;
}

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

.faq-list summary::before,
.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 0.5rem;
  width: 17px;
  height: 2px;
  background: var(--forest-700);
  content: "";
  transition: transform 160ms ease;
}

.faq-list summary::after {
  transform: rotate(90deg);
}

.faq-list details[open] summary::after {
  transform: rotate(0);
}

.faq-list details p {
  max-width: 700px;
  padding: 0 3rem 1.4rem 0;
  color: var(--muted);
}

.final-cta {
  padding: clamp(4rem, 8vw, 7rem) 0;
  color: #dce7e1;
  background:
    radial-gradient(circle at 85% 20%, rgba(255, 255, 255, 0.11), transparent 18rem),
    var(--forest-800);
}

.final-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.final-cta-inner > div {
  max-width: 780px;
}

.final-cta h2 {
  color: var(--white);
}

.final-cta .eyebrow {
  color: #e3c990;
}

.site-footer {
  color: #c9d6d0;
  background: var(--forest-950);
}

.footer-top {
  display: grid;
  gap: 3rem;
  padding-top: 4rem;
  padding-bottom: 3rem;
  grid-template-columns: 1.5fr 0.8fr 0.7fr;
}

.footer-top > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.55rem;
}

.footer-top p {
  max-width: 450px;
  margin: 0.85rem 0 0;
}

.footer-top strong {
  margin-bottom: 0.4rem;
  color: var(--white);
}

.footer-top a:not(.brand) {
  color: #c9d6d0;
  text-decoration: none;
}

.footer-top a:not(.brand):hover {
  color: var(--white);
  text-decoration: underline;
}

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

.brand-footer > span {
  border-left-color: rgba(255, 255, 255, 0.25);
}

.brand-footer > span span {
  color: #a8cabb;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.2rem;
  padding-bottom: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.79rem;
}

.footer-bottom a {
  color: inherit;
}

.subhero {
  padding: clamp(2.5rem, 6vw, 5rem) 0;
  background: var(--cream);
}

.subhero-grid {
  display: grid;
  min-height: 620px;
  align-items: stretch;
  gap: clamp(2rem, 5vw, 5rem);
  grid-template-columns: 0.95fr 1.05fr;
}

.subhero-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.subhero-copy > p:not(.eyebrow) {
  max-width: 640px;
  color: var(--muted);
  font-size: 1.08rem;
}

.subhero-image {
  margin: 0;
}

.subhero-image img {
  width: 100%;
  height: 100%;
  min-height: 540px;
  border-radius: var(--radius-large) 5rem var(--radius-large) var(--radius-large);
  box-shadow: var(--shadow);
  object-fit: cover;
}

.criteria-grid {
  display: grid;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  grid-template-columns: repeat(4, 1fr);
}

.criteria-grid-three {
  grid-template-columns: repeat(3, 1fr);
}

.criteria-grid article {
  min-height: 250px;
  padding: 2rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.criteria-grid article > span {
  display: block;
  margin-bottom: 2.5rem;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 1.4rem;
}

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

.compact-dark {
  padding-top: clamp(3.5rem, 7vw, 6rem);
  padding-bottom: clamp(3.5rem, 7vw, 6rem);
}

.split-message {
  display: grid;
  align-items: start;
  gap: clamp(2rem, 7vw, 7rem);
  grid-template-columns: 0.85fr 1.15fr;
}

.split-message p:last-child {
  max-width: 700px;
  color: #c7d7cf;
  font-size: 1.08rem;
}

.legal-main {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background:
    linear-gradient(180deg, var(--cream) 0, rgba(244, 241, 232, 0.28) 320px, var(--white) 600px);
}

.legal-shell {
  max-width: 850px;
}

.legal-shell h1 {
  margin-bottom: 0.75rem;
  font-size: clamp(2.25rem, 10vw, 5.4rem);
  hyphens: manual;
  overflow-wrap: break-word;
}

.legal-lead {
  margin-bottom: 4rem;
  color: var(--muted);
  font-size: 1.18rem;
}

.legal-shell section {
  padding: 2rem 0;
  border-top: 1px solid var(--line);
}

.legal-shell h2 {
  margin-bottom: 1rem;
  font-family: var(--sans);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.015em;
  line-height: 1.3;
}

.legal-shell p,
.legal-shell address {
  color: #425149;
}

.legal-shell a {
  color: var(--forest-700);
}

.legal-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}

.legal-updated {
  margin-top: 2.5rem;
  color: var(--muted);
  font-size: 0.82rem;
}

.legal-footer {
  padding-top: 1.5rem;
  border-top: 0;
}

@media (max-width: 1080px) {
  .hero-grid {
    gap: 3rem;
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.82fr);
  }

  .hero-visual {
    min-height: 540px;
  }

  .contact-card {
    right: -0.75rem;
  }

  .hero-visual::before {
    right: 0;
  }

  .primary-nav {
    gap: 0.8rem;
  }

  .primary-nav > a:not(.button) {
    font-size: 0.84rem;
  }

  .facts-layout,
  .contact-layout {
    gap: 3.5rem;
  }

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

@media (max-width: 900px) {
  html {
    scroll-padding-top: 82px;
  }

  .header-inner {
    min-height: 72px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .primary-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 0;
    left: 0;
    display: grid;
    max-height: 0;
    gap: 0;
    padding: 0 1rem;
    border: 1px solid transparent;
    border-radius: 0 0 18px 18px;
    background: var(--white);
    box-shadow: 0 18px 35px rgba(8, 42, 37, 0.1);
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
    transform: translateY(-0.5rem);
    transition: max-height 200ms ease, opacity 150ms ease, transform 150ms ease, padding 200ms ease;
  }

  .nav-open .primary-nav {
    max-height: 440px;
    padding: 0.7rem 1rem 1rem;
    border-color: var(--line);
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .primary-nav > a:not(.button) {
    padding: 0.9rem 0.2rem;
    border-bottom: 1px solid var(--line);
    font-size: 0.95rem;
  }

  .primary-nav > a:not(.button)::after {
    display: none;
  }

  .primary-nav .button {
    margin-top: 0.9rem;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 800px;
  }

  .hero-visual {
    min-height: 500px;
  }

  .hero-visual::before {
    right: 0;
  }

  .contact-card {
    right: 1rem;
  }

  .facts-layout,
  .contact-layout,
  .faq-layout,
  .subhero-grid,
  .split-message,
  .industry-layout {
    grid-template-columns: 1fr;
  }

  .editorial-image img {
    max-height: 620px;
    aspect-ratio: 16 / 12;
  }

  .contact-intro,
  .faq-layout .section-heading {
    position: static;
  }

  .contact-intro {
    max-width: 750px;
  }

  .path-grid {
    grid-template-columns: 1fr;
  }

  .process-list {
    grid-template-columns: 1fr;
  }

  .process-list li {
    display: grid;
    min-height: 0;
    gap: 1.5rem;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    border-left: 0;
    grid-template-columns: 70px 1fr;
  }

  .process-list li:first-child {
    border-top: 0;
  }

  .process-list li > span {
    margin: 0;
  }

  .subhero-grid {
    min-height: 0;
  }

  .subhero-copy {
    padding: 1rem 0;
  }

  .subhero-image img {
    min-height: 460px;
  }

  .split-message {
    gap: 1rem;
  }
}

@media (max-width: 700px) {
  .shell {
    width: min(calc(100% - 1.35rem), var(--shell));
  }

  h1 {
    font-size: clamp(2.65rem, 13vw, 4rem);
  }

  h2 {
    font-size: clamp(2.05rem, 10vw, 3rem);
  }

  .brand {
    gap: 0.6rem;
    font-size: 0.88rem;
  }

  .brand img {
    width: 60px;
  }

  .brand > span {
    padding-left: 0.6rem;
  }

  .hero {
    padding-top: 2rem;
  }

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

  .hero-actions .text-link {
    justify-content: center;
    min-height: 42px;
  }

  .hero-visual {
    min-height: 410px;
  }

  .hero-visual > img,
  .subhero-image img {
    border-radius: 20px 3rem 20px 20px;
  }

  .contact-card {
    right: 0.75rem;
    bottom: 0.75rem;
    min-width: 205px;
    padding: 0.95rem 1rem;
  }

  .contact-card a {
    font-size: 1.3rem;
  }

  .trust-grid {
    gap: 0;
    grid-template-columns: 1fr;
  }

  .trust-grid > div,
  .trust-grid > div:first-child {
    padding: 0.9rem 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }

  .trust-grid > div:last-child {
    border-bottom: 0;
  }

  .reason-grid {
    grid-template-columns: 1fr;
  }

  .reason-card {
    min-height: 0;
  }

  .reason-card > span {
    margin-bottom: 1.25rem;
  }

  .path-card {
    min-height: 310px;
    padding: 1.5rem;
    border-radius: 20px;
  }

  .process-list li {
    gap: 0.75rem;
    grid-template-columns: 50px 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .inquiry-form {
    border-radius: 20px;
  }

  .faq-list summary {
    padding-right: 2.5rem;
  }

  .faq-list details p {
    padding-right: 0;
  }

  .final-cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .final-cta-inner .button {
    width: 100%;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .subhero-image img {
    min-height: 380px;
  }

  .criteria-grid {
    grid-template-columns: 1fr;
  }

  .criteria-grid article {
    min-height: 0;
  }

  .criteria-grid article > span {
    margin-bottom: 1.25rem;
  }
}

@media (max-width: 420px) {
  .brand > span {
    display: none;
  }

  .hero-visual {
    min-height: 360px;
  }

  .contact-card {
    right: 0.5rem;
    bottom: 0.5rem;
  }
}

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

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

@media print {
  .site-header,
  .site-footer,
  .hero-actions,
  .button,
  .nav-toggle {
    display: none !important;
  }

  body {
    color: #000;
    background: #fff;
    font-size: 11pt;
  }

  .section,
  .legal-main {
    padding: 1.5rem 0;
  }

  a {
    color: #000;
  }
}
