@font-face {
    font-family: "Made Tommy";
    src: url("/fonts/MADE%20TOMMY%20RegularPW.otf") format("opentype");
    font-display: swap;
    font-style: normal;
    font-weight: 400;
}

@font-face {
    font-family: "Made Tommy";
    src: url("/fonts/MADE%20TOMMY%20MediumPW.otf") format("opentype");
    font-display: swap;
    font-style: normal;
    font-weight: 600;
}

@font-face {
    font-family: "Made Tommy";
    src: url("/fonts/MADE%20TOMMY%20ExtraBoldPW.otf") format("opentype");
    font-display: swap;
    font-style: normal;
    font-weight: 800;
}

:root {
    color-scheme: light;
    --ink: #171813;
    --muted: #606159;
    --paper: #f3efe7;
    --paper-deep: #e9e3d8;
    --white: #fffdf8;
    --orange: #e85f2c;
    --orange-dark: #ca4618;
    --sage: #a9b99c;
    --blue: #233b68;
    --line: rgba(23, 24, 19, 0.16);
    --line-light: rgba(255, 253, 248, 0.2);
    --radius: 8px;
    --shadow: 0 26px 70px rgba(30, 26, 19, 0.13);
}

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

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

body {
    margin: 0;
    overflow-x: hidden;
    color: var(--ink);
    background: var(--paper);
    font-family: "Made Tommy", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.55;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

body::before {
    position: fixed;
    z-index: -1;
    inset: 0;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.18'/%3E%3C/svg%3E");
    content: "";
    opacity: 0.025;
}

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

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

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

svg {
    display: block;
}

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

.shell {
    width: min(1240px, calc(100% - 64px));
    margin-inline: auto;
}

.skip-link {
    position: fixed;
    z-index: 100;
    top: 12px;
    left: 12px;
    padding: 10px 14px;
    color: var(--white);
    background: var(--ink);
    transform: translateY(-160%);
}

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

.site-header {
    position: sticky;
    z-index: 30;
    top: 0;
    border-bottom: 1px solid var(--line);
    background: rgba(243, 239, 231, 0.92);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.nav {
    display: grid;
    min-height: 76px;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 30px;
}

.wordmark {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    gap: 11px;
    font-size: 19px;
    font-weight: 800;
    letter-spacing: -0.035em;
}

.wordmark-mark {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border-radius: 50%;
    color: var(--white);
    background: var(--ink);
    font-size: 15px;
    line-height: 1;
    letter-spacing: -0.08em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    color: #494a43;
    font-size: 14px;
    font-weight: 600;
}

.nav-links a,
.footer-links a {
    position: relative;
}

.nav-links a::after,
.footer-links a::after {
    position: absolute;
    right: 0;
    bottom: -3px;
    left: 0;
    height: 1px;
    background: currentColor;
    content: "";
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 180ms ease;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after,
.footer-links a:hover::after,
.footer-links a:focus-visible::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-cta {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    justify-self: end;
    gap: 11px;
    border: 1px solid var(--ink);
    border-radius: 999px;
    padding: 8px 16px 8px 18px;
    font-size: 13px;
    font-weight: 800;
    transition: color 180ms ease, background 180ms ease;
}

.nav-cta svg,
.button svg {
    width: 18px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.7;
}

.nav-cta:hover,
.nav-cta:focus-visible {
    color: var(--white);
    background: var(--ink);
}

.mobile-menu {
    position: relative;
    display: none;
    justify-self: end;
}

.mobile-menu summary {
    display: grid;
    width: 42px;
    height: 42px;
    cursor: pointer;
    list-style: none;
    place-content: center;
    gap: 6px;
    border: 1px solid var(--ink);
    border-radius: 50%;
}

.mobile-menu summary::-webkit-details-marker {
    display: none;
}

.mobile-menu summary span {
    display: block;
    width: 17px;
    height: 1.5px;
    background: var(--ink);
    transition: transform 180ms ease;
}

.mobile-menu[open] summary span:first-child {
    transform: translateY(3.75px) rotate(45deg);
}

.mobile-menu[open] summary span:last-child {
    transform: translateY(-3.75px) rotate(-45deg);
}

.mobile-menu-panel {
    position: absolute;
    top: 54px;
    right: 0;
    display: grid;
    width: min(300px, calc(100vw - 40px));
    border: 1px solid var(--line);
    padding: 12px;
    background: var(--white);
    box-shadow: var(--shadow);
}

.mobile-menu-panel a {
    border-bottom: 1px solid var(--line);
    padding: 13px 10px;
    font-size: 15px;
    font-weight: 600;
}

.mobile-menu-panel a:last-child {
    border-bottom: 0;
    color: var(--orange-dark);
}

.hero {
    display: grid;
    min-height: calc(100vh - 77px);
    min-height: calc(100svh - 77px);
    grid-template-columns: minmax(0, 1.06fr) minmax(400px, 0.74fr);
    align-items: center;
    gap: clamp(48px, 7vw, 110px);
    padding-top: 72px;
    padding-bottom: 72px;
}

.hero-copy {
    max-width: 720px;
    padding-bottom: 18px;
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 11px;
    margin-bottom: 24px;
    color: #4e5048;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.17em;
    line-height: 1.3;
    text-transform: uppercase;
}

.eyebrow > span {
    display: inline-block;
    width: 28px;
    height: 2px;
    background: var(--orange);
}

.eyebrow-light {
    color: rgba(255, 253, 248, 0.7);
}

h1,
h2 {
    font-weight: 800;
    letter-spacing: -0.055em;
}

h1 {
    max-width: 690px;
    margin-bottom: 28px;
    font-size: clamp(56px, 6.15vw, 92px);
    line-height: 0.91;
}

.hero-intro {
    max-width: 650px;
    margin-bottom: 32px;
    color: var(--muted);
    font-size: clamp(18px, 1.6vw, 22px);
    line-height: 1.52;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 25px;
}

.button {
    display: inline-flex;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    gap: 18px;
    border: 1px solid transparent;
    border-radius: 999px;
    padding: 12px 20px 12px 24px;
    font-size: 14px;
    font-weight: 800;
    transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

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

.button-primary {
    color: var(--white);
    background: var(--orange);
}

.button-primary:hover,
.button-primary:focus-visible {
    background: var(--orange-dark);
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid var(--ink);
    padding: 6px 0;
    font-size: 14px;
    font-weight: 800;
}

.text-link span {
    color: var(--orange);
    font-size: 17px;
}

.hero-note {
    margin: 28px 0 0;
    color: #77786e;
    font-size: 13px;
}

.hero-visual {
    position: relative;
    width: min(100%, 490px);
    margin: 0 0 0 auto;
}

.hero-image-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 0.74;
    background: var(--paper-deep);
    box-shadow: var(--shadow);
}

.hero-image-wrap::after {
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255, 255, 255, 0.3);
    content: "";
    pointer-events: none;
}

.hero-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 52% 58%;
}

.visit-record {
    position: absolute;
    right: clamp(-22px, -2vw, -10px);
    bottom: 30px;
    display: grid;
    width: min(420px, calc(100% + 10px));
    gap: 12px;
    border-left: 4px solid var(--orange);
    padding: 19px 20px;
    color: var(--white);
    background: var(--blue);
    box-shadow: 0 18px 40px rgba(22, 30, 50, 0.25);
}

.visit-record-label {
    color: rgba(255, 255, 255, 0.65);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.visit-record-flow {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
}

.visit-record-flow svg {
    width: 14px;
    fill: none;
    stroke: var(--sage);
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.6;
}

.workflow-band {
    overflow: hidden;
    padding: 110px 0 0;
    color: var(--white);
    background: var(--ink);
}

.section-heading-inline {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.6fr);
    align-items: end;
    gap: 80px;
    padding-bottom: 70px;
}

.section-heading h2 {
    margin-bottom: 0;
    font-size: clamp(42px, 5.2vw, 72px);
    line-height: 0.98;
}

.section-heading-inline > p,
.system-heading > p {
    margin-bottom: 4px;
    color: rgba(255, 253, 248, 0.65);
    font-size: 17px;
    line-height: 1.55;
}

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

.workflow-list li {
    display: grid;
    min-height: 310px;
    align-content: space-between;
    gap: 48px;
    border-top: 1px solid var(--line-light);
    border-right: 1px solid var(--line-light);
    padding: 28px 32px 40px 0;
}

.workflow-list li + li {
    padding-left: 32px;
}

.workflow-list li:last-child {
    border-right: 0;
}

.workflow-number,
.capability-index {
    color: var(--orange);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.workflow-list h3 {
    margin-bottom: 12px;
    font-size: 24px;
    letter-spacing: -0.035em;
}

.workflow-list p {
    margin-bottom: 0;
    color: rgba(255, 253, 248, 0.6);
    font-size: 14px;
    line-height: 1.65;
}

.story-section {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(350px, 0.72fr);
    align-items: center;
    gap: clamp(60px, 9vw, 130px);
    padding-top: 150px;
    padding-bottom: 150px;
}

.story-image {
    position: relative;
    margin: 0;
}

.story-image::before {
    position: absolute;
    z-index: -1;
    right: -22px;
    bottom: 30px;
    width: 68%;
    height: 90%;
    background: var(--sage);
    content: "";
}

.story-image img {
    width: 100%;
    aspect-ratio: 1.35;
    object-fit: cover;
    object-position: 50% 50%;
}

.story-image figcaption {
    margin-top: 18px;
    color: #6e7067;
    font-size: 12px;
}

.story-copy h2,
.operations-copy h2,
.two-sided-intro h2,
.contact-panel h2 {
    margin-bottom: 28px;
    font-size: clamp(42px, 4.8vw, 68px);
    line-height: 0.98;
}

.story-lead,
.operations-copy > p {
    margin-bottom: 32px;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.68;
}

.check-list {
    display: grid;
    margin: 0;
    padding: 0;
    list-style: none;
}

.check-list li {
    display: grid;
    grid-template-columns: 28px 1fr;
    align-items: center;
    gap: 12px;
    border-top: 1px solid var(--line);
    padding: 15px 0;
    font-size: 14px;
    font-weight: 600;
}

.check-list li:last-child {
    border-bottom: 1px solid var(--line);
}

.check-list svg {
    width: 24px;
    height: 24px;
    border: 1px solid var(--orange);
    border-radius: 50%;
    fill: none;
    stroke: var(--orange);
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

.system-section {
    padding: 130px 0 150px;
    background: var(--white);
}

.system-heading {
    display: grid;
    grid-template-columns: 1.2fr 0.72fr;
    gap: 16px 80px;
    margin-bottom: 70px;
}

.system-heading .eyebrow {
    grid-column: 1 / -1;
}

.system-heading > p {
    align-self: end;
    color: var(--muted);
}

.capability-grid {
    display: grid;
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.capability {
    position: relative;
    min-height: 330px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 28px 32px 34px;
    background: transparent;
    transition: background 180ms ease;
}

.capability:hover {
    background: #f5f0e8;
}

.capability-featured {
    background: var(--paper);
}

.capability-index {
    position: absolute;
    top: 30px;
    right: 30px;
}

.capability-icon {
    display: grid;
    width: 54px;
    height: 54px;
    margin-bottom: 70px;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 50%;
}

.capability-icon svg {
    width: 28px;
    fill: none;
    stroke: var(--ink);
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.35;
}

.capability h3 {
    margin-bottom: 11px;
    font-size: 23px;
    letter-spacing: -0.035em;
}

.capability p {
    max-width: 330px;
    margin-bottom: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.62;
}

.operations-section {
    display: grid;
    grid-template-columns: minmax(360px, 0.72fr) minmax(0, 1.2fr);
    align-items: center;
    gap: clamp(70px, 9vw, 135px);
    padding-top: 150px;
    padding-bottom: 150px;
}

.operations-points {
    display: grid;
    margin-top: 42px;
}

.operations-points > div {
    display: grid;
    grid-template-columns: 0.7fr 1fr;
    gap: 20px;
    border-top: 1px solid var(--line);
    padding: 17px 0;
}

.operations-points > div:last-child {
    border-bottom: 1px solid var(--line);
}

.operations-points span {
    color: #77786f;
    font-size: 12px;
}

.operations-points strong {
    font-size: 13px;
    font-weight: 600;
}

.operations-visual {
    position: relative;
    margin: 0;
}

.operations-visual::before {
    position: absolute;
    z-index: -1;
    top: -24px;
    right: -24px;
    width: 72%;
    height: 76%;
    background: #e1a96f;
    content: "";
}

.operations-visual img {
    width: 100%;
    aspect-ratio: 1.2;
    object-fit: cover;
    object-position: 52% center;
}

.operations-visual figcaption {
    position: absolute;
    right: -1px;
    bottom: -1px;
    display: grid;
    width: min(390px, 74%);
    gap: 8px;
    padding: 22px 26px;
    color: var(--white);
    background: var(--blue);
}

.operations-visual figcaption span {
    color: var(--sage);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.operations-visual figcaption strong {
    font-size: 15px;
    font-weight: 600;
}

.two-sided-section {
    padding: 125px 0 130px;
    color: var(--white);
    background: var(--blue);
}

.two-sided-section > .shell {
    display: grid;
    grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
    gap: clamp(70px, 10vw, 150px);
}

.two-sided-intro p:last-child {
    max-width: 390px;
    margin-bottom: 0;
    color: rgba(255, 253, 248, 0.67);
    font-size: 17px;
}

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

.audience-grid article {
    border-right: 1px solid var(--line-light);
    border-bottom: 1px solid var(--line-light);
    padding: 32px;
}

.audience-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 60px;
    color: var(--sage);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.audience-heading svg {
    width: 28px;
    fill: none;
    stroke: var(--sage);
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.4;
}

.audience-grid ul {
    display: grid;
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
}

.audience-grid li {
    position: relative;
    border-top: 1px solid rgba(255, 253, 248, 0.12);
    padding: 15px 0 15px 20px;
    color: rgba(255, 253, 248, 0.83);
    font-size: 14px;
    line-height: 1.5;
}

.audience-grid li::before {
    position: absolute;
    top: 22px;
    left: 0;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--orange);
    content: "";
}

.principle-section {
    padding-top: 140px;
    padding-bottom: 140px;
}

.principle-kicker {
    margin-bottom: 36px;
    color: var(--orange-dark);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.principle-statement {
    max-width: 1080px;
    margin-bottom: 0;
    font-size: clamp(39px, 5.25vw, 72px);
    font-weight: 600;
    letter-spacing: -0.05em;
    line-height: 1.07;
}

.principle-statement em {
    color: var(--blue);
    font-style: normal;
}

.contact-section {
    padding-bottom: 100px;
}

.contact-panel {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.65fr);
    gap: 80px;
    padding: clamp(42px, 7vw, 88px);
    color: var(--white);
    background: var(--orange);
}

.contact-panel h2 {
    max-width: 670px;
    margin-bottom: 0;
}

.contact-copy {
    align-self: end;
}

.contact-copy p {
    margin-bottom: 28px;
    color: rgba(255, 253, 248, 0.82);
    font-size: 16px;
}

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

.button-light:hover,
.button-light:focus-visible {
    color: var(--white);
    background: var(--ink);
}

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

.footer-main {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 80px;
    padding-top: 75px;
    padding-bottom: 70px;
}

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

.footer-main > div:first-child > p {
    max-width: 350px;
    margin: 20px 0 0;
    color: rgba(255, 253, 248, 0.55);
    font-size: 14px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(130px, 1fr));
    gap: 70px;
}

.footer-links > div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.footer-links span {
    margin-bottom: 4px;
    color: rgba(255, 253, 248, 0.4);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.footer-links a {
    color: rgba(255, 253, 248, 0.82);
    font-size: 13px;
}

.footer-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    border-top: 1px solid var(--line-light);
    padding-top: 24px;
    padding-bottom: 28px;
    color: rgba(255, 253, 248, 0.42);
    font-size: 10px;
}

.footer-meta p {
    margin-bottom: 0;
}

.photo-credits {
    text-align: right;
}

.photo-credits a {
    color: rgba(255, 253, 248, 0.65);
    text-decoration: underline;
    text-decoration-color: rgba(255, 253, 248, 0.25);
    text-underline-offset: 3px;
}

a:focus-visible,
summary:focus-visible {
    outline: 3px solid #f0a283;
    outline-offset: 4px;
}

@media (max-width: 1080px) {
    .nav {
        grid-template-columns: 1fr auto;
    }

    .nav-links {
        display: none;
    }

    .hero {
        min-height: auto;
        grid-template-columns: minmax(0, 1fr) minmax(340px, 0.72fr);
        gap: 55px;
    }

    h1 {
        font-size: clamp(54px, 7vw, 72px);
    }

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

    .workflow-list li:nth-child(2) {
        border-right: 0;
    }

    .workflow-list li:nth-child(3),
    .workflow-list li:nth-child(4) {
        border-top: 1px solid var(--line-light);
    }

    .workflow-list li:nth-child(3) {
        padding-left: 0;
    }

    .story-section {
        grid-template-columns: minmax(0, 1fr) minmax(330px, 0.85fr);
        gap: 70px;
    }

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

    .operations-section {
        gap: 70px;
    }

    .two-sided-section > .shell {
        grid-template-columns: 0.66fr 1.34fr;
        gap: 65px;
    }

    .contact-panel {
        gap: 55px;
    }
}

@media (max-width: 820px) {
    .shell {
        width: min(100% - 40px, 680px);
    }

    .nav-cta {
        display: none;
    }

    .mobile-menu {
        display: block;
    }

    .hero {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 55px;
        padding-top: 70px;
        padding-bottom: 85px;
    }

    .hero-copy {
        max-width: 680px;
        padding-bottom: 0;
    }

    h1 {
        max-width: 630px;
        font-size: clamp(54px, 12.3vw, 82px);
    }

    .hero-intro {
        max-width: 610px;
    }

    .hero-visual {
        width: calc(100% - 30px);
        max-width: 560px;
        margin: 0 auto 0 0;
    }

    .hero-image-wrap {
        aspect-ratio: 0.92;
    }

    .hero-image-wrap img {
        object-position: 52% 64%;
    }

    .visit-record {
        right: -30px;
        bottom: 24px;
    }

    .workflow-band {
        padding-top: 90px;
    }

    .section-heading-inline,
    .system-heading {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .system-heading .eyebrow {
        grid-column: auto;
    }

    .section-heading-inline > p,
    .system-heading > p {
        max-width: 560px;
    }

    .workflow-list li {
        min-height: 270px;
    }

    .story-section,
    .operations-section {
        grid-template-columns: 1fr;
        gap: 85px;
        padding-top: 105px;
        padding-bottom: 110px;
    }

    .story-image {
        order: 2;
    }

    .story-copy {
        order: 1;
    }

    .story-copy,
    .operations-copy {
        max-width: 610px;
    }

    .story-image::before {
        right: -20px;
    }

    .system-section {
        padding: 100px 0 110px;
    }

    .system-heading {
        margin-bottom: 55px;
    }

    .operations-visual {
        width: calc(100% - 20px);
    }

    .operations-visual::before {
        right: -20px;
    }

    .two-sided-section {
        padding: 100px 0 105px;
    }

    .two-sided-section > .shell {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .two-sided-intro {
        max-width: 600px;
    }

    .principle-section {
        padding-top: 100px;
        padding-bottom: 100px;
    }

    .contact-section {
        width: 100%;
        max-width: none;
        padding-bottom: 0;
    }

    .contact-panel {
        grid-template-columns: 1fr;
        gap: 34px;
        padding-right: max(20px, calc((100vw - 680px) / 2));
        padding-left: max(20px, calc((100vw - 680px) / 2));
    }

    .contact-copy {
        max-width: 560px;
    }

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

@media (max-width: 600px) {
    .shell {
        width: min(100% - 28px, 520px);
    }

    .nav {
        min-height: 68px;
    }

    .wordmark {
        font-size: 17px;
    }

    .wordmark-mark {
        width: 31px;
        height: 31px;
    }

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

    .eyebrow {
        margin-bottom: 20px;
        font-size: 10px;
    }

    h1 {
        margin-bottom: 23px;
        font-size: clamp(46px, 15vw, 68px);
        line-height: 0.94;
    }

    .hero-intro {
        font-size: 17px;
    }

    .hero-actions {
        align-items: flex-start;
        flex-direction: column;
        gap: 16px;
    }

    .hero-visual {
        width: calc(100% - 14px);
    }

    .hero-image-wrap {
        aspect-ratio: 0.82;
    }

    .visit-record {
        right: -14px;
        bottom: 16px;
        width: calc(100% - 18px);
        padding: 16px;
    }

    .visit-record-flow {
        gap: 6px;
        font-size: 11px;
    }

    .workflow-band {
        padding-top: 78px;
    }

    .section-heading-inline {
        padding-bottom: 52px;
    }

    .section-heading h2,
    .story-copy h2,
    .operations-copy h2,
    .two-sided-intro h2,
    .contact-panel h2 {
        font-size: clamp(38px, 11.5vw, 52px);
    }

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

    .workflow-list li,
    .workflow-list li + li,
    .workflow-list li:nth-child(3) {
        min-height: auto;
        gap: 50px;
        border-right: 0;
        padding: 25px 0 32px;
    }

    .story-section,
    .operations-section {
        gap: 65px;
        padding-top: 82px;
        padding-bottom: 88px;
    }

    .story-image img {
        aspect-ratio: 0.96;
    }

    .story-image::before {
        right: -14px;
        bottom: 24px;
    }

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

    .capability {
        min-height: 295px;
        padding: 25px 24px 28px;
    }

    .capability-icon {
        margin-bottom: 58px;
    }

    .operations-points > div {
        grid-template-columns: 1fr;
        gap: 4px;
    }

    .operations-visual {
        width: calc(100% - 14px);
    }

    .operations-visual::before {
        top: -14px;
        right: -14px;
    }

    .operations-visual img {
        aspect-ratio: 0.9;
    }

    .operations-visual figcaption {
        width: calc(100% - 20px);
        padding: 18px;
    }

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

    .audience-grid article {
        padding: 25px 22px;
    }

    .audience-heading {
        margin-bottom: 38px;
    }

    .principle-section {
        padding-top: 85px;
        padding-bottom: 85px;
    }

    .principle-kicker {
        margin-bottom: 26px;
    }

    .principle-statement {
        font-size: clamp(35px, 10.5vw, 48px);
    }

    .contact-panel {
        padding: 65px 14px;
    }

    .button-light {
        width: 100%;
        justify-content: space-between;
        font-size: 12px;
    }

    .footer-main {
        gap: 55px;
        padding-top: 60px;
        padding-bottom: 55px;
    }

    .footer-links {
        gap: 35px;
    }

    .footer-meta {
        align-items: flex-start;
        flex-direction: column;
        gap: 14px;
    }

    .photo-credits {
        max-width: 420px;
        text-align: left;
        line-height: 1.65;
    }
}

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

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