:root {
    --ink: #191919;
    --charcoal: #2f2e2e;
    --charcoal-soft: #383636;
    --paper: #f5f2eb;
    --paper-dark: #e9e4da;
    --gold: #a8894f;
    --muted: #77736c;
    --line: rgba(25, 25, 25, .16);
    --serif: "Roboto Slab", Georgia, serif;
    --layout-max: 1920px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: var(--serif);
    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    overflow: hidden;
}

.home-page {
    color: var(--paper);
    background: var(--charcoal);
}

.home-page .site-header {
    color: var(--ink);
    border-color: var(--line);
    background: rgba(245, 242, 235, .94);
}

.home-page .main-menu {
    color: var(--muted);
}

.home-page .language-menu {
    border-color: var(--line);
}

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

button {
    color: inherit;
    font: inherit;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 104px;
    padding: 1.25rem clamp(1.25rem, 5vw, 5.5rem);
    border-bottom: 1px solid var(--line);
    background: rgba(245, 242, 235, .9);
    -webkit-backdrop-filter: blur(12px) saturate(.9);
    backdrop-filter: blur(12px) saturate(.9);
    width: min(100%, var(--layout-max));
    margin-inline: auto;
}

.header-logo {
    position: relative;
    display: block;
}

.header-logo img {
    width: clamp(135px, 13vw, 190px);
    height: auto;
    transform-origin: 50% 50%;
    clip-path: inset(0 100% 0 0);
    animation: header-logo-writing 5.2s cubic-bezier(.62, 0, .28, 1) .35s forwards;
    transition: filter .45s ease, transform .45s cubic-bezier(.2, .78, .22, 1);
}

.header-logo::after {
    position: absolute;
    top: 48%;
    left: 0;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #d8b66f;
    box-shadow: 0 0 8px rgba(216, 182, 111, .9), 0 0 18px rgba(216, 182, 111, .58);
    content: "";
    pointer-events: none;
    opacity: 0;
    animation: header-logo-writing-point 5.2s cubic-bezier(.62, 0, .28, 1) .35s forwards;
}

.header-logo:hover img,
.header-logo:focus-visible img {
    transform: scale(1.018);
    filter: drop-shadow(0 8px 12px rgba(168, 137, 79, .18));
}

.header-logo:focus-visible {
    outline: 1px solid var(--gold);
    outline-offset: .5rem;
}

@keyframes header-logo-writing {
    0% {
        opacity: 0;
        clip-path: inset(0 100% 0 0);
    }
    8% {
        opacity: 1;
    }
    92%, 100% {
        opacity: 1;
        clip-path: inset(0 0 0 0);
    }
}

@keyframes header-logo-writing-point {
    0%, 6% {
        left: 0;
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        left: calc(100% - 4px);
        opacity: 1;
    }
    100% {
        left: calc(100% - 4px);
        opacity: 0;
    }
}

.main-menu {
    display: flex;
    align-items: center;
    gap: clamp(1.3rem, 2.5vw, 3rem);
    color: var(--muted);
    font-size: .72rem;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.main-menu a {
    position: relative;
    padding: .5rem 0;
    border: 0;
    transition: color .3s ease;
}

.main-menu a:hover,
.main-menu a:focus-visible,
.main-menu a[aria-current="page"] {
    color: var(--gold);
    background: transparent;
}

.main-menu > a::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 1px;
    background: var(--gold);
    content: "";
    transform: scaleX(0);
    transition: transform .35s ease;
}

.main-menu > a:hover::after,
.main-menu > a:focus-visible::after,
.main-menu > a[aria-current="page"]::after {
    transform: scaleX(1);
}

.language-menu {
    display: flex;
    align-items: center;
    gap: .5rem;
    padding-left: clamp(.5rem, 1vw, 1.5rem);
    border-left: 1px solid var(--line);
}

.language-menu > span {
    display: inline-block;
    margin-inline: .12rem;
    color: var(--gold);
    font-size: .92rem;
    font-weight: 500;
    line-height: 1;
    opacity: 1;
}

.language-menu .active {
    color: var(--gold);
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 12px 8px;
    border: 0;
    background: transparent;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 1px;
    margin: 7px 0;
    background: currentColor;
    transition: transform .3s ease;
}

.page-shell {
    width: min(100%, var(--layout-max));
    margin-inline: auto;
    padding-inline: clamp(1.25rem, 6vw, 7rem);
}

.home-feature,
.site-footer {
    width: min(100%, var(--layout-max));
    margin-inline: auto;
}

.eyebrow,
.section-number {
    margin: 0;
    color: var(--gold);
    font-size: .65rem;
    font-weight: 500;
    letter-spacing: .19em;
    text-transform: uppercase;
}

.home-hero {
    --halo-x: 78%;
    --halo-y: 42%;
    position: relative;
    display: grid;
    align-content: center;
    min-height: calc(100svh - 105px);
    padding-block: clamp(5rem, 12vh, 9rem);
    overflow: hidden;
    isolation: isolate;
}

.home-hero > :not(.hero-atmosphere) {
    position: relative;
    z-index: 1;
}

.hero-atmosphere {
    position: absolute;
    z-index: 0;
    top: 9%;
    right: clamp(2rem, 5vw, 6rem);
    width: min(42vw, 720px);
    height: 67%;
    opacity: .58;
    pointer-events: none;
    background:
        radial-gradient(
            circle at var(--halo-x) var(--halo-y),
            rgba(168, 137, 79, .12),
            transparent 24%
        ),
        linear-gradient(rgba(245, 242, 235, .035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(245, 242, 235, .035) 1px, transparent 1px);
    background-size: auto, 64px 64px, 64px 64px;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 24%, #000 88%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 24%, #000 88%, transparent);
}

.hero-atmosphere span {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(168, 137, 79, .5), transparent);
    transform-origin: right center;
    animation: hero-line-drift 9s ease-in-out infinite alternate;
}

.hero-atmosphere span::after {
    position: absolute;
    top: -2px;
    right: 24%;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 16px rgba(168, 137, 79, .7);
    content: "";
}

.hero-atmosphere span:nth-child(1) {
    top: 24%;
    right: 7%;
    width: 66%;
    transform: rotate(-13deg);
}

.hero-atmosphere span:nth-child(2) {
    top: 52%;
    right: 0;
    width: 78%;
    animation-delay: -3s;
    transform: rotate(9deg);
}

.hero-atmosphere span:nth-child(3) {
    top: 76%;
    right: 13%;
    width: 57%;
    animation-delay: -6s;
    transform: rotate(-5deg);
}

.hero-atmosphere i {
    position: absolute;
    width: 7px;
    height: 7px;
    border: 1px solid rgba(245, 242, 235, .38);
    border-radius: 50%;
    animation: hero-point-pulse 5s ease-in-out infinite;
}

.hero-atmosphere i:nth-of-type(1) {
    top: 22%;
    right: 17%;
}

.hero-atmosphere i:nth-of-type(2) {
    top: 54%;
    right: 45%;
    animation-delay: -1.7s;
}

.hero-atmosphere i:nth-of-type(3) {
    top: 73%;
    right: 23%;
    animation-delay: -3.4s;
}

@keyframes hero-line-drift {
    from { filter: brightness(.7); opacity: .32; }
    to { filter: brightness(1.15); opacity: .72; }
}

@keyframes hero-point-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(168, 137, 79, 0); transform: scale(.8); }
    50% { box-shadow: 0 0 0 8px rgba(168, 137, 79, .05); transform: scale(1.15); }
}

.home-hero h1,
.page-hero h1 {
    max-width: 980px;
    margin: 1.5rem 0 2rem;
    font-size: clamp(2.7rem, 4.8vw, 5.2rem);
    font-weight: 300;
    line-height: 1.04;
    letter-spacing: -.045em;
}

.home-hero .eyebrow {
    font-size: clamp(.72rem, .75vw, .86rem);
}

.home-hero h1 {
    max-width: 1200px;
    font-size: clamp(2.7rem, 4.25vw, 4.8rem);
}

.home-hero h1 span {
    display: block;
}

.hero-foot {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
    margin-top: clamp(2rem, 8vh, 6rem);
}

.hero-copy {
    max-width: 590px;
    margin: 0;
    color: var(--muted);
    font-size: clamp(1rem, 1.5vw, 1.3rem);
    font-weight: 300;
    line-height: 1.7;
}

.text-link {
    position: relative;
    display: inline-flex;
    gap: .75rem;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: .85rem 1.35rem;
    border: 1px solid var(--gold);
    overflow: hidden;
    font-size: .7rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    isolation: isolate;
    transition: color .35s ease, box-shadow .35s ease, transform .35s ease;
}

.text-link::before,
.button-link::before,
.form-submit::before {
    position: absolute;
    z-index: -1;
    inset: 0;
    background: linear-gradient(105deg, transparent 30%, rgba(255, 239, 199, .3) 48%, transparent 66%);
    content: "";
    transform: translateX(-125%);
    transition: transform .72s cubic-bezier(.22, 1, .36, 1);
}

.text-link:hover,
.text-link:focus-visible,
.button-link:hover,
.button-link:focus-visible,
.form-submit:hover,
.form-submit:focus-visible {
    box-shadow: 0 10px 24px rgba(168, 137, 79, .16);
    transform: translateY(-2px);
}

.text-link:hover::before,
.text-link:focus-visible::before,
.button-link:hover::before,
.button-link:focus-visible::before,
.form-submit:hover::before,
.form-submit:focus-visible::before {
    transform: translateX(125%);
}

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

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

.home-feature {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(280px, .7fr);
    min-height: 76vh;
    border-top: 1px solid rgba(245, 242, 235, .16);
}

.feature-visual {
    position: relative;
    min-height: 520px;
    overflow: hidden;
    background:
        var(--charcoal)
        url("images/studio-vision-v2.png")
        center / cover no-repeat;
}

.feature-visual::before {
    content: none;
}

.feature-visual::after {
    content: none;
}

.connection-motion {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.connection-motion path {
    fill: none;
    stroke: rgba(221, 177, 93, .9);
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-dasharray: 2 98;
    filter: drop-shadow(0 0 7px rgba(221, 177, 93, .95));
    animation: connection-flow 8s linear infinite;
}

.connection-motion path:nth-of-type(2) {
    animation-delay: -3.2s;
    animation-duration: 10.5s;
}

.connection-motion path:nth-of-type(3) {
    animation-delay: -6s;
    animation-duration: 12s;
}

.connection-node {
    fill: #e4bd74;
    filter: drop-shadow(0 0 10px rgba(228, 189, 116, .95));
    transform-box: fill-box;
    transform-origin: center;
    animation: connection-node-pulse 3.8s ease-in-out infinite;
}

.connection-node.node-two {
    animation-delay: -1.3s;
}

.connection-node.node-three {
    animation-delay: -2.6s;
}

@keyframes connection-flow {
    from { stroke-dashoffset: 0; opacity: .3; }
    22%, 78% { opacity: 1; }
    to { stroke-dashoffset: -100; opacity: .3; }
}

@keyframes connection-node-pulse {
    0%, 100% { opacity: .45; transform: scale(.7); }
    50% { opacity: 1; transform: scale(1.65); }
}

.feature-copy {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: clamp(3rem, 6vw, 7rem);
    background: var(--charcoal-soft);
}

.feature-copy h2,
.home-cta h2 {
    margin: 1rem 0 2rem;
    font-size: clamp(2rem, 3.6vw, 4.2rem);
    font-weight: 300;
    line-height: 1.05;
    letter-spacing: -.04em;
}

.feature-copy p:not(.eyebrow) {
    color: rgba(245, 242, 235, .62);
    font-size: 1rem;
    line-height: 1.75;
}

.home-cta {
    padding-block: clamp(6rem, 13vw, 12rem);
    text-align: center;
}

.home-cta h2 {
    max-width: 1050px;
    margin-inline: auto;
}

.home-cta-copy {
    max-width: 620px;
    margin: 0 auto 2rem;
    color: rgba(245, 242, 235, .62);
    font-size: clamp(1rem, 1.35vw, 1.2rem);
    line-height: 1.7;
}

.home-page .hero-copy {
    color: rgba(245, 242, 235, .66);
}

.home-page .site-footer {
    border-color: rgba(245, 242, 235, .16);
    color: rgba(245, 242, 235, .55);
}

.page-hero {
    padding-block: clamp(5rem, 12vw, 10rem);
    color: var(--paper);
    background: var(--charcoal);
    border-bottom: 1px solid rgba(245, 242, 235, .16);
    box-shadow: 0 0 0 100vmax var(--charcoal);
    clip-path: inset(0 -100vmax);
}

.page-hero h1 {
    max-width: 980px;
    font-size: clamp(2.6rem, 4.3vw, 4.8rem);
}

.page-intro {
    max-width: 690px;
    margin: 0 0 0 auto;
    color: rgba(245, 242, 235, .62);
    font-size: clamp(1.15rem, 2vw, 1.7rem);
    font-weight: 300;
    line-height: 1.6;
}

.about-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, .82fr);
    gap: clamp(3rem, 7vw, 8rem);
    align-items: center;
}

.about-hero h1 {
    font-size: clamp(2.5rem, 4vw, 4.5rem);
}

.about-hero .eyebrow {
    font-size: clamp(.72rem, .75vw, .86rem);
}

.about-hero .page-intro {
    margin-left: 0;
}

.about-hero-visual {
    --image-x: 0px;
    --image-y: 0px;
    margin: 0;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(245, 242, 235, .14);
    background: var(--charcoal-soft);
    isolation: isolate;
}

.about-hero-visual::before {
    content: none;
}

.about-hero-visual::after {
    position: absolute;
    z-index: 1;
    inset: -35%;
    background: linear-gradient(
        115deg,
        transparent 38%,
        rgba(168, 137, 79, .12) 49%,
        rgba(245, 242, 235, .08) 51%,
        transparent 62%
    );
    content: "";
    opacity: 0;
    pointer-events: none;
    transform: translateX(-45%);
    transition:
        opacity .5s ease,
        transform 1.1s cubic-bezier(.22, 1, .36, 1);
}

.about-hero-visual:hover::after {
    opacity: 1;
    transform: translateX(35%);
}

.about-hero-visual img {
    width: 100%;
    min-height: 360px;
    max-height: 590px;
    object-fit: cover;
    object-position: center;
    transform: scale(1.035) translate3d(var(--image-x), var(--image-y), 0);
    transition: transform .35s cubic-bezier(.22, 1, .36, 1);
    will-change: transform;
}

.about-hero-visual:hover img {
    transform: scale(1.055) translate3d(var(--image-x), var(--image-y), 0);
}

.process-section {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr);
    gap: clamp(3rem, 7vw, 8rem);
    align-items: center;
    min-height: 72vh;
    padding-block: clamp(5rem, 9vw, 9rem);
    clip-path: inset(0 -100vmax);
}

.process-section-light {
    color: var(--ink);
    background: var(--paper);
    box-shadow: 0 0 0 100vmax var(--paper);
}

.process-section-dark {
    color: var(--paper);
    background: var(--charcoal);
    box-shadow: 0 0 0 100vmax var(--charcoal);
}

.process-image-right {
    grid-template-columns: minmax(360px, .92fr) minmax(0, 1.08fr);
}

.process-visual {
    position: relative;
    margin: 0;
    overflow: hidden;
    border: 1px solid rgba(168, 137, 79, .26);
    background: var(--charcoal);
    isolation: isolate;
}

.process-visual::before {
    content: none;
}

.process-visual::after {
    content: none;
}

.process-visual img {
    position: relative;
    z-index: 1;
    width: 100%;
    aspect-ratio: 3 / 2;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(.22, 1, .36, 1), filter .8s ease;
}

.process-connections {
    position: absolute;
    z-index: 2;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    pointer-events: none;
    transition: opacity .8s ease 1.1s;
}

.process-section.is-visible .process-connections {
    opacity: 1;
}

.process-connections path {
    fill: none;
    stroke: rgba(232, 190, 111, .98);
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-dasharray: 1.4 98.6;
    filter: drop-shadow(0 0 7px rgba(232, 190, 111, .95));
    animation: process-connection-flow 8.5s linear infinite;
    animation-play-state: paused;
}

.process-connections path:nth-of-type(2n) {
    animation-delay: -3.2s;
    animation-duration: 10.5s;
}

.process-connections path:nth-of-type(3n) {
    animation-delay: -6.1s;
    animation-duration: 12s;
}

.process-section.is-visible .process-connections path {
    animation-play-state: running;
}

.process-connections circle {
    fill: rgba(232, 190, 111, .24);
    stroke: rgba(232, 190, 111, .96);
    stroke-width: 2;
    filter: drop-shadow(0 0 6px rgba(232, 190, 111, .82));
    transform-box: fill-box;
    transform-origin: center;
    animation: process-node-pulse 4.6s ease-in-out infinite;
}

.process-connections circle:nth-of-type(2n) {
    animation-delay: -1.6s;
}

.process-connections circle:nth-of-type(3n) {
    animation-delay: -3.1s;
}

@keyframes process-connection-flow {
    from { stroke-dashoffset: 0; }
    to { stroke-dashoffset: -100; }
}

@keyframes process-node-pulse {
    0%, 100% { opacity: .42; transform: scale(.72); }
    50% { opacity: 1; transform: scale(1.35); }
}

.process-section:hover .process-visual img {
    filter: contrast(1.03) brightness(1.035);
    transform: scale(1.018);
}

.process-copy h2 {
    max-width: 670px;
    margin: 0 0 clamp(1.5rem, 3vw, 2.5rem);
    font-size: clamp(2.15rem, 3.7vw, 4.25rem);
    font-weight: 300;
    letter-spacing: -.04em;
    line-height: 1.08;
}

.process-copy {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 1s ease .38s, transform 1s cubic-bezier(.22, 1, .36, 1) .38s;
}

.process-section.is-visible .process-copy {
    opacity: 1;
    transform: none;
}

.process-copy p {
    max-width: 720px;
    margin: 0;
    color: var(--muted);
    font-size: clamp(1rem, 1.25vw, 1.18rem);
    line-height: 1.85;
}

.process-section-dark .process-copy p {
    color: rgba(245, 242, 235, .64);
}

.about-cta {
    padding-block: clamp(7rem, 12vw, 12rem);
    color: var(--paper);
    background: var(--charcoal);
    box-shadow: 0 0 0 100vmax var(--charcoal);
    clip-path: inset(0 -100vmax);
    text-align: center;
}

.about-cta .about-logo-writing {
    width: min(430px, 72%);
    margin: 0 auto clamp(2.5rem, 5vw, 4.5rem);
}

.about-cta h2 {
    margin: 0 auto 2rem;
    font-size: clamp(2.4rem, 4.2vw, 4.8rem);
    font-weight: 300;
    letter-spacing: -.04em;
    line-height: 1.08;
}

.about-cta > p {
    max-width: 930px;
    margin: 0 auto 2.5rem;
    color: rgba(245, 242, 235, .66);
    font-size: clamp(1rem, 1.25vw, 1.18rem);
    line-height: 1.85;
}

.about-cta strong {
    color: rgba(245, 242, 235, .88);
    font-weight: 400;
}

.services-list,
.work-list {
    padding-block: clamp(3rem, 7vw, 7rem);
}

.services-list {
    padding-block: clamp(2.5rem, 4vw, 4rem);
}

.services-visual {
    position: relative;
    margin: 0;
    overflow: hidden;
    background: var(--charcoal);
}

.services-visual img {
    width: 100%;
    height: clamp(230px, 24vw, 390px);
    object-fit: cover;
    object-position: center;
    transition: transform 1.2s cubic-bezier(.22, 1, .36, 1);
}

.services-visual:hover img {
    transform: scale(1.015);
}

.services-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr);
    column-gap: clamp(3rem, 7vw, 8rem);
    align-items: end;
}

.services-hero > .eyebrow {
    grid-column: 1 / -1;
    align-self: start;
    margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
    font-size: clamp(.72rem, .75vw, .86rem);
}

.services-hero > h1 {
    grid-row: 2 / 4;
    grid-column: 1;
    align-self: center;
}

.services-hero > h1 {
    max-width: 820px;
    font-size: clamp(2.35rem, 3.6vw, 4.15rem);
    line-height: 1.08;
}

.services-hero > .services-visual {
    grid-row: 2;
    grid-column: 2;
    align-self: start;
    margin-top: 1.5rem;
}

.services-hero > .page-intro {
    grid-row: 3;
    grid-column: 2;
    margin-top: clamp(2rem, 4vw, 3.5rem);
}

.services-hero .page-intro {
    font-size: clamp(1rem, 1.25vw, 1.18rem);
    line-height: 1.72;
}

.intro-emphasis {
    color: rgba(245, 242, 235, .86);
}

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

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

.service-button {
    position: relative;
    display: grid;
    grid-template-columns: 70px 1fr auto;
    align-items: center;
    width: 100%;
    min-height: 78px;
    padding: .7rem 0;
    border: 0;
    background: transparent;
    text-align: left;
    cursor: pointer;
    overflow: hidden;
    transition: background-color .45s ease, padding-inline .45s cubic-bezier(.22, 1, .36, 1);
}

.service-button::before {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(168, 137, 79, .09), transparent 68%);
    content: "";
    opacity: 0;
    transform: translateX(-12%);
    transition: opacity .45s ease, transform .65s cubic-bezier(.22, 1, .36, 1);
    pointer-events: none;
}

.service-button::after {
    position: relative;
    z-index: 1;
    grid-column: 3;
    color: var(--gold);
    content: "Ver servicio";
    font-size: .62rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    opacity: 0;
    transform: translateX(10px);
    transition: opacity .35s ease, transform .45s cubic-bezier(.22, 1, .36, 1);
}

html[lang="en"] .service-button::after { content: "View service"; }

.service-button:hover::before,
.service-button:focus-visible::before,
.service-button[aria-expanded="true"]::before {
    opacity: 1;
    transform: translateX(0);
}

.service-button:hover::after,
.service-button:focus-visible::after,
.service-button[aria-expanded="true"]::after {
    opacity: 1;
    transform: translateX(0);
}

.service-button:focus-visible {
    outline: 1px solid rgba(168, 137, 79, .55);
    outline-offset: 4px;
}

.service-number {
    position: relative;
    z-index: 1;
    color: var(--gold);
    font-size: .65rem;
    letter-spacing: .15em;
}

.service-name {
    position: relative;
    z-index: 1;
    font-size: clamp(1.2rem, 2vw, 2.05rem);
    font-weight: 300;
    transition: color .35s ease, transform .45s cubic-bezier(.22, 1, .36, 1);
}

.service-button:hover .service-name,
.service-button:focus-visible .service-name,
.service-button[aria-expanded="true"] .service-name {
    color: #8e7342;
    transform: translateX(8px);
}

.service-plus {
    display: none;
}

.service-button[aria-expanded="true"] .service-plus {
    transform: rotate(45deg);
}

.service-content {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows .5s cubic-bezier(.22, 1, .36, 1);
}

.service-content > div {
    overflow: hidden;
}

.service-detail {
    margin: 0 5rem 1.7rem 70px;
}

.service-content p {
    max-width: 760px;
    margin: 0;
    color: var(--muted);
    line-height: 1.75;
    font-size: .95rem;
}

.service-content p.is-typing::after {
    display: inline-block;
    width: 1px;
    height: 1em;
    margin-left: .16em;
    background: var(--gold);
    content: "";
    vertical-align: -.1em;
    animation: typing-caret .8s steps(1) infinite;
}

@keyframes typing-caret {
    50% { opacity: 0; }
}

.service-detail-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(2rem, 6vw, 6rem);
    max-width: 1100px;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--line);
}

.service-detail h3 {
    margin: 0 0 1rem;
    color: var(--gold);
    font-size: .68rem;
    font-weight: 500;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.service-detail ul {
    margin: 0;
    padding-left: 1.1rem;
    color: var(--muted);
    line-height: 1.75;
}

.service-detail li + li {
    margin-top: .45rem;
}

.service-button[aria-expanded="true"] + .service-content {
    grid-template-rows: 1fr;
}

.services-more {
    display: flex;
    justify-content: center;
    padding-top: clamp(2rem, 3vw, 3rem);
}

.button-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: .85rem 1.4rem;
    border: 1px solid var(--gold);
    color: var(--ink);
    background: transparent;
    overflow: hidden;
    font-size: .68rem;
    font-weight: 500;
    letter-spacing: .16em;
    text-transform: uppercase;
    isolation: isolate;
    transition: color .3s ease, background .3s ease, box-shadow .35s ease, transform .35s ease;
}

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

.detail-service {
    padding-block: clamp(4rem, 8vw, 7rem);
    border-bottom: 1px solid var(--line);
    scroll-margin-top: 2rem;
}

.detail-service-header {
    display: grid;
    grid-template-columns: 70px minmax(0, 1fr) auto;
    gap: 1.5rem;
    align-items: start;
}

.detail-service h2 {
    margin: 0;
    font-size: clamp(2.1rem, 3.8vw, 4.2rem);
    font-weight: 300;
    line-height: 1.08;
    letter-spacing: -.04em;
}

.service-price {
    margin: .5rem 0 0;
    color: var(--gold);
    font-size: clamp(1rem, 1.5vw, 1.3rem);
    white-space: nowrap;
}

.service-enquiry-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    margin-top: .15rem;
    padding: .75rem 1.1rem;
    border: 1px solid rgba(168, 137, 79, .72);
    color: var(--ink);
    background: transparent;
    font-size: .66rem;
    font-weight: 600;
    letter-spacing: .13em;
    line-height: 1.35;
    text-align: center;
    text-transform: uppercase;
    white-space: nowrap;
    overflow: hidden;
    isolation: isolate;
    transition: color .3s ease, background .3s ease, box-shadow .35s ease, transform .35s ease;
}

.service-enquiry-link:hover,
.service-enquiry-link:focus-visible {
    color: var(--paper);
    background: var(--gold);
    box-shadow: 0 12px 28px rgba(47, 46, 46, .12);
    transform: translateY(-2px);
}

.detail-service-lead {
    max-width: 820px;
    margin: 2.2rem 0 0 70px;
    color: var(--muted);
    font-size: clamp(1rem, 1.35vw, 1.2rem);
    line-height: 1.8;
}

.scope-columns {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(2rem, 7vw, 7rem);
    margin: 3rem 0 0 70px;
    padding-top: 2.5rem;
    border-top: 1px solid var(--line);
}

.scope-columns h3,
.conditions-section h2 {
    margin: 0 0 1.25rem;
    color: var(--gold);
    font-size: .68rem;
    font-weight: 500;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.scope-columns ul {
    margin: 0;
    padding-left: 1.1rem;
    color: var(--muted);
    line-height: 1.75;
}

.scope-columns li + li { margin-top: .45rem; }

.conditions-section {
    padding-block: clamp(5rem, 9vw, 9rem);
}

.conditions-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    margin-top: 2.5rem;
    background: var(--line);
    border: 1px solid var(--line);
}

.condition-card {
    padding: clamp(1.5rem, 3vw, 2.5rem);
    background: var(--paper);
}

.condition-card h3 {
    margin: 0 0 1rem;
    font-size: 1.15rem;
    font-weight: 400;
}

.condition-card p,
.condition-card li {
    color: var(--muted);
    line-height: 1.7;
}

.condition-card ul { margin: 0; padding-left: 1.1rem; }

.pricing-note {
    position: relative;
    margin-top: 2rem;
    padding: 1.55rem 2rem;
    border-top: 1px solid rgba(168, 137, 79, .26);
    border-bottom: 1px solid rgba(168, 137, 79, .18);
    color: var(--muted);
    background:
        linear-gradient(90deg, rgba(168, 137, 79, .09), rgba(168, 137, 79, .025) 42%, transparent),
        var(--paper);
    line-height: 1.7;
    box-shadow: inset 3px 0 0 rgba(168, 137, 79, .1);
}

.pricing-note::before {
    content: none;
}

.pricing-note::after {
    content: none;
}

.conditions-section > h2 {
    margin-bottom: 2rem;
    color: var(--ink);
    font-size: clamp(1.7rem, 2.8vw, 2.8rem);
    font-weight: 300;
    letter-spacing: -.025em;
    line-height: 1.15;
    text-transform: none;
}

.conditions-section .conditions-grid {
    gap: clamp(.8rem, 1.5vw, 1.25rem);
    padding: 0;
    border: 0;
    background: transparent;
}

.conditions-section .condition-card {
    position: relative;
    min-height: 150px;
    border-top: 1px solid rgba(168, 137, 79, .62);
    background: linear-gradient(145deg, rgba(168, 137, 79, .085), rgba(255, 255, 255, .12));
    box-shadow: inset 0 -1px 0 rgba(25, 25, 25, .07);
}

.conditions-section .condition-card:nth-child(even) {
    background: linear-gradient(145deg, rgba(233, 228, 218, .68), rgba(245, 242, 235, .72));
}

.conditions-section .condition-card h3 {
    color: var(--ink);
    font-size: 1.05rem;
    font-weight: 400;
}

/* Important information: restrained interactive emphasis. */
.conditions-section + .conditions-section .condition-card {
    overflow: hidden;
    isolation: isolate;
    transition:
        transform 450ms cubic-bezier(.22, 1, .36, 1),
        background-color 450ms ease,
        box-shadow 450ms ease;
}

.conditions-section + .conditions-section .condition-card::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 2px;
    background: linear-gradient(180deg, transparent, var(--gold) 22%, var(--gold) 78%, transparent);
    opacity: 0;
    transform: scaleY(.25);
    transform-origin: center;
    transition: opacity 450ms ease, transform 450ms cubic-bezier(.22, 1, .36, 1);
}

.conditions-section + .conditions-section .condition-card h3 {
    transition: color 450ms ease, transform 450ms cubic-bezier(.22, 1, .36, 1);
}

@media (hover: hover) and (pointer: fine) {
    .conditions-section + .conditions-section .condition-card:hover {
        z-index: 1;
        transform: translateY(-4px);
        background-color: rgba(247, 243, 234, .96);
        box-shadow: 0 16px 34px rgba(38, 34, 29, .11);
    }

    .conditions-section + .conditions-section .condition-card:hover::before {
        opacity: 1;
        transform: scaleY(1);
    }

    .conditions-section + .conditions-section .condition-card:hover h3 {
        color: var(--gold);
        transform: translateX(4px);
    }
}

@media (prefers-reduced-motion: reduce) {
    .conditions-section + .conditions-section .condition-card,
    .conditions-section + .conditions-section .condition-card::before,
    .conditions-section + .conditions-section .condition-card h3 {
        transition-duration: 1ms;
    }
}

.about-grid,
.contact-grid {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: clamp(3rem, 10vw, 11rem);
    padding-block: clamp(5rem, 10vw, 10rem);
}

.about-grid h2,
.contact-grid h2 {
    margin: 0;
    font-size: clamp(2.1rem, 3.7vw, 4.2rem);
    font-weight: 300;
    line-height: 1.12;
    letter-spacing: -.04em;
}

.prose {
    color: var(--muted);
    font-size: clamp(1rem, 1.45vw, 1.25rem);
    line-height: 1.85;
}

.signature {
    width: min(330px, 80%);
    margin-top: 3rem;
}

.about-visual {
    margin: 0 0 clamp(2.5rem, 5vw, 4.5rem);
    overflow: hidden;
    background: var(--charcoal);
}

.about-visual img {
    width: 100%;
    height: clamp(270px, 32vw, 470px);
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(.22, 1, .36, 1);
}

.about-visual:hover img {
    transform: scale(1.015);
}

.about-logo-writing {
    position: relative;
    width: min(360px, 78%);
    margin: clamp(2.5rem, 5vw, 4rem) auto 0;
    clip-path: inset(0 100% 0 0);
    transition: clip-path 4.2s cubic-bezier(.65, 0, .35, 1) .45s;
}

.about-logo-writing::after {
    position: absolute;
    top: 9%;
    right: 0;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #dfb86e;
    box-shadow: 0 0 8px rgba(223, 184, 110, .95), 0 0 20px rgba(223, 184, 110, .62);
    content: "";
    opacity: 0;
    transform: translateX(-350px);
    transition: opacity .2s ease .55s, transform 4.2s cubic-bezier(.65, 0, .35, 1) .45s;
}

.about-logo {
    width: 100%;
    height: auto;
}

.prose.is-visible .about-logo-writing {
    clip-path: inset(0);
}

.about-cta.is-visible .about-logo-writing {
    clip-path: inset(0);
}

.prose.is-visible .about-logo-writing::after {
    opacity: 1;
    transform: translateX(8px);
    animation: writing-tip-fade .35s ease 4.4s forwards;
}

.about-cta.is-visible .about-logo-writing::after {
    opacity: 1;
    transform: translateX(8px);
    animation: writing-tip-fade .35s ease 4.4s forwards;
}

@keyframes writing-tip-fade {
    to { opacity: 0; }
}

.work-item {
    display: grid;
    grid-template-columns: 70px 1fr auto;
    gap: 1rem;
    align-items: baseline;
    padding: clamp(2rem, 4vw, 4rem) 0;
    border-top: 1px solid var(--line);
}

.work-item:last-child {
    border-bottom: 1px solid var(--line);
}

.work-item h2 {
    margin: 0;
    font-size: clamp(1.8rem, 3.5vw, 4rem);
    font-weight: 300;
}

.work-item p {
    color: var(--muted);
}

.contact-email,
.contact-phone {
    font-size: clamp(.95rem, 1.35vw, 1.18rem);
    font-weight: 300;
    letter-spacing: .01em;
}

.contact-channels {
    margin-block: clamp(2rem, 4vw, 3.5rem);
    border-top: 1px solid var(--line);
}

.contact-channel {
    position: relative;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 2rem;
    padding: 1.25rem 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(18px);
    transition:
        color .35s ease,
        opacity 1s cubic-bezier(.22, 1, .36, 1) .35s,
        transform 1s cubic-bezier(.22, 1, .36, 1) .35s;
}

.contact-channel::before {
    position: absolute;
    z-index: 2;
    top: var(--connector-start-y, 50%);
    left: var(--connector-start-x, 90px);
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #dfb86e;
    box-shadow: 0 0 7px rgba(223, 184, 110, .95), 0 0 17px rgba(223, 184, 110, .55);
    content: "";
    opacity: 0;
    pointer-events: none;
    transform: translate(0, 0) scale(.65);
}

.contact-channel:nth-child(2) {
    transition-delay: 0s, .6s, .6s;
}

.contact-prose.is-visible .contact-channel {
    opacity: 1;
    transform: none;
}

.contact-value {
    position: relative;
    display: inline-block;
    padding-bottom: .35rem;
}

.contact-value::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 1px;
    background: linear-gradient(90deg, var(--gold), rgba(168, 137, 79, .35));
    content: "";
    transform: scaleX(0);
    transform-origin: left;
}

.contact-prose.is-visible .contact-value::after {
    animation: contact-line-draw 1.55s cubic-bezier(.65, 0, .35, 1) 3.35s forwards;
}

.contact-prose.is-visible .contact-channel::before {
    animation: contact-connector-travel 2.6s cubic-bezier(.45, 0, .25, 1) .7s forwards;
}

.contact-prose.is-visible .contact-channel:nth-child(2) .contact-value::after {
    animation-delay: 3.75s;
}

.contact-prose.is-visible .contact-channel:nth-child(2)::before {
    animation-delay: 1.1s;
}

.contact-channel:hover {
    color: var(--ink);
}

@keyframes contact-line-draw {
    from { transform: scaleX(0); }
    to { transform: scaleX(1); }
}

@keyframes contact-connector-travel {
    0% { opacity: 0; transform: translate(0, 0) scale(.6); }
    10%, 84% { opacity: 1; }
    100% {
        opacity: 0;
        transform: translate(var(--connector-x, 0), var(--connector-y, 0)) scale(1);
    }
}

.channel-label {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    color: var(--gold);
    font-size: .6rem;
    font-weight: 500;
    letter-spacing: .17em;
    text-transform: uppercase;
}

.channel-label::before,
.footer-contact a::before {
    width: 15px;
    height: 15px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    content: "";
    flex: 0 0 auto;
}

.contact-email .channel-label::before,
.footer-contact a[href^="mailto:"]::before {
    background-image: url("images/icon-email.svg");
}

.contact-phone .channel-label::before,
.footer-contact a[href^="tel:"]::before {
    background-image: url("images/icon-phone.svg");
}

.footer-contact a.instagram-link::before {
    background-image: url("images/icon-instagram.svg");
}

.contact-value {
    line-height: 1.55;
}

.contact-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(340px, .95fr);
    column-gap: clamp(3rem, 8vw, 9rem);
    align-items: end;
    padding-top: clamp(4.5rem, 9vw, 7.5rem);
}

.contact-hero .eyebrow {
    grid-column: 1 / -1;
    margin-bottom: clamp(1.6rem, 3vw, 2.6rem);
    font-size: clamp(.76rem, .9vw, .92rem);
}

.detail-services-hero .eyebrow {
    margin-bottom: clamp(1.6rem, 3vw, 2.6rem);
    font-size: clamp(.76rem, .9vw, .92rem);
}

.contact-hero h1 {
    grid-row: 2 / 4;
    grid-column: 1;
    align-self: center;
    max-width: 850px;
    font-size: clamp(2.8rem, 4.5vw, 5rem);
}

.contact-hero .page-intro {
    grid-row: 3;
    grid-column: 2;
    margin: 0;
}

.contact-form-section {
    padding-block: clamp(4.5rem, 8vw, 8rem);
    background: var(--paper);
    box-shadow: 0 0 0 100vmax var(--paper);
    clip-path: inset(0 -100vmax);
}

.contact-form-card {
    width: min(1120px, 100%);
    margin-inline: auto;
    padding: clamp(2rem, 5vw, 5rem);
    color: var(--paper);
    background:
        linear-gradient(135deg, rgba(168, 137, 79, .055), transparent 42%),
        var(--charcoal);
    border: 1px solid rgba(168, 137, 79, .32);
    box-shadow: 0 28px 70px rgba(32, 30, 27, .13);
}

.contact-direct {
    max-width: 850px;
    margin: clamp(2.5rem, 5vw, 4.5rem) auto 0;
    color: var(--muted);
    font-size: clamp(.95rem, 1.3vw, 1.1rem);
    line-height: 1.8;
    text-align: center;
}

.contact-direct a {
    position: relative;
    display: inline-block;
    color: var(--ink);
}

.contact-direct a::after {
    position: absolute;
    right: 0;
    bottom: .08em;
    left: 0;
    height: 1px;
    background: var(--gold);
    content: "";
    transform: scaleX(1);
    transform-origin: left;
    transition: transform .55s cubic-bezier(.22, 1, .36, 1);
}

.contact-direct a:hover::after,
.contact-direct a:focus-visible::after {
    animation: contact-line .9s cubic-bezier(.22, 1, .36, 1);
}

@keyframes contact-line {
    0% { transform: scaleX(1); transform-origin: right; }
    45% { transform: scaleX(0); transform-origin: right; }
    46% { transform-origin: left; }
    100% { transform: scaleX(1); transform-origin: left; }
}

.contact-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.75rem 1.5rem;
    width: 100%;
}

.form-field { display: grid; gap: .65rem; }

.form-field-wide,
.form-consent,
.form-status,
.form-submit { grid-column: 1 / -1; }

.form-field label {
    color: var(--gold);
    font-size: clamp(.74rem, .78vw, .84rem);
    font-weight: 500;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.form-field label span {
    color: var(--muted);
    letter-spacing: .04em;
    text-transform: none;
}

.contact-form-section .form-field label span {
    color: rgba(245, 242, 235, .48);
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    padding: .8rem 0;
    border: 0;
    border-bottom: 1px solid rgba(245, 242, 235, .24);
    border-radius: 0;
    outline: 0;
    color: var(--paper);
    background: transparent;
    font: 400 1rem/1.55 var(--serif);
    transition: border-color .3s ease;
}

.form-field select option {
    color: var(--ink);
    background: var(--paper);
    font-family: var(--serif);
}

.form-field select {
    -webkit-appearance: none;
    appearance: none;
    color-scheme: dark;
    cursor: pointer;
    scrollbar-color: var(--gold) var(--charcoal-soft);
    scrollbar-width: thin;
}

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

.form-field select option:checked {
    color: var(--charcoal);
    background: var(--gold);
}

.form-field select::-webkit-scrollbar {
    width: 8px;
}

.form-field select::-webkit-scrollbar-track {
    background: var(--charcoal-soft);
}

.form-field select::-webkit-scrollbar-thumb {
    border: 2px solid var(--charcoal-soft);
    border-radius: 0;
    background: var(--gold);
}

.native-select-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    border: 0 !important;
    overflow: hidden !important;
    clip: rect(0 0 0 0) !important;
    clip-path: inset(50%) !important;
    white-space: nowrap !important;
}

.custom-select {
    position: relative;
}

.custom-select-trigger {
    width: 100%;
    min-height: 48px;
    padding: .8rem 0;
    border: 0;
    border-bottom: 1px solid rgba(245, 242, 235, .24);
    color: var(--paper);
    background: transparent;
    font: 400 1rem/1.55 var(--serif);
    text-align: left;
    cursor: pointer;
    transition: color .3s ease, border-color .3s ease;
}

.custom-select-trigger:hover,
.custom-select-trigger:focus-visible,
.custom-select-trigger[aria-expanded="true"] {
    border-color: var(--gold);
    color: var(--gold);
    outline: 0;
}

.custom-select-list {
    position: absolute;
    z-index: 12;
    top: calc(100% + 8px);
    right: 0;
    left: 0;
    max-height: 270px;
    padding: .45rem;
    border: 1px solid rgba(168, 137, 79, .55);
    overflow-y: auto;
    background: var(--charcoal-soft);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .28);
    scrollbar-color: var(--gold) var(--charcoal-soft);
    scrollbar-width: thin;
}

.custom-select-option {
    display: block;
    width: 100%;
    padding: .78rem .85rem;
    border: 0;
    color: rgba(245, 242, 235, .72);
    background: transparent;
    font: 400 .92rem/1.4 var(--serif);
    text-align: left;
    cursor: pointer;
    transition: color .2s ease, background .2s ease;
}

.custom-select-option:hover,
.custom-select-option:focus-visible,
.custom-select-option[aria-selected="true"] {
    color: var(--charcoal);
    background: var(--gold);
    outline: 0;
}

.custom-select-list::-webkit-scrollbar { width: 8px; }
.custom-select-list::-webkit-scrollbar-track { background: var(--charcoal-soft); }
.custom-select-list::-webkit-scrollbar-thumb { border: 2px solid var(--charcoal-soft); background: var(--gold); }

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: rgba(245, 242, 235, .34);
}

.form-field textarea { resize: vertical; }

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

.form-consent {
    display: flex;
    gap: .75rem;
    align-items: flex-start;
    color: rgba(245, 242, 235, .58);
    font-size: .8rem;
    line-height: 1.55;
}

.form-consent input { margin-top: .22rem; accent-color: var(--gold); }

.form-consent a {
    color: var(--gold);
    background-image: linear-gradient(var(--gold), var(--gold));
    background-position: left bottom;
    background-repeat: no-repeat;
    background-size: 100% 1px;
}

.form-submit {
    position: relative;
    justify-self: start;
    min-height: 48px;
    padding: .8rem 1.35rem;
    border: 1px solid var(--gold);
    color: var(--paper);
    background: transparent;
    font-size: .7rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    cursor: pointer;
    overflow: hidden;
    isolation: isolate;
    transition: color .35s ease, box-shadow .35s ease, transform .35s ease;
}

.form-submit span {
    display: inline-block;
    margin-left: .6rem;
    transition: transform .3s ease;
}

.form-submit:hover span { transform: translateX(5px); }

.contact-form-section .form-submit:hover,
.contact-form-section .form-submit:focus-visible {
    color: var(--gold);
}

.form-status {
    margin: 0;
    padding: 1.25rem 1.4rem;
    border: 1px solid rgba(168, 137, 79, .42);
    border-left: 3px solid var(--gold);
    color: rgba(245, 242, 235, .92);
    background: linear-gradient(100deg, rgba(168, 137, 79, .18), rgba(168, 137, 79, .055));
    box-shadow: 0 14px 30px rgba(0, 0, 0, .12);
    font-size: clamp(.95rem, 1.15vw, 1.08rem);
    line-height: 1.6;
    animation: form-status-in 650ms cubic-bezier(.22, 1, .36, 1) both;
}

.form-status.is-error {
    border-color: rgba(190, 125, 105, .5);
    border-left-color: #be7d69;
    background: linear-gradient(100deg, rgba(190, 125, 105, .16), rgba(190, 125, 105, .04));
}

.form-status:focus { outline: none; }

@keyframes form-status-in {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}

.form-trap { position: absolute; left: -9999px; }

.site-footer {
    display: grid;
    grid-template-columns: 1.25fr 1fr 1fr;
    gap: clamp(2rem, 6vw, 7rem);
    padding: clamp(3.5rem, 7vw, 6rem) clamp(1.25rem, 5vw, 5.5rem) 2rem;
    border-top: 1px solid rgba(245, 242, 235, .16);
    color: rgba(245, 242, 235, .68);
    background: var(--charcoal);
}

.site-footer.footer-light {
    color: var(--muted);
    background: var(--paper);
    border-color: var(--line);
}

.footer-light .footer-bottom {
    border-color: var(--line);
}

.footer-light .footer-languages img {
    box-shadow: 0 0 0 1px rgba(25, 25, 25, .14);
}

.footer-light .footer-languages a + a {
    border-color: var(--line);
}

.footer-light .footer-contact a,
.footer-light .footer-languages a,
.footer-light .footer-bottom a {
    border-color: transparent;
}

.footer-contact a {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
}

.footer-contact .instagram-link {
    display: inline-grid;
    place-items: center;
    width: 34px;
    height: 34px;
    margin: 0;
    padding: 0;
    border: 1px solid rgba(168, 137, 79, .42);
    border-radius: 50%;
    background-image: none;
    transition: color .3s ease, border-color .3s ease, transform .3s ease;
}

.footer-contact .instagram-link::before {
    width: 15px;
    height: 15px;
}

.footer-contact .instagram-link:hover,
.footer-contact .instagram-link:focus-visible {
    border-color: var(--gold);
    background-size: 0;
    transform: translateY(-2px);
}

.footer-brand img {
    width: min(190px, 70%);
    margin-bottom: 1.5rem;
}

.footer-label {
    margin: 0 0 1.25rem;
    color: var(--gold);
    font-size: .62rem;
    font-weight: 500;
    letter-spacing: .17em;
    text-transform: uppercase;
}

.footer-details {
    margin: 0;
    font-size: clamp(.9rem, 1.2vw, 1.05rem);
    font-style: normal;
    font-weight: 300;
    line-height: 1.9;
}

.footer-details a {
    transition: color .25s ease;
}

.footer-details a:hover {
    color: var(--gold);
}

.footer-bottom {
    grid-column: 1 / -1;
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(245, 242, 235, .16);
    font-size: .58rem;
    letter-spacing: .12em;
    line-height: 1.7;
    text-transform: uppercase;
}

.footer-bottom p {
    margin: 0;
}

.home-page .footer-bottom {
    border-color: rgba(245, 242, 235, .16);
}

.site-footer.footer-compact {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    align-items: center;
    gap: 1rem clamp(1.5rem, 4vw, 4rem);
    padding: clamp(1.6rem, 3vw, 2.3rem) clamp(1.25rem, 5vw, 5.5rem) 1.2rem;
    text-align: left;
}

.footer-contact {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .35rem clamp(.85rem, 2vw, 1.6rem);
    margin: 0;
    font-size: clamp(.78rem, .9vw, .92rem);
    font-style: normal;
    font-weight: 300;
    line-height: 1.4;
}

.footer-contact br {
    display: none;
}

.footer-contact a {
    padding: .3rem 0;
    border: 0;
    background-image: linear-gradient(var(--gold), var(--gold));
    background-position: left bottom;
    background-repeat: no-repeat;
    background-size: 0 1px;
    transition: color .3s ease, background-size .45s cubic-bezier(.22, 1, .36, 1);
}

.footer-contact a:hover,
.footer-contact a:focus-visible {
    color: var(--gold);
    background-size: 100% 1px;
}

.footer-languages {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.1rem;
    margin: 0;
}

.footer-languages a {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .4rem 0;
    border: 0;
    background-image: linear-gradient(var(--gold), var(--gold));
    background-position: left bottom;
    background-repeat: no-repeat;
    background-size: 0 1px;
    font-size: .78rem;
    letter-spacing: .1em;
}

.footer-languages a:hover,
.footer-languages a:focus-visible,
.footer-bottom a:hover,
.footer-bottom a:focus-visible {
    color: var(--gold);
    background-size: 100% 1px;
}

.footer-bottom a {
    padding: .4rem 0;
    border: 0;
    background-image: linear-gradient(var(--gold), var(--gold));
    background-position: left bottom;
    background-repeat: no-repeat;
    background-size: 0 1px;
    transition: color .3s ease, background-size .45s cubic-bezier(.22, 1, .36, 1);
}

.footer-languages img {
    width: 25px;
    height: 17px;
    border-radius: 1px;
    box-shadow: 0 0 0 1px rgba(245, 242, 235, .18);
    object-fit: cover;
}

.home-page .footer-languages img {
    box-shadow: 0 0 0 1px rgba(245, 242, 235, .18);
}

.footer-languages a + a {
    padding-left: 1.1rem;
    border-left: 1px solid rgba(245, 242, 235, .22);
}

.home-page .footer-languages a + a {
    border-color: rgba(245, 242, 235, .22);
}

.footer-languages .active {
    color: var(--gold);
}

.site-footer.footer-compact .footer-bottom {
    grid-column: 1 / -1;
    width: 100%;
    margin-top: .45rem;
    padding-top: 1rem;
}

.footer-legal {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: .8rem 1.4rem;
    margin: 0;
    font-size: .62rem;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.footer-legal a {
    padding: .35rem 0;
    background-image: linear-gradient(var(--gold), var(--gold));
    background-position: left bottom;
    background-repeat: no-repeat;
    background-size: 0 1px;
    transition: color .3s ease, background-size .45s cubic-bezier(.22, 1, .36, 1);
}

.footer-legal a:hover,
.footer-legal a:focus-visible {
    color: var(--gold);
    background-size: 100% 1px;
}

.legal-content {
    max-width: 900px;
    padding-block: clamp(4rem, 8vw, 8rem);
}

.legal-back-wrap {
    display: flex;
    justify-content: center;
    width: 100%;
    max-width: 900px;
    margin-inline: auto;
    padding-top: clamp(2.5rem, 5vw, 4rem);
}

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

.legal-back-wrap-end {
    padding-top: 0;
    padding-bottom: clamp(6rem, 10vw, 9rem);
}

.legal-content section + section {
    margin-top: 3.5rem;
    padding-top: 3.5rem;
    border-top: 1px solid var(--line);
}

.legal-content h2 {
    margin: 0 0 1.25rem;
    font-size: clamp(1.6rem, 2.6vw, 2.6rem);
    font-weight: 300;
}

.legal-content h3 {
    margin: 2rem 0 .8rem;
    color: var(--gold);
    font-size: .72rem;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.legal-content p,
.legal-content li {
    color: var(--muted);
    line-height: 1.8;
}

.legal-content ul { padding-left: 1.2rem; }

.legal-notice {
    margin-bottom: 3rem;
    padding: 1.3rem 1.5rem;
    border-left: 1px solid var(--gold);
    color: var(--muted);
    background: rgba(168, 137, 79, .07);
    line-height: 1.7;
}

[data-reveal] {
    opacity: 0;
    transform: translateY(25px);
    transition:
        opacity .9s ease,
        transform .9s cubic-bezier(.22, 1, .36, 1);
}

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

@media (max-width: 780px) {
    .site-header {
        min-height: 84px;
        -webkit-backdrop-filter: none;
        backdrop-filter: none;
    }

    .menu-toggle {
        display: block;
    }

    .main-menu {
        position: fixed;
        inset: 84px 0 0;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 1.3rem;
        padding: 3rem 1.5rem;
        border-top: 1px solid rgba(168, 137, 79, .5);
        color: var(--paper);
        background:
            linear-gradient(145deg, rgba(168, 137, 79, .08), transparent 42%),
            var(--charcoal);
        box-shadow: 0 22px 45px rgba(0, 0, 0, .2);
        font-size: 1.15rem;
        overflow-y: auto;
        opacity: 0;
        pointer-events: none;
        transform: translateY(-15px);
        transition: opacity .3s ease, transform .3s ease;
    }

    .home-page .main-menu {
        color: var(--paper);
        background:
            linear-gradient(145deg, rgba(168, 137, 79, .08), transparent 42%),
            var(--charcoal);
    }

    .main-menu > a {
        width: 100%;
        padding-block: .7rem;
        color: rgba(245, 242, 235, .88);
    }

    .main-menu > a:hover,
    .main-menu > a:focus-visible,
    .main-menu > a[aria-current="page"] {
        color: var(--gold);
    }

    .main-menu.is-open {
        opacity: 1;
        pointer-events: auto;
        transform: none;
    }

    .language-menu {
        width: 100%;
        margin-top: 1rem;
        padding: 1.5rem 0 0;
        border-top: 1px solid rgba(245, 242, 235, .18);
        border-left: 0;
        color: rgba(245, 242, 235, .75);
    }

    .home-page .language-menu {
        border-top-color: rgba(245, 242, 235, .18);
    }

    .menu-toggle[aria-expanded="true"] {
        color: var(--gold);
    }

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

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

    .home-hero {
        min-height: calc(100svh - 85px);
    }

    .hero-atmosphere {
        top: 19%;
        right: -22%;
        width: 78vw;
        height: 46%;
        opacity: .32;
    }

    .hero-foot {
        align-items: flex-start;
        flex-direction: column;
    }

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

    .site-footer.footer-compact {
        grid-template-columns: 1fr;
        justify-items: center;
        gap: 1.2rem;
        padding-block: 1.8rem 1.1rem;
        text-align: center;
    }

    .footer-contact {
        justify-content: center;
    }

    .footer-legal {
        grid-row: auto;
    }

    .footer-bottom {
        grid-column: 1;
        align-items: flex-start;
        flex-direction: column;
    }

    .home-feature,
    .about-grid,
    .contact-hero,
    .contact-grid,
    .contact-form-section,
    .process-section,
    .process-image-right {
        grid-template-columns: 1fr;
    }

    .process-section {
        gap: 2.5rem;
        min-height: 0;
    }

    .process-visual {
        order: -1;
    }

    .feature-visual {
        min-height: 55vh;
    }

    .service-button {
        grid-template-columns: 42px 1fr;
        min-height: 76px;
    }

    .service-button::after { display: none; }

    .contact-hero .eyebrow,
    .contact-hero h1,
    .contact-hero .page-intro {
        grid-row: auto;
        grid-column: 1;
    }

    .contact-hero .page-intro { margin: 0; }

    .service-content p {
        margin: 0;
    }

    .service-detail {
        margin: 0 1rem 2.5rem 42px;
    }

    .service-detail-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .detail-service-header {
        grid-template-columns: 42px minmax(0, 1fr);
    }

    .service-price,
    .service-enquiry-link {
        grid-column: 2;
    }

    .service-enquiry-link {
        justify-self: start;
        margin-top: .35rem;
        white-space: normal;
    }

    .detail-service-lead,
    .scope-columns {
        margin-left: 42px;
    }

    .scope-columns,
    .conditions-grid {
        grid-template-columns: 1fr;
    }

    .work-item {
        grid-template-columns: 42px 1fr;
    }

    .work-item p {
        grid-column: 2;
    }

    .services-hero {
        display: block;
    }

    .about-hero {
        display: block;
    }

    .about-hero-visual {
        margin-top: 3rem;
    }

    .about-hero-visual img {
        min-height: 0;
        max-height: none;
        aspect-ratio: 4 / 3;
    }

    .services-hero > .services-visual {
        margin-top: 2.5rem;
    }

    .services-hero > .page-intro {
        margin-top: 2rem;
    }

    .contact-channel {
        align-items: flex-start;
        flex-direction: column;
        gap: .45rem;
        overflow-wrap: anywhere;
    }

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

    .form-field,
    .form-field-wide,
    .form-consent,
    .form-status,
    .form-submit { grid-column: 1; }
}

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

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

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

    .about-hero-visual::before {
        display: none;
    }

    .about-hero-visual img,
    .about-hero-visual:hover img {
        transform: none;
    }

    .process-visual::before,
    .process-visual::after,
    .process-connections {
        display: none;
    }

    .process-copy {
        opacity: 1;
        transform: none;
    }

    .about-logo-writing,
    .prose.is-visible .about-logo-writing {
        clip-path: inset(0);
        transition: none;
    }

    .about-logo-writing::after,
    .prose.is-visible .about-logo-writing::after {
        display: none;
    }

    .contact-channel,
    .contact-prose.is-visible .contact-channel {
        opacity: 1;
        transform: none;
    }

    .contact-prose.is-visible .contact-value::after {
        animation: none;
        transform: scaleX(1);
    }

    .contact-prose.is-visible .contact-channel::before {
        display: none;
        animation: none;
    }

    .hero-atmosphere span,
    .hero-atmosphere i,
    .connection-motion path,
    .connection-node {
        animation: none;
    }
}
