:root {
    --obsidian: #0a0a0a;
    --warm-charcoal: #141414;
    --off-black: #1a1a1a;
    --gold: #c8a55a;
    --gold-soft: #d4b978;
    --gold-deep: #b8963d;
    --light-gray: #999;
    --mid-gray: #666;
    --white: #fff;
    --display: "Cormorant Garamond", serif;
    --body: Inter, sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body.brera-site {
    background: var(--obsidian);
    color: var(--white);
    font-family: var(--body);
    margin: 0;
    overflow-x: hidden;
}

body.brera-site button,
body.brera-site input,
body.brera-site textarea,
body.brera-site select {
    font: inherit;
}

body.brera-site button {
    cursor: pointer;
}

body.brera-site ::selection {
    background: rgba(200, 165, 90, 0.3);
    color: white;
}

.container {
    margin: 0 auto;
    max-width: 1400px;
    padding: 0 24px;
    width: 100%;
}

.container--narrow {
    max-width: 1000px;
}

.btn {
    align-items: center;
    border: 0;
    border-radius: 999px;
    display: inline-flex;
    gap: 8px;
    justify-content: center;
    letter-spacing: 0.1em;
    padding: 16px 40px;
    text-transform: uppercase;
    transition: transform 0.4s ease, box-shadow 0.4s ease, background 0.4s ease, border-color 0.4s ease;
    font-size: 14px;
    font-weight: 500;
}

.btn--gold {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-soft) 50%, var(--gold-deep) 100%);
    color: var(--obsidian);
}

.btn--gold:hover {
    box-shadow: 0 0 30px rgba(200, 165, 90, 0.4);
    transform: scale(1.05);
}

.btn--outline {
    background: transparent;
    border: 1px solid rgba(200, 165, 90, 0.5);
    color: white;
}

.btn--outline:hover {
    background: rgba(200, 165, 90, 0.1);
    border-color: var(--gold);
}

.btn--dark {
    background: var(--obsidian);
    color: white;
    padding: 20px 48px;
}

.btn--dark:hover {
    background: black;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transform: scale(1.05);
}

.site-nav {
    height: 80px;
    left: 0;
    position: fixed;
    top: 0;
    transition: background 0.5s ease, backdrop-filter 0.5s ease;
    width: 100%;
    z-index: 100;
}

.site-nav.is-scrolled {
    backdrop-filter: blur(12px);
    background: rgba(10, 10, 10, 0.95);
}

.site-nav__inner {
    align-items: center;
    display: flex;
    height: 100%;
    justify-content: space-between;
    margin: 0 auto;
    max-width: 1600px;
    padding: 0 48px;
}

.brand-mark {
    align-items: center;
    color: white;
    display: inline-flex;
    gap: 12px;
    text-decoration: none;
}

.brand-logo {
    height: 140px;
    width: auto;
    display: block;
    object-fit: contain;
    margin-top: -36px;
    margin-bottom: -44px;
    margin-left: -32px;
    transition: transform 0.3s ease;
}

.brand-mark:hover .brand-logo {
    transform: scale(1.03);
}

.brand-logo--footer {
    height: 230px;
    margin-top: -65px;
    margin-bottom: -75px;
    margin-left: -52px;
}

.brand-mark__text {
    display: flex;
    flex-direction: column;
}

.brand-mark__text span {
    color: white;
    font-family: var(--display);
    font-size: 22px;
    letter-spacing: -0.02em;
    line-height: 1;
}

.brand-mark__text small {
    color: var(--gold);
    font-size: 8px;
    font-weight: 600;
    letter-spacing: 0.25em;
    line-height: 1;
    margin-top: 2px;
    text-transform: uppercase;
}

.site-nav__links {
    align-items: center;
    display: flex;
    gap: 32px;
}

.site-nav__links button,
.site-nav__links a,
.footer-col button {
    background: transparent;
    border: 0;
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    font-family: inherit;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.15em;
    line-height: 1;
    padding: 0;
    text-decoration: none;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.site-nav__links button:hover,
.site-nav__links a:hover,
.footer-col button:hover {
    color: var(--gold);
}

.site-nav__cta {
    font-size: 12px;
    padding: 12px 24px;
}

.site-nav__menu {
    background: transparent;
    border: 0;
    color: white;
    display: none;
    padding: 8px;
}

.mobile-menu {
    align-items: center;
    backdrop-filter: blur(18px);
    background: rgba(10, 10, 10, 0.98);
    display: flex;
    inset: 0;
    justify-content: center;
    position: fixed;
    z-index: 99;
}

.mobile-menu[hidden] {
    display: none;
}

.mobile-menu__links {
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.mobile-menu__links > button:not(.btn) {
    background: transparent;
    border: 0;
    color: rgba(255, 255, 255, 0.9);
    font-family: var(--display);
    font-size: 32px;
}

.hero-section {
    align-items: center;
    display: flex;
    height: 100vh;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.hero-section__video,
.why-section__video {
    height: 100%;
    inset: 0;
    object-fit: cover;
    position: absolute;
    width: 100%;
}

.hero-section__video {
    opacity: 1;
}

.hero-section__overlay {
    inset: 0;
    position: absolute;
    z-index: 2;
}

.hero-section__overlay--dark {
    background: linear-gradient(to bottom, rgba(10, 10, 10, 0.3), rgba(10, 10, 10, 0.5), rgba(10, 10, 10, 0.8));
}

.hero-section__overlay--fade {
    background: linear-gradient(to top, var(--obsidian), transparent);
}

.hero-section__content {
    max-width: 1000px;
    padding: 0 24px;
    position: relative;
    text-align: center;
    z-index: 3;
}

.hero-section h1 {
    color: white;
    font-family: var(--display);
    font-size: clamp(60px, 8vw, 160px);
    font-weight: 300;
    letter-spacing: -0.02em;
    line-height: 0.95;
    margin: 0 0 32px;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.hero-section h1 .word {
    display: inline-block;
    opacity: 0;
}

.hero-section p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 20px;
    font-weight: 300;
    line-height: 1.7;
    margin: 0 auto 48px;
    max-width: 640px;
    opacity: 0;
}

.hero-section__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

.hero-section__actions .btn {
    opacity: 0;
}

.scroll-indicator {
    align-items: center;
    bottom: 40px;
    color: rgba(255, 255, 255, 0.5);
    display: flex;
    flex-direction: column;
    gap: 8px;
    left: 50%;
    opacity: 0;
    position: absolute;
    transform: translateX(-50%);
    z-index: 3;
}

.scroll-indicator svg {
    animation: bounce-gentle 1.5s ease-in-out infinite;
}

.scroll-indicator span {
    color: rgba(255, 255, 255, 0.4);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.intro-section {
    align-items: center;
    background: var(--obsidian);
    display: flex;
    justify-content: center;
    min-height: 80vh;
    overflow: hidden;
    padding: 80px 0;
    position: relative;
}

.intro-line-art {
    height: 100%;
    inset: 0;
    position: absolute;
    width: 100%;
}

.intro-section__content {
    max-width: 900px;
    padding: 0 24px;
    position: relative;
    text-align: center;
    z-index: 2;
}

.intro-section h2,
.section-header h2,
.why-section h2,
.cta-section h2,
.contact-info h2 {
    font-family: var(--display);
    font-weight: 400;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.intro-section h2 {
    font-size: clamp(36px, 5vw, 80px);
    margin: 0 0 32px;
}

.intro-section .char {
    display: inline-block;
    min-width: 0.1em;
    opacity: 0;
}

.intro-section .word-wrap {
    display: inline-block;
    white-space: nowrap;
}

.intro-section p {
    color: var(--light-gray);
    font-size: 18px;
    font-weight: 300;
    line-height: 1.75;
    margin: 0 auto 40px;
    max-width: 720px;
    opacity: 0;
}

.text-link {
    align-items: center;
    background: transparent;
    border: 0;
    color: var(--gold);
    display: inline-flex;
    gap: 8px;
    font-weight: 600;
    opacity: 0;
    transition: transform 0.4s ease;
}

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

.services-section,
.projects-section,
.reviews-section {
    background: var(--obsidian);
    overflow: hidden;
    padding: 120px 0;
    position: relative;
}

.before-after-section,
.process-section,
.contact-section {
    background: var(--warm-charcoal);
    padding: 120px 0;
}

.section-decor {
    color: rgba(200, 165, 90, 0.06);
    font-family: var(--display);
    font-size: clamp(80px, 12vw, 200px);
    font-weight: 300;
    left: 50%;
    letter-spacing: 0.05em;
    line-height: 1;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    text-transform: uppercase;
    top: 50%;
    transform: translate(-50%, -50%);
    user-select: none;
}

.noise-texture::before {
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    content: "";
    inset: 0;
    opacity: 0.03;
    pointer-events: none;
    position: absolute;
    z-index: 1;
}

.section-header {
    margin: 0 auto 64px;
    max-width: 640px;
    text-align: center;
}

.section-header > span,
.why-section__content > span,
.contact-info > span {
    color: var(--gold);
    display: block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.25em;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.section-header h2,
.contact-info h2 {
    font-size: clamp(36px, 4vw, 56px);
    margin: 0 0 16px;
}

.section-header p,
.contact-info p {
    color: var(--light-gray);
    font-size: 18px;
    font-weight: 300;
    line-height: 1.7;
    margin: 0;
}

.services-grid {
    display: grid;
    gap: 32px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    position: relative;
    z-index: 2;
}

.service-card {
    background: var(--off-black);
    border: 1px solid rgba(200, 165, 90, 0.15);
    border-radius: 8px;
    cursor: pointer;
    overflow: hidden;
    transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.service-card:hover {
    border-color: rgba(200, 165, 90, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transform: translateY(-4px);
}

.service-card__image {
    aspect-ratio: 3 / 2;
    overflow: hidden;
}

.service-card img,
.project-card img {
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    width: 100%;
}

.service-card:hover img,
.project-card:hover img {
    transform: scale(1.05);
}

.service-card__body {
    padding: 32px;
}

.service-card h3,
.project-card h3,
.process-step h3,
.review-card h3 {
    font-family: var(--display);
    font-weight: 400;
}

.service-card h3 {
    font-size: 28px;
    margin: 0 0 12px;
}

.service-card p,
.process-step p {
    color: var(--light-gray);
    line-height: 1.7;
    margin: 0;
}

.additional-services {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 12px 24px;
    justify-content: center;
    margin-top: 48px;
    position: relative;
    z-index: 2;
}

.additional-services span {
    color: var(--mid-gray);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.additional-services i {
    color: var(--gold);
    font-style: normal;
    margin-left: 24px;
}

.section-action {
    margin-top: 48px;
    text-align: center;
}

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

.comparison {
    opacity: 0;
}

.comparison__stage {
    aspect-ratio: 4 / 3;
    border-radius: 8px;
    cursor: ew-resize;
    overflow: hidden;
    position: relative;
    user-select: none;
}

.comparison__stage > img,
.comparison__after img {
    height: 100%;
    inset: 0;
    object-fit: cover;
    position: absolute;
    width: 100%;
}

.comparison__after {
    clip-path: inset(0 50% 0 0);
    inset: 0;
    position: absolute;
}

.comparison__divider {
    background: var(--gold);
    bottom: 0;
    box-shadow: 0 0 20px rgba(200, 165, 90, 0.3);
    left: 50%;
    position: absolute;
    top: 0;
    transform: translateX(-50%);
    width: 4px;
    z-index: 5;
}

.comparison__handle {
    align-items: center;
    background: var(--off-black);
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: flex;
    gap: 4px;
    height: 40px;
    justify-content: center;
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
}

.comparison__handle span:first-child {
    border-bottom: 4px solid transparent;
    border-right: 5px solid var(--gold);
    border-top: 4px solid transparent;
    height: 0;
    width: 0;
}

.comparison__handle span:last-child {
    border-bottom: 4px solid transparent;
    border-left: 5px solid var(--gold);
    border-top: 4px solid transparent;
    height: 0;
    width: 0;
}

.comparison__label {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
    border-radius: 4px;
    bottom: 16px;
    color: white;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.2em;
    padding: 6px 12px;
    position: absolute;
    text-transform: uppercase;
}

.comparison__label--before {
    left: 16px;
}

.comparison__label--after {
    right: 16px;
}

.comparison footer {
    align-items: center;
    display: flex;
    justify-content: space-between;
    padding: 12px 4px 0;
}

.comparison footer strong,
.project-card__overlay span,
.review-card footer strong {
    color: var(--gold);
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.comparison footer span {
    color: var(--light-gray);
    font-size: 14px;
}

.stats-row {
    align-items: center;
    display: flex;
    gap: 56px;
    justify-content: center;
    margin-top: 64px;
}

.stat {
    text-align: center;
}

.stat strong {
    color: var(--gold);
    display: block;
    font-family: var(--display);
    font-size: clamp(40px, 2.5vw, 52px);
    font-weight: 300;
}

.stat span {
    color: var(--light-gray);
    display: block;
    font-size: 12px;
    letter-spacing: 0.15em;
    margin-top: 8px;
    text-transform: uppercase;
}

.why-section {
    align-items: center;
    display: flex;
    justify-content: center;
    min-height: 100vh;
    overflow: hidden;
    position: relative;
}

.why-section__overlay {
    background: rgba(10, 10, 10, 0.75);
    inset: 0;
    position: absolute;
    z-index: 2;
}

.why-section__panel {
    bottom: 0;
    opacity: 0;
    position: absolute;
    top: 0;
    width: 28%;
    z-index: 3;
}

.why-section__panel img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.why-section__panel--left {
    left: 0;
    transform: translateX(-100%);
}

.why-section__panel--right {
    right: 0;
    transform: translateX(100%);
}

.why-section__content {
    max-width: 700px;
    padding: 80px 24px;
    position: relative;
    text-align: center;
    z-index: 4;
}

.why-section h2 {
    font-size: clamp(40px, 5vw, 80px);
    font-weight: 300;
    line-height: 1.05;
    margin: 0 0 24px;
}

.why-section p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 18px;
    font-weight: 300;
    line-height: 1.75;
    margin: 0 auto 40px;
    max-width: 560px;
}

.feature-list {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
    margin-bottom: 40px;
}

.feature-list span,
.trust-row span {
    align-items: center;
    display: inline-flex;
    gap: 10px;
}

.feature-list svg {
    color: var(--gold);
}

.projects-masonry {
    column-count: 2;
    column-gap: 20px;
}

.project-card {
    border-radius: 8px;
    break-inside: avoid;
    cursor: pointer;
    margin-bottom: 20px;
    opacity: 0;
    overflow: hidden;
    position: relative;
}

.project-card--landscape {
    aspect-ratio: 4 / 3;
}

.project-card--portrait {
    aspect-ratio: 3 / 4;
}

.project-card__overlay {
    background: linear-gradient(to top, rgba(10, 10, 10, 0.9), rgba(10, 10, 10, 0.4), transparent);
    display: flex;
    flex-direction: column;
    inset: 0;
    justify-content: flex-end;
    opacity: 0;
    padding: 24px;
    position: absolute;
    transition: opacity 0.4s ease;
}

.project-card:hover .project-card__overlay {
    opacity: 1;
}

.project-card__overlay h3 {
    font-size: 26px;
    margin: 8px 0 16px;
}

.project-card__overlay button {
    align-self: flex-start;
    background: transparent;
    border: 1px solid rgba(200, 165, 90, 0.5);
    border-radius: 999px;
    color: white;
    font-size: 12px;
    letter-spacing: 0.1em;
    padding: 10px 24px;
    text-transform: uppercase;
}

.process-timeline {
    position: relative;
}

.process-line {
    height: 100%;
    left: 50%;
    position: absolute;
    top: 0;
    transform: translateX(-50%);
    width: 24px;
}

.process-step {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 64px;
    margin-top: 64px;
    opacity: 0;
    position: relative;
}

.process-step::before {
    background: var(--obsidian);
    border: 2.5px solid #C8A55A;
    border-radius: 50%;
    content: "";
    height: 20px;
    left: 50%;
    position: absolute;
    top: 12px;
    transform: translateX(-50%);
    width: 20px;
    z-index: 2;
}

.process-step:first-of-type {
    margin-top: 0;
}

.process-step--left {
    text-align: right;
}

.process-step--left > * {
    grid-column: 1;
}

.process-step--right > * {
    grid-column: 2;
}

.process-step__number {
    color: rgba(200, 165, 90, 0.3);
    display: block;
    font-family: var(--display);
    font-size: clamp(48px, 5vw, 72px);
    font-weight: 300;
    line-height: 1;
    margin-bottom: 8px;
}

.process-step__title {
    align-items: center;
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
}

.process-step--left .process-step__title {
    justify-content: flex-end;
}

.process-step svg {
    color: var(--gold);
    flex: none;
}

.process-step h3 {
    font-size: 28px;
    margin: 0;
}

.reviews-carousel {
    align-items: center;
    display: flex;
    gap: 24px;
    justify-content: center;
    margin: 0 auto;
    max-width: 900px;
    position: relative;
}

.reviews-nav {
    align-items: center;
    background: transparent;
    border: 1.5px solid rgba(200, 165, 90, 0.35);
    border-radius: 50%;
    color: var(--gold);
    cursor: pointer;
    display: flex;
    flex: none;
    height: 52px;
    justify-content: center;
    transition: background 0.3s, border-color 0.3s;
    width: 52px;
    z-index: 3;
}

.reviews-nav:hover {
    background: rgba(200, 165, 90, 0.1);
    border-color: var(--gold);
}

.reviews-stack {
    min-height: 340px;
    position: relative;
    width: 100%;
}

.review-card {
    background: var(--off-black);
    border: 1px solid rgba(200, 165, 90, 0.15);
    border-radius: 12px;
    left: 0;
    opacity: 0;
    padding: 48px;
    pointer-events: none;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1;
}

.review-card.is-active {
    opacity: 1;
    pointer-events: auto;
    z-index: 2;
}

.review-card__stars {
    color: var(--gold);
    display: flex;
    gap: 4px;
    margin-bottom: 24px;
}

.star-icon {
    fill: currentColor;
}

.review-card.is-active .star-icon {
    opacity: 1;
}

.review-card p {
    font-size: 18px;
    font-style: italic;
    font-weight: 300;
    line-height: 1.75;
    margin: 0 0 24px;
}

.review-card footer {
    align-items: center;
    display: flex;
    gap: 16px;
    justify-content: space-between;
}

.review-card footer span {
    color: var(--light-gray);
    font-size: 14px;
}

.reviews-dots {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 32px;
}

.reviews-dot {
    background: rgba(200, 165, 90, 0.25);
    border: 0;
    border-radius: 50%;
    cursor: pointer;
    height: 10px;
    padding: 0;
    transition: background 0.3s, transform 0.3s;
    width: 10px;
}

.reviews-dot:hover {
    background: rgba(200, 165, 90, 0.5);
}

.reviews-dot.is-active {
    background: var(--gold);
    transform: scale(1.25);
}

.cta-section {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-soft) 50%, var(--gold-deep) 100%);
    overflow: hidden;
    padding: 160px 24px;
    position: relative;
}

.cta-section__shimmer {
    animation: shimmer 3s linear infinite;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    background-size: 200% 100%;
    inset: 0;
    opacity: 0.2;
    position: absolute;
}

.cta-section__star {
    animation: spin-slow 60s linear infinite;
    height: 192px;
    opacity: 0.06;
    position: absolute;
    right: 64px;
    top: 64px;
    width: 192px;
}

.cta-section__content {
    color: var(--obsidian);
    margin: 0 auto;
    max-width: 800px;
    position: relative;
    text-align: center;
    z-index: 2;
}

.cta-section h2 {
    font-size: clamp(36px, 4vw, 56px);
    margin: 0 0 24px;
}

.cta-section p {
    color: rgba(10, 10, 10, 0.7);
    font-size: 18px;
    line-height: 1.7;
    margin: 0 auto 40px;
    max-width: 560px;
}

.trust-row {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
    margin-top: 40px;
}

.trust-row span {
    color: var(--obsidian);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

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

.contact-info p {
    margin-bottom: 40px;
}

.contact-methods {
    display: grid;
    gap: 24px;
}

.contact-methods a,
.contact-methods > span,
.footer-contact a,
.footer-contact > span {
    align-items: center;
    color: var(--light-gray);
    display: flex;
    gap: 16px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-methods a:hover,
.footer-contact a:hover {
    color: white;
}

.contact-methods svg,
.footer-contact svg {
    color: var(--gold);
    flex: none;
}

.contact-methods a > svg,
.contact-methods > span > svg {
    border: 1px solid rgba(200, 165, 90, 0.3);
    border-radius: 999px;
    box-sizing: content-box;
    padding: 15px;
}

.contact-form,
.form-success {
    background: var(--off-black);
    border: 1px solid rgba(200, 165, 90, 0.15);
    border-radius: 12px;
    padding: 40px;
}

.form-success {
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 400px;
    text-align: center;
}

.form-success[hidden] {
    display: none;
}

.form-success svg {
    color: var(--gold);
    margin-bottom: 24px;
}

.form-success h3 {
    font-family: var(--display);
    font-size: 28px;
    margin: 0 0 12px;
}

.form-success p {
    color: var(--light-gray);
    margin: 0;
}

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

.contact-form label {
    color: var(--light-gray);
    display: block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.15em;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    background: var(--obsidian);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: white;
    display: block;
    font-size: 14px;
    letter-spacing: 0;
    margin-top: 8px;
    outline: 0;
    padding: 14px 16px;
    text-transform: none;
    transition: border-color 0.3s ease;
    width: 100%;
}

.contact-form textarea {
    resize: none;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    border-color: rgba(200, 165, 90, 0.5);
}

.contact-form .btn {
    width: 100%;
}

.form-error {
    background: rgba(220, 53, 69, 0.1);
    border: 1px solid rgba(220, 53, 69, 0.3);
    border-radius: 8px;
    color: #ff6b6b;
    font-size: 14px;
    margin-bottom: 24px;
    padding: 14px 16px;
    text-align: center;
}

.site-footer {
    background: black;
    padding: 80px 0 40px;
}

.site-footer__grid {
    display: grid;
    gap: 48px;
    grid-template-columns: 1.35fr repeat(3, 1fr);
}

.brand-mark--footer {
    margin-bottom: 24px;
}

.footer-col {
    opacity: 0;
}

.footer-col p,
.footer-col li,
.footer-contact {
    color: var(--light-gray);
    font-size: 14px;
    line-height: 1.7;
}

.footer-col h4 {
    font-size: 14px;
    letter-spacing: 0.15em;
    margin: 0 0 24px;
    text-transform: uppercase;
}

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

.footer-col button,
.footer-col a {
    color: var(--light-gray);
    font-size: 14px;
    letter-spacing: 0;
    text-decoration: none;
    text-transform: none;
    background: transparent;
    border: 0;
    padding: 0;
    transition: color 0.3s ease;
}

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

.footer-contact {
    display: grid;
    gap: 16px;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

.footer-social a {
    align-items: center;
    border: 1px solid rgba(200, 165, 90, 0.3);
    border-radius: 50%;
    color: var(--light-gray);
    display: flex;
    height: 40px;
    justify-content: center;
    transition: color 0.3s, border-color 0.3s, background 0.3s;
    width: 40px;
}

.footer-social a:hover {
    background: rgba(200, 165, 90, 0.1);
    border-color: var(--gold);
    color: var(--gold);
}

.site-footer__bottom {
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    margin-top: 48px;
    padding-top: 32px;
}

.site-footer__bottom p {
    color: var(--mid-gray);
    font-size: 12px;
    margin: 0;
}

.back-to-top {
    align-items: center;
    background: transparent;
    border: 1px solid rgba(200, 165, 90, 0.4);
    border-radius: 50%;
    color: var(--gold);
    display: flex;
    height: 48px;
    justify-content: center;
    transition: background 0.4s ease, color 0.4s ease;
    width: 48px;
}

.back-to-top:hover {
    background: var(--gold);
    color: var(--obsidian);
}

/* Mobile menu anchor styles */
.mobile-menu__links > a:not(.btn) {
    background: transparent;
    border: 0;
    color: rgba(255, 255, 255, 0.8);
    font-family: var(--display);
    font-size: 32px;
    font-weight: 400;
    letter-spacing: 0;
    padding: 0;
    text-decoration: none;
    text-transform: none;
    transition: color 0.3s ease;
}

.mobile-menu__links > a:not(.btn):hover {
    color: var(--gold);
}

a.site-nav__cta {
    text-decoration: none;
}

/* ===== Page Hero (internal pages) ===== */
.page-hero {
    align-items: center;
    background: var(--obsidian);
    display: flex;
    justify-content: center;
    min-height: 50vh;
    overflow: hidden;
    padding: 120px 24px 80px;
    position: relative;
}

.page-hero::before {
    background-image: var(--hero-image);
    background-position: center;
    background-size: cover;
    content: "";
    inset: 0;
    opacity: 0.3;
    position: absolute;
    transition: opacity 1s ease;
}

.page-hero__overlay {
    background: linear-gradient(to bottom, rgba(10, 10, 10, 0.5), rgba(10, 10, 10, 0.9));
    inset: 0;
    position: absolute;
    z-index: 1;
}

.page-hero__content {
    max-width: 800px;
    position: relative;
    text-align: center;
    z-index: 2;
}

.page-hero__content h1 {
    font-family: var(--display);
    font-size: clamp(40px, 6vw, 80px);
    font-weight: 300;
    letter-spacing: -0.02em;
    line-height: 1.05;
    margin: 0 0 24px;
}

.page-hero__content p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 18px;
    font-weight: 300;
    line-height: 1.7;
    margin: 0 auto;
    max-width: 600px;
}

/* ===== Services Detail Section ===== */
.services-detail-section {
    background: var(--obsidian);
    overflow: hidden;
    padding: 120px 0;
    position: relative;
}

.services-detail-list {
    display: grid;
    gap: 80px;
    position: relative;
    z-index: 2;
}

.service-detail {
    align-items: center;
    border: 1px solid rgba(200, 165, 90, 0.1);
    border-radius: 12px;
    display: grid;
    gap: 0;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
    background: var(--off-black);
    opacity: 0;
    transform: translateY(30px);
}

.service-detail--reversed {
    direction: rtl;
}

.service-detail--reversed > * {
    direction: ltr;
}

.service-detail__image {
    height: 100%;
    min-height: 400px;
    overflow: hidden;
}

.service-detail__image img {
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    width: 100%;
}

.service-detail:hover .service-detail__image img {
    transform: scale(1.05);
}

.service-detail__content {
    padding: 48px 56px;
}

.service-detail__content h3 {
    font-family: var(--display);
    font-size: clamp(28px, 2.5vw, 40px);
    font-weight: 400;
    margin: 0 0 16px;
}

.service-detail__content > p {
    color: var(--light-gray);
    font-size: 16px;
    font-weight: 300;
    line-height: 1.75;
    margin: 0 0 32px;
}

.service-detail__features {
    display: grid;
    gap: 12px;
    list-style: none;
    margin: 0 0 32px;
    padding: 0;
}

.service-detail__features li {
    align-items: center;
    color: rgba(255, 255, 255, 0.85);
    display: flex;
    font-size: 14px;
    gap: 12px;
}

.service-detail__features svg {
    color: var(--gold);
    flex: none;
}

/* ===== Process Summary Section ===== */
.process-summary-section {
    background: var(--warm-charcoal);
    padding: 120px 0;
}

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

.process-summary-step {
    background: var(--off-black);
    border: 1px solid rgba(200, 165, 90, 0.15);
    border-radius: 12px;
    opacity: 0;
    padding: 48px 32px;
    text-align: center;
    transition: transform 0.4s ease, border-color 0.4s ease;
}

.process-summary-step:hover {
    border-color: rgba(200, 165, 90, 0.4);
    transform: translateY(-4px);
}

.process-summary-step__number {
    color: rgba(200, 165, 90, 0.25);
    display: block;
    font-family: var(--display);
    font-size: 56px;
    font-weight: 300;
    line-height: 1;
    margin-bottom: 16px;
}

.process-summary-step__icon {
    color: var(--gold);
    margin-bottom: 20px;
}

.process-summary-step h3 {
    font-family: var(--display);
    font-size: 24px;
    font-weight: 400;
    margin: 0 0 12px;
}

.process-summary-step p {
    color: var(--light-gray);
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}

/* ===== Gallery Section ===== */
.gallery-section {
    background: var(--obsidian);
    padding: 120px 0;
}

.gallery-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-bottom: 64px;
}

.gallery-filter {
    background: transparent;
    border: 1px solid rgba(200, 165, 90, 0.3);
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.15em;
    padding: 12px 28px;
    text-transform: uppercase;
    transition: all 0.4s ease;
}

.gallery-filter:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.gallery-filter.is-active {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-soft) 50%, var(--gold-deep) 100%);
    border-color: transparent;
    color: var(--obsidian);
}

.gallery-masonry {
    column-count: 3;
    column-gap: 20px;
}

.gallery-card {
    border-radius: 8px;
    break-inside: avoid;
    cursor: pointer;
    margin-bottom: 20px;
    opacity: 0;
    overflow: hidden;
    position: relative;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.gallery-card.is-hidden {
    display: none !important;
    opacity: 0 !important;
}

.gallery-card img {
    display: block;
    height: auto;
    object-fit: cover;
    transition: transform 0.6s ease;
    width: 100%;
}

.gallery-card:hover img {
    transform: scale(1.05);
}

.gallery-card__overlay {
    background: linear-gradient(to top, rgba(10, 10, 10, 0.9), rgba(10, 10, 10, 0.4), transparent);
    display: flex;
    flex-direction: column;
    inset: 0;
    justify-content: flex-end;
    opacity: 0;
    padding: 24px;
    position: absolute;
    transition: opacity 0.4s ease;
}

.gallery-card:hover .gallery-card__overlay {
    opacity: 1;
}

.gallery-card__overlay span {
    color: var(--gold);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.gallery-card__overlay h3 {
    font-family: var(--display);
    font-size: 22px;
    font-weight: 400;
    margin: 8px 0 16px;
}

.gallery-card__overlay button {
    align-self: flex-start;
    background: transparent;
    border: 1px solid rgba(200, 165, 90, 0.5);
    border-radius: 999px;
    color: white;
    font-size: 12px;
    letter-spacing: 0.1em;
    padding: 10px 24px;
    text-transform: uppercase;
    transition: background 0.3s ease, border-color 0.3s ease;
}

.gallery-card__overlay button:hover {
    background: rgba(200, 165, 90, 0.15);
    border-color: var(--gold);
}

/* ===== Lightbox ===== */
.lightbox {
    align-items: center;
    backdrop-filter: blur(18px);
    background: rgba(10, 10, 10, 0.95);
    display: flex;
    flex-direction: column;
    inset: 0;
    justify-content: center;
    position: fixed;
    z-index: 200;
}

.lightbox[hidden] {
    display: none;
}

.lightbox__close {
    background: transparent;
    border: 0;
    color: white;
    padding: 16px;
    position: absolute;
    right: 24px;
    top: 24px;
    transition: color 0.3s ease;
    z-index: 5;
}

.lightbox__close:hover {
    color: var(--gold);
}

.lightbox__nav {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    color: white;
    height: 56px;
    padding: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    transition: background 0.3s ease, border-color 0.3s ease;
    width: 56px;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox__nav:hover {
    background: rgba(200, 165, 90, 0.2);
    border-color: var(--gold);
}

.lightbox__nav--prev {
    left: 24px;
}

.lightbox__nav--next {
    right: 24px;
}

.lightbox__stage {
    align-items: center;
    display: flex;
    height: 80vh;
    justify-content: center;
    max-width: 90vw;
}

.lightbox__image {
    border-radius: 8px;
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    transition: opacity 0.3s ease;
}

.lightbox__info {
    align-items: center;
    display: flex;
    gap: 20px;
    margin-top: 24px;
}

.lightbox__counter {
    color: var(--gold);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.15em;
}

.lightbox__title {
    color: rgba(255, 255, 255, 0.7);
    font-family: var(--display);
    font-size: 18px;
}

/* ===== Animation initial states ===== */
[data-page-hero] > * {
    opacity: 0;
}

[data-services-detail-header],
[data-gallery-header],
[data-process-summary-header],
[data-gallery-filters] {
    opacity: 0;
}

[data-services-title],
[data-services-subtitle],
[data-before-title],
[data-projects-header],
[data-process-header],
[data-reviews-header],
[data-cta-content] > *,
.contact-grid .animate-in,
[data-why-label],
[data-why-headline],
[data-why-body],
[data-why-features] > *,
[data-why-cta] {
    opacity: 0;
}

.is-revealed {
    opacity: 1 !important;
}

@keyframes bounce-gentle {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

@keyframes spin-slow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@media (max-width: 1024px) {
    .why-section__panel {
        display: none;
    }

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

    .gallery-masonry {
        column-count: 2;
    }
}

@media (max-width: 800px) {
    .site-nav__inner {
        padding: 0 24px;
    }

    .brand-logo {
        height: 105px;
        margin-top: -26px;
        margin-bottom: -34px;
        margin-left: -24px;
    }

    .site-nav__links,
    .site-nav__cta {
        display: none;
    }

    .site-nav__menu {
        display: block;
    }

    .hero-section h1 {
        font-size: clamp(56px, 15vw, 88px);
    }

    .hero-section p {
        font-size: 18px;
    }

    .hero-section__actions,
    .stats-row,
    .trust-row {
        flex-direction: column;
    }

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

    .projects-masonry {
        column-count: 1;
    }

    .gallery-masonry {
        column-count: 1;
    }

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

    .service-detail--reversed {
        direction: ltr;
    }

    .service-detail__image {
        min-height: 280px;
    }

    .service-detail__content {
        padding: 32px 24px;
    }

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

    .lightbox__nav {
        height: 44px;
        width: 44px;
    }

    .lightbox__nav--prev {
        left: 12px;
    }

    .lightbox__nav--next {
        right: 12px;
    }

    .process-line {
        display: none;
    }

    .process-step::before {
        display: none;
    }

    .process-step,
    .process-step--right > * {
        display: block;
        grid-column: auto;
        text-align: left;
    }

    .process-step--left .process-step__title {
        justify-content: flex-start;
    }

    .reviews-carousel {
        gap: 12px;
    }

    .reviews-nav {
        height: 40px;
        width: 40px;
    }

    .reviews-nav svg {
        width: 18px;
        height: 18px;
    }

    .review-card {
        padding: 32px 24px;
    }

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

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

    .site-footer__bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

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