:root {
    --ink: #12211e;
    --forest: #173f3a;
    --forest-strong: #0f302c;
    --accent: #b65335;
    --accent-strong: #95422d;
    --paper: #f8f5ee;
    --sand: #e8dfd0;
    --sage: #dce6e1;
    --white: #ffffff;
    --text: #26332f;
    --muted: #53615c;
    --line: #cbd4d0;
    --success: #226647;
    --error: #a12a2a;
    --shadow-small: 0 12px 30px rgba(18, 33, 30, 0.09);
    --shadow-large: 0 28px 72px rgba(18, 33, 30, 0.15);
    --radius-small: 8px;
    --radius-medium: 18px;
    --radius-large: 30px;
    --container: 1240px;
    --narrow: 790px;
    --serif: Georgia, "Times New Roman", serif;
    --sans: "Aptos", "Segoe UI", Helvetica, Arial, sans-serif;
    --mono: "IBM Plex Mono", "Aptos Mono", "Cascadia Mono", "Courier New", monospace;
}

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

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

body {
    background: var(--paper);
    color: var(--text);
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.7;
    margin: 0;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

img,
svg {
    display: block;
    height: auto;
    max-width: 100%;
}

a {
    color: var(--forest);
    text-decoration-thickness: 1px;
    text-underline-offset: 0.18em;
}

a:hover {
    color: var(--accent-strong);
}

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

button {
    cursor: pointer;
}

:focus-visible {
    outline: 3px solid var(--white);
    outline-offset: 4px;
    box-shadow: 0 0 0 7px var(--ink);
}

.skip-link {
    background: var(--white);
    color: var(--ink);
    font-weight: 800;
    left: 20px;
    padding: 12px 18px;
    position: fixed;
    top: -100px;
    z-index: 10000;
}

.skip-link:focus {
    top: 20px;
}

.container {
    margin-inline: auto;
    max-width: var(--container);
    padding-inline: 28px;
    width: 100%;
}

.narrow {
    margin-inline: auto;
    max-width: var(--narrow);
    padding-inline: 28px;
    width: 100%;
}

.section {
    padding-block: clamp(78px, 9vw, 132px);
}

.section--white {
    background: var(--white);
}

.section--paper {
    background: var(--paper);
}

.section--sage {
    background: var(--sage);
}

.section--dark {
    background: var(--forest);
    color: var(--white);
}

.eyebrow {
    color: var(--accent-strong);
    display: block;
    font-size: 0.76rem;
    font-weight: 850;
    letter-spacing: 0.16em;
    margin-bottom: 18px;
    text-transform: uppercase;
}

.typewriter-label {
    align-items: center;
    border-bottom: 1px solid var(--accent);
    color: var(--accent-strong);
    display: inline-flex;
    font-family: var(--mono);
    font-size: clamp(0.69rem, 1vw, 0.78rem);
    font-weight: 700;
    gap: 10px;
    letter-spacing: 0.13em;
    line-height: 1.5;
    margin-bottom: 28px;
    padding: 0 0 8px;
    text-transform: uppercase;
}

.typewriter-label::after {
    animation: typewriter-cursor 1.1s step-end infinite;
    background: var(--accent);
    content: "";
    height: 1.15em;
    width: 0.44em;
}

@keyframes typewriter-cursor {
    50% {
        opacity: 0.2;
    }
}

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

.display-heading {
    color: var(--ink);
    font-family: var(--serif);
    font-size: clamp(2.7rem, 5vw, 5.1rem);
    font-weight: 600;
    letter-spacing: -0.045em;
    line-height: 0.98;
    margin: 0;
}

.section-heading {
    color: var(--ink);
    font-family: var(--serif);
    font-size: clamp(2.2rem, 4vw, 3.8rem);
    font-weight: 600;
    letter-spacing: -0.035em;
    font-kerning: normal;
    line-height: 1.1;
    margin: 0;
}

.section--dark .display-heading,
.section--dark .section-heading {
    color: var(--white);
}

.lead {
    color: var(--muted);
    font-size: clamp(1.04rem, 1.5vw, 1.25rem);
    line-height: 1.8;
    margin: 26px 0 0;
    max-width: 65ch;
}

.section--dark .lead {
    color: #dbe6e1;
}

.button {
    align-items: center;
    background: var(--forest);
    border: 2px solid var(--forest);
    border-radius: var(--radius-small);
    color: var(--white);
    display: inline-flex;
    font-size: 0.92rem;
    font-weight: 850;
    justify-content: center;
    min-height: 52px;
    padding: 12px 21px;
    box-shadow: 4px 4px 0 rgba(18, 33, 30, 0.2);
    text-decoration: none;
    transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.button:hover {
    background: var(--forest-strong);
    border-color: var(--forest-strong);
    color: var(--white);
    box-shadow: 2px 2px 0 rgba(18, 33, 30, 0.24);
    transform: translate(2px, 2px);
}

.button--accent {
    background: var(--accent);
    border-color: var(--accent);
}

.button--accent:hover {
    background: var(--accent-strong);
    border-color: var(--accent-strong);
}

.button--outline {
    background: transparent;
    border-color: var(--forest);
    color: var(--forest);
}

.button--outline:hover {
    background: var(--forest);
    color: var(--white);
}

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

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

.actions {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.text-link {
    align-items: center;
    color: var(--accent-strong);
    display: inline-flex;
    font-size: 0.82rem;
    font-weight: 850;
    gap: 8px;
    letter-spacing: 0.04em;
    margin-top: 26px;
    text-decoration: none;
    text-transform: uppercase;
}

.text-link::after {
    content: "→";
    font-size: 1rem;
    transition: transform 160ms ease;
}

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

.site-header {
    background: var(--white);
    border-bottom: 1px solid var(--line);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.trust-bar {
    background: var(--ink);
    color: var(--white);
}

.trust-bar__inner {
    align-items: center;
    display: flex;
    font-size: 0.74rem;
    font-weight: 750;
    justify-content: space-between;
    letter-spacing: 0.07em;
    min-height: 34px;
    text-transform: uppercase;
}

.header-row {
    align-items: center;
    display: flex;
    justify-content: space-between;
    min-height: 88px;
}

.brand {
    display: inline-flex;
    flex: 0 0 auto;
}

.brand img {
    height: 58px;
    object-fit: contain;
    object-position: left center;
    width: 188px;
}

.primary-navigation {
    align-items: center;
    display: flex;
    gap: 30px;
}

.primary-navigation ul {
    align-items: center;
    display: flex;
    gap: 25px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.primary-navigation ul a {
    color: var(--text);
    font-size: 0.87rem;
    font-weight: 780;
    padding-block: 10px;
    text-decoration: none;
}

.primary-navigation ul a:hover,
.primary-navigation ul a[aria-current="page"] {
    color: var(--accent-strong);
}

.header-referral {
    min-height: 46px;
    padding-inline: 18px;
}

.menu-toggle {
    align-items: center;
    background: var(--white);
    border: 2px solid var(--forest);
    color: var(--forest);
    display: none;
    gap: 9px;
    min-height: 44px;
    padding: 8px 12px;
}

.menu-toggle__label {
    font-size: 0.82rem;
    font-weight: 800;
}

.menu-toggle__lines,
.menu-toggle__lines::before,
.menu-toggle__lines::after {
    background: currentColor;
    content: "";
    display: block;
    height: 2px;
    transition: transform 160ms ease;
    width: 20px;
}

.menu-toggle__lines {
    position: relative;
}

.menu-toggle__lines::before {
    left: 0;
    position: absolute;
    top: -6px;
}

.menu-toggle__lines::after {
    left: 0;
    position: absolute;
    top: 6px;
}

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

.home-hero::after {
    background: var(--sand);
    content: "";
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    width: 29%;
}

.home-hero__layout {
    align-items: center;
    display: grid;
    gap: clamp(50px, 7vw, 92px);
    grid-template-columns: minmax(0, 0.98fr) minmax(430px, 1.02fr);
    min-height: 790px;
    padding-block: clamp(70px, 8vw, 110px);
    position: relative;
    z-index: 1;
}

.home-hero h1 {
    color: var(--ink);
    font-family: var(--serif);
    font-size: clamp(3.45rem, 5.7vw, 6.55rem);
    font-weight: 600;
    font-kerning: normal;
    font-feature-settings: "kern" 1, "liga" 1;
    letter-spacing: -0.038em;
    line-height: 1.06;
    margin: 0;
    max-width: 10.4ch;
}

.home-hero h1 span {
    color: var(--accent-strong);
}

.home-hero__copy {
    color: var(--muted);
    font-size: clamp(1.05rem, 1.6vw, 1.24rem);
    line-height: 1.8;
    margin: 32px 0 0;
    max-width: 55ch;
}

.home-hero__visual {
    min-height: 650px;
    position: relative;
}

.home-hero__image {
    box-shadow: var(--shadow-large);
    height: 650px;
    object-fit: cover;
    object-position: center;
    width: 100%;
}

.home-hero__visual::before {
    border: 1px solid var(--accent);
    content: "";
    inset: -18px 18px 18px -18px;
    pointer-events: none;
    position: absolute;
    z-index: -1;
}

.home-hero__statement {
    background: var(--forest);
    bottom: -22px;
    color: var(--white);
    left: -56px;
    border-left: 5px solid var(--accent);
    padding: 28px 30px;
    position: absolute;
    width: min(385px, 82%);
}

.hero-principles {
    border-top: 1px solid var(--line);
    display: grid;
    gap: 0;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin: 46px 0 0;
    max-width: 620px;
}

.hero-principles div {
    border-right: 1px solid var(--line);
    padding: 17px 18px 0 0;
}

.hero-principles div + div {
    padding-left: 18px;
}

.hero-principles div:last-child {
    border-right: 0;
}

.hero-principles dt {
    color: var(--accent-strong);
    font-family: var(--mono);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
}

.hero-principles dd {
    color: var(--text);
    font-size: 0.76rem;
    font-weight: 750;
    line-height: 1.45;
    margin: 8px 0 0;
}

.home-hero__statement span {
    color: #f1b49e;
    display: block;
    font-family: var(--serif);
    font-size: 1.4rem;
    margin-bottom: 9px;
}

.home-hero__statement strong {
    display: block;
    font-size: 0.9rem;
    line-height: 1.55;
}

.intro-editorial {
    align-items: start;
    display: grid;
    gap: clamp(54px, 8vw, 110px);
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
}

.editorial-quote {
    border-left: 3px solid var(--accent);
    color: var(--ink);
    font-family: var(--serif);
    font-size: clamp(1.65rem, 2.8vw, 2.7rem);
    line-height: 1.35;
    margin: 0;
    padding-left: 28px;
}

.feature-image {
    margin: clamp(56px, 8vw, 94px) 0 0 auto;
    max-width: 980px;
    overflow: hidden;
    position: relative;
}

.feature-image img {
    aspect-ratio: 16 / 9;
    object-fit: cover;
    width: 100%;
}

.feature-image figcaption {
    background: var(--white);
    bottom: 0;
    color: var(--muted);
    font-size: 0.78rem;
    left: 0;
    padding: 10px 14px;
    position: absolute;
}

.services-intro {
    align-items: end;
    display: grid;
    gap: 50px;
    grid-template-columns: 1fr 0.7fr;
}

.services-intro .lead {
    margin: 0;
}

.service-list {
    border-top: 1px solid var(--line);
    margin-top: 58px;
}

.service-row {
    align-items: center;
    border-bottom: 1px solid var(--line);
    display: grid;
    gap: 26px;
    grid-template-columns: 94px 46px minmax(210px, 0.72fr) minmax(0, 1.28fr) auto;
    min-height: 170px;
    padding-block: 24px;
}

.service-row__icon {
    width: 86px;
}

.service-icon {
    height: auto;
    width: 100%;
}

.service-row__number {
    color: var(--accent-strong);
    font-family: var(--serif);
    font-size: 1.25rem;
}

.service-row h3 {
    color: var(--ink);
    font-family: var(--serif);
    font-size: clamp(1.55rem, 2.4vw, 2.25rem);
    line-height: 1.1;
    margin: 0;
}

.service-row p {
    color: var(--muted);
    font-size: 0.94rem;
    margin: 0;
}

.service-row a {
    align-items: center;
    border: 1px solid var(--forest);
    color: var(--forest);
    display: inline-flex;
    font-size: 0.8rem;
    font-weight: 850;
    justify-content: center;
    min-height: 46px;
    padding: 8px 14px;
    text-decoration: none;
}

.service-row a:hover {
    background: var(--forest);
    color: var(--white);
}

.story-mosaic {
    display: grid;
    gap: 18px;
    grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
    margin-top: clamp(58px, 8vw, 92px);
}

.story-mosaic figure {
    margin: 0;
    overflow: hidden;
}

.story-mosaic__wide {
    grid-row: span 2;
}

.story-mosaic img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.story-mosaic__wide img {
    min-height: 620px;
}

.story-mosaic__small img {
    min-height: 300px;
}

.culture-panel {
    background: var(--forest-strong);
    color: var(--white);
    min-height: 540px;
    overflow: hidden;
    position: relative;
}

.culture-panel__art {
    height: 720px;
    opacity: 0.34;
    position: absolute;
    right: -80px;
    top: -90px;
    width: 760px;
}

.culture-panel__art img {
    height: 100%;
    object-fit: contain;
    width: 100%;
}

.culture-panel__content {
    align-items: center;
    display: flex;
    min-height: 540px;
    position: relative;
    z-index: 1;
}

.culture-panel__copy {
    max-width: 710px;
    padding-block: 80px;
}

.culture-panel__copy h2 {
    color: var(--white);
    font-family: var(--serif);
    font-size: clamp(2.7rem, 5vw, 5.2rem);
    font-weight: 600;
    letter-spacing: -0.045em;
    line-height: 1.04;
    margin: 0;
}

.culture-panel__copy p {
    color: #dbe6e1;
    font-size: clamp(1.05rem, 1.8vw, 1.3rem);
    line-height: 1.8;
    margin: 28px 0 0;
    max-width: 58ch;
}

.process-grid {
    counter-reset: process;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 56px;
}

.process-step {
    border-left: 1px solid rgba(255, 255, 255, 0.28);
    counter-increment: process;
    min-height: 250px;
    padding: 0 28px 20px;
}

.process-step::before {
    color: #f1b49e;
    content: "0" counter(process);
    display: block;
    font-family: var(--serif);
    font-size: 1.3rem;
    margin-bottom: 60px;
}

.process-step h3 {
    color: var(--white);
    font-family: var(--serif);
    font-size: 1.55rem;
    margin: 0 0 12px;
}

.process-step p {
    color: #dbe6e1;
    font-size: 0.9rem;
    margin: 0;
}

.values-grid {
    display: grid;
    gap: 1px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 54px;
}

.value-card {
    background: var(--white);
    min-height: 285px;
    padding: 30px;
}

.value-card__number {
    color: var(--accent-strong);
    display: block;
    font-family: var(--serif);
    font-size: 1.3rem;
    margin-bottom: 66px;
}

.value-card h3 {
    color: var(--ink);
    font-family: var(--serif);
    font-size: 1.5rem;
    margin: 0 0 12px;
}

.value-card p {
    color: var(--muted);
    font-size: 0.9rem;
    margin: 0;
}

.page-hero {
    background: var(--sage);
    border-bottom: 1px solid var(--line);
    padding-block: clamp(82px, 10vw, 132px);
}

.page-hero__layout {
    align-items: start;
    display: grid;
    gap: 54px;
    grid-template-columns: minmax(0, 1fr) 260px;
}

.page-hero h1 {
    color: var(--ink);
    font-family: var(--serif);
    font-size: clamp(3rem, 6vw, 6.2rem);
    font-weight: 600;
    letter-spacing: -0.04em;
    font-kerning: normal;
    line-height: 1.06;
    margin: 0;
    max-width: 12ch;
}

.page-hero p {
    color: var(--muted);
    font-size: clamp(1.05rem, 1.7vw, 1.25rem);
    margin: 28px 0 0;
    max-width: 62ch;
}

.page-hero__mark {
    border-left: 1px solid var(--forest);
    color: var(--forest);
    font-family: var(--serif);
    font-size: 4.8rem;
    line-height: 1;
    padding-left: 35px;
    text-align: right;
}

.breadcrumb {
    align-items: center;
    color: var(--muted);
    display: flex;
    font-size: 0.75rem;
    font-weight: 750;
    gap: 9px;
    margin-bottom: 24px;
}

.breadcrumb a {
    color: inherit;
}

.prose {
    color: var(--text);
    font-size: 1.04rem;
    line-height: 1.85;
}

.prose h2,
.prose h3 {
    color: var(--ink);
    font-family: var(--serif);
    line-height: 1.1;
}

.prose h2 {
    font-size: clamp(2rem, 4vw, 3.25rem);
    margin: 1.7em 0 0.6em;
}

.prose h3 {
    font-size: 1.55rem;
    margin: 1.6em 0 0.5em;
}

.prose > :first-child {
    margin-top: 0;
}

.prose > :last-child {
    margin-bottom: 0;
}

.prose a {
    color: var(--accent-strong);
}

.split-layout {
    align-items: start;
    display: grid;
    gap: clamp(52px, 8vw, 110px);
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.split-layout--image {
    grid-template-columns: minmax(330px, 0.86fr) minmax(0, 1.14fr);
}

.split-image {
    margin: 0;
    overflow: hidden;
}

.split-image img {
    height: 100%;
    min-height: 560px;
    object-fit: cover;
    width: 100%;
}

.statement-box {
    background: var(--forest);
    color: var(--white);
    padding: clamp(36px, 5vw, 64px);
}

.statement-box h2 {
    color: var(--white);
    font-family: var(--serif);
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 1.05;
    margin: 0;
}

.statement-box p {
    color: #dbe6e1;
}

.service-feature-grid {
    display: grid;
    gap: 22px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 54px;
}

.service-feature {
    background: var(--white);
    border: 1px solid var(--line);
    display: flex;
    flex-direction: column;
    min-height: 100%;
    position: relative;
    transition: box-shadow 180ms ease, transform 180ms ease;
}

.service-feature:hover {
    box-shadow: 9px 9px 0 var(--sage);
    transform: translate(-3px, -3px);
}

.service-feature__image {
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.service-feature__image img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.service-feature__body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 28px;
}

.service-feature__meta {
    align-items: flex-start;
    display: flex;
    justify-content: space-between;
    margin-top: -72px;
    pointer-events: none;
    position: relative;
}

.service-feature__meta .service-icon {
    background: var(--white);
    border: 1px solid var(--line);
    padding: 7px;
    width: 88px;
}

.service-feature__number {
    color: var(--accent-strong);
    font-family: var(--serif);
    font-size: 1.15rem;
    background: var(--white);
    padding: 6px 8px;
}

.service-feature h2,
.service-feature h3 {
    color: var(--ink);
    font-family: var(--serif);
    font-size: 1.55rem;
    line-height: 1.15;
    margin: 22px 0 12px;
}

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

.service-feature .text-link {
    margin-top: auto;
    padding-top: 24px;
}

.service-page-layout {
    align-items: start;
    display: grid;
    gap: clamp(50px, 8vw, 100px);
    grid-template-columns: minmax(0, 1.16fr) minmax(300px, 0.58fr);
}

.service-page-media {
    margin: 0 0 50px;
    overflow: hidden;
}

.service-page-media img {
    height: clamp(360px, 42vw, 540px);
    object-fit: cover;
    width: 100%;
}

.service-detail-heading {
    align-items: center;
    display: grid;
    gap: 24px;
    grid-template-columns: 96px minmax(0, 1fr);
    margin-bottom: 30px;
}

.service-detail-heading .service-icon {
    width: 96px;
}

.service-detail-heading h2 {
    margin: 0;
}

.service-aside {
    background: var(--forest);
    color: var(--white);
    padding: 34px;
    position: sticky;
    top: 150px;
}

.service-aside p {
    color: #dbe6e1;
    font-size: 0.86rem;
}

.decision-section {
    align-items: start;
    display: grid;
    gap: clamp(54px, 8vw, 100px);
    grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
}

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

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

.decision-card,
.question-card {
    background: var(--paper);
    border: 1px solid var(--line);
    min-height: 190px;
    padding: 28px;
    position: relative;
}

.decision-card::after,
.question-card::after {
    background: var(--sage);
    content: "";
    inset: 8px -8px -8px 8px;
    pointer-events: none;
    position: absolute;
    z-index: -1;
}

.decision-card span,
.question-card span {
    color: var(--accent-strong);
    display: block;
    font-family: var(--mono);
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.decision-card h3,
.question-card h2,
.question-card h3 {
    color: var(--ink);
    font-family: var(--serif);
    font-size: 1.55rem;
    line-height: 1.2;
    margin: 22px 0 10px;
}

.decision-card p,
.question-card p {
    color: var(--muted);
    font-size: 0.9rem;
    margin: 14px 0 0;
}

.service-aside h2 {
    color: var(--white);
    font-family: var(--serif);
    font-size: 1.7rem;
    margin: 0;
}

.check-list {
    list-style: none;
    margin: 28px 0 34px;
    padding: 0;
}

.check-list li {
    border-top: 1px solid rgba(255, 255, 255, 0.24);
    padding: 14px 0 14px 28px;
    position: relative;
}

.check-list li::before {
    color: #f1b49e;
    content: "✓";
    left: 0;
    position: absolute;
    top: 14px;
}

.ndis-visual {
    border: 1px solid var(--line);
    margin: 0 0 clamp(58px, 8vw, 94px);
    overflow: hidden;
}

.ndis-visual img {
    width: 100%;
}

.faq-list {
    border-top: 1px solid var(--line);
}

.faq-item {
    border-bottom: 1px solid var(--line);
}

.faq-item summary {
    color: var(--ink);
    cursor: pointer;
    font-family: var(--serif);
    font-size: clamp(1.2rem, 2vw, 1.55rem);
    font-weight: 600;
    list-style: none;
    min-height: 56px;
    padding: 24px 50px 24px 0;
    position: relative;
}

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

.faq-item summary::after {
    color: var(--accent-strong);
    content: "+";
    font-family: var(--sans);
    font-size: 1.6rem;
    position: absolute;
    right: 4px;
    top: 18px;
}

.faq-item[open] summary::after {
    content: "−";
}

.faq-item p {
    color: var(--muted);
    margin: 0;
    max-width: 72ch;
    padding: 0 0 26px;
}

.form-layout {
    align-items: start;
    display: grid;
    gap: clamp(52px, 8vw, 104px);
    grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
}

.form-intro {
    position: sticky;
    top: 150px;
}

.form-intro__image {
    margin: 42px 0 0;
    overflow: hidden;
}

.form-intro__image img {
    aspect-ratio: 4 / 3;
    object-fit: cover;
    width: 100%;
}

.contact-detail {
    border-top: 1px solid var(--line);
    margin-top: 34px;
    padding-top: 24px;
}

.contact-detail strong {
    color: var(--ink);
    display: block;
    font-size: 0.8rem;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.protected-email__fallback {
    color: var(--muted);
}

.site-form {
    background: var(--white);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-small);
    padding: clamp(30px, 5vw, 54px);
    position: relative;
}

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

.field {
    margin-bottom: 22px;
}

.field label {
    color: var(--ink);
    display: block;
    font-size: 0.86rem;
    font-weight: 800;
    margin-bottom: 7px;
}

.field__optional {
    color: var(--muted);
    font-weight: 500;
}

.field input,
.field select,
.field textarea {
    background: var(--white);
    border: 1px solid #9ca9a4;
    border-radius: 4px;
    color: var(--text);
    min-height: 50px;
    padding: 11px 13px;
    width: 100%;
}

.field textarea {
    min-height: 170px;
    resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    border-color: var(--forest);
    box-shadow: 0 0 0 7px var(--ink);
    outline: 3px solid var(--white);
    outline-offset: 2px;
}

.field__hint,
.form-privacy {
    color: var(--muted);
    font-size: 0.78rem;
    margin: 8px 0 0;
}

.check-field {
    align-items: flex-start;
    display: flex;
    gap: 11px;
    margin: 4px 0 28px;
}

.check-field input {
    flex: 0 0 auto;
    height: 20px;
    margin-top: 3px;
    width: 20px;
}

.check-field label {
    font-size: 0.88rem;
}

.antibot-field {
    height: 1px;
    left: -10000px;
    overflow: hidden;
    position: absolute;
    top: auto;
    width: 1px;
}

.form-alert {
    border-left: 4px solid;
    margin-bottom: 24px;
    padding: 14px 17px;
}

.form-alert--success {
    background: #eaf6ef;
    border-color: var(--success);
    color: #174d35;
}

.form-alert--error {
    background: #fff0f0;
    border-color: var(--error);
    color: #762020;
}

.legal-note {
    background: var(--sage);
    border-left: 4px solid var(--forest);
    margin-block: 36px;
    padding: 22px 24px;
}

.cta-panel {
    align-items: center;
    background: var(--accent);
    color: var(--white);
    display: grid;
    gap: 40px;
    grid-template-columns: minmax(0, 1fr) auto;
    padding: clamp(40px, 6vw, 72px);
}

.cta-panel h2 {
    color: var(--white);
    font-family: var(--serif);
    font-size: clamp(2.2rem, 4vw, 4rem);
    line-height: 1;
    margin: 0;
}

.cta-panel p {
    color: #fff3ee;
    margin: 18px 0 0;
}

.site-footer {
    background: var(--ink);
    color: var(--white);
}

.acknowledgement {
    background: var(--forest-strong);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.acknowledgement__layout {
    align-items: center;
    display: grid;
    gap: 46px;
    grid-template-columns: 250px minmax(0, 1fr);
    padding-block: 48px;
}

.acknowledgement img {
    max-height: 72px;
    object-fit: contain;
    object-position: left center;
}

.acknowledgement h2 {
    color: var(--white);
    font-family: var(--serif);
    font-size: 1.55rem;
    margin: 0 0 8px;
}

.acknowledgement p {
    color: #cbd7d2;
    font-size: 0.88rem;
    line-height: 1.7;
    margin: 0;
    max-width: 92ch;
}

.footer-main {
    display: grid;
    gap: 70px;
    grid-template-columns: minmax(0, 1.35fr) repeat(2, minmax(180px, 0.55fr));
    padding-block: 74px;
}

.footer-logo {
    background: var(--white);
    display: inline-flex;
    padding: 11px 16px;
}

.footer-logo img {
    height: auto;
    max-width: 190px;
}

.footer-brand p {
    color: #b9c7c1;
    margin: 28px 0 0;
    max-width: 50ch;
}

.footer-column h2 {
    color: var(--white);
    font-family: var(--serif);
    font-size: 1.35rem;
    margin: 0 0 22px;
}

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

.footer-column li + li {
    margin-top: 10px;
}

.footer-column a,
.footer-column span {
    color: #cbd7d2;
    font-size: 0.88rem;
    text-decoration: none;
}

.footer-column a {
    align-items: center;
    display: inline-flex;
    min-height: 28px;
}

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

.footer-bottom {
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.17);
    color: #aebdb7;
    display: flex;
    font-size: 0.76rem;
    justify-content: space-between;
    min-height: 68px;
}

.footer-bottom span:last-child {
    display: flex;
    gap: 18px;
}

.footer-bottom a {
    color: #dbe6e1;
}

@media (max-width: 1080px) {
    .menu-toggle {
        display: inline-flex;
    }

    .primary-navigation {
        align-items: stretch;
        background: var(--white);
        border-top: 1px solid var(--line);
        box-shadow: var(--shadow-small);
        display: none;
        flex-direction: column;
        gap: 18px;
        left: 0;
        padding: 26px 28px 32px;
        position: absolute;
        top: 100%;
        width: 100%;
    }

    .menu-open .primary-navigation {
        display: flex;
    }

    .primary-navigation ul {
        align-items: stretch;
        flex-direction: column;
        gap: 0;
    }

    .primary-navigation li {
        border-bottom: 1px solid var(--line);
    }

    .primary-navigation ul a {
        display: block;
        font-size: 1rem;
        padding-block: 13px;
    }

    .header-referral {
        width: 100%;
    }

    .home-hero::after {
        display: none;
    }

    .home-hero__layout {
        grid-template-columns: 1fr;
    }

    .home-hero__visual {
        max-width: 820px;
    }

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

    .service-row {
        grid-template-columns: 82px 42px minmax(200px, 0.8fr) minmax(0, 1.2fr);
    }

    .service-row a {
        grid-column: 3 / -1;
        justify-self: start;
    }

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

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

    .process-step {
        border-bottom: 1px solid rgba(255, 255, 255, 0.24);
        min-height: 220px;
        padding-block: 28px;
    }

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

    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 760px) {
    .container,
    .narrow {
        padding-inline: 20px;
    }

    .trust-bar__inner {
        font-size: 0.67rem;
        justify-content: center;
        letter-spacing: 0.09em;
        min-height: 30px;
    }

    .trust-bar__inner span:last-child {
        display: none;
    }

    .header-row {
        min-height: 68px;
    }

    .brand img {
        height: 42px;
        width: 136px;
    }

    .menu-toggle {
        min-height: 44px;
        padding: 7px 10px;
    }

    .menu-toggle__label {
        font-size: 0.75rem;
    }

    .home-hero__layout {
        min-height: auto;
        padding-block: 42px 62px;
    }

    .typewriter-label {
        font-size: clamp(0.59rem, 2.65vw, 0.68rem);
        gap: 6px;
        letter-spacing: 0.055em;
        margin-bottom: 25px;
        padding-bottom: 7px;
    }

    .home-hero h1 {
        font-size: clamp(2.55rem, 12vw, 3.15rem);
        letter-spacing: -0.03em;
        line-height: 1.01;
        max-width: 100%;
        text-wrap: balance;
    }

    .home-hero__copy {
        font-size: 0.98rem;
        line-height: 1.65;
        margin-top: 24px;
    }

    .home-hero .actions {
        display: grid;
        gap: 10px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        margin-top: 26px;
    }

    .home-hero .actions .button {
        font-size: 0.76rem;
        line-height: 1.25;
        min-height: 50px;
        padding: 9px 10px;
        text-align: center;
    }

    .hero-principles {
        display: none;
    }

    .home-hero__visual {
        min-height: auto;
    }

    .home-hero__image {
        aspect-ratio: 4 / 3;
        height: auto;
        object-position: 52% center;
    }

    .home-hero__statement {
        bottom: auto;
        border-left-width: 4px;
        left: auto;
        padding: 22px 24px;
        position: relative;
        width: 100%;
    }

    .home-hero__visual::before {
        inset: -10px 10px 10px -10px;
    }

    .intro-editorial,
    .services-intro,
    .split-layout,
    .split-layout--image,
    .service-page-layout,
    .form-layout,
    .page-hero__layout,
    .cta-panel {
        grid-template-columns: 1fr;
    }

    .decision-section,
    .question-grid {
        grid-template-columns: 1fr;
    }

    .page-hero__mark {
        border-left: 0;
        border-top: 1px solid var(--forest);
        padding: 24px 0 0;
        text-align: left;
    }

    .story-mosaic {
        grid-template-columns: 1fr;
    }

    .story-mosaic__wide {
        grid-row: auto;
    }

    .story-mosaic__wide img,
    .story-mosaic__small img {
        min-height: auto;
    }

    .service-row {
        align-items: start;
        gap: 10px 16px;
        grid-template-columns: 74px minmax(0, 1fr);
        padding-block: 28px;
    }

    .service-row__icon {
        grid-row: 1 / span 4;
        width: 72px;
    }

    .service-row__number,
    .service-row h3,
    .service-row p,
    .service-row a {
        grid-column: 2;
    }

    .service-row h3 {
        margin-top: 2px;
    }

    .service-row a {
        justify-self: start;
        margin-top: 8px;
    }

    .service-detail-heading {
        grid-template-columns: 74px minmax(0, 1fr);
    }

    .service-detail-heading .service-icon {
        width: 74px;
    }

    .culture-panel__art {
        opacity: 0.2;
        right: -240px;
    }

    .service-feature-grid,
    .values-grid,
    .process-grid,
    .form-grid {
        grid-template-columns: 1fr;
    }

    .process-step {
        border-left: 0;
    }

    .form-intro,
    .service-aside {
        position: static;
    }

    .split-image img {
        min-height: auto;
    }

    .acknowledgement__layout {
        gap: 28px;
        grid-template-columns: 1fr;
    }

    .acknowledgement img {
        max-width: 260px;
    }

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

    .footer-brand {
        grid-column: auto;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
        justify-content: center;
        padding-block: 18px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

.button:focus-visible,
.menu-toggle:focus-visible,
.primary-navigation a:focus-visible,
.faq-item summary:focus-visible,
.footer-column a:focus-visible,
.footer-bottom a:focus-visible,
.field input:focus-visible,
.field select:focus-visible,
.field textarea:focus-visible {
    box-shadow: 0 0 0 7px var(--ink);
    outline: 3px solid var(--white);
    outline-offset: 2px;
}
