:root {
    --ink: #090909;
    --ink-soft: #151515;
    --paper: #f7f5ef;
    --surface: #ffffff;
    --gold: #ffcb00;
    --gold-deep: #d69b00;
    --muted: #6b6a65;
    --line: rgba(9, 9, 9, .12);
    --radius: 26px;
    --container: 1240px;
    --shadow: 0 28px 80px rgba(17, 14, 4, .12);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: Inter, "Segoe UI", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    overflow: hidden;
}

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

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

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

button {
    cursor: pointer;
}

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

h1,
h2,
h3 {
    font-weight: 850;
    hyphens: auto;
    letter-spacing: -.045em;
    line-height: 1.02;
    overflow-wrap: break-word;
    word-break: normal;
}

.container {
    width: min(calc(100% - 48px), var(--container));
    margin-inline: auto;
}

.section {
    padding: clamp(64px, 7vw, 104px) 0;
}

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

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

.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;
}

.icon {
    width: 1.15em;
    height: 1.15em;
    flex: 0 0 auto;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 20px;
    color: #9a7300;
    font-size: .72rem;
    font-weight: 900;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.eyebrow::before {
    width: 20px;
    height: 20px;
    content: "★";
    color: var(--gold);
    font-size: 1rem;
    letter-spacing: 0;
}

.eyebrow--dark {
    color: rgba(9, 9, 9, .62);
}

.eyebrow--dark::before {
    color: var(--ink);
}

.button {
    display: inline-flex;
    min-height: 56px;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 0 24px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: .82rem;
    font-weight: 850;
    letter-spacing: .02em;
    transition: transform .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
}

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

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

.button--dark {
    color: var(--surface);
    background: var(--ink);
}

.button--line {
    color: var(--surface);
    border-color: rgba(255, 255, 255, .28);
}

.button--line:hover {
    color: var(--ink);
    background: var(--surface);
}

.button--line-dark {
    color: var(--ink);
    border-color: rgba(9, 9, 9, .35);
}

.button-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 22px;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--ink);
    font-size: .82rem;
    font-weight: 850;
    border-bottom: 1px solid currentColor;
}

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

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

.site-header {
    position: fixed;
    z-index: 100;
    inset: 0 auto 0 0;
    width: 190px;
    color: var(--surface);
    background:
        radial-gradient(circle at 30% 10%, rgba(255, 203, 0, .12), transparent 24%),
        rgba(9, 9, 9, .97);
    border-right: 1px solid rgba(255, 255, 255, .1);
    backdrop-filter: blur(16px);
}

.site-header .container {
    width: 100%;
}

.header-inner {
    display: flex;
    min-width: 0;
    height: 100%;
    min-height: 100%;
    align-items: center;
    flex-direction: column;
    gap: 0;
    padding: 16px 12px 14px;
}

.brand {
    display: flex;
    width: 122px;
    height: 80px;
    align-items: center;
}

.brand img {
    width: 122px;
    height: 80px;
    object-fit: contain;
}

.desktop-nav {
    display: flex;
    width: 100%;
    min-width: 0;
    align-items: stretch;
    flex-direction: column;
    gap: 4px;
    margin-top: clamp(24px, 6vh, 50px);
}

.desktop-nav a {
    position: relative;
    display: flex;
    min-height: 43px;
    align-items: center;
    gap: 9px;
    padding: 0 10px;
    color: rgba(255, 255, 255, .72);
    border-radius: 14px;
    font-size: .87rem;
    font-weight: 560;
    letter-spacing: .005em;
    transition: color .2s ease, background .2s ease, transform .2s ease;
}

.desktop-nav a::before {
    width: 14px;
    flex: 0 0 auto;
    content: "✦";
    color: rgba(255, 203, 0, .38);
    font-size: .74rem;
    text-align: center;
    transition: color .2s ease, transform .2s ease;
}

.desktop-nav a:hover,
.desktop-nav a[aria-current="page"] {
    color: var(--ink);
    background: var(--gold);
    transform: translateX(2px);
}

.desktop-nav a:hover::before,
.desktop-nav a[aria-current="page"]::before {
    color: var(--ink);
    transform: rotate(18deg) scale(1.12);
}

.header-instagram {
    display: inline-flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    gap: 9px;
    margin-top: auto;
    padding: 11px 8px;
    color: var(--surface);
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 12px;
    font-size: .78rem;
    font-weight: 600;
}

.header-instagram .icon {
    color: var(--gold);
    font-size: 1.12rem;
}

.menu-toggle {
    display: none;
    width: 48px;
    height: 48px;
    place-items: center;
    color: var(--ink);
    background: var(--gold);
    border: 0;
    border-radius: 50%;
}

.menu-close {
    display: none;
}

.menu-toggle[aria-expanded="true"] .menu-open {
    display: none;
}

.menu-toggle[aria-expanded="true"] .menu-close {
    display: inline-flex;
}

.mobile-nav {
    display: none;
}

.language-switcher {
    position: relative;
    width: 100%;
    margin-top: 16px;
}

.language-switcher > button {
    display: flex;
    width: 100%;
    min-height: 40px;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 0 10px;
    color: rgba(255, 255, 255, .82);
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .11);
    border-radius: 12px;
    font-size: .76rem;
    font-weight: 700;
}

.language-switcher > button .icon:first-child {
    color: var(--gold);
}

.language-switcher > button .icon:last-child {
    width: 12px;
    height: 12px;
    transform: rotate(90deg);
}

.language-menu {
    position: absolute;
    z-index: 130;
    bottom: 0;
    left: calc(100% + 10px);
    display: grid;
    width: 174px;
    padding: 7px;
    color: var(--ink);
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 15px;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateX(-6px);
    transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}

.language-switcher.is-open .language-menu {
    opacity: 1;
    visibility: visible;
    transform: none;
}

.language-menu a {
    display: grid;
    grid-template-columns: 32px 1fr;
    align-items: center;
    gap: 8px;
    padding: 9px 10px;
    border-radius: 9px;
    font-size: .78rem;
}

.language-menu a:hover,
.language-menu a[aria-current="true"] {
    background: rgba(255, 203, 0, .2);
}

.language-menu a span {
    color: #8f6900;
    font-size: .66rem;
    font-weight: 900;
}

main {
    margin-left: 190px;
}

.hero {
    position: relative;
    min-height: 100svh;
    overflow: hidden;
    color: var(--surface);
    background:
        radial-gradient(circle at 78% 30%, rgba(255, 203, 0, .15), transparent 23%),
        linear-gradient(120deg, #050505, #11100d 56%, #090909);
}

.hero__stars {
    position: absolute;
    inset: 0;
    opacity: .19;
    background: url("../images/stars.webp") center / cover no-repeat;
    mix-blend-mode: screen;
    transform: scaleX(-1);
}

.hero__grid {
    position: relative;
    display: grid;
    min-height: 100svh;
    grid-template-columns: minmax(0, 1.18fr) minmax(330px, .82fr);
    align-items: center;
    gap: clamp(30px, 5vw, 72px);
    padding-top: 30px;
    padding-bottom: 30px;
}

.hero__content {
    position: relative;
    z-index: 2;
    min-width: 0;
}

.hero__content h1 {
    max-width: 820px;
    margin-bottom: 17px;
    font-size: clamp(3.45rem, 6.25vw, 6.2rem);
    overflow-wrap: break-word;
    text-transform: uppercase;
}

.hero__content h1 span {
    display: block;
    margin-top: 7px;
    color: var(--gold);
    font-size: .34em;
    letter-spacing: .13em;
}

.hero__description {
    max-width: 720px;
    color: rgba(255, 255, 255, .76);
    font-size: clamp(.84rem, .9vw, .95rem);
    line-height: 1.46;
}

.hero__description p {
    margin: 0 0 4px;
}

.hero__visual {
    position: relative;
    min-width: 0;
}

.hero__photo {
    position: relative;
    overflow: hidden;
    aspect-ratio: .86;
    background: #d7d0bf;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 48% 48% 24px 24px;
    box-shadow: 0 40px 120px rgba(0, 0, 0, .45);
}

.hero__photo::after {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(180deg, transparent 65%, rgba(9, 9, 9, .34));
}

.hero__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 46%;
}

.star-orbit {
    position: absolute;
    display: grid;
    place-items: center;
    color: var(--gold);
    filter: drop-shadow(0 0 16px rgba(255, 203, 0, .5));
}

.star-orbit--one {
    top: 7%;
    left: -7%;
    font-size: clamp(3.8rem, 7vw, 7rem);
    transform: rotate(-13deg);
}

.star-orbit--two {
    right: -5%;
    bottom: 19%;
    font-size: clamp(2.5rem, 5vw, 5rem);
}

.hero__signature {
    position: absolute;
    right: -18px;
    bottom: 20px;
    z-index: 2;
    display: flex;
    min-width: 220px;
    flex-direction: column;
    padding: 18px 22px;
    color: var(--ink);
    background: var(--gold);
    border-radius: 18px;
    transform: rotate(-3deg);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .28);
}

.hero__signature span {
    font-family: Georgia, serif;
    font-size: 1.4rem;
    font-style: italic;
}

.hero__signature strong {
    font-size: .76rem;
    letter-spacing: .04em;
}

.split-heading,
.process-grid,
.about-grid,
.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    gap: clamp(50px, 9vw, 130px);
}

.split-heading h2,
.section-heading h2,
.section-intro h1,
.section-intro h2,
.process-content h2,
.about-copy h1,
.about-copy h2,
.narrow-content h2,
.contact-copy h1,
.contact-copy h2 {
    margin-bottom: 0;
    font-size: clamp(2.15rem, 3.8vw, 4rem);
    overflow-wrap: break-word;
}

.rich-text {
    color: var(--muted);
}

.rich-text p {
    margin-bottom: 30px;
}

.services-section {
    color: var(--surface);
    background: var(--ink);
}

.section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 50px;
}

.section-heading > div {
    max-width: 820px;
}

.section-heading > p {
    max-width: 430px;
    margin-bottom: 8px;
    color: var(--muted);
}

.services-section .text-link {
    color: var(--surface);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.service-card {
    position: relative;
    min-width: 0;
    min-height: 430px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: var(--radius);
}

.service-card--featured {
    grid-column: span 2;
}

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

.service-card:hover img {
    transform: scale(1.045);
}

.service-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, .02), rgba(0, 0, 0, .9));
}

.service-card__content {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 30px;
}

.service-card__content > span {
    color: var(--gold);
    font-size: .72rem;
    font-weight: 900;
}

.service-card h3 {
    margin: 9px 0 12px;
    font-size: clamp(1.55rem, 2.4vw, 2.5rem);
}

.service-card p {
    display: -webkit-box;
    margin-bottom: 0;
    overflow: hidden;
    color: rgba(255, 255, 255, .7);
    font-size: .82rem;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.references-preview,
.references-page {
    background: #ece9e0;
}

.reference-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.reference-card {
    min-width: 0;
    overflow: hidden;
    background: var(--surface);
    border: 1px solid rgba(9, 9, 9, .08);
    border-radius: 18px;
    box-shadow: 0 10px 28px rgba(18, 15, 7, .05);
    transition: transform .3s ease, box-shadow .3s ease;
}

.reference-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow);
}

.reference-card__media {
    display: grid;
    height: 210px;
    min-height: 210px;
    place-items: center;
    padding: 18px;
    overflow: hidden;
    background:
        radial-gradient(circle at top right, rgba(255, 203, 0, .13), transparent 35%),
        #fff;
}

.reference-card__media img {
    width: 100%;
    height: 100%;
    max-height: none;
    object-fit: contain;
    object-position: center;
    filter: saturate(.96);
    transition: transform .35s ease;
}

.reference-card:hover .reference-card__media img {
    transform: scale(1.025);
}

.reference-card__caption {
    display: flex;
    min-height: 72px;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    color: var(--surface);
    background: var(--ink);
}

.reference-card__caption span {
    display: grid;
    width: 28px;
    height: 28px;
    place-items: center;
    flex: 0 0 auto;
    color: var(--ink);
    background: var(--gold);
    border-radius: 50%;
    font-size: .64rem;
    font-weight: 900;
}

.reference-card__caption h2,
.reference-card__caption h3 {
    margin: 0;
    font-size: clamp(.78rem, .88vw, .94rem);
    font-weight: 650;
    line-height: 1.22;
    letter-spacing: -.02em;
}

.center-action {
    display: flex;
    justify-content: center;
    margin-top: 38px;
}

.process-section,
.process-page {
    background: var(--surface);
}

.process-grid {
    align-items: center;
}

.process-visual {
    position: relative;
    min-width: 0;
}

.process-visual > img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 50% 50% 26px 50%;
}

.process-visual > div {
    position: absolute;
    right: -18px;
    bottom: 22px;
    display: flex;
    width: 148px;
    height: 148px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: var(--ink);
    background: var(--gold);
    border: 8px solid var(--surface);
    border-radius: 50%;
    text-align: center;
}

.process-visual strong {
    font-size: 2rem;
}

.process-visual span {
    font-size: .72rem;
    font-weight: 900;
    line-height: 1.25;
    text-transform: uppercase;
}

.process-content > p:not(.eyebrow),
.about-copy > p,
.narrow-content > p {
    color: var(--muted);
    font-size: 1.02rem;
}

.process-content ul {
    display: grid;
    padding: 0;
    margin: 30px 0 0;
    gap: 12px;
    list-style: none;
}

.process-content li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 750;
}

.process-content li .icon {
    width: 28px;
    height: 28px;
    padding: 6px;
    color: var(--ink);
    background: var(--gold);
    border-radius: 50%;
}

.page-hero {
    position: relative;
    overflow: hidden;
    padding: clamp(52px, 5.5vw, 76px) 0;
    color: var(--surface);
    background: var(--ink);
}

.page-hero__stars {
    position: absolute;
    inset: 0;
    opacity: .22;
    background: url("../images/stars.webp") 35% 35% / cover no-repeat;
    mix-blend-mode: screen;
}

.page-hero .container {
    position: relative;
}

.page-hero h1 {
    max-width: 1000px;
    margin-bottom: 0;
    font-size: clamp(2.4rem, 4vw, 4.2rem);
    overflow-wrap: break-word;
    text-transform: uppercase;
}

.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 28px;
    color: rgba(255, 255, 255, .64);
    font-size: .74rem;
}

.breadcrumbs span {
    color: var(--gold);
}

.about-grid {
    align-items: center;
}

.about-grid--text {
    grid-template-columns: minmax(0, 920px);
    justify-content: center;
}

.about-copy {
    min-width: 0;
}

.about-photo {
    position: relative;
}

.about-photo img {
    width: 100%;
    aspect-ratio: 1 / .88;
    object-fit: cover;
    border-radius: 45% 45% var(--radius) var(--radius);
    box-shadow: var(--shadow);
}

.about-photo > span {
    position: absolute;
    right: -16px;
    bottom: -20px;
    color: var(--gold);
    font-size: clamp(5rem, 9vw, 9rem);
    filter: drop-shadow(0 14px 24px rgba(177, 129, 0, .25));
}

.about-copy p {
    margin-bottom: 19px;
}

.about-copy h1,
.about-copy h2 {
    margin-bottom: 26px;
}

.narrow-content {
    max-width: 900px;
}

.narrow-content h2 {
    margin-bottom: 35px;
}

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

.section-intro {
    max-width: 900px;
    margin-bottom: 62px;
}

.section-intro h1,
.section-intro h2 {
    margin-bottom: 24px;
}

.section-intro > p:last-child {
    max-width: 650px;
    color: var(--muted);
}

.service-detail-list {
    display: grid;
    gap: 30px;
}

.service-detail {
    display: grid;
    min-width: 0;
    overflow: hidden;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: center;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 16px 50px rgba(18, 15, 7, .05);
}

.service-detail:nth-child(even) .service-detail__media {
    grid-column: 2;
    grid-row: 1;
}

.service-detail__media {
    align-self: stretch;
    min-height: 460px;
}

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

.service-detail__content {
    padding: clamp(32px, 6vw, 76px);
}

.service-detail__content > span {
    color: #947000;
    font-size: .7rem;
    font-weight: 900;
    letter-spacing: .15em;
}

.service-detail__content h2 {
    margin: 17px 0 24px;
    font-size: clamp(2.3rem, 4.5vw, 4.7rem);
}

.service-detail__content p {
    margin-bottom: 30px;
    color: var(--muted);
}

.references-page .reference-grid {
    gap: 14px;
}

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

.contact-grid {
    align-items: start;
}

.contact-copy h1,
.contact-copy h2 {
    margin-bottom: 45px;
}

.contact-list {
    display: grid;
    gap: 12px;
}

.contact-list > a,
.contact-list > div {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 16px;
    padding: 18px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 18px;
}

.contact-list > * > .icon {
    width: 44px;
    height: 44px;
    padding: 11px;
    color: var(--ink);
    background: var(--gold);
    border-radius: 50%;
}

.contact-list span {
    min-width: 0;
}

.contact-list small,
.contact-list strong {
    display: block;
}

.contact-list small {
    color: var(--muted);
    font-size: .7rem;
    text-transform: uppercase;
}

.contact-list strong {
    overflow-wrap: anywhere;
}

[dir="rtl"] .contact-list strong {
    display: inline-block;
    direction: ltr;
    unicode-bidi: isolate;
}

[dir="rtl"] .header-instagram span {
    direction: ltr;
    unicode-bidi: isolate;
}

.contact-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    padding: clamp(26px, 5vw, 54px);
    color: var(--surface);
    background: var(--ink);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, .68);
    font-size: .72rem;
    font-weight: 750;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 0;
    color: var(--surface);
    background: transparent;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .28);
    border-radius: 0;
    outline: 0;
}

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

.contact-form__wide {
    grid-column: 1 / -1;
}

.contact-form__note {
    margin: 0;
    color: rgba(255, 255, 255, .52);
    font-size: .72rem;
}

.contact-band {
    padding: 66px 0;
    background: var(--gold);
}

.contact-band__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 42px;
}

.contact-band h2 {
    max-width: 760px;
    margin: 0;
    font-size: clamp(2.2rem, 4vw, 4.2rem);
}

.contact-band__actions {
    display: flex;
    flex: 0 0 auto;
    gap: 10px;
}

.site-footer {
    padding: 80px 0 24px;
    color: var(--surface);
    background: var(--ink);
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(150px, .7fr) minmax(250px, 1fr);
    gap: clamp(40px, 8vw, 100px);
    padding-bottom: 60px;
}

.footer-brand img {
    width: 168px;
    height: 102px;
    object-fit: contain;
}

.footer-brand p {
    max-width: 370px;
    color: rgba(255, 255, 255, .58);
}

.site-footer h2 {
    margin: 17px 0 22px;
    color: var(--gold);
    font-size: .78rem;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.site-footer ul {
    display: grid;
    padding: 0;
    margin: 0;
    gap: 11px;
    list-style: none;
}

.site-footer li,
.site-footer li a {
    color: rgba(255, 255, 255, .68);
    font-size: .82rem;
}

.footer-contact li {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 10px;
}

.footer-contact a,
.footer-contact span {
    overflow-wrap: anywhere;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-top: 22px;
    color: rgba(255, 255, 255, .44);
    border-top: 1px solid rgba(255, 255, 255, .1);
    font-size: .72rem;
}

.footer-bottom p {
    margin: 0;
}

.floating-instagram {
    position: fixed;
    z-index: 90;
    right: 18px;
    bottom: 18px;
    display: grid;
    width: 52px;
    height: 52px;
    place-items: center;
    color: var(--ink);
    background: var(--gold);
    border: 4px solid var(--surface);
    border-radius: 50%;
    box-shadow: 0 12px 35px rgba(0, 0, 0, .25);
}

.floating-instagram .icon {
    width: 23px;
    height: 23px;
}

.not-found {
    display: grid;
    min-height: 72svh;
    place-items: center;
    padding: 80px 0;
    color: var(--surface);
    background: var(--ink);
    text-align: center;
}

.not-found span {
    color: var(--gold);
    font-size: 1.2rem;
    font-weight: 900;
}

.not-found h1 {
    max-width: 900px;
    margin: 20px auto;
    font-size: clamp(3rem, 8vw, 7rem);
}

.not-found p {
    color: rgba(255, 255, 255, .65);
}

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

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

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

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

@media (max-width: 1080px) {
    .hero__grid {
        grid-template-columns: minmax(0, 1fr) minmax(330px, .72fr);
    }

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

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

    .service-card--featured {
        grid-column: span 1;
    }

    .contact-band__inner {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 960px) {
    .container {
        width: min(calc(100% - 30px), var(--container));
    }

    .site-header {
        position: fixed;
        inset: 0 0 auto;
        width: 100%;
        background: rgba(9, 9, 9, .94);
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .1);
        backdrop-filter: none;
    }

    .site-header .container {
        width: min(calc(100% - 30px), var(--container));
    }

    main {
        margin-left: 0;
        padding-top: 62px;
    }

    .header-inner {
        display: grid;
        min-height: 62px;
        height: auto;
        grid-template-columns: auto 1fr auto;
        padding: 0;
    }

    .brand {
        width: 94px;
        height: 54px;
    }

    .brand img {
        width: 94px;
        height: 54px;
    }

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

    .menu-toggle {
        display: grid;
        width: 42px;
        height: 42px;
        grid-column: 3;
    }

    .language-switcher {
        width: auto;
        margin: 0 10px 0 auto;
        grid-column: 2;
        grid-row: 1;
        justify-self: end;
    }

    .language-switcher > button {
        width: 52px;
        min-height: 40px;
        padding: 0 7px;
        border-radius: 999px;
    }

    .language-switcher > button .icon:first-child {
        display: none;
    }

    .language-menu {
        top: calc(100% + 9px);
        right: 0;
        bottom: auto;
        left: auto;
        transform: translateY(-6px);
    }

    .mobile-nav {
        position: fixed;
        z-index: 99;
        inset: 62px 0 0;
        display: none;
        padding: 22px 15px 40px;
        overflow-y: auto;
        color: var(--surface);
        background: rgba(9, 9, 9, .98);
    }

    .mobile-nav.is-open {
        display: block;
    }

    .mobile-nav a {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 18px 6px;
        border-bottom: 1px solid rgba(255, 255, 255, .12);
        font-size: 1.08rem;
        font-weight: 600;
    }

    .mobile-nav a[aria-current="page"] {
        color: var(--gold);
    }

    .hero,
    .hero__grid {
        min-height: auto;
    }

    .hero__grid {
        grid-template-columns: 1fr;
        gap: 24px;
        padding-top: 32px;
        padding-bottom: 32px;
    }

    .hero__content h1 {
        font-size: clamp(2.9rem, 10vw, 4.8rem);
    }

    .hero__visual {
        width: min(100%, 310px);
        margin-inline: auto;
    }

    .hero__photo {
        aspect-ratio: 1 / .88;
        border-radius: 42% 42% 22px 22px;
    }

    .hero__signature {
        display: none;
    }

    .split-heading,
    .process-grid,
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about-grid--text {
        display: block;
    }

    .section-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 18px;
    }

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

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

    .reference-card__media {
        height: 180px;
        min-height: 180px;
    }

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

    .service-detail:nth-child(even) .service-detail__media {
        grid-column: auto;
        grid-row: auto;
    }

    .service-detail__media {
        min-height: 340px;
    }

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

    .contact-form__wide {
        grid-column: auto;
    }

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

    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 580px) {
    .section {
        padding: 54px 0;
    }

    .button-row {
        width: 100%;
        flex-direction: column;
    }

    .button-row .button {
        width: 100%;
    }

    .hero__grid {
        min-height: calc(100svh - 62px);
        align-content: center;
        gap: 14px;
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .hero__content h1 {
        margin-bottom: 14px;
        font-size: clamp(2.65rem, 12vw, 3.7rem);
    }

    .hero__content h1 span {
        font-size: .3em;
        letter-spacing: .1em;
    }

    .hero__description {
        font-size: .8rem;
        line-height: 1.42;
    }

    .hero__description p {
        margin-bottom: 5px;
    }

    .hero__visual {
        display: none;
    }

    .hero .button-row {
        gap: 8px;
        margin-top: 16px;
    }

    .split-heading h2,
    .section-heading h2,
    .section-intro h1,
    .section-intro h2,
    .process-content h2,
    .about-copy h1,
    .about-copy h2,
    .narrow-content h2,
    .contact-copy h1,
    .contact-copy h2 {
        font-size: clamp(2.1rem, 9.5vw, 3rem);
        line-height: 1.08;
    }

    .page-hero h1 {
        font-size: clamp(2.35rem, 10vw, 3.35rem);
    }

    .service-card {
        min-height: 390px;
    }

    .service-card__content {
        padding: 24px;
    }

    .reference-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .reference-card__media {
        height: 145px;
        min-height: 145px;
        padding: 10px;
    }

    .reference-card__caption {
        min-height: 68px;
        gap: 7px;
        padding: 10px;
    }

    .reference-card__caption span {
        width: 24px;
        height: 24px;
        font-size: .58rem;
    }

    .reference-card__caption h2,
    .reference-card__caption h3 {
        font-size: .68rem;
        line-height: 1.22;
    }

    .process-visual > div {
        right: -4px;
        width: 116px;
        height: 116px;
    }

    .service-detail__media {
        min-height: 260px;
    }

    .service-detail__content {
        padding: 28px 24px 34px;
    }

    .service-detail__media {
        min-height: 210px;
        max-height: 240px;
    }

    .contact-band__actions {
        width: 100%;
        flex-direction: column;
    }

    .contact-band__actions .button {
        width: 100%;
    }

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

    .footer-brand {
        grid-column: auto;
    }

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

    .floating-instagram {
        width: 48px;
        height: 48px;
    }
}

[dir="rtl"] body {
    font-family: Tahoma, Arial, sans-serif;
}

@media (min-width: 961px) {
    [dir="rtl"] .site-header {
        inset: 0 0 0 auto;
        border-right: 0;
        border-left: 1px solid rgba(255, 255, 255, .1);
    }

    [dir="rtl"] main {
        margin-right: 190px;
        margin-left: 0;
    }

    [dir="rtl"] .language-menu {
        right: calc(100% + 10px);
        left: auto;
        transform: translateX(6px);
    }
}

[dir="rtl"] .button .icon,
[dir="rtl"] .text-link .icon,
[dir="rtl"] .mobile-nav .icon {
    transform: scaleX(-1);
}

@media (max-width: 360px) {
    .container {
        width: calc(100% - 22px);
    }

    .brand,
    .brand img {
        width: 88px;
        height: 52px;
    }

    .menu-toggle {
        width: 40px;
        height: 40px;
    }

    .hero__content h1 {
        font-size: 2.42rem;
    }
}
