@font-face {
    font-family: "Weiske Sans";
    src: url("fonts/roboto-v51-latin-regular.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Weiske Sans";
    src: url("fonts/roboto-v51-latin-600.woff2") format("woff2");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Weiske Sans";
    src: url("fonts/roboto-v51-latin-700.woff2") format("woff2");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

:root {
    --ink: #11110f;
    --ink-soft: #272622;
    --paper: #f2f0eb;
    --paper-warm: #e8e2d8;
    --white: #fff;
    --muted: #716e67;
    --line: rgba(17, 17, 15, .14);
    --line-light: rgba(255, 255, 255, .18);
    --accent: #c9b48f;
    --accent-on-light: #9a8765;
    --focus: #365f86;
    --focus-ring: 0 0 0 2px rgba(255, 255, 255, 0), 0 0 0 4px #fff, 0 0 0 7px var(--focus);
    --max: 1440px;
    --pad: clamp(22px, 5vw, 80px);
    --section: clamp(96px, 13vw, 200px);
    --display: clamp(3.4rem, 9.2vw, 9rem);
    --headline: clamp(2.8rem, 6.5vw, 6.6rem);
    --subhead: clamp(2rem, 4.1vw, 4.5rem);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 72px;
    background: var(--ink);
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: "Weiske Sans", Arial, sans-serif;
    line-height: 1.45;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

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

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

button,
input,
textarea {
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

::selection {
    color: var(--white);
    background: #6b604e;
}

.skip-link {
    position: fixed;
    z-index: 1000;
    top: 12px;
    left: 12px;
    padding: 12px 18px;
    color: var(--ink);
    background: var(--white);
    border-radius: 99px;
    transform: translateY(-160%);
}

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

:focus-visible {
    outline: 0;
    box-shadow: var(--focus-ring);
}

a,
button,
h1[tabindex="-1"],
.skip-target {
    position: relative;
}

a:focus-visible,
button:focus-visible,
h1[tabindex="-1"]:focus-visible,
.skip-target:focus-visible {
    outline: 0;
    box-shadow: none;
}

a:focus-visible::after,
button:focus-visible::after,
h1[tabindex="-1"]:focus-visible::after,
.skip-target:focus-visible::after,
.project-options input:focus-visible+span::after {
    position: absolute;
    z-index: 2;
    inset: -9px;
    content: "";
    pointer-events: none;
    border: 3px solid var(--focus);
    border-radius: inherit;
    box-shadow: inset 0 0 0 2px #fff;
}

.hero h1[tabindex="-1"]:focus-visible::after {
    border-radius: 12px;
    inset: -10px -14px;
}

.site-header {
    position: fixed;
    z-index: 100;
    inset: 0 0 auto;
    color: var(--white);
    transition: color .35s ease, background .35s ease, backdrop-filter .35s ease;
}

.site-header.scrolled {
    color: var(--ink);
    background: rgba(242, 240, 235, .9);
    backdrop-filter: blur(18px);
    box-shadow: 0 1px 0 var(--line);
}

.header-inner {
    display: grid;
    grid-template-columns: 220px 1fr 220px;
    align-items: center;
    width: min(100%, var(--max));
    height: 72px;
    margin: 0 auto;
    padding: 0 var(--pad);
}

.brand {
    width: 152px;
}

.brand img,
.footer-brand img {
    filter: invert(1);
    transition: filter .3s ease;
}

.site-header.scrolled .brand img {
    filter: none;
}

.desktop-nav {
    display: flex;
    justify-content: center;
    gap: clamp(22px, 3vw, 48px);
    font-size: .82rem;
    font-weight: 600;
    letter-spacing: .03em;
}

.desktop-nav a,
.header-cta {
    transition: opacity .2s ease, text-shadow .35s ease;
}

.site-header:not(.scrolled) .desktop-nav a,
.site-header:not(.scrolled) .header-cta {
    text-shadow: 0 4px 28px rgba(0, 0, 0, .28), 0 2px 10px rgba(0, 0, 0, .18);
}

.site-header.scrolled .desktop-nav a,
.site-header.scrolled .header-cta {
    text-shadow: none;
}

.desktop-nav a:hover,
.header-cta:hover {
    opacity: .62;
}

.header-cta {
    justify-self: end;
    padding: 9px 17px;
    border: 1px solid currentColor;
    border-radius: 99px;
    font-size: .8rem;
    font-weight: 600;
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    padding: 0;
    color: currentColor;
    background: transparent;
    border: 0;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 1px;
    margin: 6px auto;
    background: currentColor;
    transition: transform .25s ease;
}

.menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(3.5px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
}

.mobile-menu {
    display: none;
}

.hero {
    position: relative;
    display: flex;
    align-items: flex-end;
    min-height: 100svh;
    overflow: hidden;
    color: var(--white);
    background: var(--ink);
    isolation: isolate;
}

.hero-media,
.hero-shade {
    position: absolute;
    z-index: -2;
    inset: 0;
}

.hero-media img {
    height: 100%;
    object-fit: cover;
    object-position: 50% 42%;
    transform: scale(1.02);
    animation: hero-arrive 1.5s cubic-bezier(.2, .7, .2, 1) both;
}

.hero-shade {
    z-index: -1;
    background:
        linear-gradient(90deg, rgba(10, 10, 9, .76) 0%, rgba(10, 10, 9, .34) 50%, rgba(10, 10, 9, .08) 78%),
        linear-gradient(0deg, rgba(10, 10, 9, .68) 0%, transparent 55%);
}

.hero-content {
    width: min(100%, var(--max));
    margin: 0 auto;
    padding: 125px var(--pad) clamp(100px, 11vh, 140px);
}

.eyebrow {
    margin: 0 0 24px;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.hero-eyebrow {
    opacity: 0;
    text-shadow: 0 4px 28px rgba(0, 0, 0, .28), 0 2px 10px rgba(0, 0, 0, .18);
    animation: fade-up .7s .3s ease forwards;
}

.hero h1 {
    width: fit-content;
    max-width: 980px;
    margin: 0;
    font-size: var(--display);
    font-weight: 600;
    line-height: .86;
    letter-spacing: -.075em;
    opacity: 0;
    text-shadow: 0 4px 28px rgba(0, 0, 0, .28), 0 2px 10px rgba(0, 0, 0, .18);
    animation: fade-up .9s .45s cubic-bezier(.2, .7, .2, 1) forwards;
}

.hero-copy {
    max-width: 620px;
    margin: 38px 0 0;
    font-size: clamp(1.12rem, 1.8vw, 1.55rem);
    line-height: 1.45;
    opacity: 0;
    text-shadow: 0 4px 28px rgba(0, 0, 0, .28), 0 2px 10px rgba(0, 0, 0, .18);
    animation: fade-up .8s .62s ease forwards;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-top: 36px;
    opacity: 0;
    animation: fade-up .8s .75s ease forwards;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    min-height: 50px;
    padding: 13px 23px;
    border: 0;
    border-radius: 99px;
    font-weight: 600;
    cursor: pointer;
    transition: transform .2s ease, background .2s ease, color .2s ease;
}

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

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

.button-light:hover {
    background: #e9e7e1;
}

.button-dark {
    width: 100%;
    color: var(--white);
    background: var(--ink);
}

.button-dark:hover {
    background: #34332f;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 5px;
    border-bottom: 1px solid currentColor;
    font-size: .92rem;
    font-weight: 600;
}

.text-link span {
    transition: transform .2s ease;
}

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

.text-link-light {
    color: var(--white);
}

.link-arrow {
    position: relative;
    display: inline-block;
    flex: 0 0 12px;
    width: 12px;
    height: 12px;
    transform: translateY(-1px);
    transition: transform .2s ease;
}

.link-arrow::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 16px;
    height: 1.25px;
    content: "";
    background: currentColor;
    transform: rotate(45deg);
    transform-origin: left center;
}

.link-arrow::after {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 5px;
    height: 5px;
    content: "";
    border-right: 1.25px solid currentColor;
    border-bottom: 1.25px solid currentColor;
}

a:hover .link-arrow,
button:hover .link-arrow {
    transform: translate(2px, 1px);
}

.button .link-arrow {
    width: 14px;
    height: 12px;
    margin-left: 8px;
    transform: translateY(0);
}

.button .link-arrow::before {
    top: 50%;
    left: 0;
    width: 11px;
    height: 1.25px;
    background: currentColor;
    transform: translateY(-50%);
    transform-origin: left center;
}

.button .link-arrow::after {
    top: 50%;
    right: 0;
    bottom: auto;
    width: 6px;
    height: 6px;
    border-top: 1.25px solid currentColor;
    border-right: 1.25px solid currentColor;
    border-bottom: 0;
    border-left: 0;
    transform: translateY(-50%) rotate(45deg);
}

.button:hover .link-arrow {
    transform: translateX(4px);
}

.scroll-cue {
    position: absolute;
    right: var(--pad);
    bottom: 34px;
    display: flex;
    gap: 18px;
    align-items: center;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.intro {
    padding: var(--section) var(--pad) clamp(80px, 10vw, 140px);
    background: var(--paper);
}

.intro-copy,
.trust-facts {
    width: min(100%, var(--max));
    margin-inline: auto;
}

.intro-copy h2 {
    max-width: 1120px;
    margin: 0;
    font-size: var(--headline);
    font-weight: 600;
    line-height: .98;
    letter-spacing: -.065em;
}

.intro-copy>p:last-child {
    max-width: 720px;
    margin: 44px 0 0 auto;
    color: var(--muted);
    font-size: clamp(1.2rem, 2vw, 1.65rem);
}

.trust-facts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: clamp(80px, 11vw, 150px);
    border-top: 1px solid var(--line);
}

.trust-facts div {
    padding: 34px 28px 0 0;
    border-right: 1px solid var(--line);
}

.trust-facts div:not(:first-child) {
    padding-left: 34px;
}

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

.trust-facts dt {
    font-size: clamp(2.4rem, 5vw, 5.2rem);
    font-weight: 600;
    letter-spacing: -.06em;
}

.trust-facts dd {
    margin: 8px 0 0;
    color: var(--muted);
    font-size: .9rem;
}

.stories {
    overflow: hidden;
    color: var(--white);
    background: var(--ink);
}

.section-intro {
    width: min(100%, var(--max));
    margin: 0 auto;
    padding: var(--section) var(--pad) clamp(80px, 10vw, 140px);
}

.section-intro h2,
.process-heading h2,
.reviews-heading h2,
.contact-intro h2 {
    margin: 0;
    font-size: var(--headline);
    font-weight: 600;
    line-height: .94;
    letter-spacing: -.065em;
}

.dark-intro h2 span {
    color: #77736b;
}

.story {
    width: min(calc(100% - (var(--pad) * 2)), calc(var(--max) - (var(--pad) * 2)));
    margin: 0 auto;
    padding-bottom: clamp(110px, 15vw, 220px);
}

.story-wide .story-media {
    aspect-ratio: 16 / 8.5;
    overflow: hidden;
    border-radius: 4px;
}

.story-media img {
    height: 100%;
    object-fit: cover;
    transition: transform 1s cubic-bezier(.2, .7, .2, 1);
}

.story-media:hover img {
    transform: scale(1.018);
}

.story-wide .story-copy {
    display: grid;
    grid-template-columns: .62fr 1.38fr;
    column-gap: 9vw;
    max-width: calc(100% - clamp(0px, 8vw, 120px));
    margin: 56px auto 0;
}

.story-index,
.project-location {
    margin: 0;
    color: var(--accent);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.projects .project-location {
    color: var(--accent-on-light);
}

.story-copy h3 {
    margin: 0 0 28px;
    font-size: var(--subhead);
    font-weight: 600;
    line-height: 1;
    letter-spacing: -.055em;
}

.story-copy>p:not(.story-index) {
    max-width: 680px;
    margin: 0;
    color: #b9b6af;
    font-size: clamp(1.06rem, 1.6vw, 1.35rem);
}

.story-wide .story-copy h3,
.story-wide .story-copy>p:not(.story-index),
.story-wide .feature-list {
    grid-column: 2;
}

.story-wide .story-copy h3 {
    grid-row: 1;
}

.story-wide .story-index {
    grid-row: 1 / span 3;
}

.feature-list,
.credentials {
    margin: 34px 0 0;
    padding: 0;
    list-style: none;
}

.feature-list li,
.credentials li {
    padding: 14px 0;
    border-top: 1px solid var(--line-light);
    font-size: .9rem;
}

.story-split {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    align-items: center;
    gap: clamp(60px, 9vw, 140px);
}

.story-split .story-copy {
    padding-left: clamp(0px, 4vw, 60px);
}

.story-split .story-index {
    margin-bottom: 26px;
}

.story-split .text-link {
    margin-top: 34px;
}

.portrait-media {
    aspect-ratio: 4 / 5;
    overflow: hidden;
}

.story-vision {
    width: 100%;
    padding: clamp(90px, 12vw, 180px) var(--pad);
    color: var(--ink);
    background: var(--paper-warm);
}

.vision-grid {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: clamp(54px, 9vw, 150px);
    align-items: center;
    max-width: calc(var(--max) - (var(--pad) * 2));
    margin: 0 auto;
}

.vision-grid .story-media {
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.vision-grid .story-index {
    margin-bottom: 28px;
    color: #6e6049;
}

.vision-grid .story-copy>p:not(.story-index) {
    color: #5f5b54;
}

.services-strip {
    --service-gutter: clamp(22px, 2.4vw, 36px);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    max-width: var(--max);
    margin: 0 auto;
    padding: clamp(80px, 10vw, 140px) calc(var(--pad) - var(--service-gutter));
}

.service-mini {
    display: flex;
    flex-direction: column;
    min-width: 0;
    padding: 0 var(--service-gutter);
    border-left: 1px solid var(--line-light);
}

.service-mini:first-child {
    border-left: 0;
}

.services-strip span {
    color: var(--accent);
    font-size: .72rem;
    font-weight: 700;
}

.services-strip strong {
    display: block;
    margin-top: 38px;
    font-size: clamp(1.25rem, 2vw, 1.8rem);
}

.services-strip p {
    max-width: 300px;
    min-height: 3.2em;
    margin-bottom: 28px;
    color: #8f8b84;
}

.service-mini-image {
    aspect-ratio: 4 / 3;
    margin-top: auto;
    overflow: hidden;
    background: #232320;
}

.service-mini-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .8s cubic-bezier(.2, .7, .2, 1);
}

.service-mini:hover .service-mini-image img {
    transform: scale(1.025);
}

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

.light-intro {
    display: grid;
    grid-template-columns: .42fr 1.2fr;
    column-gap: 7vw;
}

.light-intro .eyebrow {
    grid-row: 1 / span 2;
}

.light-intro>p:last-child {
    max-width: 640px;
    margin: 38px 0 0;
    color: var(--muted);
    font-size: 1.18rem;
}

.project {
    width: min(calc(100% - (var(--pad) * 2)), calc(var(--max) - (var(--pad) * 2)));
    margin-inline: auto;
}

.project-feature {
    display: grid;
    grid-template-columns: 1.35fr .65fr;
    align-items: center;
    gap: clamp(48px, 8vw, 130px);
    margin-bottom: var(--section);
}

.project-feature .project-image {
    aspect-ratio: 4 / 3;
}

.project-image {
    overflow: hidden;
    background: #ddd8cf;
}

.project-image img {
    height: 100%;
    object-fit: cover;
    transition: transform 1s cubic-bezier(.2, .7, .2, 1);
}

.project-image:hover img {
    transform: scale(1.018);
}

.project-copy h3 {
    margin: 24px 0;
    font-size: clamp(2.1rem, 4vw, 4.5rem);
    font-weight: 600;
    line-height: 1.02;
    letter-spacing: -.055em;
}

.project-copy>p:not(.project-location) {
    color: var(--muted);
    font-size: 1.08rem;
}

.project-facts {
    margin: 42px 0 0;
}

.project-facts div {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 14px 0;
    border-top: 1px solid var(--line);
}

.project-facts dt {
    color: var(--muted);
    font-size: .75rem;
}

.project-facts dd {
    margin: 0;
    font-size: .75rem;
    text-align: right;
}

.project-pair {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(30px, 5vw, 80px);
    width: min(calc(100% - (var(--pad) * 2)), calc(var(--max) - (var(--pad) * 2)));
    margin: 0 auto var(--section);
}

.project-card {
    width: 100%;
}

.project-card .project-image {
    aspect-ratio: 4 / 5;
}

.project-card .project-copy {
    padding: 34px 0 0;
}

.project-card .project-copy h3 {
    font-size: clamp(1.8rem, 3.2vw, 3.3rem);
}

.project-reverse {
    grid-template-columns: .65fr 1.35fr;
    margin-bottom: 0;
}

.project-reverse .project-image {
    grid-column: 2;
    grid-row: 1;
}

.project-reverse .project-copy {
    grid-column: 1;
    grid-row: 1;
}

.process {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: clamp(60px, 9vw, 150px);
    width: min(100%, var(--max));
    margin-inline: auto;
    padding: var(--section) var(--pad);
    color: var(--white);
    background: var(--ink-soft);
    box-shadow: 0 0 0 100vmax var(--ink-soft);
    clip-path: inset(0 -100vmax);
}

.process-heading {
    position: sticky;
    top: 140px;
    align-self: start;
}

.process-heading>p:last-child {
    max-width: 510px;
    margin-top: 34px;
    color: #aaa69f;
    font-size: 1.1rem;
}

.process-list {
    margin: 0;
    padding: 0;
    list-style: none;
    counter-reset: process;
}

.process-list li {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 26px;
    padding: 38px 0 64px;
    border-top: 1px solid var(--line-light);
}

.process-list li>span {
    color: var(--accent);
    font-size: .75rem;
    font-weight: 700;
}

.process-list h3 {
    margin: 0 0 14px;
    font-size: clamp(1.7rem, 3vw, 2.8rem);
    font-weight: 600;
    letter-spacing: -.04em;
}

.process-list p {
    max-width: 540px;
    margin: 0;
    color: #aaa69f;
}

.about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    min-height: 850px;
    background: var(--paper-warm);
}

.about-image {
    min-height: 700px;
}

.about-image img {
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.about-copy {
    align-self: center;
    max-width: 690px;
    padding: var(--section) var(--pad);
}

.about-copy h2 {
    margin: 0;
    font-size: var(--headline);
    line-height: .92;
    letter-spacing: -.065em;
}

.about-lead {
    margin: 40px 0 20px;
    font-size: clamp(1.3rem, 2vw, 1.75rem);
}

.about-copy>p:not(.eyebrow):not(.about-lead) {
    color: #625d55;
    font-size: 1.08rem;
}

.credentials li {
    border-color: var(--line);
}

.reviews {
    padding: var(--section) var(--pad);
    color: var(--white);
    background: #191917;
}

.reviews-heading,
.review-grid {
    max-width: var(--max);
    margin-inline: auto;
}

.reviews-heading {
    display: grid;
    grid-template-columns: .42fr 1.2fr;
    column-gap: 7vw;
}

.reviews-heading .eyebrow {
    grid-row: 1;
}

.review-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: clamp(70px, 9vw, 130px);
    border-top: 1px solid var(--line-light);
}

.review-grid blockquote {
    display: flex;
    flex-direction: column;
    min-height: 420px;
    margin: 0;
    padding: 42px clamp(22px, 3vw, 46px);
    border-right: 1px solid var(--line-light);
}

.review-grid blockquote:first-child {
    padding-left: 0;
}

.review-grid blockquote:last-child {
    border-right: 0;
}

.review-grid blockquote>p {
    margin: 0;
    font-size: clamp(1.35rem, 2.4vw, 2.1rem);
    line-height: 1.25;
    letter-spacing: -.035em;
}

.review-grid blockquote footer {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-top: auto;
}

.review-grid blockquote footer strong {
    font-size: .86rem;
}

.review-grid blockquote footer span {
    color: #8f8b84;
    font-size: .74rem;
}

.contact {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: clamp(60px, 9vw, 140px);
    width: min(100%, var(--max));
    margin-inline: auto;
    padding: var(--section) var(--pad);
    background: var(--paper);
}

.contact-intro>p:not(.eyebrow) {
    max-width: 590px;
    margin: 34px 0 0;
    color: var(--muted);
    font-size: 1.12rem;
}

.contact-direct {
    margin-top: 60px;
    border-top: 1px solid var(--line);
}

.contact-direct a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
    font-weight: 600;
}

.contact-direct a .link-arrow {
    color: var(--accent-on-light);
    margin-left: 12px;
    transition: transform .2s ease, color .2s ease;
}

.contact-direct a:hover .link-arrow {
    color: var(--ink);
    transform: translate(2px, 1px);
}

.contact-direct small {
    display: block;
    margin-bottom: 5px;
    color: var(--muted);
    font-size: .7rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: .1em;
}

.contact-form {
    padding: clamp(28px, 4vw, 56px);
    background: var(--white);
    box-shadow: 0 24px 80px rgba(31, 29, 25, .08);
}

.form-availability {
    margin: 0 0 32px;
    padding: 0;
    color: var(--muted);
    font-size: .9rem;
    line-height: 1.55;
}

.contact-form>label,
.contact-form fieldset {
    display: block;
    margin: 0 0 28px;
}

.contact-form label>span,
.contact-form legend {
    display: block;
    margin-bottom: 9px;
    font-size: .86rem;
    font-weight: 600;
}

.field-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.field-row label {
    min-width: 0;
}

.contact-form input:not([type="radio"]),
.contact-form textarea {
    width: 100%;
    padding: 14px 0;
    color: var(--ink);
    background: transparent;
    border: 0;
    border-bottom: 1px solid #c9c5bd;
    border-radius: 0;
    font-size: 1rem;
    outline: none !important;
    box-shadow: none !important;
    transition: border-color .2s ease;
}

.contact-form input:not([type="radio"]):focus,
.contact-form textarea:focus,
.contact-form input:not([type="radio"]):focus-visible,
.contact-form textarea:focus-visible {
    border-bottom-color: var(--ink);
    outline: none !important;
    box-shadow: none !important;
}

body.user-is-tabbing .contact-form input:not([type="radio"]):focus,
body.user-is-tabbing .contact-form textarea:focus {
    outline: 2px solid var(--focus) !important;
    outline-offset: 4px;
    border-radius: 2px;
}

.contact-form input[aria-invalid="true"] {
    border-color: #b13636;
}

.contact-form textarea {
    min-height: 110px;
    resize: vertical;
}

.contact-form fieldset {
    padding: 0;
    border: 0;
}

.project-options {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.project-options label {
    cursor: pointer;
    border-radius: 99px;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    user-select: none;
}

.project-options input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.project-options span {
    position: relative;
    display: block;
    margin: 0;
    padding: 10px 14px;
    color: #625f59;
    border: 1px solid #d6d2ca;
    border-radius: 99px;
    font-weight: 400;
    transition: color .2s ease, background-color .2s ease, border-color .2s ease;
}

.contact-form .project-options span {
    font-size: .84rem;
}

.project-options input:checked+span {
    color: var(--white);
    background: var(--ink);
    border-color: var(--ink);
}

.project-options input:focus-visible+span {
    outline: 0;
    box-shadow: none;
}

.form-error {
    display: block;
    height: 17px;
    margin-top: 5px;
    overflow: hidden;
    color: #a12e2e;
    font-size: .78rem;
    line-height: 17px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.contact-form .button {
    font-size: .94rem;
}

.form-note {
    margin: 14px 0 0;
    color: var(--muted);
    font-size: .76rem;
    line-height: 1.5;
    text-align: center;
}

.form-note a {
    color: var(--ink);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.whatsapp-button {
    position: fixed;
    z-index: 70;
    right: 22px;
    bottom: 22px;
    display: none;
    align-items: center;
    gap: 9px;
    padding: 12px 17px;
    color: var(--white);
    background: #1f9f59;
    border-radius: 99px;
    box-shadow: 0 12px 36px rgba(0, 0, 0, .2);
    font-size: .8rem;
    font-weight: 600;
}

.whatsapp-button::before {
    position: absolute;
    inset: 0;
    content: "";
    border-radius: 99px;
    background: #1f9f59;
    z-index: -1;
    animation: whatsapp-radar 4.5s cubic-bezier(0.2, 0.8, 0.2, 1) infinite;
}

@keyframes whatsapp-radar {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }

    35% {
        transform: scale(1.35, 1.45);
        opacity: 0;
    }

    100% {
        transform: scale(1.35, 1.45);
        opacity: 0;
    }
}

.whatsapp-button span {
    font-size: .7rem;
}

.site-footer {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 40px;
    padding: 80px max(var(--pad), calc((100vw - var(--max)) / 2 + var(--pad)));
    color: var(--white);
    background: #0b0b0a;
}

.footer-brand {
    width: 205px;
}

.footer-credit {
    justify-self: center;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #8d8982;
    font-size: .88rem;
    line-height: 1;
    transition: color .2s ease;
}

.footer-credit span {
    display: inline-block;
    transform: translateY(-1px);
}

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

.footer-credit img {
    height: 17px;
    width: auto;
    opacity: .85;
    transition: opacity .2s ease;
}

.footer-credit:hover img {
    opacity: 1;
}

.site-footer>div {
    display: flex;
    justify-content: flex-end;
    gap: 32px;
    color: #8d8982;
    font-size: .88rem;
}

.site-footer>div>a {
    position: relative;
    display: inline-block;
    transition: color .2s ease;
}

.site-footer>div>a::before {
    position: absolute;
    inset: -12px -16px;
    content: "";
}

.site-footer>div>a:hover {
    color: var(--white);
}

.site-footer>div>a[aria-current="page"] {
    color: var(--white);
}

.legal-page {
    color: var(--ink);
    background: var(--paper);
}

.legal-page .site-header {
    color: var(--ink);
    background: rgba(242, 240, 235, .94);
    backdrop-filter: blur(18px);
    box-shadow: 0 1px 0 var(--line);
}

.legal-page .brand img {
    filter: none;
}

.legal-header .header-inner {
    grid-template-columns: 1fr auto;
}

.legal-back {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    justify-self: end;
    padding: 10px 18px;
    border: 1px solid currentColor;
    border-radius: 99px;
    font-size: .8rem;
    font-weight: 600;
    transition: opacity .2s ease;
}

.legal-back:hover {
    opacity: .62;
}

.legal-main {
    min-height: 70vh;
    padding: clamp(150px, 16vw, 220px) var(--pad) var(--section);
}

.legal-content-container {
    width: min(100%, 900px);
    margin: 0 auto;
}

.legal-title {
    margin: 0 0 clamp(64px, 9vw, 110px);
    font-size: var(--headline);
    font-weight: 600;
    line-height: .94;
    letter-spacing: -.065em;
}

.legal-section {
    padding: 34px 0 28px;
    border-top: 1px solid var(--line);
}

.legal-section h2 {
    margin: 0 0 20px;
    font-size: clamp(1.35rem, 2.2vw, 2rem);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -.025em;
}

.legal-section h3 {
    margin: 30px 0 12px;
    font-size: 1.05rem;
    font-weight: 600;
}

.legal-section p,
.legal-section ul {
    max-width: 760px;
    margin: 0 0 14px;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.7;
}

.legal-section ul {
    padding-left: 20px;
}

.legal-section li {
    margin-bottom: 8px;
}

.legal-section strong {
    color: var(--ink);
}

.legal-section a {
    color: var(--ink);
    font-weight: 600;
    border-bottom: 1px solid currentColor;
}

.legal-section a:hover {
    color: #6e6049;
}

.js-enabled .reveal {
    opacity: 0;
    transform: translateY(34px);
    transition: opacity .8s ease, transform .9s cubic-bezier(.2, .7, .2, 1);
}

.js-enabled .reveal.is-visible {
    opacity: 1;
    transform: none;
}

@keyframes fade-up {
    from {
        opacity: 0;
        transform: translateY(28px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

@keyframes hero-arrive {
    from {
        opacity: .45;
        transform: scale(1.09);
    }

    to {
        opacity: 1;
        transform: scale(1.02);
    }
}

@media (max-width: 1100px) {
    .header-inner {
        grid-template-columns: 180px 1fr 180px;
    }

    .desktop-nav {
        gap: 22px;
    }

    .story-wide .story-copy {
        column-gap: 6vw;
    }

    .project-feature {
        grid-template-columns: 1.1fr .9fr;
    }

    .project-reverse {
        grid-template-columns: .9fr 1.1fr;
    }

    .process,
    .contact {
        gap: 60px;
    }
}

@media (max-width: 850px) {
    :root {
        --pad: 24px;
    }

    html {
        scroll-padding-top: 70px;
    }

    .site-header {
        color: var(--ink);
        background: rgba(242, 240, 235, .95);
        backdrop-filter: blur(18px);
        box-shadow: 0 1px 0 var(--line);
    }

    .site-header .brand img {
        filter: none;
    }

    .hero-media,
    .hero-shade {
        inset: 70px 0 0 0;
    }

    .hero-media img {
        height: 100%;
        object-fit: cover;
        object-position: 55% center;
        transform: scale(1.35) !important;
        transform-origin: 55% bottom !important;
        animation: none !important;
        filter: brightness(0.88);
    }

    .whatsapp-button {
        display: inline-flex;
    }

    .header-inner {
        grid-template-columns: 1fr auto;
        height: 70px;
    }

    .brand {
        width: 145px;
    }

    .desktop-nav,
    .header-cta {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .mobile-menu {
        position: fixed;
        inset: 69px 0 0;
        display: block;
        padding: 40px 24px;
        color: var(--ink);
        background: var(--white);
        visibility: hidden;
        opacity: 0;
        transform: translateY(-8px);
        transition: visibility .15s ease, opacity .15s ease, transform .2s cubic-bezier(.2, .7, .2, 1);
    }

    .mobile-menu[aria-hidden="false"] {
        visibility: visible;
        opacity: 1;
        transform: none;
    }

    .mobile-menu nav {
        display: flex;
        flex-direction: column;
    }

    .mobile-menu a {
        padding: 20px 0;
        border-bottom: 1px solid var(--line);
        font-size: 1.5rem;
        font-weight: 600;
    }

    .site-header:has(.menu-toggle[aria-expanded="true"]) {
        color: var(--ink);
        background: var(--white) !important;
        backdrop-filter: none;
        transition: none !important;
    }

    .site-header:has(.menu-toggle[aria-expanded="true"]) .brand img {
        filter: none;
    }

    .hero {
        min-height: 820px;
    }

    .hero-shade {
        background: linear-gradient(0deg, rgba(10, 10, 9, .84) 0%, rgba(10, 10, 9, .2) 78%);
    }

    .hero-content {
        padding-bottom: 105px;
    }

    .hero h1 {
        font-size: clamp(4rem, 16vw, 7rem);
    }

    .scroll-cue {
        display: none;
    }

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

    .trust-facts div,
    .trust-facts div:not(:first-child) {
        padding: 24px 0;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .trust-facts dt {
        font-size: 3rem;
    }

    .story-wide .story-media {
        aspect-ratio: 4 / 5;
    }

    .story-wide .story-copy {
        display: block;
        max-width: none;
        margin-top: 38px;
    }

    .story-wide .story-index {
        margin-bottom: 22px;
    }

    .story-split,
    .vision-grid {
        grid-template-columns: 1fr;
    }

    .story-split .story-copy {
        padding: 0;
    }

    .story-split .story-media {
        grid-row: 1;
    }

    .story-split .story-copy {
        grid-row: 2;
    }

    .portrait-media {
        aspect-ratio: 4 / 5;
    }

    .services-strip {
        grid-template-columns: 1fr;
        padding-inline: var(--pad);
    }

    .service-mini,
    .service-mini:first-child,
    .service-mini:last-child {
        padding: 32px 0;
        border-left: 0;
        border-top: 1px solid var(--line-light);
    }

    .services-strip strong {
        margin-top: 18px;
    }

    .services-strip p {
        min-height: 0;
        margin-bottom: 24px;
    }

    .service-mini-image {
        aspect-ratio: 4 / 3;
    }

    .light-intro,
    .reviews-heading {
        display: block;
    }

    .light-intro .eyebrow,
    .reviews-heading .eyebrow {
        margin-bottom: 24px;
    }

    .project-feature,
    .project-reverse {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .project-reverse .project-image,
    .project-reverse .project-copy {
        grid-column: 1;
        grid-row: auto;
    }

    .project-pair {
        gap: 24px;
    }

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

    .process-heading {
        position: static;
    }

    .about {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .about-image {
        min-height: 680px;
    }

    .about-copy {
        max-width: none;
    }

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

    .review-grid blockquote,
    .review-grid blockquote:first-child {
        min-height: 320px;
        padding: 36px 0;
        border-right: 0;
        border-bottom: 1px solid var(--line-light);
    }

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

    .site-footer {
        grid-template-columns: 1fr;
        align-items: start;
        gap: 28px;
    }

    .footer-brand {
        justify-self: center;
        margin-bottom: 18px;
    }

    .footer-credit {
        justify-self: start;
    }

    .site-footer>div {
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    .legal-header .header-inner {
        grid-template-columns: 1fr auto;
    }
}

@media (max-width: 600px) {
    :root {
        --section: 92px;
        --headline: clamp(2.8rem, 14vw, 4.5rem);
        --subhead: clamp(2.2rem, 11vw, 3.8rem);
    }

    .hero {
        min-height: calc(100svh + 70px);
    }

    .hero-media img {
        height: 100%;
        object-fit: cover;
        object-position: 58% center;
        transform: scale(1.35) !important;
        transform-origin: 58% bottom !important;
        animation: none !important;
        filter: brightness(0.88);
    }

    .hero-content {
        padding-top: 65px;
        padding-bottom: 145px;
    }

    .hero h1 {
        font-size: clamp(3.9rem, 19vw, 6rem);
    }

    .hero-copy {
        margin-top: 28px;
        font-size: 1.05rem;
    }

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

    .button {
        width: 100%;
    }

    .intro-copy>p:last-child {
        margin-top: 30px;
    }

    .story,
    .project,
    .project-pair {
        width: calc(100% - 48px);
    }

    .story-wide .story-media,
    .portrait-media {
        aspect-ratio: 3 / 4;
    }

    .story-vision {
        width: 100%;
        padding-inline: 24px;
    }

    .vision-grid .story-media {
        aspect-ratio: 4 / 5;
    }

    .project-pair {
        grid-template-columns: 1fr;
        gap: 90px;
    }

    .project-pair .project {
        width: 100%;
    }

    .project-feature .project-image {
        aspect-ratio: 4 / 5;
    }

    .project-copy h3 {
        font-size: 2.35rem;
    }

    .process-list li {
        grid-template-columns: 46px 1fr;
        gap: 14px;
        padding-bottom: 46px;
    }

    .about-image {
        min-height: 540px;
    }

    .about-copy {
        padding-inline: 24px;
    }

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

    .contact-form {
        margin-inline: -8px;
        padding: 28px 20px;
    }

    .project-options {
        gap: 6px 8px;
    }

    .whatsapp-button {
        right: 14px;
        bottom: 14px;
    }

    .site-footer>div {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        gap: 22px;
    }

    .legal-back {
        padding: 9px 13px;
        font-size: .74rem;
    }

    .legal-title {
        word-break: normal;
        overflow-wrap: anywhere;
    }

    .legal-section {
        padding: 28px 0 22px;
    }
}

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

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }

    .js-enabled .reveal {
        opacity: 1;
        transform: none;
    }
}