:root {
    color-scheme: light;
    --ink: #181512;
    --charcoal: #26211c;
    --charcoal-soft: #332c25;
    --stone: #f3eee7;
    --stone-deep: #e6dccf;
    --paper: #fbf8f2;
    --paper-alt: #f7f1e8;
    --mushroom: #b8a995;
    --wood: #8b6a4c;
    --wood-dark: #60452f;
    --line: rgba(38, 33, 28, 0.15);
    --line-light: rgba(255, 255, 255, 0.2);
    --white: #fffdf8;
    --error: #9d3329;
    --success: #436144;
    --shadow: 0 24px 80px rgba(24, 21, 18, 0.16);
    --serif: Georgia, "Times New Roman", serif;
    --heading: Helvetica, Arial, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --container: min(100% - 32px, 1180px);
    --header-height: 72px;
    --ease: cubic-bezier(.22, .61, .36, 1);
}

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

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

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: var(--sans);
    font-size: 15px;
    line-height: 1.62;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

body.is-locked {
    overflow: hidden;
}

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

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

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

button {
    cursor: pointer;
}

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

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 100;
    transform: translateY(-140%);
    background: var(--ink);
    color: var(--white);
    padding: 10px 14px;
    border-radius: 999px;
    transition: transform .2s var(--ease);
}

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

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    min-height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 16px clamp(18px, 4vw, 48px);
    color: var(--white);
    background: linear-gradient(180deg, rgba(24, 21, 18, .66), rgba(24, 21, 18, .18));
    transition: background .3s var(--ease), box-shadow .3s var(--ease), min-height .3s var(--ease);
}

.site-header.is-scrolled {
    min-height: 64px;
    background: rgba(30, 26, 22, .86);
    box-shadow: 0 18px 60px rgba(0, 0, 0, .16);
    backdrop-filter: blur(16px);
}

.brand {
    display: inline-flex;
    align-items: center;
    width: clamp(142px, 24vw, 196px);
}

.brand img {
    width: 100%;
    height: auto;
}

.header-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: clamp(10px, 2.5vw, 22px);
}

.language-switch {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: rgba(255, 253, 248, .72);
    font-size: 11px;
    line-height: 1;
    letter-spacing: .12em;
}

.language-switch__item {
    border: 0;
    padding: 0;
    background: transparent;
    color: inherit;
    font-size: 11px;
    letter-spacing: .12em;
    transition: color .2s var(--ease);
}

.language-switch__item.is-active,
.language-switch__item:hover {
    color: var(--white);
}

.button {
    --button-bg: transparent;
    --button-border: var(--ink);
    --button-color: var(--ink);
    display: inline-flex;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 20px;
    border: 1px solid var(--button-border);
    border-radius: 999px;
    background: var(--button-bg);
    color: var(--button-color);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .12em;
    line-height: 1.1;
    text-transform: uppercase;
    transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
}

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

.button--small {
    min-height: 36px;
    padding: 9px 14px;
    font-size: 10px;
}

.button--light {
    --button-border: rgba(255, 253, 248, .5);
    --button-color: var(--white);
    background: rgba(255, 253, 248, .07);
}

.button--light:hover,
.button--ghost:hover {
    --button-bg: var(--white);
    --button-border: var(--white);
    --button-color: var(--ink);
}

.button--primary {
    --button-bg: var(--wood);
    --button-border: var(--wood);
    --button-color: var(--white);
}

.button--primary:hover {
    --button-bg: var(--wood-dark);
    --button-border: var(--wood-dark);
}

.button--ghost {
    --button-border: rgba(255, 253, 248, .52);
    --button-color: var(--white);
}

.button--ghost-dark {
    --button-border: rgba(24, 21, 18, .36);
    --button-color: var(--ink);
}

.button--ghost-dark:hover,
.button--dark:hover {
    --button-bg: var(--wood);
    --button-border: var(--wood);
    --button-color: var(--white);
}

.button--dark {
    --button-bg: var(--ink);
    --button-border: var(--ink);
    --button-color: var(--white);
}

.hero {
    position: relative;
    min-height: 100svh;
    display: grid;
    align-items: center;
    overflow: hidden;
    color: var(--white);
    background: var(--charcoal);
    padding: calc(var(--header-height) + 42px) 0 clamp(28px, 7vw, 64px);
}

.hero__image,
.hero__overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero__image {
    z-index: 0;
    object-fit: cover;
    object-position: center;
    opacity: 1;
    transform: scale(1.025);
    transition: none;
}

.hero__image.is-active {
    opacity: 1;
    transform: scale(1.025);
}

.hero__image:not(:first-of-type) {
    display: none !important;
}

.hero__overlay {
    z-index: 1;
    background:
        linear-gradient(180deg, rgba(10, 9, 8, .82) 0%, rgba(10, 9, 8, .58) 32%, rgba(10, 9, 8, .94) 100%),
        linear-gradient(90deg, rgba(10, 9, 8, .88) 0%, rgba(10, 9, 8, .46) 65%);
}

.hero__content {
    position: relative;
    z-index: 2;
    width: var(--container);
    margin: 0 auto;
}

.eyebrow,
.section-kicker {
    margin: 0 0 14px;
    color: var(--wood);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .18em;
    line-height: 1.2;
    text-transform: uppercase;
}

.hero .eyebrow {
    color: rgba(255, 253, 248, .72);
}

.hero__intro {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 10px 16px;
    margin-bottom: 14px;
}

.hero__intro .eyebrow {
    margin-bottom: 0;
}

.hero__promise {
    margin: 0;
    color: rgba(255, 253, 248, .82);
    font-size: clamp(.86rem, 1.2vw, .96rem);
    font-weight: 600;
    line-height: 1.3;
}

h1,
h2,
h3 {
    margin: 0;
    font-family: var(--heading);
    font-weight: 400;
    letter-spacing: 0;
    text-wrap: balance;
}

h1 {
    max-width: 940px;
    font-size: clamp(2.05rem, 4.45vw, 3.65rem);
    line-height: .98;
}

h2 {
    font-size: clamp(1.55rem, 2.75vw, 2.28rem);
    line-height: 1.06;
}

.hero__text {
    max-width: 620px;
    margin: 18px 0 0;
    color: rgba(255, 253, 248, .84);
    font-size: clamp(.94rem, 1.7vw, 1.08rem);
    line-height: 1.6;
}

.hero__copy-grid {
    display: grid;
    gap: 0;
    align-items: end;
}

.hero__support {
    max-width: 620px;
    margin: 0;
    color: rgba(255, 253, 248, .8);
    font-size: clamp(.9rem, 1.35vw, 1rem);
    line-height: 1.55;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.hero__aside {
    position: relative;
    z-index: 2;
    width: var(--container);
    margin: clamp(30px, 6vw, 58px) auto 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 0;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 253, 248, .24);
    color: rgba(255, 253, 248, .78);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.hero__aside span {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
}

.hero__aside span:not(:last-child)::after {
    content: "|";
    margin: 0 clamp(8px, 1.25vw, 18px);
    color: rgba(255, 253, 248, .42);
}

@media (max-width: 899px) {
    .hero__aside {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px 14px;
    }

    .hero__aside span {
        justify-content: center;
        text-align: center;
        white-space: normal;
    }

    .hero__aside span:not(:last-child)::after {
        content: none;
    }
}

.section {
    padding: clamp(58px, 8vw, 104px) 0;
}

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

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

.section__header {
    width: var(--container);
    margin: 0 auto clamp(28px, 5vw, 52px);
}

.section__header p:not(.section-kicker) {
    max-width: 640px;
    margin: 14px 0 0;
    color: rgba(24, 21, 18, .68);
    font-size: clamp(.9rem, 1.18vw, .98rem);
    line-height: 1.6;
}

.section__header p:not(.section-kicker):empty {
    display: none;
}

.section--dark .section__header p:not(.section-kicker) {
    color: rgba(255, 253, 248, .7);
}

.section__header--split {
    display: grid;
    gap: 24px;
}

.project-grid {
    width: var(--container);
    margin: 0 auto;
    display: grid;
    gap: 14px;
}

.project-tile {
    position: relative;
    min-height: 340px;
    overflow: hidden;
    background: var(--stone-deep);
    isolation: isolate;
}

.project-tile::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(24, 21, 18, 0) 28%, rgba(24, 21, 18, .76) 100%);
    opacity: .82;
    transition: opacity .35s var(--ease);
}

.project-tile img {
    width: 100%;
    height: 100%;
    min-height: inherit;
    object-fit: cover;
    transition: transform .6s var(--ease), filter .6s var(--ease);
}

.project-tile__content {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 20px;
    z-index: 2;
    color: var(--white);
}

.project-tile__type {
    display: block;
    margin-bottom: 6px;
    color: rgba(255, 253, 248, .7);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.project-tile__title {
    display: block;
    font-family: var(--serif);
    font-size: clamp(1.35rem, 4.2vw, 2.05rem);
    line-height: 1.04;
}

.service-list {
    width: var(--container);
    margin: 0 auto;
    display: grid;
    border-top: 1px solid var(--line);
}

.service-item {
    display: grid;
    grid-template-columns: 58px 1fr;
    align-items: center;
    gap: 18px;
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
}

.service-item__image {
    width: 58px;
    height: 74px;
    overflow: hidden;
    background: var(--stone-deep);
}

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

.service-item__content {
    display: grid;
    gap: 5px;
}

.service-item__title {
    font-family: var(--serif);
    font-size: clamp(1.28rem, 4.2vw, 1.92rem);
    line-height: 1.08;
}

.service-item__text {
    max-width: 660px;
    color: rgba(24, 21, 18, .65);
    font-size: .95rem;
}

.process-list {
    width: var(--container);
    margin: 0 auto;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 1px;
    counter-reset: process;
    background: var(--line-light);
}

.process-item {
    counter-increment: process;
    display: grid;
    align-content: start;
    grid-template-rows: auto minmax(64px, auto) auto;
    gap: 16px;
    padding: clamp(22px, 3vw, 30px);
    background: var(--charcoal);
}

.process-item__number {
    color: var(--mushroom);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .16em;
}

.process-item__title {
    font-family: var(--serif);
    font-size: clamp(1.12rem, 1.9vw, 1.46rem);
    line-height: 1.1;
    align-self: start;
}

.process-item__text {
    align-self: start;
    color: rgba(255, 253, 248, .68);
    font-size: .88rem;
    line-height: 1.55;
}

.catalog-band {
    position: relative;
    display: grid;
    min-height: 620px;
    align-items: end;
    overflow: hidden;
    background: var(--charcoal);
    color: var(--white);
}

.catalog-band__image,
.catalog-band__image::after {
    position: absolute;
    inset: 0;
}

.catalog-band__image::after {
    content: "";
    background:
        linear-gradient(180deg, rgba(24, 21, 18, .2), rgba(24, 21, 18, .88)),
        linear-gradient(90deg, rgba(24, 21, 18, .76), rgba(24, 21, 18, .1));
}

.catalog-band__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.catalog-band__content {
    position: relative;
    z-index: 2;
    width: var(--container);
    margin: 0 auto;
    padding: clamp(72px, 12vw, 124px) 0;
}

.catalog-band__content p:not(.section-kicker) {
    max-width: 560px;
    color: rgba(255, 253, 248, .74);
    font-size: .96rem;
}

.catalog-band .button {
    margin-top: 16px;
}

.instagram-feed-section {
    background: var(--paper);
    padding: clamp(34px, 6vw, 72px) 0 clamp(48px, 7vw, 84px);
    overflow-x: hidden;
}

.instagram-feed-section__header {
    width: var(--container);
    margin: 0 auto clamp(20px, 3vw, 30px);
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(280px, .55fr);
    gap: clamp(18px, 4vw, 54px);
    align-items: end;
}

.instagram-feed-section__header h2 {
    max-width: 620px;
    margin-bottom: 0;
}

.instagram-feed-section__header p:not(.section-kicker) {
    max-width: 520px;
    margin: 0;
    color: rgba(24, 21, 18, .68);
    font-size: clamp(.9rem, 1.2vw, .98rem);
    line-height: 1.55;
}

.instagram-feed-section__embed {
    width: 100%;
    min-height: 260px;
    margin: 0 auto;
    padding: clamp(10px, 2vw, 22px) 0;
    background: var(--white);
    box-shadow: 0 18px 50px rgba(24, 21, 18, .08);
    overflow-x: hidden;
}

.quote-section {
    background: var(--paper);
    padding-top: clamp(58px, 8vw, 102px);
    padding-bottom: clamp(62px, 9vw, 112px);
}

.quote-layout {
    width: var(--container);
    margin: 0 auto;
    display: grid;
    gap: clamp(34px, 7vw, 84px);
}

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

.quote-copy h2 {
    max-width: 520px;
    font-size: clamp(1.5rem, 2.5vw, 2.02rem);
}

.quote-copy p:not(.section-kicker) {
    color: rgba(24, 21, 18, .68);
    font-size: clamp(.9rem, 1.18vw, .98rem);
    line-height: 1.6;
}

.quote-note {
    margin-top: 28px;
    padding-top: 22px;
    border-top: 1px solid var(--line);
    display: grid;
    gap: 4px;
}

.quote-note span {
    color: rgba(24, 21, 18, .62);
    font-size: 12px;
}

.quote-note a {
    width: fit-content;
    color: var(--wood-dark);
    font-weight: 700;
}

.quote-form {
    background: var(--white);
    padding: clamp(20px, 4vw, 34px);
    box-shadow: var(--shadow);
}

.form-grid {
    display: grid;
    gap: 18px;
}

.form-honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.field {
    display: grid;
    gap: 7px;
}

.field span {
    color: rgba(24, 21, 18, .78);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
    width: 100%;
    border: 0;
    border-bottom: 1px solid rgba(24, 21, 18, .24);
    border-radius: 0;
    background: transparent;
    color: var(--ink);
    padding: 11px 0 12px;
    outline: 0;
    transition: border-color .2s var(--ease);
}

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

.field input:focus,
.field select:focus,
.field textarea:focus {
    border-color: var(--wood);
}

.field.is-invalid input,
.field.is-invalid select,
.field.is-invalid textarea {
    border-color: var(--error);
}

.field--file input {
    border: 1px dashed rgba(24, 21, 18, .28);
    padding: 14px;
}

.field--file small:not(.field-error) {
    color: rgba(24, 21, 18, .56);
    font-size: 11px;
}

.field-error {
    min-height: 17px;
    color: var(--error);
    font-size: 11px;
}

.form-submit {
    width: 100%;
    margin-top: 24px;
}

.recaptcha-field {
    display: flex;
    justify-content: center;
    min-height: 78px;
    margin-top: 20px;
    overflow: hidden;
}

.recaptcha-field.is-missing-config {
    min-height: auto;
    color: var(--error);
    font-size: 11px;
}

@media (max-width: 420px) {
    .recaptcha-field {
        min-height: 144px;
    }
}

.form-submit.is-loading {
    opacity: .72;
    pointer-events: none;
}

.form-status {
    min-height: 24px;
    margin: 18px 0 0;
    color: rgba(24, 21, 18, .7);
}

.form-status.is-success {
    color: var(--success);
}

.form-status.is-error {
    color: var(--error);
}

.proposal-page {
    background: var(--charcoal);
}

.proposal-hero {
    position: relative;
    min-height: 100svh;
    display: grid;
    align-items: start;
    gap: clamp(18px, 4vw, 34px);
    overflow: hidden;
    padding: calc(var(--header-height) + 14px) clamp(16px, 4vw, 48px) clamp(34px, 5vw, 58px);
    background: var(--charcoal);
    color: var(--white);
    isolation: isolate;
}

.proposal-hero__copy {
    position: relative;
    z-index: 2;
    max-width: 720px;
    align-self: start;
    padding-top: clamp(24px, 7vh, 70px);
}

.proposal-hero__copy h1 {
    max-width: 700px;
    font-size: clamp(2.05rem, 4.2vw, 3.65rem);
}

.proposal-hero__text {
    max-width: 600px;
    margin: 18px 0 0;
    color: rgba(255, 253, 248, .78);
    font-size: clamp(.92rem, 1.55vw, 1.02rem);
}

.proposal-hero .eyebrow {
    color: rgba(255, 253, 248, .72);
}

.proposal-hero .button--ghost-dark {
    --button-border: rgba(255, 253, 248, .56);
    --button-color: var(--white);
}

.proposal-hero .button--ghost-dark:hover {
    --button-bg: var(--white);
    --button-border: var(--white);
    --button-color: var(--ink);
}

.proposal-hero__form {
    align-self: start;
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 405px;
    padding: clamp(16px, 2vw, 22px);
    color: var(--ink);
}

.proposal-hero__form h2 {
    margin-top: 0;
    font-size: clamp(1.22rem, 2vw, 1.58rem);
    line-height: 1.08;
}

.proposal-form-text {
    margin: 6px 0 10px;
    color: rgba(24, 21, 18, .64);
    font-size: .8rem;
    line-height: 1.55;
}

.proposal-hero__form .section-kicker {
    margin-bottom: 8px;
}

.proposal-hero__form .form-grid {
    gap: 8px 14px;
}

.proposal-hero__form .field {
    gap: 3px;
}

.proposal-hero__form .field span {
    font-size: 9px;
    letter-spacing: .1em;
}

.proposal-hero__form .field input,
.proposal-hero__form .field select,
.proposal-hero__form .field textarea {
    padding: 6px 0 7px;
    font-size: .84rem;
}

.proposal-hero__form .field textarea {
    height: 64px;
    min-height: 64px;
}

.proposal-hero__form .field-error {
    min-height: 0;
    font-size: 10px;
    line-height: 1.25;
}

.proposal-hero__form .field-error:empty {
    display: none;
}

.proposal-hero__form .form-submit {
    min-height: 40px;
    margin-top: 12px;
}

.proposal-hero__form .form-status {
    min-height: 0;
    margin-top: 8px;
}

.proposal-hero__media {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    background: var(--stone-deep);
}

.proposal-hero__media[data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
}

.proposal-hero__media::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(180deg, rgba(24, 21, 18, .82), rgba(24, 21, 18, .56) 36%, rgba(24, 21, 18, .92)),
        linear-gradient(90deg, rgba(24, 21, 18, .84), rgba(24, 21, 18, .42) 58%, rgba(24, 21, 18, .8));
}

.proposal-hero__media img {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
    transform: scale(1.025);
    transition: none;
}

.proposal-hero__media img.is-active {
    opacity: 1;
    transform: scale(1.025);
}

.proposal-hero__media img:not(:first-of-type) {
    display: none !important;
}

.proposal-hero__aside {
    position: absolute;
    left: clamp(16px, 4vw, 48px);
    right: clamp(16px, 4vw, 48px);
    bottom: clamp(34px, 5vw, 58px);
    z-index: 2;
    display: none;
    width: auto;
    max-width: min(940px, calc(100% - 32px));
    color: rgba(255, 253, 248, .82);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .12em;
    line-height: 1.2;
    text-transform: uppercase;
}

.proposal-hero__aside span {
    padding-top: 13px;
    border-top: 1px solid rgba(255, 253, 248, .32);
}

.final-cta {
    padding: clamp(62px, 9vw, 108px) 0;
    background: var(--stone);
}

.final-cta > div {
    width: var(--container);
    margin: 0 auto;
}

.final-cta__layout {
    display: grid;
    gap: clamp(28px, 6vw, 72px);
    align-items: start;
}

.final-cta p:not(.section-kicker) {
    max-width: 520px;
    color: rgba(24, 21, 18, .66);
    font-size: clamp(.9rem, 1.16vw, .98rem);
    line-height: 1.58;
}

.final-cta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 26px;
}

.final-cta__actions .button {
    min-height: 44px;
    padding-inline: 16px;
}

.final-cta__service-area {
    max-width: 620px;
}

.final-cta__service-area h3 {
    margin: 0 0 18px;
    color: var(--wood-dark);
    font-size: clamp(.98rem, 1.55vw, 1.16rem);
    font-weight: 700;
    line-height: 1.25;
}

.final-cta__service-area p {
    margin: 0 0 16px;
}

.site-footer {
    background: var(--charcoal);
    color: var(--white);
    padding: clamp(58px, 9vw, 92px) 0 28px;
}

.site-footer__main,
.site-footer__bottom {
    width: var(--container);
    margin: 0 auto;
}

.site-footer__main {
    display: grid;
    gap: 38px;
}

.footer-brand img {
    width: min(190px, 60vw);
}

.footer-brand.footer-bold p {
    max-width: 440px;
    margin: 18px 0 0;
    color: rgba(255, 253, 248, .5);
    font-family: var(--heading);
    font-size: clamp(.98rem, 1.55vw, 1.16rem);
    font-weight: 700;
    line-height: 1.25;
}

.footer-brand p,
.footer-social p {
    max-width: 360px;
    color: rgba(255, 253, 248, .64);
    font-size: .94rem;
    line-height: 1.55;
}

.footer-contact {
    display: grid;
    gap: 12px;
    color: rgba(255, 253, 248, .78);
    font-size: .94rem;
    font-style: normal;
}

.footer-contact__item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
}

.footer-contact__item svg {
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
    fill: currentColor;
}

.footer-contact__item--instagram {
    color: var(--mushroom);
    font-weight: 700;
}

.footer-contact__item--map {
    color: rgba(255, 253, 248, .88);
}

.footer-contact a:hover,
.site-footer__bottom a:hover {
    color: var(--mushroom);
}

.footer-map {
    width: 100%;
    max-width: 520px;
    aspect-ratio: 16 / 10;
    min-height: 220px;
    margin-top: 18px;
    overflow: hidden;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, .16);
    background: rgba(255, 255, 255, .06);
    box-shadow: 0 18px 48px rgba(0, 0, 0, .2);
}

.footer-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(.15) saturate(.85) contrast(.98) brightness(.92);
}

.site-footer__bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 14px;
    margin-top: 52px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, .14);
    color: rgba(255, 253, 248, .54);
    font-size: 12px;
}

.floating-actions {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 45;
    display: grid;
    gap: 10px;
}

.floating-action {
    position: relative;
    width: 54px;
    height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(38, 33, 28, .9);
    color: var(--white);
    box-shadow: 0 16px 48px rgba(0, 0, 0, .22);
    backdrop-filter: blur(16px);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .1em;
    transition: transform .25s var(--ease), background .25s var(--ease);
}

.floating-action svg {
    width: 26px;
    height: 26px;
    fill: currentColor;
}

.floating-action:hover {
    transform: translateY(-3px);
    background: var(--wood);
}

.floating-action--whatsapp {
    background: rgba(35, 76, 52, .92);
}

.floating-action__label {
    position: absolute;
    right: 64px;
    top: 50%;
    width: max-content;
    max-width: 180px;
    transform: translate(8px, -50%);
    opacity: 0;
    pointer-events: none;
    padding: 8px 10px;
    border-radius: 999px;
    background: var(--ink);
    color: var(--white);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0;
    text-transform: none;
    transition: opacity .2s var(--ease), transform .2s var(--ease);
}

.floating-action:hover .floating-action__label,
.floating-action:focus-visible .floating-action__label {
    opacity: 1;
    transform: translate(0, -50%);
}

[data-reveal] {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .7s var(--ease), transform .7s var(--ease);
}

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

@media (max-width: 379px) {
    .header-actions {
        gap: 8px;
    }

    .button--small {
        padding-inline: 11px;
        letter-spacing: .08em;
    }
}

@media (max-width: 520px) {
    .site-header {
        gap: 10px;
        padding-inline: 16px;
    }

    .brand {
        width: clamp(102px, 30vw, 136px);
    }

    .header-actions {
        gap: 8px;
    }

    .language-switch,
    .language-switch__item {
        font-size: 11px;
        letter-spacing: .1em;
    }

    .button--small {
        min-height: 36px;
        padding: 9px 12px;
        font-size: 9px;
        letter-spacing: .08em;
        white-space: nowrap;
    }

    .instagram-feed-section {
        padding-top: 30px;
    }

    .instagram-feed-section__header {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .proposal-hero__copy h1 {
        font-size: clamp(1.86rem, 10.5vw, 2.6rem);
    }

    .proposal-hero__aside {
        display: none;
    }
}

@media (min-width: 640px) {
    :root {
        --container: min(100% - 48px, 1180px);
    }

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

    .project-tile--wide {
        grid-column: span 2;
    }

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

    .field--full {
        grid-column: 1 / -1;
    }

    .site-footer__main {
        grid-template-columns: 1.1fr .85fr 1fr;
        align-items: start;
    }
}

@media (min-width: 900px) {
    :root {
        --header-height: 88px;
    }

    .section__header--split {
        grid-template-columns: minmax(0, .95fr) minmax(300px, .55fr);
        align-items: end;
    }

    .section__header--split p:not(.section-kicker) {
        margin-top: 0;
    }

    .project-grid {
        grid-template-columns: repeat(4, 1fr);
        grid-auto-flow: dense;
    }

    .project-tile {
        min-height: 410px;
    }

    .project-tile--tall {
        grid-row: span 2;
        min-height: 834px;
    }

    .project-tile--wide {
        grid-column: span 2;
    }

    .project-tile--large {
        grid-column: span 2;
        grid-row: span 2;
        min-height: 834px;
    }

    .service-item {
        grid-template-columns: 88px minmax(260px, .55fr) 1fr;
        gap: 28px;
        padding: 24px 0;
    }

    .service-item__image {
        width: 88px;
        height: 112px;
    }

    .service-item__content {
        grid-template-columns: minmax(260px, .5fr) 1fr;
        align-items: center;
        gap: 32px;
    }

    .process-list {
        grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    }

    .process-item {
        min-height: 286px;
        grid-template-rows: 28px 96px auto;
        padding-inline: clamp(18px, 2vw, 24px);
    }

    .quote-layout {
        grid-template-columns: minmax(300px, .68fr) minmax(480px, 1fr);
        align-items: start;
    }

    .quote-copy {
        position: sticky;
        top: 120px;
    }

    .final-cta__layout {
        grid-template-columns: minmax(0, 1fr) minmax(300px, .52fr);
    }

    .proposal-hero {
        grid-template-columns: minmax(460px, 640px) minmax(320px, 405px);
        grid-template-areas:
            "copy form";
        justify-content: center;
        align-items: start;
        column-gap: clamp(28px, 4vw, 56px);
        padding-top: calc(var(--header-height) + 16px);
    }

    .proposal-hero__copy {
        grid-area: copy;
        padding-top: clamp(34px, 6vh, 68px);
    }

    .proposal-hero__form {
        grid-area: form;
        margin-top: clamp(18px, 4vh, 36px);
    }

    .proposal-hero__aside {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 14px;
    }
}

@media (min-width: 1180px) {
    .hero {
        min-height: 820px;
    }

    .hero__content {
        padding-top: 48px;
    }

    .proposal-hero {
        min-height: 100svh;
    }
}

@media (hover: hover) {
    .project-tile:hover img {
        transform: scale(1.045);
        filter: saturate(.9);
    }

    .project-tile:hover::after {
        opacity: 1;
    }
}

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

    [data-reveal] {
        opacity: 1;
        transform: none;
    }
}
