/* ==================================================
   VILA FINISHES DESIGN SYSTEM
================================================== */

:root {
    /* Official Vila Finishes palette */
    --primary: #9c8165;
    --primary-hover: #876e56;
    --primary-dark: #7c6c5d;
    --primary-soft: #b6aa9c;

    --cream: #e4dbd2;
    --cream-light: #f6f2ee;
    --cream-dark: #d8cec4;

    --dark: #242424;
    --dark-soft: #343434;
    --dark-muted: #4b4743;

    --grey: #7c6c5d;
    --grey-light: #b6aa9c;
    --white: #ffffff;

    --border: rgba(36, 36, 36, 0.14);
    --border-light: rgba(36, 36, 36, 0.08);
    --border-dark: rgba(255, 255, 255, 0.16);

    /* Typography */
    --font-heading:
        "Cormorant Garamond",
        Georgia,
        serif;

    --font-body:
        "Cabinet Grotesk",
        Arial,
        sans-serif;

    --text-xs: 0.72rem;
    --text-sm: 0.82rem;
    --text-base: 1rem;
    --text-lg: 1.08rem;
    --text-xl: 1.2rem;

    --heading-small: clamp(2rem, 3vw, 2.8rem);
    --heading-medium: clamp(2.8rem, 5vw, 4.5rem);
    --heading-large: clamp(3.8rem, 7vw, 7rem);
    --heading-hero: clamp(5rem, 9vw, 9rem);

    /* Spacing */
    --space-2xs: 6px;
    --space-xs: 10px;
    --space-sm: 16px;
    --space-md: 24px;
    --space-lg: 38px;
    --space-xl: 56px;
    --space-2xl: 80px;
    --space-3xl: 120px;
    --space-section: 130px;

    /* Layout */
    --container-width: 1180px;
    --container-wide: 1380px;
    --container-gutter: 6%;

    /* Shadows */
    --shadow-small:
        0 8px 24px rgba(36, 36, 36, 0.06);

    --shadow-medium:
        0 18px 45px rgba(36, 36, 36, 0.09);

    --shadow-large:
        0 25px 65px rgba(36, 36, 36, 0.13);

    --shadow: var(--shadow-medium);

    /* Motion */
    --transition-fast: 0.2s ease;
    --transition: 0.35s ease;
    --transition-slow: 0.65s ease;
}


/* =========================
   RESET
========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--cream-light);
    color: var(--dark);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.75;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.menu-open {
    overflow: hidden;
}

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

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

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

h1,
h2,
h3,
h4,
blockquote {
    color: inherit;
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1;
    text-wrap: balance;
}

p {
    text-wrap: pretty;
}

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

.container-wide {
    width: min(
        var(--container-wide),
        calc(100% - (var(--container-gutter) * 2))
    );
    margin-inline: auto;
}

.section {
    padding-block: var(--space-section);
}

.section-label {
    display: inline-block;
    margin-bottom: var(--space-sm);
    color: var(--primary);
    font-family: var(--font-body);
    font-size: var(--text-xs);
    font-weight: 600;
    letter-spacing: 0.22rem;
    line-height: 1.4;
    text-transform: uppercase;
}
.section-heading {
    max-width: 800px;
    margin: 0 auto var(--space-2xl);
    text-align: center;
}

.section-heading h2 {
    margin-bottom: var(--space-md);
    font-size: var(--heading-medium);
    font-weight: 600;
    letter-spacing: -0.025em;
}

.section-heading p {
    max-width: 680px;
    margin-inline: auto;
    color: var(--grey);
    font-size: var(--text-lg);
    line-height: 1.8;
}

/* ==================================================
   LUXURY HEADER & NAVIGATION
================================================== */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2000;
    width: 100%;
    background:
        linear-gradient(rgba(246, 242, 238, 0.965), rgba(246, 242, 238, 0.965)),
        url("../images/textures/texture-microcement.webp") center / cover;
    border-bottom: 1px solid rgba(36, 36, 36, 0.1);
    box-shadow: 0 10px 35px rgba(36, 36, 36, 0.055);
    backdrop-filter: blur(18px);
    transition:
        background 0.4s ease,
        border-color 0.4s ease,
        box-shadow 0.4s ease;
}

.site-header.scrolled,
.site-header.inner-page-header {
    background:
        linear-gradient(rgba(246, 242, 238, 0.985), rgba(246, 242, 238, 0.985)),
        url("../images/textures/texture-microcement.webp") center / cover;
    border-bottom-color: rgba(36, 36, 36, 0.14);
    box-shadow: 0 14px 38px rgba(36, 36, 36, 0.09);
}

.header-announcement {
    display: flex;
    min-height: 34px;
    padding: 7px 6%;
    align-items: center;
    justify-content: center;
    background: rgba(124, 108, 93, 0.94);
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
}

.header-announcement p {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    font-size: 0.67rem;
    font-weight: 500;
    letter-spacing: 0.18rem;
    line-height: 1.3;
    text-transform: uppercase;
}

.header-announcement i {
    width: 3px;
    height: 3px;
    background: rgba(255, 255, 255, 0.58);
    border-radius: 50%;
}

.premium-navbar {
    display: flex;
    width: min(1420px, 91%);
    min-height: 112px;
    margin: 0 auto;
    align-items: center;
    justify-content: space-between;
    gap: 46px;
    transition: min-height 0.4s ease;
}

.site-header.scrolled .premium-navbar,
.site-header.inner-page-header .premium-navbar {
    min-height: 88px;
}

.premium-logo {
    position: relative;
    z-index: 2003;
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    transition: transform 0.35s ease;
}

.premium-logo::after {
    display: none;
}

.premium-logo img {
    display: block;
    width: 186px;
    height: auto;
    object-fit: contain;
    transition:
        width 0.4s ease,
        transform 0.4s ease;
}

.premium-logo:hover {
    transform: translateY(-1px);
}

.premium-logo:hover img {
    transform: scale(1.012);
}

.site-header.scrolled .premium-logo img,
.site-header.inner-page-header .premium-logo img {
    width: 154px;
}

.premium-navigation {
    display: flex;
    align-items: center;
    gap: clamp(28px, 3vw, 54px);
}

.premium-nav-links {
    display: flex;
    align-items: center;
    gap: clamp(24px, 2.4vw, 42px);
    list-style: none;
}

.premium-nav-links li {
    display: flex;
}

.premium-nav-links a {
    position: relative;
    padding: 14px 0;
    color: var(--dark);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.135rem;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.premium-nav-links a::after {
    position: absolute;
    bottom: 6px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary);
    content: "";
    transition: width 0.3s ease;
}

.premium-nav-links a:hover,
.premium-nav-links a.active {
    color: var(--primary-dark);
}

.premium-nav-links a:hover::after,
.premium-nav-links a.active::after {
    width: 100%;
}

.premium-quote-button {
    display: inline-flex;
    min-width: 218px;
    min-height: 58px;
    padding: 15px 20px 15px 25px;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    background: transparent;
    border: 1px solid rgba(156, 129, 101, 0.78);
    color: var(--dark);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.115rem;
    text-transform: uppercase;
    box-shadow: none;
    transition:
        background 0.35s ease,
        border-color 0.35s ease,
        color 0.35s ease,
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.premium-quote-arrow {
    color: var(--primary);
    font-size: 1.15rem;
    line-height: 1;
    transition:
        color 0.35s ease,
        transform 0.35s ease;
}

.premium-quote-button:hover,
.premium-quote-button.active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
    box-shadow: 0 14px 30px rgba(36, 36, 36, 0.12);
    transform: translateY(-2px);
}

.premium-quote-button:hover .premium-quote-arrow,
.premium-quote-button.active .premium-quote-arrow {
    color: var(--white);
    transform: translateX(5px);
}

.premium-menu-toggle {
    position: relative;
    z-index: 2004;
    display: none;
    width: 50px;
    height: 50px;
    padding: 11px;
    background: transparent;
    border: 1px solid rgba(156, 129, 101, 0.48);
    cursor: pointer;
    transition:
        background 0.3s ease,
        border-color 0.3s ease;
}

.premium-menu-toggle:hover {
    background: rgba(228, 219, 210, 0.65);
    border-color: var(--primary);
}

.premium-menu-toggle span {
    display: block;
    width: 100%;
    height: 1px;
    margin: 7px 0;
    background: var(--dark);
    transform-origin: center;
    transition:
        opacity 0.3s ease,
        transform 0.3s ease;
}

.premium-menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.premium-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.premium-menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.navigation-backdrop {
    position: fixed;
    inset: 0;
    z-index: 2001;
    display: block;
    background: rgba(15, 14, 13, 0.58);
    border: 0;
    opacity: 0;
    visibility: hidden;
    cursor: pointer;
    backdrop-filter: blur(4px);
    transition:
        opacity 0.4s ease,
        visibility 0.4s ease;
}

.navigation-backdrop.active {
    opacity: 1;
    visibility: visible;
}


/* =========================
   BUTTONS
========================= */

.btn {
    display: inline-flex;
    min-width: 190px;
    min-height: 56px;
    padding: 15px 28px;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);

    background: var(--primary);
    border: 1px solid var(--primary);
    color: var(--white);

    font-family: var(--font-body);
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 0.09rem;
    line-height: 1.2;
    text-align: center;
    text-transform: uppercase;

    cursor: pointer;
    box-shadow: var(--shadow-small);

    transition:
        background var(--transition),
        border-color var(--transition),
        color var(--transition),
        box-shadow var(--transition),
        transform var(--transition);
}

.btn:hover {
    background: var(--primary-hover);
    border-color: var(--primary-hover);
    box-shadow: var(--shadow-medium);
    transform: translateY(-3px);
}
.btn:active {
    box-shadow: var(--shadow-small);
    transform: translateY(-1px);
}

.btn:focus-visible {
    outline: 3px solid rgba(173, 138, 102, 0.3);
    outline-offset: 4px;
}

.btn-outline {
    background: transparent;
    border-color: var(--white);
}

.btn-outline:hover {
    background: var(--white);
    border-color: var(--white);
    color: var(--dark);
}

.btn-dark {
    background: var(--dark);
    border-color: var(--dark);
}

.btn-dark:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.btn-outline-light {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.75);
}

.btn-outline-light:hover {
    background: var(--white);
    border-color: var(--white);
    color: var(--dark);
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    color: var(--dark);
    font-weight: 500;
    transition: var(--transition);
}

.text-link span {
    font-size: 1.25rem;
    transition: var(--transition);
}

.text-link:hover {
    color: var(--primary);
}

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


/* ==================================================
   HERO SLIDESHOW
================================================== */

.hero-slider {
    position: relative;
    width: 100%;
    height: calc(100vh - 146px);
    min-height: 650px;
    margin-top: 146px;
    overflow: hidden;
    background: #171614;
    color: var(--white);
    isolation: isolate;
}

.hero-slider .hero-slide {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: flex;
    width: 100%;
    height: 100%;
    padding: 130px 8% 110px;
    align-items: center;
    justify-content: flex-start;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    text-align: left;
    transition:
        opacity 1s ease,
        visibility 1s ease;
}

.hero-slider .hero-slide.active {
    z-index: 2;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.hero-slider .hero-slide-image {
    position: absolute;
    inset: 0;
    z-index: -3;
    display: block;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: center;
    transform: scale(1.03);
    transition: transform 7s ease;
}

.hero-slider .hero-slide.active .hero-slide-image {
    transform: scale(1.1);
}

.hero-slider .hero-slide-overlay {
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        linear-gradient(
            90deg,
            rgba(12, 12, 14, 0.88) 0%,
            rgba(12, 12, 14, 0.68) 38%,
            rgba(12, 12, 14, 0.28) 72%,
            rgba(12, 12, 14, 0.12) 100%
        ),
        linear-gradient(
            to top,
            rgba(12, 12, 14, 0.5),
            transparent 58%
        );
}

.hero-slider .hero-slide-content {
    position: relative;
    z-index: 4;
    width: min(900px, 72%);
    max-width: 900px;
    margin: 0;
    color: var(--white);
    opacity: 0;
    text-align: left;
    transform: translateY(30px);
    transition:
        opacity 0.8s ease 0.25s,
        transform 0.8s ease 0.25s;
}

.hero-slider .hero-slide.active .hero-slide-content {
    opacity: 1;
    transform: translateY(0);
}

.hero-slider .hero-slide-label {
    display: block;
    margin-bottom: 22px;
    color: #e6c7a5;
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 0.28rem;
    text-align: left;
    text-transform: uppercase;
}

.hero-slider .hero-slide h1,
.hero-slider .hero-slide h2 {
    max-width: 900px;
    margin: 0 0 28px;
    color: var(--white);
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(5rem, 8vw, 8.5rem);
    font-weight: 500;
    letter-spacing: -0.035em;
    line-height: 0.9;
    text-align: left;
}

.hero-slider .hero-slide p {
    max-width: 690px;
    margin: 0 0 38px;
    color: rgba(255, 255, 255, 0.84);
    font-size: 1.05rem;
    line-height: 1.75;
    text-align: left;
}

.hero-slider .hero-slide-actions {
    display: flex;
    width: auto;
    margin: 0;
    align-items: center;
    flex-flow: row wrap;
    gap: 16px;
}

.hero-slider .hero-slide-actions .btn {
    width: auto;
    min-width: 220px;
    flex: 0 0 auto;
    white-space: nowrap;
}

.hero-slider .hero-arrow {
    position: absolute;
    top: 50%;
    z-index: 30;
    display: flex;
    width: 56px;
    height: 56px;
    align-items: center;
    justify-content: center;
    background: rgba(20, 18, 16, 0.32);
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 50%;
    color: var(--white);
    cursor: pointer;
    font-size: 1.2rem;
    transform: translateY(-50%);
    backdrop-filter: blur(8px);
    transition: var(--transition);
}

.hero-slider .hero-arrow:hover {
    background: var(--white);
    color: var(--dark);
}

.hero-slider .hero-arrow-previous {
    left: 28px;
}

.hero-slider .hero-arrow-next {
    right: 28px;
}

.hero-slider .hero-slider-controls {
    position: absolute;
    right: 8%;
    bottom: 42px;
    z-index: 30;
    display: flex;
    gap: 20px;
}

.hero-slider .hero-indicator {
    position: relative;
    padding: 8px 0 12px;
    background: transparent;
    border: 0;
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    font-size: 0.74rem;
}

.hero-slider .hero-indicator::after {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
    content: "";
}

.hero-slider .hero-indicator::before {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 2;
    width: 0;
    height: 2px;
    background: var(--primary);
    content: "";
    transition: width 0.35s ease;
}

.hero-slider .hero-indicator.active {
    color: var(--white);
}

.hero-slider .hero-indicator.active::before {
    width: 100%;
}

.hero-slider .hero-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 30;
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.18);
}

.hero-slider .hero-progress span {
    display: block;
    width: 0;
    height: 100%;
    background: var(--primary);
}

.hero-slider .hero-progress span.running {
    animation: heroProgress 6s linear forwards;
}

@keyframes heroProgress {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

.hero-slider .hero-scroll-indicator {
    position: absolute;
    bottom: 42px;
    left: 8%;
    z-index: 30;
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.7rem;
    letter-spacing: 0.14rem;
    text-transform: uppercase;
}

/* =========================
   ABOUT
========================= */


.about-home {
    position: relative;
    background:
        linear-gradient(
            rgba(246, 242, 238, 0.91),
            rgba(246, 242, 238, 0.91)
        ),
        url("../images/textures/texture-microcement.webp")
        center / cover;
}

.about-layout {
    display: grid;
    grid-template-columns: 1.5fr 0.7fr;
    gap: 100px;
    align-items: center;
}

.about-text h2 {
    max-width: 720px;
    margin-bottom: 30px;
    font-size: clamp(3rem, 5vw, 5rem);
}

.about-text p {
    max-width: 760px;
    margin-bottom: 20px;
    color: var(--grey);
}

.about-text .text-link {
    margin-top: 18px;
}

.about-feature {
    padding: 50px 42px;
    background: var(--cream);
    border-left: 3px solid var(--primary);
}

.experience-number {
    color: var(--primary);
    font-family: "Cormorant Garamond", serif;
    font-size: 6.5rem;
    font-weight: 600;
    line-height: 0.9;
}

.about-feature h3 {
    margin: 20px 0 15px;
    font-size: 2rem;
}

.about-feature p {
    color: var(--grey);
}


/* =========================
   PROJECTS
========================= */

.projects {
    background: var(--cream);
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.project-card {
    position: relative;
    min-height: 470px;
    overflow: hidden;
    background: var(--dark-soft);
}

.project-card img {
    width: 100%;
    height: 100%;
    min-height: 470px;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.project-card::after {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            to top,
            rgba(20, 18, 16, 0.82),
            transparent 60%
        );
    content: "";
}

.project-card:hover img {
    transform: scale(1.07);
}

.project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 2;
    width: 100%;
    padding: 32px;
    color: var(--white);
}

.project-overlay span {
    color: #e6ccb0;
    font-size: 0.76rem;
    letter-spacing: 0.15rem;
    text-transform: uppercase;
}

.project-overlay h3 {
    margin-top: 8px;
    font-size: 2.2rem;
}

.section-button {
    margin-top: 55px;
    text-align: center;
}


/* =========================
   SERVICES
========================= */
.services-preview {
    background:
        linear-gradient(
            rgba(228, 219, 210, 0.92),
            rgba(228, 219, 210, 0.92)
        ),
        url("../images/textures/texture-marmorino.webp")
        center / cover;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border-top: 1px solid var(--border);
    border-left: 1px solid var(--border);
}

.service-card {
    min-height: 330px;
    padding: 50px;
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}

.service-card:hover {
    background: var(--cream-light);
}

.service-number {
    color: var(--primary);
    font-family: "Cormorant Garamond", serif;
    font-size: 1.5rem;
}

.service-card h3 {
    margin: 45px 0 18px;
    font-size: 2.6rem;
}

.service-card p {
    max-width: 470px;
    margin-bottom: 30px;
    color: var(--grey);
}

.service-card a {
    color: var(--primary-dark);
    font-size: 0.9rem;
    font-weight: 500;
}


/* =========================
   PHILOSOPHY
========================= */

.philosophy {
    min-height: 650px;
    background:
        linear-gradient(
            rgba(18, 17, 15, 0.58),
            rgba(18, 17, 15, 0.68)
        ),
        url("../images/philosophy.webp") center / cover no-repeat;
}

.philosophy-overlay {
    display: flex;
    min-height: 650px;
    padding: 80px 6%;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.philosophy-content {
    max-width: 950px;
    color: var(--white);
}

.philosophy-content blockquote {
    margin-bottom: 30px;
    font-size: clamp(3rem, 6vw, 5.8rem);
}

.philosophy-content p {
    max-width: 710px;
    margin: auto;
    color: rgba(255, 255, 255, 0.85);
}


/* =========================
   WHY US
========================= */

.why-us {
    background: var(--cream-light);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.why-card {
    padding: 42px 32px;
    background: var(--white);
    border-top: 3px solid transparent;
    box-shadow: 0 15px 35px rgba(34, 32, 30, 0.05);
    transition: var(--transition);
}

.why-card:hover {
    border-top-color: var(--primary);
    box-shadow: var(--shadow);
    transform: translateY(-8px);
}

.why-card span {
    color: var(--primary);
    font-family: "Cormorant Garamond", serif;
    font-size: 1.5rem;
}

.why-card h3 {
    margin: 35px 0 17px;
    font-size: 2rem;
}

.why-card p {
    color: var(--grey);
}


/* =========================
   PROCESS
========================= */

.process {
    background: var(--white);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.process-card {
    position: relative;
    min-height: 330px;
    padding: 45px 32px;
    border-top: 1px solid var(--border);
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.process-card:first-child {
    border-left: 1px solid var(--border);
}

.process-number {
    display: inline-flex;
    width: 62px;
    height: 62px;
    align-items: center;
    justify-content: center;
    background: var(--cream);
    border-radius: 50%;
    color: var(--primary-dark);
    font-family: "Cormorant Garamond", serif;
    font-size: 1.5rem;
    transition: var(--transition);
}

.process-card:hover .process-number {
    background: var(--primary);
    color: var(--white);
}

.process-card h3 {
    margin: 38px 0 18px;
    font-size: 2rem;
}

.process-card p {
    color: var(--grey);
}


/* =========================
   INSTAGRAM
========================= */

.instagram-section {
    background: var(--cream);
}

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

.instagram-heading h2 {
    font-size: clamp(3rem, 5vw, 4.5rem);
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.instagram-item {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: var(--dark-soft);
}

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

.instagram-item::after {
    position: absolute;
    inset: 0;
    background: rgba(20, 18, 16, 0);
    content: "";
    transition: var(--transition);
}

.instagram-item span {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    color: var(--white);
    font-size: 0.82rem;
    letter-spacing: 0.08rem;
    opacity: 0;
    text-transform: uppercase;
    transform: translate(-50%, -20%);
    transition: var(--transition);
}

.instagram-item:hover img {
    transform: scale(1.08);
}

.instagram-item:hover::after {
    background: rgba(20, 18, 16, 0.52);
}

.instagram-item:hover span {
    opacity: 1;
    transform: translate(-50%, -50%);
}


/* =========================
   FINAL CTA
========================= */

.final-cta {
    position: relative;
    padding: 130px 0;
    background:
        linear-gradient(
            rgba(36, 36, 36, 0.88),
            rgba(36, 36, 36, 0.88)
        ),
        url("../images/textures/texture-venetian.webp")
        center / cover no-repeat;
    color: var(--white);
    text-align: center;
}
.final-cta-content {
    max-width: 900px;
}

.final-cta h2 {
    margin-bottom: 25px;
    font-size: clamp(3.2rem, 6vw, 6rem);
}

.final-cta p {
    max-width: 700px;
    margin: 0 auto 40px;
    color: rgba(255, 255, 255, 0.75);
}


/* =========================
   PREMIUM FOOTER
========================= */

.footer {
    padding: 110px 6% 0;
    background: #171614;
    color: var(--white);
}

.footer-top {
    display: flex;
    max-width: 1260px;
    margin: 0 auto;
    padding-bottom: 75px;
    align-items: flex-end;
    justify-content: space-between;
    gap: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-statement {
    max-width: 850px;
}

.footer-statement h2 {
    max-width: 850px;
    font-size: clamp(3rem, 5.5vw, 5.8rem);
    font-weight: 500;
}

.footer-contact-button {
    display: inline-flex;
    min-width: 175px;
    min-height: 58px;
    padding: 16px 24px;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    background: var(--primary);
    color: var(--white);
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.07rem;
    text-transform: uppercase;
    transition: var(--transition);
}

.footer-contact-button span {
    font-size: 1.1rem;
    transition: var(--transition);
}

.footer-contact-button:hover {
    background: var(--white);
    color: var(--dark);
    transform: translateY(-4px);
}

.footer-contact-button:hover span {
    transform: translate(4px, -4px);
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 0.75fr);
    gap: 65px;
    max-width: 1260px;
    margin: 0 auto;
    padding: 80px 0 65px;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 28px;
}

.footer-logo img {
    width: 155px;
    height: auto;
}

.footer-brand p {
    max-width: 390px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.92rem;
}

.footer-location {
    margin-top: 24px;
    color: #dfc3a6 !important;
    font-size: 0.82rem !important;
    letter-spacing: 0.06rem;
    text-transform: uppercase;
}

.footer-column {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 13px;
}

.footer-column h3 {
    margin-bottom: 15px;
    color: #dfc3a6;
    font-family: var(--font-body);
    font-size: 0.74rem;
    font-weight: 600;
    letter-spacing: 0.15rem;
    text-transform: uppercase;
}

.footer-column a {
    position: relative;
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-column a::after {
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary);
    content: "";
    transition: var(--transition);
}

.footer-column a:hover {
    color: var(--white);
}

.footer-column a:hover::after {
    width: 100%;
}

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

.footer-social-row {
    display: flex;
    max-width: 1260px;
    margin: 0 auto;
    padding: 28px 0;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
}

.footer-social-links a,
.back-to-top {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
    letter-spacing: 0.06rem;
    text-transform: uppercase;
    transition: var(--transition);
}

.footer-social-links a span,
.back-to-top span {
    color: var(--primary);
    transition: var(--transition);
}

.footer-social-links a:hover,
.back-to-top:hover {
    color: var(--white);
}

.footer-social-links a:hover span {
    transform: translate(3px, -3px);
}

.back-to-top:hover span {
    transform: translateY(-4px);
}

.footer-bottom {
    display: flex;
    max-width: 1260px;
    margin: 0 auto;
    padding: 27px 0;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    color: rgba(255, 255, 255, 0.42);
    font-size: 0.76rem;
}

/* =========================
   SCROLL ANIMATIONS
========================= */

.reveal {
    opacity: 0;
    transform: translateY(35px);
    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
}

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


/* =========================
   INNER PAGE HERO
========================= */

.page-hero {
    min-height: 78vh;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.about-page-hero {
    background-image:
        linear-gradient(
            rgba(20, 18, 16, 0.48),
            rgba(20, 18, 16, 0.62)
        ),
        url("../images/about-hero.webp");
}

.page-hero-overlay {
    display: flex;
    min-height: 78vh;
    padding: 175px 6% 80px;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.page-hero-content {
    max-width: 1000px;
    color: var(--white);
}

.page-hero-content h1 {
    margin-bottom: 28px;
    font-size: clamp(3.7rem, 7vw, 7rem);
}

.page-hero-content p {
    max-width: 720px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.86);
    font-size: 1.1rem;
}


/* =========================
   ABOUT STORY
========================= */

.about-story {
    background: var(--white);
}

.about-story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 95px;
    align-items: center;
}

.about-story-image {
    position: relative;
}

.about-story-image img {
    width: 100%;
    min-height: 650px;
    object-fit: cover;
}

.about-story-badge {
    position: absolute;
    right: -35px;
    bottom: 45px;
    width: 220px;
    padding: 32px;
    background: var(--primary);
    color: var(--white);
}

.about-story-badge strong {
    display: block;
    font-family: "Cormorant Garamond", serif;
    font-size: 4.5rem;
    line-height: 0.9;
}

.about-story-badge span {
    display: block;
    margin-top: 15px;
    font-size: 0.85rem;
    line-height: 1.5;
}

.about-story-content h2 {
    margin-bottom: 30px;
    font-size: clamp(3rem, 5vw, 5rem);
}

.about-story-content p {
    margin-bottom: 20px;
    color: var(--grey);
}


/* =========================
   FOUNDERS
========================= */

.founders {
    background: var(--cream);
}

.founder-grid {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.founder-card {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    background: var(--white);
}

.founder-card-reverse {
    grid-template-columns: 1.1fr 0.9fr;
}

.founder-card-reverse .founder-image {
    order: 2;
}

.founder-card-reverse .founder-content {
    order: 1;
}

.founder-image img {
    width: 100%;
    height: 100%;
    min-height: 600px;
    object-fit: cover;
}

.founder-content {
    display: flex;
    padding: 70px;
    justify-content: center;
    flex-direction: column;
}

.founder-role {
    margin-bottom: 18px;
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.14rem;
    text-transform: uppercase;
}

.founder-content h3 {
    margin-bottom: 28px;
    font-size: clamp(3rem, 5vw, 4.7rem);
}

.founder-content p {
    margin-bottom: 18px;
    color: var(--grey);
}


/* =========================
   ABOUT PHILOSOPHY
========================= */

.about-philosophy {
    min-height: 650px;
    background:
        linear-gradient(
            rgba(18, 16, 14, 0.58),
            rgba(18, 16, 14, 0.7)
        ),
        url("../images/about-philosophy.webp")
        center / cover no-repeat;
}

.about-philosophy-overlay {
    display: flex;
    min-height: 650px;
    padding: 90px 6%;
    align-items: center;
}

.about-philosophy-content {
    text-align: center;
    color: var(--white);
}

.about-philosophy-content blockquote {
    max-width: 1000px;
    margin: 0 auto 30px;
    font-size: clamp(3rem, 6vw, 5.7rem);
}

.about-philosophy-content p {
    color: rgba(255, 255, 255, 0.82);
}


/* =========================
   VALUES
========================= */

.values {
    background: var(--cream-light);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.value-card {
    min-height: 330px;
    padding: 42px 32px;
    background: var(--white);
    border-bottom: 3px solid transparent;
    box-shadow: 0 14px 35px rgba(34, 32, 30, 0.05);
    transition: var(--transition);
}

.value-card:hover {
    border-bottom-color: var(--primary);
    box-shadow: var(--shadow);
    transform: translateY(-8px);
}

.value-card span {
    color: var(--primary);
    font-family: "Cormorant Garamond", serif;
    font-size: 1.5rem;
}

.value-card h3 {
    margin: 40px 0 18px;
    font-size: 2.1rem;
}

.value-card p {
    color: var(--grey);
}


/* =========================
   EXPERIENCE
========================= */

.experience-section {
    background: var(--white);
}

.experience-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 100px;
    align-items: start;
}

.experience-content {
    position: sticky;
    top: 130px;
}

.experience-content h2 {
    margin-bottom: 30px;
    font-size: clamp(3rem, 5vw, 5rem);
}

.experience-content p {
    margin-bottom: 20px;
    color: var(--grey);
}

.experience-content .btn {
    margin-top: 20px;
}

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

.experience-list-item {
    display: grid;
    grid-template-columns: 70px 1fr;
    gap: 25px;
    padding: 38px 0;
    border-bottom: 1px solid var(--border);
}

.experience-list-item > span {
    color: var(--primary);
    font-family: "Cormorant Garamond", serif;
    font-size: 1.5rem;
}

.experience-list-item h3 {
    margin-bottom: 10px;
    font-size: 2rem;
}

.experience-list-item p {
    color: var(--grey);
}

/* =========================
   SERVICES PAGE HERO
========================= */

.services-page-hero {
    background-image:
        linear-gradient(
            rgba(19, 17, 15, 0.5),
            rgba(19, 17, 15, 0.66)
        ),
        url("../images/services-hero.webp");
}


/* =========================
   SERVICES INTRO
========================= */

.services-intro {
    background: var(--white);
}

.services-intro-grid {
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    gap: 100px;
    align-items: start;
}

.services-intro-heading h2 {
    font-size: clamp(3rem, 5vw, 5.2rem);
}

.services-intro-text {
    padding-top: 35px;
}

.services-intro-text p {
    margin-bottom: 22px;
    color: var(--grey);
    font-size: 1.05rem;
}


/* =========================
   FEATURED SERVICES
========================= */

.featured-services {
    background: var(--cream);
}

.service-feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 680px;
    margin-bottom: 80px;
    background: var(--white);
}

.service-feature:last-child {
    margin-bottom: 0;
}

.service-feature-reverse .service-feature-image {
    order: 2;
}

.service-feature-reverse .service-feature-content {
    order: 1;
}

.service-feature-image img {
    width: 100%;
    height: 100%;
    min-height: 680px;
    object-fit: cover;
}

.service-feature-content {
    display: flex;
    padding: 75px;
    justify-content: center;
    flex-direction: column;
}

.service-feature-number {
    margin-bottom: 35px;
    color: var(--primary);
    font-family: "Cormorant Garamond", serif;
    font-size: 1.8rem;
}

.service-feature-content h3 {
    margin-bottom: 28px;
    font-size: clamp(3.2rem, 5vw, 5rem);
}

.service-feature-content p {
    margin-bottom: 18px;
    color: var(--grey);
}

.service-benefits {
    display: grid;
    gap: 12px;
    margin: 15px 0 35px;
    list-style: none;
}

.service-benefits li {
    position: relative;
    padding-left: 25px;
    color: var(--dark-soft);
}

.service-benefits li::before {
    position: absolute;
    top: 0.68rem;
    left: 0;
    width: 8px;
    height: 1px;
    background: var(--primary);
    content: "";
}


/* =========================
   SERVICE CATEGORIES
========================= */

.service-categories {
    background: var(--white);
}

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

.service-category-card {
    min-height: 560px;
    padding: 55px;
    background: var(--cream-light);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.service-category-card:hover {
    background: var(--cream);
    border-color: rgba(173, 138, 102, 0.45);
    box-shadow: var(--shadow);
    transform: translateY(-7px);
}

.category-number {
    color: var(--primary);
    font-family: "Cormorant Garamond", serif;
    font-size: 1.7rem;
}

.service-category-card h3 {
    margin: 42px 0 20px;
    font-size: 2.8rem;
}

.service-category-card p {
    margin-bottom: 30px;
    color: var(--grey);
}

.service-category-card ul {
    display: grid;
    gap: 13px;
    list-style: none;
}

.service-category-card li {
    position: relative;
    padding-left: 24px;
    color: var(--dark-soft);
}

.service-category-card li::before {
    position: absolute;
    top: 0.7rem;
    left: 0;
    width: 8px;
    height: 1px;
    background: var(--primary);
    content: "";
}


/* =========================
   APPLICATIONS
========================= */

.service-applications {
    min-height: 730px;
    background:
        linear-gradient(
            rgba(18, 16, 14, 0.58),
            rgba(18, 16, 14, 0.74)
        ),
        url("../images/service-applications.webp")
        center / cover no-repeat;
}

.service-applications-overlay {
    display: flex;
    min-height: 730px;
    padding: 120px 0;
    align-items: center;
    color: var(--white);
}

.service-applications-heading {
    max-width: 780px;
    margin-bottom: 60px;
}

.service-applications-heading h2 {
    margin-bottom: 22px;
    font-size: clamp(3.2rem, 6vw, 5.7rem);
}

.service-applications-heading p {
    max-width: 650px;
    color: rgba(255, 255, 255, 0.78);
}

.application-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid rgba(255, 255, 255, 0.28);
    border-left: 1px solid rgba(255, 255, 255, 0.28);
}

.application-item {
    min-height: 180px;
    padding: 30px;
    border-right: 1px solid rgba(255, 255, 255, 0.28);
    border-bottom: 1px solid rgba(255, 255, 255, 0.28);
    transition: var(--transition);
}

.application-item:hover {
    background: rgba(255, 255, 255, 0.09);
}

.application-item span {
    color: #e0c4a8;
    font-family: "Cormorant Garamond", serif;
    font-size: 1.35rem;
}

.application-item h3 {
    margin-top: 55px;
    font-size: 2rem;
}


/* =========================
   SERVICE PROCESS
========================= */

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

.service-process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.service-process-card {
    min-height: 380px;
    padding: 44px 32px;
    background: var(--white);
    border-top: 1px solid var(--border);
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.service-process-card:first-child {
    border-left: 1px solid var(--border);
}

.service-process-card > span {
    display: inline-flex;
    width: 60px;
    height: 60px;
    align-items: center;
    justify-content: center;
    background: var(--cream);
    border-radius: 50%;
    color: var(--primary-dark);
    font-family: "Cormorant Garamond", serif;
    font-size: 1.4rem;
    transition: var(--transition);
}

.service-process-card:hover > span {
    background: var(--primary);
    color: var(--white);
}

.service-process-card h3 {
    margin: 40px 0 18px;
    font-size: 2rem;
}

.service-process-card p {
    color: var(--grey);
}


/* =========================
   SERVICES FAQ
========================= */

.services-faq {
    background: var(--white);
}

.services-faq-grid {
    display: grid;
    grid-template-columns: 0.75fr 1.25fr;
    gap: 100px;
    align-items: start;
}

.faq-heading {
    position: sticky;
    top: 130px;
}

.faq-heading h2 {
    margin-bottom: 25px;
    font-size: clamp(3rem, 5vw, 5rem);
}

.faq-heading p {
    color: var(--grey);
}

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

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-question {
    display: flex;
    width: 100%;
    padding: 30px 0;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    background: transparent;
    border: 0;
    color: var(--dark);
    cursor: pointer;
    text-align: left;
}

.faq-question > span:first-child {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.85rem;
    font-weight: 600;
}

.faq-icon {
    display: inline-flex;
    min-width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    background: var(--cream);
    border-radius: 50%;
    color: var(--primary-dark);
    font-size: 1.4rem;
    transition: var(--transition);
}

.faq-question[aria-expanded="true"] .faq-icon {
    background: var(--primary);
    color: var(--white);
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer p {
    padding: 0 65px 30px 0;
    color: var(--grey);
}

/* =========================
   GALLERY PAGE HERO
========================= */

.gallery-page-hero {
    background-image:
        linear-gradient(
            rgba(19, 17, 15, 0.5),
            rgba(19, 17, 15, 0.68)
        ),
        url("../images/gallery-hero.webp");
}

/* =========================
   GALLERY INTRO
========================= */

.gallery-intro {
    background: var(--white);
}

.gallery-intro-grid {
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    gap: 100px;
    align-items: start;
}

.gallery-intro-heading h2 {
    font-size: clamp(3rem, 5vw, 5.2rem);
}

.gallery-intro-text {
    padding-top: 35px;
}

.gallery-intro-text p {
    margin-bottom: 22px;
    color: var(--grey);
    font-size: 1.05rem;
}


/* =========================
   GALLERY FILTERS
========================= */

.gallery-section {
    background: var(--cream-light);
}

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

.gallery-filter {
    padding: 12px 20px;
    background: transparent;
    border: 1px solid var(--border);
    color: var(--dark-soft);
    cursor: pointer;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.04rem;
    transition: var(--transition);
}

.gallery-filter:hover,
.gallery-filter.active {
    background: var(--dark);
    border-color: var(--dark);
    color: var(--white);
}


/* =========================
   GALLERY GRID
========================= */

.gallery-grid {
    display: grid;
    grid-auto-flow: dense;
    grid-auto-rows: 220px;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    grid-row: span 2;
    min-height: 460px;
    padding: 0;
    overflow: hidden;
    background: var(--dark-soft);
    border: 0;
    cursor: pointer;
    text-align: left;
    transition:
        opacity 0.35s ease,
        transform 0.35s ease;
}

.gallery-item.hidden {
    display: none;
}

.gallery-item-large {
    grid-column: span 2;
}

.gallery-item-wide {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item-tall {
    grid-row: span 3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.gallery-item::after {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            to top,
            rgba(17, 15, 13, 0.82),
            rgba(17, 15, 13, 0.02) 65%
        );
    content: "";
    transition: background 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.06);
}

.gallery-item:hover::after {
    background:
        linear-gradient(
            to top,
            rgba(17, 15, 13, 0.9),
            rgba(17, 15, 13, 0.12) 75%
        );
}

.gallery-item-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 2;
    width: 100%;
    padding: 30px;
    color: var(--white);
}

.gallery-item-category {
    display: block;
    margin-bottom: 8px;
    color: #dfc2a2;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.14rem;
    text-transform: uppercase;
}

.gallery-item-overlay strong {
    font-family: "Cormorant Garamond", serif;
    font-size: 2rem;
    font-weight: 600;
}

.gallery-empty {
    display: none;
    padding: 70px 25px;
    color: var(--grey);
    text-align: center;
}

.gallery-empty.visible {
    display: block;
}


/* =========================
   GALLERY CTA
========================= */

.gallery-cta {
    background: var(--white);
}

.gallery-cta-grid {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 70px;
    align-items: end;
}

.gallery-cta-content {
    max-width: 800px;
}

.gallery-cta-content h2 {
    margin-bottom: 25px;
    font-size: clamp(3rem, 5vw, 5rem);
}

.gallery-cta-content p {
    max-width: 670px;
    color: var(--grey);
}


/* =========================
   LIGHTBOX
========================= */

.gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 3000;
    display: flex;
    padding: 45px 100px;
    align-items: center;
    justify-content: center;
    background: rgba(12, 11, 10, 0.97);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}

.gallery-lightbox.active {
    opacity: 1;
    pointer-events: auto;
}

.lightbox-content {
    display: flex;
    width: min(1100px, 100%);
    height: min(80vh, 820px);
    align-items: center;
    flex-direction: column;
    justify-content: center;
}

.lightbox-content img {
    width: 100%;
    height: calc(100% - 115px);
    object-fit: contain;
}

.lightbox-caption {
    width: 100%;
    padding-top: 22px;
    color: var(--white);
    text-align: center;
}

.lightbox-caption > span {
    color: #dfc2a2;
    font-size: 0.72rem;
    letter-spacing: 0.14rem;
    text-transform: uppercase;
}

.lightbox-caption h2 {
    margin: 4px 0 3px;
    font-size: 2.2rem;
}

.lightbox-caption p {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.8rem;
}

.lightbox-close {
    position: absolute;
    top: 22px;
    right: 30px;
    width: 52px;
    height: 52px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 50%;
    color: var(--white);
    cursor: pointer;
    font-size: 2rem;
    line-height: 1;
    transition: var(--transition);
}

.lightbox-close:hover {
    background: var(--white);
    color: var(--dark);
}

.lightbox-arrow {
    position: absolute;
    top: 50%;
    display: inline-flex;
    width: 55px;
    height: 55px;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: var(--white);
    cursor: pointer;
    font-size: 1.4rem;
    transform: translateY(-50%);
    transition: var(--transition);
}

.lightbox-arrow:hover {
    background: var(--white);
    color: var(--dark);
}

.lightbox-previous {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}
.gallery-coming-soon {
    padding: 70px;
    background: var(--white);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    text-align: center;
}

.gallery-coming-soon > h2 {
    max-width: 850px;
    margin: 0 auto 24px;
    font-size: clamp(3rem, 5vw, 5.2rem);
}

.gallery-coming-soon > p {
    max-width: 760px;
    margin: 0 auto 55px;
    color: var(--grey);
}

.gallery-coming-soon-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    text-align: left;
}

.gallery-coming-soon-card {
    min-height: 310px;
    padding: 38px 30px;
    background: var(--cream-light);
    border: 1px solid var(--border);
}

.gallery-coming-soon-card > span {
    color: var(--primary);
    font-family: "Cormorant Garamond", serif;
    font-size: 1.5rem;
}

.gallery-coming-soon-card h3 {
    margin: 42px 0 18px;
    font-size: 2.5rem;
}

.gallery-coming-soon-card p {
    color: var(--grey);
}

@media (max-width: 900px) {
    .gallery-coming-soon-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .gallery-coming-soon {
        padding: 45px 24px;
    }
}

/* =========================
   CONTACT PAGE HERO
========================= */

.contact-page-hero {
    background:
        linear-gradient(
            rgba(36, 36, 36, 0.72),
            rgba(36, 36, 36, 0.72)
        ),
        var(--primary-dark);
}


/* =========================
   CONTACT INTRO
========================= */

.contact-intro {
    background: var(--white);
}

.contact-intro-grid {
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    gap: 100px;
    align-items: start;
}

.contact-intro-heading h2 {
    font-size: clamp(3rem, 5vw, 5.2rem);
}

.contact-intro-text {
    padding-top: 35px;
}

.contact-intro-text p {
    margin-bottom: 22px;
    color: var(--grey);
    font-size: 1.05rem;
}


/* =========================
   CONTACT MAIN
========================= */

.contact-main {
    background: var(--cream);
}

.contact-main-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 70px;
    align-items: start;
}

.contact-details {
    position: sticky;
    top: 125px;
    padding: 55px;
    background: var(--dark);
    color: var(--white);
}

.contact-details h2 {
    margin-bottom: 22px;
    font-size: clamp(2.8rem, 4vw, 4.3rem);
}

.contact-details-intro {
    margin-bottom: 45px;
    color: rgba(255, 255, 255, 0.68);
}

.contact-detail-list {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.contact-detail-item {
    display: grid;
    grid-template-columns: 45px 1fr;
    gap: 20px;
    padding: 28px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.contact-detail-number {
    color: #dfc2a2;
    font-family: "Cormorant Garamond", serif;
    font-size: 1.35rem;
}

.contact-detail-item h3 {
    margin-bottom: 9px;
    font-size: 1.7rem;
}

.contact-detail-item a,
.contact-detail-item p {
    display: block;
    margin-bottom: 4px;
    color: rgba(255, 255, 255, 0.67);
    font-size: 0.92rem;
    transition: var(--transition);
}

.contact-detail-item a:hover {
    color: var(--white);
}

.contact-quick-actions {
    display: flex;
    margin-top: 40px;
    align-items: center;
    flex-wrap: wrap;
    gap: 25px;
}

.contact-details .text-link {
    color: var(--white);
}


/* =========================
   CONTACT FORM
========================= */

.contact-form-wrapper {
    padding: 60px;
    background: var(--white);
    box-shadow: var(--shadow);
}

.contact-form-wrapper h2 {
    margin-bottom: 20px;
    font-size: clamp(3rem, 5vw, 4.8rem);
}

.contact-form-wrapper > p {
    max-width: 650px;
    margin-bottom: 40px;
    color: var(--grey);
}

.contact-form {
    display: grid;
    gap: 25px;
}

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

.form-group {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.form-group label {
    color: var(--dark-soft);
    font-size: 0.77rem;
    font-weight: 600;
    letter-spacing: 0.06rem;
    text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 16px;
    background: var(--cream-light);
    border: 1px solid var(--border);
    border-radius: 0;
    color: var(--dark);
    outline: none;
    transition: var(--transition);
}

.form-group textarea {
    min-height: 180px;
    resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    background: var(--white);
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(173, 138, 102, 0.12);
}

.character-count {
    position: absolute;
    right: 12px;
    bottom: 8px;
    color: var(--grey);
    font-size: 0.72rem;
}

.form-consent {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.form-consent input {
    width: 18px;
    height: 18px;
    margin-top: 4px;
    accent-color: var(--primary);
}

.form-consent label {
    color: var(--grey);
    font-size: 0.86rem;
}

.contact-submit {
    width: fit-content;
    min-width: 190px;
    cursor: pointer;
}

.contact-submit:disabled {
    cursor: wait;
    opacity: 0.65;
}

.form-note {
    color: var(--grey);
    font-size: 0.78rem;
}

.form-messages {
    margin-bottom: 28px;
}

.form-message {
    padding: 16px 18px;
    border-left: 4px solid;
    font-size: 0.9rem;
}

.form-message-success {
    background: #edf6ee;
    border-color: #507c57;
    color: #315137;
}

.form-message-error {
    background: #f9eded;
    border-color: #a85454;
    color: #743737;
}

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


/* =========================
   CONTACT OPTIONS
========================= */

.contact-options {
    background: var(--white);
}

.contact-option-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.contact-option-card {
    min-height: 370px;
    padding: 45px 35px;
    background: var(--cream-light);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.contact-option-card:hover {
    background: var(--cream);
    border-color: var(--primary);
    box-shadow: var(--shadow);
    transform: translateY(-8px);
}

.contact-option-card > span {
    color: var(--primary);
    font-family: "Cormorant Garamond", serif;
    font-size: 1.5rem;
}

.contact-option-card h3 {
    margin: 55px 0 18px;
    font-size: 2.5rem;
}

.contact-option-card p {
    margin-bottom: 28px;
    color: var(--grey);
}

.contact-option-card strong {
    color: var(--primary-dark);
    font-size: 0.88rem;
    font-weight: 500;
    overflow-wrap: anywhere;
}

/* =========================
   LEGAL PAGES
========================= */

.legal-hero {
    padding: 200px 0 110px;
    background: var(--dark);
    color: var(--white);
}

.legal-hero-content {
    max-width: 950px;
}

.legal-hero h1 {
    max-width: 900px;
    margin-bottom: 24px;
    font-size: clamp(4rem, 7vw, 7rem);
}

.legal-hero p {
    max-width: 720px;
    margin-bottom: 28px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.05rem;
}

.legal-updated {
    color: #dfc3a6;
    font-size: 0.78rem;
    letter-spacing: 0.08rem;
    text-transform: uppercase;
}

.legal-page {
    background: var(--white);
}

.legal-layout {
    display: grid;
    grid-template-columns: 260px minmax(0, 780px);
    gap: 100px;
    justify-content: center;
    align-items: start;
}

.legal-navigation {
    position: sticky;
    top: 125px;
    display: flex;
    padding: 30px;
    flex-direction: column;
    gap: 12px;
    background: var(--cream-light);
    border: 1px solid var(--border);
}

.legal-navigation > span {
    margin-bottom: 12px;
    color: var(--primary-dark);
    font-size: 0.73rem;
    font-weight: 600;
    letter-spacing: 0.12rem;
    text-transform: uppercase;
}

.legal-navigation a {
    color: var(--grey);
    font-size: 0.84rem;
    transition: var(--transition);
}

.legal-navigation a:hover {
    color: var(--primary);
    transform: translateX(4px);
}

.legal-content section {
    padding: 0 0 48px;
    margin-bottom: 48px;
    border-bottom: 1px solid var(--border);
    scroll-margin-top: 125px;
}

.legal-content section:last-child {
    margin-bottom: 0;
    border-bottom: 0;
}

.legal-content h2 {
    margin-bottom: 22px;
    font-size: clamp(2.3rem, 4vw, 3.3rem);
}

.legal-content p {
    margin-bottom: 18px;
    color: var(--grey);
}

.legal-content ul {
    display: grid;
    gap: 12px;
    margin: 20px 0 24px;
    padding-left: 22px;
    color: var(--grey);
}

.legal-content a {
    color: var(--primary-dark);
    text-decoration: underline;
    text-underline-offset: 4px;
}

.legal-contact-box {
    display: flex;
    margin-top: 28px;
    padding: 30px;
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
    background: var(--cream-light);
    border-left: 3px solid var(--primary);
}

.legal-contact-box strong {
    margin-bottom: 5px;
    color: var(--dark);
}

.legal-contact-box p {
    margin-bottom: 0;
}

/* ==================================================
   FINISH COMPARISON
================================================== */

.finish-comparison {
    background: var(--cream-light);
}

.finish-comparison-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    align-items: stretch;
}

.finish-comparison-card {
    display: flex;
    min-width: 0;
    padding: 46px 36px;
    flex-direction: column;
    background: var(--white);
    border: 1px solid var(--border);
    box-shadow: 0 14px 35px rgba(34, 32, 30, 0.05);
    transition:
        transform var(--transition),
        box-shadow var(--transition),
        border-color var(--transition);
}

.finish-comparison-card:hover {
    border-color: rgba(173, 138, 102, 0.55);
    box-shadow: var(--shadow);
    transform: translateY(-8px);
}

.featured-finish {
    border-top: 4px solid var(--primary);
}

.finish-card-header {
    display: flex;
    min-height: 32px;
    margin-bottom: 40px;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.finish-number {
    color: var(--primary);
    font-family: "Cormorant Garamond", serif;
    font-size: 1.55rem;
}

.finish-tag {
    color: var(--primary-dark);
    font-size: 0.67rem;
    font-weight: 600;
    letter-spacing: 0.08rem;
    text-align: right;
    text-transform: uppercase;
}

.finish-comparison-card h3 {
    margin-bottom: 20px;
    font-size: clamp(2.8rem, 4vw, 4rem);
}

.finish-introduction {
    min-height: 125px;
    margin-bottom: 30px;
    color: var(--grey);
}

.finish-details {
    margin-bottom: 32px;
    border-top: 1px solid var(--border);
}

.finish-details > div {
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
}

.finish-details dt {
    margin-bottom: 7px;
    color: var(--primary-dark);
    font-size: 0.69rem;
    font-weight: 600;
    letter-spacing: 0.08rem;
    text-transform: uppercase;
}

.finish-details dd {
    margin: 0;
    color: var(--grey);
    font-size: 0.89rem;
    line-height: 1.75;
}

.finish-best-for {
    margin-bottom: 30px;
    padding: 23px;
    background: var(--cream-light);
    border-left: 2px solid var(--primary);
}

.finish-best-for span {
    display: block;
    margin-bottom: 7px;
    color: var(--grey);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.08rem;
    text-transform: uppercase;
}

.finish-best-for strong {
    display: block;
    color: var(--dark);
    font-family: "Cormorant Garamond", serif;
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 1.25;
}

.finish-comparison-card .text-link {
    margin-top: auto;
}


/* QUICK SELECTOR */

.finish-selector {
    display: grid;
    grid-template-columns: 0.7fr 1.3fr;
    gap: 80px;
    margin-top: 100px;
    padding: 65px;
    background: var(--dark);
    color: var(--white);
}

.finish-selector-heading h3 {
    font-size: clamp(2.7rem, 4vw, 4.3rem);
}

.finish-selector-options {
    border-top: 1px solid rgba(255, 255, 255, 0.17);
}

.finish-selector-option {
    display: grid;
    grid-template-columns: 1fr auto 25px;
    gap: 20px;
    padding: 24px 0;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.17);
    transition:
        padding var(--transition),
        background var(--transition);
}

.finish-selector-option > span:first-child {
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.82rem;
}

.finish-selector-option strong {
    color: var(--white);
    font-size: 0.87rem;
    font-weight: 500;
}

.finish-selector-option > span:last-child {
    color: var(--primary);
    font-size: 1.2rem;
    transition: transform var(--transition);
}

.finish-selector-option:hover {
    padding-right: 12px;
    padding-left: 12px;
    background: rgba(255, 255, 255, 0.05);
}

.finish-selector-option:hover > span:last-child {
    transform: translateX(5px);
}

.finish-selector-contact strong {
    color: #e3c7a8;
}

.finish-disclaimer {
    max-width: 940px;
    margin: 38px auto 0;
    color: var(--grey);
    font-size: 0.76rem;
    line-height: 1.7;
    text-align: center;
}

/* ==================================================
   INTERACTIVE FINISH FINDER
================================================== */

.finish-finder {
    background: var(--white);
}

.finish-finder-heading {
    display: grid;
    grid-template-columns: 1fr 0.7fr;
    gap: 90px;
    margin-bottom: 65px;
    align-items: end;
}

.finish-finder-heading h2 {
    max-width: 760px;
    font-size: clamp(3.2rem, 5.5vw, 5.7rem);
}

.finish-finder-heading > p {
    padding-bottom: 10px;
    color: var(--grey);
    font-size: 1.02rem;
}

.finish-finder-shell {
    overflow: hidden;
    background: var(--cream-light);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}


/* PROGRESS */

.finder-progress {
    padding: 28px 42px;
    background: var(--dark);
    color: var(--white);
}

.finder-progress-top {
    display: flex;
    margin-bottom: 14px;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.1rem;
    text-transform: uppercase;
}

.finder-progress-track {
    width: 100%;
    height: 3px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.16);
}

.finder-progress-bar {
    display: block;
    width: 33.333%;
    height: 100%;
    background: var(--primary);
    transition: width 0.45s ease;
}


/* STEPS */

.finder-questions {
    position: relative;
    min-height: 680px;
}

.finder-step {
    display: none;
    padding: 70px;
    animation: finderFadeIn 0.45s ease;
}

.finder-step.active {
    display: block;
}

@keyframes finderFadeIn {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.finder-step-number {
    display: block;
    margin-bottom: 22px;
    color: var(--primary);
    font-family: "Cormorant Garamond", serif;
    font-size: 1.55rem;
}

.finder-step h3 {
    max-width: 850px;
    margin-bottom: 18px;
    font-size: clamp(2.9rem, 4.5vw, 4.8rem);
}

.finder-step > p {
    max-width: 720px;
    margin-bottom: 45px;
    color: var(--grey);
}

.finder-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.finder-options-three {
    grid-template-columns: repeat(3, 1fr);
}

.finder-option {
    display: flex;
    min-height: 225px;
    padding: 30px;
    align-items: flex-start;
    flex-direction: column;
    background: var(--white);
    border: 1px solid var(--border);
    color: var(--dark);
    cursor: pointer;
    text-align: left;
    transition:
        background var(--transition),
        border-color var(--transition),
        box-shadow var(--transition),
        transform var(--transition);
}

.finder-option:hover {
    border-color: rgba(173, 138, 102, 0.58);
    box-shadow: 0 16px 36px rgba(34, 32, 30, 0.09);
    transform: translateY(-6px);
}

.finder-option.selected {
    background: var(--dark);
    border-color: var(--dark);
    color: var(--white);
}

.finder-option-icon {
    display: inline-flex;
    width: 52px;
    height: 52px;
    margin-bottom: 35px;
    align-items: center;
    justify-content: center;
    background: var(--cream);
    border-radius: 50%;
    color: var(--primary-dark);
    font-family: "Cormorant Garamond", serif;
    font-size: 1.45rem;
    transition: var(--transition);
}

.finder-option.selected .finder-option-icon {
    background: var(--primary);
    color: var(--white);
}

.finder-option strong {
    margin-bottom: 10px;
    font-family: "Cormorant Garamond", serif;
    font-size: 1.65rem;
    font-weight: 600;
    line-height: 1.15;
}

.finder-option small {
    color: var(--grey);
    font-size: 0.78rem;
    line-height: 1.65;
}

.finder-option.selected small {
    color: rgba(255, 255, 255, 0.65);
}


/* NAVIGATION */

.finder-navigation {
    display: flex;
    min-height: 78px;
    padding: 18px 42px;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    background: var(--white);
    border-top: 1px solid var(--border);
}

.finder-back,
.finder-restart {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: transparent;
    border: 0;
    color: var(--dark);
    cursor: pointer;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.08rem;
    text-transform: uppercase;
    transition: var(--transition);
}

.finder-back:hover,
.finder-restart:hover {
    color: var(--primary);
}

.finder-back:disabled {
    cursor: default;
    opacity: 0.3;
}

.finder-navigation p {
    color: var(--grey);
    font-size: 0.78rem;
}


/* RESULT */

.finder-result {
    display: none;
    min-height: 680px;
    grid-template-columns: 1.15fr 0.85fr;
    animation: finderFadeIn 0.5s ease;
}

.finder-result.active {
    display: grid;
}

.finder-result-content {
    padding: 70px;
    background: var(--white);
}

.finder-result-number {
    display: block;
    margin: 10px 0 18px;
    color: var(--primary);
    font-family: "Cormorant Garamond", serif;
    font-size: 1.5rem;
}

.finder-result-content h3 {
    margin-bottom: 22px;
    font-size: clamp(3.7rem, 6vw, 6rem);
}

.finder-result-summary {
    max-width: 680px;
    margin-bottom: 35px;
    color: var(--grey);
    font-size: 1.03rem;
}

.finder-result-reasons {
    margin-bottom: 32px;
    padding-top: 28px;
    border-top: 1px solid var(--border);
}

.finder-result-reasons h4 {
    margin-bottom: 17px;
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 0.1rem;
    text-transform: uppercase;
}

.finder-result-reasons ul {
    display: grid;
    gap: 12px;
    list-style: none;
}

.finder-result-reasons li {
    position: relative;
    padding-left: 24px;
    color: var(--grey);
}

.finder-result-reasons li::before {
    position: absolute;
    top: 0.72rem;
    left: 0;
    width: 9px;
    height: 1px;
    background: var(--primary);
    content: "";
}

.finder-result-note {
    margin-bottom: 35px;
    padding: 24px;
    background: var(--cream-light);
    border-left: 3px solid var(--primary);
}

.finder-result-note strong {
    display: block;
    margin-bottom: 7px;
    color: var(--primary-dark);
    font-size: 0.7rem;
    letter-spacing: 0.1rem;
    text-transform: uppercase;
}

.finder-result-note p {
    color: var(--grey);
    font-size: 0.8rem;
}

.finder-result-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
}

.finder-restart {
    margin-left: 8px;
}

.finder-result-visual {
    position: relative;
    display: flex;
    min-height: 680px;
    padding: 55px;
    justify-content: flex-end;
    flex-direction: column;
    overflow: hidden;
    color: var(--white);
    isolation: isolate;
}

.finder-result-visual::before {
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        linear-gradient(
            to top,
            rgba(18, 16, 14, 0.86),
            rgba(18, 16, 14, 0.1) 68%
        );
    content: "";
}

.finder-result-visual::after {
    position: absolute;
    inset: 0;
    z-index: -3;
    background-position: center;
    background-size: cover;
    content: "";
    transform: scale(1.04);
}

.finder-result-microcement::after {
    background-image:
        url("../images/service-microcement.webp");
}

.finder-result-venetian::after {
    background-image:
        url("../images/service-venetian.webp");
}

.finder-result-marmorino::after {
    background-image:
        url("../images/service-marmorino.webp");
}

.finder-result-visual span {
    margin-bottom: 8px;
    color: #e3c7a8;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.14rem;
    text-transform: uppercase;
}

.finder-result-visual strong {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(3.2rem, 5vw, 5rem);
    font-weight: 600;
    line-height: 1;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1050px) {
.legal-layout {
    grid-template-columns: 1fr;
    gap: 55px;
}

.legal-navigation {
    position: static;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.legal-navigation > span {
    grid-column: 1 / -1;
}

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

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

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

	.contact-intro-grid,
.contact-main-grid {
    grid-template-columns: 1fr;
    gap: 55px;
}

.contact-intro-text {
    padding-top: 0;
}

.contact-details {
    position: static;
}

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

.contact-option-card:last-child {
    grid-column: 1 / -1;
}

	.gallery-intro-grid {
    grid-template-columns: 1fr;
    gap: 50px;
}

.gallery-intro-text {
    padding-top: 0;
}

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

.gallery-item-large,
.gallery-item-wide {
    grid-column: span 2;
}

.gallery-cta-grid {
    grid-template-columns: 1fr;
    align-items: start;
}

.gallery-lightbox {
    padding: 40px 80px;
}

	.services-intro-grid,
.services-faq-grid {
    grid-template-columns: 1fr;
    gap: 55px;
}

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

.service-feature-reverse .service-feature-image,
.service-feature-reverse .service-feature-content {
    order: initial;
}

.service-feature-image img {
    min-height: 560px;
}

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

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

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

.service-process-card:nth-child(3) {
    border-left: 1px solid var(--border);
}

.faq-heading {
    position: static;
}


	.about-story-grid,
.experience-grid {
    grid-template-columns: 1fr;
}

.about-story-badge {
    right: 30px;
}

.founder-card,
.founder-card-reverse {
    grid-template-columns: 1fr;
}

.founder-card-reverse .founder-image,
.founder-card-reverse .founder-content {
    order: initial;
}

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

.experience-content {
    position: static;
}

    .about-layout {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .about-feature {
        max-width: 520px;
    }

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

    .project-card:last-child {
        grid-column: 1 / -1;
    }

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

    .process-card:nth-child(3) {
        border-left: 1px solid var(--border);
    }

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

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

}


@media (max-width: 800px) {
.legal-hero {
    padding: 160px 0 90px;
}

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

	.footer {
    padding-top: 85px;
}

.footer-main {
    grid-template-columns: repeat(2, 1fr);
    gap: 50px 35px;
}

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

.footer-social-links {
    gap: 22px;
}

	.contact-details,
.contact-form-wrapper {
    padding: 45px 35px;
}

	.gallery-filters {
    justify-content: flex-start;
}

.gallery-lightbox {
    padding: 70px 30px 30px;
}

.lightbox-arrow {
    top: auto;
    bottom: 25px;
    transform: none;
}

.lightbox-previous {
    left: 25px;
}

.lightbox-next {
    right: 25px;
}

.lightbox-content {
    height: calc(100vh - 150px);
    justify-content: flex-start;
}

.lightbox-content img {
    height: calc(100% - 140px);
}

	.service-feature-content {
    padding: 55px 38px;
}

.service-feature-image img {
    min-height: 480px;
}

.service-category-card {
    min-height: auto;
    padding: 45px 35px;
}


	.page-hero,
.page-hero-overlay {
    min-height: 70vh;
}

.about-story-image img {
    min-height: 520px;
}

.about-story-badge {
    right: 20px;
    bottom: 20px;
}

.founder-content {
    padding: 50px 35px;
}

.founder-image img {
    min-height: 500px;
}

    .section {
        padding: 95px 0;
    }
.service-grid,
    .project-grid {
        grid-template-columns: 1fr;
    }

    .project-card:last-child {
        grid-column: auto;
    }

    .service-card {
        min-height: auto;
    }

    .instagram-heading {
        align-items: flex-start;
        flex-direction: column;
    }

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

}


@media (max-width: 600px) {
.legal-navigation {
    grid-template-columns: 1fr;
}

.legal-navigation > span {
    grid-column: auto;
}

.legal-contact-box {
    padding: 24px;
}

	.footer {
    padding-right: 5%;
    padding-left: 5%;
}

.footer-statement h2 {
    font-size: 3.2rem;
}

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

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

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

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

	.contact-details,
.contact-form-wrapper {
    padding: 38px 24px;
}

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

.contact-option-card:last-child {
    grid-column: auto;
}

.contact-option-card {
    min-height: auto;
}

.contact-submit {
    width: 100%;
}

	.gallery-grid {
    display: block;
}

.gallery-item,
.gallery-item-large,
.gallery-item-wide,
.gallery-item-tall {
    width: 100%;
    min-height: 390px;
    margin-bottom: 18px;
}

.gallery-filter {
    flex: 1 1 calc(50% - 12px);
}

.gallery-lightbox {
    padding: 75px 18px 90px;
}

.lightbox-close {
    top: 15px;
    right: 18px;
    width: 45px;
    height: 45px;
}

.lightbox-content {
    height: calc(100vh - 175px);
}

.lightbox-caption h2 {
    font-size: 1.8rem;
}

	.service-feature-content {
    padding: 45px 25px;
}

.service-feature-image img {
    min-height: 400px;
}

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

.service-process-card,
.service-process-card:first-child,
.service-process-card:nth-child(3) {
    border: 1px solid var(--border);
    border-bottom: 0;
}

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

.service-category-card {
    padding: 38px 25px;
}

.faq-question > span:first-child {
    font-size: 1.55rem;
}

.faq-answer p {
    padding-right: 0;
}

	.page-hero-content h1 {
    font-size: 3.5rem;
}

.about-story-image img {
    min-height: 430px;
}

.about-story-badge {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
}

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

.value-card {
    min-height: auto;
}

.hero-slider .hero-slide-actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
}

.hero-slider .hero-slide-actions .btn {
    width: 100%;
    min-width: 0;
}

.founder-content {
    padding: 42px 25px;
}

.founder-image img {
    min-height: 420px;
}

.experience-list-item {
    grid-template-columns: 45px 1fr;
}

    .container {
        width: min(90%, 520px);
    }
.about-feature {
        padding: 40px 30px;
    }

    .experience-number {
        font-size: 5rem;
    }

    .why-grid,
    .process-grid,
    .instagram-grid {
        grid-template-columns: 1fr;
    }

    .process-card,
    .process-card:first-child,
    .process-card:nth-child(3) {
        border: 1px solid var(--border);
        border-bottom: 0;
    }

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

    .project-card,
    .project-card img {
        min-height: 390px;
    }

}

/* =========================
   404 PAGE
========================= */

.error-page {

    display: flex;

    min-height: 100vh;

    padding: 160px 20px;

    align-items: center;

    justify-content: center;

    background: var(--cream-light);

    text-align: center;

}

.error-content {

    max-width: 760px;

}

.error-content h1 {

    margin-bottom: 25px;

    font-size: clamp(4rem, 8vw, 7rem);

}

.error-content p {

    max-width: 620px;

    margin: 0 auto 40px;

    color: var(--grey);

    font-size: 1.1rem;

}
@media (max-width: 1100px) {

    .finish-comparison-grid {
        grid-template-columns: 1fr;
    }

    .finish-introduction {
        min-height: auto;
    }

    .finish-comparison-card {
        padding: 50px;
    }

    .finish-selector {
        grid-template-columns: 1fr;
        gap: 45px;
    }

}


@media (max-width: 700px) {

    .finish-comparison-card {
        padding: 38px 25px;
    }

    .finish-card-header {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }

    .finish-tag {
        text-align: left;
    }

    .finish-selector {
        margin-top: 70px;
        padding: 45px 25px;
    }

    .finish-selector-option {
        grid-template-columns: 1fr 25px;
    }

    .finish-selector-option strong {
        grid-column: 1;
        grid-row: 2;
    }

    .finish-selector-option > span:last-child {
        grid-column: 2;
        grid-row: 1 / span 2;
    }

}
#microcement,
#venetian-plaster,
#marmorino {
    scroll-margin-top: 130px;
}

/* ==================================================
   PREMIUM HEADER RESPONSIVE
================================================== */

@media (max-width: 1120px) and (min-width: 951px) {
    .premium-navbar {
        width: 94%;
        gap: 30px;
    }

    .premium-logo img {
        width: 160px;
    }

    .site-header.scrolled .premium-logo img,
    .site-header.inner-page-header .premium-logo img {
        width: 145px;
    }

    .premium-navigation {
        gap: 26px;
    }

    .premium-nav-links {
        gap: 23px;
    }

    .premium-contact-link {
        display: none !important;
    }

    .premium-quote-button {
        min-width: 190px;
    }
}

@media (max-width: 950px) {
    .header-announcement {
        min-height: 31px;
        padding-inline: 4%;
    }

    .header-announcement p {
        font-size: 0.61rem;
        letter-spacing: 0.135rem;
    }

    .premium-navbar {
        width: 90%;
        min-height: 92px;
    }

    .site-header.scrolled .premium-navbar,
    .site-header.inner-page-header .premium-navbar {
        min-height: 80px;
    }

    .premium-logo img {
        width: 138px;
    }

    .site-header.scrolled .premium-logo img,
    .site-header.inner-page-header .premium-logo img {
        width: 122px;
    }

    .premium-menu-toggle {
        display: block;
    }

    .premium-navigation {
        position: fixed;
        top: 0;
        right: -100%;
        z-index: 2002;
        display: flex;
        width: min(450px, 92%);
        height: 100dvh;
        padding: 138px 42px 46px;
        align-items: stretch;
        flex-direction: column;
        gap: 38px;
        overflow-y: auto;
        background:
            linear-gradient(rgba(246, 242, 238, 0.98), rgba(246, 242, 238, 0.98)),
            url("../images/textures/texture-microcement.webp") center / cover;
        box-shadow: -25px 0 65px rgba(15, 14, 13, 0.18);
        transition: right 0.45s ease;
    }

    .premium-navigation.active {
        right: 0;
    }

    .premium-nav-links {
        align-items: stretch;
        flex-direction: column;
        gap: 0;
    }

    .premium-nav-links li {
        width: 100%;
        border-bottom: 1px solid var(--border);
    }

    .premium-nav-links a,
    .site-header.scrolled .premium-nav-links a,
    .site-header.inner-page-header .premium-nav-links a {
        width: 100%;
        padding: 18px 0;
        color: var(--dark);
        font-family: var(--font-heading);
        font-size: 2.15rem;
        font-weight: 500;
        letter-spacing: -0.015em;
        line-height: 1.1;
        text-transform: none;
    }

    .premium-nav-links a::after {
        display: none;
    }

    .premium-nav-links a.active {
        color: var(--primary);
    }

    .premium-quote-button {
        width: 100%;
        min-height: 62px;
    }
}

@media (max-width: 600px) {
    .header-announcement p {
        gap: 8px;
        font-size: 0.56rem;
        letter-spacing: 0.09rem;
    }

    .header-announcement p span:last-child {
        display: none;
    }

    .header-announcement i {
        display: none;
    }

    .premium-navbar {
        min-height: 84px;
    }

    .premium-logo img {
        width: 116px;
    }

    .site-header.scrolled .premium-logo img,
    .site-header.inner-page-header .premium-logo img {
        width: 106px;
    }

    .premium-menu-toggle {
        width: 46px;
        height: 46px;
    }

    .premium-navigation {
        width: 100%;
        padding: 118px 28px 38px;
    }

    .premium-nav-links a,
    .site-header.scrolled .premium-nav-links a,
    .site-header.inner-page-header .premium-nav-links a {
        font-size: 1.95rem;
    }
}

@media (max-width: 950px) {
    .hero-slider {
        height: calc(100vh - 123px);
        margin-top: 123px;
    }
}

@media (max-width: 600px) {
    .hero-slider {
        height: calc(100svh - 115px);
        min-height: 610px;
        margin-top: 115px;
    }
}

@media (max-width: 1050px) {

    .finish-finder-heading {
        grid-template-columns: 1fr;
        gap: 25px;
    }

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

    .finder-result {
        grid-template-columns: 1fr;
    }

    .finder-result-visual {
        min-height: 520px;
    }

}


@media (max-width: 700px) {

    .finder-progress {
        padding: 24px;
    }

    .finder-questions {
        min-height: auto;
    }

    .finder-step,
    .finder-result-content {
        padding: 45px 24px;
    }

    .finder-options,
    .finder-options-three {
        grid-template-columns: 1fr;
    }

    .finder-option {
        min-height: 190px;
    }

    .finder-navigation {
        padding: 18px 24px;
        align-items: flex-start;
        flex-direction: column-reverse;
        gap: 10px;
    }

    .finder-result-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .finder-result-actions .btn {
        width: 100%;
    }

    .finder-restart {
        margin: 10px 0 0;
        justify-content: center;
    }

    .finder-result-visual {
        min-height: 420px;
        padding: 35px 24px;
    }

}

/* ==================================================
   HERO RESPONSIVE
================================================== */

@media (max-width: 950px) {
    .hero-slider {
        height: calc(100svh - 94px);
        margin-top: 94px;
    }
}

@media (max-width: 900px) {
    .hero-slider .hero-slide {
        padding: 125px 8%;
    }

    .hero-slider .hero-slide-content {
        width: min(760px, 82%);
    }

    .hero-slider .hero-slide h1,
    .hero-slider .hero-slide h2 {
        font-size: clamp(4.2rem, 10vw, 6.8rem);
    }

    .hero-slider .hero-arrow-previous {
        left: 20px;
    }

    .hero-slider .hero-arrow-next {
        right: 20px;
    }
}

@media (max-width: 600px) {
    .hero-slider {
        height: calc(100svh - 86px);
        min-height: 650px;
        margin-top: 86px;
    }

    .hero-slider .hero-slide {
        padding: 115px 6% 145px;
        justify-content: center;
        text-align: center;
    }

    .hero-slider .hero-slide-content {
        width: 100%;
        max-width: 100%;
        margin: auto;
        text-align: center;
    }

    .hero-slider .hero-slide-label,
    .hero-slider .hero-slide h1,
    .hero-slider .hero-slide h2,
    .hero-slider .hero-slide p {
        text-align: center;
    }

    .hero-slider .hero-slide h1,
    .hero-slider .hero-slide h2 {
        font-size: clamp(3.4rem, 15vw, 5.1rem);
    }

    .hero-slider .hero-slide p {
        margin-right: auto;
        margin-left: auto;
    }

    .hero-slider .hero-slide-actions {
        width: 100%;
        align-items: stretch;
        flex-direction: column;
    }

    .hero-slider .hero-slide-actions .btn {
        width: 100%;
        min-width: 0;
    }

    .hero-slider .hero-arrow {
        top: auto;
        bottom: 35px;
        transform: none;
    }

    .hero-slider .hero-arrow-previous {
        left: 6%;
    }

    .hero-slider .hero-arrow-next {
        right: auto;
        left: calc(6% + 58px);
    }

    .hero-slider .hero-scroll-indicator {
        display: none;
    }
}

/*==============================
FAQ
==============================*/

.faq-section{

    padding:120px 8%;

    background:#faf7f3;

}

.faq-container{

    max-width:900px;

    margin:70px auto 0;

}

.faq-item{

    border-bottom:1px solid rgba(0,0,0,.08);

}

.faq-question{

    width:100%;

    padding:32px 0;

    display:flex;

    justify-content:space-between;

    align-items:center;

    background:none;

    border:none;

    cursor:pointer;

    font-family:"Cormorant Garamond",serif;

    font-size:2rem;

    color:var(--dark);

}

.faq-question span{

    font-size:2rem;

    color:var(--primary-dark);

    transition:.35s;

}

.faq-answer{

    max-height:0;

    overflow:hidden;

    transition:max-height .45s ease;

}

.faq-answer p{

    padding-bottom:28px;

    color:var(--text-light);

    line-height:1.8;

}

.faq-item.active .faq-answer{

    max-height:250px;

}


/* ==================================================
   GLOBAL RESPONSIVE DESIGN SYSTEM
================================================== */

@media (max-width: 900px) {
    :root {
        --container-gutter: 7%;
        --space-section: 100px;
    }
}

@media (max-width: 600px) {
    :root {
        --container-gutter: 6%;
        --space-section: 78px;
    }

    body {
        font-size: 15px;
    }

    .section-heading {
        margin-bottom: var(--space-xl);
    }

    .section-heading h2 {
        font-size: clamp(2.7rem, 13vw, 4rem);
    }

    .section-heading p {
        font-size: 0.95rem;
    }

    .btn {
        min-width: 0;
    }
}

/* ==================================================
   MOBILE POLISH
================================================== */

@media (max-width: 700px) {

    h1,
    h2,
    h3,
    h4 {
        overflow-wrap: anywhere;
    }

    .hero-slider .hero-slide-content {
        width: 100% !important;
        max-width: 100% !important;
    }

    .hero-slider .hero-slide h1,
    .hero-slider .hero-slide h2 {
        font-size: clamp(3.2rem, 14vw, 5rem) !important;
        line-height: 0.92 !important;
    }

    .hero-slider .hero-slide p {
        max-width: 34rem !important;
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .hero-slider .hero-slide-actions {
        width: 100% !important;
        flex-direction: column !important;
    }

    .hero-slider .hero-slide-actions .btn {
        width: 100% !important;
    }

    .about-layout,
    .services-intro-grid,
    .gallery-intro-grid,
    .contact-intro-grid,
    .contact-main-grid,
    .finish-finder-heading {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }

    .service-grid,
    .why-grid,
    .process-grid,
    .finish-comparison-grid,
    .service-category-grid,
    .contact-option-grid {
        grid-template-columns: 1fr !important;
    }

    .service-card,
    .why-card,
    .process-card,
    .finish-comparison-card,
    .service-category-card,
    .contact-option-card {
        min-height: auto;
        padding: 34px 24px;
    }

    .finder-step,
    .finder-result-content {
        padding: 42px 22px;
    }

    .finder-options,
    .finder-options-three {
        grid-template-columns: 1fr !important;
    }

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

    .contact-form-wrapper,
    .contact-details {
        padding: 38px 24px;
    }

    .footer-top,
    .footer-social-row,
    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 45px;
    }
}
/* Prevent FAQ question text from inheriting icon rotation */
.faq-question > span:first-child {
    display: block;
    flex: 1;
    transform: none !important;
    writing-mode: horizontal-tb !important;
    text-orientation: mixed !important;
}

.faq-question .faq-icon {
    flex: 0 0 42px;
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(45deg) !important;
}
@media (max-width: 700px) {
    .services-faq-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .faq-heading {
        position: static;
    }

    .faq-question {
        gap: 18px;
        padding: 25px 0;
        align-items: flex-start;
    }

    .faq-question > span:first-child {
        font-size: 1.55rem;
        line-height: 1.2;
    }

    .faq-answer p {
        padding: 0 0 25px;
    }
}


/* ==================================================
   PHASE 2 — EDITORIAL HOMEPAGE REDESIGN
   These rules intentionally override the original
   homepage presentation while preserving all existing
   components and page styles.
================================================== */

.editorial-hero {
    min-height: 720px;
    background: #12110f;
}

.editorial-hero .hero-slide {
    padding: clamp(90px, 11vh, 145px) 7.5% 105px;
    align-items: stretch;
}

.editorial-hero .hero-slide-image {
    filter: saturate(0.88) contrast(1.02);
}

.editorial-hero .hero-slide.active .hero-slide-image {
    transform: scale(1.075);
}

.editorial-hero .hero-slide-overlay {
    background:
        linear-gradient(
            90deg,
            rgba(12, 11, 10, 0.91) 0%,
            rgba(12, 11, 10, 0.74) 39%,
            rgba(12, 11, 10, 0.22) 74%,
            rgba(12, 11, 10, 0.08) 100%
        ),
        linear-gradient(
            180deg,
            rgba(8, 8, 8, 0.12) 0%,
            rgba(8, 8, 8, 0.04) 48%,
            rgba(8, 8, 8, 0.66) 100%
        );
}

.editorial-hero .hero-slide-content {
    display: flex;
    width: min(1180px, 86%);
    max-width: 1180px;
    min-height: 100%;
    flex-direction: column;
    justify-content: space-between;
}

.editorial-hero .hero-slide-label {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-family: "Cabinet Grotesk", sans-serif;
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.22rem;
}

.editorial-hero .hero-display-title,
.editorial-hero .hero-slide-service h2 {
    max-width: 1040px;
    margin: auto 0 0;
    padding-top: 38px;
    font-size: clamp(4.8rem, 9.4vw, 10.5rem);
    font-weight: 400;
    letter-spacing: -0.055em;
    line-height: 0.75;
}

.editorial-hero .hero-display-title span {
    display: block;
}

.editorial-hero .hero-display-title span:nth-child(2) {
    margin-left: clamp(28px, 7vw, 120px);
    font-style: italic;
}

.editorial-hero .hero-display-title span:nth-child(3) {
    margin-left: clamp(8px, 2vw, 32px);
}

.editorial-hero .hero-slide-service h2 {
    max-width: 820px;
    line-height: 0.8;
}

.editorial-hero .hero-editorial-bottom {
    display: grid;
    width: min(820px, 100%);
    margin-top: clamp(34px, 5vh, 72px);
    grid-template-columns: minmax(240px, 1fr) auto;
    align-items: end;
    gap: 44px;
}

.editorial-hero .hero-editorial-bottom p {
    max-width: 520px;
    margin: 0;
    color: rgba(255, 255, 255, 0.76);
    font-size: clamp(0.94rem, 1.05vw, 1.08rem);
    line-height: 1.8;
}

.editorial-hero .hero-slide-actions {
    display: flex;
    min-width: max-content;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
}

.editorial-hero .hero-slide-actions .btn {
    min-width: 190px;
}

.hero-text-action {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: rgba(255, 255, 255, 0.84);
    font-size: 0.76rem;
    letter-spacing: 0.11rem;
    text-transform: uppercase;
}

.hero-text-action span {
    font-size: 1rem;
    transition: transform 0.35s ease;
}

.hero-text-action:hover {
    color: #fff;
}

.hero-text-action:hover span {
    transform: translate(4px, -4px);
}

.hero-corner-note {
    position: absolute;
    right: 7.5%;
    bottom: 108px;
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    color: rgba(255, 255, 255, 0.52);
    font-size: 0.64rem;
    letter-spacing: 0.12rem;
    line-height: 1.8;
    text-transform: uppercase;
}

.editorial-hero .hero-arrow {
    top: auto;
    bottom: 90px;
    width: 44px;
    height: 44px;
    transform: none;
}

.editorial-hero .hero-arrow-previous {
    right: calc(7.5% + 56px);
    left: auto;
}

.editorial-hero .hero-arrow-next {
    right: 7.5%;
}

.editorial-hero .hero-slider-controls {
    right: auto;
    bottom: 38px;
    left: 50%;
    transform: translateX(-50%);
}

.editorial-hero .hero-scroll-indicator {
    bottom: 36px;
    left: 7.5%;
}

/* Editorial story */

.editorial-story {
    overflow: hidden;
    background: #f1ece6;
}

.editorial-story-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.8fr);
    align-items: center;
    gap: clamp(60px, 9vw, 150px);
}

.editorial-story-visual {
    position: relative;
    min-height: 690px;
}

.story-image-main {
    width: min(88%, 720px);
    height: 650px;
    overflow: hidden;
}

.story-image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.1s cubic-bezier(0.2, 0.75, 0.2, 1);
}

.editorial-story-visual:hover .story-image-main img {
    transform: scale(1.025);
}

.story-experience {
    position: absolute;
    right: 0;
    bottom: 0;
    display: flex;
    width: min(260px, 48%);
    min-height: 235px;
    padding: 30px;
    flex-direction: column;
    justify-content: space-between;
    background: #24211e;
    color: #fff;
}

.story-experience strong {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(4.6rem, 7vw, 7.5rem);
    font-weight: 400;
    letter-spacing: -0.06em;
    line-height: 0.8;
}

.story-experience span {
    max-width: 160px;
    color: rgba(255, 255, 255, 0.66);
    font-size: 0.72rem;
    letter-spacing: 0.08rem;
    line-height: 1.6;
    text-transform: uppercase;
}

.editorial-story-copy {
    max-width: 600px;
}

.editorial-story-copy h2 {
    margin: 24px 0 32px;
    font-size: clamp(3.6rem, 5.8vw, 6.8rem);
    font-weight: 400;
    letter-spacing: -0.05em;
    line-height: 0.88;
}

.editorial-story-copy p {
    max-width: 560px;
    color: #5f5953;
    font-size: 1rem;
    line-height: 1.9;
}

.editorial-story-copy .story-lead {
    color: #292622;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(1.45rem, 2vw, 2rem);
    line-height: 1.35;
}

.editorial-story-copy .text-link {
    margin-top: 24px;
}

/* Featured projects */

.featured-projects {
    background: #171614;
    color: #fff;
}

.featured-projects h2 {
    color: #fff;
}

.featured-projects .section-label {
    color: #cda678;
}

.featured-projects-heading {
    display: flex;
    margin-bottom: clamp(48px, 7vw, 90px);
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
}

.featured-projects-heading h2 {
    max-width: 760px;
    margin: 20px 0 0;
    font-size: clamp(3.6rem, 6vw, 7.2rem);
    font-weight: 400;
    letter-spacing: -0.05em;
    line-height: 0.86;
}

.featured-projects-heading .text-link {
    flex: 0 0 auto;
    color: rgba(255, 255, 255, 0.76);
}

.featured-project-grid {
    display: grid;
    min-height: 980px;
    grid-template-columns: 1.25fr 0.75fr;
    grid-template-rows: 1fr 0.75fr;
    gap: 18px;
}

.featured-project {
    position: relative;
    display: block;
    min-height: 360px;
    overflow: hidden;
    color: #fff;
}

.featured-project-large {
    grid-row: 1 / 3;
}

.featured-project-wide {
    min-height: 310px;
}

.featured-project img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.001);
    transition: transform 1.1s cubic-bezier(0.2, 0.75, 0.2, 1);
}

.featured-project-shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            to top,
            rgba(8, 8, 8, 0.8) 0%,
            rgba(8, 8, 8, 0.08) 55%,
            rgba(8, 8, 8, 0.02) 100%
        );
    transition: background 0.5s ease;
}

.featured-project-meta {
    position: absolute;
    right: 30px;
    bottom: 28px;
    left: 30px;
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: end;
    column-gap: 18px;
}

.featured-project-meta > span {
    grid-row: 1 / 3;
    color: #d4af83;
    font-size: 0.72rem;
    letter-spacing: 0.1rem;
}

.featured-project-meta strong {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(1.8rem, 3vw, 3.4rem);
    font-weight: 400;
    line-height: 1;
}

.featured-project-meta small {
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.68rem;
    letter-spacing: 0.09rem;
    text-transform: uppercase;
}

.featured-project:hover img {
    transform: scale(1.04);
}

.featured-project:hover .featured-project-shade {
    background:
        linear-gradient(
            to top,
            rgba(8, 8, 8, 0.9) 0%,
            rgba(8, 8, 8, 0.1) 58%,
            rgba(8, 8, 8, 0.02) 100%
        );
}

/* Editorial services */

.editorial-services {
    background:
        linear-gradient(rgba(245, 241, 236, 0.94), rgba(245, 241, 236, 0.94)),
        url("../images/textures/texture-microcement.webp") center / cover;
}

.editorial-services-heading {
    display: grid;
    margin-bottom: clamp(54px, 8vw, 105px);
    grid-template-columns: 0.45fr 1.1fr;
    align-items: start;
    gap: 60px;
}

.editorial-services-heading > div {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(240px, 0.52fr);
    align-items: end;
    gap: 60px;
}

.editorial-services-heading h2 {
    margin: 0;
    font-size: clamp(3.8rem, 6.4vw, 7.6rem);
    font-weight: 400;
    letter-spacing: -0.055em;
    line-height: 0.84;
}

.editorial-services-heading p {
    margin: 0 0 10px;
    color: #625b54;
    line-height: 1.85;
}

.editorial-service-list {
    border-top: 1px solid rgba(35, 31, 28, 0.22);
}

.editorial-service-row {
    display: grid;
    min-height: 165px;
    padding: 30px 12px;
    grid-template-columns: 75px minmax(240px, 0.85fr) minmax(260px, 1fr) 55px;
    align-items: center;
    gap: 22px;
    border-bottom: 1px solid rgba(35, 31, 28, 0.22);
    color: #25221f;
    transition:
        background 0.4s ease,
        padding 0.4s ease;
}

.editorial-service-number {
    color: #9b7958;
    font-size: 0.72rem;
    letter-spacing: 0.12rem;
}

.editorial-service-name {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(2.2rem, 3.8vw, 4.6rem);
    line-height: 0.95;
}

.editorial-service-description {
    max-width: 480px;
    color: #69625b;
    line-height: 1.75;
}

.editorial-service-arrow {
    justify-self: end;
    font-size: 1.45rem;
    transition: transform 0.35s ease;
}

.editorial-service-row:hover {
    padding-right: 24px;
    padding-left: 24px;
    background: rgba(255, 255, 255, 0.5);
}

.editorial-service-row:hover .editorial-service-arrow {
    transform: translate(4px, -4px);
}

/* Transformation preview */

.home-transformation {
    background: #e8e0d7;
}

.home-transformation-grid {
    display: grid;
    grid-template-columns: minmax(300px, 0.62fr) minmax(0, 1.2fr);
    align-items: center;
    gap: clamp(55px, 8vw, 120px);
}

.home-transformation-copy {
    max-width: 520px;
}

.home-transformation-copy h2 {
    margin: 24px 0 30px;
    font-size: clamp(3.4rem, 5.3vw, 6.4rem);
    font-weight: 400;
    letter-spacing: -0.05em;
    line-height: 0.88;
}

.home-transformation-copy p {
    color: #655e57;
    line-height: 1.9;
}

.home-transformation-copy .text-link {
    margin-top: 22px;
}

.home-transformation-visual {
    position: relative;
    min-height: 700px;
}

.transformation-image {
    position: absolute;
    overflow: hidden;
    box-shadow: 0 28px 70px rgba(35, 31, 27, 0.14);
}

.transformation-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.transformation-image span {
    position: absolute;
    bottom: 18px;
    left: 18px;
    padding: 9px 13px;
    background: rgba(20, 18, 16, 0.82);
    color: #fff;
    font-size: 0.64rem;
    letter-spacing: 0.13rem;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
}

.transformation-image-before {
    top: 0;
    right: 0;
    width: 66%;
    height: 70%;
}

.transformation-image-after {
    bottom: 0;
    left: 0;
    z-index: 2;
    width: 64%;
    height: 61%;
    border: 12px solid #e8e0d7;
}

/* Existing lower homepage sections receive a quieter editorial rhythm */

.finish-finder {
    background: #f5f0ea;
}

.why-us {
    background: #24211e;
    color: #fff;
}

.why-us h2,
.why-us h3 {
    color: #fff;
}

.why-us .section-label {
    color: #d2aa7b;
}

.why-us .why-card p {
    color: rgba(255, 255, 255, 0.64);
}

.process {
    background: #eee7df;
}

.philosophy {
    min-height: min(90vh, 920px);
}

.philosophy-content {
    max-width: 1080px;
}

.philosophy-content blockquote {
    font-size: clamp(3.4rem, 6.7vw, 8rem);
    font-weight: 400;
    letter-spacing: -0.05em;
    line-height: 0.88;
}

.final-cta h2 {
    max-width: 1050px;
    font-size: clamp(4rem, 7.5vw, 9rem);
    font-weight: 400;
    letter-spacing: -0.055em;
    line-height: 0.82;
}

/* Phase 2 responsive */

@media (max-width: 1100px) {
    .editorial-hero .hero-slide-content {
        width: 90%;
    }

    .editorial-story-grid,
    .home-transformation-grid {
        gap: 60px;
    }

    .featured-project-grid {
        min-height: 800px;
    }

    .editorial-services-heading {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .editorial-service-row {
        grid-template-columns: 55px minmax(220px, 0.75fr) 1fr 40px;
    }
}

@media (max-width: 850px) {
    .editorial-hero {
        min-height: 650px;
    }

    .editorial-hero .hero-slide {
        padding: 88px 7% 100px;
    }

    .editorial-hero .hero-slide-content {
        width: 100%;
    }

    .editorial-hero .hero-display-title,
    .editorial-hero .hero-slide-service h2 {
        font-size: clamp(4.2rem, 14vw, 7.8rem);
    }

    .editorial-hero .hero-editorial-bottom {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .editorial-hero .hero-slide-actions {
        min-width: 0;
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
    }

    .hero-corner-note {
        display: none;
    }

    .editorial-story-grid,
    .home-transformation-grid {
        grid-template-columns: 1fr;
    }

    .editorial-story-visual {
        min-height: 590px;
    }

    .story-image-main {
        height: 540px;
    }

    .featured-projects-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .featured-project-grid {
        min-height: 0;
        grid-template-columns: 1fr;
        grid-template-rows: none;
    }

    .featured-project-large {
        min-height: 620px;
        grid-row: auto;
    }

    .featured-project-tall,
    .featured-project-wide {
        min-height: 460px;
    }

    .editorial-services-heading > div {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .editorial-service-row {
        min-height: 0;
        padding: 28px 4px;
        grid-template-columns: 48px 1fr 35px;
    }

    .editorial-service-description {
        grid-column: 2 / 4;
        padding-right: 35px;
    }

    .home-transformation-visual {
        min-height: 630px;
    }
}

@media (max-width: 600px) {
    .editorial-hero {
        height: calc(100svh - 124px);
        min-height: 610px;
        margin-top: 124px;
    }

    .editorial-hero .hero-slide {
        padding: 70px 24px 100px;
    }

    .editorial-hero .hero-slide-label {
        letter-spacing: 0.14rem;
    }

    .editorial-hero .hero-display-title,
    .editorial-hero .hero-slide-service h2 {
        margin-top: auto;
        font-size: clamp(3.6rem, 17vw, 5.7rem);
        line-height: 0.79;
    }

    .editorial-hero .hero-display-title span:nth-child(2) {
        margin-left: 18px;
    }

    .editorial-hero .hero-editorial-bottom {
        margin-top: 30px;
    }

    .editorial-hero .hero-editorial-bottom p {
        display: -webkit-box;
        overflow: hidden;
        font-size: 0.88rem;
        line-height: 1.65;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 3;
    }

    .editorial-hero .hero-slide-actions {
        gap: 14px;
    }

    .editorial-hero .hero-slide-actions .btn {
        min-width: 0;
        padding-right: 20px;
        padding-left: 20px;
    }

    .hero-text-action {
        font-size: 0.67rem;
    }

    .editorial-hero .hero-arrow {
        display: none;
    }

    .editorial-hero .hero-slider-controls {
        bottom: 28px;
        gap: 15px;
    }

    .editorial-hero .hero-scroll-indicator {
        display: none;
    }

    .editorial-story-visual {
        min-height: 470px;
    }

    .story-image-main {
        width: 94%;
        height: 420px;
    }

    .story-experience {
        width: 48%;
        min-height: 180px;
        padding: 22px;
    }

    .story-experience strong {
        font-size: 4.4rem;
    }

    .story-experience span {
        font-size: 0.61rem;
    }

    .editorial-story-copy h2,
    .featured-projects-heading h2,
    .editorial-services-heading h2,
    .home-transformation-copy h2 {
        font-size: clamp(3.2rem, 14vw, 4.8rem);
    }

    .featured-project-large {
        min-height: 520px;
    }

    .featured-project-tall,
    .featured-project-wide {
        min-height: 390px;
    }

    .featured-project-meta {
        right: 20px;
        bottom: 20px;
        left: 20px;
    }

    .editorial-service-row {
        grid-template-columns: 38px 1fr 30px;
    }

    .editorial-service-name {
        font-size: 2.25rem;
    }

    .editorial-service-description {
        font-size: 0.88rem;
    }

    .home-transformation-visual {
        min-height: 490px;
    }

    .transformation-image-before {
        width: 74%;
        height: 67%;
    }

    .transformation-image-after {
        width: 72%;
        height: 58%;
        border-width: 8px;
    }

    .philosophy-content blockquote,
    .final-cta h2 {
        font-size: clamp(3rem, 14vw, 5.4rem);
    }
}

@media (prefers-reduced-motion: reduce) {
    .editorial-hero .hero-slide-image,
    .story-image-main img,
    .featured-project img {
        transition: none;
    }
}

/* ==================================================
   PHASE 3 — LUXURY SERVICES PAGE REDESIGN
   Appended overrides preserve the rest of the site.
================================================== */

.services-luxury-hero {
    position: relative;
    min-height: calc(100vh - 122px);
    margin-top: 122px;
    overflow: hidden;
    background: #171614;
    color: var(--white);
    isolation: isolate;
}

.services-luxury-hero-image,
.services-luxury-hero-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.services-luxury-hero-image {
    z-index: -3;
    max-width: none;
    object-fit: cover;
    object-position: center;
    transform: scale(1.03);
    animation: servicesHeroDrift 14s ease-out forwards;
}

@keyframes servicesHeroDrift {
    to { transform: scale(1.1); }
}

.services-luxury-hero-overlay {
    z-index: -2;
    background:
        linear-gradient(90deg, rgba(13, 12, 11, 0.9) 0%, rgba(13, 12, 11, 0.68) 43%, rgba(13, 12, 11, 0.24) 78%, rgba(13, 12, 11, 0.14) 100%),
        linear-gradient(to top, rgba(13, 12, 11, 0.58), transparent 55%);
}

.services-luxury-hero-inner {
    display: flex;
    min-height: calc(100vh - 122px);
    padding-block: 110px 90px;
    align-items: flex-end;
    justify-content: space-between;
    gap: 70px;
}

.services-luxury-hero-copy {
    max-width: 890px;
}

.services-kicker {
    display: inline-block;
    margin-bottom: 26px;
    color: #e2c6a8;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.25rem;
    text-transform: uppercase;
}

.services-luxury-hero h1 {
    margin-bottom: 34px;
    color: var(--white);
    font-size: clamp(5rem, 9vw, 9.4rem);
    font-weight: 500;
    letter-spacing: -0.045em;
    line-height: 0.82;
}

.services-luxury-hero-copy > p {
    max-width: 680px;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.05rem;
    line-height: 1.75;
}

.services-luxury-hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.services-hero-text-link {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.09rem;
    text-transform: uppercase;
    transition: var(--transition);
}

.services-hero-text-link span {
    color: #e2c6a8;
    font-size: 1.1rem;
    transition: var(--transition);
}

.services-hero-text-link:hover { color: #e2c6a8; }
.services-hero-text-link:hover span { transform: translate(4px, -4px); }

.services-luxury-hero-meta {
    display: grid;
    min-width: 240px;
    gap: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
}

.services-luxury-hero-meta div {
    display: grid;
    grid-template-columns: 66px 1fr;
    gap: 18px;
    padding: 22px 0;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.services-luxury-hero-meta strong {
    color: #e2c6a8;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 500;
}

.services-luxury-hero-meta span {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.74rem;
    letter-spacing: 0.05rem;
    line-height: 1.5;
    text-transform: uppercase;
}

.services-hero-scroll {
    position: absolute;
    right: 4.5%;
    bottom: 36px;
    display: flex;
    align-items: center;
    gap: 14px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.66rem;
    letter-spacing: 0.17rem;
    text-transform: uppercase;
}

.services-hero-scroll i {
    display: block;
    width: 52px;
    height: 1px;
    background: rgba(255, 255, 255, 0.45);
    transition: width var(--transition);
}

.services-hero-scroll:hover i { width: 72px; }

.services-editorial-intro {
    background:
        linear-gradient(rgba(246, 242, 238, 0.94), rgba(246, 242, 238, 0.94)),
        url("../images/textures/texture-microcement.webp") center / cover;
}

.services-editorial-intro-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
    gap: clamp(70px, 9vw, 150px);
    align-items: start;
}

.services-editorial-intro-title h2 {
    max-width: 820px;
    font-size: clamp(3.5rem, 6vw, 6.7rem);
    font-weight: 500;
    letter-spacing: -0.035em;
    line-height: 0.96;
}

.services-editorial-intro-copy {
    padding-top: 42px;
}

.services-editorial-intro-copy p {
    margin-bottom: 22px;
    color: var(--grey);
}

.services-editorial-intro-copy .services-intro-lead {
    margin-bottom: 30px;
    color: var(--dark);
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 2.5vw, 2.5rem);
    line-height: 1.18;
}

.signature-services {
    padding: 130px 0;
    background: #ddd2c7;
}

.signature-services-heading {
    display: grid;
    grid-template-columns: 0.48fr 1.52fr;
    gap: 60px;
    margin-bottom: 76px;
    align-items: start;
}

.signature-services-heading > div {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 50px;
}

.signature-services-heading h2 {
    max-width: 700px;
    font-size: clamp(3.4rem, 5.5vw, 6rem);
    font-weight: 500;
    letter-spacing: -0.035em;
}

.signature-services-heading p {
    max-width: 390px;
    padding-bottom: 10px;
    color: var(--grey);
}

.signature-service-row {
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    min-height: 760px;
    background: var(--cream-light);
}

.signature-service-row + .signature-service-row {
    margin-top: 34px;
}

.signature-service-row-reverse {
    grid-template-columns: 0.92fr 1.08fr;
}

.signature-service-row-reverse .signature-service-image-wrap { order: 2; }
.signature-service-row-reverse .signature-service-content { order: 1; }

.signature-service-image-wrap {
    position: relative;
    min-height: 760px;
    overflow: hidden;
    background: var(--dark-soft);
}

.signature-service-image-wrap img {
    width: 100%;
    height: 100%;
    min-height: 760px;
    object-fit: cover;
    transition: transform 1s cubic-bezier(.2,.7,.2,1);
}

.signature-service-row:hover .signature-service-image-wrap img {
    transform: scale(1.04);
}

.signature-image-caption {
    position: absolute;
    right: 28px;
    bottom: 28px;
    padding: 11px 14px;
    background: rgba(19, 17, 15, 0.72);
    color: rgba(255, 255, 255, 0.84);
    font-size: 0.64rem;
    letter-spacing: 0.13rem;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
}

.signature-service-content {
    display: flex;
    padding: clamp(55px, 7vw, 100px);
    justify-content: center;
    flex-direction: column;
}

.signature-service-topline {
    display: flex;
    margin-bottom: 54px;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
    color: var(--primary-dark);
    font-size: 0.69rem;
    font-weight: 600;
    letter-spacing: 0.16rem;
    text-transform: uppercase;
}

.signature-service-content h3 {
    max-width: 620px;
    margin-bottom: 30px;
    font-size: clamp(3rem, 4.8vw, 5.3rem);
    font-weight: 500;
    letter-spacing: -0.035em;
    line-height: 0.98;
}

.signature-service-lead {
    max-width: 650px;
    margin-bottom: 38px;
    color: var(--grey);
    font-size: 1.05rem;
}

.signature-service-details {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 45px;
    margin-bottom: 42px;
}

.signature-service-details h4 {
    margin-bottom: 16px;
    color: var(--dark);
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.15rem;
    text-transform: uppercase;
}

.signature-service-details ul {
    display: grid;
    gap: 10px;
    list-style: none;
}

.signature-service-details li {
    position: relative;
    padding-left: 18px;
    color: var(--grey);
    font-size: 0.91rem;
}

.signature-service-details li::before {
    position: absolute;
    top: 0.78rem;
    left: 0;
    width: 7px;
    height: 1px;
    background: var(--primary);
    content: "";
}

.services-applications-editorial {
    position: relative;
    min-height: 780px;
    overflow: hidden;
    background: #171614;
    color: var(--white);
    isolation: isolate;
}

.services-applications-background {
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        linear-gradient(90deg, rgba(17, 15, 13, 0.92), rgba(17, 15, 13, 0.54)),
        url("../images/service-applications.webp") center / cover no-repeat;
}

.services-applications-inner {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    min-height: 780px;
    gap: 90px;
    padding-block: 120px;
    align-items: center;
}

.services-applications-copy h2 {
    max-width: 720px;
    margin-bottom: 28px;
    font-size: clamp(3.6rem, 6vw, 6.4rem);
    font-weight: 500;
    letter-spacing: -0.04em;
    line-height: 0.94;
}

.services-applications-copy p {
    max-width: 580px;
    color: rgba(255, 255, 255, 0.68);
}

.services-applications-list {
    border-top: 1px solid rgba(255, 255, 255, 0.25);
}

.services-applications-list > div {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 24px;
    padding: 24px 0;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    transition: padding-left var(--transition), background var(--transition);
}

.services-applications-list > div:hover {
    padding-left: 18px;
    background: rgba(255, 255, 255, 0.04);
}

.services-applications-list span {
    color: #e2c6a8;
    font-family: var(--font-heading);
    font-size: 1.45rem;
}

.services-applications-list h3 {
    color: var(--white);
    font-size: clamp(1.9rem, 3vw, 2.8rem);
    font-weight: 500;
}

.services-process-editorial {
    background:
        linear-gradient(rgba(246, 242, 238, 0.95), rgba(246, 242, 238, 0.95)),
        url("../images/textures/texture-marmorino.webp") center / cover;
}

.services-process-heading {
    display: grid;
    grid-template-columns: 0.42fr 1.58fr;
    gap: 60px;
    margin-bottom: 70px;
}

.services-process-heading h2 {
    max-width: 900px;
    font-size: clamp(3.4rem, 5.8vw, 6rem);
    font-weight: 500;
    letter-spacing: -0.035em;
}

.services-process-timeline {
    border-top: 1px solid var(--border);
}

.services-process-step {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 50px;
    padding: 44px 0;
    border-bottom: 1px solid var(--border);
    transition: padding-left var(--transition), background var(--transition);
}

.services-process-step:hover {
    padding-left: 24px;
    background: rgba(255, 255, 255, 0.42);
}

.services-process-number {
    color: var(--primary);
    font-family: var(--font-heading);
    font-size: 2.1rem;
}

.services-process-step > div {
    display: grid;
    grid-template-columns: minmax(240px, 0.7fr) minmax(300px, 1fr);
    gap: 50px;
    align-items: baseline;
}

.services-process-step h3 {
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 500;
}

.services-process-step p {
    max-width: 650px;
    color: var(--grey);
}

.services-faq-luxury {
    background: var(--white);
}

.services-faq-luxury .faq-heading .text-link {
    margin-top: 30px;
}

.services-final-cta {
    padding: 150px 0;
    background:
        linear-gradient(rgba(26, 24, 22, 0.9), rgba(26, 24, 22, 0.9)),
        url("../images/textures/texture-venetian.webp") center / cover;
    color: var(--white);
}

.services-final-cta-inner {
    text-align: center;
}

.services-final-cta h2 {
    margin: 0 auto 30px;
    font-size: clamp(4rem, 7vw, 7.5rem);
    font-weight: 500;
    letter-spacing: -0.045em;
    line-height: 0.88;
}

.services-final-cta p {
    max-width: 690px;
    margin: 0 auto 42px;
    color: rgba(255, 255, 255, 0.7);
}

.services-final-cta-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
}

@media (max-width: 1120px) {
    .services-luxury-hero-inner {
        align-items: center;
    }

    .services-luxury-hero-meta {
        display: none;
    }

    .services-editorial-intro-grid,
    .services-applications-inner {
        grid-template-columns: 1fr;
    }

    .services-editorial-intro-copy {
        max-width: 760px;
        padding-top: 0;
    }

    .signature-services-heading,
    .services-process-heading {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .signature-services-heading > div {
        align-items: flex-start;
        flex-direction: column;
        gap: 20px;
    }

    .signature-service-row,
    .signature-service-row-reverse {
        grid-template-columns: 1fr;
    }

    .signature-service-row-reverse .signature-service-image-wrap,
    .signature-service-row-reverse .signature-service-content {
        order: initial;
    }

    .signature-service-image-wrap,
    .signature-service-image-wrap img {
        min-height: 620px;
    }

    .services-applications-inner {
        align-content: center;
    }
}

@media (max-width: 760px) {
    .services-luxury-hero {
        min-height: calc(100svh - 104px);
        margin-top: 104px;
    }

    .services-luxury-hero-inner {
        min-height: calc(100svh - 104px);
        padding-block: 90px 80px;
        align-items: flex-end;
    }

    .services-luxury-hero-overlay {
        background:
            linear-gradient(to top, rgba(13, 12, 11, 0.95) 0%, rgba(13, 12, 11, 0.68) 62%, rgba(13, 12, 11, 0.35) 100%);
    }

    .services-luxury-hero h1 {
        font-size: clamp(4.2rem, 20vw, 6.4rem);
        line-height: 0.86;
    }

    .services-luxury-hero-copy > p {
        font-size: 0.95rem;
    }

    .services-luxury-hero-actions {
        align-items: flex-start;
        flex-direction: column;
    }

    .services-hero-scroll {
        display: none;
    }

    .services-editorial-intro-grid {
        gap: 38px;
    }

    .signature-services {
        padding: 90px 0;
    }

    .signature-services-heading {
        margin-bottom: 48px;
    }

    .signature-service-row + .signature-service-row {
        margin-top: 18px;
    }

    .signature-service-image-wrap,
    .signature-service-image-wrap img {
        min-height: 430px;
    }

    .signature-service-content {
        padding: 46px 28px 52px;
    }

    .signature-service-topline {
        margin-bottom: 34px;
    }

    .signature-service-details {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .services-applications-editorial,
    .services-applications-inner {
        min-height: auto;
    }

    .services-applications-inner {
        gap: 55px;
        padding-block: 95px;
    }

    .services-applications-list > div {
        grid-template-columns: 52px 1fr;
        padding: 20px 0;
    }

    .services-process-step {
        grid-template-columns: 52px 1fr;
        gap: 20px;
        padding: 34px 0;
    }

    .services-process-step > div {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .services-process-step:hover {
        padding-left: 0;
    }

    .services-final-cta {
        padding: 105px 0;
    }

    .services-final-cta-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .services-final-cta-actions .btn {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .services-luxury-hero-image {
        animation: none;
        transform: none;
    }
}

/* ==================================================
   VILA FINISHES — FINAL SITE POLISH
   Appended by ChatGPT
================================================== */

:root {
    --radius-subtle: 2px;
    --radius-card: 4px;
    --motion-fast: 180ms;
    --motion-standard: 350ms;
    --motion-slow: 700ms;
    --ease-luxury: cubic-bezier(0.22, 1, 0.36, 1);
    --ease-soft: cubic-bezier(0.4, 0, 0.2, 1);
    --focus-ring: 0 0 0 4px rgba(156, 129, 101, 0.22);
    --card-border: 1px solid rgba(36, 36, 36, 0.1);
    --card-shadow: 0 18px 45px rgba(36, 36, 36, 0.07);
    --card-shadow-hover: 0 28px 65px rgba(36, 36, 36, 0.13);
}

body { letter-spacing: -0.005em; }
main { overflow: clip; }
h1, h2, h3, h4, blockquote { letter-spacing: -0.025em; }
p, li, label, input, textarea, select { letter-spacing: 0; }
.section { position: relative; }
.section-heading { margin-bottom: clamp(48px, 6vw, 80px); }
.section-heading h2 { line-height: 0.96; }
.section-heading p { max-width: 660px; }
.section-label { position: relative; padding-left: 34px; }
.section-label::before {
    position: absolute;
    top: 50%;
    left: 0;
    width: 21px;
    height: 1px;
    background: currentColor;
    content: "";
    opacity: 0.7;
    transform: translateY(-50%);
}
.hero-label { padding-left: 0; }
.hero-label::before { display: none; }

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: none;
    box-shadow: var(--focus-ring);
}

.premium-nav-links a:focus-visible,
.text-link:focus-visible,
.footer-column a:focus-visible,
.footer-social-links a:focus-visible,
.back-to-top:focus-visible {
    border-radius: 2px;
    outline: 2px solid var(--primary);
    outline-offset: 6px;
    box-shadow: none;
}

.gallery-item:focus-visible,
.gallery-filter:focus-visible,
.contact-option-card:focus-visible {
    outline: 3px solid var(--primary);
    outline-offset: 4px;
}

.btn {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    transition:
        background var(--motion-standard) var(--ease-soft),
        border-color var(--motion-standard) var(--ease-soft),
        color var(--motion-standard) var(--ease-soft),
        box-shadow var(--motion-standard) var(--ease-luxury),
        transform var(--motion-standard) var(--ease-luxury);
}

.btn::before {
    position: absolute;
    inset: 0;
    z-index: -1;
    background: rgba(255, 255, 255, 0.11);
    content: "";
    transform: translateX(-102%);
    transition: transform 500ms var(--ease-luxury);
}

.btn:hover::before { transform: translateX(0); }
.btn:hover { transform: translateY(-3px); }
.btn:active { transform: translateY(-1px) scale(0.99); }

.text-link { position: relative; padding-bottom: 4px; }
.text-link::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 1px;
    background: currentColor;
    content: "";
    opacity: 0.35;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--motion-standard) var(--ease-luxury);
}
.text-link:hover::after { transform: scaleX(1); }

.project-card,
.instagram-item,
.about-story-image,
.founder-image,
.service-feature-image,
.signature-service-image-wrap,
.gallery-item { border-radius: var(--radius-subtle); }

.project-card img,
.instagram-item img,
.about-story-image img,
.founder-image img,
.service-feature-image img,
.signature-service-image-wrap img,
.gallery-item img {
    transition:
        transform var(--motion-slow) var(--ease-luxury),
        filter var(--motion-standard) var(--ease-soft);
}

.project-card:hover img,
.instagram-item:hover img,
.gallery-item:hover img,
.signature-service-row:hover .signature-service-image-wrap img {
    filter: saturate(1.03) contrast(1.02);
}

.about-story-image,
.founder-image,
.service-feature-image,
.signature-service-image-wrap { overflow: hidden; }

.why-card,
.value-card,
.contact-option-card,
.service-category-card,
.gallery-coming-soon-card {
    border-radius: var(--radius-card);
    transition:
        background var(--motion-standard) var(--ease-soft),
        border-color var(--motion-standard) var(--ease-soft),
        box-shadow var(--motion-standard) var(--ease-luxury),
        transform var(--motion-standard) var(--ease-luxury);
}

.why-card:hover,
.value-card:hover,
.contact-option-card:hover,
.service-category-card:hover,
.gallery-coming-soon-card:hover {
    box-shadow: var(--card-shadow-hover);
    transform: translateY(-8px);
}

.service-card,
.process-card,
.service-process-card,
.application-item,
.experience-list-item {
    transition:
        background var(--motion-standard) var(--ease-soft),
        border-color var(--motion-standard) var(--ease-soft),
        transform var(--motion-standard) var(--ease-luxury);
}
.service-card:hover { transform: translateY(-3px); }
.process-card:hover,
.service-process-card:hover { background: rgba(228, 219, 210, 0.35); }

.reveal {
    opacity: 0;
    transform: translate3d(0, 42px, 0);
    transition:
        opacity 850ms var(--ease-luxury),
        transform 850ms var(--ease-luxury);
    will-change: opacity, transform;
}
.reveal.visible { opacity: 1; transform: translate3d(0, 0, 0); }

.about-story-image.reveal,
.founder-image.reveal,
.service-feature-image.reveal,
.signature-service-image-wrap.reveal,
.gallery-item.reveal { transform: translate3d(0, 25px, 0) scale(0.975); }

.about-story-image.reveal.visible,
.founder-image.reveal.visible,
.service-feature-image.reveal.visible,
.signature-service-image-wrap.reveal.visible,
.gallery-item.reveal.visible { transform: translate3d(0, 0, 0) scale(1); }

.why-card.reveal,
.value-card.reveal,
.process-card.reveal,
.service-process-card.reveal,
.contact-option-card.reveal,
.service-category-card.reveal {
    transform: translate3d(0, 30px, 0);
    transition-duration: 700ms;
}

.founder-card.reveal,
.service-feature.reveal,
.signature-service-row.reveal { transform: translate3d(-35px, 0, 0); }

.founder-card-reverse.reveal,
.service-feature-reverse.reveal,
.signature-service-row-reverse.reveal { transform: translate3d(35px, 0, 0); }

.founder-card.reveal.visible,
.service-feature.reveal.visible,
.signature-service-row.reveal.visible,
.founder-card-reverse.reveal.visible,
.service-feature-reverse.reveal.visible,
.signature-service-row-reverse.reveal.visible { transform: translate3d(0, 0, 0); }

.page-hero { position: relative; overflow: hidden; isolation: isolate; }
.page-hero::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    height: 160px;
    background: linear-gradient(to top, rgba(15, 14, 13, 0.3), transparent);
    content: "";
    pointer-events: none;
}
.page-hero-overlay { position: relative; z-index: 2; }
.page-hero-content { text-shadow: 0 3px 25px rgba(0, 0, 0, 0.24); }
.page-hero-content h1 { max-width: 1050px; margin-inline: auto; line-height: 0.92; }
.page-hero-content p { line-height: 1.75; }

.site-header { will-change: min-height, background, box-shadow; }
.premium-navbar {
    transition:
        min-height 400ms var(--ease-luxury),
        padding 400ms var(--ease-luxury);
}
.premium-nav-links a { transition: color var(--motion-standard) var(--ease-soft); }
.premium-nav-links a::after {
    transform-origin: left;
    transition: width var(--motion-standard) var(--ease-luxury);
}
.premium-quote-button { border-radius: var(--radius-subtle); }

.about-story-image { box-shadow: var(--shadow-medium); }
.about-story-badge { box-shadow: 0 22px 45px rgba(36, 36, 36, 0.18); }
.founder-card {
    border: var(--card-border);
    box-shadow: var(--card-shadow);
    transition:
        box-shadow var(--motion-standard) var(--ease-luxury),
        transform var(--motion-standard) var(--ease-luxury);
}
.founder-card:hover { box-shadow: var(--card-shadow-hover); transform: translateY(-4px); }
.founder-content p:last-child { margin-bottom: 0; }

.service-feature {
    border: var(--card-border);
    box-shadow: var(--card-shadow);
    transition:
        box-shadow var(--motion-standard) var(--ease-luxury),
        transform var(--motion-standard) var(--ease-luxury);
}
.service-feature:hover { box-shadow: var(--card-shadow-hover); transform: translateY(-4px); }

.gallery-filter {
    border-radius: 999px;
    transition:
        background var(--motion-standard) var(--ease-soft),
        border-color var(--motion-standard) var(--ease-soft),
        color var(--motion-standard) var(--ease-soft),
        transform var(--motion-standard) var(--ease-luxury);
}
.gallery-filter:hover { transform: translateY(-2px); }
.gallery-item { box-shadow: 0 15px 35px rgba(36, 36, 36, 0.08); }
.gallery-item-overlay {
    transform: translateY(8px);
    transition: transform var(--motion-standard) var(--ease-luxury);
}
.gallery-item:hover .gallery-item-overlay { transform: translateY(0); }
.gallery-lightbox { backdrop-filter: blur(14px); }

.contact-details,
.contact-form-wrapper { border-radius: var(--radius-card); }
.contact-details { box-shadow: 0 28px 65px rgba(36, 36, 36, 0.18); }
.contact-form-wrapper { border: var(--card-border); box-shadow: var(--card-shadow); }

.form-group input,
.form-group select,
.form-group textarea {
    min-height: 56px;
    border-radius: var(--radius-subtle);
    transition:
        background var(--motion-standard) var(--ease-soft),
        border-color var(--motion-standard) var(--ease-soft),
        box-shadow var(--motion-standard) var(--ease-soft),
        transform var(--motion-standard) var(--ease-luxury);
}
.form-group textarea { min-height: 190px; }
.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover { border-color: rgba(156, 129, 101, 0.5); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    box-shadow: 0 0 0 4px rgba(156, 129, 101, 0.13);
    transform: translateY(-1px);
}
.contact-submit { width: fit-content; }

.contact-option-card { position: relative; overflow: hidden; }
.contact-option-card::after {
    position: absolute;
    right: 30px;
    bottom: 24px;
    color: var(--primary);
    content: "→";
    font-size: 1.3rem;
    opacity: 0;
    transform: translateX(-10px);
    transition:
        opacity var(--motion-standard) var(--ease-soft),
        transform var(--motion-standard) var(--ease-luxury);
}
.contact-option-card:hover::after { opacity: 1; transform: translateX(0); }

.footer-column a:hover { transform: translateX(3px); }
.footer-social-links a:hover,
.back-to-top:hover { transform: translateY(-2px); }

@media (max-width: 1100px) {
    :root { --space-section: 105px; }

    .about-layout,
    .about-story-grid,
    .experience-grid,
    .services-intro-grid,
    .gallery-intro-grid,
    .contact-intro-grid { gap: 60px; }

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

    .contact-main-grid { grid-template-columns: 1fr; }
    .contact-details,
    .experience-content,
    .faq-heading,
    .legal-navigation { position: static; }

    .contact-option-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-option-card:last-child { grid-column: 1 / -1; }
    .footer-main { grid-template-columns: 1.2fr repeat(2, 1fr); }
}

@media (max-width: 760px) {
    :root {
        --container-gutter: 5%;
        --space-section: 78px;
        --space-2xl: 52px;
        --heading-small: clamp(2rem, 9vw, 2.7rem);
        --heading-medium: clamp(2.65rem, 12vw, 4rem);
        --heading-large: clamp(3.3rem, 16vw, 5.3rem);
    }

    body { font-size: 15px; line-height: 1.7; }
    .section-heading { margin-bottom: 45px; text-align: left; }
    .section-heading p { margin-inline: 0; }
    .btn { width: 100%; min-width: 0; min-height: 54px; padding-inline: 20px; }

    .cta-buttons,
    .hero-slider .hero-slide-actions,
    .services-final-cta-actions {
        width: 100%;
        align-items: stretch;
        flex-direction: column;
    }

    .page-hero,
    .page-hero-overlay { min-height: 70svh; }

    .page-hero-overlay {
        padding: clamp(150px, 28vw, 190px) 6% 70px;
        align-items: flex-end;
        text-align: left;
    }

    .page-hero-content h1 {
        margin-inline: 0;
        font-size: clamp(3.3rem, 15vw, 5.1rem);
        line-height: 0.9;
    }
    .page-hero-content p { margin-inline: 0; font-size: 0.96rem; }

    .about-layout,
    .about-story-grid,
    .experience-grid,
    .services-intro-grid,
    .gallery-intro-grid,
    .contact-intro-grid,
    .gallery-cta-grid { grid-template-columns: 1fr; gap: 42px; }

    .founder-card,
    .founder-card-reverse,
    .service-feature,
    .service-feature-reverse { grid-template-columns: 1fr; }

    .founder-card-reverse .founder-image,
    .founder-card-reverse .founder-content,
    .service-feature-reverse .service-feature-image,
    .service-feature-reverse .service-feature-content { order: initial; }

    .founder-content,
    .service-feature-content { padding: 42px 27px; }
    .service-category-grid,
    .application-grid,
    .why-grid,
    .values-grid,
    .process-grid,
    .service-process-grid,
    .contact-option-grid,
    .gallery-coming-soon-grid { grid-template-columns: 1fr; }

    .contact-option-card:last-child { grid-column: auto; }

    .gallery-grid {
        grid-auto-rows: auto;
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .gallery-item,
    .gallery-item-large,
    .gallery-item-wide,
    .gallery-item-tall {
        grid-column: auto;
        grid-row: auto;
        min-height: 430px;
        aspect-ratio: 4 / 5;
    }

    .gallery-filters {
        margin-inline: -5%;
        padding: 0 5% 8px;
        justify-content: flex-start;
        flex-wrap: nowrap;
        overflow-x: auto;
        scrollbar-width: none;
    }
    .gallery-filters::-webkit-scrollbar { display: none; }
    .gallery-filter { flex: 0 0 auto; white-space: nowrap; }

    .contact-main-grid { gap: 30px; }
    .contact-details,
    .contact-form-wrapper { padding: 40px 25px; }
    .form-row { grid-template-columns: 1fr; gap: 25px; }
    .contact-submit { width: 100%; }

    .footer { padding: 78px var(--container-gutter) 0; }
    .footer-top {
        align-items: flex-start;
        flex-direction: column;
        gap: 35px;
        padding-bottom: 50px;
    }
    .footer-contact-button { width: 100%; }
    .footer-main { grid-template-columns: 1fr; gap: 42px; padding: 55px 0; }
    .footer-social-row,
    .footer-bottom { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 430px) {
    :root { --container-gutter: 20px; }
    .premium-logo img { width: 132px; }
    .page-hero-content h1 { font-size: clamp(3rem, 16vw, 4.3rem); }
    .contact-details h2,
    .contact-form-wrapper h2 { font-size: clamp(2.7rem, 14vw, 3.7rem); }
    .gallery-item-overlay,
    .project-overlay { padding: 22px; }
    .gallery-item-overlay strong { font-size: 1.7rem; }
    .founder-content,
    .service-feature-content,
    .service-category-card,
    .contact-details,
    .contact-form-wrapper { padding-right: 22px; padding-left: 22px; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .reveal,
    .reveal.visible,
    .founder-card.reveal,
    .service-feature.reveal,
    .signature-service-row.reveal,
    .founder-card-reverse.reveal,
    .service-feature-reverse.reveal,
    .signature-service-row-reverse.reveal {
        opacity: 1;
        transform: none;
    }
}

/*=========================================
SCROLL PROGRESS BAR
=========================================*/

#scroll-progress{

    position:fixed;

    top:0;

    left:0;

    width:0;

    height:3px;

    z-index:99999;

    background:linear-gradient(
        90deg,
        #cba77d,
        #f4e6c9
    );

    box-shadow:
        0 0 12px rgba(203,167,125,.45);

    transition:
        width .12s linear;

}

/*=========================================
LUXURY PAGE PRELOADER
=========================================*/

body.preloader-active {
    overflow: hidden;
}

#site-preloader {
    position: fixed;
    inset: 0;
    z-index: 99998;

    display: grid;
    place-items: center;

    background: #242424;

    opacity: 1;
    visibility: visible;

    transition:
        opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
        visibility 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

#site-preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.site-preloader-inner {
    width: min(320px, 72vw);
    text-align: center;
}

.site-preloader-logo {
    width: min(230px, 64vw);
    height: auto;

    opacity: 0;
    transform: translateY(18px);

    animation:
        preloader-logo-reveal
        0.9s
        cubic-bezier(0.22, 1, 0.36, 1)
        forwards;
}

.site-preloader-line {
    width: 100%;
    height: 1px;

    margin-top: 30px;

    overflow: hidden;

    background:
        rgba(255, 255, 255, 0.15);
}

.site-preloader-line span {
    display: block;

    width: 100%;
    height: 100%;

    background: #b59a7d;

    transform: translateX(-100%);

    animation:
        preloader-line-fill
        1.25s
        cubic-bezier(0.22, 1, 0.36, 1)
        forwards;
}

@keyframes preloader-logo-reveal {

    to {
        opacity: 1;
        transform: translateY(0);
    }

}

@keyframes preloader-line-fill {

    to {
        transform: translateX(0);
    }

}

@media (prefers-reduced-motion: reduce) {

    .site-preloader-logo,
    .site-preloader-line span {
        animation: none;
        opacity: 1;
        transform: none;
    }

    #site-preloader {
        transition-duration: 0.01ms;
    }

}

/*==================================================
BEFORE / AFTER COMPARISON
==================================================*/

.before-after{
    background:#f8f6f3;
}

.comparison-wrapper{

    margin-top:70px;

    display:flex;

    justify-content:center;

}

.comparison-slider{

    position:relative;

    width:min(1200px,100%);

    aspect-ratio:16/9;

    overflow:hidden;

    border-radius:12px;

    cursor:ew-resize;

    user-select:none;

    box-shadow:
        0 35px 80px rgba(0,0,0,.14);

}

.comparison-slider img{

    position:absolute;

    inset:0;

    width:100%;

    height:100%;

    object-fit:cover;

    pointer-events:none;

}

.comparison-after-wrapper{

    position:absolute;

    inset:0;

    width:50%;

    overflow:hidden;

}

.comparison-after{

    width:100%;

    height:100%;

    object-fit:cover;

}

.comparison-line{

    position:absolute;

    top:0;

    bottom:0;

    left:50%;

    width:2px;

    background:#fff;

    transform:translateX(-50%);

    box-shadow:
        0 0 15px rgba(0,0,0,.35);

    z-index:5;

}

.comparison-handle{

    position:absolute;

    top:50%;

    left:50%;

    transform:translate(-50%,-50%);

    width:72px;

    height:72px;

    border-radius:50%;

    border:none;

    background:#ffffff;

    z-index:20;

    cursor:grab;

    box-shadow:
        0 10px 35px rgba(0,0,0,.25);

    transition:
        transform .25s ease,
        box-shadow .25s ease;

}

.comparison-handle:hover{

    transform:
        translate(-50%,-50%)
        scale(1.08);

    box-shadow:
        0 20px 45px rgba(0,0,0,.28);

}

.comparison-handle:active{

    cursor:grabbing;

}

.comparison-handle::before{

    content:"◀";

    position:absolute;

    left:16px;

    top:50%;

    transform:translateY(-50%);

    color:#8d6f4d;

    font-size:18px;

}

.comparison-handle::after{

    content:"▶";

    position:absolute;

    right:16px;

    top:50%;

    transform:translateY(-50%);

    color:#8d6f4d;

    font-size:18px;

}

.comparison-label{

    position:absolute;

    top:25px;

    padding:12px 22px;

    background:rgba(36,36,36,.72);

    backdrop-filter:blur(10px);

    color:#fff;

    font-size:.82rem;

    letter-spacing:.15em;

    text-transform:uppercase;

    border-radius:100px;

    z-index:30;

}

.comparison-label.before{

    left:25px;

}

.comparison-label.after{

    right:25px;

}

@media(max-width:900px){

    .comparison-slider{

        aspect-ratio:4/5;

    }

    .comparison-handle{

        width:58px;

        height:58px;

    }

}

@media(max-width:600px){

    .comparison-label{

        top:15px;

        padding:10px 18px;

        font-size:.7rem;

    }

}

.comparison-slider {
    touch-action: none;
}

.comparison-slider.is-dragging {
    cursor: grabbing;
}

.comparison-handle:focus-visible {
    outline: 3px solid rgba(203, 167, 125, 0.75);
    outline-offset: 5px;
}

/*==================================================
PAGE TRANSITION
==================================================*/

#page-transition{

    position:fixed;

    inset:0;

    background:#242424;

    display:flex;

    align-items:center;

    justify-content:center;

    z-index:999999;

    opacity:0;

    visibility:hidden;

    pointer-events:none;

    transition:
        opacity .45s ease,
        visibility .45s ease;

}

#page-transition.active{

    opacity:1;

    visibility:visible;

}

.page-transition-logo{

    opacity:0;

    transform:translateY(18px);

}

#page-transition.active .page-transition-logo{

    animation:
        pageTransitionLogo
        .8s
        ease
        forwards;

}

.page-transition-logo img{

    width:220px;

    max-width:60vw;

}

@keyframes pageTransitionLogo{

    0%{

        opacity:0;

        transform:
            translateY(18px)
            scale(.95);

    }

    50%{

        opacity:1;

        transform:
            translateY(0)
            scale(1);

    }

    100%{

        opacity:1;

        transform:
            translateY(0)
            scale(1);

    }

}
/* =========================================================
   VILA FINISHES V2 — REAL PROJECT EDITORIAL SYSTEM
   ========================================================= */
.vf2-hero{position:relative;min-height:clamp(680px,92vh,980px);display:flex;align-items:flex-end;overflow:hidden;background:var(--dark)}
.vf2-hero-image,.vf2-hero-shade{position:absolute;inset:0;width:100%;height:100%}
.vf2-hero-image{object-fit:cover;object-position:center 46%;transform:scale(1.01)}
.vf2-hero-shade{background:linear-gradient(90deg,rgba(20,20,20,.86) 0%,rgba(20,20,20,.52) 46%,rgba(20,20,20,.18) 100%),linear-gradient(0deg,rgba(20,20,20,.72),transparent 55%)}
.vf2-hero-content{position:relative;z-index:2;padding-top:190px;padding-bottom:clamp(80px,10vw,145px);color:#fff}
.vf2-hero-content .section-label{color:rgba(255,255,255,.76)}
.vf2-hero h1{max-width:980px;margin:22px 0 26px;font-size:clamp(4.2rem,8.5vw,9.2rem);line-height:.82;letter-spacing:-.055em;color:#fff}
.vf2-hero h1 em{font-weight:400;color:var(--cream);}
.vf2-hero-content>p{max-width:650px;font-size:clamp(1.05rem,1.55vw,1.32rem);line-height:1.7;color:rgba(255,255,255,.83)}
.vf2-actions{display:flex;align-items:center;gap:30px;flex-wrap:wrap;margin-top:36px}
.vf2-text-link{display:inline-flex;gap:10px;align-items:center;color:#fff;border-bottom:1px solid rgba(255,255,255,.45);padding-bottom:5px}
.vf2-hero-index{position:absolute;right:clamp(24px,5vw,80px);bottom:32px;z-index:2;display:flex;gap:22px;color:rgba(255,255,255,.6);font-size:.72rem;letter-spacing:.12em;text-transform:uppercase}
.vf2-intro-grid{display:grid;grid-template-columns:minmax(0,1fr) minmax(320px,.72fr);gap:clamp(50px,9vw,150px);align-items:start}
.vf2-intro h2,.vf2-section-head h2,.vf2-services-title h2,.vf2-values h2{font-size:clamp(3rem,5.5vw,6.4rem);line-height:.94;letter-spacing:-.045em;margin-top:18px}
.vf2-intro-copy p,.vf2-section-head>p,.vf2-service-copy p{font-size:1.08rem;line-height:1.8;color:var(--dark-muted)}
.vf2-intro-copy p+p{margin-top:18px}.vf2-intro-copy .text-link{margin-top:24px}
.vf2-section-head{display:grid;grid-template-columns:minmax(0,1fr) minmax(280px,.55fr);gap:70px;align-items:end;margin-bottom:48px}
.vf2-featured{background:var(--cream)}
.vf2-featured-media{position:relative;margin:0;overflow:hidden;min-height:620px}
.vf2-featured-media img{width:100%;height:min(74vw,820px);object-fit:cover;display:block;transition:transform .9s ease}
.vf2-featured-media:hover img{transform:scale(1.018)}
.vf2-featured-media figcaption{position:absolute;left:0;right:0;bottom:0;padding:60px 48px 35px;background:linear-gradient(transparent,rgba(0,0,0,.72));color:#fff;display:flex;justify-content:space-between;align-items:end;gap:25px}
.vf2-featured-media figcaption span{font-size:.75rem;letter-spacing:.15em;text-transform:uppercase}.vf2-featured-media figcaption strong{font-family:var(--font-heading);font-size:clamp(1.8rem,3vw,3.2rem);font-weight:500}
.vf2-craft-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:22px}
.vf2-craft-card{margin:0}.vf2-image-wrap{aspect-ratio:4/5;overflow:hidden;background:var(--cream-dark);margin-bottom:25px}
.vf2-image-wrap img{width:100%;height:100%;object-fit:cover;transition:transform .7s ease}.vf2-craft-card:hover img{transform:scale(1.025)}
.vf2-craft-card>span,.vf2-service-copy>span{font-size:.72rem;letter-spacing:.15em;color:var(--primary);text-transform:uppercase}
.vf2-craft-card h3{font-size:2rem;margin:10px 0}.vf2-craft-card p{color:var(--dark-muted);line-height:1.65}
.vf2-services{background:var(--dark);color:#fff}.vf2-services-title{margin-bottom:75px}.vf2-services-title h2{color:#fff}
.vf2-service-row{display:grid;grid-template-columns:minmax(0,1.05fr) minmax(320px,.75fr);gap:clamp(50px,9vw,140px);align-items:center;padding:75px 0;border-top:1px solid rgba(255,255,255,.15)}
.vf2-service-row-reverse .vf2-service-image{order:2}.vf2-service-row-reverse .vf2-service-copy{order:1}
.vf2-service-image{height:min(68vw,700px);overflow:hidden}.vf2-service-image img{width:100%;height:100%;object-fit:cover;transition:transform .8s ease}.vf2-service-row:hover img{transform:scale(1.025)}
.vf2-service-copy h3{font-size:clamp(3.2rem,5.5vw,6.5rem);line-height:.9;color:#fff;margin:18px 0 27px}.vf2-service-copy p{color:rgba(255,255,255,.72)}.vf2-service-copy .text-link{color:#fff;margin-top:25px}
.vf2-mosaic{display:grid;grid-template-columns:1.35fr .85fr .85fr;grid-template-rows:340px 420px;gap:18px}
.vf2-mosaic a{position:relative;overflow:hidden;background:var(--cream-dark);color:#fff}.vf2-mosaic img{width:100%;height:100%;object-fit:cover;transition:transform .8s ease}.vf2-mosaic a:hover img{transform:scale(1.035)}
.vf2-mosaic a:after{content:"";position:absolute;inset:0;background:linear-gradient(transparent 55%,rgba(0,0,0,.65))}.vf2-mosaic span{position:absolute;z-index:2;left:24px;bottom:22px;font-size:.75rem;letter-spacing:.12em;text-transform:uppercase}
.vf2-mosaic-a{grid-row:1/3}.vf2-mosaic-b{grid-column:2/4}.vf2-mosaic-c{grid-column:2}.vf2-mosaic-d{grid-column:3}
.vf2-values{background:var(--cream-light)}.vf2-values-grid{display:grid;grid-template-columns:.8fr 1.2fr;gap:clamp(50px,10vw,150px)}
.vf2-value-list article{display:grid;grid-template-columns:60px 1fr;gap:25px;padding:30px 0;border-top:1px solid var(--border)}.vf2-value-list article:last-child{border-bottom:1px solid var(--border)}
.vf2-value-list article>span{color:var(--primary);font-size:.72rem;letter-spacing:.15em}.vf2-value-list h3{font-size:1.55rem;margin:0 0 9px}.vf2-value-list p{color:var(--dark-muted);line-height:1.65;margin:0}
.vf2-cta{padding:clamp(90px,13vw,180px) 0;background:var(--primary-dark);color:#fff;text-align:center}.vf2-cta-inner{max-width:980px}.vf2-cta h2{font-size:clamp(3.4rem,7vw,7.5rem);line-height:.9;color:#fff;margin:20px auto 28px}.vf2-cta p{max-width:650px;margin:0 auto 35px;color:rgba(255,255,255,.78);font-size:1.1rem;line-height:1.7}
.vf2-page-hero{padding:clamp(190px,22vw,290px) 0 100px;background:var(--dark);color:#fff}.vf2-page-hero h1{font-size:clamp(4rem,8vw,8.5rem);line-height:.86;color:#fff;margin:25px 0}.vf2-page-hero h1 em{font-weight:400;color:var(--cream)}.vf2-page-hero p{max-width:650px;color:rgba(255,255,255,.72);font-size:1.15rem;line-height:1.7}
.vf2-gallery-grid{display:grid;grid-template-columns:repeat(3,1fr);grid-auto-flow:dense;gap:18px;margin-top:45px}.vf2-gallery-item{min-height:390px}.vf2-gallery-item img{width:100%;height:100%;object-fit:cover}.vf2-gallery-wide{grid-column:span 2}.vf2-gallery-tall{grid-row:span 2;min-height:798px}
.vf2-gallery-note{background:var(--cream)}
@media(max-width:900px){.vf2-intro-grid,.vf2-section-head,.vf2-values-grid{grid-template-columns:1fr;gap:34px}.vf2-craft-grid{grid-template-columns:1fr}.vf2-craft-card{max-width:650px}.vf2-service-row{grid-template-columns:1fr;gap:38px}.vf2-service-row-reverse .vf2-service-image,.vf2-service-row-reverse .vf2-service-copy{order:initial}.vf2-service-image{height:620px}.vf2-mosaic{grid-template-columns:1fr 1fr;grid-template-rows:500px 330px 330px}.vf2-mosaic-a{grid-column:1/3;grid-row:auto}.vf2-mosaic-b{grid-column:1/3}.vf2-mosaic-c{grid-column:1}.vf2-mosaic-d{grid-column:2}.vf2-gallery-grid{grid-template-columns:repeat(2,1fr)}.vf2-gallery-wide{grid-column:span 2}.vf2-gallery-tall{min-height:620px}}
@media(max-width:620px){.vf2-hero{min-height:760px}.vf2-hero-shade{background:linear-gradient(0deg,rgba(18,18,18,.9),rgba(18,18,18,.25) 75%)}.vf2-hero-content{padding-top:170px;padding-bottom:95px}.vf2-hero h1{font-size:clamp(3.7rem,17vw,5.3rem)}.vf2-hero-index{display:none}.vf2-section-head{margin-bottom:30px}.vf2-featured-media{min-height:0}.vf2-featured-media img{height:520px}.vf2-featured-media figcaption{padding:70px 22px 22px;display:block}.vf2-featured-media figcaption strong{display:block;margin-top:8px}.vf2-service-image{height:520px}.vf2-mosaic{display:grid;grid-template-columns:1fr;grid-template-rows:repeat(4,420px)}.vf2-mosaic-a,.vf2-mosaic-b,.vf2-mosaic-c,.vf2-mosaic-d{grid-column:auto;grid-row:auto}.vf2-gallery-grid{grid-template-columns:1fr}.vf2-gallery-wide{grid-column:auto}.vf2-gallery-tall{grid-row:auto;min-height:520px}.vf2-gallery-item{min-height:440px}.vf2-value-list article{grid-template-columns:38px 1fr}.vf2-actions{align-items:flex-start;flex-direction:column}}

/* =========================================================
   VILA FINISHES — ORIGINAL EDITORIAL REMASTER
   Keeps the original cinematic layout while using real work.
   ========================================================= */
.editorial-hero .hero-slide:nth-child(1) .hero-slide-image {
    object-position: 52% 48%;
}
.editorial-hero .hero-slide:nth-child(2) .hero-slide-image {
    object-position: 50% 55%;
}
.editorial-hero .hero-slide:nth-child(3) .hero-slide-image {
    object-position: 50% 48%;
}
.editorial-hero .hero-slide:nth-child(4) .hero-slide-image {
    object-position: 50% 46%;
}
.editorial-hero .hero-slide-overlay {
    background:
        linear-gradient(90deg, rgba(25, 20, 16, .82) 0%, rgba(25, 20, 16, .50) 43%, rgba(25, 20, 16, .18) 76%, rgba(25, 20, 16, .30) 100%),
        linear-gradient(0deg, rgba(20, 17, 14, .52) 0%, transparent 48%);
}
.editorial-hero .hero-slide-image {
    filter: saturate(.88) contrast(1.03);
}
.editorial-hero .hero-slide.active .hero-slide-image {
    animation-duration: 11s;
}
@media (max-width: 760px) {
    .editorial-hero .hero-slide:nth-child(1) .hero-slide-image,
    .editorial-hero .hero-slide:nth-child(2) .hero-slide-image,
    .editorial-hero .hero-slide:nth-child(3) .hero-slide-image,
    .editorial-hero .hero-slide:nth-child(4) .hero-slide-image {
        object-position: center;
    }
}

/* ==================================================
   TYPOGRAPHY SHARPNESS + HERO POLISH
================================================== */

/*
 * Use the browser's native text rendering.
 * Forced antialiasing can make thin lettering appear
 * washed out on some Windows displays.
 */
html,
body {
    -webkit-font-smoothing: auto;
    -moz-osx-font-smoothing: auto;
    text-rendering: auto;
}

/* Make normal body text clearer */
body,
p,
a,
button,
input,
textarea,
select {
    font-weight: 500;
}

/* Keep headings elegant without looking too thin */
h1,
h2,
h3,
h4,
blockquote {
    font-weight: 500;
}

/* Improve small uppercase labels throughout the site */
.section-label,
.hero-slide-label,
.announcement-bar,
.nav-link,
.hero-text-action {
    font-weight: 600;
    opacity: 1;
}

/* Sharper hero text */
.editorial-hero .hero-display-title,
.editorial-hero .hero-slide-service h2 {
    color: #ffffff;
    font-weight: 500;
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.16);
}

/* Sharper hero paragraph */
.editorial-hero .hero-editorial-bottom p {
    color: rgba(255, 255, 255, 0.94);
    font-weight: 500;
}

/* Sharper small hero label */
.editorial-hero .hero-slide-label {
    color: rgba(255, 255, 255, 0.92);
}

/* Remove image filtering that can make the hero feel soft */
.editorial-hero .hero-slide-image {
    filter: none;
}

/* Slightly stronger overlay behind the text only */
.editorial-hero .hero-slide-overlay {
    background:
        linear-gradient(
            90deg,
            rgba(10, 9, 8, 0.88) 0%,
            rgba(10, 9, 8, 0.63) 38%,
            rgba(10, 9, 8, 0.18) 73%,
            rgba(10, 9, 8, 0.04) 100%
        ),
        linear-gradient(
            180deg,
            rgba(8, 8, 8, 0.08) 0%,
            rgba(8, 8, 8, 0.02) 50%,
            rgba(8, 8, 8, 0.55) 100%
        );
}

/* The arrows were removed from the HTML, but this
   ensures they never appear if cached HTML is loaded. */
.editorial-hero .hero-arrow {
    display: none !important;
}