:root {
    --obsidian: #151815;
    --obsidian-soft: #20241f;
    --chalk: #f5f2ea;
    --paper: #fffdf8;
    --limestone: #ded5c3;
    --limestone-light: #ebe5d9;
    --terracotta: #a64f35;
    --terracotta-dark: #873d29;
    --olive: #62685c;
    --line: rgba(21, 24, 21, 0.15);
    --sans: "Manrope", Arial, sans-serif;
    --display: "Manrope", Arial, sans-serif;
    --mono: "IBM Plex Mono", monospace;
    --container: 1280px;
    --page-pad: clamp(1.25rem, 4vw, 4rem);
    --header-height: 82px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
}

body {
    margin: 0;
    background: var(--chalk);
    color: var(--obsidian);
    font-family: var(--sans);
    font-size: 1rem;
    line-height: 1.65;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    overflow: hidden;
}

::selection {
    background: var(--terracotta);
    color: var(--paper);
}

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

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

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

.container {
    width: min(100%, calc(var(--container) + var(--page-pad) * 2));
    margin-inline: auto;
    padding-inline: var(--page-pad);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link {
    position: fixed;
    z-index: 1000;
    top: 0.75rem;
    left: 0.75rem;
    padding: 0.75rem 1rem;
    background: var(--paper);
    border: 1px solid var(--obsidian);
    transform: translateY(-160%);
}

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

.site-header {
    position: fixed;
    z-index: 100;
    top: 0;
    right: 0;
    left: 0;
    border-bottom: 1px solid transparent;
    transition: background 280ms ease, border-color 280ms ease, backdrop-filter 280ms ease;
}

.site-header.is-scrolled {
    background: rgba(245, 242, 234, 0.9);
    border-color: var(--line);
    backdrop-filter: blur(16px);
}

.header-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    min-height: 82px;
}

.wordmark {
    display: inline-flex;
    width: 205px;
    align-items: center;
}

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

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
    font-size: 0.82rem;
    font-weight: 600;
}

.desktop-nav a {
    position: relative;
}

.desktop-nav a::after {
    position: absolute;
    right: 0;
    bottom: -0.35rem;
    left: 0;
    height: 1px;
    background: var(--obsidian);
    content: "";
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 250ms ease;
}

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

.header-actions {
    display: flex;
    justify-self: end;
    align-items: center;
    gap: 1rem;
}

.header-contact {
    display: grid;
    gap: 0.12rem;
    font-size: 0.85rem;
    text-align: right;
}

.header-contact span {
    color: var(--olive);
    font-family: var(--mono);
    font-size: inherit;
    letter-spacing: 0.08em;
    line-height: 1.2;
    text-transform: uppercase;
}

.header-contact a {
    font-size: inherit;
    font-weight: 650;
    line-height: 1.2;
}

.header-contact a:hover,
.header-contact a:focus-visible {
    color: var(--terracotta);
}

.header-cta {
    justify-self: end;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    gap: 1rem;
    padding: 0.85rem 1.25rem;
    border: 1px solid var(--obsidian);
    border-radius: 10px;
    font-size: 0.86rem;
    font-weight: 650;
    line-height: 1;
    cursor: pointer;
    transition: color 220ms ease, background 220ms ease, border-color 220ms ease, transform 220ms ease;
}

.button span:last-child {
    transition: transform 220ms ease;
}

.button:hover span:last-child,
.button:focus-visible span:last-child {
    transform: translate(3px, -2px);
}

.button:active {
    transform: translateY(1px);
}

.button-small {
    min-height: 42px;
    padding: 0.7rem 1rem;
}

.button-primary {
    background: var(--obsidian);
    color: var(--paper);
}

.button-primary:hover,
.button-primary:focus-visible {
    background: var(--terracotta);
    border-color: var(--terracotta);
}

.button-outline {
    background: transparent;
}

.button-outline:hover,
.button-outline:focus-visible {
    background: var(--obsidian);
    color: var(--paper);
}

.menu-button,
.mobile-nav {
    display: none;
}

.hero {
    min-height: 100svh;
    padding: 7.5rem 0 3.5rem;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.72fr);
    gap: clamp(2.5rem, 5vw, 5.5rem);
    align-items: center;
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin: 0 0 1.1rem;
    font-family: var(--mono);
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.13em;
    line-height: 1.4;
    text-transform: uppercase;
}

.eyebrow::before {
    width: 2rem;
    height: 1px;
    background: var(--terracotta);
    content: "";
}

.eyebrow-light {
    color: var(--limestone);
}

.hero h1 {
    max-width: 760px;
    margin: 0;
    font-family: var(--display);
    font-size: clamp(3rem, 4vw, 3.4rem);
    font-weight: 500;
    letter-spacing: -0.055em;
    line-height: 0.98;
}

h1 em,
h2 em {
    color: var(--terracotta);
    font-style: normal;
    font-weight: inherit;
}

h1,
h2,
h3 {
    text-wrap: balance;
}

.hero-intro {
    max-width: 680px;
    margin: 1.3rem 0 0;
    color: #3f443e;
    font-size: clamp(1.05rem, 1.35vw, 1.27rem);
    line-height: 1.6;
}

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

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--line);
    font-size: 0.87rem;
    font-weight: 650;
}

.text-link span {
    color: var(--terracotta);
    transition: transform 220ms ease;
}

.text-link:hover span,
.text-link:focus-visible span {
    transform: translateY(3px);
}

.confidence-line {
    display: flex;
    max-width: 590px;
    align-items: flex-start;
    gap: 0.75rem;
    margin: 1.25rem 0 0;
    color: var(--olive);
    font-size: 0.75rem;
    line-height: 1.55;
}

.confidence-line > span {
    width: 5px;
    height: 5px;
    flex: 0 0 auto;
    margin-top: 0.43rem;
    border-radius: 50%;
    background: var(--terracotta);
}

.hero-record {
    position: relative;
    display: grid;
    grid-template-rows: auto minmax(0, 1fr) auto;
    min-height: 550px;
    gap: 1rem;
    overflow: hidden;
    margin: 0;
    padding: 1.25rem;
    border: 1px solid rgba(255, 253, 248, 0.12);
    border-radius: 18px;
    background: var(--obsidian);
    color: var(--paper);
    box-shadow: 0 34px 80px rgba(31, 31, 24, 0.12);
}

.record-top,
.record-details {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    font-family: var(--mono);
    font-size: 0.61rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.record-top p {
    margin: 0;
}

.record-visual {
    position: relative;
    min-height: 395px;
    overflow: hidden;
    border: 1px solid rgba(255, 253, 248, 0.14);
    background-color: #262a25;
}

.record-visual::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 34%;
    background: linear-gradient(transparent, rgba(21, 24, 21, 0.78));
    content: "";
    pointer-events: none;
}

.record-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.record-details {
    gap: 1rem;
    padding-top: 0.85rem;
    border-top: 1px solid rgba(255, 253, 248, 0.13);
}

.record-details div {
    display: grid;
    gap: 0.4rem;
}

.record-details span {
    color: #8d9589;
}

.record-details strong {
    color: var(--paper);
    font-weight: 400;
    letter-spacing: 0.02em;
    text-transform: none;
}

.record-caption {
    position: absolute;
    z-index: 2;
    right: 1rem;
    bottom: 0.9rem;
    left: 1rem;
    margin: 0;
    color: var(--paper);
    font-family: var(--mono);
    font-size: 0.62rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.trust-rail {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.trust-inner {
    display: grid;
    grid-template-columns: minmax(280px, 0.9fr) 1.4fr;
    gap: 3rem;
    align-items: center;
    min-height: 112px;
}

.trust-inner > p {
    max-width: 480px;
    margin: 0;
    color: var(--olive);
    font-size: 0.78rem;
    line-height: 1.55;
}

.audience-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.audience-list span {
    position: relative;
    padding-left: 1rem;
    font-family: var(--mono);
    font-size: 0.65rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.audience-list span::before {
    position: absolute;
    top: 50%;
    left: 0;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--terracotta);
    content: "";
    transform: translateY(-50%);
}

.home-guide {
    padding-block: clamp(3rem, 5.5vw, 5.25rem);
    background: var(--paper);
}

.home-guide-panel {
    display: grid;
    min-height: 540px;
    grid-template-columns: minmax(0, 0.92fr) minmax(420px, 0.78fr);
    overflow: hidden;
    border-radius: 18px;
    background: var(--obsidian);
    color: var(--paper);
    box-shadow: 0 28px 70px rgba(21, 24, 21, 0.12);
}

.home-guide-copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: clamp(2.25rem, 5vw, 5rem);
}

.home-guide-copy h2 {
    max-width: 720px;
    font-size: clamp(2.45rem, 4vw, 4rem);
}

.home-guide-copy > p:not(.eyebrow) {
    max-width: 650px;
    margin: 1.4rem 0 0;
    color: rgba(255, 253, 248, 0.68);
    font-size: 1rem;
}

.home-guide-topics {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 253, 248, 0.16);
}

.home-guide-topics span {
    position: relative;
    padding: 0.85rem 0 0.85rem 1rem;
    border-bottom: 1px solid rgba(255, 253, 248, 0.16);
    color: var(--limestone);
    font-family: var(--mono);
    font-size: 0.59rem;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.home-guide-topics span::before {
    position: absolute;
    top: 1.18rem;
    left: 0;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--terracotta);
    content: "";
}

.home-guide-button {
    margin-top: 2rem;
    background: var(--terracotta);
    border-color: var(--terracotta);
}

.home-guide-button:hover,
.home-guide-button:focus-visible {
    background: var(--paper);
    border-color: var(--paper);
    color: var(--obsidian);
}

.home-guide-visual {
    position: relative;
    min-height: 540px;
    overflow: hidden;
    margin: 0;
}

.home-guide-visual::after {
    position: absolute;
    inset: auto 0 0;
    height: 34%;
    background: linear-gradient(transparent, rgba(21, 24, 21, 0.82));
    content: "";
    pointer-events: none;
}

.home-guide-visual img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-guide-visual figcaption {
    position: absolute;
    z-index: 2;
    right: 1.4rem;
    bottom: 1.25rem;
    left: 1.4rem;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    color: var(--paper);
    font-family: var(--mono);
    font-size: 0.6rem;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.home-guide-visual figcaption span {
    color: var(--limestone);
}

.home-guide-visual figcaption strong {
    font-weight: 500;
}

.section {
    padding-block: 1rem;
}

.section-heading {
    margin-bottom: clamp(1.75rem, 2.8vw, 2.5rem);
}

.split-heading,
.services-heading,
.process-heading {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(300px, 0.55fr);
    gap: clamp(2rem, 4vw, 4rem);
    align-items: end;
}

h2 {
    max-width: 960px;
    margin: 0;
    font-family: var(--display);
    font-size: 2.1rem;
    font-weight: 500;
    letter-spacing: -0.045em;
    line-height: 1.03;
}

.heading-copy {
    max-width: 560px;
    color: var(--olive);
    font-size: 1rem;
}

.heading-copy p {
    margin: 0 0 1rem;
}

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

.outcome {
    min-height: 220px;
    padding: 1.5rem clamp(1.5rem, 3vw, 3rem) 2rem 0;
    border-right: 1px solid var(--line);
}

.outcome + .outcome {
    padding-left: clamp(1.5rem, 3vw, 3rem);
}

.outcome:last-child {
    border-right: 0;
}

.outcome-number,
.service-meta,
.process-index {
    color: var(--terracotta);
    font-family: var(--mono);
    font-size: 0.64rem;
    letter-spacing: 0.08em;
}

.outcome h3 {
    max-width: 300px;
    margin: 2.25rem 0 0.7rem;
    font-family: var(--display);
    font-size: 1.7rem;
    font-weight: 500;
    letter-spacing: -0.025em;
    line-height: 1.12;
}

.outcome p {
    max-width: 360px;
    margin: 0;
    color: var(--olive);
    font-size: 0.88rem;
}

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

.service-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.service-card {
    display: flex;
    min-height: 300px;
    flex-direction: column;
    justify-content: space-between;
    padding: clamp(1.4rem, 2.5vw, 2rem);
    border: 1px solid var(--limestone);
    border-radius: 16px;
    background: var(--chalk);
    transition: border-color 240ms ease, transform 240ms ease, box-shadow 240ms ease;
}

.service-card:hover {
    border-color: rgba(21, 24, 21, 0.35);
    box-shadow: 0 16px 32px rgba(21, 24, 21, 0.05);
    transform: translateY(-2px);
}

.service-featured {
    min-height: 360px;
    grid-row: span 2;
    background:
        linear-gradient(rgba(21, 24, 21, 0.68), rgba(21, 24, 21, 0.92)),
        url("assets/og-arkeomalta.png") right center / cover;
    color: var(--paper);
}

.service-featured .service-meta,
.service-dark .service-meta {
    color: var(--limestone);
}

.service-featured p,
.service-dark p {
    color: rgba(255, 253, 248, 0.7);
}

.service-meta {
    display: flex;
    justify-content: space-between;
    text-transform: uppercase;
}

.service-card h3 {
    max-width: 590px;
    margin: 1.25rem 0 0.7rem;
    font-family: var(--display);
    font-size: clamp(1.8rem, 2.6vw, 2.3rem);
    font-weight: 500;
    letter-spacing: -0.04em;
    line-height: 1.02;
}

.service-card:not(.service-featured) h3 {
    font-size: clamp(1.65rem, 2.2vw, 2rem);
}

.service-card p {
    max-width: 540px;
    margin: 0;
    color: var(--olive);
    font-size: 0.91rem;
}

.service-card > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 1.4rem;
    padding-top: 1rem;
    border-top: 1px solid currentColor;
    font-size: 0.78rem;
    font-weight: 650;
}

.service-card > a span {
    transition: transform 220ms ease;
}

.service-card > a:hover span,
.service-card > a:focus-visible span {
    transform: translate(3px, -3px);
}

.service-dark {
    background: var(--obsidian);
    color: var(--paper);
}

.process {
    background: var(--limestone-light);
}

.process-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin: 0 0 2rem;
    padding: 0;
    border-top: 1px solid rgba(21, 24, 21, 0.24);
    list-style: none;
}

.process-list li {
    position: relative;
    min-height: 220px;
    padding: 1.5rem 2rem 1.5rem 0;
    border-right: 1px solid rgba(21, 24, 21, 0.18);
}

.process-list li + li {
    padding-left: 2rem;
}

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

.process-list li::before {
    position: absolute;
    top: -5px;
    left: 0;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--terracotta);
    box-shadow: 0 0 0 5px var(--limestone-light);
    content: "";
}

.process-list h3 {
    margin: 2.5rem 0 0.65rem;
    font-family: var(--display);
    font-size: 1.6rem;
    font-weight: 500;
    letter-spacing: -0.025em;
    line-height: 1.1;
}

.process-list p {
    margin: 0;
    color: var(--olive);
    font-size: 0.86rem;
}

.practice-grid {
    display: grid;
    grid-template-columns: minmax(320px, 0.8fr) minmax(0, 1.2fr);
    gap: clamp(2.5rem, 5vw, 5.5rem);
    align-items: stretch;
}

.practice-panel {
    position: relative;
    display: flex;
    min-height: 470px;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    padding: 2rem;
    border-radius: 18px;
    background-color: var(--terracotta);
    background-image:
        linear-gradient(rgba(255, 253, 248, 0.12) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 253, 248, 0.12) 1px, transparent 1px);
    background-size: 56px 56px;
    color: var(--paper);
}

.practice-panel::before,
.practice-panel::after {
    position: absolute;
    border: 1px solid rgba(255, 253, 248, 0.36);
    border-radius: 50%;
    content: "";
}

.practice-panel::before {
    width: 420px;
    height: 420px;
    top: 18%;
    left: 40%;
}

.practice-panel::after {
    width: 240px;
    height: 240px;
    top: 32%;
    left: 58%;
}

.practice-mark {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-start;
    font-family: var(--display);
    font-size: clamp(4.5rem, 8vw, 7.5rem);
    font-weight: 500;
    line-height: 0.75;
}

.practice-mark span {
    margin: 0.4rem 0 0 0.7rem;
    font-family: var(--mono);
    font-size: 0.65rem;
    letter-spacing: 0.1em;
}

.practice-coordinate {
    position: absolute;
    z-index: 2;
    top: 45%;
    right: 2rem;
    font-family: var(--mono);
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    text-align: right;
}

.practice-panel > p {
    position: relative;
    z-index: 2;
    margin: 0;
    font-family: var(--display);
    font-size: 1.45rem;
    font-weight: 500;
    letter-spacing: -0.025em;
    line-height: 1.15;
}

.practice-copy {
    align-self: center;
}

.practice-copy .lead {
    max-width: 670px;
    margin: 1.3rem 0 2rem;
    color: var(--olive);
    font-size: 1.08rem;
}

.practice-points {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.6rem 3rem;
}

.practice-points > div {
    padding-top: 1.25rem;
    border-top: 1px solid var(--line);
}

.practice-points h3 {
    margin: 0 0 0.55rem;
    font-size: 0.9rem;
}

.practice-points p {
    margin: 0;
    color: var(--olive);
    font-size: 0.82rem;
}

.contact {
    background: var(--obsidian);
    color: var(--paper);
}

.contact-grid {
    display: grid;
    grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
    gap: clamp(3rem, 6vw, 6rem);
}

.contact-intro {
    align-self: start;
}

.contact-intro h2 {
    max-width: 650px;
}

.contact-intro > p:not(.eyebrow) {
    max-width: 580px;
    margin: 1.35rem 0 0;
    color: rgba(255, 253, 248, 0.66);
}

.contact-steps {
    max-width: 620px;
    margin: 2rem 0 0;
    padding: 0;
    border-top: 1px solid rgba(255, 253, 248, 0.15);
    list-style: none;
}

.contact-steps li {
    display: grid;
    grid-template-columns: 2rem 1fr;
    gap: 0.85rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 253, 248, 0.15);
}

.contact-steps li > span {
    padding-top: 0.15rem;
    color: var(--terracotta);
    font-family: var(--mono);
    font-size: 0.62rem;
    letter-spacing: 0.08em;
}

.contact-steps h3 {
    margin: 0 0 0.3rem;
    font-size: 0.88rem;
    font-weight: 650;
}

.contact-steps p {
    margin: 0;
    color: rgba(255, 253, 248, 0.58);
    font-size: 0.8rem;
    line-height: 1.55;
}

.contact-note {
    margin-top: 2rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255, 253, 248, 0.15);
}

.contact-note > span {
    font-family: var(--mono);
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.contact-note ul {
    margin: 1rem 0 0;
    padding: 0;
    color: rgba(255, 253, 248, 0.66);
    font-size: 0.84rem;
    list-style: none;
}

.contact-note li {
    position: relative;
    padding-left: 1.1rem;
}

.contact-note li::before {
    position: absolute;
    top: 0.76rem;
    left: 0;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--terracotta);
    content: "";
}

.project-form {
    display: grid;
    gap: 1.25rem;
    padding: clamp(1.35rem, 3.5vw, 3rem);
    border: 1px solid rgba(255, 253, 248, 0.14);
    border-radius: 18px;
    background: var(--obsidian-soft);
    color-scheme: dark;
}

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

.project-form label:not(.upload-field):not(.consent):not(.honeypot) {
    display: grid;
    gap: 0.55rem;
}

.project-form label > span:first-child {
    color: rgba(255, 253, 248, 0.72);
    font-size: 0.72rem;
    transition: color 180ms ease;
}

.project-form input:not([type="checkbox"]):not([type="file"]),
.project-form select,
.project-form textarea {
    width: 100%;
    padding-inline: 0.75rem;
    border: 0;
    border-bottom: 1px solid rgba(255, 253, 248, 0.22);
    border-radius: 8px 8px 0 0;
    outline: none;
    background-color: rgba(255, 253, 248, 0.025);
    color: var(--paper);
    caret-color: var(--terracotta);
    font-size: 0.9rem;
    transition: border-color 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.project-form input:not([type="checkbox"]):not([type="file"]),
.project-form select {
    height: 50px;
}

.project-form textarea {
    min-height: 130px;
    padding-block: 0.8rem;
    resize: vertical;
}

.project-form select {
    appearance: none;
    padding-right: 2.75rem;
    background-image:
        linear-gradient(45deg, transparent 50%, rgba(255, 253, 248, 0.7) 50%),
        linear-gradient(135deg, rgba(255, 253, 248, 0.7) 50%, transparent 50%);
    background-position:
        calc(100% - 17px) 52%,
        calc(100% - 12px) 52%;
    background-repeat: no-repeat;
    background-size: 5px 5px;
}

.project-form select:required:invalid {
    color: rgba(255, 253, 248, 0.42);
}

.project-form select option {
    background: var(--obsidian-soft);
    color: var(--paper);
}

.project-form select option:checked {
    background: var(--terracotta);
    color: var(--paper);
}

.project-form label:not(.upload-field):not(.consent):hover
    input:not([type="checkbox"]):not([type="file"]),
.project-form label:not(.upload-field):not(.consent):hover select,
.project-form label:not(.upload-field):not(.consent):hover textarea {
    border-color: rgba(255, 253, 248, 0.45);
    background-color: rgba(255, 253, 248, 0.045);
}

.project-form label:focus-within > span:first-child {
    color: var(--paper);
}

.project-form input:not([type="checkbox"]):not([type="file"]):focus,
.project-form select:focus,
.project-form textarea:focus {
    border-color: var(--terracotta);
    background-color: rgba(166, 79, 53, 0.09);
    box-shadow: 0 0 0 1px rgba(166, 79, 53, 0.2) inset;
}

.project-form input:-webkit-autofill,
.project-form input:-webkit-autofill:hover,
.project-form input:-webkit-autofill:focus {
    border-bottom-color: var(--terracotta);
    -webkit-box-shadow: 0 0 0 1000px var(--obsidian-soft) inset;
    -webkit-text-fill-color: var(--paper);
    caret-color: var(--terracotta);
}

.project-form ::placeholder {
    color: rgba(255, 253, 248, 0.34);
}

.upload-field {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 1rem;
    align-items: center;
    min-height: 112px;
    padding: 1rem;
    border: 1px dashed rgba(255, 253, 248, 0.28);
    border-radius: 12px;
    cursor: pointer;
    transition: border-color 200ms ease, background 200ms ease;
}

.upload-field:hover,
.upload-field.is-dragging,
.upload-field:focus-within {
    border-color: var(--terracotta);
    background: rgba(166, 79, 53, 0.08);
}

.upload-field input {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
}

.upload-icon {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid rgba(255, 253, 248, 0.2);
    border-radius: 10px;
    color: var(--terracotta);
}

.upload-field > span:nth-of-type(2) {
    display: grid;
}

.upload-field strong {
    font-size: 0.82rem;
}

.upload-field small {
    margin-top: 0.25rem;
    color: rgba(255, 253, 248, 0.48);
    font-size: 0.68rem;
}

.upload-action {
    display: inline-flex;
    gap: 0.45rem;
    align-items: center;
    font-size: 0.72rem;
    font-weight: 650;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.upload-action.is-loading {
    color: rgba(255, 253, 248, 0.72);
    text-decoration: none;
}

.upload-action.is-loading::before {
    width: 0.75rem;
    height: 0.75rem;
    border: 1.5px solid rgba(255, 253, 248, 0.25);
    border-top-color: var(--terracotta);
    border-radius: 50%;
    content: "";
    animation: upload-spinner 650ms linear infinite;
}

@keyframes upload-spinner {
    to {
        transform: rotate(1turn);
    }
}

.file-list {
    display: grid;
    gap: 0.35rem;
    margin-top: -0.5rem;
    color: rgba(255, 253, 248, 0.6);
    font-family: var(--mono);
    font-size: 0.65rem;
}

.file-list-item {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.75rem;
    align-items: center;
    padding: 0.55rem 0.7rem;
    border: 1px solid rgba(255, 253, 248, 0.12);
    border-radius: 8px;
    background: rgba(255, 253, 248, 0.035);
}

.file-list-item span {
    overflow-wrap: anywhere;
}

.file-list-item button {
    padding: 0;
    border: 0;
    background: transparent;
    color: rgba(255, 253, 248, 0.55);
    font: inherit;
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 180ms ease;
}

.file-list-item button:hover,
.file-list-item button:focus-visible {
    color: var(--paper);
}

.file-list-error {
    color: #f2c5b7;
}

.consent {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.75rem;
    align-items: start;
    color: rgba(255, 253, 248, 0.58);
    cursor: pointer;
    transition: color 180ms ease;
}

.consent:hover,
.consent:focus-within {
    color: rgba(255, 253, 248, 0.78);
}

.consent input {
    width: 17px;
    height: 17px;
    margin: 0.2rem 0 0;
    accent-color: var(--terracotta);
}

.consent input:focus-visible {
    outline: 2px solid var(--terracotta);
    outline-offset: 3px;
}

.consent span {
    font-size: 0.7rem;
}

.consent a {
    color: var(--paper);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.honeypot {
    position: absolute;
    left: -10000px;
}

.form-submit {
    width: 100%;
    margin-top: 0.5rem;
    background: var(--terracotta);
    border-color: var(--terracotta);
}

.form-submit:hover,
.form-submit:focus-visible {
    background: var(--paper);
    border-color: var(--paper);
    color: var(--obsidian);
}

.form-submit:disabled {
    cursor: wait;
    opacity: 0.6;
}

.form-assurance {
    margin: -0.45rem 0 0;
    color: rgba(255, 253, 248, 0.38);
    font-size: 0.65rem;
    text-align: center;
}

.recaptcha-notice {
    margin: -0.45rem 0 0;
    color: rgba(255, 253, 248, 0.38);
    font-size: 0.61rem;
    text-align: center;
}

.recaptcha-notice a {
    color: rgba(255, 253, 248, 0.58);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.grecaptcha-badge {
    visibility: hidden;
}

.form-status {
    display: none;
    padding: 0.8rem 1rem;
    border-radius: 8px;
    font-size: 0.75rem;
}

.form-status.is-visible {
    display: block;
}

.form-status.is-success {
    width: min(100%, 540px);
    justify-self: center;
    padding: clamp(2rem, 5vw, 3.5rem);
    border: 1px solid rgba(217, 164, 75, 0.42);
    border-radius: 14px;
    background: rgba(166, 79, 53, 0.14);
    color: var(--paper);
    font-size: 1rem;
    text-align: center;
}

.form-status.is-success::before {
    display: grid;
    width: 48px;
    height: 48px;
    margin: 0 auto 1.25rem;
    place-items: center;
    border: 1px solid rgba(217, 164, 75, 0.5);
    border-radius: 50%;
    color: var(--heritage-gold, #d9a44b);
    content: "✓";
    font-size: 1.15rem;
}

.form-status.is-success h3 {
    margin: 0;
    font-size: 1.35rem;
    font-weight: 600;
    letter-spacing: -0.025em;
}

.form-status.is-success p {
    max-width: 420px;
    margin: 0.8rem auto 0;
    color: rgba(255, 253, 248, 0.7);
    font-size: 0.92rem;
    line-height: 1.6;
}

.project-form.is-complete {
    min-height: clamp(380px, 48vw, 600px);
    place-content: center;
    border-color: rgba(217, 164, 75, 0.22);
    background:
        radial-gradient(circle at 50% 40%, rgba(166, 79, 53, 0.13), transparent 52%),
        var(--obsidian-soft);
}

.project-form.is-complete > label:not(.upload-field):not(.consent):not(.honeypot),
.project-form.is-complete > :not(.form-status) {
    display: none;
}

.form-status.is-error {
    background: rgba(166, 79, 53, 0.22);
    color: #f2c5b7;
}

.faq-grid {
    display: grid;
    grid-template-columns: minmax(300px, 0.75fr) minmax(0, 1.25fr);
    gap: clamp(3rem, 6vw, 6rem);
}

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

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

.faq-list summary {
    display: flex;
    min-height: 72px;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    font-size: 0.92rem;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
}

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

.faq-list summary span {
    color: var(--terracotta);
    font-size: 1.4rem;
    font-weight: 400;
    transition: transform 200ms ease;
}

.faq-list details[open] summary span {
    transform: rotate(45deg);
}

.faq-list details p {
    max-width: 720px;
    margin: -0.5rem 0 2rem;
    color: var(--olive);
    font-size: 0.86rem;
}

.site-footer {
    padding: 4rem 0 1.75rem;
    background: var(--limestone-light);
}

.footer-top {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 4rem;
    padding-bottom: 4rem;
}

.wordmark-footer {
    width: 250px;
}

.footer-top > div:first-child > p {
    max-width: 410px;
    margin: 1rem 0 0;
    color: var(--olive);
    font-family: var(--display);
    font-size: 1.3rem;
    font-weight: 500;
    letter-spacing: -0.02em;
    line-height: 1.25;
}

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

.footer-links > div {
    display: grid;
    align-content: start;
    gap: 0.65rem;
}

.footer-links span {
    margin-bottom: 0.4rem;
    color: var(--olive);
    font-family: var(--mono);
    font-size: 0.62rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.footer-links a {
    width: max-content;
    font-size: 0.8rem;
}

.footer-cookie-button {
    width: max-content;
    padding: 0;
    border: 0;
    background: transparent;
    color: inherit;
    font-size: 0.8rem;
    text-align: left;
    cursor: pointer;
}

.footer-links strong {
    font-size: 0.8rem;
    font-weight: 650;
}

.footer-address {
    color: var(--olive);
    font-size: 0.8rem;
    font-style: normal;
    line-height: 1.55;
}

.footer-address strong {
    display: block;
    margin-bottom: 0.2rem;
    color: var(--obsidian);
}

.footer-links a:hover,
.footer-links a:focus-visible,
.footer-cookie-button:hover,
.footer-cookie-button:focus-visible {
    color: var(--terracotta);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    padding-top: 1.5rem;
    border-top: 1px solid var(--line);
    color: var(--olive);
    font-family: var(--mono);
    font-size: 0.58rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.mobile-action {
    display: none;
}

.back-to-top {
    position: fixed;
    z-index: 90;
    right: 1.25rem;
    bottom: 1.25rem;
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    border: 1px solid rgba(255, 253, 248, 0.18);
    border-radius: 50%;
    background: var(--terracotta);
    color: var(--paper);
    box-shadow: 0 14px 32px rgba(21, 24, 21, 0.18);
    font-size: 1rem;
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
    transition: opacity 220ms ease, transform 220ms ease, background 220ms ease;
}

.back-to-top.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.back-to-top:hover,
.back-to-top:focus-visible {
    background: var(--obsidian);
}

.cookie-banner {
    position: fixed;
    z-index: 1000;
    left: 1.5rem;
    bottom: 1.5rem;
    display: grid;
    width: min(590px, calc(100vw - 3rem));
    gap: 0.85rem;
    padding: clamp(1.4rem, 3vw, 2rem);
    overflow: hidden;
    border: 1px solid rgba(255, 253, 248, 0.18);
    border-radius: 16px;
    background:
        linear-gradient(135deg, rgba(166, 79, 53, 0.18), transparent 52%),
        var(--obsidian);
    color: var(--paper);
    box-shadow: 0 24px 64px rgba(21, 24, 21, 0.34);
}

.cookie-banner::before {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 4px;
    background: var(--terracotta);
    content: "";
}

.cookie-banner[hidden] {
    display: none;
}

.cookie-banner-label {
    color: var(--limestone);
    font-family: var(--mono);
    font-size: 0.62rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.cookie-banner h2 {
    margin: 0;
    font-size: clamp(1.35rem, 3vw, 1.7rem);
    font-weight: 600;
    letter-spacing: -0.035em;
    line-height: 1.12;
}

.cookie-banner > p {
    max-width: 54ch;
    margin: 0;
    color: rgba(255, 253, 248, 0.74);
    font-size: 0.88rem;
    line-height: 1.62;
}

.cookie-banner-footer {
    display: grid;
    gap: 1rem;
    margin-top: 0.25rem;
}

.cookie-banner-footer > a {
    width: max-content;
    color: var(--limestone);
    font-size: 0.75rem;
    text-decoration: underline;
    text-decoration-color: rgba(222, 213, 195, 0.45);
    text-underline-offset: 3px;
}

.cookie-banner-actions {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
    gap: 0.75rem;
}

.cookie-choice {
    min-height: 48px;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-size: 0.78rem;
    font-weight: 650;
    cursor: pointer;
    transition: border-color 180ms ease, background 180ms ease, color 180ms ease, transform 180ms ease;
}

.cookie-choice-primary {
    grid-column: 2;
    grid-row: 1;
    border: 1px solid var(--terracotta);
    background: var(--terracotta);
    color: var(--paper);
    box-shadow: 0 10px 24px rgba(166, 79, 53, 0.28);
}

.cookie-choice-primary:hover,
.cookie-choice-primary:focus-visible {
    border-color: #c66547;
    background: #c66547;
    transform: translateY(-1px);
}

.cookie-choice-secondary {
    grid-column: 1;
    grid-row: 1;
    border: 1px solid rgba(255, 253, 248, 0.28);
    background: transparent;
    color: rgba(255, 253, 248, 0.7);
}

.cookie-choice-secondary:hover,
.cookie-choice-secondary:focus-visible {
    border-color: rgba(255, 253, 248, 0.6);
    color: var(--paper);
}

.cookie-choice:focus-visible,
.cookie-banner a:focus-visible,
.footer-cookie-button:focus-visible {
    outline: 2px solid #d9a44b;
    outline-offset: 3px;
}

.cookie-banner-status:empty {
    display: none;
}

.cookie-banner .cookie-banner-status {
    color: var(--limestone);
    font-family: var(--mono);
    font-size: 0.62rem;
}

body.cookie-banner-visible .mobile-action {
    opacity: 0;
    pointer-events: none;
}

.privacy-hero {
    padding: clamp(9rem, 15vw, 13rem) 0 clamp(4rem, 8vw, 7rem);
    border-bottom: 1px solid var(--line);
    background:
        radial-gradient(circle at 78% 32%, rgba(166, 79, 53, 0.16), transparent 30%),
        var(--chalk);
}

.privacy-hero h1 {
    max-width: 860px;
    margin: 0.9rem 0 1.3rem;
    font-size: clamp(3rem, 7vw, 6.5rem);
    font-weight: 500;
    letter-spacing: -0.065em;
    line-height: 0.93;
}

.privacy-hero .lead {
    max-width: 720px;
    margin: 0;
    color: var(--olive);
    font-size: clamp(1rem, 2vw, 1.2rem);
}

.privacy-layout {
    display: grid;
    grid-template-columns: minmax(190px, 0.35fr) minmax(0, 1fr);
    gap: clamp(3rem, 8vw, 8rem);
    padding-block: clamp(4rem, 8vw, 8rem);
}

.privacy-nav {
    position: sticky;
    top: calc(var(--header-height) + 2rem);
    display: grid;
    align-self: start;
    gap: 0.7rem;
    padding-top: 0.4rem;
}

.privacy-nav span {
    margin-bottom: 0.45rem;
    color: var(--olive);
    font-family: var(--mono);
    font-size: 0.62rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.privacy-nav a {
    width: max-content;
    color: var(--olive);
    font-size: 0.8rem;
}

.privacy-nav a:hover,
.privacy-nav a:focus-visible {
    color: var(--terracotta);
}

.privacy-content {
    max-width: 850px;
}

.privacy-content section {
    padding-bottom: clamp(3.5rem, 7vw, 6rem);
    scroll-margin-top: calc(var(--header-height) + 2rem);
}

.privacy-content section + section {
    padding-top: clamp(3.5rem, 7vw, 6rem);
    border-top: 1px solid var(--line);
}

.privacy-content h2 {
    max-width: 720px;
    margin: 0 0 1.5rem;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 500;
    letter-spacing: -0.05em;
    line-height: 1.02;
}

.privacy-content h3 {
    margin: 2rem 0 0.65rem;
    font-size: 1rem;
}

.privacy-content p,
.privacy-content li {
    color: var(--olive);
    font-size: 0.92rem;
}

.privacy-content a {
    color: var(--terracotta-dark);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.privacy-content ul {
    display: grid;
    gap: 0.55rem;
    padding-left: 1.2rem;
}

.cookie-table-wrap {
    margin-top: 2rem;
    overflow-x: auto;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: var(--paper);
}

.cookie-table {
    width: 100%;
    min-width: 680px;
    border-collapse: collapse;
    font-size: 0.78rem;
}

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    border-bottom: 1px solid var(--line);
    text-align: left;
    vertical-align: top;
}

.cookie-table th {
    background: var(--limestone-light);
    font-family: var(--mono);
    font-size: 0.62rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.cookie-table tr:last-child td {
    border-bottom: 0;
}

.privacy-choice-card {
    display: grid;
    gap: 1rem;
    margin-top: 2rem;
    padding: 1.5rem;
    border-radius: 12px;
    background: var(--obsidian);
    color: var(--paper);
}

.privacy-choice-card p {
    margin: 0;
    color: rgba(255, 253, 248, 0.72);
}

.privacy-choice-card .button {
    width: max-content;
}

.reveal {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 650ms cubic-bezier(0.22, 1, 0.36, 1), transform 650ms cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (min-width: 1200px) {
    :root {
        --header-height: 106px;
    }

    .site-header .wordmark {
        width: 400px;
    }

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

@media (max-width: 1060px) {
    .site-header {
        transition: border-color 280ms ease;
    }

    .site-header.is-scrolled,
    body.menu-open .site-header {
        background: var(--chalk);
    }

    body.menu-open .site-header {
        backdrop-filter: none;
    }

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

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

    .menu-button {
        display: grid;
        width: 44px;
        height: 44px;
        place-content: center;
        gap: 6px;
        border: 0;
        background: transparent;
        cursor: pointer;
    }

    .menu-button span:not(.sr-only) {
        display: block;
        width: 22px;
        height: 1px;
        background: var(--obsidian);
        transition: transform 220ms ease;
    }

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

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

    .mobile-nav {
        position: fixed;
        z-index: 99;
        inset: 81px 0 0;
        display: flex;
        flex-direction: column;
        gap: 0;
        padding: 2rem var(--page-pad);
        background: var(--chalk);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-10px);
        transition: transform 220ms ease;
    }

    .mobile-nav.is-open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .mobile-nav > a:not(.button) {
        padding: 1rem 0;
        border-bottom: 1px solid var(--line);
        font-family: var(--display);
        font-size: 1.7rem;
        font-weight: 500;
        letter-spacing: -0.025em;
    }

    .mobile-nav .button {
        margin-top: 2rem;
    }

    .mobile-contact-card {
        display: grid;
        gap: 0.35rem;
        margin-top: 1.5rem;
        padding: 1.25rem;
        border: 1px solid var(--line);
        border-radius: 12px;
        background: var(--limestone-light);
    }

    .mobile-contact-card span {
        color: var(--olive);
        font-family: var(--mono);
        font-size: 0.6rem;
        letter-spacing: 0.08em;
        text-transform: uppercase;
    }

    .mobile-contact-card a {
        width: max-content;
        font-size: 0.9rem;
        font-weight: 650;
    }

    .mobile-contact-card a:last-child {
        color: var(--terracotta);
        font-size: 0.78rem;
    }

    .hero {
        min-height: auto;
        padding-top: 8.5rem;
    }

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

    .hero-record {
        min-height: 520px;
    }

    .trust-inner,
    .split-heading,
    .services-heading,
    .process-heading,
    .home-guide-panel,
    .practice-grid,
    .contact-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .trust-inner {
        padding-block: 1.5rem;
    }

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

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

    .outcome {
        min-height: auto;
        padding: 2rem 0 2.25rem;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .outcome + .outcome {
        padding-left: 0;
    }

    .outcome h3 {
        margin-top: 2.5rem;
    }

    .home-guide-visual {
        min-height: 460px;
    }

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

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

    .process-list li:nth-child(3),
    .process-list li:nth-child(4) {
        border-top: 1px solid rgba(21, 24, 21, 0.18);
    }

    .contact-grid {
        gap: 4rem;
    }

    .privacy-layout {
        grid-template-columns: 1fr;
    }

    .privacy-nav {
        position: static;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        padding-bottom: 2rem;
        border-bottom: 1px solid var(--line);
    }

    .privacy-nav span {
        grid-column: 1 / -1;
    }

    .contact-note {
        max-width: 600px;
    }
}

@media (max-width: 720px) {
    :root {
        --page-pad: 1.25rem;
        --header-height: 70px;
    }

    body {
        font-size: 1.05rem;
    }

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

    .wordmark {
        width: 175px;
    }

    .wordmark-footer {
        width: min(250px, 100%);
    }

    .mobile-nav {
        inset: 69px 0 0;
    }

    .hero {
        padding: 6.5rem 0 3.5rem;
    }

    .hero-grid {
        gap: 2.25rem;
    }

    .hero h1 {
        max-width: 570px;
        font-size: clamp(2.25rem, 8vw, 2.6rem);
        line-height: 0.98;
    }

    .hero-intro {
        font-size: 1.03rem;
    }

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

    .hero-actions .button {
        width: 100%;
    }

    .text-link {
        width: max-content;
    }

    .hero-record {
        min-height: 430px;
        padding: 1rem;
        border-radius: 14px;
    }

    .record-visual {
        min-height: 280px;
    }

    .record-details div:nth-child(2) {
        display: none;
    }

    .trust-inner {
        gap: 1.5rem;
    }

    .audience-list {
        gap: 0.8rem;
    }

    .audience-list span {
        font-size: 0.58rem;
    }

    .section {
        padding-block: 3.75rem;
    }

    .section-heading {
        margin-bottom: 1.75rem;
    }

    h2 {
        font-size: clamp(2rem, 8vw, 2.4rem);
        line-height: 1.03;
    }

    .split-heading,
    .services-heading,
    .process-heading {
        gap: 1.5rem;
    }

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

    .service-card,
    .service-featured {
        min-height: 290px;
    }

    .service-featured {
        grid-row: auto;
    }

    .service-card h3,
    .service-card:not(.service-featured) h3 {
        font-size: 1.9rem;
    }

    .home-guide {
        padding-block: 3.75rem;
    }

    .home-guide-panel {
        border-radius: 14px;
    }

    .home-guide-copy {
        padding: 2rem 1.5rem 2.5rem;
    }

    .home-guide-copy h2 {
        font-size: clamp(2.15rem, 9vw, 2.75rem);
    }

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

    .home-guide-button {
        width: 100%;
    }

    .home-guide-visual {
        min-height: 340px;
    }

    .home-guide-visual figcaption {
        align-items: flex-start;
        flex-direction: column;
        gap: 0.2rem;
    }

    .process-list {
        display: block;
        border-top: 0;
        border-left: 1px solid rgba(21, 24, 21, 0.24);
    }

    .process-list li,
    .process-list li + li {
        min-height: auto;
        padding: 0 0 2.5rem 2rem;
        border: 0;
    }

    .process-list li:nth-child(3),
    .process-list li:nth-child(4) {
        border-top: 0;
    }

    .process-list li::before {
        top: 0;
        left: -5px;
    }

    .process-list h3 {
        margin: 1rem 0 0.6rem;
    }

    .practice-grid {
        gap: 2.5rem;
    }

    .practice-panel {
        min-height: 360px;
    }

    .practice-points {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        gap: 2.5rem;
    }

    .project-form {
        margin-inline: -0.35rem;
        padding: 1.25rem;
    }

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

    .upload-field {
        grid-template-columns: auto 1fr;
    }

    .upload-action {
        display: none;
    }

    .upload-field.is-selecting .upload-action {
        display: inline-flex;
        grid-column: 2;
        justify-self: start;
    }

    .faq-grid {
        gap: 3rem;
    }

    .faq-list summary {
        min-height: 82px;
        font-size: 0.84rem;
    }

    .footer-top {
        grid-template-columns: 1fr;
        padding-bottom: 3.5rem;
    }

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

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

    .back-to-top {
        right: 1rem;
        bottom: 4.9rem;
        width: 44px;
        height: 44px;
    }

    .cookie-banner {
        right: 0.75rem;
        left: 0.75rem;
        bottom: 0.75rem;
        width: calc(100vw - 1.5rem);
        max-height: calc(100vh - 1.5rem);
        padding: 1.35rem;
        overflow-y: auto;
        border-radius: 13px;
    }

    .cookie-banner-actions {
        grid-template-columns: 1fr;
    }

    .cookie-choice-primary {
        grid-column: 1;
        grid-row: 1;
    }

    .cookie-choice-secondary {
        grid-column: 1;
        grid-row: 2;
    }

    .privacy-hero {
        padding-top: 7.5rem;
    }

    .privacy-hero h1 {
        font-size: clamp(2.7rem, 14vw, 4.3rem);
    }

    .privacy-nav {
        grid-template-columns: 1fr;
    }

    .privacy-nav span {
        grid-column: auto;
    }

    body.cookie-banner-visible .back-to-top {
        opacity: 0;
        pointer-events: none;
    }

    .mobile-action {
        position: fixed;
        z-index: 80;
        right: 0.75rem;
        bottom: 0.75rem;
        left: 0.75rem;
        display: grid;
        grid-template-columns: 1fr auto;
        align-items: center;
        overflow: hidden;
        border: 1px solid rgba(255, 253, 248, 0.16);
        border-radius: 11px;
        background: rgba(21, 24, 21, 0.94);
        color: var(--paper);
        box-shadow: 0 14px 36px rgba(21, 24, 21, 0.24);
        opacity: 0;
        pointer-events: none;
        transform: translateY(120%);
        backdrop-filter: blur(12px);
        transition: opacity 250ms ease, transform 250ms ease;
    }

    .mobile-action.is-visible {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .mobile-action a {
        padding: 0.9rem 1rem;
        font-size: 0.72rem;
        font-weight: 650;
    }

    .mobile-action a:last-child {
        border-left: 1px solid rgba(255, 253, 248, 0.16);
        color: var(--limestone);
    }
}

@media (min-width: 410px) and (max-width: 720px) {
    :root {
        --header-height: 92px;
    }

    .header-inner {
        min-height: 92px;
        padding-inline: 0.5rem;
    }

    .site-header .wordmark {
        width: 350px;
    }

    .mobile-nav {
        inset-block-start: 91px;
    }

    .hero {
        padding-top: 7.5rem;
    }
}

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

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

    .reveal {
        opacity: 1;
        transform: none;
    }
}
