:root {
    --brand-gold: #d6ad3a;
    --brand-gold-dark: #b8891f;
    --brand-gold-light: #f0d77a;
    --color-background: #ffffff;
    --color-surface: #f3efe9;
    --color-text: #262320;
    --color-muted: #706961;
    --color-accent: var(--brand-gold);
    --color-border: #ded7cf;

    --content-width: 1200px;
    --radius-small: 4px;
    --transition: 300ms ease;
}

body.has-consultation-popup {
    overflow: hidden;
}

.consultation-popup[hidden] {
    display: none;
}

.consultation-popup {
    position: fixed;
    z-index: 2000;
    inset: 0;
    display: grid;
    place-items: center;
    padding: 24px;
}

.consultation-popup__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(9, 8, 7, 0.72);
    backdrop-filter: blur(7px);
    opacity: 0;
    transition: opacity 0.32s ease;
}

.consultation-popup__dialog {
    position: relative;
    width: min(520px, 100%);
    padding: 44px;
    color: #f7f3ed;
    background: linear-gradient(145deg, rgba(52, 47, 42, 0.98), rgba(22, 20, 18, 0.99));
    border: 1px solid rgba(217, 178, 119, 0.5);
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.48);
    opacity: 0;
    transform: translateY(34px) scale(0.97);
    transition: opacity 0.32s ease, transform 0.32s ease;
}

.consultation-popup.is-visible .consultation-popup__backdrop,
.consultation-popup.is-visible .consultation-popup__dialog {
    opacity: 1;
}

.consultation-popup.is-visible .consultation-popup__dialog {
    transform: translateY(0) scale(1);
}

.consultation-popup__close {
    position: absolute;
    top: 15px;
    right: 17px;
    width: 36px;
    height: 36px;
    padding: 0;
    color: #f7f3ed;
    font-size: 30px;
    font-weight: 300;
    line-height: 1;
    background: transparent;
    border: 0;
    cursor: pointer;
}

.consultation-popup__heading > span {
    color: var(--brand-gold);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.consultation-popup__heading h2 {
    margin: 12px 0 10px;
    color: #fff;
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 500;
    line-height: 1.08;
}

.consultation-popup__heading p {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    line-height: 1.65;
}

.consultation-popup__form {
    display: grid;
    gap: 18px;
    margin-top: 28px;
}

.consultation-popup__form label {
    display: grid;
    gap: 7px;
}

.consultation-popup__form label > span {
    color: rgba(255, 255, 255, 0.78);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.consultation-popup__form input {
    width: 100%;
    height: 48px;
    padding: 0 14px;
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 0;
    outline: none;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.consultation-popup__form input:focus {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--brand-gold);
}

.consultation-popup__honeypot {
    position: absolute !important;
    left: -9999px !important;
}

.consultation-popup__status {
    display: none;
    margin: 0;
    font-size: 14px;
}

.consultation-popup__status.is-success,
.consultation-popup__status.is-error {
    display: block;
}

.consultation-popup__status.is-success {
    color: var(--brand-gold);
}

.consultation-popup__status.is-error {
    color: #ffb0a8;
}

.consultation-popup__submit {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 52px;
    padding: 0 20px;
    color: #1d1915;
    font-weight: 700;
    background: var(--brand-gold);
    border: 1px solid var(--brand-gold);
    cursor: pointer;
    transition: color 0.25s ease, background 0.25s ease;
}

.consultation-popup__submit:hover {
    color: #fff;
    background: transparent;
}

.consultation-popup__submit:disabled {
    cursor: wait;
    opacity: 0.65;
}

@media (max-width: 600px) {
    .consultation-popup {
        padding: 14px;
    }

    .consultation-popup__dialog {
        max-height: calc(100dvh - 28px);
        overflow-y: auto;
        padding: 38px 24px 26px;
    }

    .consultation-popup__heading h2 {
        font-size: 30px;
    }
}

/* Projects listing */
.projects-listing {
    min-height: 100vh;
    color: #fff;
    background: #121212;
}

.projects-listing__hero {
    position: relative;
    display: flex;
    width: 100%;
    height: 450px;
    min-height: 450px;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
    background-color: #332d28;
    background-position: center;
    background-size: cover;
}

.projects-listing__hero--placeholder {
    background:
        linear-gradient(180deg, rgb(40 34 29 / 12%), rgb(18 18 18 / 46%)),
        linear-gradient(135deg, #76695d, #332d28);
}

.projects-listing__hero-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgb(0 0 0 / 8%) 30%, rgb(0 0 0 / 60%) 100%);
}

.projects-listing__hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
    padding: 0 20px 35px;
    text-align: center;
}

.projects-listing__hero h1 {
    margin: 0 0 12px;
    color: #d6ad3a;
    font-family: "Segoe Script", "Brush Script MT", cursive;
    font-size: 55px;
    font-weight: 700;
    line-height: 1.2;
}

.projects-listing__breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    color: #d6ad3a;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.5;
}

.projects-listing__breadcrumb a {
    color: #fff;
    text-decoration: none;
}

.projects-listing__breadcrumb a:hover {
    color: #d6ad3a;
}

.projects-listing__catalog {
    min-height: 500px;
    padding: 0 0 72px;
    background: #121212;
}

.projects-listing__layout {
    display: grid;
    width: min(1188px, calc(100% - 40px));
    margin: 0 auto;
    grid-template-columns: 232px minmax(0, 1fr);
    gap: 26px;
    align-items: start;
    overflow: visible;
}

.projects-listing__sidebar {
    position: sticky;
    top: 104px;
    align-self: start;
    margin-top: 40px;
    overflow: hidden;
    border: 1px solid rgb(255 255 255 / 14%);
    border-radius: 2px;
    background:
        linear-gradient(145deg, rgb(255 255 255 / 7%), transparent 58%),
        #191817;
    box-shadow: 0 22px 60px rgb(0 0 0 / 28%);
}

.projects-listing__sidebar h2 {
    margin: 0;
    padding: 16px 18px 14px;
    color: #fff;
    font-size: 12px;
    font-weight: 650;
    letter-spacing: 0.16em;
    line-height: 1.35;
    text-align: left;
    text-transform: uppercase;
    border-bottom: 1px solid rgb(255 255 255 / 12%);
}

.projects-listing__sidebar nav {
    padding: 6px;
    counter-reset: project-category;
}

.projects-listing__sidebar a {
    position: relative;
    display: grid;
    min-height: 46px;
    padding: 9px 32px 9px 38px;
    color: rgb(255 255 255 / 76%);
    font-size: 12px;
    font-weight: 560;
    letter-spacing: 0.025em;
    line-height: 1.35;
    align-items: center;
    text-decoration: none;
    text-transform: uppercase;
    border-bottom: 1px solid rgb(255 255 255 / 8%);
    counter-increment: project-category;
    transition:
        color 320ms ease,
        background-color 320ms ease,
        padding-left 320ms ease;
}

.projects-listing__sidebar a::before {
    position: absolute;
    left: 12px;
    color: #d6ad3a;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    content: "0" counter(project-category);
}

.projects-listing__sidebar a::after {
    position: absolute;
    right: 12px;
    width: 14px;
    height: 1px;
    background: currentcolor;
    opacity: 0;
    content: "";
    transform: translateX(-8px);
    transition:
        opacity 320ms ease,
        transform 320ms ease;
}

.projects-listing__sidebar a:last-child {
    border-bottom: 0;
}

.projects-listing__sidebar a:hover,
.projects-listing__sidebar a.is-active {
    padding-left: 42px;
    color: #fff;
    background: rgb(205 163 108 / 12%);
}

.projects-listing__sidebar a:hover::after,
.projects-listing__sidebar a.is-active::after {
    opacity: 0.82;
    transform: translateX(0);
}

.projects-listing__sidebar a.is-active {
    box-shadow: inset 3px 0 0 #d6ad3a;
}

.projects-listing__content {
    min-width: 0;
}

.projects-listing__active-title {
    margin: 64px 0 0;
    color: #fff;
    font-size: clamp(24px, 2.2vw, 32px);
    font-weight: 700;
    line-height: 1.25;
    text-align: center;
    text-transform: uppercase;
}

.projects-listing__consultation {
    padding-top: 24px;
    text-align: center;
}

.projects-listing__consultation a {
    position: relative;
    display: inline-flex;
    width: 200px;
    height: 45px;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    background: var(--brand-gold);
    border: 1px solid var(--brand-gold);
}

.projects-listing__consultation a::after {
    position: absolute;
    right: -7px;
    bottom: -7px;
    width: 100%;
    height: 100%;
    border-right: 1px solid var(--brand-gold);
    border-bottom: 1px solid var(--brand-gold);
    content: "";
    pointer-events: none;
}

.projects-listing__grid {
    display: grid;
    margin-top: 30px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: 20px;
    row-gap: 26px;
}

.projects-listing__card {
    min-width: 0;
}

.projects-listing__image {
    display: block;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 1 / 1;
    background: #262626;
}

.projects-listing__image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 700ms ease, opacity 350ms ease;
}

.projects-listing__card:hover .projects-listing__image img {
    transform: scale(1.04);
    opacity: 0.88;
}

.projects-listing__image span {
    display: grid;
    width: 100%;
    height: 100%;
    place-items: center;
    color: rgb(255 255 255 / 55%);
}

.projects-listing__card h3 {
    margin: 10px 0 0;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    text-transform: uppercase;
}

.projects-listing__card h3 a {
    color: #fff;
    text-decoration: none;
}

.projects-listing__card h3 a:hover {
    color: #d6ad3a;
}

.projects-listing__empty {
    margin-top: 30px;
    padding: 60px 20px;
    color: rgb(255 255 255 / 68%);
    text-align: center;
    border: 1px solid rgb(255 255 255 / 25%);
}

@media (max-width: 991px) {
    .projects-listing__layout {
        grid-template-columns: 210px minmax(0, 1fr);
    }

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

@media (max-width: 767px) {
    .projects-listing__hero {
        height: 420px;
        min-height: 420px;
    }

    .projects-listing__hero h1 {
        font-size: 44px;
    }

    .projects-listing__layout {
        display: block;
        width: calc(100% - 30px);
    }

    .projects-listing__sidebar {
        margin-top: 28px;
    }

    .projects-listing__consultation {
        padding-top: 20px;
    }

    .projects-listing__active-title {
        margin-top: 34px;
        font-size: 24px;
    }

    .projects-listing__grid {
        grid-template-columns: 1fr;
    }
}

/* Product category */
.product-category-page {
    min-height: 100vh;
    color: #fff;
    background: #121212;
}

.product-category-hero {
    position: relative;
    display: flex;
    width: 100%;
    height: 450px;
    min-height: 450px;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
    background-color: #332d28;
    background-position: center;
    background-size: cover;
}

.product-category-hero--placeholder {
    background: linear-gradient(135deg, #76695d, #332d28);
}

.product-category-hero__shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgb(0 0 0 / 8%) 25%, rgb(0 0 0 / 64%) 100%);
}

.product-category-hero__content {
    position: relative;
    z-index: 1;
    width: 100%;
    padding: 0 20px 34px;
    text-align: center;
}

.product-category-hero h1 {
    margin: 0 0 10px;
    color: #d6ad3a;
    font-family: "Segoe Script", "Brush Script MT", cursive;
    font-size: 55px;
    font-weight: 700;
    line-height: 1.2;
}

.product-category-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #d6ad3a;
    font-size: 14px;
    font-weight: 700;
}

.product-category-breadcrumb a {
    color: #fff;
    text-decoration: none;
}

.product-category-catalog,
.product-catalog {
    min-height: 420px;
    padding: 40px 0 72px;
    background: #111;
}

.product-category-layout {
    display: grid;
    width: min(1188px, calc(100% - 40px));
    margin: 0 auto;
    grid-template-columns: 232px minmax(0, 1fr);
    gap: 26px;
    align-items: start;
    overflow: visible;
}

.product-category-layout__content {
    min-width: 0;
}

.product-category-layout__content .product-category-card__media {
    aspect-ratio: 1 / 1;
}

.product-category-layout__content .product-category-empty {
    width: 100%;
}

.product-category-layout__title {
    margin: 0 0 28px;
    color: #fff;
    font-size: clamp(24px, 2.2vw, 32px);
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    text-transform: uppercase;
}

.product-catalog__layout {
    display: grid;
    width: min(1188px, calc(100% - 40px));
    margin: 0 auto;
    grid-template-columns: 232px minmax(0, 1fr);
    gap: 26px;
    align-items: start;
    overflow: visible;
}

.catalog-sidebar {
    position: sticky;
    top: 104px;
    z-index: 2;
    align-self: start;
    overflow: hidden;
    color: #f7f3ed;
    background: rgb(20 18 16 / 94%);
    border: 1px solid rgb(210 168 105 / 42%);
    box-shadow: 0 18px 48px rgb(0 0 0 / 22%);
}

.catalog-sidebar h2 {
    margin: 0;
    padding: 16px 18px 14px;
    color: var(--brand-gold);
    border-bottom: 1px solid rgb(210 168 105 / 32%);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.catalog-sidebar nav {
    padding: 6px;
    counter-reset: catalog-category;
}

.catalog-sidebar a {
    position: relative;
    display: flex;
    min-height: 46px;
    padding: 9px 32px 9px 38px;
    align-items: center;
    color: rgb(255 255 255 / 82%);
    border-bottom: 1px solid rgb(255 255 255 / 10%);
    font-size: 12px;
    font-weight: 600;
    line-height: 1.35;
    text-decoration: none;
    transition: color 260ms ease, background-color 260ms ease, padding-left 260ms ease;
}

.catalog-sidebar a:last-child {
    border-bottom: 0;
}

.catalog-sidebar a::before {
    position: absolute;
    left: 12px;
    color: var(--brand-gold);
    content: "0" counter(catalog-category);
    counter-increment: catalog-category;
    font-size: 9px;
}

.catalog-sidebar a::after {
    position: absolute;
    right: 12px;
    width: 14px;
    height: 1px;
    background: var(--brand-gold);
    content: "";
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 260ms ease;
}

.catalog-sidebar a:hover,
.catalog-sidebar a:focus-visible,
.catalog-sidebar a.is-active {
    padding-left: 42px;
    color: #fff;
    background: linear-gradient(90deg, rgb(210 168 105 / 20%), transparent 82%);
}

.catalog-sidebar a:hover::after,
.catalog-sidebar a:focus-visible::after,
.catalog-sidebar a.is-active::after {
    transform: scaleX(1);
}

.product-category-grid {
    display: grid;
    width: 100%;
    margin: 0;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: 20px;
    row-gap: 82px;
}

.product-category-card {
    min-width: 0;
}

.product-category-card__media {
    display: block;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 4 / 2.25;
    background: #242424;
}

.product-category-card__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 700ms ease, opacity 350ms ease;
}

.product-category-card:hover .product-category-card__media img {
    transform: scale(1.045);
    opacity: 0.86;
}

.product-category-card__media span {
    display: grid;
    width: 100%;
    height: 100%;
    place-items: center;
    color: rgb(255 255 255 / 60%);
}

.product-category-card h3 {
    margin: 15px 0 0;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.35;
    text-transform: uppercase;
}

.product-category-card h3 a {
    color: #fff;
    text-decoration: none;
}

.product-category-card h3 a:hover {
    color: #d6ad3a;
}

.product-category-empty {
    width: min(1188px, calc(100% - 40px));
    margin: 0 auto;
    padding: 70px 20px;
    color: rgb(255 255 255 / 70%);
    text-align: center;
    border: 1px solid rgb(255 255 255 / 18%);
}

@media (max-width: 991px) {
    .product-category-layout,
    .product-catalog__layout {
        grid-template-columns: 210px minmax(0, 1fr);
    }

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

@media (max-width: 767px) {
    .projects-listing__sidebar,
    .catalog-sidebar {
        position: static;
        top: auto;
    }

    .product-category-layout,
    .product-catalog__layout {
        display: block;
        width: calc(100% - 30px);
    }

    .product-category-layout__sidebar,
    .product-catalog__sidebar {
        margin-bottom: 28px;
    }

    .product-category-hero {
        height: 420px;
        min-height: 420px;
    }

    .product-category-hero h1 {
        font-size: 44px;
    }

    .product-category-breadcrumb {
        flex-wrap: wrap;
        font-size: 12px;
    }

    .product-category-catalog,
    .product-catalog {
        padding-top: 28px;
    }

    .product-category-empty {
        width: calc(100% - 30px);
    }

    .product-category-grid {
        grid-template-columns: 1fr;
        row-gap: 42px;
    }
}

/* Interior service detail */
.service-detail {
    min-height: 100vh;
    color: #fff;
    background: #121212;
}

.service-detail__hero {
    position: relative;
    display: flex;
    width: 100%;
    height: 450px;
    min-height: 450px;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
    background-color: #332d28;
    background-position: center;
    background-size: cover;
}

.service-detail__hero--placeholder {
    background:
        linear-gradient(180deg, rgb(40 34 29 / 12%), rgb(18 18 18 / 46%)),
        linear-gradient(135deg, #76695d, #332d28);
}

.service-detail__hero-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgb(0 0 0 / 8%) 30%, rgb(0 0 0 / 60%) 100%);
}

.service-detail__hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
    padding: 0 20px 35px;
    text-align: center;
}

.service-detail__hero h1 {
    margin: 0 0 12px;
    color: #d6ad3a;
    font-family: "Segoe Script", "Brush Script MT", cursive;
    font-size: 55px;
    font-weight: 700;
    line-height: 1.2;
}

.service-detail__breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    color: #d6ad3a;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.5;
}

.service-detail__breadcrumb a,
.service-detail__breadcrumb span:nth-child(3) {
    color: #fff;
    text-decoration: none;
}

.service-detail__breadcrumb a:hover {
    color: #d6ad3a;
}

.service-detail__main {
    width: min(1188px, calc(100% - 40px));
    margin: 0 auto;
    padding: 34px 0 72px;
}

.service-detail__label {
    margin: 0;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
    text-transform: uppercase;
}

.service-detail__main > h2 {
    margin: 26px 0 46px;
    color: #fff;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.35;
    text-align: center;
    text-transform: uppercase;
}

.service-detail__cover {
    margin: 0;
}

.service-detail__cover img {
    display: block;
    width: 100%;
    aspect-ratio: 2.845 / 1;
    object-fit: cover;
}

.service-detail__content {
    padding: 38px 0 20px;
    color: rgb(255 255 255 / 90%);
    font-size: 16px;
    line-height: 2;
}

.service-detail__content p {
    margin: 0 0 18px;
}

.service-detail__content strong {
    color: var(--brand-gold);
}

.service-detail__content img {
    max-width: 100%;
    height: auto;
}

.service-detail__content table {
    width: 100% !important;
    max-width: 100%;
}

.service-detail__gallery {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: 18px;
}

.service-detail__gallery figure {
    margin: 0;
    overflow: hidden;
    background: #252525;
}

.service-detail__gallery img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 330px;
    object-fit: cover;
    transition: transform 700ms ease;
}

.service-detail__gallery figure:hover img {
    transform: scale(1.025);
}

.service-detail__consultation {
    padding: 42px 0 28px;
    text-align: center;
}

.service-detail__consultation a {
    position: relative;
    display: inline-flex;
    min-width: 198px;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    background: var(--brand-gold);
    border: 1px solid var(--brand-gold);
}

.service-detail__consultation a::after {
    position: absolute;
    right: -8px;
    bottom: -8px;
    width: 100%;
    height: 100%;
    border-right: 1px solid var(--brand-gold);
    border-bottom: 1px solid var(--brand-gold);
    content: "";
    pointer-events: none;
}

.service-detail__share,
.service-detail__related {
    margin-top: 28px;
    padding: 20px 16px;
    color: #fff;
    background: #5b5b5b;
    border-radius: 4px;
}

.service-detail__share-links {
    display: flex;
    gap: 5px;
    margin-top: 9px;
}

.service-detail__share-links a {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    background: #2787d9;
}

.service-detail__related ul {
    margin: 12px 0 0;
    padding-left: 18px;
}

.service-detail__related li + li {
    margin-top: 7px;
}

.service-detail__related a {
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
}

.service-detail__related a:hover {
    color: #d6ad3a;
}

@media (max-width: 767px) {
    .service-detail__hero {
        height: 420px;
        min-height: 420px;
    }

    .service-detail__hero h1 {
        font-size: 44px;
    }

    .service-detail__breadcrumb {
        flex-wrap: wrap;
        gap: 6px;
    }

    .service-detail__main {
        width: calc(100% - 30px);
        padding-top: 28px;
    }

    .service-detail__label {
        font-size: 16px;
    }

    .service-detail__main > h2 {
        margin: 22px 0 32px;
        font-size: 28px;
    }

    .service-detail__cover img {
        aspect-ratio: 16 / 10;
    }

    .service-detail__content {
        font-size: 15px;
        line-height: 1.8;
    }

    .service-detail__gallery {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .service-detail__gallery img {
        min-height: 220px;
    }
}

body {
    color: var(--color-text);
    background: var(--color-background);
}

/* Remove Frappe's default website frame from our custom pages. */

.web-footer,
.page-breadcrumbs,
.page-header {
    display: none !important;
}

.web-page-content,
.page_content,
main.container {
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Shared website header */

.navbar {
    display: none !important;
}

/* Shared social shortcuts: present beside every public page. */

.site-social-rail {
    position: fixed;
    z-index: 540;
    bottom: 74px;
    left: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.site-social-rail > a,
.site-social-rail > span {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    color: white;
    background: rgb(16 15 13 / 50%);
    border: 1px solid rgb(255 255 255 / 82%);
    border-radius: 50%;
    text-decoration: none;
    backdrop-filter: blur(6px);
    transition:
        color 200ms ease,
        background 200ms ease,
        border-color 200ms ease,
        transform 200ms ease;
}

.site-social-rail > a:hover,
.site-social-rail > a:focus-visible {
    color: #171512;
    background: var(--brand-gold);
    border-color: var(--brand-gold);
    outline: none;
    transform: translateX(4px);
}

.site-social-rail > .is-disabled {
    cursor: help;
    opacity: 0.48;
}

.site-social-rail svg {
    width: 24px;
    height: 24px;
    fill: currentcolor;
    stroke: rgb(16 15 13 / 72%);
    stroke-width: 0.7;
}

.site-social-rail .site-social-rail__location {
    fill: none;
    stroke: currentcolor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.site-social-rail__facebook {
    font-family: Arial, sans-serif;
    font-size: 27px;
    font-weight: 700;
    line-height: 1;
}

.site-social-rail__zalo {
    font-family: Arial, sans-serif;
    font-size: 10px;
    font-weight: 750;
    letter-spacing: -0.04em;
}

.main-header {
    position: relative;
    z-index: 500;
    display: flex;
    width: 100%;
    min-height: 112px;
    align-items: center;
    padding-right: max(4vw, calc((100vw - 1320px) / 2));
    padding-left: max(4vw, calc((100vw - 1320px) / 2));
    color: white;
    background: #211e1b;
    border-bottom: 1px solid rgb(255 255 255 / 25%);
    transition:
        min-height 250ms ease,
        background 250ms ease,
        border-color 250ms ease,
        backdrop-filter 250ms ease;
}

.main-header--transparent {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    background: linear-gradient(180deg, rgb(7 7 6 / 66%), rgb(7 7 6 / 16%) 74%, transparent);
    border-bottom-color: transparent;
}

.main-header--transparent.is-scrolled {
    min-height: 92px;
    background: linear-gradient(
        180deg,
        rgb(8 8 7 / 70%),
        rgb(8 8 7 / 24%) 78%,
        transparent
    );
    border-bottom-color: transparent;
    backdrop-filter: blur(4px);
}

.main-header__brand {
    display: flex;
    align-items: center;
    gap: 15px;
    color: inherit;
    text-decoration: none;
}

.main-header__brand:hover {
    color: inherit;
    text-decoration: none;
}

.main-header__logo {
    position: relative;
    display: grid;
    width: 70px;
    height: 70px;
    place-items: center;
    font-size: 18px;
    font-weight: 700;
    border: 1px solid currentColor;
    isolation: isolate;
}

.main-header__logo > img {
    position: relative;
    z-index: 1;
    display: block;
    width: 88%;
    height: 88%;
    object-fit: contain;
    filter: drop-shadow(0 0 5px rgb(239 194 76 / 28%));
}

.main-header--transparent .main-header__logo {
    background: rgb(0 0 0 / 16%);
}

.main-header__logo::before {
    position: absolute;
    z-index: 2;
    inset: -4px;
    padding: 2px;
    border-radius: 3px;
    background: conic-gradient(
        from 0deg,
        transparent 0 58%,
        rgb(255 255 255 / 8%) 68%,
        rgb(255 244 173 / 78%) 78%,
        white 84%,
        rgb(255 211 128 / 62%) 90%,
        transparent 100%
    );
    content: "";
    filter: drop-shadow(0 0 5px rgb(255 239 174 / 90%));
    pointer-events: none;
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: brand-border-orbit 3.2s linear infinite;
}

@keyframes brand-border-orbit {
    to {
        transform: rotate(1turn);
    }
}

.main-header__brand-text {
    display: flex;
    flex-direction: column;
}

.main-header__brand-text strong {
    font-size: 16px;
    letter-spacing: 0.12em;
}

.main-header__brand-text small {
    margin-top: 5px;
    font-size: 9px;
    letter-spacing: 0.16em;
}

.main-navigation {
    display: flex;
    align-items: center;
    gap: clamp(16px, 2vw, 34px);
    margin-left: auto;
}

.main-navigation__mobile-contact {
    display: none;
}

.main-navigation > a,
.main-navigation__dropdown > button,
.main-navigation__dropdown > .main-navigation__dropdown-link {
    padding: 38px 0;
    color: inherit;
    font-size: 13px;
    font-weight: 620;
    background: none;
    border: 0;
    text-decoration: none;
}

.main-header--transparent.is-scrolled .main-navigation > a,
.main-header--transparent.is-scrolled .main-navigation__dropdown > button,
.main-header--transparent.is-scrolled .main-navigation__dropdown > .main-navigation__dropdown-link {
    padding-top: 28px;
    padding-bottom: 28px;
}

.main-navigation > a:hover,
.main-navigation__dropdown > button:hover,
.main-navigation__dropdown > .main-navigation__dropdown-link:hover {
    color: #d6ad3a;
}

.main-navigation__dropdown > button:focus-visible,
.main-navigation__dropdown > .main-navigation__dropdown-link:focus-visible {
    color: #d6ad3a;
    outline: 0;
}

.main-navigation__dropdown {
    position: relative;
    display: flex;
    align-items: center;
}

.main-navigation__dropdown > .main-navigation__dropdown-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    line-height: inherit;
}

.main-navigation__submenu {
    position: absolute;
    top: 100%;
    left: -12px;
    display: block;
    min-width: 208px;
    padding: 5px;
    visibility: hidden;
    opacity: 0;
    background: rgb(18 16 14 / 90%);
    border: 1px solid rgb(255 255 255 / 13%);
    box-shadow: 0 16px 34px rgb(0 0 0 / 24%);
    backdrop-filter: blur(14px);
    pointer-events: none;
    backface-visibility: hidden;
    transform: perspective(720px) rotateX(-88deg) translateY(-4px);
    transform-origin: top left;
    will-change: transform, opacity;
    transition:
        opacity 440ms ease,
        visibility 680ms,
        transform 680ms cubic-bezier(0.2, 0.72, 0.2, 1);
}

.main-navigation__submenu a {
    display: block;
    padding: 8px 14px;
    color: rgb(255 255 255 / 90%);
    border-bottom: 1px solid rgb(255 255 255 / 10%);
    font-size: 12px;
    line-height: 1.25;
    text-decoration: none;
    white-space: nowrap;
    transition:
        color 180ms ease,
        background 180ms ease,
        padding-left 180ms ease;
}

.main-navigation__submenu a:last-child {
    border-bottom: 0;
}

.main-navigation__submenu a:hover {
    padding-left: 18px;
    color: #f0c58f;
    background: rgb(255 255 255 / 7%);
}

.main-navigation__submenu--products {
    display: block;
    width: 250px;
    padding: 0;
}

.main-navigation__submenu-item--has-children {
    position: relative;
}

.main-navigation__submenu--products a {
    min-height: 41px;
    padding: 12px 14px;
    white-space: normal;
}

.main-navigation__submenu-item--has-children > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.main-navigation__submenu-item--has-children > a span {
    margin-left: 14px;
    font-size: 20px;
    line-height: 0.8;
    transition: transform 420ms ease;
}

.main-navigation__submenu-secondary {
    position: absolute;
    top: -1px;
    left: 100%;
    width: 250px;
    visibility: hidden;
    opacity: 0;
    background: rgb(18 16 14 / 94%);
    border: 1px solid rgb(255 255 255 / 13%);
    box-shadow: 16px 18px 34px rgb(0 0 0 / 24%);
    backdrop-filter: blur(14px);
    pointer-events: none;
    backface-visibility: hidden;
    transform: perspective(720px) rotateY(-88deg) translateX(-6px);
    transform-origin: left center;
    will-change: transform, opacity;
    transition:
        opacity 440ms ease,
        visibility 680ms,
        transform 680ms cubic-bezier(0.2, 0.72, 0.2, 1);
}

.main-navigation__submenu-item--has-children:hover > a span {
    transform: translateX(3px);
}

.main-navigation__submenu-item--has-children:hover .main-navigation__submenu-secondary {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: perspective(720px) rotateY(0deg) translateX(0);
}

.main-navigation__dropdown:hover .main-navigation__submenu {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: perspective(720px) rotateX(0deg) translateY(0);
}

.main-header__contact {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    gap: 18px;
    margin-left: 10px;
    padding: 0 18px;
    color: #211e1b;
    background: linear-gradient(135deg, #f0d77a, #d6ad3a);
    border: 1px solid rgb(255 255 255 / 42%);
    box-shadow: 0 10px 28px rgb(0 0 0 / 18%);
    font-size: 12px;
    font-weight: 750;
    letter-spacing: 0.08em;
    text-decoration: none;
    text-transform: uppercase;
    transition: color 220ms ease, background 220ms ease, transform 220ms ease;
}

.main-header__contact:hover {
    color: white;
    background: rgb(18 16 14 / 86%);
    transform: translateY(-2px);
    text-decoration: none;
}

.main-header__search-toggle {
    display: grid;
    width: 38px;
    height: 42px;
    place-items: center;
    padding: 0;
    color: inherit;
    background: transparent;
    border: 0;
}

.main-header__search {
    position: relative;
    margin-left: clamp(14px, 1.8vw, 28px);
}

.main-header__search-toggle {
    display: flex;
    align-items: center;
}

.main-header__search-toggle svg {
    width: 19px;
    height: 19px;
    fill: none;
    stroke: currentcolor;
    stroke-width: 1.6;
}

.main-header__search-panel {
    position: absolute;
    z-index: 620;
    top: calc(100% + 4px);
    right: 0;
    visibility: hidden;
    width: 190px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-6px);
    transition: opacity 220ms ease, transform 220ms ease, visibility 220ms ease;
}

.main-header__search.is-open .main-header__search-panel {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.main-header__search-panel form {
    display: flex;
    width: 100%;
    height: 38px;
    background: #fff;
    box-shadow: 0 12px 30px rgb(0 0 0 / 20%);
}

.main-header__search-panel input {
    width: calc(100% - 40px);
    min-width: 0;
    height: 38px;
    padding: 0 12px;
    color: #292520;
    background: #fff;
    border: 0;
    outline: none;
    font-size: 13px;
}

.main-header__search-panel input:focus {
    box-shadow: inset 0 0 0 1px #d6ad3a;
}

.main-header__search-panel .main-header__search-submit {
    display: grid;
    width: 40px;
    min-width: 40px;
    height: 38px;
    place-items: center;
    padding: 0;
    color: #292520;
    background: #fff;
    border: 0;
}

.main-header__search-submit svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentcolor;
    stroke-width: 1.6;
}

.main-header__toggle {
    display: none;
}

/* Shared website footer */

.site-footer {
    position: relative;
    overflow: hidden;
    min-height: 460px;
    color: rgb(255 255 255 / 82%);
    background:
        radial-gradient(circle at 50% 42%, rgb(255 255 255 / 5%), transparent 38%),
        linear-gradient(135deg, #252523 0%, #343432 52%, #1d1d1c 100%);
}

.site-footer__pattern {
    position: absolute;
    inset: -30%;
    opacity: 0.16;
    background:
        repeating-radial-gradient(
            ellipse at 15% 35%,
            transparent 0 17px,
            rgb(255 255 255 / 52%) 18px 19px,
            transparent 20px 34px
        );
    transform: rotate(-9deg) scale(1.15);
    pointer-events: none;
}

.site-footer__inner {
    position: relative;
    z-index: 1;
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
    padding: 34px 0 20px;
}

.site-footer a,
.site-footer__contact-line {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition);
}

.site-footer a:hover {
    color: #d6ad3a;
    text-decoration: none;
}

.site-footer__introduction {
    display: flex;
    max-width: 800px;
    margin: 0 auto 34px;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.site-footer__identity {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: white !important;
}

.site-footer__logo {
    display: grid;
    width: 78px;
    height: 78px;
    place-items: center;
    color: #d6ad3a;
    border: 1px solid rgb(255 255 255 / 58%);
    box-shadow: 0 12px 34px rgb(0 0 0 / 18%);
}

.site-footer__logo img {
    display: block;
    width: 82%;
    height: 82%;
    object-fit: contain;
}

.site-footer__brand-name {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(25px, 2.4vw, 34px);
    letter-spacing: 0.025em;
    text-transform: uppercase;
}

.site-footer__introduction > p {
    margin: 9px 0 0;
    color: #d6ad3a;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
}

.site-footer__introduction > span,
.site-footer__introduction > a:last-child {
    max-width: 720px;
    font-size: 13px;
    line-height: 1.7;
}

.site-footer__grid {
    display: grid;
    padding: 0 0 28px;
    grid-template-columns: minmax(250px, 1.12fr) minmax(250px, 1fr) minmax(190px, 0.78fr) minmax(290px, 1.2fr);
    gap: clamp(24px, 3vw, 46px);
}

.site-footer__column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 9px;
}

.site-footer__column h2 {
    position: relative;
    margin: 0 0 12px;
    padding-bottom: 9px;
    color: white;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.site-footer__column h2::after {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 34px;
    height: 2px;
    content: "";
    background: #d6ad3a;
}

.site-footer__contact-line {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.45;
    white-space: nowrap;
}

.site-footer__contact-line--address {
    width: 100%;
    min-width: 0;
    white-space: normal;
}

.site-footer__contact-line--address > span:last-child {
    min-width: 0;
    overflow-wrap: break-word;
}

.site-footer__icon {
    display: inline-grid;
    flex: 0 0 18px;
    width: 18px;
    height: 18px;
    place-items: center;
    color: #d6ad3a;
    text-align: center;
}

.site-footer__icon svg,
.site-footer__socials svg {
    display: block;
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentcolor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.site-footer__socials svg {
    width: 15px;
    height: 15px;
}

.site-footer__links-grid {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px 24px;
}

.site-footer__links-grid a,
.site-footer__column[aria-label="Chính sách"] > a {
    font-size: 15px;
    font-weight: 500;
    line-height: 1.45;
    white-space: nowrap;
}

@media (min-width: 992px) and (max-width: 1230px) {
    .site-footer__inner {
        width: min(1180px, calc(100% - 32px));
    }

    .site-footer__grid {
        grid-template-columns: minmax(220px, 1.05fr) minmax(225px, 1fr) minmax(170px, 0.75fr) minmax(260px, 1.12fr);
        gap: 20px;
    }

    .site-footer__contact-line,
    .site-footer__links-grid a,
    .site-footer__column[aria-label="Chính sách"] > a {
        font-size: 14px;
    }

    .site-footer__links-grid {
        column-gap: 16px;
    }
}

.site-footer__newsletter > p {
    margin: -4px 0 5px;
    font-size: 13px;
    line-height: 1.6;
}

.site-footer__newsletter form {
    display: flex;
    width: 100%;
    overflow: hidden;
    border: 1px solid rgb(255 255 255 / 60%);
    border-radius: 999px;
}

.site-footer__newsletter input {
    min-width: 0;
    height: 44px;
    flex: 1;
    padding: 0 16px;
    color: white;
    background: transparent;
    border: 0;
    outline: 0;
}

.site-footer__newsletter input::placeholder {
    color: rgb(255 255 255 / 65%);
}

.site-footer__newsletter button {
    min-width: 78px;
    padding: 0 18px;
    color: #1f1d1b;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    background: #d6ad3a;
    border: 0;
}

.site-footer__newsletter button:disabled {
    cursor: wait;
    opacity: 0.72;
}

.site-footer__newsletter-honeypot {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
}

.site-footer__newsletter-status {
    min-height: 20px;
    margin: 8px 4px 0 !important;
    font-size: 12px !important;
    line-height: 1.5 !important;
}

.site-footer__newsletter-status.is-success {
    color: #c9e7d4;
}

.site-footer__newsletter-status.is-error {
    color: #ffd1cc;
}

.site-footer__socials {
    display: flex;
    gap: 10px;
    margin-top: 12px;
}

.site-footer__socials a {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    color: white;
    font-weight: 700;
    border: 1px solid rgb(255 255 255 / 45%);
    border-radius: 50%;
}

.site-footer__bottom {
    display: flex;
    padding: 14px 0 0;
    justify-content: space-between;
    gap: 24px;
    font-size: 11px;
    letter-spacing: 0.04em;
    border-top: 1px solid rgb(255 255 255 / 13%);
}

.site-footer__hotline {
    position: fixed;
    z-index: 540;
    bottom: 22px;
    left: 18px;
    display: flex;
    min-height: 42px;
    align-items: center;
    gap: 9px;
    padding: 0 20px;
    color: #211f1d !important;
    background: #d6ad3a;
    border-radius: 999px;
    box-shadow: 0 10px 26px rgb(0 0 0 / 24%);
}

.site-footer__hotline strong {
    font-size: 13px;
    letter-spacing: 0.04em;
}

/* Project listing */

.projects-page {
    width: 100%;
    background: var(--color-background);
}

.projects-page__hero,
.project-detail__hero {
    position: relative;
    display: flex;
    min-height: clamp(520px, 72vh, 760px);
    align-items: flex-end;
    color: white;
    background-position: center;
    background-size: cover;
}

.projects-page__hero--placeholder,
.project-detail__hero--placeholder {
    background-image: linear-gradient(135deg, #665c53, #201d1a);
}

.projects-page__hero-overlay,
.project-detail__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgb(15 13 12 / 42%) 0%,
        rgb(15 13 12 / 20%) 42%,
        rgb(15 13 12 / 76%) 100%
    );
}

.projects-page__hero-content,
.project-detail__hero-content {
    position: relative;
    z-index: 1;
    width: min(var(--content-width), calc(100% - 48px));
    margin: 0 auto;
    padding: 180px 0 72px;
}

.projects-page__hero-content {
    max-width: var(--content-width);
}

.projects-page__catalog {
    width: min(var(--content-width), calc(100% - 48px));
    margin: 0 auto;
    padding: 88px 0 120px;
}

.projects-page__filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 42px;
}

.projects-page__filters a {
    display: inline-flex;
    min-height: 46px;
    align-items: center;
    padding: 0 20px;
    color: #514a43;
    background: transparent;
    border: 1px solid rgb(42 37 32 / 20%);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-decoration: none;
    text-transform: uppercase;
    transition:
        color 220ms ease,
        background 220ms ease,
        border-color 220ms ease;
}

.projects-page__filters a:hover,
.projects-page__filters a.is-active {
    color: white;
    background: #29241f;
    border-color: #29241f;
}

.projects-page__eyebrow,
.project-detail__category,
.project-card__category {
    color: var(--color-accent);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.projects-page h1,
.project-detail h1 {
    color: white;
    font-size: clamp(44px, 7vw, 84px);
    line-height: 1.05;
}

.projects-page h1,
.project-detail h1 {
    max-width: 900px;
    margin: 14px 0 24px;
}

.projects-page__introduction {
    max-width: 720px;
    margin: 0;
    color: rgb(255 255 255 / 88%);
    font-size: 18px;
    line-height: 1.8;
}

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

/* Reusable project card */

.project-card {
    overflow: hidden;
    background: var(--color-surface);
}

.project-card__link {
    display: block;
    color: inherit;
    text-decoration: none;
}

.project-card__link:hover {
    color: inherit;
    text-decoration: none;
}

.project-card__image,
.project-card__placeholder {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
}

.project-card__image {
    object-fit: cover;
    transition: transform var(--transition);
}

.project-card__link:hover .project-card__image {
    transform: scale(1.03);
}

.project-card__placeholder {
    display: grid;
    place-items: center;
    color: var(--color-muted);
    background: linear-gradient(135deg, #ded5ca, #f3eee8);
}

.project-card__content {
    padding: 28px;
}

.project-card__title {
    margin: 8px 0 12px;
    font-size: 28px;
    line-height: 1.25;
}

.project-card__location,
.project-card__description {
    color: var(--color-muted);
}

.project-card__description {
    margin-top: 16px;
    line-height: 1.7;
}

/* Project detail */

.project-detail {
    width: 100%;
    background: var(--color-background);
}

.project-detail__body {
    width: min(var(--content-width), calc(100% - 48px));
    margin: 0 auto;
    padding: 72px 0 120px;
}

.project-detail__summary {
    max-width: 720px;
    margin: 0;
    color: rgb(255 255 255 / 88%);
    font-size: 19px;
    line-height: 1.8;
}

.project-detail__information {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin: 48px 0;
    padding: 28px 0;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.project-detail__information div {
    padding: 0 24px;
    border-right: 1px solid var(--color-border);
}

.project-detail__information div:first-child {
    padding-left: 0;
}

.project-detail__information div:last-child {
    border-right: 0;
}

.project-detail__information dt {
    margin-bottom: 8px;
    color: var(--color-muted);
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.project-detail__information dd {
    margin: 0;
    font-size: 18px;
}

.project-detail__description {
    max-width: 820px;
    font-size: 17px;
    line-height: 1.85;
}

/* Global Decoration-inspired project detail */

.project-showcase {
    min-height: 100vh;
    color: #fff;
    background: #111;
}

.project-showcase__hero {
    position: relative;
    display: flex;
    height: 450px;
    min-height: 450px;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
    background-color: #332d28;
    background-position: center;
    background-size: cover;
}

.project-showcase__hero--placeholder {
    background: linear-gradient(135deg, #76695d, #332d28);
}

.project-showcase__hero-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgb(0 0 0 / 8%) 28%, rgb(0 0 0 / 64%) 100%);
}

.project-showcase__hero-content {
    position: relative;
    z-index: 1;
    width: min(1188px, calc(100% - 40px));
    padding-bottom: 34px;
    text-align: center;
}

.project-showcase__hero h2 {
    margin: 0 0 12px;
    color: #d6ad3a;
    font-family: "Segoe Script", "Brush Script MT", cursive;
    font-size: 55px;
    font-weight: 700;
    line-height: 1.2;
}

.project-showcase__breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 9px;
    color: #d6ad3a;
    font-size: 14px;
    font-weight: 700;
}

.project-showcase__breadcrumb a {
    color: #fff;
    text-decoration: none;
}

.project-showcase__breadcrumb a:hover {
    color: #d6ad3a;
}

.project-showcase__main {
    width: min(1188px, calc(100% - 40px));
    margin: 0 auto;
    padding: 56px 0 92px;
}

.project-showcase__overview {
    display: grid;
    grid-template-columns: minmax(0, 590px) minmax(300px, 1fr);
    gap: clamp(34px, 4.5vw, 68px);
    align-items: start;
}

.project-showcase__media {
    min-width: 0;
}

.project-showcase__featured-image {
    display: block;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 1 / 1;
    margin: 0;
    padding: 6px;
    background: #24211f;
    border: 1px solid rgb(255 255 255 / 72%);
    border-radius: 2px;
}

.project-showcase__featured-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 360ms ease, transform 800ms ease;
}

.project-showcase__featured-image:hover img {
    transform: scale(1.015);
}

.project-showcase__overview.is-changing .project-showcase__featured-image img {
    opacity: 0.2;
    transform: scale(0.985);
}

.project-showcase__thumbnails {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 10px;
    margin: 12px 22px 0;
}

.project-showcase__thumbnail {
    display: block;
    overflow: hidden;
    min-width: 0;
    aspect-ratio: 1 / 1;
    padding: 4px;
    cursor: pointer;
    background: #f4f1ec;
    border: 1px solid transparent;
    border-radius: 2px;
    transition: border-color 280ms ease, transform 280ms ease, opacity 280ms ease;
}

.project-showcase__thumbnail img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-showcase__thumbnail:hover,
.project-showcase__thumbnail:focus-visible {
    border-color: var(--brand-gold);
    outline: none;
    transform: translateY(-4px);
}

.project-showcase__thumbnail.is-active {
    border-color: var(--brand-gold);
    box-shadow: 0 0 0 1px var(--brand-gold);
}

.project-showcase__summary-panel {
    padding-top: 2px;
}

.project-showcase__summary-panel h1 {
    margin: 0 0 30px;
    color: #fff;
    font-size: clamp(26px, 2.3vw, 38px);
    font-weight: 700;
    line-height: 1.25;
    text-align: left;
}

.project-showcase__information {
    display: flex;
    width: 100%;
    flex-direction: column;
    gap: 0;
    margin: 0;
    padding: 10px 0;
    border-top: 1px solid rgb(255 255 255 / 25%);
    border-bottom: 1px solid rgb(255 255 255 / 25%);
}

.project-showcase__information div {
    display: grid;
    grid-template-columns: minmax(110px, 0.42fr) minmax(0, 1fr);
    gap: 20px;
    padding: 13px 2px;
}

.project-showcase__information div + div {
    border-top: 1px solid rgb(255 255 255 / 10%);
}

.project-showcase__information dt,
.project-showcase__information dd {
    margin: 0;
    font-size: 16px;
    line-height: 1.65;
}

.project-showcase__information dt {
    color: var(--brand-gold);
    font-weight: 700;
    letter-spacing: 0.02em;
}

.project-showcase__information dd {
    color: rgb(255 255 255 / 88%);
}

.project-showcase__details {
    width: min(960px, 100%);
    margin: 72px auto 0;
}

.project-showcase__details > h2 {
    margin: 0 0 32px;
    padding: 14px 20px;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    border: 1px solid rgb(255 255 255 / 30%);
}

.project-showcase__description {
    margin-bottom: 34px;
    color: rgb(255 255 255 / 86%);
    font-size: 16px;
    line-height: 1.9;
}

.project-showcase__description p {
    margin: 0 0 18px;
}

.project-showcase__description img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 28px auto;
}

.project-showcase__gallery {
    display: grid;
    gap: 48px;
}

.project-showcase__gallery-item {
    margin: 0;
}

.project-showcase__gallery a,
.project-showcase__gallery img {
    display: block;
    width: 100%;
}

.project-showcase__gallery a {
    overflow: hidden;
    background: #24211f;
}

.project-showcase__gallery img {
    height: auto;
    transition: transform 800ms ease;
}

.project-showcase__gallery a:hover img {
    transform: scale(1.012);
}

.project-showcase__gallery figcaption {
    display: flex;
    width: fit-content;
    max-width: min(720px, calc(100% - 40px));
    min-height: 42px;
    align-items: center;
    justify-content: center;
    margin: 18px auto 2px;
    padding: 9px 24px;
    color: rgb(255 255 255 / 86%);
    font-size: 15px;
    line-height: 1.65;
    text-align: center;
    background: #191816;
    border: 1px solid rgb(218 175 47 / 42%);
    box-shadow: 0 8px 24px rgb(0 0 0 / 18%);
}

.project-showcase__consultation {
    margin-top: 42px;
    text-align: center;
}

.project-showcase__consultation a {
    position: relative;
    display: inline-flex;
    min-width: 210px;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    background: var(--brand-gold);
    border: 1px solid var(--brand-gold);
}

.project-showcase__consultation a::after {
    position: absolute;
    right: -7px;
    bottom: -7px;
    width: 100%;
    height: 100%;
    border-right: 1px solid var(--brand-gold);
    border-bottom: 1px solid var(--brand-gold);
    content: "";
}

@media (max-width: 991px) {
    .project-showcase__overview {
        grid-template-columns: 1fr;
    }

    .project-showcase__media,
    .project-showcase__summary-panel {
        width: min(620px, 100%);
        margin: 0 auto;
    }
}

@media (max-width: 767px) {
    .project-showcase__hero {
        height: 420px;
        min-height: 420px;
    }

    .project-showcase__hero h2 {
        font-size: 44px;
    }

    .project-showcase__main {
        width: calc(100% - 30px);
        padding-top: 34px;
    }

    .project-showcase__summary-panel h1 {
        margin-bottom: 24px;
        font-size: 34px;
    }

    .project-showcase__thumbnails {
        gap: 7px;
        margin-right: 0;
        margin-left: 0;
    }

    .project-showcase__information div {
        grid-template-columns: minmax(90px, 0.42fr) minmax(0, 1fr);
        gap: 14px;
    }

    .project-showcase__information dt,
    .project-showcase__information dd {
        font-size: 14px;
    }

    .project-showcase__gallery {
        gap: 34px;
    }

    .project-showcase__gallery figcaption {
        width: calc(100% - 24px);
        max-width: none;
        min-height: 38px;
        margin-top: 12px;
        padding: 8px 14px;
        font-size: 14px;
    }
}

/* Product detail */

.product-detail-page {
    min-height: 100vh;
    padding: 132px 24px 100px;
    color: #fff;
    background: #111;
}

.product-detail-layout {
    display: grid;
    width: min(1220px, 100%);
    margin: 0 auto;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 32px;
    align-items: start;
}

.catalog-sidebar--related nav {
    max-height: calc(100vh - 252px);
    overflow-y: auto;
    scrollbar-color: rgb(210 168 105 / 55%) transparent;
    scrollbar-width: thin;
}

.catalog-sidebar--related .catalog-sidebar__all {
    min-height: 44px;
    justify-content: space-between;
    padding: 10px 16px;
    color: var(--brand-gold);
    border-top: 1px solid rgb(210 168 105 / 32%);
    border-bottom: 0;
    font-size: 10px;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.catalog-sidebar--related .catalog-sidebar__all::before,
.catalog-sidebar--related .catalog-sidebar__all::after {
    display: none;
}

.catalog-sidebar--related .catalog-sidebar__all:hover,
.catalog-sidebar--related .catalog-sidebar__all:focus-visible {
    padding-left: 18px;
}

.product-filter {
    position: sticky;
    top: 118px;
    border: 1px solid rgb(255 255 255 / 78%);
}

.product-filter h2 {
    margin: 0;
    padding: 14px 10px 8px;
    color: #fff;
    font-size: 19px;
    font-weight: 700;
    text-align: center;
}

.product-filter h2::after {
    display: block;
    height: 2px;
    margin-top: 7px;
    background: #fff;
    content: "";
}

.product-filter nav > a,
.product-filter__group > a,
.product-filter__styles a {
    display: flex;
    min-height: 42px;
    align-items: center;
    justify-content: space-between;
    padding: 9px 10px;
    color: #fff;
    font-size: 15px;
    font-weight: 650;
    line-height: 1.35;
    text-decoration: none;
    border-top: 1px solid rgb(255 255 255 / 28%);
    transition: color 260ms ease, background-color 260ms ease;
}

.product-filter nav > a:hover,
.product-filter nav > a.is-active,
.product-filter__group > a:hover {
    color: #d6ad3a;
    background: rgb(255 255 255 / 5%);
}

.product-filter__styles {
    display: grid;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: max-height 600ms ease, opacity 400ms ease;
}

.product-filter__group:hover .product-filter__styles,
.product-filter__group:focus-within .product-filter__styles {
    max-height: 240px;
    opacity: 1;
}

.product-filter__styles a {
    padding-left: 22px;
    color: rgb(255 255 255 / 74%);
    font-size: 13px;
    font-weight: 500;
}

.product-filter__styles a:hover {
    color: #d6ad3a;
}

.product-filter__styles a.is-active {
    color: #d6ad3a;
    background: rgb(255 255 255 / 5%);
}

.product-detail-content h1 {
    margin: 0 0 22px;
    color: #fff;
    font-size: clamp(28px, 3vw, 38px);
    font-weight: 700;
    line-height: 1.1;
    text-align: center;
    text-transform: uppercase;
}

.product-detail-images {
    display: grid;
    gap: 78px;
}

.product-detail-images figure {
    overflow: hidden;
    margin: 0;
    background: #1b1b1b;
}

.product-detail-images img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 760px;
    object-fit: contain;
}

.product-detail-page .product-detail__placeholder {
    min-height: 420px;
    color: rgb(255 255 255 / 60%);
    background: #1b1b1b;
}

.product-detail-consultation {
    display: flex;
    width: min(100%, 320px);
    min-height: 58px;
    align-items: center;
    justify-content: space-between;
    margin: 36px 0 0 auto;
    padding: 0 22px;
    color: #fff;
    font-size: 15px;
    font-weight: 650;
    border: 1px solid rgb(255 255 255 / 72%);
    text-decoration: none;
    transition: color 350ms ease, background-color 350ms ease;
}

.product-detail-consultation:hover {
    color: #111;
    background: #fff;
    text-decoration: none;
}

@media (max-width: 820px) {
    .product-detail-page {
        padding: 100px 16px 72px;
    }

    .product-detail-layout {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .product-filter {
        position: static;
    }

    .product-detail-content h1 {
        margin-bottom: 18px;
        text-align: left;
    }

    .product-detail-images {
        gap: 48px;
    }

    .product-detail-consultation {
        width: 100%;
    }
}

/* Project-inspired Interior Product detail */

.product-showcase {
    min-height: 100vh;
    color: #fff;
    background: #111;
}

.product-detail-page--showcase {
    min-height: auto;
    padding: 56px 24px 92px;
}

.product-detail-page--showcase .product-detail-layout {
    width: min(1188px, 100%);
    grid-template-columns: 250px minmax(0, 1fr);
    gap: clamp(30px, 4vw, 52px);
}

.product-detail-page--showcase .catalog-sidebar--related {
    top: 112px;
}

.product-detail-content {
    min-width: 0;
}

.product-detail-content__header {
    margin-bottom: 28px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgb(255 255 255 / 22%);
}

.product-detail-content__category {
    margin: 0 0 11px;
    color: var(--brand-gold);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.product-detail-content__header h1,
.product-detail-page--showcase .product-detail-content h1 {
    margin: 0;
    color: #fff;
    font-family: "Times New Roman", Times, serif;
    font-size: clamp(36px, 4.5vw, 58px);
    font-weight: 500;
    line-height: 1.08;
    letter-spacing: -0.025em;
    text-align: left;
    text-transform: none;
}

.product-detail-content__code {
    margin: 14px 0 0;
    color: rgb(255 255 255 / 58%);
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.product-detail-gallery {
    min-width: 0;
}

.product-detail-gallery__stage {
    position: relative;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 16 / 10;
    padding: 6px;
    background: #24211f;
    border: 1px solid rgb(255 255 255 / 66%);
}

.product-detail-gallery__stage > a,
.product-detail-gallery__stage img {
    display: block;
    width: 100%;
    height: 100%;
}

.product-detail-gallery__stage img {
    object-fit: cover;
    transition: opacity 360ms ease, transform 800ms ease;
}

.product-detail-gallery__stage:hover img {
    transform: scale(1.012);
}

.product-detail-gallery.is-changing .product-detail-gallery__stage img {
    opacity: 0.24;
    transform: scale(0.985);
}

.product-detail-gallery__arrow {
    position: absolute;
    top: 50%;
    display: grid;
    width: 46px;
    height: 46px;
    padding: 0;
    place-items: center;
    color: #fff;
    background: rgb(17 17 17 / 62%);
    border: 1px solid rgb(255 255 255 / 62%);
    border-radius: 50%;
    cursor: pointer;
    transform: translateY(-50%);
    transition: color 260ms ease, background-color 260ms ease, border-color 260ms ease;
}

.product-detail-gallery__arrow:hover,
.product-detail-gallery__arrow:focus-visible {
    color: #17130c;
    background: var(--brand-gold);
    border-color: var(--brand-gold);
    outline: none;
}

.product-detail-gallery__arrow--previous {
    left: 22px;
}

.product-detail-gallery__arrow--next {
    right: 22px;
}

.product-detail-gallery__thumbnails {
    display: flex;
    overflow-x: auto;
    gap: 10px;
    margin: 12px 20px 0;
    padding: 0 1px 7px;
    scrollbar-color: rgb(214 173 58 / 68%) rgb(255 255 255 / 7%);
    scrollbar-width: thin;
}

.product-detail-gallery__thumbnail {
    display: block;
    flex: 1 0 110px;
    overflow: hidden;
    min-width: 0;
    max-width: 150px;
    aspect-ratio: 4 / 3;
    padding: 4px;
    background: #f4f1ec;
    border: 1px solid transparent;
    cursor: pointer;
    opacity: 0.68;
    transition: border-color 280ms ease, opacity 280ms ease, transform 280ms ease;
}

.product-detail-gallery__thumbnail img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-detail-gallery__thumbnail:hover,
.product-detail-gallery__thumbnail:focus-visible,
.product-detail-gallery__thumbnail.is-active {
    border-color: var(--brand-gold);
    opacity: 1;
    outline: none;
    transform: translateY(-3px);
}

.product-detail-gallery__thumbnail.is-active {
    box-shadow: 0 0 0 1px var(--brand-gold);
}

.product-detail-gallery__caption {
    width: fit-content;
    max-width: min(720px, calc(100% - 40px));
    margin: 18px auto 0;
    padding: 9px 22px;
    color: rgb(255 255 255 / 84%);
    font-size: 14px;
    line-height: 1.65;
    text-align: center;
    background: #191816;
    border: 1px solid rgb(218 175 47 / 38%);
}

.product-detail-page--showcase .product-detail-consultation {
    width: min(100%, 260px);
    min-height: 52px;
    margin-top: 36px;
    color: #17130c;
    background: var(--brand-gold);
    border-color: var(--brand-gold);
}

.product-detail-page--showcase .product-detail-consultation:hover {
    color: #fff;
    background: transparent;
}

@media (max-width: 991px) {
    .product-detail-page--showcase .product-detail-layout {
        grid-template-columns: 220px minmax(0, 1fr);
        gap: 28px;
    }

    .product-detail-gallery__stage {
        aspect-ratio: 4 / 3;
    }
}

@media (max-width: 767px) {
    .product-showcase .project-showcase__hero {
        height: 420px;
        min-height: 420px;
    }

    .product-detail-page--showcase {
        padding: 34px 15px 72px;
    }

    .product-detail-page--showcase .product-detail-layout {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .product-detail-page--showcase .catalog-sidebar--related {
        position: static;
        top: auto;
    }

    .product-detail-content__header h1,
    .product-detail-page--showcase .product-detail-content h1 {
        font-size: clamp(34px, 10vw, 48px);
    }

    .product-detail-gallery__stage {
        aspect-ratio: 1 / 1;
        padding: 4px;
    }

    .product-detail-gallery__arrow {
        width: 40px;
        height: 40px;
    }

    .product-detail-gallery__arrow--previous {
        left: 12px;
    }

    .product-detail-gallery__arrow--next {
        right: 12px;
    }

    .product-detail-gallery__thumbnails {
        gap: 7px;
        margin-right: 0;
        margin-left: 0;
    }

    .product-detail-gallery__thumbnail {
        flex-basis: 88px;
        max-width: 112px;
    }

    .product-detail-gallery__caption {
        width: calc(100% - 24px);
        max-width: none;
        margin-top: 12px;
        padding: 8px 14px;
    }

    .product-detail-page--showcase .product-detail-consultation {
        width: 100%;
    }
}

/* Product overview and vertically stacked detail images */

.product-detail-overview {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(300px, .92fr);
    gap: clamp(30px, 4vw, 56px);
    align-items: start;
}

.product-detail-overview__media {
    overflow: hidden;
    min-width: 0;
    padding: 6px;
    background: #24211f;
    border: 1px solid rgb(255 255 255 / 66%);
}

.product-detail-overview__media > a,
.product-detail-overview__media img {
    display: block;
    width: 100%;
}

.product-detail-overview__media img {
    height: auto;
    max-height: 720px;
    object-fit: contain;
    background: #171717;
}

.product-detail-overview .product-detail-content__header {
    margin: 0;
    padding: 4px 0 0;
    border-bottom: 0;
}

.product-detail-overview .product-detail-content__header h1 {
    margin-bottom: 28px;
    padding-bottom: 26px;
    border-bottom: 1px solid rgb(255 255 255 / 24%);
}

.product-detail-information {
    margin: 0;
    border-bottom: 1px solid rgb(255 255 255 / 24%);
}

.product-detail-information > div {
    display: grid;
    grid-template-columns: minmax(116px, .55fr) minmax(0, 1fr);
    gap: 22px;
    padding: 16px 2px;
    border-top: 1px solid rgb(255 255 255 / 13%);
}

.product-detail-information > div:first-child {
    border-top: 0;
}

.product-detail-information dt,
.product-detail-information dd {
    margin: 0;
    font-size: 15px;
    line-height: 1.55;
}

.product-detail-information dt {
    color: var(--brand-gold);
    font-weight: 700;
}

.product-detail-information dd {
    color: rgb(255 255 255 / 90%);
    white-space: pre-line;
}

.product-detail-sections {
    margin-top: clamp(64px, 8vw, 108px);
}

.product-detail-sections > h2 {
    margin: 0 0 30px;
    color: #fff;
    font-family: "Times New Roman", Times, serif;
    font-size: clamp(34px, 4vw, 52px);
    font-weight: 500;
    line-height: 1.12;
}

.product-detail-description {
    width: min(820px, 100%);
    margin-bottom: 42px;
    color: rgb(255 255 255 / 76%);
    font-size: 16px;
    line-height: 1.85;
}

.product-detail-description > :last-child {
    margin-bottom: 0;
}

.product-detail-stacked-images {
    display: grid;
    gap: clamp(46px, 6vw, 82px);
}

.product-detail-stacked-images figure {
    margin: 0;
}

.product-detail-stacked-images a,
.product-detail-stacked-images img {
    display: block;
    width: 100%;
}

.product-detail-stacked-images img {
    height: auto;
    max-height: 920px;
    object-fit: contain;
    background: #171717;
}

.product-detail-stacked-images figcaption {
    width: fit-content;
    max-width: min(720px, calc(100% - 40px));
    margin: 14px auto 0;
    padding: 9px 22px;
    color: rgb(255 255 255 / 84%);
    font-size: 14px;
    line-height: 1.65;
    text-align: center;
    background: #191816;
    border: 1px solid rgb(218 175 47 / 38%);
}

@media (max-width: 1100px) {
    .product-detail-overview {
        grid-template-columns: 1fr;
    }

    .product-detail-overview .product-detail-content__header {
        width: min(720px, 100%);
    }
}

@media (max-width: 767px) {
    .product-detail-overview {
        gap: 28px;
    }

    .product-detail-overview__media {
        padding: 4px;
    }

    .product-detail-information > div {
        grid-template-columns: minmax(100px, .48fr) minmax(0, 1fr);
        gap: 14px;
        padding: 13px 0;
    }

    .product-detail-information dt,
    .product-detail-information dd,
    .product-detail-description {
        font-size: 14px;
    }

    .product-detail-sections {
        margin-top: 56px;
    }

    .product-detail-stacked-images {
        gap: 42px;
    }

    .product-detail-stacked-images figcaption {
        width: calc(100% - 24px);
        max-width: none;
        margin-top: 12px;
        padding: 8px 14px;
    }
}

.product-detail {
    max-width: 1400px;
    margin: 0 auto;
    padding: 32px 24px 120px;
}

.product-detail__hero {
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(380px, 0.88fr);
    gap: clamp(48px, 7vw, 110px);
    align-items: center;
}

.product-gallery__stage {
    position: relative;
    overflow: hidden;
    min-height: 680px;
    background: var(--color-surface);
}

.product-gallery__main-image {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 680px;
    object-fit: cover;
}

.product-gallery__arrow {
    position: absolute;
    top: 50%;
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    color: white;
    background: rgb(0 0 0 / 35%);
    border: 1px solid rgb(255 255 255 / 55%);
    transform: translateY(-50%);
}

.product-gallery__arrow:hover {
    background: rgb(0 0 0 / 70%);
}

.product-gallery__arrow--previous {
    left: 20px;
}

.product-gallery__arrow--next {
    right: 20px;
}

.product-gallery__thumbnails {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    margin-top: 12px;
}

.product-gallery__thumbnail {
    overflow: hidden;
    padding: 0;
    aspect-ratio: 1;
    background: var(--color-surface);
    border: 2px solid transparent;
    opacity: 0.65;
    transition:
        opacity var(--transition),
        border-color var(--transition);
}

.product-gallery__thumbnail:hover,
.product-gallery__thumbnail.is-active {
    border-color: var(--color-accent);
    opacity: 1;
}

.product-gallery__thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-gallery__caption {
    margin: 12px 0 0;
    color: var(--color-muted);
    font-size: 13px;
    line-height: 1.6;
}

.product-detail__placeholder {
    display: grid;
    min-height: 680px;
    place-items: center;
    color: var(--color-muted);
}

.product-detail__category,
.product-detail__eyebrow {
    color: var(--color-accent);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.product-detail h1 {
    margin: 18px 0;
    color: var(--color-text);
    font-size: clamp(48px, 6vw, 82px);
    font-weight: 500;
    line-height: 1.02;
}

.product-detail__code {
    color: var(--color-muted);
    font-size: 13px;
    letter-spacing: 0.08em;
}

.product-detail__summary {
    margin-top: 28px;
    color: var(--color-muted);
    font-size: 18px;
    line-height: 1.8;
}

.product-detail__specifications {
    margin: 38px 0 0;
    border-top: 1px solid var(--color-border);
}

.product-detail__specifications div {
    display: grid;
    grid-template-columns: 130px 1fr;
    gap: 24px;
    padding: 17px 0;
    border-bottom: 1px solid var(--color-border);
}

.product-detail__specifications dt {
    color: var(--color-muted);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.product-detail__specifications dd {
    margin: 0;
}

.product-detail__contact {
    display: inline-flex;
    align-items: center;
    gap: 30px;
    margin-top: 38px;
    padding: 15px 22px;
    color: white;
    background: var(--color-text);
    border: 1px solid var(--color-text);
    text-decoration: none;
}

.product-detail__contact:hover {
    color: var(--color-text);
    background: transparent;
    text-decoration: none;
}

.product-detail__description {
    display: grid;
    grid-template-columns: minmax(180px, 0.35fr) minmax(0, 1fr);
    gap: 60px;
    max-width: 1080px;
    margin: 120px auto 0;
    padding-top: 58px;
    border-top: 1px solid var(--color-border);
}

.product-detail__description > div {
    color: var(--color-muted);
    font-size: 17px;
    line-height: 1.85;
}

.related-products {
    margin-top: 120px;
    padding-top: 70px;
    border-top: 1px solid var(--color-border);
}

.related-products h2 {
    margin: 12px 0 42px;
    font-size: clamp(36px, 4vw, 56px);
    font-weight: 500;
}

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

.related-products article a {
    color: inherit;
    text-decoration: none;
}

.related-products img,
.related-products__placeholder {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    background: var(--color-surface);
}

.related-products__placeholder {
    display: grid;
    place-items: center;
    color: var(--color-muted);
}

.related-products article a > div:last-child {
    padding-top: 20px;
}

.related-products article p {
    margin-bottom: 8px;
    color: var(--color-accent);
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.related-products article h3 {
    margin: 0;
    font-size: 24px;
    font-weight: 500;
}

/* Article detail */

.article-detail {
    max-width: 1320px;
    margin: 0 auto;
    padding: 48px 24px 120px;
}

.article-detail__header {
    max-width: 1000px;
    margin: 0 auto 58px;
    text-align: center;
}

.article-detail__category {
    color: var(--color-accent);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.article-detail h1 {
    margin: 18px 0 26px;
    color: var(--color-text);
    font-size: clamp(48px, 7vw, 88px);
    font-weight: 500;
    line-height: 1.04;
}

.article-detail__excerpt {
    max-width: 760px;
    margin: 0 auto;
    color: var(--color-muted);
    font-size: 19px;
    line-height: 1.8;
}

.article-detail__meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 28px;
    margin-top: 30px;
    color: var(--color-muted);
    font-size: 13px;
}

.article-detail__cover {
    margin: 0;
}

.article-detail__cover img {
    display: block;
    width: 100%;
    max-height: 760px;
    object-fit: cover;
}

.article-detail__layout {
    display: grid;
    grid-template-columns: 220px minmax(0, 780px);
    gap: clamp(50px, 8vw, 120px);
    justify-content: center;
    margin-top: 80px;
}

.article-detail__aside {
    display: flex;
    flex-direction: column;
    gap: 18px;
    color: var(--color-muted);
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.article-detail__aside a {
    color: var(--color-text);
    text-decoration: none;
}

.article-detail__content {
    color: var(--color-text);
    font-size: 18px;
    line-height: 1.9;
}

.article-detail__content h2,
.article-detail__content h3 {
    margin-top: 1.8em;
    color: var(--color-text);
}

.article-detail__content img {
    max-width: 100%;
    height: auto;
}

.related-articles {
    margin-top: 120px;
    padding-top: 70px;
    border-top: 1px solid var(--color-border);
}

.related-articles h2 {
    margin: 12px 0 42px;
    font-size: clamp(38px, 5vw, 60px);
    font-weight: 500;
}

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

.related-articles article a {
    color: inherit;
    text-decoration: none;
}

.related-articles img,
.related-articles__placeholder {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    background: var(--color-surface);
}

.related-articles article a > div:last-child {
    padding-top: 20px;
}

.related-articles article p {
    margin-bottom: 8px;
    color: var(--color-accent);
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.related-articles article h3 {
    margin: 0;
    font-size: 25px;
    font-weight: 500;
}

@media (max-width: 1100px) {
    .main-navigation {
        gap: 16px;
    }

    .main-header__contact {
        margin-left: 18px;
    }
}

@media (max-width: 991px) {
    body.navigation-is-open {
        overflow: hidden;
    }

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

    .main-header {
        min-height: 76px;
        padding-right: 24px;
        padding-left: 24px;
    }

    .main-header--transparent,
    .main-header--transparent.is-scrolled {
        min-height: 76px;
        background: rgb(20 18 16 / 72%);
        backdrop-filter: blur(10px);
    }

    .main-header__logo {
        width: 48px;
        height: 48px;
    }

    .main-header__toggle {
        display: flex;
        width: 42px;
        height: 42px;
        flex-direction: column;
        justify-content: center;
        gap: 6px;
        order: 3;
        margin-left: 10px;
        background: transparent;
        border: 0;
    }

    .main-header__toggle span {
        display: block;
        width: 26px;
        height: 1px;
        background: white;
    }

    .main-navigation {
        order: 4;
        position: absolute;
        top: 76px;
        right: 0;
        left: 0;
        display: none;
        align-items: stretch;
        max-height: calc(100svh - 76px);
        overflow-y: auto;
        padding: 20px 5vw 32px;
        background: rgb(24 22 20 / 98%);
        overscroll-behavior: contain;
    }

    .main-navigation.is-open {
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    .main-navigation > a,
    .main-navigation__dropdown > button,
    .main-navigation__dropdown > .main-navigation__dropdown-link {
        display: block;
        width: 100%;
        padding: 14px 0;
        font-size: 14px;
        text-align: left;
    }

    .main-header--transparent.is-scrolled .main-navigation > a,
    .main-header--transparent.is-scrolled .main-navigation__dropdown > button,
    .main-header--transparent.is-scrolled .main-navigation__dropdown > .main-navigation__dropdown-link {
        padding: 14px 0;
    }

    .main-navigation__submenu {
        position: static;
        display: block;
        max-height: 0;
        overflow: hidden;
        padding: 0 0 8px 16px;
        visibility: hidden;
        opacity: 0;
        background: transparent;
        border: 0;
        box-shadow: none;
        backdrop-filter: none;
        pointer-events: none;
        transform: none;
        transition:
            max-height 260ms ease,
            opacity 220ms ease,
            visibility 260ms;
    }

    .main-navigation__dropdown.is-open .main-navigation__submenu {
        max-height: 240px;
        visibility: visible;
        opacity: 1;
        pointer-events: auto;
        transform: none;
    }

    .main-navigation__submenu--products {
        width: 100%;
    }

    .main-navigation__submenu-item--has-children > a span {
        display: none;
    }

    .main-navigation__submenu-secondary {
        position: static;
        width: 100%;
        margin-left: 12px;
        visibility: visible;
        opacity: 1;
        background: transparent;
        border: 0;
        box-shadow: none;
        backdrop-filter: none;
        pointer-events: auto;
        transform: none;
    }

    .main-navigation__submenu-secondary a {
        color: rgb(255 255 255 / 68%);
    }

    .main-navigation__dropdown.is-open .main-navigation__submenu--products {
        max-height: 430px;
    }

    .main-navigation__dropdown > button span {
        display: inline-block;
        transition: transform 180ms ease;
    }

    .main-navigation__dropdown.is-open > button span {
        transform: rotate(180deg);
    }

    .main-header__contact {
        display: none;
    }

    .main-header__search {
        order: 1;
        margin-left: auto;
    }

    .main-header__search-panel {
        width: min(220px, calc(100vw - 30px));
    }

    .main-navigation__mobile-contact {
        display: block;
        margin-top: 10px;
        padding: 13px 16px !important;
        color: #211e1b !important;
        background: linear-gradient(135deg, #f0d77a, #d6ad3a);
        text-align: center !important;
    }
}

@media (max-width: 767px) {
    .site-social-rail {
        right: auto;
        bottom: 64px;
        left: 12px;
        flex-direction: row;
        gap: 7px;
    }

    .site-social-rail > a,
    .site-social-rail > span {
        width: 36px;
        height: 36px;
    }

    .site-footer {
        min-height: 0;
    }

    .site-footer__inner {
        width: calc(100% - 40px);
        padding-top: 44px;
    }

    .site-footer__introduction {
        margin-bottom: 40px;
    }

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

    .site-footer__bottom {
        flex-direction: column;
        gap: 8px;
    }

    .site-footer__hotline {
        bottom: 14px;
        left: 12px;
        min-height: 38px;
        padding: 0 14px;
    }

    .main-header {
        padding-right: 20px;
        padding-left: 20px;
    }

    .main-header__brand-text {
        display: none;
    }

    .projects-page__grid {
        grid-template-columns: 1fr;
    }

    .project-detail__information {
        grid-template-columns: 1fr;
    }

    .project-detail__information div {
        padding: 16px 0;
        border-right: 0;
        border-bottom: 1px solid var(--color-border);
    }

    .project-detail__information div:last-child {
        border-bottom: 0;
    }

    .product-detail {
        padding-right: 20px;
        padding-left: 20px;
    }

    .product-detail__hero {
        grid-template-columns: 1fr;
    }

    .product-gallery__stage,
    .product-gallery__main-image,
    .product-detail__placeholder {
        min-height: 480px;
    }

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

    .product-detail__description {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 80px;
    }

    .related-products {
        margin-top: 80px;
    }

    .related-products__grid {
        grid-template-columns: 1fr;
    }

    .article-detail {
        padding-right: 20px;
        padding-left: 20px;
    }

    .article-detail__layout {
        grid-template-columns: 1fr;
        gap: 36px;
        margin-top: 58px;
    }

    .related-articles {
        margin-top: 80px;
    }

    .related-articles__grid {
        grid-template-columns: 1fr;
    }
}
/* Branded public search page */
.site-search-page {
    min-height: 100vh;
    color: #f6f1e9;
    background: #211f1c;
}

.site-search-page__hero {
    padding: clamp(150px, 18vh, 210px) 24px clamp(58px, 8vh, 92px);
    border-bottom: 1px solid rgb(255 255 255 / 13%);
    background:
        linear-gradient(90deg, rgb(18 17 15 / 96%), rgb(46 42 37 / 78%)),
        repeating-radial-gradient(ellipse at 12% 50%, transparent 0 27px, rgb(255 255 255 / 6%) 28px 29px);
}

.site-search-page__hero-inner,
.site-search-page__results,
.site-search-empty {
    width: min(1180px, 100%);
    margin: 0 auto;
}

.site-search-page__eyebrow {
    margin: 0 0 16px;
    color: #d6ad3a;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.site-search-page__hero h1 {
    margin: 0 0 38px;
    color: inherit;
    font-size: clamp(48px, 6vw, 82px);
    font-weight: 500;
    letter-spacing: -.045em;
}

.site-search-page__form {
    display: grid;
    max-width: 850px;
    grid-template-columns: minmax(0, 1fr) 180px;
}

.site-search-page__form input,
.site-search-page__form button {
    min-height: 64px;
    border: 1px solid rgb(255 255 255 / 34%);
    border-radius: 0;
}

.site-search-page__form input {
    padding: 0 22px;
    color: #fff;
    background: rgb(255 255 255 / 6%);
    outline: 0;
}

.site-search-page__form input:focus { border-color: #d6ad3a; }
.site-search-page__form input::placeholder { color: rgb(255 255 255 / 54%); }

.site-search-page__form button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 22px;
    color: #201d19;
    background: #d6ad3a;
    border-color: #d6ad3a;
    font-weight: 700;
}

.site-search-page__results {
    padding: clamp(70px, 9vw, 120px) 24px;
}

.site-search-page__summary { margin-bottom: 48px; }
.site-search-page__summary p { margin: 0 0 8px; color: rgb(255 255 255 / 58%); }
.site-search-page__summary h2 { margin: 0; color: #fff; font-size: clamp(36px, 5vw, 64px); font-weight: 500; }
.site-search-page__list { border-top: 1px solid rgb(255 255 255 / 20%); }

.site-search-card {
    display: grid;
    min-height: 175px;
    padding: 30px 10px;
    border-bottom: 1px solid rgb(255 255 255 / 20%);
    grid-template-columns: 70px minmax(0, 1fr) 50px;
    gap: 20px;
    align-items: start;
}

.site-search-card__number,
.site-search-card__type { color: #d6ad3a; font-size: 11px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.site-search-card__type { margin: 0 0 12px; }
.site-search-card h3 { margin: 0; font-size: clamp(24px, 3vw, 38px); font-weight: 500; }
.site-search-card h3 a,
.site-search-card__arrow { color: #fff; text-decoration: none; }
.site-search-card__preview { max-width: 760px; margin: 15px 0 0; color: rgb(255 255 255 / 62%); line-height: 1.7; }
.site-search-card__preview mark { color: #211f1c; background: #d6ad3a; }
.site-search-card__arrow { font-size: 24px; }

.site-search-empty {
    display: grid;
    min-height: 570px;
    padding: clamp(70px, 9vw, 120px) 24px;
    grid-template-columns: minmax(220px, .72fr) minmax(0, 1.28fr);
    gap: clamp(45px, 9vw, 130px);
    align-items: center;
}

.site-search-empty__mark {
    position: relative;
    width: min(330px, 80vw);
    aspect-ratio: 1;
    border: 1px solid rgb(255 255 255 / 25%);
    border-radius: 50%;
}

.site-search-empty__mark::before {
    position: absolute;
    inset: 24%;
    border: 3px solid #d6ad3a;
    border-radius: 50%;
    content: "";
}

.site-search-empty__mark span {
    position: absolute;
    width: 31%;
    height: 3px;
    right: 11%;
    bottom: 20%;
    background: #d6ad3a;
    transform: rotate(45deg);
    transform-origin: right center;
}

.site-search-empty__content { max-width: 680px; }
.site-search-empty h2 { margin: 0; color: #fff; font-size: clamp(43px, 5.4vw, 76px); font-weight: 500; line-height: 1.02; letter-spacing: -.045em; }
.site-search-empty__content > p:not(.site-search-page__eyebrow) { max-width: 620px; margin: 28px 0 0; color: rgb(255 255 255 / 64%); font-size: 17px; line-height: 1.75; }

.site-search-empty__suggestions { display: flex; margin-top: 28px; gap: 9px; flex-wrap: wrap; align-items: center; }
.site-search-empty__suggestions span { margin-right: 6px; color: rgb(255 255 255 / 45%); }
.site-search-empty__suggestions a { padding: 8px 13px; color: #eee7dd; border: 1px solid rgb(255 255 255 / 22%); text-decoration: none; }
.site-search-empty__suggestions a:hover { color: #211f1c; background: #d6ad3a; border-color: #d6ad3a; }

.site-search-empty__actions { display: flex; margin-top: 38px; gap: 12px; flex-wrap: wrap; }
.site-search-empty__actions a { display: flex; width: 220px; min-height: 54px; align-items: center; justify-content: space-between; padding: 0 18px; color: #fff; border: 1px solid rgb(255 255 255 / 35%); text-decoration: none; }
.site-search-empty__actions a:first-child,
.site-search-empty__actions a:hover { color: #211f1c; background: #d6ad3a; border-color: #d6ad3a; }
.site-search-empty--initial { grid-template-columns: 1fr; }

@media (max-width: 760px) {
    .site-search-page__form { grid-template-columns: 1fr; }
    .site-search-page__form button { min-height: 56px; }
    .site-search-empty { grid-template-columns: 1fr; }
    .site-search-empty__mark { width: 190px; }
    .site-search-card { grid-template-columns: 42px minmax(0, 1fr) 24px; gap: 10px; }
}

@media (max-width: 480px) {
    .site-search-page__hero,
    .site-search-page__results,
    .site-search-empty { padding-right: 18px; padding-left: 18px; }
    .site-search-empty__actions a { width: 100%; }
}
/* Product detail sidebar: show at most four products and scroll the rest. */
.catalog-sidebar--related {
    display: flex;
    flex-direction: column;
}

.catalog-sidebar--related > nav {
    --catalog-product-row-height: 46px;
    max-height: calc((var(--catalog-product-row-height) * 4) + 12px);
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    scrollbar-gutter: stable;
    scrollbar-width: thin;
    scrollbar-color: rgba(211, 169, 107, 0.8) rgba(255, 255, 255, 0.08);
}

.catalog-sidebar--related > nav > a {
    height: var(--catalog-product-row-height);
    min-height: var(--catalog-product-row-height);
    box-sizing: border-box;
}

.catalog-sidebar--related > nav::-webkit-scrollbar {
    width: 5px;
}

.catalog-sidebar--related > nav::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.06);
}

.catalog-sidebar--related > nav::-webkit-scrollbar-thumb {
    border-radius: 999px;
    background: rgba(211, 169, 107, 0.8);
}

.catalog-sidebar--related .catalog-sidebar__all {
    flex: 0 0 auto;
}

/* SKY HOUSE brand gold normalization.
   Keep every highlighted label, CTA, active state and focus ring on the
   same gold family as the logo instead of mixing legacy orange tones. */
.projects-listing__hero h1,
.projects-listing__breadcrumb,
.projects-listing__breadcrumb a:hover,
.projects-listing__card h3 a:hover,
.product-category-hero h1,
.product-category-hero__breadcrumb,
.product-category-card h3 a:hover,
.service-detail__hero h1,
.service-detail__breadcrumb,
.service-detail__breadcrumb a:hover,
.service-detail__related a:hover,
.project-showcase__hero h2,
.project-showcase__breadcrumb,
.project-showcase__breadcrumb a:hover,
.site-search-page__eyebrow,
.site-search-card__number,
.site-search-card__type,
.projects-listing__sidebar-index,
.main-navigation__dropdown > button:hover,
.main-navigation__dropdown > .main-navigation__dropdown-link:hover,
.main-navigation__dropdown > button:focus-visible,
.main-navigation__dropdown > .main-navigation__dropdown-link:focus-visible,
.main-navigation__submenu a:hover,
.site-footer a:hover,
.site-footer__brand-mark,
.site-footer__introduction > p,
.site-footer__contact-icon,
.product-filter nav > a.is-active,
.product-filter__group > a:hover,
.product-filter__styles a:hover,
.product-filter__styles a.is-active {
    color: var(--brand-gold);
}

.projects-listing__sidebar a.is-active {
    box-shadow: inset 3px 0 0 var(--brand-gold);
}

.main-header__contact-link,
.site-footer__newsletter button,
.site-footer__phone,
.site-search-page__form button,
.site-search-empty__suggestions a:hover,
.site-search-empty__actions a:first-child,
.site-search-empty__actions a:hover,
.projects-listing__consultation a,
.service-detail__consultation a,
.project-showcase__consultation a,
.consultation-popup__submit,
.product-detail-consultation {
    background: var(--brand-gold);
    border-color: var(--brand-gold);
}

.main-header__contact-link:hover,
.site-footer__newsletter button:hover,
.site-search-page__form button:hover,
.projects-listing__consultation a:hover,
.service-detail__consultation a:hover,
.project-showcase__consultation a:hover,
.consultation-popup__submit:hover,
.product-detail-consultation:hover {
    background: var(--brand-gold-dark);
    border-color: var(--brand-gold-dark);
}

.main-header__search-panel input:focus,
.site-search-page__form input:focus {
    border-color: var(--brand-gold);
    box-shadow: inset 0 0 0 1px var(--brand-gold);
}

.site-footer__column h3::after,
.site-search-card__preview mark,
.site-search-empty__mark::after {
    background: var(--brand-gold);
}

.site-search-empty__mark::before {
    border-color: var(--brand-gold);
}

.catalog-sidebar--related > nav {
    scrollbar-color: var(--brand-gold) rgba(255, 255, 255, 0.08);
}

.catalog-sidebar--related > nav::-webkit-scrollbar-thumb {
    background: var(--brand-gold);
}

/* Readable editorial theme for every Interior Article detail page. */
.article-detail {
    color: #f5f0e8;
    background: #171410;
}

.article-detail__header {
    padding-top: clamp(72px, 9vw, 118px);
}

.article-detail h1 {
    max-width: 980px;
    margin-right: auto;
    margin-left: auto;
    color: #fffaf2;
    font-family: "Times New Roman", Times, serif;
    font-size: clamp(44px, 6vw, 76px);
    line-height: 1.08;
    letter-spacing: -0.025em;
}

.article-detail__excerpt {
    color: #c8c0b5;
    font-size: clamp(17px, 1.45vw, 20px);
    line-height: 1.75;
}

.article-detail__meta {
    color: #9f968b;
}

.article-detail__aside {
    color: #aa9f92;
}

.article-detail__aside a {
    color: #e0b83f;
}

.article-detail__content {
    padding: clamp(30px, 5vw, 58px);
    color: #ded6cb;
    background: linear-gradient(145deg, #2a251f, #211d19);
    border: 1px solid rgb(214 173 58 / 18%);
    box-shadow: 0 24px 70px rgb(0 0 0 / 28%);
    font-size: clamp(17px, 1.25vw, 19px);
    line-height: 1.85;
}

.article-detail__content * {
    color: inherit !important;
    background-color: transparent !important;
    font-family: inherit !important;
}

.article-detail__content > :first-child {
    margin-top: 0 !important;
}

.article-detail__content > :last-child {
    margin-bottom: 0 !important;
}

.article-detail__content p,
.article-detail__content ul,
.article-detail__content ol,
.article-detail__content blockquote {
    margin: 0 0 1.45em;
}

.article-detail__content h2,
.article-detail__content h3,
.article-detail__content h4 {
    color: #fffaf2 !important;
    font-family: "Times New Roman", Times, serif !important;
    line-height: 1.2;
}

.article-detail__content h2 {
    margin: 1.8em 0 0.65em;
    font-size: clamp(30px, 3.5vw, 44px);
}

.article-detail__content h3 {
    margin: 1.6em 0 0.6em;
    font-size: clamp(24px, 2.6vw, 32px);
}

.article-detail__content a {
    color: #e0b83f !important;
    text-decoration: underline;
    text-decoration-color: rgb(143 104 16 / 42%);
    text-underline-offset: 3px;
}

.article-detail__content strong,
.article-detail__content b {
    color: #fffaf2 !important;
    font-weight: 700;
}

.article-detail__content li + li {
    margin-top: 0.55em;
}

.article-detail__content blockquote {
    padding: 18px 24px;
    border-left: 3px solid var(--brand-gold);
    color: #cfc5b8 !important;
    background: rgb(255 255 255 / 5%) !important;
}

.article-detail__content img {
    display: block;
    margin: 2.2em auto;
}

.article-detail__content table {
    width: 100%;
    margin: 2em 0;
    border-collapse: collapse;
}

.article-detail__content th,
.article-detail__content td {
    padding: 12px 14px;
    border: 1px solid rgb(255 255 255 / 16%);
    text-align: left;
}

.article-detail__content th {
    color: #fffaf2 !important;
    background: rgb(214 173 58 / 10%) !important;
}

.related-articles {
    border-top-color: rgb(255 255 255 / 15%);
}

.related-articles h2,
.related-articles article h3 {
    color: #fffaf2;
}

.related-articles article p {
    color: var(--brand-gold);
}

@media (max-width: 991px) {
    .article-detail__header {
        padding-top: 54px;
    }

    .article-detail__content {
        padding: 28px 22px;
    }
}
