@font-face {
    font-family: "PremiumFont";
    src: url("../fonts/PFCentroSansPro-Regular.woff") format("woff");
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

/* Final cascade guard for footer/contact polish. */
.footer-email-form {
    background: rgba(255,255,255,.08);
    border-color: rgba(255,255,255,.18);
}

.footer-email-form input {
    background: transparent;
    color: #f7f2e8;
    caret-color: #f7f2e8;
}

.footer-email-form input::placeholder {
    color: rgba(255,255,255,.58);
}

.footer-language-option {
    background: rgba(255,255,255,.04);
    border-color: rgba(255,255,255,.1);
    border-radius: 999px;
}

.footer-language-option.active {
    background: rgba(255,255,255,.12);
    border-color: rgba(255,255,255,.32);
}

:root {
    --black: #0a0a0a;
    --white: #ffffff;
    --off-white: #f7f7f5;
    --gray: #777777;
    --light-gray: #e7e7e7;

    --font-primary: "PremiumFont", Arial, sans-serif;

    --container: 1400px;
    --header-height: 86px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background: var(--white);
    color: var(--black);
    line-height: 1.6;
}

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

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

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

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

    margin-inline: auto;
}

.section {
    padding: 120px 0;
}

.section-title {
    font-size: clamp(2.2rem, 5vw, 5rem);
    font-weight: 500;
    line-height: 1;
    letter-spacing: -0.04em;
}

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


/* =========================
   HEADER
========================= */

.site-header {

    position: fixed;

    top: 0;
    left: 0;

    width: 100%;

    height: var(--header-height);

    z-index: 1000;

    background: transparent;

    color: white;

    border-bottom:
        1px solid rgba(255,255,255,.15);

    transition:
        background .4s ease,
        color .4s ease,
        border .4s ease;
}

.site-header.scrolled {

    background: rgba(255,255,255,.96);

    color: var(--black);

    border-bottom:
        1px solid var(--light-gray);

    backdrop-filter: blur(15px);
}

.site-header .logo {

    color: inherit;
}

.site-header .desktop-nav a::after {

    background: currentColor;
}

.site-header .header-cta {

    background: white;

    color: black;
}

.site-header.scrolled .header-cta {

    background: black;

    color: white;
}

.header-inner {
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: -0.03em;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 36px;
}

.desktop-nav a {
    font-size: 0.85rem;
    position: relative;
}

.desktop-nav a::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: -7px;

    width: 0;
    height: 1px;

    background: var(--black);

    transition: width 0.3s ease;
}

.desktop-nav a:hover::after {
    width: 100%;
}

.header-cta {
    background: var(--black);
    color: var(--white);

    padding: 12px 22px;

    font-size: 0.8rem;

    transition:
        background 0.3s ease,
        color 0.3s ease;
}

.header-cta:hover {
    background: var(--off-white);
    color: var(--black);
}

.menu-toggle {
    display: none;

    border: 0;
    background: none;

    cursor: pointer;

    font-size: 1.5rem;
}


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

@media (max-width: 900px) {

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

    .menu-toggle {
        display: block;
    }

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

    .section {
        padding: 80px 0;
    }
}


@media (max-width: 480px) {

    :root {
        --header-height: 72px;
    }

    .section {
        padding: 65px 0;
    }

    .section-title {
        font-size: 2.5rem;
    }
}








/* =========================
   NAVIGATION
========================= */

.desktop-nav a.active::after {
    width: 100%;
}


/* =========================
   MOBILE MENU BUTTON
========================= */

.menu-toggle {
    width: 38px;
    height: 38px;

    display: none;

    position: relative;

    border: none;
    background: transparent;

    cursor: pointer;
}

.menu-toggle span {
    position: absolute;

    left: 7px;

    width: 24px;
    height: 1px;

    background: var(--black);

    transition: .3s ease;
}

.menu-toggle span:first-child {
    top: 14px;
}

.menu-toggle span:last-child {
    top: 22px;
}


/* OPEN STATE */

.menu-toggle.active span:first-child {
    top: 18px;
    transform: rotate(45deg);
}

.menu-toggle.active span:last-child {
    top: 18px;
    transform: rotate(-45deg);
}


/* =========================
   MOBILE MENU
========================= */

.mobile-menu {

    position: fixed;

    top: var(--header-height);
    left: 0;

    width: 100%;
    height: calc(100vh - var(--header-height));

    background: var(--white);

    z-index: 999;

    visibility: hidden;

    opacity: 0;

    transform: translateY(-15px);

    transition:
        opacity .35s ease,
        transform .35s ease,
        visibility .35s ease;

    overflow-y: auto;
}

.mobile-menu.active {

    visibility: visible;

    opacity: 1;

    transform: translateY(0);
}

.mobile-menu-inner {

    min-height: 100%;

    display: flex;

    flex-direction: column;

    justify-content: space-between;

    padding: 50px 24px 35px;
}

.mobile-menu nav {

    display: flex;

    flex-direction: column;

    gap: 5px;
}

.mobile-menu nav a {

    font-size: clamp(
        2.5rem,
        9vw,
        4rem
    );

    line-height: 1.1;

    letter-spacing: -.04em;

    padding: 8px 0;

    border-bottom: 1px solid var(--light-gray);
}

.mobile-menu-footer {

    border-top: 1px solid var(--light-gray);

    padding-top: 25px;

    display: flex;

    justify-content: space-between;

    gap: 20px;

    align-items: center;
}

.mobile-menu-footer p {

    color: var(--gray);

    font-size: .9rem;
}

.mobile-menu-footer a {

    font-size: .9rem;

    border-bottom: 1px solid var(--black);

    padding-bottom: 5px;
}


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

@media (max-width: 900px) {

    .menu-toggle {
        display: block;
    }

    body.menu-open {
        overflow: hidden;
    }
}

@media (max-width: 500px) {

    .mobile-menu-inner {
        padding: 35px 16px 25px;
    }

    .mobile-menu-footer {
        display: block;
    }

    .mobile-menu-footer a {
        display: inline-block;

        margin-top: 20px;
    }
}









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

.site-footer {

    background: var(--black);

    color: var(--white);

    padding: 100px 0 30px;
}

.footer-top {

    display: grid;

    grid-template-columns:
        1.5fr 1fr;

    gap: 100px;

    padding-bottom: 100px;

    border-bottom: 1px solid #333;
}

.footer-logo {

    display: inline-block;

    font-size: 2rem;

    font-weight: 600;

    letter-spacing: -.04em;

    margin-bottom: 25px;
}

.footer-brand p {

    max-width: 400px;

    color: #aaa;

    line-height: 1.7;
}

.footer-links {

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 50px;
}

.footer-links div {

    display: flex;

    flex-direction: column;

    align-items: flex-start;

    gap: 12px;
}

.footer-links span {

    color: #777;

    font-size: .7rem;

    text-transform: uppercase;

    letter-spacing: .15em;

    margin-bottom: 10px;
}

.footer-links a {

    font-size: .9rem;

    transition: opacity .3s ease;
}

.footer-links a:hover {

    opacity: .55;
}

.footer-bottom {

    padding-top: 25px;

    display: flex;

    justify-content: space-between;

    gap: 30px;

    color: #777;

    font-size: .7rem;
}


@media (max-width: 700px) {

    .site-footer {

        padding: 70px 0 25px;
    }

    .footer-top {

        grid-template-columns: 1fr;

        gap: 60px;

        padding-bottom: 60px;
    }

    .footer-links {

        grid-template-columns: 1fr 1fr;
    }

    .footer-bottom {

        display: block;
    }

    .footer-bottom p + p {

        margin-top: 8px;
    }
}


/* =========================================
   SIGN AND LAVA POLISH OVERRIDES
========================================= */

.featured-projects {
    position: relative;
    padding: 145px 0 155px;
    background:
        linear-gradient(135deg, rgba(255,255,255,.05), rgba(255,255,255,0) 38%),
        radial-gradient(circle at 10% 8%, rgba(190, 92, 44, .16), transparent 34%),
        #080808;
    overflow: hidden;
}

.featured-projects::before {
    content: "";
    position: absolute;
    inset: 34px;
    border: 1px solid rgba(255,255,255,.07);
    pointer-events: none;
}

.featured-projects .container {
    position: relative;
    z-index: 1;
}

.featured-projects .section-header {
    align-items: end;
    margin-bottom: 76px;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(255,255,255,.14);
}

.featured-projects .section-header p {
    margin-top: 18px;
    color: rgba(255,255,255,.58);
    letter-spacing: .2em;
}

.featured-projects .view-all {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 20px;
    border: 1px solid rgba(255,255,255,.2);
    color: #fff;
    background: rgba(255,255,255,.04);
}

.featured-projects .view-all:hover {
    background: #fff;
    color: #101010;
}

.luxury-project-grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr);
    gap: 34px;
    row-gap: 42px;
    align-items: start;
}

.luxury-project-card,
.project-offset {
    margin-top: 0;
}

.luxury-project-card {
    border: 1px solid rgba(255,255,255,.1);
    background: rgba(255,255,255,.035);
    padding: 12px;
    transition:
        transform .4s ease,
        border-color .4s ease,
        background .4s ease;
}

.luxury-project-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255,255,255,.32);
    background: rgba(255,255,255,.06);
}

.project-visual {
    aspect-ratio: 16 / 11;
}

.luxury-project-card:nth-child(3n + 1) .project-visual {
    aspect-ratio: 16 / 13;
}

.project-hover {
    background:
        linear-gradient(180deg, rgba(0,0,0,0), rgba(0,0,0,.72)),
        rgba(0,0,0,.18);
}

.project-hover span {
    width: auto;
    height: 48px;
    padding: 0 18px;
    border-radius: 0;
    background: rgba(255,255,255,.92);
    color: #111;
    border: 0;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.luxury-project-info {
    align-items: end;
    padding: 22px 4px 4px;
}

.luxury-project-info h3 {
    font-size: clamp(1.2rem, 2vw, 1.75rem);
    letter-spacing: -.035em;
}

.luxury-project-info > span {
    color: rgba(255,255,255,.58);
    border: 1px solid rgba(255,255,255,.12);
    padding: 7px 10px;
    white-space: nowrap;
}

.services-dark {
    position: relative;
    padding: 145px 0;
    background:
        linear-gradient(90deg, #f3eee6 0 42%, #171514 42% 100%);
    color: #111;
    overflow: hidden;
}

.services-dark::after {
    content: "";
    position: absolute;
    inset: 0 0 0 42%;
    background:
        radial-gradient(circle at 82% 24%, rgba(207, 91, 39, .18), transparent 34%),
        #171514;
    pointer-events: none;
}

.services-dark .container {
    position: relative;
    z-index: 1;
}

.services-dark .section-number.light {
    color: #111;
}

.services-dark .section-number.light div {
    background: rgba(17,17,17,.35);
}

.services-heading {
    grid-template-columns: .75fr 1.25fr;
    align-items: end;
    gap: 56px;
    margin-bottom: 64px;
}

.services-heading p {
    color: #7c6f61;
}

.services-heading h2 {
    max-width: 850px;
    color: #fff;
    font-size: clamp(3rem, 6vw, 6.5rem);
}

.luxury-services {
    border: 0;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
}

.luxury-service {
    min-height: 360px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    padding: 24px;
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(255,255,255,.055);
    color: #fff;
    overflow: hidden;
}

.luxury-service:hover {
    padding: 24px;
    transform: translateY(-8px);
    background: rgba(255,255,255,.1);
    border-color: rgba(255,255,255,.3);
}

.luxury-service h3 {
    font-size: clamp(1.45rem, 2vw, 2.3rem);
    line-height: 1;
    max-width: 230px;
}

.service-count {
    color: rgba(255,255,255,.5);
}

.service-arrow {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255,255,255,.18);
    margin-top: auto;
}

.service-preview {
    position: absolute;
    inset: auto 0 0 0;
    width: 100%;
    height: 46%;
    transform: none;
    opacity: .22;
    z-index: -1;
}

.luxury-service:hover .service-preview {
    opacity: .42;
    transform: none;
}

.footer-email-form {
    background: rgba(255,255,255,.08);
    border-color: rgba(255,255,255,.18);
}

.footer-email-form input {
    background: transparent;
    color: #f7f2e8;
    caret-color: #f7f2e8;
}

.footer-email-form input::placeholder {
    color: rgba(255,255,255,.58);
}

.footer-language-option {
    font-size: 1.35rem;
    background: rgba(255,255,255,.04);
    border-color: rgba(255,255,255,.1);
    border-radius: 999px;
}

.footer-language-option.active {
    background: rgba(255,255,255,.12);
    border-color: rgba(255,255,255,.32);
}

.contact-section {
    position: relative;
    padding-top: 20px;
    background:
        linear-gradient(180deg, #fff 0%, #f4efe7 100%);
}

.contact-grid {
    grid-template-columns: .82fr 1.18fr;
    gap: 34px;
    align-items: stretch;
}

.contact-copy {
    position: relative;
    top: auto;
    min-height: 100%;
    padding: 44px;
    color: #f8f4eb;
    background:
        linear-gradient(180deg, rgba(0,0,0,.22), rgba(0,0,0,.58)),
        url("https://images.unsplash.com/photo-1615529162924-f8605388461d?auto=format&fit=crop&w=1100&q=85") center/cover;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
}

.contact-copy::before {
    content: "";
    position: absolute;
    inset: 18px;
    border: 1px solid rgba(255,255,255,.22);
    pointer-events: none;
}

.contact-copy .eyebrow,
.contact-copy > p:not(.eyebrow),
.contact-details a,
.contact-details span {
    position: relative;
    z-index: 1;
}

.contact-copy > p:not(.eyebrow) {
    max-width: 580px;
    color: rgba(255,255,255,.78);
    font-size: 1.05rem;
}

.contact-details {
    position: relative;
    z-index: 1;
    margin-top: 34px;
    gap: 0;
    border-top: 1px solid rgba(255,255,255,.2);
}

.contact-details a,
.contact-details span {
    color: #fff;
    border-bottom: 1px solid rgba(255,255,255,.2);
    padding: 15px 0;
}

.contact-form {
    position: relative;
    padding: 44px;
    background: #111;
    border: 1px solid #25211d;
    color: #fff;
    box-shadow: 0 34px 80px rgba(20, 14, 7, .16);
}

.contact-form::before {
    content: "Project Enquiry";
    color: rgba(255,255,255,.45);
    font-size: .68rem;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.contact-form label {
    color: rgba(255,255,255,.58);
}

.contact-form input,
.contact-form textarea {
    background: rgba(255,255,255,.045);
    border-color: rgba(255,255,255,.12);
    color: #fff;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: rgba(255,255,255,.42);
    background: rgba(255,255,255,.075);
}

.contact-form .admin-button {
    background: #f2eadc;
    color: #111;
    border-color: #f2eadc;
}

.contact-form .admin-button:hover {
    background: #fff;
}

@media (max-width: 1100px) {
    .luxury-services {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .services-dark {
        background: #171514;
        color: #fff;
    }

    .services-dark::after {
        inset: 0;
    }

    .services-dark .section-number.light {
        color: #fff;
    }

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

@media (max-width: 800px) {
    .featured-projects {
        padding: 90px 0;
    }

    .featured-projects::before {
        inset: 16px;
    }

    .featured-projects .section-header,
    .luxury-project-info,
    .contact-grid {
        display: grid;
        grid-template-columns: 1fr;
    }

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

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

    .contact-copy,
    .contact-form {
        padding: 28px;
    }
}


/* =========================================
   FINAL PREMIUM ADMIN + CONTENT EXTENSIONS
========================================= */

.logo img,
.mobile-sidebar-logo img,
.footer-logo img {
    display: block;
    max-height: 38px;
    width: auto;
}

.footer-logo img {
    max-height: 46px;
}

.translate-holder {
    position: fixed;
    left: -9999px;
    top: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.footer-language-option {
    border: 1px solid transparent;
    background: transparent;
    color: #fff;
    cursor: pointer;
    font-size: .72rem;
    letter-spacing: .12em;
}

.compact-section {
    padding-top: 0;
}

.editorial-copy {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 70px;
    align-items: start;
}

.editorial-copy h2 {
    font-size: clamp(2rem, 4vw, 4.8rem);
    line-height: 1;
    letter-spacing: -.05em;
    font-weight: 500;
}

.editorial-copy p,
.contact-copy p,
.project-date {
    color: var(--gray);
}

.project-page-section {
    padding-top: 40px;
}

.contact-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 80px;
    align-items: start;
}

.contact-copy {
    position: sticky;
    top: 130px;
}

.contact-copy > p:not(.eyebrow) {
    max-width: 520px;
    font-size: 1.1rem;
}

.contact-details {
    margin-top: 35px;
    display: grid;
    gap: 14px;
}

.contact-details a,
.contact-details span {
    color: var(--black);
    border-bottom: 1px solid var(--light-gray);
    padding-bottom: 12px;
}

.contact-form {
    background: #f4f1eb;
    border: 1px solid #e5ded2;
    padding: 42px;
    display: grid;
    gap: 20px;
}

.contact-form label,
.admin-form label,
.admin-form-grid label {
    display: grid;
    gap: 9px;
    color: #5d574e;
    font-size: .72rem;
    letter-spacing: .11em;
    text-transform: uppercase;
}

.contact-form input,
.contact-form textarea,
.admin-form input,
.admin-form textarea,
.admin-form select,
.admin-form-grid input,
.admin-form-grid textarea,
.admin-form-grid select {
    width: 100%;
    border: 1px solid #ddd4c5;
    background: #fff;
    color: #141414;
    padding: 15px 16px;
    outline: 0;
    min-height: 52px;
    text-transform: none;
    letter-spacing: 0;
    font-size: .95rem;
}

.contact-form textarea,
.admin-form textarea,
.admin-form-grid textarea {
    resize: vertical;
    line-height: 1.6;
}

.form-notice {
    padding: 14px 16px;
    background: #e8f5ec;
    border: 1px solid #b6dfc1;
    color: #215c32;
}

.form-notice.error,
.admin-notice.error {
    background: #fff0f0;
    border-color: #efb4b4;
    color: #8c2525;
}

.admin-page {
    background: #ece7df;
    color: #181713;
}

.admin-shell {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 280px 1fr;
}

.admin-sidebar {
    background: #10100f;
    color: #fff;
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 34px;
    position: sticky;
    top: 0;
    height: 100vh;
}

.admin-brand {
    display: grid;
    gap: 8px;
}

.admin-brand span {
    font-size: 1.45rem;
    letter-spacing: -.03em;
}

.admin-brand small,
.admin-topbar span,
.admin-panel-header span,
.admin-stat-card span {
    color: rgba(255,255,255,.45);
    font-size: .68rem;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.admin-nav {
    display: grid;
    gap: 8px;
}

.admin-nav a,
.admin-sidebar-actions a {
    padding: 13px 14px;
    color: rgba(255,255,255,.62);
    border: 1px solid transparent;
    transition: .25s ease;
}

.admin-nav a:hover,
.admin-nav a.active {
    color: #fff;
    border-color: rgba(255,255,255,.15);
    background: rgba(255,255,255,.06);
}

.admin-sidebar-actions {
    margin-top: auto;
    display: grid;
    gap: 8px;
}

.admin-main {
    min-width: 0;
}

.admin-topbar {
    min-height: 118px;
    padding: 26px 38px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    border-bottom: 1px solid #d7d0c4;
    background: rgba(236,231,223,.88);
    backdrop-filter: blur(14px);
    position: sticky;
    top: 0;
    z-index: 20;
}

.admin-topbar span,
.admin-panel-header span,
.admin-stat-card span {
    color: #7a7163;
}

.admin-topbar h1,
.admin-panel h2 {
    font-weight: 500;
    letter-spacing: -.04em;
}

.admin-topbar h1 {
    font-size: clamp(2rem, 4vw, 4rem);
    line-height: 1;
}

.admin-content {
    padding: 38px;
}

.admin-stat-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin-bottom: 24px;
}

.admin-stat-card,
.admin-panel {
    background: #fbfaf7;
    border: 1px solid #ddd4c5;
    box-shadow: 0 24px 60px rgba(42,34,20,.08);
}

.admin-stat-card {
    padding: 24px;
    display: grid;
    gap: 18px;
}

.admin-stat-card strong {
    font-size: 2.8rem;
    line-height: 1;
    font-weight: 500;
}

.admin-panel {
    padding: 26px;
}

.admin-panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 24px;
}

.admin-panel-header h2 {
    font-size: 1.7rem;
}

.admin-pill,
.admin-button,
.admin-text-link {
    border: 1px solid #181713;
    background: #181713;
    color: #fff;
    padding: 12px 18px;
    cursor: pointer;
    font-size: .75rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    text-align: center;
}

.admin-button.dark {
    background: #181713;
    color: #fff;
}

.admin-text-link {
    background: transparent;
    color: #181713;
}

.admin-form,
.admin-form-grid {
    display: grid;
    gap: 20px;
}

.admin-form-grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
}

.admin-two,
.admin-layout-two {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.admin-layout-two {
    align-items: start;
}

.admin-preview {
    max-width: 220px;
    max-height: 90px;
    object-fit: contain;
    border: 1px solid #ddd4c5;
    padding: 10px;
    background: #fff;
}

.admin-preview.dark {
    background: #111;
}

.admin-preview.wide {
    width: 100%;
    max-width: 100%;
    max-height: 260px;
    object-fit: cover;
    padding: 0;
}

.admin-tabs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 22px;
}

.admin-tabs a {
    padding: 11px 15px;
    border: 1px solid #d7d0c4;
    background: #fbfaf7;
    color: #6e6557;
}

.admin-tabs a.active {
    background: #181713;
    color: #fff;
    border-color: #181713;
}

.admin-table-wrap {
    overflow-x: auto;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
}

.admin-table th,
.admin-table td {
    padding: 16px 12px;
    border-bottom: 1px solid #e5ded2;
    text-align: left;
}

.admin-table th {
    color: #7a7163;
    font-size: .7rem;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.admin-list,
.admin-message-list {
    display: grid;
    gap: 14px;
}

.admin-list article,
.admin-message-list article {
    border: 1px solid #e5ded2;
    background: #fff;
    padding: 18px;
}

.admin-list article {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: center;
}

.admin-list span,
.admin-message-list span,
.admin-message-list time {
    display: block;
    color: #7a7163;
    font-size: .82rem;
}

.admin-list nav {
    display: flex;
    gap: 12px;
}

.admin-list nav a {
    border-bottom: 1px solid currentColor;
}

.admin-message-list article.unread {
    border-color: #181713;
}

.admin-message-list header {
    display: flex;
    justify-content: space-between;
    gap: 18px;
}

.admin-message-list h3 {
    margin: 18px 0 8px;
}

.admin-notice {
    margin-bottom: 20px;
    padding: 14px 16px;
    background: #e8f5ec;
    border: 1px solid #b6dfc1;
    color: #215c32;
}

@media (max-width: 1000px) {
    .admin-shell,
    .admin-form-grid,
    .admin-layout-two,
    .contact-grid,
    .editorial-copy {
        grid-template-columns: 1fr;
    }

    .admin-sidebar {
        position: static;
        height: auto;
    }

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

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

    .contact-copy {
        position: static;
    }
}

@media (max-width: 700px) {
    .admin-topbar,
    .admin-content,
    .admin-sidebar,
    .contact-form {
        padding: 22px;
    }

    .admin-topbar {
        position: static;
        display: grid;
    }

    .admin-stat-grid,
    .admin-two,
    .admin-nav {
        grid-template-columns: 1fr;
    }

    .admin-panel {
        padding: 20px;
    }

    .admin-list article,
    .admin-message-list header {
        display: grid;
    }
}








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

.page-hero {

    padding-top: 190px;
    padding-bottom: 100px;
}

.page-hero h1 {

    max-width: 1000px;

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

    line-height: .9;

    letter-spacing: -.06em;

    font-weight: 500;
}


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

.about-intro {

    display: grid;

    grid-template-columns:
        1fr 2fr;

    gap: 80px;
}

.about-intro h2 {

    max-width: 850px;

    font-size: clamp(
        2rem,
        4vw,
        4.5rem
    );

    line-height: 1;

    letter-spacing: -.05em;

    font-weight: 500;

    margin-bottom: 45px;
}

.about-intro p:not(.eyebrow) {

    max-width: 650px;

    color: var(--gray);

    margin-bottom: 20px;

    font-size: 1.05rem;
}

.about-image {

    width: min(
        calc(100% - 48px),
        1600px
    );

    margin: 0 auto;

    aspect-ratio: 16 / 8;

    overflow: hidden;
}

.about-image img {

    width: 100%;
    height: 100%;

    object-fit: cover;
}


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

.values-grid {

    display: grid;

    grid-template-columns:
        1fr 2fr;

    gap: 80px;
}

.values-list > div {

    padding: 30px 0;

    border-top: 1px solid var(--light-gray);

    display: grid;

    grid-template-columns:
        60px 1fr;

    gap: 20px;
}

.values-list > div:last-child {

    border-bottom: 1px solid var(--light-gray);
}

.values-list span {

    color: var(--gray);

    font-size: .75rem;
}

.values-list h3 {

    font-size: 1.3rem;

    font-weight: 500;
}

.values-list p {

    grid-column: 2;

    max-width: 500px;

    color: var(--gray);

    font-size: .9rem;
}


@media (max-width: 700px) {

    .page-hero {

        padding-top: 140px;

        padding-bottom: 70px;
    }

    .about-intro,
    .values-grid {

        grid-template-columns: 1fr;

        gap: 30px;
    }

    .about-image {

        width: calc(100% - 32px);

        aspect-ratio: 4 / 5;
    }

}

/* Final cascade guard for footer/contact polish. */
.footer-email-form {
    background: rgba(255,255,255,.08);
    border-color: rgba(255,255,255,.18);
}

.footer-email-form input {
    background: transparent;
    color: #f7f2e8;
    caret-color: #f7f2e8;
}

.footer-email-form input::placeholder {
    color: rgba(255,255,255,.58);
}

.footer-language-option {
    background: rgba(255,255,255,.04);
    border-color: rgba(255,255,255,.1);
    border-radius: 999px;
}

.footer-language-option.active {
    background: rgba(255,255,255,.12);
    border-color: rgba(255,255,255,.32);
}














/* =====================================================
   PREMIUM INTERIOR THEME
===================================================== */

:root {

    --lux-black: #080808;
    --lux-dark: #111111;
    --lux-white: #f8f8f6;
    --lux-gray: #999;
    --lux-line: rgba(255,255,255,.18);

}


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

.luxury-hero {

    height: 100vh;
    min-height: 720px;

    position: relative;

    overflow: hidden;

    color: white;

    background: #111;
}

.hero-background {

    position: absolute;

    inset: 0;

    overflow: hidden;
}

.hero-background img {

    width: 100%;
    height: 100%;

    object-fit: cover;

    animation:
        heroZoom 12s ease-out forwards;
}

@keyframes heroZoom {

    from {
        transform: scale(1.08);
    }

    to {
        transform: scale(1);
    }

}

.hero-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,.65),
            rgba(0,0,0,.15) 70%
        ),
        linear-gradient(
            0deg,
            rgba(0,0,0,.65),
            transparent 60%
        );
}


/* GRID */

.hero-grid-lines {

    position: absolute;

    inset: 0;

    width: min(
        calc(100% - 80px),
        1500px
    );

    margin: auto;

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    pointer-events: none;
}

.hero-grid-lines span {

    border-left:
        1px solid
        rgba(255,255,255,.12);
}

.hero-grid-lines span:last-child {

    border-right:
        1px solid
        rgba(255,255,255,.12);
}


.luxury-hero-content {

    position: relative;

    height: 100%;

    z-index: 3;

    display: flex;

    flex-direction: column;

    justify-content: space-between;

    padding-top: 145px;

    padding-bottom: 55px;
}


.hero-top {

    display: flex;

    justify-content: space-between;

    font-size: .65rem;

    letter-spacing: .18em;

    color: rgba(255,255,255,.7);
}


.hero-main {

    margin-top: auto;

    margin-bottom: auto;
}


.hero-small-title {

    font-size: .7rem;

    letter-spacing: .25em;

    margin-bottom: 22px;

    opacity: .75;
}


.hero-main h1 {

    font-size: clamp(
        5rem,
        12vw,
        12rem
    );

    line-height: .78;

    letter-spacing: -.075em;

    font-weight: 500;

    max-width: 1100px;
}

.hero-main h1 span {

    display: block;

    margin-left: 11vw;

    font-style: italic;

    font-weight: 400;
}


.hero-intro {

    max-width: 390px;

    font-size: .95rem;

    line-height: 1.7;

    margin-top: 45px;

    margin-left: 11vw;

    color: rgba(255,255,255,.75);
}


.hero-bottom {

    display: flex;

    align-items: center;

    justify-content: space-between;
}


.luxury-button {

    display: flex;

    align-items: center;

    gap: 25px;

    padding: 16px 20px;

    background: white;

    color: black;

    min-width: 210px;

    justify-content: space-between;

    font-size: .75rem;

    transition: .4s ease;
}

.luxury-button strong {

    font-size: 1.1rem;

    font-weight: 400;

}

.luxury-button:hover {

    background: black;

    color: white;

}


.hero-scroll {

    display: flex;

    align-items: center;

    gap: 20px;

    font-size: .6rem;

    letter-spacing: .15em;

    opacity: .7;
}

.hero-scroll i {

    display: block;

    width: 55px;

    height: 1px;

    background: white;
}


.hero-number {

    position: absolute;

    right: 35px;

    top: 50%;

    transform: translateY(-50%);

    writing-mode: vertical-rl;

    font-size: .65rem;

    letter-spacing: .3em;

    opacity: .5;

    z-index: 3;
}


/* =====================================================
   MARQUEE
===================================================== */

.luxury-marquee {

    overflow: hidden;

    background: var(--lux-black);

    color: white;

    border-top:
        1px solid #222;

    border-bottom:
        1px solid #222;

    padding: 22px 0;
}

.marquee-track {

    width: max-content;

    display: flex;

    align-items: center;

    gap: 35px;

    animation:
        marqueeMove 30s linear infinite;

    white-space: nowrap;
}

.marquee-track span {

    font-size: clamp(
        1.4rem,
        3vw,
        3rem
    );

    letter-spacing: -.04em;
}

.marquee-track i {

    font-size: 1rem;

    font-style: normal;
}

@keyframes marqueeMove {

    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-35%);
    }

}


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

.luxury-intro {

    padding: 150px 0;

    background: var(--lux-white);
}

.section-number {

    display: flex;

    align-items: center;

    gap: 15px;

    margin-bottom: 60px;
}

.section-number span {

    font-size: .7rem;

    letter-spacing: .1em;
}

.section-number div {

    width: 55px;

    height: 1px;

    background: #aaa;
}


.intro-layout {

    display: grid;

    grid-template-columns:
        1fr 3fr;

    gap: 70px;
}

.intro-label {

    padding-top: 20px;

    font-size: .65rem;

    letter-spacing: .2em;
}


.intro-content h2 {

    max-width: 1050px;

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

    line-height: .92;

    letter-spacing: -.065em;

    font-weight: 500;
}

.intro-content h2 em {

    font-weight: 400;

    font-style: italic;
}


.intro-bottom {

    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    margin-top: 65px;
}

.intro-bottom p {

    max-width: 390px;

    color: #777;

    font-size: .95rem;

    line-height: 1.8;
}


.circle-link {

    width: 115px;
    height: 115px;

    border: 1px solid #bbb;

    border-radius: 50%;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    gap: 8px;

    transition: .4s ease;
}

.circle-link span {

    font-size: .65rem;
}

.circle-link strong {

    font-size: 1rem;

    font-weight: 400;
}

.circle-link:hover {

    background: black;

    color: white;

    border-color: black;

    transform: rotate(-10deg);
}


/* =====================================================
   PROJECT SECTION
===================================================== */

.featured-projects {

    background: var(--lux-black);

    color: white;

    padding: 130px 0 160px;
}


.section-header {

    display: flex;

    justify-content: space-between;

    align-items: flex-end;

    margin-bottom: 80px;
}

.section-header p {

    font-size: .65rem;

    letter-spacing: .2em;

    color: #999;
}

.section-number.light {

    color: white;
}

.section-number.light div {

    background: #555;
}


.view-all {

    color: #aaa;

    font-size: .7rem;

    border-bottom:
        1px solid #555;

    padding-bottom: 7px;
}


.luxury-project-grid {

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    column-gap: 30px;

    row-gap: 110px;
}


.project-offset {

    margin-top: 130px;
}


.project-visual {

    position: relative;

    aspect-ratio: 4 / 5;

    overflow: hidden;

    background: #1c1c1c;
}

.project-visual img {

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform .9s
        cubic-bezier(.2,.7,.2,1);
}

.luxury-project-card:hover
.project-visual img {

    transform: scale(1.07);
}


.project-hover {

    position: absolute;

    inset: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    background: rgba(0,0,0,.35);

    opacity: 0;

    transition: .5s ease;
}

.luxury-project-card:hover
.project-hover {

    opacity: 1;
}

.project-hover span {

    width: 105px;
    height: 105px;

    display: flex;

    align-items: center;

    justify-content: center;

    border: 1px solid white;

    border-radius: 50%;

    font-size: .7rem;
}

.project-hover strong {

    font-size: 1.2rem;

    font-weight: 400;
}


.project-index {

    position: absolute;

    top: 20px;

    right: 20px;

    font-size: .65rem;

    letter-spacing: .1em;
}


.luxury-project-info {

    display: flex;

    justify-content: space-between;

    padding-top: 20px;

    gap: 20px;
}

.luxury-project-info h3 {

    font-size: 1.15rem;

    font-weight: 400;
}

.luxury-project-info span {

    color: #777;

    font-size: .7rem;

    margin-top: 4px;

    display: block;
}


/* =====================================================
   SERVICES DARK
===================================================== */

.services-dark {

    background: #111;

    color: white;

    padding: 150px 0;
}

.services-heading {

    display: grid;

    grid-template-columns: 1fr 3fr;

    gap: 70px;

    margin-bottom: 90px;
}

.services-heading p {

    font-size: .65rem;

    letter-spacing: .2em;

    color: #777;
}

.services-heading h2 {

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

    line-height: .9;

    letter-spacing: -.06em;

    font-weight: 500;
}

.services-heading h2 em {

    font-style: italic;

    font-weight: 400;
}


.luxury-services {

    border-top:
        1px solid #333;
}


.luxury-service {

    position: relative;

    display: grid;

    grid-template-columns:
        80px 1fr 50px;

    align-items: center;

    gap: 30px;

    padding: 30px 0;

    border-bottom:
        1px solid #333;

    transition: .4s ease;
}

.luxury-service h3 {

    font-size: clamp(
        1.7rem,
        3vw,
        3rem
    );

    font-weight: 400;

    letter-spacing: -.04em;
}

.service-count {

    color: #666;

    font-size: .65rem;
}

.service-arrow {

    font-size: 1.3rem;

    transition: .4s ease;
}

.luxury-service:hover {

    padding-left: 20px;

    padding-right: 20px;
}

.luxury-service:hover
.service-arrow {

    transform: rotate(45deg);
}


.service-preview {

    position: absolute;

    right: 100px;

    top: 50%;

    transform:
        translateY(-50%)
        scale(.85);

    width: 230px;

    height: 150px;

    overflow: hidden;

    opacity: 0;

    pointer-events: none;

    transition: .5s ease;

    z-index: 4;
}

.luxury-service:hover
.service-preview {

    opacity: 1;

    transform:
        translateY(-50%)
        scale(1);
}

.service-preview img {

    width: 100%;
    height: 100%;

    object-fit: cover;
}


/* =====================================================
   IMAGE STATEMENT
===================================================== */

.image-statement {

    position: relative;

    min-height: 750px;

    overflow: hidden;

    background: black;

    color: white;
}

.image-statement-image {

    position: absolute;

    inset: 0;
}

.image-statement-image::after {

    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,.7),
            transparent
        );
}

.image-statement-image img {

    width: 100%;
    height: 100%;

    object-fit: cover;
}

.image-statement-content {

    position: relative;

    z-index: 2;

    min-height: 750px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    padding-left: max(
        24px,
        calc((100vw - 1400px) / 2)
    );
}

.image-statement-content > span {

    font-size: .65rem;

    letter-spacing: .2em;

    color: #bbb;

    margin-bottom: 30px;
}

.image-statement-content h2 {

    max-width: 800px;

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

    line-height: .85;

    letter-spacing: -.07em;

    font-weight: 500;
}

.image-statement-content a {

    margin-top: 45px;

    width: fit-content;

    border-bottom: 1px solid white;

    padding-bottom: 7px;

    font-size: .75rem;
}


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

.luxury-cta {

    position: relative;

    overflow: hidden;

    background: var(--lux-white);

    padding: 150px 0;

}

.luxury-cta > .container {

    position: relative;

    z-index: 2;
}

.luxury-cta p {

    font-size: .65rem;

    letter-spacing: .2em;

    margin-bottom: 40px;
}

.luxury-cta h2 {

    max-width: 1000px;

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

    line-height: .82;

    letter-spacing: -.075em;

    font-weight: 500;
}

.luxury-cta h2 em {

    font-style: italic;

    font-weight: 400;
}


.cta-circle {

    width: 170px;
    height: 170px;

    border-radius: 50%;

    background: black;

    color: white;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    gap: 12px;

    margin-left: auto;

    margin-top: -40px;

    margin-right: 10%;

    transition: .5s ease;
}

.cta-circle span {

    max-width: 80px;

    text-align: center;

    font-size: .7rem;

    line-height: 1.5;
}

.cta-circle strong {

    font-weight: 400;
}

.cta-circle:hover {

    transform: rotate(-12deg) scale(1.08);
}


.cta-decoration {

    position: absolute;

    right: -100px;

    bottom: -100px;

    font-size: 15rem;

    font-weight: 700;

    line-height: .7;

    color: rgba(0,0,0,.025);

    pointer-events: none;
}


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

@media (max-width: 900px) {

    .luxury-hero {

        min-height: 700px;

        height: 100svh;
    }

    .hero-grid-lines {

        width: calc(100% - 32px);

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

    .hero-grid-lines span:nth-child(3),
    .hero-grid-lines span:nth-child(4) {

        display: none;
    }

    .luxury-hero-content {

        padding-top: 120px;

        padding-bottom: 35px;
    }

    .hero-main h1 {

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

    .hero-intro {

        margin-left: 0;

        max-width: 350px;
    }

    .hero-scroll {

        display: none;
    }

    .intro-layout,
    .services-heading {

        grid-template-columns: 1fr;

        gap: 30px;
    }

    .intro-label {

        padding-top: 0;
    }

    .luxury-project-grid {

        grid-template-columns: 1fr;

        row-gap: 70px;
    }

    .project-offset {

        margin-top: 0;
    }

    .service-preview {

        display: none;
    }

}


@media (max-width: 600px) {

    .luxury-intro,
    .featured-projects,
    .services-dark,
    .luxury-cta {

        padding-top: 90px;

        padding-bottom: 90px;
    }

    .luxury-hero-content {

        width: calc(100% - 32px);
    }

    .hero-top {

        font-size: .55rem;
    }

    .hero-year {

        display: none;
    }

    .hero-main h1 {

        font-size: 4.2rem;

        line-height: .82;
    }

    .hero-main h1 span {

        margin-left: 10vw;
    }

    .hero-number {

        right: 12px;
    }

    .intro-content h2 {

        font-size: 3.3rem;
    }

    .intro-bottom {

        align-items: flex-start;

        flex-direction: column;

        gap: 35px;
    }

    .circle-link {

        width: 90px;
        height: 90px;
    }

    .section-header {

        align-items: flex-start;

        flex-direction: column;

        gap: 25px;
    }

    .luxury-project-info {

        display: block;
    }

    .luxury-project-info > span {

        margin-top: 8px;
    }

    .services-heading h2 {

        font-size: 3.4rem;
    }

    .luxury-service {

        grid-template-columns:
            35px 1fr 30px;

        gap: 12px;
    }

    .luxury-service h3 {

        font-size: 1.7rem;
    }

    .image-statement {

        min-height: 650px;
    }

    .image-statement-content {

        min-height: 650px;

        padding:
            80px 24px;
    }

    .image-statement-content h2 {

        font-size: 4rem;
    }

    .cta-circle {

        width: 125px;
        height: 125px;

        margin:
            50px auto 0;
    }

    .cta-decoration {

        font-size: 8rem;
    }

}
















/* =====================================================
   CINEMATIC HERO SLIDER
===================================================== */

.luxury-hero {
    position: relative;
    isolation: isolate;
}


/* -----------------------------------------------------
   SLIDES
----------------------------------------------------- */

.hero-slider {
    position: absolute;
    inset: 0;

    z-index: -3;

    overflow: hidden;
}

.hero-slide {
    position: absolute;
    inset: 0;

    opacity: 0;

    visibility: hidden;

    transform: scale(1.04);

    transition:
        opacity 1.2s ease,
        visibility 1.2s ease,
        transform 7s ease;
}

.hero-slide.active {
    opacity: 1;

    visibility: visible;

    transform: scale(1);
}

.hero-slide img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;
}


/* -----------------------------------------------------
   SLIDE IMAGE MOVEMENT
----------------------------------------------------- */

.hero-slide.active img {
    animation:
        cinematicZoom 7s
        cubic-bezier(.2,.7,.2,1)
        forwards;
}

@keyframes cinematicZoom {

    from {
        transform: scale(1.08);
    }

    to {
        transform: scale(1);
    }

}


/* -----------------------------------------------------
   DARK CINEMATIC OVERLAY
----------------------------------------------------- */

.luxury-hero .hero-overlay {

    z-index: -2;

    background:

        linear-gradient(
            90deg,
            rgba(0,0,0,.72) 0%,
            rgba(0,0,0,.40) 40%,
            rgba(0,0,0,.12) 100%
        ),

        linear-gradient(
            0deg,
            rgba(0,0,0,.65) 0%,
            rgba(0,0,0,.05) 65%
        );
}


/* -----------------------------------------------------
   SLIDER CONTROLS
----------------------------------------------------- */

.hero-controls {

    display: flex;

    align-items: center;

    gap: 18px;

    margin-left: auto;
}

.hero-controls button {

    width: 45px;
    height: 45px;

    border: 1px solid
        rgba(255,255,255,.4);

    background:
        rgba(0,0,0,.15);

    color: white;

    display: flex;

    align-items: center;

    justify-content: center;

    cursor: pointer;

    font-size: 1rem;

    backdrop-filter: blur(8px);

    transition:
        background .3s ease,
        color .3s ease,
        border .3s ease;
}

.hero-controls button:hover {

    background: white;

    color: black;

    border-color: white;
}


/* -----------------------------------------------------
   COUNTER
----------------------------------------------------- */

.hero-counter {

    display: flex;

    align-items: center;

    gap: 12px;

    font-size: .65rem;

    letter-spacing: .12em;

    min-width: 85px;

    justify-content: center;
}

.counter-line {

    width: 28px;

    height: 1px;

    background:
        rgba(255,255,255,.45);
}


/* -----------------------------------------------------
   PROGRESS BAR
----------------------------------------------------- */

.hero-progress {

    position: absolute;

    left: 0;
    bottom: 0;

    width: 100%;

    height: 2px;

    background:
        rgba(255,255,255,.15);

    z-index: 10;
}

.hero-progress span {

    display: block;

    width: 0%;

    height: 100%;

    background: white;

    transition: width .1s linear;
}


/* -----------------------------------------------------
   HERO IMAGE NUMBER
----------------------------------------------------- */

.hero-number {

    transition:
        opacity .4s ease;
}


/* -----------------------------------------------------
   MOBILE
----------------------------------------------------- */

@media (max-width: 900px) {

    .hero-controls {

        margin-left: 0;
    }

    .hero-scroll {

        display: none;
    }

}


@media (max-width: 600px) {

    .hero-controls {

        gap: 8px;
    }

    .hero-controls button {

        width: 40px;
        height: 40px;
    }

    .hero-counter {

        min-width: 65px;

        gap: 8px;
    }

    .counter-line {

        width: 18px;
    }

}









/* =========================================
   HERO EXPERIENCE BADGE
========================================= */

.hero-experience {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-right: 25px;
    color: #fff;
    position: relative;
    min-width: 190px;
}

/* Large 20+ */

.experience-number {
    display: flex;
    align-items: flex-start;
    line-height: .8;
    position: relative;
}

.experience-number span {
    font-size: 4.8rem;
    font-weight: 500;
    letter-spacing: -0.08em;
}

.experience-number sup {
    font-size: 1.45rem;
    font-weight: 400;
    margin-top: -2px;
    margin-left: 3px;
    opacity: .9;
}

/* Vertical divider */

.hero-experience::after {
    content: "";
    width: 1px;
    height: 48px;
    background: rgba(255,255,255,.4);
    position: absolute;
    right: -5px;
    top: 50%;
    transform: translateY(-50%);
}

/* Text */

.experience-label {
    display: flex;
    flex-direction: column;
    gap: 4px;
    letter-spacing: .13em;
}

.experience-label span {
    font-size: .58rem;
    font-weight: 400;
    opacity: .7;
}

.experience-label strong {
    font-size: .68rem;
    font-weight: 500;
    letter-spacing: .16em;
}

/* Subtle premium glow */

.hero-experience:hover .experience-number span {
    transform: translateY(-2px);
}

.experience-number span {
    transition: transform .35s ease;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1100px) {

    .hero-experience {
        min-width: 170px;
        gap: 14px;
        margin-right: 10px;
    }

    .experience-number span {
        font-size: 4rem;
    }

    .experience-number sup {
        font-size: 1.1rem;
    }

}


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

@media (max-width: 700px) {

    .hero-experience {
        min-width: auto;
        margin-right: 0;
        gap: 12px;
    }

    .experience-number span {
        font-size: 3.2rem;
    }

    .experience-number sup {
        font-size: .9rem;
    }

    .experience-label span {
        font-size: .5rem;
    }

    .experience-label strong {
        font-size: .58rem;
    }

    .hero-experience::after {
        display: none;
    }

}









/* =========================================
   PREMIUM HERO BUTTON
========================================= */

.premium-hero-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 22px;
    height: 58px;
    padding: 0 8px 0 25px;
    color: #fff;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,.45);
    background: rgba(255,255,255,.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    overflow: hidden;
    transition:
        color .45s ease,
        border-color .45s ease,
        background .45s ease;
}

.premium-hero-button::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #fff;
    transform: translateX(-101%);
    transition: transform .5s cubic-bezier(.77,0,.18,1);
    z-index: -1;
}

.premium-hero-button-text {
    position: relative;
    z-index: 2;
    font-size: .68rem;
    font-weight: 500;
    letter-spacing: .16em;
    text-transform: uppercase;
    white-space: nowrap;
}

.premium-hero-button-arrow {
    width: 43px;
    height: 43px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: #111;
    overflow: hidden;
    position: relative;
    z-index: 2;
    transition:
        transform .45s cubic-bezier(.77,0,.18,1),
        background .45s ease,
        color .45s ease;
}

.premium-hero-button-arrow span {
    display: block;
    font-size: 1rem;
    transition: transform .45s ease;
}

/* Hover */

.premium-hero-button:hover {
    color: #111;
    border-color: #fff;
}

.premium-hero-button:hover::before {
    transform: translateX(0);
}

.premium-hero-button:hover .premium-hero-button-arrow {
    background: #111;
    color: #fff;
}

.premium-hero-button:hover .premium-hero-button-arrow span {
    transform: translate(4px, -4px);
}


/* =========================================
   SHORTER HERO
========================================= */

.luxury-hero {
    min-height: 720px;
    height: 82vh;
    max-height: 820px;
}


/* =========================================
   HERO CONTENT SPACING
========================================= */

.luxury-hero-content {
    height: 100%;
    padding-top: 115px;
    padding-bottom: 55px;
}

.hero-main {
    max-width: 850px;
}

.hero-main h1 {
    margin-bottom: 22px;
}

.hero-bottom {
    margin-top: 35px;
}


/* =========================================
   MOBILE HERO
========================================= */

@media (max-width: 700px) {

    .luxury-hero {
        min-height: 590px;
        height: 72vh;
        max-height: 680px;
    }

    .luxury-hero-content {
        padding-top: 95px;
        padding-bottom: 28px;
    }

    .hero-main h1 {
        font-size: clamp(3rem, 13vw, 4.5rem);
        line-height: .92;
        margin-bottom: 16px;
    }

    .hero-intro {
        max-width: 330px;
        font-size: .82rem;
        line-height: 1.65;
    }

    .hero-bottom {
        margin-top: 25px;
    }

    .premium-hero-button {
        height: 52px;
        padding-left: 19px;
        gap: 15px;
    }

    .premium-hero-button-text {
        font-size: .6rem;
    }

    .premium-hero-button-arrow {
        width: 38px;
        height: 38px;
    }
}















/* =========================================
   PREMIUM SLIDER CONTROLS
========================================= */

.hero-controls {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-controls button {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.45);
    background: rgba(0,0,0,.16);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: .85rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition:
        background .35s ease,
        border-color .35s ease,
        transform .35s ease;
}

.hero-controls button:hover {
    background: #fff;
    color: #111;
    border-color: #fff;
    transform: scale(1.05);
}

.hero-counter {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 75px;
    justify-content: center;
    font-size: .6rem;
    letter-spacing: .15em;
}

.counter-line {
    width: 22px;
    height: 1px;
    background: rgba(255,255,255,.5);
}


/* =========================================
   MOBILE SLIDER CONTROLS
========================================= */

@media (max-width: 700px) {

    .hero-controls {
        margin-left: auto;
        gap: 7px;
    }

    .hero-controls button {
        width: 36px;
        height: 36px;
        font-size: .72rem;
        background: rgba(255,255,255,.08);
        border-color: rgba(255,255,255,.38);
    }

    .hero-counter {
        min-width: 58px;
        gap: 7px;
        font-size: .53rem;
    }

    .counter-line {
        width: 14px;
    }

}





















/* =========================================
   HERO BOTTOM
========================================= */

.hero-bottom {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 35px;
    margin-top: 35px;
}

.hero-bottom-main {
    display: flex;
    align-items: center;
    gap: 30px;
}


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

.hero-experience {
    display: flex;
    align-items: center;
    gap: 17px;
    color: #fff;
    min-width: 205px;
}

.experience-number {
    display: flex;
    align-items: flex-start;
    line-height: .8;
}

.experience-number span {
    font-size: 4.8rem;
    font-weight: 400;
    letter-spacing: -.08em;
}

.experience-number sup {
    font-size: 1.2rem;
    margin-top: -3px;
    margin-left: 3px;
}

.experience-label {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding-left: 17px;
    border-left: 1px solid rgba(255,255,255,.4);
}

.experience-label span,
.experience-label strong {
    font-size: .62rem;
    letter-spacing: .18em;
    font-weight: 400;
    white-space: nowrap;
}

.experience-label span {
    opacity: .7;
}


/* =========================================
   PREMIUM EXPLORE PROJECTS BUTTON
========================================= */

.premium-hero-button {
    height: 58px;
    min-width: 245px;

    display: inline-flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 7px 0 24px;

    color: #fff;
    text-decoration: none;

    border: 1px solid rgba(255,255,255,.55);
    background: rgba(15,15,15,.20);

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    position: relative;
    overflow: hidden;

    transition:
        background .4s ease,
        color .4s ease,
        border-color .4s ease;
}

.premium-hero-button::before {
    content: "";
    position: absolute;
    inset: 0;

    background: #fff;

    transform: translateX(-101%);

    transition:
        transform .55s cubic-bezier(.77,0,.18,1);
}

.premium-hero-button-text {
    position: relative;
    z-index: 2;

    font-size: .66rem;
    font-weight: 500;
    letter-spacing: .17em;
    text-transform: uppercase;
    white-space: nowrap;
}


/* SQUARE ARROW */

.premium-hero-button-arrow {
    position: relative;
    z-index: 2;

    width: 44px;
    height: 44px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #fff;
    color: #111;

    border-radius: 0;

    overflow: hidden;

    transition:
        background .4s ease,
        color .4s ease;
}

.premium-hero-button-arrow span {
    font-size: 1.1rem;
    line-height: 1;

    transition:
        transform .4s ease;
}


/* BUTTON HOVER */

.premium-hero-button:hover {
    color: #111;
    border-color: #fff;
}

.premium-hero-button:hover::before {
    transform: translateX(0);
}

.premium-hero-button:hover .premium-hero-button-arrow {
    background: #111;
    color: #fff;
}

.premium-hero-button:hover .premium-hero-button-arrow span {
    transform: translate(3px, -3px);
}


/* =========================================
   SLIDER CONTROLS
   KEEP THESE CIRCULAR
========================================= */

.hero-controls {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: auto;
}

.hero-controls button {
    width: 45px;
    height: 45px;

    flex: 0 0 45px;

    border-radius: 50%;

    border: 1px solid rgba(255,255,255,.45);

    background: rgba(0,0,0,.18);
    color: #fff;

    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;

    font-size: .85rem;

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    transition:
        background .3s ease,
        color .3s ease,
        border-color .3s ease,
        transform .3s ease;
}

.hero-controls button:hover {
    background: #fff;
    color: #111;
    border-color: #fff;
    transform: scale(1.06);
}

.hero-counter {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    min-width: 75px;

    color: #fff;

    font-size: .6rem;
    letter-spacing: .15em;
}

.counter-line {
    width: 22px;
    height: 1px;
    background: rgba(255,255,255,.5);
}


/* =========================================
   SHORTER HERO
========================================= */

.luxury-hero {
    min-height: 680px;
    height: 78vh;
    max-height: 780px;
}


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

@media (max-width: 700px) {

    .luxury-hero {
        min-height: 600px;
        height: 98vh;
        max-height: 650px;
    }

    .luxury-hero-content {
        padding-top: 92px;
        padding-bottom: 22px;
    }

    .hero-main h1 {
        font-size: clamp(3rem, 13vw, 4.3rem);
        line-height: .9;
        margin-bottom: 15px;
    }

    .hero-intro {
        max-width: 340px;
        font-size: .8rem;
        line-height: 1.6;
    }


    /* Bottom section becomes two-column */

    .hero-bottom {
        display: flex;
        flex-direction: column;
        align-items: stretch;

        gap: 18px;

        margin-top: 23px;
    }

    .hero-bottom-main {
        width: 100%;

        display: grid;
        grid-template-columns: 1fr 1.15fr;

        align-items: center;

        gap: 12px;
    }


    /* EXPERIENCE LEFT */

    .hero-experience {
        min-width: 0;
        gap: 9px;
    }

    .experience-number span {
        font-size: 3.35rem;
    }

    .experience-number sup {
        font-size: .85rem;
        margin-top: 0;
    }

    .experience-label {
        padding-left: 10px;
        gap: 3px;
    }

    .experience-label span,
    .experience-label strong {
        font-size: .47rem;
        letter-spacing: .14em;
    }


    /* EXPLORE RIGHT */

    .premium-hero-button {
        width: 100%;
        min-width: 0;

        height: 52px;

        padding-left: 14px;
        padding-right: 6px;
    }

    .premium-hero-button-text {
        font-size: .54rem;
        letter-spacing: .13em;
    }

    .premium-hero-button-arrow {
        width: 39px;
        height: 39px;
    }

    .premium-hero-button-arrow span {
        font-size: .95rem;
    }


    /* =====================================
       SLIDER ARROWS BELOW
       STILL CIRCLES
    ===================================== */

    .hero-controls {
        width: 100%;

        margin-left: 0;

        justify-content: center;

        gap: 8px;
    }

    .hero-controls button {
        width: 38px;
        height: 38px;
        flex-basis: 38px;

        border-radius: 50%;

        font-size: .72rem;
    }

    .hero-counter {
        min-width: 65px;
        gap: 8px;
        font-size: .52rem;
    }

    .counter-line {
        width: 17px;
    }

    .hero-scroll {
        display: none;
    }
}













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

.final-contact-cta {
    position: relative;
    background: #f5f5f2;
    color: #0a0a0a;
    overflow: hidden;
    border-top: 1px solid #deded9;
}

/* Subtle decorative background */

.final-contact-cta::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    border: 1px solid rgba(0,0,0,.045);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.final-contact-cta::after {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    border: 1px solid rgba(0,0,0,.035);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}


/* =========================================
   CENTERED CONTENT
========================================= */

.final-cta-inner {
    position: relative;
    z-index: 2;

    min-height: 500px;

    padding: 90px 30px;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;
}

.final-cta-content {
    max-width: 900px;
    width: 100%;
}


/* Eyebrow */

.final-cta-eyebrow {
    display: block;

    margin-bottom: 25px;

    font-size: .62rem;
    letter-spacing: .22em;
    font-weight: 500;

    color: #666;
}


/* Heading */

.final-cta-content h2 {
    margin: 0;

    font-size: clamp(4rem, 7vw, 7.5rem);
    line-height: .88;

    font-weight: 400;
    letter-spacing: -.055em;
}

.final-cta-content p {
    max-width: 500px;

    margin: 30px auto 35px;

    font-size: .92rem;
    line-height: 1.7;

    color: #666;
}


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

.final-cta-actions {
    display: flex;
    justify-content: center;
    align-items: center;

    gap: 12px;
}


/* Primary */

.final-cta-primary {
    min-width: 210px;
    height: 58px;

    padding: 0 7px 0 24px;

    display: inline-flex;
    align-items: center;
    justify-content: space-between;

    background: #0a0a0a;
    color: #fff;

    text-decoration: none;

    border: 1px solid #0a0a0a;

    transition:
        background .35s ease,
        color .35s ease;
}

.final-cta-primary span {
    font-size: .64rem;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.final-cta-primary strong {
    width: 43px;
    height: 43px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #fff;
    color: #111;

    font-size: 1rem;
    font-weight: 400;

    transition:
        transform .35s ease,
        background .35s ease,
        color .35s ease;
}

.final-cta-primary:hover {
    background: #fff;
    color: #111;
}

.final-cta-primary:hover strong {
    background: #111;
    color: #fff;
    transform: translate(2px, -2px);
}


/* Secondary */

.final-cta-secondary {
    min-width: 235px;
    height: 58px;

    padding: 0 22px;

    display: inline-flex;
    align-items: center;
    justify-content: space-between;

    border: 1px solid #aaa;

    color: #111;
    text-decoration: none;

    transition:
        background .35s ease,
        border-color .35s ease,
        color .35s ease;
}

.final-cta-secondary span {
    font-size: .62rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: #777;
}

.final-cta-secondary strong {
    font-size: .7rem;
    font-weight: 500;
}

.final-cta-secondary:hover {
    background: #111;
    border-color: #111;
    color: #fff;
}

.final-cta-secondary:hover span {
    color: #aaa;
}


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

@media (max-width: 600px) {

    .final-contact-cta::before {
        width: 300px;
        height: 300px;
    }

    .final-contact-cta::after {
        width: 190px;
        height: 190px;
    }

    .final-cta-inner {
        min-height: 460px;
        padding: 70px 22px;
    }

    .final-cta-eyebrow {
        font-size: .52rem;
        letter-spacing: .17em;
        margin-bottom: 20px;
    }

    .final-cta-content h2 {
        font-size: clamp(3.3rem, 15vw, 5rem);
        line-height: .9;
        letter-spacing: -.06em;
    }

    .final-cta-content p {
        max-width: 330px;

        margin: 24px auto 30px;

        font-size: .8rem;
        line-height: 1.65;
    }

    .final-cta-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    .final-cta-primary,
    .final-cta-secondary {
        width: 100%;
        min-width: 0;
        height: 54px;
    }

    .final-cta-primary {
        padding-left: 19px;
    }

    .final-cta-primary strong {
        width: 40px;
        height: 40px;
    }

    .final-cta-secondary {
        padding: 0 18px;
    }
}













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

.faq-section {
    position: relative;

    background: #f5f5f2;
    color: #0a0a0a;

    border-top: 1px solid #deded9;
    overflow: hidden;
}

.faq-inner {
    width: min(100% - 40px, 1050px);

    margin: 0 auto;

    padding: 120px 0 130px;

    display: flex;
    flex-direction: column;
    align-items: center;
}


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

.faq-heading {
    width: 100%;

    text-align: center;

    margin-bottom: 65px;
}

.faq-eyebrow {
    display: block;

    margin-bottom: 24px;

    font-size: .6rem;
    font-weight: 500;

    letter-spacing: .22em;

    color: #666;
}

.faq-heading h2 {
    margin: 0;

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

    line-height: .88;

    font-weight: 400;

    letter-spacing: -.055em;
}

.faq-heading h2 em {
    font-family: Georgia, serif;

    font-weight: 400;
    font-style: italic;
}

.faq-heading p {
    max-width: 470px;

    margin: 28px auto 0;

    color: #707070;

    font-size: .9rem;

    line-height: 1.7;
}


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

.faq-list {
    width: 100%;

    border-top: 1px solid #cfcfca;
}


/* FAQ ITEM */

.faq-item {
    border-bottom: 1px solid #cfcfca;
}


/* Question */

.faq-question {
    width: 100%;

    padding: 27px 5px;

    border: 0;

    background: transparent;

    color: #111;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

    text-align: left;

    cursor: pointer;

    font-family: inherit;
}

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

    font-weight: 500;

    letter-spacing: .01em;

    transition: transform .35s ease;
}


/* Plus */

.faq-icon {
    width: 36px;
    height: 36px;

    flex: 0 0 36px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px solid #aaa;

    font-size: 1.1rem;
    font-weight: 300;

    line-height: 1;

    transition:
        transform .4s ease,
        background .4s ease,
        color .4s ease,
        border-color .4s ease;
}



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

.faq-answer {
    max-height: 0;
    overflow: hidden;

    transition:
        max-height .5s cubic-bezier(.77,0,.18,1);
}

.faq-answer p {
    max-width: 650px;

    margin: 0;

    padding: 0 70px 28px 5px;

    color: #707070;

    font-size: .84rem;
    line-height: 1.75;

    opacity: 0;

    transition:
        opacity .35s ease;
}


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

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-item.active .faq-answer p {
    opacity: 1;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);

    background: #111;
    border-color: #111;

    color: #fff;
}






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

.faq-item.active .faq-answer {
    grid-template-rows: 1fr;
}

.faq-item.active .faq-answer p {
    padding-top: 0;
    padding-bottom: 28px;

    opacity: 1;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);

    background: #111;

    border-color: #111;

    color: #fff;
}


/* =========================================
   HOVER
========================================= */

.faq-question:hover > span:first-child {
    transform: translateX(5px);
}

.faq-question:hover .faq-icon {
    border-color: #111;
}


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

@media (max-width: 600px) {

    .faq-inner {
        width: min(100% - 32px, 600px);

        padding: 80px 0 90px;
    }

    .faq-heading {
        margin-bottom: 45px;
    }

    .faq-eyebrow {
        font-size: .52rem;

        letter-spacing: .17em;

        margin-bottom: 20px;
    }

    .faq-heading h2 {
        font-size: clamp(3.4rem, 15vw, 5rem);

        line-height: .9;
    }

    .faq-heading p {
        max-width: 330px;

        margin-top: 22px;

        font-size: .8rem;
    }

    .faq-question {
        padding: 22px 2px;

        gap: 15px;
    }

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

        line-height: 1.45;
    }

    .faq-icon {
        width: 32px;
        height: 32px;

        flex-basis: 32px;

        font-size: .95rem;
    }

    .faq-answer p {
        padding-left: 2px;
        padding-right: 35px;

        font-size: .76rem;

        line-height: 1.7;
    }

    .faq-item.active .faq-answer p {
        padding-bottom: 23px;
    }

}










/* =========================================
   TYPOGRAPHY — LARGER / MORE READABLE
========================================= */

body {
    font-size: 17px;
}


/* Navigation */
.desktop-nav a {
    font-size: .86rem;
    letter-spacing: .07em;
}

.header-cta {
    font-size: .78rem;
}


/* General paragraphs */
p {
    font-size: 1.05rem;
    line-height: 1.8;
}


/* Hero */
.hero-intro {
    font-size: 1.05rem;
    line-height: 1.8;
}

.hero-small-title,
.hero-location,
.hero-year {
    font-size: .72rem;
}


/* Hero CTA */
.premium-hero-button-text {
    font-size: .76rem;
}


/* Experience */
.experience-label span,
.experience-label strong {
    font-size: .72rem;
}


/* Marquee */
.luxury-marquee {
    font-size: .9rem;
}


/* Section labels */
.intro-label,
.section-header span,
.faq-eyebrow,
.final-cta-eyebrow {
    font-size: .72rem;
}


/* Intro */
.intro-content p,
.section-description {
    font-size: 1.05rem;
    line-height: 1.85;
}


/* Projects */
.luxury-project-info p {
    font-size: .98rem;
    line-height: 1.75;
}

.luxury-project-info span {
    font-size: .72rem;
}


/* Services */
.luxury-service p {
    font-size: 1rem;
    line-height: 1.8;
}

.luxury-service small {
    font-size: .72rem;
}


/* FAQ */
.faq-question > span:first-child {
    font-size: 1.05rem;
    line-height: 1.55;
}

.faq-answer p {
    font-size: .98rem;
    line-height: 1.85;
}


/* Final CTA */
.final-cta-content p {
    font-size: 1.05rem;
    line-height: 1.8;
}

.final-cta-primary span,
.final-cta-secondary span {
    font-size: .74rem;
}


/* Footer */
.footer-brand p {
    font-size: .98rem;
    line-height: 1.8;
}

.footer-links a {
    font-size: .9rem;
}

.footer-links span {
    font-size: .72rem;
}

.footer-bottom p {
    font-size: .76rem;
}


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

@media (max-width: 700px) {

    body {
        font-size: 16px;
    }

    p {
        font-size: 1rem;
        line-height: 1.8;
    }


    /* Mobile navigation */
    .mobile-menu nav a {
        font-size: 1.15rem;
    }


    /* Hero */
    .hero-intro {
        font-size: .96rem;
        line-height: 1.75;
    }

    .hero-small-title,
    .hero-location,
    .hero-year {
        font-size: .64rem;
    }


    /* Experience */
    .experience-label span,
    .experience-label strong {
        font-size: .56rem;
    }


    /* Explore button */
    .premium-hero-button-text {
        font-size: .63rem;
    }


    /* Intro */
    .intro-content p {
        font-size: .98rem;
        line-height: 1.8;
    }


    /* Projects */
    .luxury-project-info p {
        font-size: .92rem;
        line-height: 1.75;
    }


    /* Services */
    .luxury-service p {
        font-size: .96rem;
        line-height: 1.8;
    }


    /* FAQ */
    .faq-question > span:first-child {
        font-size: .96rem;
        line-height: 1.55;
    }

    .faq-answer p {
        font-size: .92rem;
        line-height: 1.8;
    }


    /* CTA */
    .final-cta-content p {
        font-size: .98rem;
        line-height: 1.8;
    }


    /* Footer */
    .footer-brand p {
        font-size: .92rem;
        line-height: 1.75;
    }

    .footer-links a {
        font-size: .9rem;
    }

    .footer-bottom p {
        font-size: .72rem;
    }

}













/* =========================================
   MOBILE SIDEBAR
========================================= */

.mobile-menu {
    position: fixed;
    inset: 0;

    z-index: 2000;

    visibility: hidden;
    pointer-events: none;
}


/* =========================================
   OVERLAY
========================================= */

.mobile-menu-overlay {
    position: absolute;
    inset: 0;

    background: rgba(0,0,0,.58);

    opacity: 0;

    transition: opacity .45s ease;
}


/* =========================================
   SIDEBAR
========================================= */

.mobile-sidebar {
    position: absolute;

    top: 0;
    right: 0;

    width: min(430px, 78vw);
    height: 100%;

    background: #171717;
    color: #fff;

    overflow-y: auto;
    overflow-x: hidden;

    transform: translateX(100%);

    transition:
        transform .55s cubic-bezier(.77,0,.18,1);

    box-shadow: -20px 0 60px rgba(0,0,0,.25);

    display: flex;
    flex-direction: column;
}


/* =========================================
   OPEN STATE
========================================= */

.mobile-menu.active {
    visibility: visible;
    pointer-events: auto;
}

.mobile-menu.active .mobile-menu-overlay {
    opacity: 1;
}

.mobile-menu.active .mobile-sidebar {
    transform: translateX(0);
}


/* =========================================
   SIDEBAR HEADER
========================================= */

.mobile-sidebar-header {
    min-height: 145px;

    padding: 35px 30px;

    display: flex;
    align-items: flex-start;
    justify-content: space-between;

    border-bottom: 1px solid rgba(255,255,255,.12);
}


.mobile-sidebar-logo {
    color: #fff;

    text-decoration: none;

    font-size: 1.65rem;
    font-weight: 400;

    letter-spacing: -.035em;

    line-height: 1;
}


/* =========================================
   CLOSE BUTTON
========================================= */

.mobile-sidebar-close {
    width: 45px;
    height: 45px;

    padding: 0;

    border: 0;
    background: transparent;

    cursor: pointer;

    position: relative;

    flex: 0 0 45px;
}

.mobile-sidebar-close span {
    position: absolute;

    left: 7px;
    top: 22px;

    width: 31px;
    height: 1.5px;

    background: #fff;

    transition:
        transform .35s ease;
}

.mobile-sidebar-close span:first-child {
    transform: rotate(45deg);
}

.mobile-sidebar-close span:last-child {
    transform: rotate(-45deg);
}

.mobile-sidebar-close:hover span:first-child {
    transform: rotate(0);
}

.mobile-sidebar-close:hover span:last-child {
    transform: rotate(90deg);
}


/* =========================================
   NAVIGATION
========================================= */

.mobile-sidebar-nav {
    padding: 40px 30px 0;
}


.mobile-sidebar-nav a {
    min-height: 74px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    border-bottom: 1px solid rgba(255,255,255,.12);

    color: rgba(255,255,255,.78);

    text-decoration: none;

    font-size: 1.05rem;
    font-weight: 400;

    letter-spacing: -.01em;

    transition:
        color .3s ease,
        padding-left .3s ease;
}


.mobile-sidebar-nav a:first-child {
    border-top: 1px solid rgba(255,255,255,.12);
}


.mobile-sidebar-nav a:hover {
    color: #fff;
    padding-left: 7px;
}


/* Projects arrow */

.mobile-sidebar-pages strong {
    width: 43px;
    height: 43px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #fff;
    color: #111;

    font-size: 1.25rem;
    font-weight: 400;

    transition:
        transform .35s ease,
        background .35s ease,
        color .35s ease;
}


.mobile-sidebar-pages:hover strong {
    transform: translate(3px, -3px);

    background: #111;
    color: #fff;
}


/* =========================================
   CONTACT AREA
========================================= */

.mobile-sidebar-contact {
    padding: 50px 30px 45px;

    margin-top: auto;
}


.mobile-contact-item {
    display: flex;
    align-items: center;

    gap: 20px;

    color: #fff;
    text-decoration: none;

    margin-bottom: 35px;
}


.mobile-contact-item:last-child {
    margin-bottom: 0;
}


/* Green/brand-style icon */

.mobile-contact-icon {
    width: 68px;
    height: 68px;

    flex: 0 0 68px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #fff;
    color: #111;

    border-radius: 50%;

    transition:
        transform .35s ease,
        background .35s ease,
        color .35s ease;
}


.mobile-contact-item:hover .mobile-contact-icon {
    transform: scale(1.06);

    background: #111;
    color: #fff;
}


.mobile-contact-icon svg {
    width: 29px;
    height: 29px;

    fill: none;

    stroke: currentColor;

    stroke-width: 1.7;

    stroke-linecap: round;
    stroke-linejoin: round;
}


/* Contact text */

.mobile-contact-text {
    min-width: 0;

    display: flex;
    flex-direction: column;

    gap: 7px;
}


.mobile-contact-text span {
    color: rgba(255,255,255,.65);

    font-size: .82rem;

    line-height: 1.3;
}


.mobile-contact-text strong {
    color: #fff;

    font-size: .95rem;

    line-height: 1.35;

    font-weight: 500;

    overflow-wrap: anywhere;
}


/* =========================================
   MOBILE ONLY
========================================= */

@media (min-width: 901px) {

    .mobile-menu {
        display: none !important;
    }

}


@media (max-width: 600px) {

    .mobile-sidebar {
        width: 84vw;
    }

    .mobile-sidebar-header {
        min-height: 125px;

        padding: 30px 22px;
    }

    .mobile-sidebar-logo {
        font-size: 1.45rem;
    }

    .mobile-sidebar-nav {
        padding: 28px 22px 0;
    }

    .mobile-sidebar-nav a {
        min-height: 68px;

        font-size: 1rem;
    }

    .mobile-sidebar-pages strong {
        width: 40px;
        height: 40px;
    }

    .mobile-sidebar-contact {
        padding: 40px 22px 30px;
    }

    .mobile-contact-item {
        gap: 15px;
        margin-bottom: 28px;
    }

    .mobile-contact-icon {
        width: 58px;
        height: 58px;

        flex-basis: 58px;
    }

    .mobile-contact-icon svg {
        width: 25px;
        height: 25px;
    }

    .mobile-contact-text span {
        font-size: .74rem;
    }

    .mobile-contact-text strong {
        font-size: .84rem;
    }

}














/* =========================================
   SCROLLED HEADER — FORCE WHITE
========================================= */

.site-header.scrolled {
    background: rgba(255, 255, 255, 0.97) !important;
    color: #0a0a0a !important;
    border-bottom: 1px solid #e5e5e5 !important;

    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);

    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.site-header.scrolled .logo {
    color: #0a0a0a !important;
}

.site-header.scrolled .desktop-nav a {
    color: #0a0a0a !important;
}

.site-header.scrolled .desktop-nav a::after {
    background: #0a0a0a !important;
}

.site-header.scrolled .header-cta {
    background: #0a0a0a !important;
    color: #fff !important;
}

.site-header.scrolled .menu-toggle span {
    background: #0a0a0a !important;
}











/* =========================================
   FOOTER — SCREENSHOT STYLE
========================================= */

.site-footer {
    position: relative;
    background: #242424;
    color: #fff;
    overflow: hidden;
}


/* =========================================
   TOP CONTACT AREA
========================================= */

.footer-top-area {
    border-bottom: 0;
}

.footer-top-inner {
    min-height: 260px;

    display: flex;
    align-items: flex-start;
    justify-content: space-between;

    gap: 70px;

    padding-top: 65px;
    padding-bottom: 65px;
}


/* Heading */

.footer-heading {
    flex: 1;
}

.footer-heading h2 {
    margin: 0;

    font-size: clamp(3rem, 4.3vw, 5rem);
    line-height: 1.05;

    font-weight: 400;

    letter-spacing: -.04em;
}

.footer-heading h2 em {
    font-style: normal;
}


/* =========================================
   EMAIL FIELD
========================================= */

.footer-email-form {
    width: min(100%, 635px);

    height: 64px;

    display: flex;

    margin-top: 2px;
}

.footer-email-form input {
    flex: 1;

    min-width: 0;

    border: 0;
    outline: 0;

    padding: 0 30px;

    background: #f1f2f4;

    color: #111;

    font-family: inherit;

    font-size: 1rem;
}

.footer-email-form input::placeholder {
    color: #222;
    opacity: 1;
}

.footer-email-form button {
    width: 85px;

    flex: 0 0 85px;

    border: 0;

    background: #0d765b;

    color: #fff;

    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;

    transition:
        background .3s ease;
}

.footer-email-form button:hover {
    background: #fff;
    color: #111;
}

.footer-email-form button svg {
    width: 25px;
    height: 25px;

    fill: none;

    stroke: currentColor;

    stroke-width: 1.7;

    stroke-linecap: round;

    stroke-linejoin: round;
}


/* =========================================
   MAIN FOOTER
========================================= */

.footer-main {
    border-bottom: 1px solid rgba(255,255,255,.18);
}

.footer-main-grid {
    min-height: 390px;

    display: grid;

    grid-template-columns:
        1.5fr
        1fr
        1.15fr;

    gap: 80px;

    padding-top: 55px;
    padding-bottom: 65px;
}


/* =========================================
   BRAND
========================================= */

.footer-logo {
    display: inline-block;

    color: #fff;

    text-decoration: none;

    font-size: 2rem;

    letter-spacing: -.045em;

    margin-bottom: 20px;
}

.footer-brand p {
    max-width: 340px;

    margin: 0;

    color: rgba(255,255,255,.65);

    font-size: .95rem;

    line-height: 1.75;
}


/* =========================================
   SOCIAL
========================================= */

.footer-social {
    display: flex;

    gap: 10px;

    margin-top: 30px;
}

.footer-social a {
    width: 48px;
    height: 48px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    border: 1px solid rgba(255,255,255,.25);

    color: #fff;

    text-decoration: none;

    font-size: .63rem;

    font-weight: 500;

    letter-spacing: .08em;

    transition:
        background .3s ease,
        color .3s ease,
        transform .3s ease;
}

.footer-social a:hover {
    background: #fff;

    color: #111;

    transform: translateY(-3px);
}


/* =========================================
   FOOTER COLUMNS
========================================= */

.footer-column h3 {
    margin: 0 0 35px;

    font-size: 1.55rem;

    line-height: 1;

    font-weight: 400;

    letter-spacing: -.025em;
}

.footer-column > a {
    display: block;

    width: fit-content;

    margin-bottom: 20px;

    color: rgba(255,255,255,.9);

    text-decoration: none;

    font-size: 1rem;

    transition:
        color .3s ease,
        transform .3s ease;
}

.footer-column > a:hover {
    color: #fff;

    transform: translateX(5px);
}


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

.footer-contact-row {
    display: flex;

    align-items: center;

    gap: 20px;

    margin-bottom: 25px;

    color: rgba(255,255,255,.92);

    text-decoration: none;

    font-size: .98rem;

    line-height: 1.5;
}

.footer-contact-icon {
    width: 30px;
    height: 30px;

    flex: 0 0 30px;

    display: flex;

    align-items: center;
    justify-content: center;

    color: #b08a00;
}

.footer-contact-icon svg {
    width: 23px;
    height: 23px;

    fill: none;

    stroke: currentColor;

    stroke-width: 1.6;

    stroke-linecap: round;

    stroke-linejoin: round;
}


/* =========================================
   BOTTOM
========================================= */

.footer-bottom {
    position: relative;
}

.footer-bottom-inner {
    min-height: 105px;

    display: flex;

    align-items: center;

    gap: 30px;
}

.footer-copyright {
    color: rgba(255,255,255,.9);

    font-size: .88rem;

    white-space: nowrap;
}

.footer-legal {
    display: flex;

    align-items: center;

    gap: 17px;

    margin-left: auto;
}

.footer-legal a {
    color: rgba(255,255,255,.35);

    text-decoration: none;

    font-size: .78rem;

    transition: color .3s ease;
}

.footer-legal a:hover {
    color: #fff;
}

.footer-legal span {
    width: 1px;
    height: 15px;

    background: rgba(255,255,255,.18);
}


/* =========================================
   LANGUAGE FLAGS
========================================= */

.footer-language {
    display: flex;

    align-items: center;

    gap: 9px;

    margin-left: 5px;
}

.footer-language-option {
    width: 44px;
    height: 34px;

    display: flex;

    align-items: center;
    justify-content: center;

    text-decoration: none;

    font-size: 1.45rem;

    line-height: 1;

    border: 1px solid transparent;

    opacity: .65;

    transition:
        opacity .3s ease,
        transform .3s ease,
        border-color .3s ease;
}

.footer-language-option:hover,
.footer-language-option.active {
    opacity: 1;

    transform: translateY(-2px);
}

.footer-language-option.active {
    border-color: rgba(255,255,255,.18);
}


/* =========================================
   BACK TO TOP
========================================= */

.footer-top-button {
    width: 64px;
    height: 64px;

    flex: 0 0 64px;

    margin-left: 5px;

    border-radius: 50%;

    border: 1px solid rgba(255,255,255,.12);

    background: transparent;

    color: #fff;

    cursor: pointer;

    font-size: 1.3rem;

    transition:
        background .3s ease,
        color .3s ease,
        transform .3s ease;
}

.footer-top-button:hover {
    background: #fff;

    color: #111;

    transform: translateY(-3px);
}


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

@media (max-width: 700px) {

    .footer-top-inner {
        min-height: auto;

        padding-top: 60px;
        padding-bottom: 55px;

        flex-direction: column;

        align-items: stretch;

        gap: 35px;
    }


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


    .footer-email-form {
        width: 100%;

        height: 58px;
    }


    .footer-email-form input {
        padding: 0 17px;

        font-size: .9rem;
    }


    .footer-email-form button {
        width: 60px;

        flex-basis: 60px;
    }


    .footer-main-grid {
        min-height: auto;

        grid-template-columns: 1fr;

        gap: 55px;

        padding-top: 55px;
        padding-bottom: 55px;
    }


    .footer-logo {
        font-size: 1.7rem;
    }


    .footer-brand p {
        font-size: .9rem;
    }


    .footer-column h3 {
        font-size: 1.35rem;

        margin-bottom: 25px;
    }


    .footer-column > a {
        font-size: .95rem;

        margin-bottom: 17px;
    }


    .footer-contact-row {
        font-size: .9rem;

        gap: 15px;
    }


    /* Bottom */

    .footer-bottom-inner {
        min-height: auto;

        padding-top: 28px;
        padding-bottom: 28px;

        display: grid;

        grid-template-columns: 1fr auto;

        gap: 20px;
    }


    .footer-copyright {
        white-space: normal;

        font-size: .76rem;
    }


    .footer-language {
        grid-column: 1 / -1;

        grid-row: 2;

        margin-left: 0;

        justify-content: flex-start;
    }


    .footer-legal {
        grid-column: 1 / -1;

        grid-row: 3;

        margin-left: 0;

        flex-wrap: wrap;

        gap: 10px;
    }


    .footer-top-button {
        grid-column: 2;

        grid-row: 1;

        width: 52px;
        height: 52px;

        flex-basis: 52px;
    }

}

/* Final cascade guard for footer/contact polish. */
.footer-email-form {
    background: rgba(255,255,255,.08);
    border-color: rgba(255,255,255,.18);
}

.footer-email-form input {
    background: transparent;
    color: #f7f2e8;
    caret-color: #f7f2e8;
}

.footer-email-form input::placeholder {
    color: rgba(255,255,255,.58);
}

.footer-language-option {
    background: rgba(255,255,255,.04);
    border-color: rgba(255,255,255,.1);
    border-radius: 999px;
}

.footer-language-option.active {
    background: rgba(255,255,255,.12);
    border-color: rgba(255,255,255,.32);
}

/* Agency video intro section */
.agency-video-section {
    background: #f2f3eb;
    color: #10140c;
    padding: 112px 0 24px;
}

.agency-video-inner {
    width: min(calc(100% - 48px), 1400px);
    margin: 0 auto;
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
    gap: 72px;
    align-items: start;
    min-height: 690px;
}

.agency-video-copy {
    padding-top: 10px;
    max-width: 560px;
}

.agency-kicker {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    color: #111;
    font-weight: 700;
    margin-bottom: 20px;
}

.agency-kicker::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: #111;
}

.agency-video-copy h2 {
    margin: 0 0 34px;
    font-size: clamp(4.5rem, 8vw, 8.8rem);
    line-height: .82;
    font-weight: 800;
    letter-spacing: 0;
}

.agency-video-copy p {
    max-width: 500px;
    color: #303529;
    font-size: 1.08rem;
    line-height: 1.55;
    margin-bottom: 46px;
}

.agency-more-link {
    width: fit-content;
    min-height: 58px;
    display: inline-flex;
    align-items: center;
    gap: 22px;
    padding: 0 4px 0 26px;
    background: #111;
    color: #fff;
    font-weight: 700;
}

.agency-more-link strong {
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    background: #fff;
    color: #111;
    font-size: 1.35rem;
    font-weight: 400;
}

.agency-video-media {
    position: relative;
    min-height: 590px;
    overflow: hidden;
    background: #111;
}

.agency-video-media img {
    width: 100%;
    height: 100%;
    min-height: 590px;
    object-fit: cover;
    filter: grayscale(.08) contrast(1.02);
}

.agency-play-button {
    position: absolute;
    left: 50%;
    top: 54%;
    width: 132px;
    height: 132px;
    border: 0;
    border-radius: 50%;
    background: rgba(255,255,255,.86);
    color: #111;
    cursor: pointer;
    transform: translate(-50%, -50%);
    display: grid;
    place-items: center;
    box-shadow: 0 22px 55px rgba(0,0,0,.22);
}

.agency-play-button svg {
    position: absolute;
    inset: -18px;
    width: calc(100% + 36px);
    height: calc(100% + 36px);
    animation: agencyPlaySpin 13s linear infinite;
}

.agency-play-button text {
    fill: rgba(255,255,255,.82);
    font-size: 9px;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.agency-play-button span {
    width: 0;
    height: 0;
    border-top: 13px solid transparent;
    border-bottom: 13px solid transparent;
    border-left: 19px solid #111;
    margin-left: 5px;
}

.agency-stats {
    position: absolute;
    left: 44px;
    right: 24%;
    bottom: 0;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    background: rgba(255,255,255,.78);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,.65);
    box-shadow: 0 24px 70px rgba(0,0,0,.08);
}

.agency-stats div {
    padding: 34px 40px;
    min-height: 150px;
    display: grid;
    align-content: center;
    gap: 8px;
}

.agency-stats strong {
    font-size: clamp(3.2rem, 5vw, 5.6rem);
    line-height: .82;
    font-weight: 500;
    letter-spacing: 0;
}

.agency-stats span {
    color: #252b1f;
    font-size: 1rem;
}

.agency-video-modal {
    position: fixed;
    inset: 0;
    z-index: 3000;
    display: none;
    place-items: center;
    padding: 24px;
}

.agency-video-modal.active {
    display: grid;
}

.agency-video-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.82);
    backdrop-filter: blur(10px);
}

.agency-video-modal-panel {
    position: relative;
    z-index: 1;
    width: min(1080px, 100%);
    background: #050505;
    border: 1px solid rgba(255,255,255,.18);
    box-shadow: 0 30px 100px rgba(0,0,0,.45);
}

.agency-video-close {
    position: absolute;
    right: 0;
    bottom: calc(100% + 12px);
    width: 46px;
    height: 46px;
    border: 1px solid rgba(255,255,255,.28);
    background: #fff;
    color: #111;
    cursor: pointer;
    font-size: 1.7rem;
    line-height: 1;
}

.agency-video-frame {
    aspect-ratio: 16 / 9;
    width: 100%;
}

.agency-video-frame iframe,
.agency-video-frame .agency-video-empty {
    width: 100%;
    height: 100%;
    border: 0;
}

.agency-video-empty {
    display: grid;
    place-items: center;
    color: rgba(255,255,255,.7);
    padding: 40px;
    text-align: center;
}

@keyframes agencyPlaySpin {
    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 1050px) {
    .agency-video-inner {
        grid-template-columns: 1fr;
        min-height: 0;
        gap: 40px;
    }

    .agency-video-copy {
        max-width: none;
    }

    .agency-stats {
        position: relative;
        left: auto;
        right: auto;
        bottom: auto;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        margin-top: -40px;
        z-index: 2;
    }
}

@media (max-width: 680px) {
    .agency-video-section {
        padding-top: 78px;
    }

    .agency-video-inner {
        width: min(calc(100% - 32px), 1400px);
    }

    .agency-video-copy h2 {
        font-size: clamp(3.6rem, 18vw, 5.8rem);
    }

    .agency-video-media,
    .agency-video-media img {
        min-height: 430px;
    }

    .agency-play-button {
        width: 108px;
        height: 108px;
    }

    .agency-stats {
        grid-template-columns: 1fr;
        margin-top: 0;
    }

    .agency-stats div {
        min-height: auto;
        padding: 24px;
        border-bottom: 1px solid rgba(0,0,0,.08);
    }
}

body.modal-open {
    overflow: hidden;
}

/* Screenshot-style work and service cards */
.featured-projects,
.services-dark {
    background: #f7f7f4;
    color: #222;
    padding: 112px 0 118px;
}

.featured-projects::before,
.services-dark::after,
.featured-projects::after {
    display: none;
}

.featured-projects .section-header {
    display: grid;
    justify-items: center;
    text-align: center;
    margin-bottom: 56px;
    padding-bottom: 0;
    border: 0;
}

.featured-projects .section-header > div {
    display: grid;
    justify-items: center;
}

.featured-projects .section-number,
.services-dark .section-number {
    display: none;
}

.featured-projects .section-header p,
.services-heading p {
    color: #7b7f63;
    font-size: .82rem;
    font-weight: 800;
    letter-spacing: .42em;
    text-transform: uppercase;
    margin: 0 0 22px;
}

.featured-projects .section-header p::after {
    content: "Selected Work";
    display: block;
    margin-top: 22px;
    color: #222;
    font-size: clamp(3rem, 6vw, 5.8rem);
    line-height: .95;
    letter-spacing: -.06em;
    text-transform: none;
}

.featured-projects .view-all {
    display: none;
}

.luxury-project-grid,
.luxury-services {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 34px;
    align-items: stretch;
}

.luxury-project-card:nth-child(n + 4),
.luxury-service:nth-child(n + 4) {
    display: none;
}

.luxury-project-card,
.luxury-service {
    position: relative;
    min-height: 560px;
    padding: 0;
    overflow: hidden;
    border: 0;
    border-radius: 36px;
    background: #111;
    box-shadow: none;
    transform: none;
}

.luxury-project-card:hover,
.luxury-service:hover {
    transform: translateY(-6px);
    padding: 0;
}

.luxury-project-card > a,
.luxury-service {
    display: block;
    width: 100%;
    height: 100%;
    min-height: inherit;
    color: #fff;
}

.project-visual,
.service-preview {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
    opacity: 1;
    transform: none;
    z-index: 0;
}

.project-visual::after,
.luxury-service::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(255,255,255,.08) 0%, rgba(32,35,16,.2) 38%, rgba(84,89,52,.76) 100%);
    z-index: 1;
}

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

.luxury-project-card:hover .project-visual img,
.luxury-service:hover .service-preview img {
    transform: scale(1.06);
}

.project-hover,
.project-index,
.service-count,
.service-arrow {
    display: none;
}

.luxury-project-info,
.luxury-service h3 {
    position: absolute;
    left: 32px;
    right: 32px;
    bottom: 34px;
    z-index: 3;
    display: block;
    padding: 0;
    text-align: center;
}

.luxury-project-info h3,
.luxury-service h3 {
    color: #fff;
    font-size: clamp(1.7rem, 2.4vw, 2.25rem);
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: -.02em;
    text-shadow: 0 10px 30px rgba(0,0,0,.24);
}

.luxury-project-info span,
.luxury-project-info > span {
    display: none;
}

.luxury-project-card::before,
.luxury-service::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 44%;
    z-index: 3;
    width: 86px;
    height: 86px;
    transform: translate(-50%, -50%);
    opacity: .95;
    background: currentColor;
    color: #fff;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 96 96'%3E%3Cg fill='none' stroke='black' stroke-width='5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M18 42h60v35H18z'/%3E%3Cpath d='M18 42V26h60v16'/%3E%3Cpath d='M34 42V26M62 42V26'/%3E%3Ccircle cx='31' cy='57' r='4'/%3E%3Ccircle cx='48' cy='57' r='4'/%3E%3Ccircle cx='65' cy='57' r='4'/%3E%3Cpath d='M26 70h44'/%3E%3C/g%3E%3C/svg%3E") center/contain no-repeat;
}

.luxury-project-card:nth-child(2)::before,
.luxury-service:nth-child(2)::before {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 96 96'%3E%3Cg fill='none' stroke='black' stroke-width='5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M27 43h44v16a22 22 0 0 1-44 0z'/%3E%3Cpath d='M23 43h52'/%3E%3Cpath d='M35 76v8M61 76v8'/%3E%3Cpath d='M69 43V27a8 8 0 0 0-16 0v4'/%3E%3Cpath d='M53 31h9'/%3E%3C/g%3E%3C/svg%3E");
}

.luxury-project-card:nth-child(3)::before,
.luxury-service:nth-child(3)::before {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 96 96'%3E%3Cg fill='none' stroke='black' stroke-width='5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M17 45 48 19l31 26'/%3E%3Cpath d='M24 42v34h48V42'/%3E%3Cpath d='M38 76V56h20v20'/%3E%3Cpath d='M27 82h42'/%3E%3Cpath d='m65 55 10 10M75 55 65 65'/%3E%3C/g%3E%3C/svg%3E");
}

.services-dark .container {
    position: relative;
    z-index: 1;
}

.services-heading {
    display: grid;
    justify-items: center;
    text-align: center;
    gap: 0;
    margin: 0 0 56px;
}

.services-heading h2 {
    max-width: none;
    color: #222;
    font-size: clamp(3rem, 6vw, 5.8rem);
    line-height: .95;
    letter-spacing: -.06em;
    font-weight: 800;
}

.services-heading h2 em {
    font-style: normal;
    font-weight: 800;
}

.footer-social a svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.footer-social a[aria-label="Facebook"] svg,
.footer-social a[aria-label="TikTok"] svg {
    fill: currentColor;
    stroke: none;
}

@media (max-width: 1050px) {
    .luxury-project-grid,
    .luxury-services {
        grid-template-columns: 1fr;
    }

    .luxury-project-card,
    .luxury-service {
        min-height: 500px;
    }
}

@media (max-width: 640px) {
    .featured-projects,
    .services-dark {
        padding: 78px 0;
    }

    .luxury-project-card,
    .luxury-service {
        min-height: 420px;
        border-radius: 24px;
    }
}

/* Footer contact screenshot layout + compact work cards + refined FAQ */
.footer-main-grid {
    grid-template-columns: minmax(260px, .95fr) minmax(180px, .55fr) minmax(360px, 1.15fr);
    align-items: start;
}

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

.footer-contact .footer-contact-row {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    align-items: start;
    gap: 24px;
    color: rgba(255,255,255,.68);
    font-size: clamp(1.05rem, 1.6vw, 1.42rem);
    line-height: 1.8;
}

.footer-contact .footer-contact-icon {
    width: 32px;
    height: 32px;
    border: 0;
    background: transparent;
    color: rgba(255,255,255,.62);
}

.footer-contact .footer-contact-icon svg {
    width: 28px;
    height: 28px;
    stroke-width: 1.45;
}

.featured-projects {
    padding: 84px 0 92px;
}

.featured-projects .section-header {
    margin-bottom: 38px;
}

.featured-projects .section-header p::after {
    font-size: clamp(2.4rem, 4.5vw, 4.25rem);
}

.luxury-project-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.luxury-project-card {
    min-height: 390px;
    border-radius: 26px;
}

.luxury-project-info h3 {
    font-size: clamp(1.25rem, 1.8vw, 1.7rem);
}

.luxury-project-card::before {
    width: 64px;
    height: 64px;
}

.faq-section {
    background:
        linear-gradient(120deg, #0c0c0c 0 42%, #151515 42% 100%);
    padding: 118px 0;
    color: #fff;
}

.faq-inner {
    width: min(calc(100% - 48px), 1320px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: .82fr 1.18fr;
    gap: 64px;
    align-items: start;
}

.faq-heading {
    position: sticky;
    top: 120px;
    text-align: left;
    max-width: none;
}

.faq-eyebrow {
    color: rgba(255,255,255,.48);
    border: 1px solid rgba(255,255,255,.16);
    padding: 10px 14px;
    display: inline-flex;
    margin-bottom: 28px;
}

.faq-heading h2 {
    color: #fff;
    font-size: clamp(3rem, 5vw, 6rem);
    line-height: .9;
    letter-spacing: -.06em;
}

.faq-heading h2 em {
    color: #d9d1c2;
}

.faq-heading p {
    color: rgba(255,255,255,.58);
    font-size: 1.02rem;
    max-width: 420px;
}

.faq-list {
    display: grid;
    gap: 14px;
}

.faq-item {
    background: rgba(255,255,255,.055);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 0;
    overflow: hidden;
}

.faq-item.active {
    background: #f4efe7;
    color: #111;
    border-color: #f4efe7;
}

.faq-question {
    min-height: 76px;
    padding: 0 24px;
    color: inherit;
}

.faq-question > span:first-child {
    color: inherit;
    font-size: clamp(1.05rem, 1.6vw, 1.45rem);
    font-weight: 600;
}

.faq-icon {
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.16);
    color: inherit;
}

.faq-item.active .faq-icon {
    background: #111;
    color: #fff;
    border-color: #111;
}

.faq-answer {
    color: inherit;
}

.faq-answer p,
.faq-item.active .faq-answer p {
    color: inherit;
    opacity: .72;
    padding: 0 24px 24px;
    font-size: .98rem;
    line-height: 1.75;
}

@media (max-width: 1050px) {
    .footer-main-grid,
    .faq-inner {
        grid-template-columns: 1fr;
    }

    .faq-heading {
        position: static;
    }

    .luxury-project-grid {
        grid-template-columns: repeat(3, minmax(260px, 1fr));
        overflow-x: auto;
        padding-bottom: 8px;
        scroll-snap-type: x mandatory;
    }

    .luxury-project-card {
        scroll-snap-align: start;
    }
}

@media (max-width: 640px) {
    .footer-contact .footer-contact-row {
        grid-template-columns: 32px minmax(0, 1fr);
        gap: 16px;
        font-size: 1rem;
    }

    .faq-section {
        padding: 78px 0;
    }

    .faq-inner {
        width: min(calc(100% - 32px), 1320px);
    }
}

/* Client testimonials */
.client-reviews-section {
    background: #f7f7f4;
    color: #111;
    padding: 110px 0 120px;
}

.client-reviews-heading {
    display: grid;
    justify-items: center;
    text-align: center;
    margin-bottom: 54px;
}

.client-reviews-heading span {
    color: #7b7f63;
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .42em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.client-reviews-heading h2 {
    max-width: 900px;
    font-size: clamp(2.8rem, 5.4vw, 5.6rem);
    line-height: .95;
    letter-spacing: -.06em;
    font-weight: 800;
}

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

.client-review-card {
    min-height: 360px;
    padding: 24px;
    background: #111;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid rgba(255,255,255,.1);
}

.client-review-top {
    display: grid;
    grid-template-columns: 62px 1fr;
    align-items: center;
    gap: 14px;
}

.client-review-top img {
    width: 62px;
    height: 62px;
    object-fit: cover;
    border-radius: 50%;
    filter: grayscale(.15);
}

.client-review-top strong {
    display: block;
    font-size: 1rem;
    line-height: 1.2;
}

.client-review-top span {
    display: block;
    margin-top: 4px;
    color: rgba(255,255,255,.48);
    font-size: .78rem;
}

.client-review-stars {
    margin: 26px 0 18px;
    color: #f2eadc;
    letter-spacing: .12em;
    font-size: .95rem;
}

.client-review-card p {
    color: rgba(255,255,255,.72);
    font-size: .94rem;
    line-height: 1.75;
}

.client-review-card:nth-child(even) {
    background: #f2eadc;
    color: #111;
    border-color: #e4d9c8;
}

.client-review-card:nth-child(even) .client-review-top span,
.client-review-card:nth-child(even) p {
    color: rgba(17,17,17,.62);
}

.client-review-card:nth-child(even) .client-review-stars {
    color: #111;
}

@media (max-width: 1180px) {
    .client-reviews-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .client-reviews-section {
        padding: 78px 0;
    }

    .client-reviews-grid {
        grid-template-columns: 1fr;
    }

    .client-review-card {
        min-height: auto;
    }
}

/* Admin sidebar mobile drawer and desktop scrolling */
.admin-sidebar {
    overflow-y: auto;
    overscroll-behavior: contain;
    scrollbar-width: thin;
    scrollbar-color: rgba(255,255,255,.24) transparent;
}

.admin-sidebar::-webkit-scrollbar {
    width: 7px;
}

.admin-sidebar::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,.22);
}

.admin-menu-button,
.admin-sidebar-overlay {
    display: none;
}

@media (max-width: 1000px) {
    .admin-shell {
        display: block;
    }

    .admin-sidebar {
        position: fixed;
        inset: 0 auto 0 0;
        width: min(86vw, 320px);
        height: 100vh;
        z-index: 1200;
        transform: translateX(-104%);
        transition: transform .32s ease;
        box-shadow: 24px 0 70px rgba(0,0,0,.28);
    }

    body.admin-sidebar-open .admin-sidebar {
        transform: translateX(0);
    }

    .admin-sidebar-overlay {
        position: fixed;
        inset: 0;
        z-index: 1190;
        border: 0;
        background: rgba(0,0,0,.48);
        backdrop-filter: blur(4px);
        opacity: 0;
        pointer-events: none;
        transition: opacity .25s ease;
    }

    body.admin-sidebar-open .admin-sidebar-overlay {
        display: block;
        opacity: 1;
        pointer-events: auto;
    }

    .admin-menu-button {
        width: 48px;
        height: 48px;
        display: inline-grid;
        place-items: center;
        gap: 5px;
        border: 1px solid #d7d0c4;
        background: #fbfaf7;
        cursor: pointer;
        flex: 0 0 48px;
    }

    .admin-menu-button span {
        display: block;
        width: 20px;
        height: 2px;
        background: #181713;
    }

    .admin-topbar {
        grid-template-columns: auto 1fr auto;
        display: grid;
        position: sticky;
        top: 0;
        align-items: center;
    }

    .admin-nav {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 700px) {
    .admin-topbar {
        grid-template-columns: auto 1fr;
        gap: 14px;
    }

    .admin-topbar .admin-pill {
        grid-column: 1 / -1;
        width: 100%;
    }
}

/* Admin SEO meter and favicon preview */
.admin-seo-panel {
    grid-column: 1 / -1;
}

.admin-seo-meter {
    height: 12px;
    background: #e5ded2;
    border: 1px solid #d7d0c4;
    margin-bottom: 12px;
    overflow: hidden;
}

.admin-seo-meter span {
    display: block;
    height: 100%;
    background: #181713;
    transition: width .3s ease;
}

.admin-seo-status {
    margin-bottom: 24px;
    color: #7a7163;
    font-size: .82rem;
}

.admin-preview.favicon {
    width: 64px;
    height: 64px;
    padding: 8px;
    object-fit: contain;
}

/* Larger brand logos */
.logo img,
.mobile-sidebar-logo img {
    max-height: 62px;
}

.footer-logo img {
    max-height: 82px;
}

.logo {
    display: inline-flex;
    align-items: center;
}

.admin-login-brand img {
    display: block;
    max-width: min(280px, 80vw);
    max-height: 96px;
    width: auto;
    height: auto;
    margin: 0 auto;
    object-fit: contain;
}

@media (max-width: 700px) {
    .logo img,
    .mobile-sidebar-logo img {
        max-height: 48px;
    }

    .footer-logo img {
        max-height: 68px;
    }
}

/* Dev site navigation and material pages */
.desktop-nav .nav-item {
    position: relative;
    display: flex;
    align-items: center;
}

.desktop-nav .nav-item > a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.desktop-nav .nav-item > a::before {
    content: "";
    width: 5px;
    height: 5px;
    border-right: 1px solid currentColor;
    border-bottom: 1px solid currentColor;
    transform: rotate(45deg) translateY(-2px);
    order: 2;
    opacity: .75;
}

.desktop-nav .nav-item.active > a::after,
.desktop-nav .nav-item:hover > a::after {
    width: 100%;
}

.nav-dropdown {
    position: absolute;
    top: calc(100% + 22px);
    left: 50%;
    min-width: 290px;
    padding: 14px;
    background: rgba(10, 10, 10, .96);
    border: 1px solid rgba(255,255,255,.14);
    box-shadow: 0 28px 70px rgba(0,0,0,.22);
    transform: translateX(-50%) translateY(12px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
}

.site-header.scrolled .nav-dropdown {
    background: rgba(255,255,255,.98);
    border-color: rgba(0,0,0,.08);
}

.nav-dropdown a {
    display: flex;
    padding: 13px 14px;
    color: rgba(255,255,255,.78);
    font-size: .82rem;
    text-transform: none;
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.site-header.scrolled .nav-dropdown a {
    color: rgba(0,0,0,.72);
    border-bottom-color: rgba(0,0,0,.07);
}

.nav-dropdown a:last-child {
    border-bottom: 0;
}

.nav-dropdown a:hover {
    color: #fff;
    background: rgba(255,255,255,.08);
}

.site-header.scrolled .nav-dropdown a:hover {
    color: #000;
    background: rgba(0,0,0,.05);
}

.has-dropdown:hover .nav-dropdown,
.has-dropdown:focus-within .nav-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.mobile-nav-group {
    border-bottom: 1px solid rgba(255,255,255,.12);
}

.mobile-sidebar-nav .mobile-nav-group > a {
    border-bottom: 0;
}

.mobile-subnav {
    display: grid;
    gap: 0;
    padding: 0 30px 18px;
}

.mobile-subnav a {
    min-height: auto;
    padding: 9px 0;
    border: 0;
    color: rgba(255,255,255,.56);
    font-size: .88rem;
}

.application-hero {
    position: relative;
    min-height: 82vh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background: #050505;
    color: #fff;
}

.application-hero img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.application-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(0,0,0,.86), rgba(0,0,0,.45), rgba(0,0,0,.18)),
        linear-gradient(0deg, rgba(0,0,0,.82), rgba(0,0,0,0) 60%);
}

.application-hero-content {
    position: relative;
    z-index: 2;
    padding: 170px 0 88px;
    max-width: 980px;
}

.application-hero-content span,
.application-eyebrow {
    display: inline-flex;
    color: rgba(255,255,255,.72);
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .28em;
    text-transform: uppercase;
}

.application-hero-content h1 {
    margin: 22px 0 20px;
    max-width: 920px;
    font-size: clamp(3rem, 8vw, 8.2rem);
    line-height: .88;
    letter-spacing: 0;
}

.application-hero-content p {
    max-width: 640px;
    color: rgba(255,255,255,.78);
    font-size: clamp(1rem, 1.6vw, 1.25rem);
    line-height: 1.7;
}

.application-intro {
    padding: 110px 0;
    background: #f4f1eb;
    color: #101010;
}

.application-intro-grid {
    display: grid;
    grid-template-columns: minmax(0, .8fr) minmax(0, 1fr);
    gap: 80px;
    align-items: start;
}

.application-intro .application-eyebrow,
.application-qualities .application-eyebrow,
.application-gallery .application-eyebrow {
    color: #77745c;
}

.application-intro h2 {
    margin-top: 16px;
    font-size: clamp(2.5rem, 5vw, 5.8rem);
    line-height: .92;
}

.application-intro p {
    color: rgba(0,0,0,.68);
    font-size: 1.15rem;
    line-height: 1.9;
}

.application-sections {
    padding: 120px 0;
    background: #fff;
}

.application-block {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
    gap: clamp(34px, 6vw, 90px);
    align-items: center;
    padding: 70px 0;
    border-bottom: 1px solid rgba(0,0,0,.1);
}

.application-block:first-child {
    padding-top: 0;
}

.application-block.reverse .application-block-image {
    order: 2;
}

.application-block-image {
    position: relative;
    aspect-ratio: 1.08 / .78;
    overflow: hidden;
    background: #111;
}

.application-block-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .7s ease;
}

.application-block:hover .application-block-image img {
    transform: scale(1.045);
}

.application-block-image span {
    position: absolute;
    left: 22px;
    bottom: 18px;
    color: #fff;
    font-size: 4.8rem;
    font-weight: 800;
    line-height: 1;
    opacity: .82;
}

.application-block-copy > span {
    color: #77745c;
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .22em;
    text-transform: uppercase;
}

.application-block-copy h2 {
    margin: 14px 0 22px;
    color: #121212;
    font-size: clamp(2.2rem, 4.6vw, 5.2rem);
    line-height: .94;
}

.application-block-copy p {
    color: rgba(0,0,0,.68);
    font-size: 1.04rem;
    line-height: 1.9;
}

.application-qualities,
.application-gallery {
    padding: 105px 0;
    background: #111;
    color: #fff;
}

.quality-grid,
.application-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin-top: 34px;
}

.quality-card {
    display: grid;
    place-items: center;
    gap: 18px;
    min-height: 190px;
    padding: 28px;
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(255,255,255,.04);
    text-align: center;
}

.quality-card img {
    width: 52px;
    height: 52px;
    object-fit: contain;
    filter: invert(1);
}

.quality-card span {
    color: rgba(255,255,255,.78);
    font-weight: 700;
}

.application-gallery-grid img {
    width: 100%;
    aspect-ratio: 1 / 1.12;
    object-fit: cover;
}

@media (max-width: 1100px) {
    .desktop-nav {
        gap: 22px;
    }

    .desktop-nav a {
        font-size: .78rem;
    }

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

@media (max-width: 900px) {
    .application-hero {
        min-height: 76vh;
    }

    .application-intro,
    .application-sections,
    .application-qualities,
    .application-gallery {
        padding: 76px 0;
    }

    .application-intro-grid,
    .application-block,
    .application-block.reverse {
        grid-template-columns: 1fr;
    }

    .application-block.reverse .application-block-image {
        order: 0;
    }

    .application-block {
        padding: 46px 0;
    }
}

@media (max-width: 620px) {
    .application-hero-content {
        padding-bottom: 58px;
    }

    .application-hero-content h1 {
        font-size: clamp(2.75rem, 16vw, 4.5rem);
    }

    .quality-grid,
    .application-gallery-grid {
        grid-template-columns: 1fr;
    }

    .application-block-image {
        aspect-ratio: 1 / .9;
    }
}

/* Responsive admin account header */
.admin-topbar {
    grid-template-columns: auto minmax(0, 1fr) auto;
}

.admin-topbar-title {
    min-width: 0;
}

.admin-account {
    position: relative;
    justify-self: end;
}

.admin-account-button {
    min-height: 58px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 7px 14px 7px 7px;
    border: 1px solid #d7d0c4;
    border-radius: 999px;
    background: #fbfaf7;
    color: #181713;
    cursor: pointer;
    box-shadow: 0 12px 34px rgba(42,34,20,.08);
}

.admin-account-avatar,
.admin-profile-preview img,
.admin-profile-preview > span {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    overflow: hidden;
    display: grid;
    place-items: center;
    background: #181713;
    color: #fff;
    font-weight: 700;
    flex: 0 0 44px;
}

.admin-account-avatar img,
.admin-profile-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.admin-account-meta {
    display: grid;
    gap: 2px;
    text-align: left;
    max-width: 190px;
}

.admin-account-meta strong,
.admin-account-meta small {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.admin-account-meta strong {
    font-size: .9rem;
}

.admin-account-meta small {
    color: #7a7163;
    font-size: .72rem;
}

.admin-account-menu {
    position: absolute;
    right: 0;
    top: calc(100% + 10px);
    width: 230px;
    display: none;
    padding: 8px;
    background: #111;
    border: 1px solid rgba(255,255,255,.12);
    box-shadow: 0 24px 70px rgba(0,0,0,.22);
    z-index: 100;
}

.admin-account-menu.active {
    display: grid;
}

.admin-account-menu a {
    color: rgba(255,255,255,.72);
    padding: 13px 14px;
    transition: .2s ease;
}

.admin-account-menu a:hover {
    color: #fff;
    background: rgba(255,255,255,.08);
}

.admin-profile-form {
    max-width: 760px;
}

.admin-profile-preview {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px;
    background: #f1ece3;
    border: 1px solid #ddd4c5;
}

.admin-profile-preview img,
.admin-profile-preview > span {
    width: 76px;
    height: 76px;
    flex-basis: 76px;
    font-size: 1.8rem;
}

.admin-profile-preview strong,
.admin-profile-preview small {
    display: block;
}

.admin-profile-preview small {
    margin-top: 4px;
    color: #7a7163;
}

@media (max-width: 760px) {
    .admin-topbar {
        grid-template-columns: auto 1fr auto;
        gap: 12px;
        padding: 18px;
    }

    .admin-topbar-title h1 {
        font-size: clamp(1.5rem, 8vw, 2.4rem);
    }

    .admin-account-button {
        min-height: 50px;
        padding: 4px;
    }

    .admin-account-meta {
        display: none;
    }

    .admin-account-avatar {
        width: 42px;
        height: 42px;
        flex-basis: 42px;
    }

    .admin-account-menu {
        position: fixed;
        left: 16px;
        right: 16px;
        top: 86px;
        width: auto;
    }
}

/* Header dropdown final override */
.site-header {
    overflow: visible;
}

.site-header .header-inner {
    gap: clamp(18px, 2.2vw, 42px);
}

.site-header .desktop-nav {
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(22px, 3vw, 46px);
    flex-wrap: nowrap;
}

.site-header .desktop-nav > a,
.site-header .desktop-nav > .nav-item > a {
    white-space: nowrap;
    font-size: clamp(.76rem, .82vw, .9rem);
    letter-spacing: .01em;
}

.site-header .desktop-nav > .nav-item {
    position: relative;
    flex: 0 0 auto;
}

.site-header .desktop-nav > .nav-item > .nav-dropdown {
    position: absolute !important;
    top: calc(100% + 20px) !important;
    left: 50% !important;
    z-index: 1500;
    width: min(340px, 86vw);
    min-width: 300px;
    display: grid !important;
    gap: 0;
    padding: 12px;
    background: rgba(10,10,10,.97);
    border: 1px solid rgba(255,255,255,.14);
    box-shadow: 0 30px 80px rgba(0,0,0,.24);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate(-50%, 12px);
    transition: opacity .24s ease, transform .24s ease, visibility .24s ease;
}

.site-header.scrolled .desktop-nav > .nav-item > .nav-dropdown {
    background: rgba(255,255,255,.98);
    border-color: rgba(0,0,0,.09);
}

.site-header .desktop-nav > .nav-item:hover > .nav-dropdown,
.site-header .desktop-nav > .nav-item:focus-within > .nav-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(-50%, 0);
}

.site-header .desktop-nav > .nav-item > .nav-dropdown a {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 44px;
    padding: 12px 14px;
    color: rgba(255,255,255,.76);
    border-bottom: 1px solid rgba(255,255,255,.08);
    font-size: .84rem;
    line-height: 1.25;
    white-space: normal;
}

.site-header.scrolled .desktop-nav > .nav-item > .nav-dropdown a {
    color: rgba(0,0,0,.7);
    border-bottom-color: rgba(0,0,0,.07);
}

.site-header .desktop-nav > .nav-item > .nav-dropdown a:last-child {
    border-bottom: 0;
}

.site-header .desktop-nav > .nav-item > .nav-dropdown a::after {
    display: none;
}

.site-header .desktop-nav > .nav-item > .nav-dropdown a:hover {
    color: #fff;
    background: rgba(255,255,255,.08);
}

.site-header.scrolled .desktop-nav > .nav-item > .nav-dropdown a:hover {
    color: #000;
    background: rgba(0,0,0,.05);
}

.site-header .logo {
    flex: 0 0 auto;
}

.site-header .logo img {
    width: auto;
    max-width: 145px;
    object-fit: contain;
}

.site-header .header-cta {
    flex: 0 0 auto;
    white-space: nowrap;
}

.client-review-stars {
    color: #d69b3a;
    letter-spacing: .16em;
    font-family: Arial, Helvetica, sans-serif;
}

@media (max-width: 1180px) {
    .site-header .desktop-nav {
        gap: 20px;
    }

    .site-header .header-cta {
        padding-inline: 16px;
    }
}

/* What We Do desktop visibility fix */
.services-dark {
    overflow: visible;
}

.services-dark .luxury-services {
    position: relative;
    z-index: 2;
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(18px, 2.4vw, 34px);
    align-items: stretch;
    width: 100%;
    margin-top: 44px;
    border-top: 0;
}

.services-dark .luxury-service {
    position: relative;
    display: flex !important;
    min-height: clamp(360px, 35vw, 520px);
    padding: 0 !important;
    overflow: hidden;
    border: 0;
    border-radius: 34px;
    background: #111;
    color: #fff;
    transform: none;
    opacity: 1;
    visibility: visible;
}

.services-dark .luxury-service:nth-child(n + 4) {
    display: none !important;
}

.services-dark .service-preview {
    position: absolute !important;
    inset: 0 !important;
    display: block;
    width: 100% !important;
    height: 100% !important;
    opacity: 1 !important;
    transform: none !important;
    pointer-events: none;
    z-index: 0;
}

.services-dark .service-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.services-dark .luxury-service::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(180deg, rgba(0,0,0,.03) 0%, rgba(28,31,15,.22) 42%, rgba(70,75,43,.82) 100%);
}

.services-dark .luxury-service h3 {
    position: absolute;
    left: 28px;
    right: 28px;
    bottom: 30px;
    z-index: 3;
    margin: 0;
    color: #fff;
    font-size: clamp(1.45rem, 2.3vw, 2.15rem);
    line-height: 1.05;
    font-weight: 800;
    text-align: center;
    letter-spacing: 0;
    text-shadow: 0 10px 28px rgba(0,0,0,.26);
}

.services-dark .service-count,
.services-dark .service-arrow {
    display: none;
}

@media (max-width: 1050px) {
    .services-dark .luxury-services {
        grid-template-columns: 1fr;
    }

    .services-dark .luxury-service {
        min-height: 430px;
        border-radius: 24px;
    }
}

/* Translated architectural support section from the original site */
.technical-support-section {
    position: relative;
    overflow: hidden;
    padding: clamp(88px, 9vw, 132px) 0;
    background: #111;
    color: #fff;
}

.technical-support-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(12,12,12,.88), rgba(12,12,12,.9)),
        url("https://res.cloudinary.com/dv1sdlnuc/image/upload/sign-and-lava/dev/uploads-2024/06/Untitled-1.jpg") center/cover no-repeat;
    opacity: .78;
    transform: scale(1.04);
}

.technical-support-inner {
    position: relative;
    z-index: 1;
}

.technical-support-heading {
    display: grid;
    justify-items: center;
    text-align: center;
    max-width: 1120px;
    margin: 0 auto 58px;
}

.technical-support-heading span {
    color: rgba(255,255,255,.68);
    font-size: .85rem;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.technical-support-heading h2 {
    margin: 14px 0 20px;
    color: #fff;
    font-size: clamp(2.25rem, 4.5vw, 4.7rem);
    line-height: .95;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.technical-support-heading i {
    display: block;
    width: 78px;
    height: 1px;
    margin: 0 0 48px;
    border-bottom: 2px dotted rgba(255,255,255,.76);
}

.technical-support-heading p {
    max-width: 1040px;
    color: rgba(255,255,255,.86);
    font-size: clamp(1rem, 1.35vw, 1.18rem);
    line-height: 1.95;
    font-weight: 600;
}

.technical-support-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
    max-width: 1420px;
    margin: 0 auto;
}

.technical-support-card {
    display: grid;
    place-items: center;
    align-content: center;
    gap: 30px;
    min-height: 330px;
    padding: 34px;
    background: #fff;
    color: #050505;
    text-align: center;
}

.technical-support-card img {
    width: 104px;
    height: 104px;
    object-fit: contain;
}

.technical-support-card h3 {
    max-width: 230px;
    margin: 0;
    color: #000;
    font-size: clamp(1.35rem, 1.6vw, 1.9rem);
    line-height: 1.05;
    font-weight: 500;
    letter-spacing: .02em;
    text-transform: uppercase;
}

@media (max-width: 1100px) {
    .technical-support-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .technical-support-section {
        padding: 76px 0;
    }

    .technical-support-heading {
        margin-bottom: 38px;
    }

    .technical-support-heading h2 {
        letter-spacing: .02em;
    }

    .technical-support-heading i {
        margin-bottom: 28px;
    }

    .technical-support-grid {
        grid-template-columns: 1fr;
    }

    .technical-support-card {
        min-height: 230px;
        gap: 20px;
    }
}

/* Translated signage and decoration support section */
.signage-support-section {
    position: relative;
    overflow: hidden;
    padding: clamp(86px, 9vw, 128px) 0;
    background: #f7f7f4;
    color: #0b0b0b;
}

.signage-support-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(255,255,255,.86), rgba(255,255,255,.9)),
        url("https://res.cloudinary.com/dv1sdlnuc/image/upload/sign-and-lava/dev/uploads-2024/06/Untitled-1.jpg") center/cover no-repeat;
    filter: invert(1) grayscale(1);
    opacity: .22;
}

.signage-support-inner {
    position: relative;
    z-index: 1;
}

.signage-support-heading {
    display: grid;
    justify-items: center;
    text-align: center;
    max-width: 1160px;
    margin: 0 auto 58px;
}

.signage-support-heading span {
    color: #7b7f63;
    font-size: .85rem;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.signage-support-heading h2 {
    margin: 14px 0 20px;
    color: #050505;
    font-size: clamp(2.25rem, 4.3vw, 4.6rem);
    line-height: .95;
    letter-spacing: .02em;
    text-transform: uppercase;
}

.signage-support-heading i {
    display: block;
    width: 78px;
    height: 1px;
    margin: 0 0 48px;
    border-bottom: 2px dotted rgba(0,0,0,.72);
}

.signage-support-heading p {
    max-width: 1120px;
    color: rgba(0,0,0,.58);
    font-size: clamp(1rem, 1.28vw, 1.15rem);
    line-height: 1.9;
}

.signage-support-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
    max-width: 1420px;
    margin: 0 auto;
}

.signage-support-card {
    display: grid;
    place-items: center;
    align-content: center;
    gap: 30px;
    min-height: 336px;
    padding: 34px;
    background: #151515;
    color: #fff;
    text-align: center;
}

.signage-support-card img {
    width: 116px;
    height: 116px;
    object-fit: contain;
}

.signage-support-card h3 {
    max-width: 250px;
    margin: 0;
    color: #fff;
    font-size: clamp(1.28rem, 1.55vw, 1.85rem);
    line-height: 1.02;
    font-weight: 500;
    letter-spacing: .01em;
    text-transform: uppercase;
}

@media (max-width: 1100px) {
    .signage-support-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .signage-support-section {
        padding: 76px 0;
    }

    .signage-support-heading {
        margin-bottom: 38px;
    }

    .signage-support-heading i {
        margin-bottom: 28px;
    }

    .signage-support-grid {
        grid-template-columns: 1fr;
    }

    .signage-support-card {
        min-height: 230px;
        gap: 20px;
    }
}

/* Header and footer typography/color polish */
.site-header .desktop-nav > a,
.site-header .desktop-nav > .nav-item > a {
    font-size: clamp(.95rem, 1.02vw, 1.08rem);
    font-weight: 500;
}

.site-header .desktop-nav > .nav-item > .nav-dropdown a {
    font-size: .95rem;
}

.footer-email-form input {
    background: #303030;
    color: #fff;
}

.footer-email-form input::placeholder {
    color: rgba(255,255,255,.68);
}

.footer-email-form button {
    background: #111 !important;
    color: #fff;
    border-left: 1px solid rgba(255,255,255,.12);
}

.footer-email-form button:hover {
    background: #f3f0ea !important;
    color: #111;
}

.footer-column h3,
.footer-contact h3 {
    font-size: clamp(1.55rem, 1.85vw, 2rem);
    line-height: 1.15;
    font-weight: 400;
}

.footer-column > a,
.footer-contact .footer-contact-row {
    font-size: clamp(1rem, 1.15vw, 1.18rem);
    line-height: 1.75;
}

.footer-contact-list {
    gap: 24px;
}

.footer-contact .footer-contact-row {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 20px;
}

.footer-contact .footer-contact-icon,
.footer-contact .footer-contact-icon svg {
    width: 28px;
    height: 28px;
}

@media (max-width: 700px) {
    .site-header .desktop-nav > a,
    .site-header .desktop-nav > .nav-item > a {
        font-size: .95rem;
    }
}

/* Demo-style page headers and contact page */
.page-hero {
    position: relative;
    min-height: clamp(390px, 34vw, 540px);
    display: flex;
    align-items: center;
    padding: calc(var(--header-height, 96px) + 70px) 0 86px;
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(255,255,255,.96) 0%, rgba(255,255,255,.9) 33%, rgba(255,255,255,.54) 62%, rgba(255,255,255,.18) 100%),
        url("https://res.cloudinary.com/dv1sdlnuc/image/upload/sign-and-lava/dev/uploads-2024/02/07-app.jpg") center right/cover no-repeat;
    color: #1c1c1c;
}

.page-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255,255,255,.72), rgba(255,255,255,0) 58%);
    pointer-events: none;
}

.page-hero .container {
    position: relative;
    z-index: 1;
}

.page-hero h1 {
    max-width: 760px;
    margin: 0 0 22px;
    color: #1f1f1f;
    font-size: clamp(3.8rem, 6vw, 6.1rem);
    line-height: .96;
    font-weight: 800;
    letter-spacing: -.045em;
}

.page-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 13px;
    color: rgba(0,0,0,.52);
    font-size: clamp(1rem, 1.35vw, 1.35rem);
    font-weight: 750;
}

.page-breadcrumb a {
    color: rgba(0,0,0,.48);
}

.page-breadcrumb span {
    color: #7b7f63;
    font-size: 1.45em;
    line-height: 1;
}

.page-breadcrumb strong {
    color: rgba(0,0,0,.58);
    font-weight: 750;
}

.contact-demo-section {
    padding: clamp(82px, 8vw, 132px) 0;
    background: #fff;
}

.contact-demo-grid {
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(0, 1.45fr);
    gap: clamp(48px, 7vw, 120px);
    align-items: center;
}

.contact-demo-eyebrow {
    display: inline-flex;
    margin-bottom: 34px;
    color: #7b7f63;
    font-size: .85rem;
    font-weight: 800;
    letter-spacing: .42em;
}

.contact-demo-copy h2 {
    margin: 0 0 32px;
    color: #181818;
    font-size: clamp(3rem, 5vw, 5.3rem);
    line-height: .96;
    letter-spacing: -.05em;
}

.contact-demo-copy > p {
    max-width: 560px;
    margin: 0 0 70px;
    color: rgba(0,0,0,.68);
    font-size: clamp(1.15rem, 1.55vw, 1.45rem);
    line-height: 1.7;
}

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

.contact-info-card {
    display: grid;
    grid-template-columns: 88px minmax(0, 1fr);
    gap: 20px;
    align-items: center;
    color: #171717;
}

.contact-info-icon {
    width: 74px;
    height: 74px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #7b7f63;
    color: #fff;
}

.contact-info-icon svg {
    width: 30px;
    height: 30px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.contact-info-card h3 {
    margin: 0 0 8px;
    color: #111;
    font-size: clamp(1.35rem, 1.8vw, 1.85rem);
    line-height: 1.05;
    font-weight: 800;
}

.contact-info-card p {
    margin: 0;
    color: rgba(0,0,0,.68);
    font-size: clamp(1rem, 1.25vw, 1.26rem);
    line-height: 1.45;
    overflow-wrap: anywhere;
}

.contact-demo-form {
    display: grid;
    gap: 28px;
    padding: clamp(34px, 4vw, 60px);
    border-radius: 42px;
    background: #f1f1ee;
}

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

.contact-demo-form label {
    display: grid;
    gap: 14px;
    color: #101010;
    font-size: clamp(1.1rem, 1.55vw, 1.55rem);
    line-height: 1.1;
    font-weight: 800;
}

.contact-demo-form input,
.contact-demo-form textarea {
    width: 100%;
    border: 0;
    outline: 0;
    border-radius: 7px;
    background: #fff;
    color: #111;
    padding: 20px 22px;
    font: inherit;
    font-size: 1.08rem;
    font-weight: 500;
}

.contact-demo-form textarea {
    min-height: 148px;
    resize: vertical;
}

.contact-demo-form input::placeholder,
.contact-demo-form textarea::placeholder {
    color: #657085;
}

.contact-demo-form button {
    width: fit-content;
    min-width: 230px;
    min-height: 64px;
    padding: 0 34px;
    border: 0;
    border-radius: 999px;
    background: #7b7f63;
    color: #fff;
    font-size: 1.15rem;
    font-weight: 800;
    cursor: pointer;
}

.contact-demo-form button:hover {
    background: #111;
}

@media (max-width: 980px) {
    .contact-demo-grid {
        grid-template-columns: 1fr;
    }

    .contact-demo-copy > p {
        margin-bottom: 48px;
    }
}

@media (max-width: 680px) {
    .page-hero {
        min-height: 350px;
        padding-top: calc(var(--header-height, 82px) + 52px);
        background-position: center;
    }

    .page-hero h1 {
        font-size: clamp(3rem, 14vw, 4.5rem);
    }

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

    .contact-info-card {
        grid-template-columns: 72px minmax(0, 1fr);
    }

    .contact-info-icon {
        width: 62px;
        height: 62px;
    }

    .contact-demo-form {
        border-radius: 26px;
    }
}

/* Clearer page hero and contact info list */
.page-hero {
    min-height: clamp(360px, 31vw, 480px);
    padding: calc(var(--header-height, 96px) + 52px) 0 70px;
    background:
        linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(255,255,255,.98) 28%, rgba(255,255,255,.86) 48%, rgba(255,255,255,.46) 72%, rgba(255,255,255,.16) 100%),
        url("https://res.cloudinary.com/dv1sdlnuc/image/upload/sign-and-lava/dev/uploads-2024/02/07-app.jpg") center right/cover no-repeat;
}

.page-hero::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: min(58vw, 980px);
    background: linear-gradient(90deg, #fff 0%, rgba(255,255,255,.96) 58%, rgba(255,255,255,0) 100%);
    z-index: 0;
}

.page-hero::after {
    background: rgba(255,255,255,.18);
}

.page-hero h1 {
    max-width: 700px;
    margin-bottom: 26px;
    color: #111;
    font-size: clamp(4rem, 5.6vw, 5.8rem);
    text-shadow: 0 1px 0 rgba(255,255,255,.4);
}

.page-breadcrumb {
    color: #5f6670;
    font-size: clamp(1.05rem, 1.2vw, 1.22rem);
}

.page-breadcrumb a,
.page-breadcrumb strong {
    color: #5f6670;
}

.page-breadcrumb span {
    color: #7b7f63;
}

.contact-info-grid {
    grid-template-columns: 1fr;
    gap: 26px;
    max-width: 560px;
}

.contact-info-card {
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 20px;
}

.contact-info-icon {
    width: 46px;
    height: 46px;
}

.contact-info-icon svg {
    width: 21px;
    height: 21px;
}

.contact-info-card h3 {
    margin-bottom: 5px;
    font-size: clamp(1.18rem, 1.35vw, 1.45rem);
}

.contact-info-card p {
    font-size: clamp(.98rem, 1.05vw, 1.12rem);
    line-height: 1.5;
}

@media (max-width: 680px) {
    .page-hero {
        min-height: 330px;
        padding-top: calc(var(--header-height, 82px) + 46px);
        background:
            linear-gradient(90deg, rgba(255,255,255,1), rgba(255,255,255,.9)),
            url("https://res.cloudinary.com/dv1sdlnuc/image/upload/sign-and-lava/dev/uploads-2024/02/07-app.jpg") center/cover no-repeat;
    }

    .page-hero::before {
        width: 100%;
    }

    .page-hero h1 {
        font-size: clamp(3rem, 13vw, 4.1rem);
    }
}

/* Premium shared page-header redesign */
.page-hero {
    min-height: clamp(390px, 32vw, 520px);
    align-items: flex-end;
    padding: calc(var(--header-height, 96px) + 62px) 0 72px;
    isolation: isolate;
    background:
        linear-gradient(90deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.94) 35%, rgba(255,255,255,.68) 57%, rgba(255,255,255,.16) 100%),
        url("https://res.cloudinary.com/dv1sdlnuc/image/upload/sign-and-lava/dev/uploads-2024/02/07-app.jpg") center right/cover no-repeat;
}

.page-hero::before {
    width: min(64vw, 1060px);
    background:
        linear-gradient(90deg, #fff 0%, rgba(255,255,255,.98) 58%, rgba(255,255,255,0) 100%);
}

.page-hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 1px;
    background: rgba(0,0,0,.08);
    z-index: 2;
}

.page-hero .container {
    max-width: 1440px;
}

.page-hero .container::before {
    content: "";
    display: block;
    width: 72px;
    height: 4px;
    margin-bottom: 28px;
    background: #7b7f63;
}

.page-hero h1 {
    max-width: 780px;
    margin: 0 0 24px;
    font-size: clamp(4.2rem, 6.2vw, 7rem);
    line-height: .9;
    font-weight: 750;
    letter-spacing: -.055em;
}

.page-breadcrumb {
    width: fit-content;
    padding: 12px 18px;
    border: 1px solid rgba(0,0,0,.08);
    border-radius: 999px;
    background: rgba(255,255,255,.72);
    box-shadow: 0 12px 38px rgba(0,0,0,.06);
    backdrop-filter: blur(10px);
    font-size: clamp(.95rem, 1vw, 1.08rem);
}

.page-breadcrumb a,
.page-breadcrumb strong {
    color: rgba(0,0,0,.66);
}

.page-breadcrumb span {
    color: #7b7f63;
}

@media (max-width: 760px) {
    .page-hero {
        min-height: 330px;
        padding: calc(var(--header-height, 82px) + 46px) 0 56px;
        background:
            linear-gradient(90deg, rgba(255,255,255,.98), rgba(255,255,255,.86)),
            url("https://res.cloudinary.com/dv1sdlnuc/image/upload/sign-and-lava/dev/uploads-2024/02/07-app.jpg") center/cover no-repeat;
    }

    .page-hero .container::before {
        margin-bottom: 20px;
    }

    .page-hero h1 {
        font-size: clamp(3.2rem, 14vw, 4.8rem);
    }

    .page-breadcrumb {
        border-radius: 18px;
    }
}

/* Inner pages need a readable header immediately, before scrolling */
body.inner-page .site-header {
    background: rgba(255,255,255,.98);
    color: #111;
    border-bottom: 1px solid rgba(0,0,0,.08);
    box-shadow: 0 8px 28px rgba(0,0,0,.04);
    backdrop-filter: blur(14px);
}

body.inner-page .site-header .desktop-nav a,
body.inner-page .site-header .desktop-nav > .nav-item > a {
    color: #111;
}

body.inner-page .site-header .desktop-nav a::after {
    background: #111;
}

body.inner-page .site-header .header-cta {
    background: #111;
    color: #fff;
}

body.inner-page .site-header .menu-toggle span {
    background: #111;
}

body.inner-page .page-hero {
    padding-top: calc(var(--header-height, 96px) + 78px);
}

@media (max-width: 700px) {
    body.inner-page .page-hero {
        padding-top: calc(var(--header-height, 82px) + 62px);
    }
}

/* Keep desktop dropdowns open while moving the cursor into them */
.site-header .desktop-nav > .nav-item.has-dropdown {
    padding: 18px 0;
    margin: -18px 0;
}

.site-header .desktop-nav > .nav-item.has-dropdown::after {
    content: "";
    position: absolute;
    left: -24px;
    right: -24px;
    top: 100%;
    height: 18px;
}

.site-header .desktop-nav > .nav-item > .nav-dropdown {
    top: calc(100% + 6px) !important;
}

.site-header .desktop-nav > .nav-item:hover > .nav-dropdown,
.site-header .desktop-nav > .nav-item > .nav-dropdown:hover,
.site-header .desktop-nav > .nav-item:focus-within > .nav-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(-50%, 0);
}

/* Selected Work compact equal-card layout */
.featured-projects {
    padding: clamp(68px, 7vw, 92px) 0;
}

.featured-projects .section-header {
    margin-bottom: 34px;
}

.featured-projects .section-header p::after {
    margin-top: 16px;
    font-size: clamp(2.25rem, 4vw, 4rem);
    letter-spacing: -.045em;
}

.featured-projects .luxury-project-grid {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(18px, 2.2vw, 28px);
    align-items: stretch;
}

.featured-projects .luxury-project-card,
.featured-projects .luxury-project-card.project-offset {
    min-height: auto;
    height: clamp(280px, 28vw, 380px);
    border-radius: 24px;
    transform: none !important;
}

.featured-projects .luxury-project-card.project-offset {
    margin-top: 0 !important;
    align-self: stretch;
}

.featured-projects .luxury-project-card > a {
    min-height: 100%;
    height: 100%;
}

.featured-projects .project-visual {
    position: absolute;
    inset: 0;
    height: 100%;
}

.featured-projects .project-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-projects .luxury-project-info {
    bottom: 24px;
    left: 24px;
    right: 24px;
}

.featured-projects .luxury-project-info h3 {
    font-size: clamp(1.12rem, 1.55vw, 1.5rem);
}

@media (max-width: 920px) {
    .featured-projects .luxury-project-grid {
        grid-template-columns: 1fr;
    }

    .featured-projects .luxury-project-card,
    .featured-projects .luxury-project-card.project-offset {
        height: 330px;
    }
}

/* Selected Work motion */
.featured-projects .luxury-project-card {
    opacity: 0;
    transform: translateY(42px) scale(.96) !important;
    will-change: transform, opacity;
}

.featured-projects.is-visible .luxury-project-card {
    animation: selectedWorkReveal .85s cubic-bezier(.19, 1, .22, 1) both;
}

.featured-projects.is-visible .luxury-project-card:nth-child(2) {
    animation-delay: .14s;
}

.featured-projects.is-visible .luxury-project-card:nth-child(3) {
    animation-delay: .28s;
}

.featured-projects.is-visible .luxury-project-card > a {
    animation: selectedWorkFloat 6.5s ease-in-out infinite;
    transform-origin: center;
}

.featured-projects.is-visible .luxury-project-card:nth-child(2) > a {
    animation-delay: 1.1s;
}

.featured-projects.is-visible .luxury-project-card:nth-child(3) > a {
    animation-delay: 2.2s;
}

.featured-projects .luxury-project-card:hover > a {
    animation-play-state: paused;
    transform: translateY(-8px) scale(1.015);
}

.featured-projects .luxury-project-card:hover .project-visual img {
    transform: scale(1.08);
}

@keyframes selectedWorkReveal {
    from {
        opacity: 0;
        transform: translateY(42px) scale(.96);
    }

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

@keyframes selectedWorkFloat {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

@media (prefers-reduced-motion: reduce) {
    .featured-projects .luxury-project-card,
    .featured-projects.is-visible .luxury-project-card,
    .featured-projects.is-visible .luxury-project-card > a {
        opacity: 1;
        transform: none !important;
        animation: none;
    }
}

/* Selected Work flip-card interaction */
.featured-projects .luxury-project-grid {
    perspective: 1400px;
}

.featured-projects .luxury-project-card {
    overflow: visible;
    background: transparent;
    transform-style: preserve-3d;
}

.featured-projects .luxury-project-card > a,
.featured-projects .project-card-back {
    position: absolute;
    inset: 0;
    display: block;
    border-radius: inherit;
    overflow: hidden;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transition: transform .78s cubic-bezier(.2, .8, .2, 1);
}

.featured-projects .luxury-project-card > a {
    z-index: 2;
    transform: rotateY(0deg);
}

.featured-projects .project-card-back {
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 18px;
    padding: clamp(24px, 3vw, 42px);
    background: #050505;
    color: #fff;
    transform: rotateY(180deg);
}

.featured-projects .luxury-project-card:hover > a,
.featured-projects .luxury-project-card:focus-within > a {
    transform: rotateY(-180deg);
}

.featured-projects .luxury-project-card:hover .project-card-back,
.featured-projects .luxury-project-card:focus-within .project-card-back {
    transform: rotateY(0deg);
}

.featured-projects .project-card-back span {
    color: #9da17a;
    font-size: .76rem;
    font-weight: 800;
    letter-spacing: .24em;
    text-transform: uppercase;
}

.featured-projects .project-card-back h3 {
    margin: 0;
    color: #fff;
    font-size: clamp(1.55rem, 2.3vw, 2.25rem);
    line-height: 1.02;
}

.featured-projects .project-card-back p {
    margin: 0;
    color: rgba(255,255,255,.72);
    font-size: .98rem;
    line-height: 1.7;
}

.featured-projects .project-card-back strong {
    margin-top: 8px;
    color: #fff;
    font-size: .95rem;
}

.featured-projects.is-visible .luxury-project-card > a {
    animation: none;
}

.featured-projects .luxury-project-card:hover .project-visual img {
    transform: none;
}

/* Remove white overlay icons from work and service cards */
.featured-projects .luxury-project-card::before,
.services-dark .luxury-service::before {
    display: none !important;
}

/* Service cards use the same flip interaction */
.services-dark .luxury-services {
    perspective: 1400px;
}

.services-dark .luxury-service {
    overflow: visible;
    transform-style: preserve-3d;
    background: transparent;
}

.services-dark .service-preview,
.services-dark .service-card-back {
    position: absolute;
    inset: 0;
    display: block;
    border-radius: inherit;
    overflow: hidden;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transition: transform .78s cubic-bezier(.2, .8, .2, 1);
}

.services-dark .service-preview {
    z-index: 2;
    transform: rotateY(0deg) !important;
}

.services-dark .service-card-back {
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 18px;
    padding: clamp(24px, 3vw, 42px);
    background: #050505;
    color: #fff;
    transform: rotateY(180deg);
}

.services-dark .luxury-service:hover .service-preview,
.services-dark .luxury-service:focus-within .service-preview {
    transform: rotateY(-180deg) !important;
}

.services-dark .luxury-service > h3,
.services-dark .luxury-service > .service-count,
.services-dark .luxury-service > .service-arrow {
    transition: opacity .22s ease;
}

.services-dark .luxury-service:hover > h3,
.services-dark .luxury-service:hover > .service-count,
.services-dark .luxury-service:hover > .service-arrow,
.services-dark .luxury-service:focus-within > h3,
.services-dark .luxury-service:focus-within > .service-count,
.services-dark .luxury-service:focus-within > .service-arrow {
    opacity: 0;
}

.services-dark .luxury-service:hover .service-card-back,
.services-dark .luxury-service:focus-within .service-card-back {
    transform: rotateY(0deg);
}

.services-dark .service-card-back span {
    color: #9da17a;
    font-size: .76rem;
    font-weight: 800;
    letter-spacing: .24em;
    text-transform: uppercase;
}

.services-dark .service-card-back h3 {
    position: static;
    margin: 0;
    color: #fff;
    font-size: clamp(1.55rem, 2.3vw, 2.25rem);
    line-height: 1.02;
    text-align: left;
    text-shadow: none;
}

.services-dark .service-card-back p {
    margin: 0;
    color: rgba(255,255,255,.72);
    font-size: .98rem;
    line-height: 1.7;
}

.services-dark .service-card-back strong {
    margin-top: 8px;
    color: #fff;
    font-size: .95rem;
}

/* Material qualities polish */
.application-qualities {
    position: relative;
    padding: clamp(82px, 8vw, 124px) 0;
    background:
        radial-gradient(circle at 15% 10%, rgba(123,127,99,.18), transparent 34%),
        linear-gradient(135deg, #101010 0%, #151515 48%, #0a0a0a 100%);
    color: #fff;
}

.application-qualities .container {
    max-width: 1440px;
}

.application-qualities .application-eyebrow {
    display: inline-flex;
    margin-bottom: 32px;
    color: #b2b78a;
    font-size: .84rem;
    font-weight: 800;
    letter-spacing: .34em;
    text-transform: uppercase;
}

.application-qualities .quality-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    margin-top: 0;
}

.application-qualities .quality-card {
    min-height: 220px;
    padding: 34px 24px;
    border: 1px solid rgba(255,255,255,.12);
    background:
        linear-gradient(180deg, rgba(255,255,255,.065), rgba(255,255,255,.025));
    box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
    transition: transform .28s ease, border-color .28s ease, background .28s ease;
}

.application-qualities .quality-card:hover {
    transform: translateY(-6px);
    border-color: rgba(178,183,138,.45);
    background:
        linear-gradient(180deg, rgba(123,127,99,.18), rgba(255,255,255,.035));
}

.application-qualities .quality-card img {
    width: 58px;
    height: 58px;
    object-fit: contain;
    filter: invert(1) brightness(1.6);
    opacity: .9;
}

.application-qualities .quality-card span {
    color: rgba(255,255,255,.9);
    font-size: clamp(1.05rem, 1.25vw, 1.24rem);
    font-weight: 700;
    letter-spacing: .01em;
}

@media (max-width: 920px) {
    .application-qualities .quality-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 560px) {
    .application-qualities .quality-grid {
        grid-template-columns: 1fr;
    }

    .application-qualities .quality-card {
        min-height: 180px;
    }
}

/* Jobs done gallery section */
.services-dark {
    padding: clamp(66px, 7vw, 96px) 0;
}

.services-dark .services-heading {
    margin-bottom: 34px;
}

.services-dark .services-heading h2 {
    max-width: 900px;
    margin: 0 auto;
    font-size: clamp(2.25rem, 4vw, 4.1rem);
    line-height: 1;
}

.services-dark .luxury-services {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(16px, 2vw, 24px);
}

.services-dark .luxury-service {
    min-height: auto;
    height: clamp(210px, 21vw, 285px);
    border-radius: 18px;
}

.services-dark .luxury-service:nth-child(n + 4) {
    display: flex !important;
}

.services-dark .luxury-service > h3 {
    left: 18px;
    right: 18px;
    bottom: 18px;
    font-size: clamp(1rem, 1.35vw, 1.32rem);
    line-height: 1.1;
}

.services-dark .service-card-back {
    padding: clamp(18px, 2vw, 26px);
    gap: 11px;
}

.services-dark .service-card-back h3 {
    font-size: clamp(1.1rem, 1.55vw, 1.45rem);
}

.services-dark .service-card-back p {
    font-size: .86rem;
    line-height: 1.55;
}

@media (max-width: 980px) {
    .services-dark .luxury-services {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .services-dark .luxury-service {
        height: 260px;
    }
}

@media (max-width: 620px) {
    .services-dark .luxury-services {
        grid-template-columns: 1fr;
    }
}

/* Before/after jobs gallery */
.gallery-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    text-align: left;
    justify-items: stretch;
}

.gallery-heading > div {
    display: grid;
    gap: 0;
}

.gallery-view-all {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    border: 1px solid rgba(0,0,0,.16);
    border-radius: 999px;
    color: #111;
    font-weight: 750;
    white-space: nowrap;
}

.gallery-view-all:hover {
    background: #111;
    color: #fff;
}

.before-after-gallery {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(16px, 2vw, 24px);
}

.before-after-card {
    display: grid;
    gap: 16px;
    color: #111;
}

.before-after-media {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: clamp(190px, 20vw, 270px);
    overflow: hidden;
    border-radius: 18px;
    background: #111;
    box-shadow: 0 18px 50px rgba(0,0,0,.08);
}

.before-after-image {
    position: relative;
    overflow: hidden;
}

.before-after-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.before-after-card:hover .before-after-image img {
    transform: scale(1.06);
}

.before-after-image.before img {
    filter: grayscale(.55) brightness(.72);
}

.before-after-image span {
    position: absolute;
    left: 12px;
    top: 12px;
    z-index: 2;
    padding: 7px 10px;
    border-radius: 999px;
    background: rgba(0,0,0,.72);
    color: #fff;
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.before-after-divider {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    z-index: 3;
    width: 2px;
    background: rgba(255,255,255,.92);
    transform: translateX(-50%);
}

.before-after-divider i {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border: 2px solid #fff;
    border-radius: 50%;
    background: #111;
    transform: translate(-50%, -50%);
}

.before-after-divider i::before,
.before-after-divider i::after {
    content: "";
    position: absolute;
    width: 8px;
    height: 8px;
    border-top: 2px solid #fff;
    border-left: 2px solid #fff;
}

.before-after-divider i::before {
    left: 10px;
    transform: rotate(-45deg);
}

.before-after-divider i::after {
    right: 10px;
    transform: rotate(135deg);
}

.before-after-info {
    display: grid;
    gap: 5px;
}

.before-after-info span {
    color: #7b7f63;
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.before-after-info h3 {
    margin: 0;
    color: #111;
    font-size: clamp(1.05rem, 1.35vw, 1.32rem);
    line-height: 1.12;
}

@media (max-width: 980px) {
    .before-after-gallery {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 620px) {
    .gallery-heading {
        display: grid;
        align-items: start;
    }

    .before-after-gallery {
        grid-template-columns: 1fr;
    }
}

.admin-gallery-previews {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.admin-gallery-previews span {
    display: inline-flex;
    margin-bottom: 8px;
    color: #7a7163;
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .18em;
    text-transform: uppercase;
}

@media (max-width: 760px) {
    .admin-gallery-previews {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   Client Deck Redesign
========================================= */

body.home-page .site-header {
    background: rgba(255, 255, 255, .96);
    border-bottom: 1px solid rgba(0, 0, 0, .08);
    color: #111;
}

body.home-page .site-header .desktop-nav > a,
body.home-page .site-header .desktop-nav > .nav-item > a {
    color: #111;
    font-size: clamp(1rem, 1.04vw, 1.2rem);
}

body.home-page .site-header .desktop-nav > a::after,
body.home-page .site-header .desktop-nav > .nav-item > a::after {
    background: #111;
}

body.home-page .site-header .header-cta {
    background: #111;
    color: #fff;
}

body.home-page .site-header .header-cta:hover {
    background: #f47a20;
    color: #111;
}

body.home-page .site-header .menu-toggle span {
    background: #111;
}

.client-hero {
    padding: 118px 0 0;
    background: #fff;
    color: #111;
}

.client-hero-strip {
    display: grid;
    grid-template-columns: 1.1fr .9fr .9fr 1.1fr;
    min-height: clamp(280px, 42vw, 560px);
    overflow: hidden;
}

.client-hero-strip img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(.08);
}

.client-hero-strip img:nth-child(2),
.client-hero-strip img:nth-child(3) {
    margin-top: clamp(24px, 4vw, 70px);
    height: calc(100% - clamp(24px, 4vw, 70px));
}

.client-identity {
    display: grid;
    grid-template-columns: minmax(260px, .72fr) minmax(0, 1.28fr);
    gap: clamp(34px, 6vw, 110px);
    max-width: 1500px;
    margin: 0 auto;
    padding: clamp(58px, 8vw, 118px) clamp(22px, 4vw, 70px);
}

.client-logo-card {
    align-self: start;
    display: grid;
    gap: 28px;
    padding: clamp(26px, 3vw, 42px);
    border: 1px solid rgba(17, 17, 17, .12);
    background: #f7f6f1;
}

.client-logo-card img {
    width: min(230px, 72%);
    height: auto;
}

.client-counter {
    display: flex;
    align-items: baseline;
    gap: 2px;
    color: #f47a20;
    line-height: .9;
}

.client-counter strong,
.client-counter span {
    font-size: clamp(4rem, 8vw, 8.4rem);
    font-weight: 700;
}

.client-logo-card p {
    margin: 0;
    max-width: 330px;
    color: #333;
    font-size: 1.02rem;
    line-height: 1.7;
}

.client-identity-copy .eyebrow,
.client-identity-copy > span,
.client-section-head .eyebrow,
.client-section-head > span,
.client-contact-copy .eyebrow,
.client-contact-copy > span,
.pyrolave-copy > span,
.story-card span,
.properties-panel span,
.stratimage-panel span {
    margin: 0 0 20px;
    color: #817f60;
    font-size: .83rem;
    font-weight: 800;
    letter-spacing: .38em;
    text-transform: uppercase;
}

.client-identity-copy h1,
.client-section-head h2,
.client-contact-copy h2,
.start-project-copy h2 {
    margin: 0;
    color: #111;
    font-size: clamp(2.8rem, 6vw, 7.4rem);
    font-weight: 400;
    letter-spacing: 0;
    line-height: .96;
}

.client-identity-copy p {
    max-width: 860px;
    margin: 28px 0 0;
    color: #444;
    font-size: clamp(1.03rem, 1.25vw, 1.35rem);
    line-height: 1.85;
}

.client-section {
    padding: clamp(70px, 9vw, 140px) clamp(22px, 4vw, 70px);
}

.client-section-head {
    max-width: 1220px;
    margin: 0 auto clamp(36px, 5vw, 72px);
}

.client-section-head.is-centered {
    text-align: center;
}

.client-section-head.centered {
    text-align: center;
}

.client-section-head p {
    max-width: 980px;
    margin: 24px auto 0;
    color: #555;
    font-size: clamp(1rem, 1.15vw, 1.2rem);
    line-height: 1.8;
}

.material-flip-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(18px, 2vw, 34px);
    max-width: 1500px;
    margin: 0 auto;
}

.material-flip-card {
    min-height: clamp(360px, 35vw, 520px);
    perspective: 1400px;
}

.material-flip-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform .75s ease;
}

.material-flip-card:hover .material-flip-inner,
.material-flip-card:focus-within .material-flip-inner {
    transform: rotateY(180deg);
}

.material-face {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    padding: clamp(24px, 3vw, 42px);
    overflow: hidden;
    backface-visibility: hidden;
    background: #111;
}

.material-face img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .7s ease;
}

.material-flip-card:hover .material-face img {
    transform: scale(1.05);
}

.material-face::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, .05), rgba(0, 0, 0, .68));
}

.material-face h3,
.material-face p {
    position: relative;
    z-index: 1;
}

.material-face h3 {
    margin: 0;
    color: #fff;
    font-size: clamp(1.45rem, 2.1vw, 2.5rem);
    line-height: 1;
}

.material-face.back,
.material-face.material-back {
    align-items: center;
    background: #111;
    transform: rotateY(180deg);
}

.material-face.back::after,
.material-face.material-back::after {
    background: rgba(0, 0, 0, .72);
}

.material-face.back p,
.material-face.material-back p {
    margin: 0;
    color: #f5f2e8;
    font-size: clamp(1rem, 1.12vw, 1.18rem);
    line-height: 1.75;
}

.stratimage-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(24px, 4vw, 62px);
    align-items: center;
    max-width: 1500px;
    margin: clamp(36px, 5vw, 82px) auto 0;
    padding: clamp(24px, 3vw, 44px);
    background: #111;
    color: #fff;
}

.stratimage-panel img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.stratimage-panel h3 {
    margin: 0 0 18px;
    font-size: clamp(1.8rem, 3vw, 3.8rem);
    font-weight: 400;
}

.stratimage-panel p {
    margin: 0;
    color: #ddd;
    font-size: clamp(1rem, 1.15vw, 1.2rem);
    line-height: 1.8;
}

.client-services,
.process-section {
    background: #111;
    color: #fff;
}

.client-services .client-section-head h2,
.client-services .client-section-head p,
.process-section .client-section-head h2,
.process-section .client-section-head p {
    color: #fff;
}

.service-process-group {
    max-width: 1500px;
    margin: 0 auto 42px;
}

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

.service-process-group h3 {
    margin: 0 0 18px;
    color: #f47a20;
    font-size: .9rem;
    font-weight: 800;
    letter-spacing: .3em;
    text-transform: uppercase;
}

.service-button-grid,
.application-button-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(16px, 2vw, 28px);
}

.service-button-grid article {
    display: grid;
    place-items: center;
    min-height: clamp(190px, 19vw, 285px);
    padding: 26px;
    border: 1px solid rgba(255, 255, 255, .15);
    background: #fff;
    color: #111;
    text-align: center;
    transition: transform .25s ease, background .25s ease, color .25s ease;
}

.service-button-grid article:hover {
    transform: translateY(-6px);
    background: #f47a20;
    color: #111;
}

.service-button-grid h4,
.service-button-grid strong {
    margin: 0;
    font-size: clamp(1.25rem, 1.7vw, 2rem);
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1.05;
}

.service-button-grid span {
    display: block;
    max-width: 230px;
    margin-top: 14px;
    color: inherit;
    font-size: .96rem;
    line-height: 1.45;
    opacity: .72;
}

.pyrolave-section {
    background: #f6f4ed;
}

.pyrolave-grid,
.story-grid,
.client-contact-grid,
.start-project-band {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(28px, 5vw, 80px);
    align-items: center;
    max-width: 1500px;
    margin: 0 auto;
}

.pyrolave-video {
    position: relative;
    display: block;
    min-height: clamp(320px, 43vw, 660px);
    overflow: hidden;
    color: #fff;
    background: #111;
}

.pyrolave-video img,
.story-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pyrolave-video::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .25);
}

.pyrolave-video span {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 1;
    display: grid;
    place-items: center;
    width: 92px;
    height: 92px;
    border: 1px solid rgba(255, 255, 255, .7);
    border-radius: 50%;
    background: rgba(255, 255, 255, .86);
    color: #111;
    font-size: 2rem;
    transform: translate(-50%, -50%);
}

.pyrolave-video a {
    position: absolute;
    inset: 0;
    z-index: 2;
    color: inherit;
}

.pyrolave-video a span::before {
    content: "";
    width: 0;
    height: 0;
    border-top: 13px solid transparent;
    border-bottom: 13px solid transparent;
    border-left: 18px solid currentColor;
    margin-left: 6px;
}

.pyrolave-copy h2,
.story-card h3,
.story-card h2,
.properties-panel h2,
.color-section h2 {
    margin: 0 0 20px;
    color: #111;
    font-size: clamp(2.4rem, 5vw, 5.6rem);
    font-weight: 400;
    line-height: 1;
}

.pyrolave-copy p,
.story-card p,
.properties-panel p,
.color-section p {
    margin: 0;
    color: #4a4a4a;
    font-size: clamp(1rem, 1.14vw, 1.18rem);
    line-height: 1.8;
}

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

.story-card {
    display: grid;
    gap: 24px;
}

.story-card img {
    aspect-ratio: 16 / 11;
}

.process-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    max-width: 1500px;
    margin: 0 auto 44px;
}

.process-strip img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.properties-panel {
    max-width: 1500px;
    margin: 0 auto;
}

.properties-panel h3 {
    margin: 0 0 22px;
    color: #817f60;
    font-size: .86rem;
    font-weight: 800;
    letter-spacing: .34em;
    text-transform: uppercase;
}

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

.properties-grid span {
    min-height: 112px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .16);
    color: #f6f4ed;
    font-size: clamp(1rem, 1.2vw, 1.22rem);
}

.color-section .container {
    display: grid;
    gap: clamp(28px, 5vw, 84px);
    background: #fff;
}

.color-section img {
    width: 100%;
    aspect-ratio: 16 / 11;
    object-fit: cover;
}

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

.color-button-row a,
.gallery-view-all {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    border: 1px solid #111;
    background: #111;
    color: #fff;
    font-weight: 700;
    text-decoration: none;
}

.color-button-row a.secondary,
.gallery-view-all {
    background: transparent;
    color: #111;
}

.applications-section {
    background: #f6f4ed;
}

.application-button-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    max-width: 1500px;
    margin: 0 auto;
}

.application-button-grid a {
    position: relative;
    display: flex;
    align-items: flex-end;
    min-height: clamp(250px, 26vw, 430px);
    overflow: hidden;
    padding: 22px;
    color: #fff;
    text-decoration: none;
    background: #111;
}

.application-button-grid img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
}

.application-button-grid a::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, .08), rgba(0, 0, 0, .72));
}

.application-button-grid a:hover img {
    transform: scale(1.05);
}

.application-button-grid span {
    position: relative;
    z-index: 1;
    font-size: clamp(1.05rem, 1.35vw, 1.45rem);
    font-weight: 700;
    line-height: 1.1;
}

.works-section {
    background: #fff;
}

.works-section .gallery-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
}

.client-contact-band {
    background: #111;
    color: #fff;
}

.client-contact-copy h2,
.start-project-copy h2 {
    color: #fff;
}

.client-contact-copy p,
.start-project-copy p {
    color: #d8d3c7;
    font-size: clamp(1.02rem, 1.18vw, 1.25rem);
    line-height: 1.75;
}

.client-contact-grid img {
    width: 100%;
    aspect-ratio: 5 / 6;
    object-fit: cover;
}

.client-contact-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: 34px;
}

.contact-card-mini {
    display: grid;
    gap: 8px;
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, .14);
}

.contact-card-mini span {
    color: #f47a20;
    font-size: .76rem;
    font-weight: 800;
    letter-spacing: .22em;
    text-transform: uppercase;
}

.contact-card-mini a,
.contact-card-mini p {
    margin: 0;
    color: #fff;
    text-decoration: none;
    line-height: 1.55;
}

.start-project-band {
    max-width: none;
    padding: clamp(70px, 8vw, 130px) clamp(22px, 4vw, 70px);
    background: #f47a20;
}

.start-project-band .container {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: clamp(24px, 4vw, 70px);
    align-items: center;
}

.start-project-band h2 {
    margin: 0;
    color: #111;
    font-size: clamp(2.5rem, 5vw, 6rem);
    font-weight: 400;
    line-height: 1;
}

.start-project-band p {
    max-width: 650px;
    margin: 18px 0 0;
    color: #111;
    font-size: clamp(1rem, 1.2vw, 1.25rem);
    line-height: 1.6;
}

.start-project-band a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 58px;
    padding: 0 28px;
    background: #111;
    color: #fff;
    font-weight: 800;
    text-decoration: none;
}

.start-project-band .btn,
.start-project-band .primary-btn {
    justify-self: end;
    background: #111;
    color: #fff;
}

@media (max-width: 1180px) {
    .client-identity,
    .pyrolave-grid,
    .client-contact-grid,
    .start-project-band,
    .color-section {
        grid-template-columns: 1fr;
    }

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

    .start-project-band .btn,
    .start-project-band .primary-btn {
        justify-self: start;
    }

    .start-project-band .container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .client-hero {
        padding-top: 92px;
    }

    .client-hero-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        min-height: auto;
    }

    .client-hero-strip img {
        aspect-ratio: 1 / 1;
    }

    .client-hero-strip img:nth-child(2),
    .client-hero-strip img:nth-child(3) {
        margin-top: 0;
        height: 100%;
    }

    .material-flip-grid,
    .properties-grid,
    .process-strip,
    .service-button-grid,
    .application-button-grid,
    .client-contact-list,
    .stratimage-panel,
    .story-grid {
        grid-template-columns: 1fr;
    }

    .material-flip-card {
        min-height: 420px;
    }

    .works-section .gallery-heading {
        display: grid;
        align-items: start;
    }

    .pyrolave-video {
        min-height: 340px;
    }
}

/* =========================================
   Screenshot Matched Homepage Flow
========================================= */

body.home-page {
    background: #fff;
    color: #050505;
    font-family: Arial, Helvetica, sans-serif;
}

body.home-page main {
    padding-top: 0;
}

body.home-page .site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, .98);
    border-bottom: 0;
    box-shadow: none;
}

body.home-page .site-header .header-inner {
    min-height: 80px;
}

body.home-page .site-header .desktop-nav {
    gap: clamp(24px, 4vw, 58px);
}

body.home-page .site-header .desktop-nav > a,
body.home-page .site-header .desktop-nav > .nav-item > a {
    color: #000;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

body.home-page .site-header .desktop-nav > a.active,
body.home-page .site-header .desktop-nav > .nav-item.active > a {
    color: #f47a20;
}

body.home-page .site-header .desktop-nav > a::after,
body.home-page .site-header .desktop-nav > .nav-item > a::after {
    display: none;
}

body.home-page .site-header .header-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: clamp(150px, 11vw, 178px);
    min-height: 48px;
    padding: 0 18px;
    background: #050505;
    color: #fff;
    font-size: clamp(15px, 1vw, 18px);
    font-weight: 500;
    letter-spacing: 0;
    text-transform: none;
}

body.home-page .site-header .header-cta:hover {
    background: #f47a20;
    color: #050505;
}

body.home-page .site-header .logo img {
    max-height: 58px;
}

.deck-section {
    background: #fff;
    padding: clamp(26px, 4.4vw, 58px) 18px;
    scroll-margin-top: 92px;
}

.deck-anchor {
    display: block;
    width: 1px;
    height: 1px;
    margin-top: -92px;
    padding-top: 92px;
    pointer-events: none;
}

.deck-section:first-of-type {
    padding-top: 12px;
}

.deck-frame {
    width: min(100%, 980px);
    margin: 0 auto;
}

.deck-copy {
    font-size: 13px;
    line-height: 1.48;
}

.deck-copy-narrow {
    max-width: 640px;
    margin: 0 auto 18px;
}

.deck-kicker,
.deck-contact .deck-orange-band span {
    display: block;
    margin: 0 0 5px;
    color: #000;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
}

.deck-copy h1,
.deck-copy h2,
.deck-frame > h2,
.deck-orange-band h2 {
    margin: 0 0 16px;
    color: #000;
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1;
    text-transform: uppercase;
}

.deck-frame > h2 {
    margin-top: 10px;
    text-align: center;
    font-size: 17px;
    font-weight: 700;
    text-transform: none;
}

.deck-copy p,
.deck-frame > p {
    margin: 0 0 11px;
    color: #000;
    font-size: 13px;
    line-height: 1.5;
}

.deck-identity-banner {
    display: grid;
    grid-template-columns: 1fr 1.28fr 1fr 1fr;
    border: 1px solid #f47a20;
}

.deck-identity-banner img {
    width: 100%;
    height: clamp(210px, 27vw, 330px);
    object-fit: cover;
    border-right: 1px solid #f47a20;
}

.deck-identity-banner img:nth-child(2) {
    object-fit: contain;
    padding: clamp(34px, 6vw, 72px);
    background: #f7f7f7;
}

.deck-identity-banner img:last-child {
    border-right: 0;
}

.deck-identity-content {
    display: grid;
    grid-template-columns: 190px minmax(0, 1fr);
    gap: 36px;
    margin-top: 28px;
}

.deck-years {
    align-self: center;
    display: grid;
    gap: 8px;
    justify-items: center;
    text-align: center;
}

.deck-years strong {
    font-size: 31px;
    font-weight: 400;
    line-height: 1;
}

.deck-years span {
    color: #111;
    font-size: 18px;
    line-height: 1.35;
    text-transform: uppercase;
}

.deck-material-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    max-width: 650px;
    margin: 14px auto 10px;
}

.deck-material-card {
    display: grid;
    gap: 14px;
    color: #000;
    text-align: center;
    text-decoration: none;
}

.deck-material-card strong {
    font-size: 20px;
    font-weight: 400;
    text-transform: uppercase;
}

.deck-material-flip {
    position: relative;
    display: block;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #eee;
}

.deck-material-flip img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity .35s ease, transform .35s ease;
}

.deck-material-flip img + img {
    opacity: 0;
    transform: scale(1.03);
}

.deck-material-card:hover .deck-material-flip img:first-child,
.deck-material-card:focus .deck-material-flip img:first-child {
    opacity: 0;
}

.deck-material-card:hover .deck-material-flip img + img,
.deck-material-card:focus .deck-material-flip img + img {
    opacity: 1;
    transform: scale(1);
}

.deck-bullets {
    max-width: 650px;
    margin: 32px auto 0;
}

.deck-bullets p {
    margin: 0 0 16px;
    font-size: 13px;
    line-height: 1.48;
}

.deck-bullets strong {
    display: block;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.deck-image-row {
    display: grid;
    gap: 4px;
    margin: 12px auto;
}

.deck-image-row img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.deck-image-row-four {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    max-width: 650px;
}

.deck-image-row-four img {
    aspect-ratio: 1 / 1;
}

.deck-image-row-three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 650px;
}

.deck-image-row-three img {
    aspect-ratio: 1.05 / 1;
}

.deck-service-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    max-width: 650px;
    margin: 10px auto 30px;
}

.deck-service-grid article {
    display: grid;
    place-items: center;
    gap: 18px;
    min-height: 160px;
    padding: 18px;
    text-align: center;
}

.deck-service-grid-light article {
    border: 5px solid #171717;
    background: #fff;
    color: #000;
}

.deck-service-grid-dark article {
    background: #171717;
    color: #fff;
}

.deck-service-grid i {
    display: grid;
    place-items: center;
    width: 68px;
    height: 68px;
    border: 3px solid currentColor;
    border-radius: 50%;
    font-style: normal;
    font-size: 24px;
    font-weight: 700;
}

.deck-service-grid strong {
    color: inherit;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.08;
    text-transform: uppercase;
}

.deck-pyrolave .deck-frame {
    text-align: center;
}

.deck-video {
    position: relative;
    display: block;
    max-width: 660px;
    margin: 0 auto;
    color: #fff;
}

.deck-video img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    filter: brightness(.82);
}

.deck-video span {
    position: absolute;
    inset: 50% auto auto 50%;
    width: 84px;
    height: 84px;
    border: 4px solid rgba(255, 255, 255, .9);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.deck-video span::after {
    content: "";
    position: absolute;
    left: 34px;
    top: 25px;
    width: 0;
    height: 0;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-left: 21px solid #fff;
}

.deck-pyrolave-copy {
    display: grid;
    grid-template-columns: 70px minmax(0, 1fr);
    gap: 26px;
    max-width: 650px;
    margin: 18px auto 0;
    text-align: left;
}

.deck-pyrolave-copy img {
    width: 56px;
    height: auto;
    border: 1px solid #000;
}

.deck-pyrolave-copy span {
    display: block;
    margin-top: 7px;
    font-size: 12px;
    text-transform: uppercase;
}

.deck-process-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    max-width: 650px;
    margin: 0 auto 10px;
}

.deck-process-strip img {
    width: 100%;
    aspect-ratio: 1.42 / 1;
    object-fit: contain;
}

.deck-process-text {
    text-align: center;
}

.deck-wide-image {
    display: block;
    width: min(100%, 650px);
    max-height: 230px;
    margin: 18px auto 8px;
    object-fit: cover;
}

.deck-property-strip {
    display: grid;
    grid-template-columns: repeat(8, minmax(0, 1fr));
    width: min(100%, 480px);
    margin: 16px auto 0;
    border: 4px solid #f4f4f4;
    background: #000;
}

.deck-property-strip span {
    display: grid;
    place-items: center;
    min-height: 62px;
    padding: 6px;
    border-right: 1px solid rgba(255, 255, 255, .4);
    color: #fff;
    font-size: 7px;
    font-weight: 700;
    line-height: 1.1;
    text-align: center;
    text-transform: uppercase;
}

.deck-property-strip span:last-child {
    border-right: 0;
}

.deck-color .deck-frame,
.deck-applications .deck-frame {
    text-align: center;
}

.deck-color-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    width: min(100%, 380px);
    margin: 22px auto 0;
}

.deck-color-grid a {
    display: grid;
    gap: 8px;
    color: #000;
    font-size: 12px;
    text-decoration: none;
    text-transform: uppercase;
}

.deck-color-grid img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.deck-application-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 32px;
    max-width: 560px;
    margin: 34px auto 0;
}

.deck-application-buttons a {
    display: grid;
    place-items: center;
    width: 154px;
    min-height: 88px;
    padding: 14px;
    border: 3px solid #1d2c50;
    color: #000;
    font-size: 12px;
    font-weight: 800;
    line-height: 1.18;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
}

.deck-pyrolave-link {
    display: grid;
    grid-template-columns: 1fr 78px;
    gap: 18px;
    align-items: center;
    width: min(100%, 330px);
    margin: 12px 0 0 auto;
    text-align: right;
}

.deck-pyrolave-link span {
    font-size: 12px;
    font-weight: 700;
    line-height: 1.4;
}

.deck-pyrolave-link img {
    width: 78px;
    border: 1px solid #777;
}

.deck-natural-grid {
    display: grid;
    grid-template-columns: .95fr 1fr 1fr;
    gap: clamp(18px, 4vw, 54px);
    align-items: start;
}

.deck-natural-grid img {
    width: 100%;
    object-fit: cover;
}

.deck-natural-grid img:first-child {
    grid-row: span 3;
    aspect-ratio: 1.22 / 1;
}

.deck-natural-grid img:not(:first-child) {
    aspect-ratio: 1.95 / 1;
    object-fit: contain;
}

.deck-emboss-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 8px;
    align-items: start;
}

.deck-emboss-grid img {
    width: 100%;
    aspect-ratio: .72 / 1;
    object-fit: cover;
}

.deck-emboss-grid img:first-child {
    grid-column: span 2;
    aspect-ratio: 1.25 / 1;
}

.deck-contact .deck-frame,
.deck-start .deck-frame {
    width: min(100%, 900px);
}

.deck-orange-band {
    display: flex;
    align-items: center;
    min-height: 186px;
    margin-left: 190px;
    padding: 28px 36px;
    border: 1px solid #f47a20;
    background: #ff9100;
    color: #fff;
}

.deck-orange-band h2,
.deck-orange-band span {
    color: #fff;
}

.deck-contact-layout {
    display: grid;
    grid-template-columns: minmax(300px, 390px) minmax(320px, 430px);
    gap: clamp(34px, 6vw, 92px);
    align-items: start;
    justify-content: center;
    margin-top: -168px;
    padding: 0 10px 0 12px;
}

.deck-contact-left {
    display: grid;
    justify-items: start;
}

.deck-contact-left > img {
    width: 168px;
    height: 262px;
    object-fit: cover;
    align-self: start;
}

.deck-contact-person {
    margin-top: 18px;
    font-size: 12px;
    text-transform: uppercase;
}

.deck-contact-person strong,
.deck-contact-person span {
    display: block;
}

.deck-contact-details {
    display: grid;
    gap: 18px;
    width: 100%;
    margin-top: 28px;
    font-size: 14px;
}

.deck-contact-details p {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 14px;
    align-items: start;
    margin: 0;
    color: #000;
    line-height: 1.35;
}

.deck-contact-details i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #f47a20;
    color: #fff;
}

.deck-contact-details svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.deck-contact-details strong {
    display: block;
    margin-bottom: 4px;
}

.deck-contact-details a {
    color: #000;
    text-decoration: none;
}

.deck-contact-form-card {
    width: 100%;
    justify-self: end;
    margin-top: 238px;
    padding: 24px;
    border-radius: 18px;
    background: #f0efeb;
}

.deck-contact-form-card h3 {
    margin: 0 0 4px;
    max-width: 330px;
    font-size: 18px;
    line-height: 1.35;
}

.deck-contact-form-card p {
    margin: 0 0 22px;
    font-size: 15px;
    font-weight: 700;
}

.deck-contact-form-card form {
    display: grid;
    gap: 9px;
}

.deck-contact-form-card form div {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}

.deck-contact-form-card input,
.deck-contact-form-card textarea {
    width: 100%;
    border: 0;
    background: #fff;
    padding: 15px 16px;
    color: #000;
    font-size: 14px;
}

.deck-contact-form-card textarea {
    min-height: 112px;
    resize: vertical;
}

.deck-contact-form-card button {
    justify-self: start;
    min-height: 30px;
    border: 0;
    border-radius: 999px;
    padding: 0 20px;
    background: #7f835f;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
}

.deck-start .deck-orange-band {
    justify-content: center;
}

.deck-start-layout {
    display: grid;
    grid-template-columns: minmax(280px, 365px) 210px;
    gap: 52px;
    align-items: end;
    justify-content: center;
    margin-top: -44px;
}

.deck-faq-card {
    background: #111;
    padding: 12px;
    color: #fff;
}

.deck-faq-card h3 {
    margin: 0 0 14px;
    color: #fff;
    font-size: 30px;
    font-weight: 400;
    line-height: .96;
}

.deck-faq-card h3 em {
    font-family: Georgia, serif;
}

.deck-faq-card details {
    border-top: 1px solid rgba(255, 255, 255, .08);
}

.deck-faq-card summary {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 6px;
    color: #fff;
    cursor: pointer;
    font-size: 12px;
    font-weight: 700;
    list-style: none;
}

.deck-faq-card summary::after {
    content: "+";
    display: grid;
    place-items: center;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #333;
    flex: 0 0 auto;
}

.deck-faq-card details[open] summary::after {
    content: "-";
}

.deck-faq-card details p {
    margin: 0;
    padding: 0 6px 12px;
    color: #ddd;
    font-size: 12px;
    line-height: 1.45;
}

.deck-start-actions {
    display: grid;
    gap: 12px;
}

.deck-start-actions a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 52px;
    padding: 0 20px;
    border: 1px solid #ddd;
    background: #fff;
    color: #111;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .12em;
    text-decoration: none;
    text-transform: uppercase;
}

.deck-start-actions a.dark {
    background: #050505;
    color: #fff;
}

.deck-start-actions a strong {
    letter-spacing: 0;
}

.deck-start-actions span {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    background: #fff;
    color: #111;
}

@media (max-width: 1020px) {
    .deck-frame,
    .deck-contact .deck-frame,
    .deck-start .deck-frame {
        width: min(100%, 760px);
    }

    .deck-contact-layout {
        grid-template-columns: minmax(280px, 340px) minmax(320px, 1fr);
        gap: 34px;
    }

    .deck-contact-form-card {
        margin-top: 238px;
    }
}

@media (max-width: 760px) {
    body.home-page .site-header .header-inner {
        min-height: 74px;
    }

    .deck-section {
        padding: 34px 16px;
    }

    .deck-identity-banner,
    .deck-material-grid,
    .deck-image-row-four,
    .deck-image-row-three,
    .deck-service-grid,
    .deck-color-grid,
    .deck-natural-grid,
    .deck-emboss-grid,
    .deck-process-strip,
    .deck-identity-content,
    .deck-pyrolave-copy,
    .deck-contact-layout,
    .deck-start-layout {
        grid-template-columns: 1fr;
    }

    .deck-identity-banner img {
        height: auto;
        aspect-ratio: 1 / .82;
        border-right: 0;
        border-bottom: 1px solid #f47a20;
    }

    .deck-identity-banner img:nth-child(2) {
        padding: 28px;
    }

    .deck-years {
        justify-items: start;
        text-align: left;
    }

    .deck-material-grid,
    .deck-image-row-four,
    .deck-image-row-three,
    .deck-service-grid {
        max-width: 420px;
    }

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

    .deck-property-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        width: min(100%, 360px);
    }

    .deck-application-buttons a {
        width: min(100%, 260px);
    }

    .deck-pyrolave-link {
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }

    .deck-natural-grid img:first-child {
        grid-row: auto;
    }

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

    .deck-emboss-grid img:first-child {
        grid-column: span 2;
    }

    .deck-orange-band {
        min-height: 140px;
        margin-left: 0;
    }

    .deck-contact-layout {
        margin-top: -80px;
        padding: 0;
    }

    .deck-contact-left > img {
        width: min(100%, 240px);
        height: auto;
        justify-self: start;
    }

    .deck-contact-form-card {
        margin-top: 24px;
    }

    .deck-contact-form-card {
        grid-column: auto;
    }

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

    .deck-start-layout {
        margin-top: 24px;
        gap: 22px;
    }
}

/* =========================================
   Final Chapter Menu Mapping
========================================= */

.site-header .desktop-nav > .nav-item {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 54px;
}

.site-header .desktop-nav > .nav-item > .nav-dropdown {
    top: calc(100% - 4px);
    left: -16px;
    z-index: 1200;
    min-width: 190px;
    padding: 10px 0;
    border: 0;
    background: #fff;
    box-shadow: 0 18px 34px rgba(0, 0, 0, .1);
}

.site-header .desktop-nav > .nav-item > .nav-dropdown::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -14px;
    height: 14px;
}

.site-header .desktop-nav > .nav-item:hover > .nav-dropdown,
.site-header .desktop-nav > .nav-item > .nav-dropdown:hover,
.site-header .desktop-nav > .nav-item:focus-within > .nav-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.site-header .desktop-nav > .nav-item > .nav-dropdown a {
    display: block;
    padding: 7px 16px;
    color: #050505;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.15;
    text-transform: uppercase;
    white-space: nowrap;
}

.site-header .desktop-nav > .nav-item > .nav-dropdown a:hover {
    background: #f6f6f6;
    color: #f47a20;
}

.site-header .desktop-nav > .nav-item.has-dropdown::after {
    display: none;
}

body.home-page .site-header .desktop-nav {
    align-items: center;
}

body.home-page .site-header .desktop-nav > .nav-item > .nav-dropdown a {
    color: #050505;
    font-size: 12px;
    font-weight: 700;
}

body.home-page .site-header .desktop-nav > .nav-item > .nav-dropdown a:hover {
    color: #f47a20;
}

.mobile-subnav {
    display: grid;
    gap: 8px;
    padding: 0 0 14px 18px;
}

.mobile-subnav a {
    padding: 0;
    color: #555;
    font-size: .9rem;
    text-transform: uppercase;
}

/* =========================================
   Standalone Contact Page
========================================= */

.contact-page-shell {
    padding: clamp(118px, 10vw, 150px) 18px clamp(70px, 8vw, 120px);
    background: #fff;
}

.contact-page-frame {
    width: min(100%, 1180px);
    margin: 0 auto;
}

.contact-page-hero {
    display: grid;
    align-items: center;
    min-height: clamp(210px, 22vw, 280px);
    margin-left: min(32vw, 360px);
    padding: clamp(28px, 4vw, 52px) clamp(34px, 5vw, 78px);
    border: 1px solid #f47a20;
    background: #ff9100;
    color: #fff;
}

.contact-page-hero span {
    color: #fff;
    font-size: .82rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.contact-page-hero h1 {
    margin: 8px 0 12px;
    color: #fff;
    font-size: clamp(2.4rem, 4.6vw, 4.9rem);
    font-weight: 500;
    line-height: .95;
    text-transform: uppercase;
}

.contact-page-hero p {
    max-width: 570px;
    margin: 0;
    color: #fff;
    font-size: clamp(1rem, 1.3vw, 1.32rem);
    line-height: 1.55;
}

.contact-page-layout {
    display: grid;
    grid-template-columns: minmax(280px, 360px) minmax(0, 640px);
    gap: clamp(34px, 6vw, 82px);
    align-items: start;
    justify-content: center;
    margin-top: -92px;
}

.contact-profile-panel {
    display: grid;
    gap: 20px;
    position: relative;
    z-index: 2;
}

.contact-profile-panel > img {
    width: min(100%, 300px);
    aspect-ratio: 4 / 5.45;
    object-fit: cover;
    background: #eee;
}

.contact-profile-name {
    display: grid;
    gap: 3px;
    color: #050505;
    font-size: .92rem;
    text-transform: uppercase;
}

.contact-profile-name strong {
    font-weight: 800;
}

.contact-page-details {
    display: grid;
    gap: 18px;
}

.contact-page-row {
    display: grid;
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 15px;
    align-items: start;
    color: #050505;
    text-decoration: none;
}

.contact-page-row i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #f47a20;
    color: #fff;
}

.contact-page-row svg {
    width: 17px;
    height: 17px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.contact-page-row p {
    margin: 0;
    color: #050505;
    font-size: clamp(1rem, 1.35vw, 1.38rem);
    line-height: 1.4;
}

.contact-page-row strong {
    display: block;
    margin-bottom: 5px;
    font-size: clamp(1.05rem, 1.45vw, 1.5rem);
    line-height: 1.1;
}

@media (min-width: 981px) {
    .contact-page-layout {
        grid-template-areas:
            "profile form";
    }

    .contact-profile-panel {
        grid-area: profile;
    }

    .contact-page-form {
        grid-area: form;
    }

    .contact-page-details {
        padding-left: 4px;
    }
}

.contact-page-form {
    width: 100%;
    margin-top: clamp(74px, 8vw, 112px);
    padding: clamp(26px, 4vw, 48px);
    border-radius: 28px;
    background: #f0efeb;
}

.contact-form-heading {
    margin-bottom: 26px;
}

.contact-form-heading span {
    color: #7f835f;
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .28em;
    text-transform: uppercase;
}

.contact-form-heading h2 {
    margin: 8px 0 0;
    color: #050505;
    font-size: clamp(2rem, 3.8vw, 4.2rem);
    font-weight: 500;
    line-height: 1;
}

.contact-page-form label {
    display: grid;
    gap: 10px;
    color: #050505;
    font-size: 1rem;
    font-weight: 800;
}

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

.contact-page-form input,
.contact-page-form textarea {
    width: 100%;
    border: 0;
    background: #fff;
    padding: 18px 20px;
    color: #050505;
    font-size: 1rem;
    font-weight: 500;
    outline: none;
}

.contact-page-form textarea {
    min-height: 170px;
    resize: vertical;
}

.contact-page-form input:focus,
.contact-page-form textarea:focus {
    box-shadow: inset 0 0 0 2px #f47a20;
}

.contact-page-form button {
    margin-top: 6px;
    min-height: 54px;
    border: 0;
    border-radius: 999px;
    padding: 0 34px;
    background: #7f835f;
    color: #fff;
    font-size: 1rem;
    font-weight: 800;
    cursor: pointer;
}

.contact-page-form button:hover {
    background: #050505;
}

@media (max-width: 980px) {
    .contact-page-hero {
        margin-left: 0;
    }

    .contact-page-layout {
        grid-template-columns: 1fr;
        margin-top: -54px;
    }

    .contact-page-form {
        margin-top: 18px;
    }
}

@media (max-width: 640px) {
    .contact-page-shell {
        padding-top: 96px;
    }

    .contact-page-hero {
        min-height: 190px;
        padding: 28px;
    }

    .contact-page-layout {
        margin-top: 24px;
    }

    .contact-profile-panel > img {
        width: min(100%, 230px);
    }

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

    .contact-page-form {
        padding: 24px;
        border-radius: 18px;
    }
}

/* =========================================
   Final Mobile Header Fix
========================================= */

@media (max-width: 1024px) {
    .site-header,
    body.home-page .site-header,
    body.inner-page .site-header {
        position: sticky;
        top: 0;
        z-index: 2000;
        background: #fff;
    }

    .site-header .header-inner,
    body.home-page .site-header .header-inner {
        min-height: 82px;
        height: 82px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
        width: min(100% - 28px, var(--container));
        margin: 0 auto;
        padding: 0;
    }

    .site-header .desktop-nav,
    body.home-page .site-header .desktop-nav,
    body.inner-page .site-header .desktop-nav,
    .site-header .header-cta,
    body.home-page .site-header .header-cta,
    body.inner-page .site-header .header-cta {
        display: none !important;
    }

    .site-header .logo,
    body.home-page .site-header .logo {
        flex: 0 0 auto;
        display: inline-flex;
        align-items: center;
        max-width: 150px;
        overflow: hidden;
    }

    .site-header .logo img,
    body.home-page .site-header .logo img,
    .mobile-sidebar-logo img {
        width: auto;
        max-width: 138px;
        max-height: 62px;
        object-fit: contain;
    }

    .site-header .menu-toggle,
    body.home-page .site-header .menu-toggle,
    body.inner-page .site-header .menu-toggle {
        flex: 0 0 48px;
        width: 48px;
        height: 48px;
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        position: relative;
        border: 1px solid rgba(0, 0, 0, .18);
        border-radius: 0;
        background: #050505;
    }

    .site-header .menu-toggle span,
    body.home-page .site-header .menu-toggle span,
    body.inner-page .site-header .menu-toggle span {
        position: absolute;
        left: 13px;
        width: 22px;
        height: 2px;
        background: #fff;
    }

    .site-header .menu-toggle span:first-child {
        top: 18px;
    }

    .site-header .menu-toggle span:last-child {
        top: 27px;
    }

    .mobile-menu {
        z-index: 3000;
    }
}

@media (max-width: 420px) {
    .site-header .header-inner,
    body.home-page .site-header .header-inner {
        min-height: 76px;
        height: 76px;
        width: min(100% - 22px, var(--container));
    }

    .site-header .logo img,
    body.home-page .site-header .logo img,
    .mobile-sidebar-logo img {
        max-width: 116px;
        max-height: 56px;
    }

    .site-header .menu-toggle,
    body.home-page .site-header .menu-toggle,
    body.inner-page .site-header .menu-toggle {
        flex-basis: 44px;
        width: 44px;
        height: 44px;
    }
}
