:root {
    --background: #fff7ee;
    --foreground: #21413c;
    --surface: #ffffff;
    --line: rgba(33, 65, 60, 0.1);
    --anchor-offset: clamp(6.75rem, 6.25rem + 1vw, 7.5rem);
    --font-sans: "Manrope", sans-serif;
    --font-display: "Outfit", sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

[id] {
    scroll-margin-top: var(--anchor-offset);
}

body {
    margin: 0;
    background: var(--background);
    color: var(--foreground);
    font-family: var(--font-sans);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: inherit;
}

a {
    color: inherit;
    text-decoration: none;
}

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

button,
input,
textarea {
    font: inherit;
}

textarea {
    resize: vertical;
}

::selection {
    background: rgba(244, 126, 99, 0.28);
}

.page-shell {
    position: relative;
    isolation: isolate;
    min-height: 100vh;
    background: linear-gradient(180deg, #fff8f1 0%, #fffbf6 42%, #fffdf9 100%);
}

.page-shell::before {
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    content: "";
    background:
        radial-gradient(64rem 34rem at -6% 4%, rgba(255, 223, 169, 0.38), transparent 72%),
        radial-gradient(58rem 32rem at 104% 10%, rgba(193, 239, 226, 0.34), transparent 72%),
        radial-gradient(48rem 26rem at 8% 30%, rgba(222, 231, 255, 0.28), transparent 72%),
        radial-gradient(52rem 28rem at 96% 38%, rgba(255, 208, 195, 0.3), transparent 74%),
        radial-gradient(56rem 28rem at 10% 62%, rgba(200, 239, 229, 0.26), transparent 74%),
        radial-gradient(58rem 30rem at 98% 80%, rgba(255, 226, 174, 0.26), transparent 74%),
        radial-gradient(44rem 24rem at 18% 94%, rgba(214, 227, 255, 0.24), transparent 72%),
        radial-gradient(40rem 22rem at 58% 50%, rgba(255, 238, 210, 0.18), transparent 72%),
        radial-gradient(36rem 18rem at 58% 72%, rgba(230, 246, 241, 0.16), transparent 72%),
        linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.14) 18%, rgba(255, 255, 255, 0) 44%, rgba(255, 255, 255, 0.08) 68%, rgba(255, 255, 255, 0) 100%);
}

.page-shell::after {
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    content: "";
    background:
        linear-gradient(112deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.18) 30%, rgba(255, 255, 255, 0) 56%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0) 22%, rgba(255, 255, 255, 0.04) 52%, rgba(255, 255, 255, 0) 78%, rgba(255, 255, 255, 0.03) 100%);
}

.content-shell {
    width: 100%;
    max-width: 80rem;
    margin: 0 auto;
    padding: 8rem 1.25rem 4rem;
}

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 50;
    width: 100%;
}

.header-wrap {
    max-width: 80rem;
    margin: 0 auto;
    padding: 1rem 1rem 0;
}

.nav-shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(226, 236, 233, 0.95);
    border-radius: 999px;
    box-shadow: 0 20px 48px rgba(33, 65, 60, 0.1);
    backdrop-filter: blur(20px);
}

.brand-button {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    min-width: 0;
    padding: 0;
    color: inherit;
    text-align: left;
    cursor: pointer;
    background: transparent;
    border: 0;
}

.brand-logo {
    position: relative;
    display: inline-flex;
    flex: 0 0 auto;
    width: 3rem;
    height: 3rem;
    overflow: hidden;
    background: #fff;
    border: 1px solid #dce7e2;
    border-radius: 999px;
    box-shadow: 0 8px 25px rgba(33, 65, 60, 0.1);
}

.brand-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.brand-name {
    display: block;
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 600;
    color: #21413c;
    text-transform: uppercase;
    letter-spacing: 0.24em;
}

.brand-services {
    display: block;
    margin-top: 0.25rem;
    font-size: 0.75rem;
    color: #6a7c76;
}

.desktop-nav {
    display: none;
    align-items: center;
    gap: 1.5rem;
    font-size: 0.875rem;
    color: #47615c;
}

.desktop-nav a {
    transition: color 180ms ease;
}

.desktop-nav a:hover {
    color: #21413c;
}

.nav-cta,
.mobile-cta,
.button-primary,
.button-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    font-size: 0.875rem;
    font-weight: 600;
    line-height: 1.2;
}

.nav-cta,
.mobile-cta,
.button-primary {
    color: #2c2723;
    background: #f47e63;
}

.nav-cta {
    padding: 0.5rem 1rem;
}

.mobile-cta {
    flex: 0 0 auto;
    padding: 0.5rem 1rem;
}

.hero-section {
    display: grid;
    gap: 2.5rem;
    padding-bottom: 4rem;
}

.hero-eyebrow {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    max-width: 100%;
    gap: 0.25rem 0.5rem;
    font-size: 0.62rem;
    letter-spacing: 0.14em;
}

.hero-eyebrow span:first-child {
    color: #21413c;
}

.hero-eyebrow span:nth-child(2) {
    color: #f47e63;
}

.eyebrow {
    margin: 0;
    font-size: 0.75rem;
    font-weight: 600;
    color: #6a7c76;
    text-transform: uppercase;
    letter-spacing: 0.22em;
}

.hero-copy h1 {
    max-width: 54rem;
    margin: 1.5rem 0 0;
    font-family: var(--font-display);
    font-size: 2.1rem;
    font-weight: 300;
    line-height: 0.95;
    color: #21413c;
}

.hero-copy h1 span {
    color: #f47e63;
}

.hero-lead {
    max-width: 42rem;
    margin: 1.5rem 0 0;
    font-size: 1.125rem;
    line-height: 2;
    color: #56706b;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.button-primary {
    padding: 0.85rem 1.5rem;
    transition: transform 180ms ease;
}

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

.button-secondary {
    padding: 0.85rem 1.5rem;
    color: #21413c;
    background: #fff;
    border: 1px solid #dde7e4;
}

.hero-note {
    margin: 1.5rem 0 0;
    font-size: 0.875rem;
    color: #7d8d88;
}

.hero-visual {
    position: relative;
    min-height: 43rem;
    overflow: hidden;
    border-radius: 3rem;
}

.photo-card,
.about-photo {
    position: relative;
    overflow: hidden;
    border-radius: 2.4rem;
}

.photo-card img,
.about-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-photo {
    position: absolute;
    inset: 2rem 0 0;
    height: auto;
}

.hero-photo img {
    object-fit: contain;
}

.photo-caption {
    position: absolute;
    inset: auto 0 0;
    padding: 4rem 1.25rem 1.25rem;
    background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.96));
}

.photo-caption p {
    display: inline-flex;
    max-width: 100%;
    margin: 0;
    padding: 0.55rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: #4a6460;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    background: rgba(255, 255, 255, 0.88);
    border-radius: 999px;
    box-shadow: 0 10px 20px rgba(33, 65, 60, 0.08);
}

.surface-card {
    border: 1px solid var(--line);
    box-shadow: 0 24px 60px rgba(33, 65, 60, 0.07);
}

.wash-panel {
    background: linear-gradient(180deg, rgba(252, 251, 248, 0.98), rgba(248, 251, 250, 0.96));
    border: 1px solid rgba(226, 236, 233, 0.92);
    box-shadow: 0 22px 55px rgba(33, 65, 60, 0.06);
}

.values-grid,
.card-grid,
.services-grid,
.audience-list,
.faq-list {
    display: grid;
    gap: 1rem;
}

.values-grid,
.section-grid,
.section-block,
.approach-layout,
.about-layout,
.faq-section {
    padding-bottom: 6rem;
}

.value-card {
    padding: 1.5rem;
    border-radius: 2rem;
}

.value-card h2,
.section-heading h2,
.sticky-intro h2,
.situation-card h3,
.service-card h3,
.audience-card h3,
.approach-panel h2,
.steps-panel h3,
.about-copy h2,
.faq-section h2,
.faq-item summary span:first-child,
.site-footer > div:first-child span:first-child {
    font-family: var(--font-display);
    font-weight: 300;
    color: #21413c;
}

.value-card h2 {
    margin: 0;
    font-size: 1.875rem;
    line-height: 1.1;
}

.value-card p,
.situation-card p,
.audience-card p {
    margin: 0.75rem 0 0;
    font-size: 1rem;
    line-height: 1.75;
    color: #4f6a66;
}

.tone-green {
    color: #456b65;
    background: #e9f6f2;
}

.tone-peach {
    color: #8a5a4c;
    background: #fff2e8;
}

.tone-blue {
    color: #5e6792;
    background: #eef2ff;
}

.tone-yellow {
    color: #7e6a2d;
    background: #fff4cf;
}

.section-grid {
    display: grid;
    gap: 2rem;
}

.sticky-intro h2,
.section-heading h2,
.approach-panel h2,
.about-copy h2,
.faq-section h2,
.contact-panel h2 {
    margin: 1rem 0 0;
    font-family: var(--font-display);
    font-size: 2.25rem;
    font-weight: 300;
    line-height: 1.15;
    color: #21413c;
}

.sticky-intro p:not(.eyebrow),
.section-heading > p,
.approach-panel > p,
.approach-content > p,
.contact-panel p {
    max-width: 34rem;
    margin: 1.25rem 0 0;
    font-size: 1rem;
    line-height: 2;
    color: #56706b;
}

.sticky-intro .italic {
    font-size: 0.875rem;
    font-style: italic;
    color: #7d8d88;
}

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

.situation-card {
    padding: 1.5rem;
    background: #fff;
    border-radius: 2rem;
}

.number-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    margin-bottom: 1.25rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #21413c;
    background: #eef5f3;
    border-radius: 999px;
}

.situation-card h3,
.service-card h3,
.audience-card h3 {
    max-width: 22rem;
    margin: 0;
    font-size: 1.5rem;
    line-height: 1.15;
}

.situation-card h3 {
    font-size: 1.25rem;
}

.section-heading {
    max-width: 48rem;
    margin-bottom: 2rem;
}

.split-heading {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: none;
}

.split-heading > p {
    max-width: 36rem;
}

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

.service-card {
    position: relative;
    overflow: hidden;
    padding: 1.75rem;
    border-radius: 2.4rem;
}

.service-green {
    background: #ddf4ee;
}

.service-yellow {
    background: #fff0d7;
}

.service-blue {
    background: #e6edff;
}

.service-dot {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    width: 5rem;
    height: 5rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 999px;
}

.service-content {
    position: relative;
    z-index: 1;
}

.service-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
}

.service-icon {
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.75);
    border-radius: 1.3rem;
}

.icon {
    width: 2.25rem;
    height: 2.25rem;
}

.service-badge {
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: #48605b;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    background: rgba(255, 255, 255, 0.55);
    border: 1px solid rgba(33, 65, 60, 0.1);
    border-radius: 999px;
}

.service-card h3 {
    margin-top: 1.5rem;
}

.service-card p {
    max-width: 42rem;
    margin: 1rem 0 0;
    line-height: 1.75;
    color: #39565b;
}

.service-card ul {
    display: grid;
    gap: 0.75rem;
    padding-left: 1.15rem;
    margin: 1.5rem 0 0;
    list-style: disc;
}

.service-card li {
    font-size: 0.875rem;
    line-height: 1.75;
    color: #435e5a;
}

.audience-layout {
    display: grid;
    gap: 1.5rem;
}

.audience-card {
    padding: 1.5rem;
    border-radius: 2rem;
}

.audience-white {
    background: #fff;
}

.audience-green {
    background: #f8fcfb;
}

.audience-yellow {
    background: #fffbf2;
}

.audience-photos {
    display: grid;
    gap: 1rem;
}

.audience-photo-single {
    aspect-ratio: 1.38;
}

.approach-layout {
    display: grid;
    gap: 1.5rem;
}

.approach-panel {
    position: relative;
    min-width: 0;
    overflow: hidden;
    padding: 2rem 1.5rem;
    background: #fff;
    border-radius: 2.6rem;
}

.shape-square,
.shape-circle {
    position: absolute;
    pointer-events: none;
}

.shape-square {
    top: 2rem;
    right: -2rem;
    width: 7rem;
    height: 7rem;
    background: #ffe3db;
    border-radius: 2rem;
}

.shape-circle {
    bottom: 2rem;
    left: 2rem;
    width: 5rem;
    height: 5rem;
    background: #ddf4ee;
    border-radius: 999px;
}

.approach-content {
    position: relative;
    z-index: 1;
}

.posture-box {
    margin-top: 2rem;
    padding: 1.5rem;
    color: #fff;
    background: #21413c;
    border-radius: 1.8rem;
}

.posture-box p:first-child {
    margin: 0;
    font-size: 0.75rem;
    font-weight: 600;
    color: #b9cfca;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.posture-box p:last-child {
    margin: 0.75rem 0 0;
    line-height: 2;
    color: #e6efec;
}

.steps-panel {
    min-width: 0;
    padding: 2rem 1.5rem;
    border-radius: 2.6rem;
}

.steps-panel ol {
    display: grid;
    gap: 1rem;
    padding: 0;
    margin: 0;
    list-style: none;
}

.steps-panel li {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    min-width: 0;
    padding: 1.25rem 1rem;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 1.7rem;
    box-shadow: 0 18px 40px rgba(33, 65, 60, 0.05);
}

.step-number {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #21413c;
    background: #eef5f3;
    border-radius: 999px;
}

.steps-panel h3 {
    margin: 0;
    font-size: 1.25rem;
    line-height: 1.15;
}

.steps-panel p {
    margin: 0.5rem 0 0;
    line-height: 1.75;
    color: #4c6662;
}

.about-layout {
    display: grid;
    gap: 1.5rem;
}

.about-side {
    display: grid;
    gap: 1.5rem;
    align-content: start;
}

.about-photo-card {
    padding: 0.75rem;
    overflow: hidden;
    background: #fff;
    border-radius: 2.6rem;
}

.about-photo {
    aspect-ratio: 4 / 3;
    border-radius: 2.1rem;
}

.about-copy {
    padding: 2rem 1.75rem;
    background: #fff;
    border-radius: 2.6rem;
}

.body-copy {
    display: grid;
    gap: 1.25rem;
    margin-top: 2rem;
    line-height: 2;
    color: #435e5a;
}

.body-copy p {
    margin: 0;
}

.about-sections {
    display: grid;
    gap: 1.5rem;
    margin-top: 2rem;
}

.about-text-block {
    padding-top: 1.5rem;
    border-top: 1px solid #e4ece9;
}

.about-text-block span {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: #7b908a;
    text-transform: uppercase;
    letter-spacing: 0.16em;
}

.about-text-block h3 {
    margin: 0;
    font-size: 1.2rem;
    line-height: 1.25;
    color: #21413c;
}

.about-text-block p {
    margin: 0.75rem 0 0;
    line-height: 1.8;
    color: #435e5a;
}

.about-text-block ul {
    display: grid;
    gap: 0.55rem;
    padding-left: 1.15rem;
    margin: 1rem 0 0;
    line-height: 1.7;
    color: #435e5a;
}

.about-timeline {
    padding: 1.5rem;
    background: #fff;
    border-radius: 2.4rem;
}

.timeline-kicker {
    margin: 0 0 1.25rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: #6a7c76;
    text-transform: uppercase;
    letter-spacing: 0.18em;
}

.about-timeline ol {
    display: grid;
    gap: 0;
    padding: 0;
    margin: 0;
    list-style: none;
}

.about-timeline li {
    position: relative;
    display: grid;
    grid-template-columns: 1rem 1fr;
    gap: 1rem;
    padding-bottom: 1.25rem;
}

.about-timeline li::before {
    position: absolute;
    top: 1.1rem;
    bottom: 0;
    left: 0.45rem;
    width: 1px;
    content: "";
    background: #dce7e2;
}

.about-timeline li:last-child {
    padding-bottom: 0;
}

.about-timeline li:last-child::before {
    display: none;
}

.timeline-marker {
    position: relative;
    z-index: 1;
    width: 0.9rem;
    height: 0.9rem;
    margin-top: 0.25rem;
    background: #f47d63;
    border: 3px solid #fff;
    border-radius: 999px;
    box-shadow: 0 0 0 1px #f0d5cc;
}

.timeline-period {
    display: block;
    margin-bottom: 0.25rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: #7b908a;
}

.about-timeline h3 {
    margin: 0;
    font-size: 1rem;
    line-height: 1.3;
    color: #21413c;
}

.about-timeline p {
    margin: 0.4rem 0 0;
    font-size: 0.875rem;
    line-height: 1.75;
    color: #435e5a;
}

.about-copy .button-primary {
    margin-top: 2rem;
}

.faq-wrap {
    max-width: 56rem;
    margin: 0 auto;
}

.centered {
    text-align: center;
}

.faq-list {
    margin-top: 2rem;
}

.faq-item {
    padding: 1.5rem 1.25rem;
    background: #fff;
    border-radius: 1.8rem;
}

.faq-item summary {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    cursor: pointer;
    list-style: none;
}

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

.faq-item summary span:first-child {
    max-width: 44rem;
    font-size: 1.25rem;
    line-height: 1.15;
}

.faq-plus {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    margin-top: 0.25rem;
    font-size: 1.125rem;
    color: #21413c;
    background: #eef5f3;
    border-radius: 999px;
    transition: transform 300ms ease;
}

.faq-item[open] .faq-plus {
    transform: rotate(45deg);
}

.faq-item p {
    max-width: 62ch;
    margin: 1.25rem 0 0;
    line-height: 2;
    color: #4f6a66;
}

.contact-section {
    padding-bottom: 3rem;
}

.contact-panel {
    position: relative;
    overflow: hidden;
    padding: 2rem 1.25rem;
    color: #1f2624;
    background: #f47d63;
    border-radius: 2.75rem;
}

.contact-glow {
    position: absolute;
    bottom: 0;
    left: -2rem;
    width: 10rem;
    height: 10rem;
    background: rgba(255, 241, 216, 0.7);
    border-radius: 999px;
    filter: blur(40px);
}

.contact-mark {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    width: 4rem;
    height: 4rem;
    border: 4px solid rgba(22, 55, 53, 0.25);
    border-radius: 1.4rem;
    transform: rotate(12deg);
}

.contact-layout {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 2rem;
}

.contact-panel h2 {
    margin-top: 0;
    color: #1f2624;
}

.contact-panel p {
    color: #4b2e28;
}

.contact-panel dl {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    padding-top: 2rem;
    margin: 2rem 0 0;
    border-top: 1px solid rgba(142, 81, 63, 0.2);
}

.contact-panel dt,
.field label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.18em;
}

.contact-panel dt {
    color: #8a4f40;
}

.contact-panel dd {
    margin: 0.5rem 0 0;
    color: #2e2521;
}

.obfuscated-email {
    padding: 0;
    font: inherit;
    color: inherit;
    cursor: pointer;
    background: transparent;
    border: 0;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 0.18em;
}

.contact-form {
    display: grid;
    gap: 1rem;
    min-width: 0;
    padding: 1.5rem 1.25rem;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 2rem;
    box-shadow: 0 18px 50px rgba(31, 38, 36, 0.12);
    backdrop-filter: blur(8px);
}

.field {
    display: grid;
    gap: 0.5rem;
}

.field label {
    color: #7c6056;
}

.field input,
.field textarea {
    width: 100%;
    padding: 0.85rem 1.25rem;
    font-size: 0.875rem;
    color: #21413c;
    background: #fff;
    border: 1px solid #e4ddd8;
    outline: none;
}

.field input {
    border-radius: 999px;
}

.field textarea {
    border-radius: 1.6rem;
}

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

.field input:focus,
.field textarea:focus {
    border-color: #f47d63;
}

.contact-form button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    background: #163735;
    border: 0;
    border-radius: 999px;
}

.site-footer {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 2.5rem 0;
    font-size: 0.875rem;
    color: #7d8d88;
    border-top: 1px solid #e8efec;
}

.site-footer > div {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.site-footer > div:first-child span:first-child {
    font-size: 1.5rem;
}

.site-footer > div:last-child {
    flex-flow: row wrap;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .content-shell {
        padding-right: 1.5rem;
        padding-left: 1.5rem;
    }

    .hero-copy h1 {
        font-size: 2.8rem;
    }

    .hero-actions {
        flex-direction: row;
    }

    .steps-panel li {
        flex-direction: row;
        padding-right: 1.25rem;
        padding-left: 1.25rem;
    }

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

@media (min-width: 768px) {
    .content-shell {
        padding-right: 2.5rem;
        padding-left: 2.5rem;
    }

    .header-wrap {
        padding-right: 2rem;
        padding-left: 2rem;
    }

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

    .audience-list {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .audience-photos {
        grid-template-columns: 1fr;
    }

    .approach-panel,
    .steps-panel {
        padding: 2.25rem;
    }

    .about-copy {
        padding: 2.25rem;
    }

    .contact-panel {
        padding: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .content-shell {
        padding-right: 3rem;
        padding-left: 3rem;
    }

    .desktop-nav {
        display: flex;
    }

    .mobile-cta {
        display: none;
    }

    .hero-section {
        display: flex;
        align-items: flex-start;
    }

    .hero-copy {
        flex: 1 1 0;
        min-width: 0;
    }

    .hero-copy h1 {
        max-width: none;
        font-size: 3.35rem;
    }

    .hero-lead {
        max-width: none;
    }

    .hero-visual {
        flex: 0 0 auto;
        width: min(48%, 35rem);
        min-height: 0;
        aspect-ratio: 1.04;
    }

    .hero-photo {
        inset: 0;
        height: 100%;
    }

    .section-grid {
        grid-template-columns: 0.82fr 1.18fr;
        align-items: start;
    }

    .sticky-intro {
        position: sticky;
        top: 7rem;
    }

    .split-heading {
        flex-direction: row;
        align-items: end;
        justify-content: space-between;
    }

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

    .audience-layout {
        grid-template-columns: 1.02fr 0.98fr;
        align-items: center;
    }

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

    .approach-layout {
        grid-template-columns: 0.92fr 1.08fr;
        align-items: stretch;
    }

    .about-layout {
        grid-template-columns: minmax(0, 1.12fr) minmax(20rem, 0.88fr);
        align-items: start;
    }

    .contact-layout {
        grid-template-columns: 1.05fr 0.95fr;
        align-items: start;
    }

    .site-footer {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .site-footer > div:last-child {
        align-self: end;
    }
}

@media (min-width: 1280px) {
    .values-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}
