:root {
    --bg-main: #090909;
    --bg-deep: #020202;
    --bg-soft: rgba(8, 8, 8, 0.9);
    --panel: rgba(255, 255, 255, 0.02);
    --line: rgba(255, 255, 255, 0.22);
    --soft-line: rgba(255, 255, 255, 0.1);
    --text-main: #f6f4ee;
    --text-soft: #d1cbc0;
    --text-faint: #9b9386;
    --accent: #c9a24d;
    --accent-soft: rgba(201, 162, 77, 0.12);
    --header: rgba(0, 0, 0, 0.25);
    --radius-lg: 0.55rem;
    --radius-md: 0.4rem;
    --radius-sm: 0.3rem;
    --shadow-panel: 0 24px 56px rgba(0, 0, 0, 0.45);
    --transition-fast: 170ms ease;
    --transition-mid: 260ms ease;
}

/* Malaki-reference homepage and product collection. */
body.page-home main {
    overflow: hidden;
}

.malaki-home-hero {
    position: relative;
    isolation: isolate;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    min-height: 100svh;
    padding: clamp(7rem, 12vh, 9rem) 1.25rem clamp(3.5rem, 8vh, 5.5rem);
    overflow: hidden;
    background: #151515;
}

.malaki-home-hero__media,
.malaki-home-hero__media video,
.malaki-home-hero__media iframe,
.malaki-home-hero__fallback {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.malaki-home-hero__media {
    z-index: -1;
}

.malaki-home-hero__media video {
    object-fit: cover;
}

.malaki-home-hero__media iframe {
    width: 177.78vh;
    min-width: 100%;
    height: 56.25vw;
    min-height: 100%;
    top: 50%;
    left: 50%;
    right: auto;
    bottom: auto;
    border: 0;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.malaki-home-hero__fallback {
    background:
        radial-gradient(circle at 50% 42%, rgba(170, 121, 79, 0.2), transparent 34%),
        #151515;
}

.malaki-home-hero__statement {
    text-align: center;
}

.malaki-home-hero__statement p {
    margin: 0;
    color: #ebe7df;
    font-size: clamp(1.15rem, 2.25vw, 2.5rem);
    font-weight: 300;
    line-height: 1.1;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.malaki-home-about {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: clamp(2rem, 5vw, 3.75rem);
    min-height: 72svh;
    padding: clamp(6rem, 12vw, 10rem) max(1.5rem, 6vw);
    text-align: center;
    background: #151515;
}

.malaki-home-about__logo {
    display: block;
    width: clamp(10rem, 18vw, 15rem);
}

.malaki-home-about__logo img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
}

.malaki-home-about__copy {
    width: min(100%, 52rem);
    margin: 0;
    color: #c8c0b4;
    font-size: clamp(0.78rem, 0.68rem + 0.35vw, 1rem);
    font-weight: 300;
    line-height: 1.9;
    letter-spacing: 0.035em;
}

.malaki-home-products {
    padding: clamp(5rem, 9vw, 8rem) 0 clamp(6rem, 11vw, 10rem);
    color: #151515;
    background: #e7e2da;
}

.malaki-home-products__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    margin-bottom: clamp(2.5rem, 5vw, 4rem);
    padding-bottom: 0.9rem;
    border-bottom: 1px solid rgba(21, 21, 21, 0.24);
}

.malaki-home-products__head p,
.malaki-home-products__head a {
    margin: 0;
    color: #151515;
    font-size: 0.62rem;
    font-weight: 300;
    line-height: 1.4;
    letter-spacing: 0.28em;
    text-decoration: none;
    text-transform: uppercase;
}

.malaki-home-products__head a {
    color: #8b613e;
}

.malaki-products-row {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    width: 100%;
}

.malaki-product-card {
    min-width: 0;
    height: 100%;
    margin: 0;
}

.malaki-product-card__link {
    position: relative;
    isolation: isolate;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    gap: 2.5rem;
    height: 100%;
    min-height: 28rem;
    margin-top: 3.75rem;
    padding: 0 2rem 2.5rem;
    overflow: hidden;
    color: #ebe7df;
    text-align: center;
    text-decoration: none;
    border: 1px solid rgba(235, 231, 223, 0.22);
    background: #1a1917;
    transition: border-color 220ms ease, color 220ms ease;
}

.malaki-home-products .malaki-product-card__link {
    color: #151515;
    border-color: #151515;
    background: transparent;
}

.malaki-product-card__image-wrap {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: min(12.5rem, 78%);
    height: 17rem;
    margin-top: -3.75rem;
    transition: transform 360ms cubic-bezier(0.22, 1, 0.36, 1);
}

.malaki-product-card__image {
    position: relative;
    z-index: 2;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.malaki-product-card__shadow {
    position: absolute;
    z-index: 1;
    inset: 16% 8% 4%;
    opacity: 0.42;
    filter: blur(20px);
    background: #000;
}

.malaki-product-card__primary {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.55rem;
    width: 100%;
}

.malaki-product-card__title,
.malaki-product-card__category {
    color: inherit;
    font-size: 0.62rem;
    font-weight: 300;
    line-height: 1.5;
    letter-spacing: 0.25em;
    text-transform: uppercase;
}

.malaki-product-card__line {
    width: min(100%, 10rem);
    height: 1px;
    background: #aa794f;
}

.malaki-product-card__secondary {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transform: translateY(0.75rem);
    transition: opacity 240ms ease, transform 320ms ease, max-height 320ms ease;
}

.malaki-product-card__description {
    color: inherit;
    font-size: 0.68rem;
    font-weight: 300;
    line-height: 1.65;
}

.malaki-product-card__background {
    position: absolute;
    z-index: 0;
    inset: 0;
    opacity: 0;
    background:
        linear-gradient(rgba(21, 21, 21, 0.34), rgba(21, 21, 21, 0.86)),
        var(--product-card-image) center / cover no-repeat;
    transform: scale(1.06);
    transition: opacity 280ms ease, transform 650ms cubic-bezier(0.22, 1, 0.36, 1);
}

.malaki-product-card__link:hover,
.malaki-product-card__link:focus-visible {
    color: #ebe7df;
    border-color: #aa794f;
}

.malaki-product-card__link:hover .malaki-product-card__background,
.malaki-product-card__link:focus-visible .malaki-product-card__background {
    opacity: 1;
    transform: scale(1);
}

.malaki-product-card__link:hover .malaki-product-card__image-wrap,
.malaki-product-card__link:focus-visible .malaki-product-card__image-wrap {
    transform: translateY(-0.8rem);
}

.malaki-product-card__link:hover .malaki-product-card__secondary,
.malaki-product-card__link:focus-visible .malaki-product-card__secondary {
    max-height: 12rem;
    opacity: 1;
    transform: translateY(0);
}

.brand,
.brand-mark {
    width: clamp(5.4rem, 7vw, 6.75rem);
    height: 4rem;
    flex-basis: auto;
}

.brand-logo {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.footer-logo {
    width: clamp(7rem, 10vw, 9rem);
    height: auto;
    object-fit: contain;
}

@media (max-width: 980px) {
    .malaki-products-row {
        grid-template-columns: repeat(4, minmax(15rem, 1fr));
        padding-top: 0.25rem;
        padding-bottom: 1rem;
        overflow-x: auto;
        overscroll-behavior-inline: contain;
        scrollbar-width: thin;
    }

    .malaki-product-card__link {
        min-height: 26rem;
    }
}

@media (max-width: 640px) {
    .malaki-home-hero {
        min-height: 100svh;
        padding-bottom: 3rem;
    }

    .malaki-home-hero__statement p {
        font-size: 1rem;
        letter-spacing: 0.12em;
    }

    .malaki-home-about {
        min-height: 62svh;
        padding-block: 5rem;
    }

    .malaki-home-about__logo {
        width: 9rem;
    }

    .malaki-home-about__copy {
        max-width: 26rem;
        font-size: 0.76rem;
        line-height: 1.8;
    }

    .malaki-home-products {
        padding-block: 4.5rem 6rem;
    }

    .malaki-products-row {
        grid-template-columns: repeat(4, minmax(78vw, 1fr));
    }

    .malaki-product-card__link {
        min-height: 25rem;
        padding-inline: 1.4rem;
    }

    .malaki-product-card__image-wrap {
        height: 15rem;
    }

    .brand,
    .brand-mark {
        width: 4.6rem;
        height: 3.25rem;
    }
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    min-height: 100%;
}

html {
    scroll-behavior: smooth;
}

body {
    color: var(--text-main);
    background:
        radial-gradient(circle at 18% 10%, rgba(201, 162, 77, 0.08), transparent 34%),
        radial-gradient(circle at 76% 76%, rgba(201, 162, 77, 0.05), transparent 45%),
        linear-gradient(180deg, var(--bg-deep), var(--bg-main));
    font-family: 'Manrope', sans-serif;
    line-height: 1.65;
    position: relative;
    overflow-x: hidden;
    letter-spacing: 0.005em;
}

body.locale-ar {
    font-family: 'IBM Plex Sans Arabic', sans-serif;
}

h1,
h2,
h3,
h4 {
    margin: 0 0 0.75rem;
    font-family: 'Cinzel', serif;
    line-height: 1.2;
    letter-spacing: 0.02em;
}

body.locale-ar h1,
body.locale-ar h2,
body.locale-ar h3,
body.locale-ar h4 {
    font-family: 'IBM Plex Sans Arabic', sans-serif;
    letter-spacing: 0;
}

body.locale-ar .site-nav a,
body.locale-ar .lang-switch,
body.locale-ar .hero-kicker,
body.locale-ar .hero-title-main,
body.locale-ar .hero-subtitle,
body.locale-ar .section-label,
body.locale-ar .section-head__index,
body.locale-ar .section-head__title,
body.locale-ar .section-link,
body.locale-ar .btn,
body.locale-ar .chip,
body.locale-ar .card-meta,
body.locale-ar .media-card__label,
body.locale-ar .media-card__cta {
    letter-spacing: 0;
}

body.locale-ar .hero-title-main {
    font-family: 'IBM Plex Sans Arabic', sans-serif;
    text-transform: none;
}

p {
    margin: 0;
    color: var(--text-soft);
}

a {
    color: inherit;
}

.smoke-orb {
    position: fixed;
    width: 32rem;
    height: 32rem;
    border-radius: 50%;
    filter: blur(88px);
    pointer-events: none;
    z-index: 0;
    opacity: 0.35;
}

.orb-a {
    top: -11rem;
    left: -8rem;
    background: rgba(201, 162, 77, 0.1);
}

.orb-b {
    right: -9rem;
    bottom: -12rem;
    background: rgba(255, 255, 255, 0.05);
}

.film-grain {
    position: fixed;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.05) 0.5px, transparent 0.5px);
    background-size: 4px 4px;
    opacity: 0.055;
    pointer-events: none;
    z-index: 0;
}

.site-container {
    width: min(1360px, 94vw);
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 30;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    background: var(--header);
    transition: background-color var(--transition-mid), border-color var(--transition-mid), backdrop-filter var(--transition-mid);
}

.site-header.is-scrolled {
    background: rgba(0, 0, 0, 0.68);
    border-bottom-color: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(16px);
}

.header-shell {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: clamp(0.85rem, 2vw, 1.7rem);
    min-height: 5.1rem;
}

.brand {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
}

.brand-mark {
    width: 4.7rem;
    height: 3.7rem;
    border-radius: 0;
    display: grid;
    place-items: center;
    background: transparent;
    overflow: hidden;
    padding: 0;
    transition: opacity var(--transition-fast);
}

.brand:hover .brand-mark {
    opacity: 0.92;
}

.brand-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.brand-text-wrap {
    display: grid;
    gap: 0.08rem;
}

.brand-title {
    font-size: 0.92rem;
    color: var(--text-main);
    font-weight: 700;
    letter-spacing: 0.03em;
    line-height: 1.1;
}

.brand-tagline {
    font-size: 0.72rem;
    color: var(--text-faint);
}

.site-nav {
    justify-self: center;
    display: inline-flex;
    align-items: center;
    gap: clamp(0.74rem, 1.9vw, 1.34rem);
}

.site-nav a {
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.67rem;
    letter-spacing: 0.2em;
    color: var(--text-main);
    opacity: 0.78;
    transition: color var(--transition-fast), opacity var(--transition-fast), transform var(--transition-fast);
}

.site-nav a:hover,
.site-nav a.active {
    color: var(--accent);
    opacity: 1;
    transform: translateY(-1px);
}

.header-actions {
    justify-self: end;
}

.lang-switch {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border-radius: 0.2rem;
    border: 1px solid rgba(255, 255, 255, 0.24);
    padding: 0.45rem 0.86rem;
    color: var(--text-main);
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.64rem;
    transition: color var(--transition-fast), background-color var(--transition-fast), border-color var(--transition-fast);
}

.lang-switch:hover {
    background: rgba(201, 162, 77, 0.16);
    color: var(--accent);
    border-color: var(--accent);
}

.nav-toggle {
    display: none;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.24rem;
    border: 1px solid var(--line);
    background: transparent;
    cursor: pointer;
    justify-content: center;
    align-items: center;
    gap: 0.25rem;
    padding: 0.4rem;
}

.nav-toggle span {
    width: 1.2rem;
    height: 2px;
    background: var(--text-main);
    display: block;
}

main {
    display: block;
    padding-top: 4.9rem;
}

.section-gap {
    padding-top: clamp(2.4rem, 6vw, 4.3rem);
}

.section-gap-top {
    padding-top: clamp(1.2rem, 3vw, 2rem);
}

.section-gap-bottom {
    padding-bottom: clamp(2.1rem, 5vw, 3.4rem);
}

.panel {
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: linear-gradient(145deg, var(--panel), rgba(8, 8, 8, 0.7));
    box-shadow: var(--shadow-panel);
    padding: clamp(1.2rem, 3vw, 2.1rem);
    overflow: hidden;
}

.hero-panel h1 {
    font-size: clamp(1.95rem, 5vw, 3.6rem);
    margin-bottom: 0.45rem;
}

.hero-cinematic {
    position: relative;
    min-height: calc(100svh - 4.9rem);
    display: grid;
    align-items: stretch;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-cinematic--malaki {
    margin-top: -4.9rem;
    min-height: 100svh;
    padding-top: 4.9rem;
}

.hero-cinematic__edge-lines {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.hero-cinematic__edge-lines span {
    position: relative;
}

.hero-cinematic__edge-lines span::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.03) 42%, rgba(255, 255, 255, 0.32));
    opacity: 0.22;
}

.hero-cinematic__edge-lines span:first-child::after {
    left: clamp(1rem, 3vw, 2rem);
}

.hero-cinematic__edge-lines span:last-child::after {
    right: clamp(1rem, 3vw, 2rem);
}

.hero-cinematic__media {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: #030303;
}

.hero-cinematic__media video,
.hero-cinematic__media iframe,
.hero-cinematic__fallback {
    width: 100%;
    height: 100%;
}

.hero-cinematic__media video {
    object-fit: cover;
    filter: contrast(1.05) saturate(0.88) brightness(0.74);
}

.hero-cinematic__media iframe {
    border: 0;
    pointer-events: none;
    transform: scale(1.26);
    transform-origin: center;
    filter: contrast(1.02) saturate(0.88) brightness(0.74);
}

.hero-cinematic__fallback {
    background:
        radial-gradient(circle at 24% 28%, rgba(201, 162, 77, 0.22), transparent 40%),
        radial-gradient(circle at 76% 72%, rgba(255, 255, 255, 0.08), transparent 48%),
        linear-gradient(160deg, #050505, #0a0a0a 52%, #040404);
}

.hero-cinematic__veil {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(180deg, rgba(5, 5, 5, 0.68), rgba(5, 5, 5, 0.22) 38%, rgba(5, 5, 5, 0.84)),
        linear-gradient(100deg, rgba(4, 4, 4, 0.9) 10%, rgba(4, 4, 4, 0.28) 54%, rgba(4, 4, 4, 0.86));
}

.hero-cinematic__inner {
    position: relative;
    z-index: 2;
    width: min(1440px, 94vw);
    min-height: calc(100svh - 4.9rem);
    padding-block: clamp(2rem, 9vh, 5.8rem) clamp(1rem, 4vh, 1.7rem);
    display: grid;
    gap: clamp(1rem, 2.6vw, 1.8rem);
}

.hero-cinematic__inner--center {
    grid-template-columns: 1fr;
    align-content: center;
}

.hero-cinematic__content {
    border-radius: 0.28rem;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: linear-gradient(145deg, rgba(3, 3, 3, 0.66), rgba(3, 3, 3, 0.34));
    box-shadow: 0 38px 80px rgba(0, 0, 0, 0.44);
    backdrop-filter: blur(3px);
    padding: clamp(1.25rem, 3.8vw, 2.5rem);
}

.hero-cinematic__content--center {
    max-width: 72rem;
    margin-inline: auto;
    text-align: center;
}

.hero-kicker {
    margin: 0 0 0.76rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.29em;
    font-size: clamp(0.62rem, 1vw, 0.84rem);
    font-weight: 700;
}

.hero-title-main {
    margin: 0;
    color: #f8f6f1;
    font-family: 'Manrope', sans-serif;
    font-size: clamp(2.3rem, 8.4vw, 7.6rem);
    font-weight: 700;
    line-height: 0.9;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-wrap: balance;
}

.hero-cinematic__content .hero-subtitle {
    margin-top: 0.95rem;
    margin-bottom: 0;
    color: #e6dece;
    letter-spacing: 0.11em;
}

.hero-cinematic__content .hero-description {
    max-width: 62ch;
    margin-inline: auto;
    margin-top: 1rem;
    font-size: clamp(0.95rem, 1.22vw, 1.05rem);
    line-height: 1.75;
    color: #ddd4c8;
}

.hero-cinematic__metrics {
    display: grid;
    gap: 0.68rem;
}

.hero-cinematic__metrics--center {
    max-width: 58rem;
    width: 100%;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-inline: auto;
}

.hero-cinematic__social {
    display: flex;
    justify-content: center;
    gap: 0.56rem;
}

.hero-cinematic__social a {
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.24);
    background: rgba(3, 3, 3, 0.36);
    border-radius: 0.22rem;
    padding: 0.36rem 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.62rem;
    color: var(--text-main);
    transition: color var(--transition-fast), border-color var(--transition-fast), background-color var(--transition-fast);
}

.hero-cinematic__social a:hover {
    color: var(--accent);
    border-color: var(--accent);
    background: rgba(201, 162, 77, 0.15);
}

.hero-cinematic__scroll {
    position: absolute;
    left: clamp(1.2rem, 3vw, 2rem);
    bottom: clamp(1rem, 2.4vh, 1.5rem);
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    color: rgba(246, 244, 238, 0.82);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.58rem;
}

body.locale-ar .hero-cinematic__scroll {
    left: auto;
    right: clamp(1.2rem, 3vw, 2rem);
}

.hero-cinematic__scroll span {
    width: 2.9rem;
    height: 1px;
    background: linear-gradient(90deg, rgba(201, 162, 77, 0.9), rgba(201, 162, 77, 0));
}

.hero-metric {
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: linear-gradient(145deg, rgba(3, 3, 3, 0.72), rgba(3, 3, 3, 0.52));
    padding: 0.82rem 1rem;
    text-align: center;
}

.hero-metric__value {
    margin: 0;
    color: var(--accent);
    font-family: 'Cinzel', serif;
    font-size: clamp(1.4rem, 2.8vw, 2rem);
    line-height: 1.05;
}

.hero-metric__label {
    margin-top: 0.2rem;
    color: var(--text-soft);
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.64rem;
}

body.locale-ar .hero-metric__value {
    font-family: 'IBM Plex Sans Arabic', sans-serif;
}

.eyebrow {
    display: inline-block;
    color: var(--accent);
    background: var(--accent-soft);
    border: 1px solid rgba(201, 162, 77, 0.28);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.66rem;
    border-radius: 0.2rem;
    padding: 0.3rem 0.62rem;
    margin-bottom: 1rem;
}

.hero-subtitle {
    color: #e8decc;
    text-transform: uppercase;
    letter-spacing: 0.11em;
    font-size: clamp(0.8rem, 1.25vw, 0.95rem);
    font-weight: 600;
    margin-bottom: 0.82rem;
}

.hero-description {
    max-width: 72ch;
    font-size: 1rem;
    color: var(--text-soft);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.62rem;
    margin-top: 1.45rem;
}

.hero-actions--center {
    justify-content: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.2rem;
    text-decoration: none;
    padding: 0.6rem 1rem;
    border: 1px solid transparent;
    font-weight: 700;
    font-size: 0.68rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    transition: transform var(--transition-fast), color var(--transition-fast), background-color var(--transition-fast), border-color var(--transition-fast);
}

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

.btn-primary {
    background: var(--accent);
    border-color: #d9b563;
    color: #0f0f0f;
}

.btn-primary:hover {
    background: #d3ad5b;
}

.btn-outline {
    border-color: rgba(255, 255, 255, 0.34);
    color: var(--text-main);
    background: rgba(0, 0, 0, 0.36);
}

.btn-outline:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: rgba(201, 162, 77, 0.11);
}

.domain-pill {
    margin-top: 1.25rem;
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    border-radius: 999px;
    background: rgba(201, 162, 77, 0.12);
    border: 1px solid rgba(201, 162, 77, 0.25);
    padding: 0.4rem 0.8rem;
    font-size: 0.76rem;
    text-transform: uppercase;
    letter-spacing: 0.07em;
}

.domain-pill strong {
    color: var(--accent);
}

.section-intro {
    color: var(--text-soft);
    margin-bottom: 0.9rem;
}

.section-label {
    margin: 0;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.68rem;
    font-weight: 700;
}

.home-intro__grid {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    padding: clamp(1.2rem, 3vw, 2.1rem) 0;
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.45fr);
    gap: clamp(1rem, 2.4vw, 2.2rem);
    align-items: start;
}

.home-intro__lead h2 {
    margin-top: 0.64rem;
    margin-bottom: 0;
    font-size: clamp(1.5rem, 4.2vw, 3.45rem);
    line-height: 1.06;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.home-intro__body {
    display: grid;
    gap: 1rem;
    max-width: 70ch;
}

.home-intro__body p {
    font-size: clamp(1rem, 1.2vw, 1.12rem);
    line-height: 1.8;
    color: var(--text-soft);
}

.home-section {
    position: relative;
}

.section-head {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 0.9rem;
    margin-bottom: 1rem;
    padding-bottom: 0.72rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.section-head__index {
    margin: 0;
    color: rgba(201, 162, 77, 0.9);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    font-weight: 700;
}

.section-head__title {
    margin: 0;
    font-size: clamp(1.3rem, 2.3vw, 2rem);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.section-link {
    text-decoration: none;
    text-transform: uppercase;
    color: var(--text-main);
    letter-spacing: 0.14em;
    font-size: 0.66rem;
    font-weight: 700;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 0.2rem;
    padding: 0.42rem 0.72rem;
    transition: color var(--transition-fast), border-color var(--transition-fast), background-color var(--transition-fast);
}

.section-link:hover {
    color: var(--accent);
    border-color: var(--accent);
    background: rgba(201, 162, 77, 0.12);
}

.home-cards {
    gap: 0.95rem;
}

.stack-md {
    display: grid;
    gap: 0.8rem;
}

.stack-lg {
    display: grid;
    gap: 1rem;
}

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

.grid-2.uneven {
    grid-template-columns: 1.2fr 1fr;
}

.cards-2,
.cards-3 {
    display: grid;
    gap: 0.9rem;
}

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

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

.line-card,
.stat-card,
.process-item {
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: linear-gradient(150deg, rgba(4, 4, 4, 0.62), rgba(4, 4, 4, 0.38));
    border-radius: var(--radius-md);
    padding: 1rem;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.line-card h3,
.process-item h3 {
    color: #f4efe6;
    font-size: clamp(1.02rem, 1.5vw, 1.22rem);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.line-card p,
.process-item p {
    color: var(--text-soft);
}

.line-card a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.68rem;
}

.line-card a:hover {
    text-decoration: underline;
}

.stats-grid {
    display: grid;
    gap: 0.8rem;
}

.stat-value {
    font-family: 'Cinzel', serif;
    color: var(--accent);
    font-size: 1.25rem;
    margin-bottom: 0.2rem;
}

body.locale-ar .stat-value {
    font-family: 'IBM Plex Sans Arabic', sans-serif;
}

.stat-label {
    color: var(--text-soft);
}

.media-card {
    display: grid;
    grid-template-rows: auto 1fr;
    align-content: start;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: linear-gradient(150deg, rgba(6, 6, 6, 0.78), rgba(5, 5, 5, 0.52));
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 28px 44px rgba(0, 0, 0, 0.35);
    transition: transform var(--transition-mid), border-color var(--transition-mid), box-shadow var(--transition-mid);
}

.media-card:hover {
    transform: translateY(-4px);
    border-color: rgba(201, 162, 77, 0.5);
    box-shadow: 0 34px 56px rgba(0, 0, 0, 0.46);
}

.media-card__image-link {
    position: relative;
    display: block;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    background: #030303;
}

.post-card .media-card__image-link {
    aspect-ratio: 16 / 10;
}

.media-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.88) contrast(1.06);
    transition: transform 520ms ease, filter 520ms ease;
}

.media-card:hover .media-card__image {
    transform: scale(1.06);
    filter: saturate(0.98) contrast(1.08);
}

.media-card__veil {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.74)),
        linear-gradient(112deg, rgba(0, 0, 0, 0.24), rgba(0, 0, 0, 0.62));
}

.media-card__label {
    position: absolute;
    z-index: 2;
    top: 0.72rem;
    left: 0.72rem;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 0.2rem;
    background: rgba(0, 0, 0, 0.44);
    color: #f7f4ee;
    padding: 0.24rem 0.52rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.58rem;
    font-weight: 700;
}

body.locale-ar .media-card__label {
    left: auto;
    right: 0.72rem;
    letter-spacing: 0;
}

.media-card__content {
    display: grid;
    align-content: start;
    gap: 0.72rem;
    padding: 0.9rem;
}

.media-card__title {
    margin: 0;
    font-size: clamp(1.02rem, 1.5vw, 1.18rem);
    line-height: 1.28;
}

.media-card__title a {
    color: #f4efe6;
    text-decoration: none;
    transition: color var(--transition-fast);
}

.media-card__title a:hover {
    color: var(--accent);
}

.media-card__excerpt {
    margin: 0;
    color: var(--text-soft);
    font-size: 0.92rem;
    line-height: 1.62;
}

.media-card__chips {
    margin-top: 0.05rem;
}

.media-card__cta {
    margin-top: 0.2rem;
    color: var(--accent);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.69rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: color var(--transition-fast);
}

.media-card__cta:hover {
    color: #dfba69;
}

.callout {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

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

.process-index {
    width: 1.9rem;
    height: 1.9rem;
    border-radius: 50%;
    border: 1px solid var(--line);
    color: var(--accent);
    display: grid;
    place-items: center;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.quality-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.62rem;
}

.quality-list li {
    border: 1px solid var(--soft-line);
    border-radius: var(--radius-sm);
    background: rgba(0, 0, 0, 0.28);
    padding: 0.82rem 0.9rem;
    position: relative;
    padding-inline-start: 2.05rem;
}

.quality-list li::before {
    content: '+';
    color: var(--accent);
    position: absolute;
    inset-inline-start: 0.8rem;
    top: 0.74rem;
    font-weight: 800;
}

.contact-list {
    margin: 0;
    display: grid;
    gap: 0.8rem;
}

.contact-list div {
    border: 1px solid var(--soft-line);
    border-radius: var(--radius-sm);
    padding: 0.82rem 0.9rem;
    background: rgba(0, 0, 0, 0.28);
}

.contact-list dt {
    color: var(--accent);
    font-size: 0.76rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.25rem;
}

.contact-list dd {
    margin: 0;
}

.contact-list a {
    text-decoration-color: rgba(201, 162, 77, 0.48);
}

.map-frame,
.video-frame {
    margin: 0.95rem 0 0.8rem;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--soft-line);
    background: #000;
}

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

.social-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.social-list a {
    border-radius: 0.2rem;
    border: 1px solid var(--soft-line);
    text-decoration: none;
    padding: 0.44rem 0.78rem;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: color var(--transition-fast), border-color var(--transition-fast);
}

.social-list a:hover {
    color: var(--accent);
    border-color: var(--line);
}

.contact-form {
    display: grid;
    gap: 0.9rem;
}

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

.contact-form-grid label {
    display: grid;
    gap: 0.35rem;
    font-size: 0.84rem;
    color: var(--text-faint);
}

.contact-form-grid input,
.contact-form-grid textarea {
    width: 100%;
    border-radius: var(--radius-sm);
    border: 1px solid var(--soft-line);
    background: rgba(0, 0, 0, 0.36);
    color: var(--text-main);
    padding: 0.58rem 0.68rem;
    font: inherit;
}

.contact-form-grid textarea {
    resize: vertical;
    min-height: 10rem;
}

.contact-form-grid input:focus,
.contact-form-grid textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 1px rgba(201, 162, 77, 0.35);
}

.contact-form-grid__full {
    grid-column: 1 / -1;
}

.contact-form-actions {
    display: flex;
    justify-content: flex-start;
}

.form-alert {
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.16);
    padding: 0.72rem 0.82rem;
    margin-bottom: 0.9rem;
}

.form-alert-success {
    border-color: rgba(201, 162, 77, 0.45);
    background: rgba(201, 162, 77, 0.11);
    color: #f2e9d8;
}

.form-alert-error {
    border-color: rgba(220, 90, 90, 0.46);
    background: rgba(150, 38, 38, 0.2);
    color: #ffdada;
}

.form-error-list {
    margin: 0.5rem 0 0;
    padding-inline-start: 1rem;
    display: grid;
    gap: 0.2rem;
}

.domain-line {
    margin-top: 0.6rem;
    color: var(--accent);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.82rem;
}

.site-footer {
    border-top: 1px solid var(--line);
    background: rgba(0, 0, 0, 0.76);
    position: relative;
    z-index: 2;
    margin-top: 1rem;
}

.footer-grid {
    padding: 1.4rem 0 1rem;
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 1rem;
}

.footer-logo-link {
    display: inline-block;
    margin-bottom: 0.55rem;
}

.footer-logo {
    width: 5.2rem;
    height: 5.2rem;
    object-fit: contain;
    display: block;
}

.footer-heading {
    color: var(--accent);
    font-size: 0.86rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.35rem;
}

.footer-copy {
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.footer-copy a {
    text-decoration-color: rgba(201, 162, 77, 0.42);
}

.footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
}

.footer-social a {
    border: 1px solid var(--soft-line);
    border-radius: 0.2rem;
    text-decoration: none;
    padding: 0.34rem 0.58rem;
    font-size: 0.74rem;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.footer-social a:hover {
    color: var(--accent);
    border-color: var(--line);
}

.footer-bottom {
    border-top: 1px solid rgba(201, 162, 77, 0.2);
    padding: 0.8rem 0 1rem;
    color: var(--text-faint);
    font-size: 0.79rem;
}

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

.js .reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 700ms ease, transform 700ms ease;
}

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

.entry-content {
    display: grid;
    gap: 0.8rem;
}

.entry-content p,
.entry-content li {
    color: var(--text-soft);
}

.entry-content ul,
.entry-content ol {
    margin: 0;
    padding-inline-start: 1.1rem;
    display: grid;
    gap: 0.35rem;
}

.entry-content a {
    color: var(--accent);
}

.card-cover {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    border-radius: var(--radius-sm);
    border: 1px solid var(--soft-line);
    margin-bottom: 0.4rem;
    filter: saturate(0.92) contrast(1.03);
}

.detail-cover {
    width: 100%;
    border-radius: var(--radius-md);
    border: 1px solid var(--soft-line);
    margin-bottom: 0.9rem;
}

.product-video {
    width: 100%;
    border-radius: var(--radius-md);
    border: 1px solid var(--soft-line);
    background: #000;
}

.product-show-hero {
    padding: 0;
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(0, 1.06fr) minmax(0, 0.94fr);
    min-height: clamp(24rem, 66vh, 39rem);
}

.product-show-hero__media {
    position: relative;
    min-height: 100%;
}

.product-show-hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.9) contrast(1.05);
}

.product-show-hero__veil {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.16), rgba(0, 0, 0, 0.72)),
        linear-gradient(105deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.64));
}

.product-show-hero__stamp {
    position: absolute;
    z-index: 2;
    top: 1rem;
    left: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.36);
    border-radius: 0.2rem;
    background: rgba(0, 0, 0, 0.48);
    color: #f6f1e6;
    padding: 0.3rem 0.66rem;
    text-transform: uppercase;
    letter-spacing: 0.17em;
    font-size: 0.6rem;
    font-weight: 700;
}

body.locale-ar .product-show-hero__stamp {
    left: auto;
    right: 1rem;
    letter-spacing: 0;
}

.product-show-hero__body {
    padding: clamp(1.1rem, 2.8vw, 2rem);
    display: grid;
    align-content: center;
    gap: 0.84rem;
    background:
        radial-gradient(circle at 8% 12%, rgba(201, 162, 77, 0.12), transparent 38%),
        linear-gradient(140deg, rgba(8, 8, 8, 0.76), rgba(6, 6, 6, 0.92));
}

.product-show-breadcrumbs {
    margin-bottom: 0;
}

.product-show-title {
    margin: 0;
    font-size: clamp(1.9rem, 4.4vw, 3.6rem);
    line-height: 1.02;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

body.locale-ar .product-show-title {
    letter-spacing: 0;
    text-transform: none;
}

.product-show-subtitle {
    margin: 0;
    color: #e5dccb;
    font-size: clamp(0.9rem, 1.35vw, 1.06rem);
    line-height: 1.76;
}

.product-show-chips {
    margin-top: 0.12rem;
}

.product-show-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.62rem;
    margin-top: 0.15rem;
}

.product-show-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
    gap: 1rem;
    align-items: start;
}

.product-show-panel {
    min-height: 100%;
}

.product-show-panel__head {
    margin-bottom: 0.86rem;
}

.product-show-panel__head h2 {
    margin: 0.44rem 0 0;
    font-size: clamp(1.06rem, 1.7vw, 1.32rem);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

body.locale-ar .product-show-panel__head h2 {
    letter-spacing: 0;
    text-transform: none;
}

.product-show-side {
    display: grid;
    gap: 1rem;
    align-content: start;
}

.blog-show-hero {
    padding: 0;
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
    min-height: clamp(24rem, 64vh, 38rem);
}

.blog-show-hero__media {
    position: relative;
    min-height: 100%;
}

.blog-show-hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.9) contrast(1.03);
}

.blog-show-hero__veil {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.8)),
        linear-gradient(105deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.66));
}

.blog-show-hero__stamp {
    position: absolute;
    z-index: 2;
    top: 1rem;
    left: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.34);
    border-radius: 0.2rem;
    background: rgba(0, 0, 0, 0.5);
    color: #f5f1e8;
    padding: 0.3rem 0.66rem;
    text-transform: uppercase;
    letter-spacing: 0.17em;
    font-size: 0.6rem;
    font-weight: 700;
}

body.locale-ar .blog-show-hero__stamp {
    left: auto;
    right: 1rem;
    letter-spacing: 0;
}

.blog-show-hero__body {
    padding: clamp(1.1rem, 2.8vw, 2rem);
    display: grid;
    align-content: center;
    gap: 0.86rem;
    background:
        radial-gradient(circle at 10% 8%, rgba(201, 162, 77, 0.12), transparent 40%),
        linear-gradient(140deg, rgba(7, 7, 7, 0.78), rgba(5, 5, 5, 0.94));
}

.blog-show-breadcrumbs {
    margin-bottom: 0;
}

.blog-show-title {
    margin: 0;
    font-size: clamp(1.8rem, 4vw, 3.3rem);
    line-height: 1.05;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

body.locale-ar .blog-show-title {
    text-transform: none;
    letter-spacing: 0;
}

.blog-show-subtitle {
    margin: 0;
    color: #e4dbc8;
    font-size: clamp(0.9rem, 1.28vw, 1.04rem);
    line-height: 1.74;
}

.blog-show-meta {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.56rem;
    margin-top: 0.1rem;
}

.blog-show-meta__item {
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(0, 0, 0, 0.34);
    border-radius: var(--radius-sm);
    padding: 0.56rem 0.68rem;
    display: grid;
    gap: 0.16rem;
}

.blog-show-meta__item span {
    color: var(--text-faint);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.62rem;
}

.blog-show-meta__item strong {
    color: #f1ece2;
    font-size: 0.86rem;
    font-weight: 700;
}

.blog-show-chips {
    margin-top: 0.08rem;
}

.blog-show-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.62rem;
}

.blog-show-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.18fr) minmax(0, 0.82fr);
    gap: 1rem;
    align-items: start;
}

.blog-show-panel__head {
    margin-bottom: 0.86rem;
}

.blog-show-panel__head h2 {
    margin: 0.44rem 0 0;
    font-size: clamp(1.06rem, 1.7vw, 1.32rem);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

body.locale-ar .blog-show-panel__head h2,
body.locale-ar .blog-show-meta__item span {
    text-transform: none;
    letter-spacing: 0;
}

.blog-show-content {
    font-size: 1.02rem;
    line-height: 1.86;
}

.blog-show-content > p:first-of-type::first-letter {
    float: left;
    font-family: 'Cinzel', serif;
    font-size: 3.2rem;
    line-height: 0.92;
    margin-inline-end: 0.34rem;
    color: var(--accent);
}

body.locale-ar .blog-show-content > p:first-of-type::first-letter {
    float: none;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    margin-inline-end: 0;
    color: inherit;
}

.blog-show-content blockquote {
    margin: 0.6rem 0;
    border-inline-start: 2px solid rgba(201, 162, 77, 0.72);
    padding: 0.44rem 0.8rem;
    background: rgba(201, 162, 77, 0.08);
    color: #e9e0d0;
    border-radius: var(--radius-sm);
    font-size: 0.98rem;
}

.blog-show-sidebar {
    display: grid;
    gap: 1rem;
    align-content: start;
}

@media (min-width: 1001px) {
    .blog-show-sidebar .blog-show-panel {
        position: sticky;
        top: 6rem;
    }
}

.chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
}

.chip {
    border-radius: 0.2rem;
    border: 1px solid var(--line);
    padding: 0.22rem 0.52rem;
    font-size: 0.7rem;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--text-main);
    text-decoration: none;
}

.chip.muted {
    color: var(--text-soft);
    border-color: var(--soft-line);
}

.chip:hover {
    color: var(--accent);
}

.card-meta {
    color: var(--text-faint);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.filter-form {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.85rem;
    align-items: end;
}

.filter-form label {
    display: grid;
    gap: 0.35rem;
    font-size: 0.84rem;
    color: var(--text-faint);
}

.filter-form select {
    width: 100%;
    border-radius: var(--radius-sm);
    border: 1px solid var(--soft-line);
    background: rgba(0, 0, 0, 0.34);
    color: var(--text-main);
    padding: 0.5rem 0.65rem;
}

.filter-actions {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
}

.pagination-wrap {
    margin-top: 1rem;
}

.pagination-wrap nav > div:first-child {
    display: none;
}

.pagination-wrap nav > div:last-child {
    display: flex;
    justify-content: center;
}

.pagination-wrap nav .relative.z-0 {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 0.2rem;
}

.pagination-wrap nav span,
.pagination-wrap nav a {
    border-radius: 0.5rem;
    border: 1px solid var(--soft-line);
    background: rgba(0, 0, 0, 0.24);
    color: var(--text-main);
}

.empty-state {
    color: var(--text-faint);
}

.breadcrumbs {
    margin-bottom: 0.5rem;
    font-size: 0.82rem;
}

.breadcrumbs a {
    color: var(--accent);
}

.attachment-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.65rem;
}

.attachment-list li {
    border: 1px solid var(--soft-line);
    border-radius: var(--radius-sm);
    background: rgba(0, 0, 0, 0.22);
    padding: 0.68rem 0.8rem;
    display: flex;
    justify-content: space-between;
    gap: 0.8rem;
}

.attachment-list span {
    color: var(--text-faint);
    font-size: 0.82rem;
}

.faq-list {
    display: grid;
    gap: 0.8rem;
}

.faq-item {
    padding: 0;
}

.faq-item summary {
    cursor: pointer;
    list-style: none;
    padding: 1rem 1.1rem;
    color: var(--text-main);
    font-weight: 600;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item[open] summary {
    border-bottom: 1px solid var(--soft-line);
}

.faq-item .entry-content {
    padding: 1rem 1.1rem 1.1rem;
}

.section-separator {
    margin: 1.1rem 0;
    border-top: 1px solid var(--soft-line);
}

.mt-md {
    margin-top: 0.8rem;
}

@media (max-width: 1000px) {
    .hero-cinematic {
        min-height: min(88vh, 52rem);
    }

    .hero-cinematic__inner {
        min-height: auto;
        padding-block: clamp(2.6rem, 8vh, 4.8rem) 1.2rem;
    }

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

    .home-intro__grid {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
    }

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

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

    .product-show-hero {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .product-show-hero__media {
        min-height: clamp(18rem, 45vh, 26rem);
    }

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

    .blog-show-hero {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .blog-show-hero__media {
        min-height: clamp(18rem, 45vh, 26rem);
    }

    .blog-show-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 860px) {
    .header-shell {
        grid-template-columns: 1fr auto auto;
    }

    .nav-toggle {
        display: inline-flex;
    }

    .site-nav {
        position: absolute;
        top: calc(100% + 1px);
        left: 0;
        right: 0;
        display: grid;
        gap: 0;
        background: rgba(0, 0, 0, 0.92);
        border-bottom: 1px solid var(--line);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-8px);
        transition: opacity var(--transition-mid), transform var(--transition-mid), visibility var(--transition-mid);
    }

    .site-nav a {
        text-transform: uppercase;
        letter-spacing: 0.12em;
        opacity: 1;
        border-top: 1px solid rgba(201, 162, 77, 0.14);
        padding: 0.82rem 4vw;
    }

    .home-intro__grid {
        grid-template-columns: 1fr;
    }

    .section-head {
        grid-template-columns: auto minmax(0, 1fr);
    }

    .section-link {
        grid-column: 1 / -1;
        justify-self: start;
    }

    body.locale-ar .section-link {
        justify-self: end;
    }

    .site-nav.is-open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .grid-2,
    .grid-2.uneven {
        grid-template-columns: 1fr;
    }

    .cards-2 {
        grid-template-columns: 1fr;
    }

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

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

/* Luxury palette derived from Malaki's carbon / neutral / cognac system. */
:root {
    --bg-main: #151515;
    --bg-deep: #0f0e0d;
    --bg-soft: rgba(21, 21, 21, 0.94);
    --panel: #1b1917;
    --line: rgba(235, 231, 223, 0.16);
    --soft-line: rgba(235, 231, 223, 0.09);
    --text-main: #ebe7df;
    --text-soft: #c8c0b4;
    --text-faint: #91897e;
    --accent: #aa794f;
    --accent-soft: rgba(170, 121, 79, 0.12);
    --header: rgba(21, 21, 21, 0.6);
}

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

body:not(.page-home)::before {
    background:
        linear-gradient(rgba(21, 21, 21, 0.92), rgba(15, 14, 13, 0.97)),
        var(--inner-background-image) center 42% / min(58vw, 42rem) auto no-repeat;
    opacity: 0.94;
}

.smoke-orb {
    opacity: 0.16;
}

.orb-a {
    background: rgba(170, 121, 79, 0.14);
}

.orb-b {
    background: rgba(200, 192, 180, 0.06);
}

.film-grain {
    opacity: 0.035;
}

.site-header,
.site-header.is-scrolled,
.site-footer {
    background: rgba(21, 21, 21, 0.9);
    border-color: var(--soft-line);
}

.panel,
.line-card,
.media-card,
.product-show-hero__body,
.blog-show-hero__body,
.blog-show-meta__item,
.attachment-list li,
.filter-form select {
    color: var(--text-main);
    border-color: var(--soft-line);
    background: rgba(27, 25, 23, 0.82);
    box-shadow: none;
}

.panel:hover,
.line-card:hover,
.media-card:hover {
    border-color: rgba(170, 121, 79, 0.34);
}

.btn-primary {
    color: var(--accent);
    background: transparent;
    border-color: var(--accent);
}

.btn-primary:hover {
    color: #ebe7df;
    background: rgba(170, 121, 79, 0.14);
    border-color: #b98666;
}

.btn-outline,
.lang-switch,
.social-icons a {
    color: var(--text-soft);
    background: transparent;
    border-color: var(--line);
}

.btn-outline:hover,
.lang-switch:hover,
.social-icons a:hover {
    color: var(--text-main);
    background: transparent;
    border-color: var(--accent);
}

.collection-video-hero__shade,
.hero-cinematic__veil {
    background: linear-gradient(180deg, rgba(15, 14, 13, 0.25), rgba(15, 14, 13, 0.8));
}

.footer-bottom {
    border-color: var(--soft-line);
    color: var(--text-faint);
}

::selection {
    color: #151515;
    background: #aa794f;
}

/* Per-category cinematic coming-soon experience. */
.coming-soon-hero {
    position: relative;
    min-height: 100svh;
    margin-top: -4.9rem;
    padding-top: 4.9rem;
    display: grid;
    place-items: center;
    overflow: hidden;
    isolation: isolate;
}

.coming-soon-hero__media,
.coming-soon-hero__media video,
.coming-soon-hero__veil {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.coming-soon-hero__media {
    z-index: -2;
}

.coming-soon-hero__media video {
    object-fit: cover;
    filter: saturate(0.42) contrast(0.88) brightness(0.62);
}

.coming-soon-hero__veil {
    z-index: -1;
    background:
        radial-gradient(circle at 50% 48%, rgba(170, 121, 79, 0.08), transparent 32%),
        linear-gradient(180deg, rgba(15, 14, 13, 0.42), rgba(15, 14, 13, 0.82));
}

.coming-soon-hero__content {
    width: min(44rem, calc(100% - 2rem));
    min-height: 60svh;
    padding: clamp(3rem, 8vw, 6rem) 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.coming-soon-hero__eyebrow {
    margin: 0 0 1.1rem;
    color: #c8c0b4;
    font-size: 0.68rem;
    font-weight: 300;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.coming-soon-hero__ornament {
    position: relative;
    width: min(12rem, 45vw);
    height: 1px;
    margin-bottom: 1.5rem;
    background: linear-gradient(90deg, transparent, rgba(170, 121, 79, 0.72), transparent);
}

.coming-soon-hero__ornament::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0.42rem;
    height: 0.42rem;
    background: #aa794f;
    transform: translate(-50%, -50%) rotate(45deg);
}

.coming-soon-hero h1 {
    margin: 0;
    color: #ebe7df;
    font-size: clamp(1.55rem, 3.7vw, 2.8rem);
    font-weight: 300;
    line-height: 1.12;
}

.coming-soon-hero__description {
    max-width: 34rem;
    margin-top: 1rem;
    color: #c8c0b4;
    font-size: clamp(0.78rem, 1vw, 0.88rem);
    line-height: 1.75;
}

.coming-soon-hero__back {
    margin-top: 2rem;
    padding-bottom: 0.25rem;
    color: #c8c0b4;
    border-bottom: 1px solid rgba(170, 121, 79, 0.58);
    font-size: 0.7rem;
    font-weight: 300;
    letter-spacing: 0.04em;
    text-decoration: none;
    transition: color var(--transition-fast), border-color var(--transition-fast);
}

.coming-soon-hero__back:hover {
    color: #ebe7df;
    border-color: #aa794f;
}

@media (max-width: 680px) {
    .coming-soon-hero {
        margin-top: -4.2rem;
        padding-top: 4.2rem;
    }

    .coming-soon-hero__content {
        min-height: 72svh;
    }

    .coming-soon-hero h1 {
        font-size: clamp(1.4rem, 7vw, 2rem);
    }
}

@media (prefers-reduced-motion: reduce) {
    .coming-soon-hero__media video {
        display: none;
    }
}

/* Product flavor gallery: image-first, restrained and tactile. */
.product-flavors-section {
    display: block;
}

.product-flavors-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 1rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid var(--soft-line);
}

.product-flavors-heading p {
    color: var(--text-faint);
    font-size: 0.68rem;
}

.product-flavors-heading h2 {
    margin: 0;
    font-size: 1.15rem;
}

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

.flavor-card {
    min-width: 0;
    border-inline-end: 1px solid var(--soft-line);
    border-bottom: 1px solid var(--soft-line);
    background: #151515;
    overflow: hidden;
    transition: background-color 300ms ease;
}

.flavor-card:nth-child(4n) {
    border-inline-end: 0;
}

.flavor-card:hover {
    background: #1b1917;
}

.flavor-card__image {
    position: relative;
    aspect-ratio: 1 / 1.08;
    display: grid;
    place-items: center;
    overflow: hidden;
}

.flavor-card__image::after {
    content: '';
    position: absolute;
    inset: auto 18% 7% 18%;
    height: 10%;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.36);
    filter: blur(14px);
}

.flavor-card__image img {
    position: relative;
    z-index: 1;
    width: 84%;
    height: 84%;
    object-fit: contain;
    filter: saturate(0.82) contrast(0.96);
    transition: transform 500ms cubic-bezier(0.16, 1, 0.3, 1), filter 300ms ease;
}

.flavor-card:hover .flavor-card__image img {
    transform: translateY(-0.4rem) scale(1.025);
    filter: saturate(0.94) contrast(0.98);
}

.flavor-card__body {
    position: relative;
    padding: 0.9rem 1rem 1.15rem;
    text-align: center;
}

.flavor-card__body::before {
    content: '';
    display: block;
    width: 1.8rem;
    height: 1px;
    margin: 0 auto 0.7rem;
    background: var(--accent);
    opacity: 0.65;
}

.flavor-card h3 {
    margin: 0;
    color: var(--text-main);
    font-size: 0.85rem;
    font-weight: 300;
}

.flavor-card p {
    max-width: 19rem;
    margin: 0.45rem auto 0;
    color: var(--text-faint);
    font-size: 0.72rem;
    line-height: 1.55;
}

@media (max-width: 1000px) {
    .product-flavors-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .flavor-card:nth-child(4n) {
        border-inline-end: 1px solid var(--soft-line);
    }

    .flavor-card:nth-child(2n) {
        border-inline-end: 0;
    }
}

@media (max-width: 520px) {
    .product-flavors-heading {
        align-items: start;
        flex-direction: column-reverse;
        gap: 0.15rem;
    }

    .flavor-card__image {
        aspect-ratio: 1 / 1.12;
    }

    .flavor-card__image img {
        width: 90%;
        height: 90%;
    }

    .flavor-card__body {
        padding-inline: 0.55rem;
    }
}

@media (max-width: 680px) {
    .hero-cinematic {
        min-height: min(96vh, 48rem);
    }

    .hero-cinematic__inner {
        padding-top: clamp(3.8rem, 14vh, 5.1rem);
        gap: 0.74rem;
    }

    .hero-cinematic__content {
        padding: 1rem;
    }

    .hero-title-main {
        letter-spacing: 0.07em;
    }

    .hero-cinematic__social {
        flex-wrap: wrap;
    }

    .hero-cinematic__metrics {
        grid-template-columns: 1fr;
    }

    .hero-cinematic__scroll {
        display: none;
    }

    .hero-cinematic__content .hero-subtitle {
        font-size: 0.74rem;
    }

    .brand-text-wrap {
        display: none;
    }

    .header-shell {
        min-height: 4.2rem;
    }

    .section-head {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .section-head__title {
        font-size: 1.22rem;
    }

    .product-show-hero__body {
        padding: 1rem;
    }

    .product-show-title {
        font-size: clamp(1.5rem, 8vw, 2.3rem);
    }

    .product-show-actions {
        gap: 0.48rem;
    }

    .blog-show-hero__body {
        padding: 1rem;
    }

    .blog-show-title {
        font-size: clamp(1.45rem, 8vw, 2.2rem);
    }

    .blog-show-meta {
        grid-template-columns: 1fr;
    }

    .cards-3 {
        grid-template-columns: 1fr;
    }

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

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

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

/* Refined editorial system: quieter type, lighter weights and restrained detail. */
body {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.94rem;
    font-weight: 300;
    line-height: 1.72;
}

body.locale-ar {
    font-family: 'Noto Sans Arabic', sans-serif;
}

h1,
h2,
h3,
h4 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    letter-spacing: 0.01em;
}

body.locale-ar h1,
body.locale-ar h2,
body.locale-ar h3,
body.locale-ar h4,
body.locale-ar .hero-title-main {
    font-family: 'Noto Sans Arabic', sans-serif;
    font-weight: 400;
}

.hero-title-main {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 7.2vw, 6.3rem);
    font-weight: 500;
    letter-spacing: 0.055em;
}

.hero-panel h1,
.product-show-title,
.blog-show-title {
    font-size: clamp(1.75rem, 3.8vw, 3rem);
    font-weight: 500;
}

.section-head__title,
.media-card__title,
.home-intro__title,
.product-show-panel__head h2,
.blog-show-panel__head h2 {
    font-weight: 500;
}

.btn,
.site-nav a,
.lang-switch,
.section-label,
.card-meta,
.chip,
.footer-heading {
    font-weight: 400;
}

.brand-mark {
    width: 6rem;
    height: 4rem;
}

.footer-logo {
    width: 7rem;
    height: 4.5rem;
}

.social-icons {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.55rem;
}

.social-icons a,
.footer-social a,
.social-list a,
.hero-cinematic__social a {
    width: 2.25rem;
    height: 2.25rem;
    display: inline-grid;
    place-items: center;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: var(--text-main);
    background: rgba(0, 0, 0, 0.18);
    text-decoration: none;
    transition: color var(--transition-fast), border-color var(--transition-fast), transform var(--transition-fast);
}

.social-icons a:hover,
.footer-social a:hover,
.social-list a:hover,
.hero-cinematic__social a:hover {
    color: var(--accent);
    border-color: var(--accent);
    transform: translateY(-2px);
}

.social-icons svg {
    width: 1rem;
    height: 1rem;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.6;
}

.social-icons .social-icon-fill {
    fill: currentColor;
    stroke: none;
}

/* Malaki-inspired minimal system. Licensed Kamerik/Portrait files are used
   automatically when installed; the remaining families are close fallbacks. */
body {
    font-family: Portrait, 'Cormorant Garamond', Georgia, serif;
    font-size: 0.875rem;
    font-weight: 300;
    line-height: 1.65;
    letter-spacing: 0.025em;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body:not(.page-home)::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        linear-gradient(rgba(6, 6, 6, 0.9), rgba(6, 6, 6, 0.96)),
        var(--inner-background-image) center 42% / min(58vw, 42rem) auto no-repeat;
    opacity: 0.82;
}

body.locale-ar {
    font-family: 'Noto Sans Arabic', sans-serif;
    font-size: 0.86rem;
    font-weight: 300;
}

h1,
h2,
h3,
h4,
.hero-title-main,
.site-nav,
.btn,
.lang-switch,
.eyebrow,
.section-label,
.card-meta {
    font-family: 'Kamerik 105', 'Avenir Next', 'Helvetica Neue', Arial, sans-serif;
}

h1,
h2,
h3,
h4 {
    font-weight: 300;
    line-height: 1.15;
}

h1 { font-size: clamp(1.65rem, 3.2vw, 2.7rem); }
h2 { font-size: clamp(1.3rem, 2.3vw, 2rem); }
h3 { font-size: clamp(1rem, 1.5vw, 1.25rem); }

p,
.entry-content,
.hero-subtitle,
.hero-description,
.footer-copy,
.blog-show-content {
    font-size: clamp(0.78rem, 0.72rem + 0.18vw, 0.9rem);
    font-weight: 300;
}

strong,
b {
    font-weight: 500;
}

.site-nav a,
.lang-switch,
.btn,
.eyebrow,
.section-label,
.card-meta {
    font-size: 0.67rem;
    font-weight: 300;
    letter-spacing: 0.22em;
}

.hero-title-main {
    font-size: clamp(2.15rem, 5.2vw, 4.2rem);
    font-weight: 300;
    letter-spacing: 0.08em;
}

.brand-title,
.hero-kicker,
.hero-metric__value,
.hero-metric__label,
.media-card__label,
.media-card__cta,
.product-show-hero__stamp,
.blog-show-hero__stamp,
.blog-show-meta__item strong,
.faq-item summary,
.form-label,
.filter-form label {
    font-weight: 300;
}

.home-intro__body,
.entry-content,
.product-show-subtitle,
.blog-show-subtitle {
    line-height: 1.72;
}

.panel,
.line-card,
.media-card {
    border-color: rgba(255, 255, 255, 0.1);
    background: rgba(7, 7, 7, 0.52);
    box-shadow: none;
    backdrop-filter: blur(8px);
}

.collection-video-hero {
    position: relative;
    min-height: clamp(25rem, 66svh, 42rem);
    display: grid;
    place-items: center;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.collection-video-hero--compact {
    min-height: clamp(21rem, 54svh, 34rem);
}

.collection-video-hero > video,
.collection-video-hero__shade {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.collection-video-hero > video {
    object-fit: cover;
    filter: saturate(0.7) contrast(1.08);
}

.collection-video-hero__shade {
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0.72)),
        linear-gradient(90deg, rgba(0, 0, 0, 0.48), transparent 70%);
}

.collection-video-hero__content {
    position: relative;
    z-index: 1;
    align-content: center;
    justify-items: start;
    padding-block: 8rem 4rem;
}

.collection-video-hero__content h1 {
    max-width: 18ch;
    margin: 0.35rem 0 0.7rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.collection-video-hero__content .entry-content,
.collection-video-hero__content .hero-description,
.collection-video-hero__content .hero-subtitle {
    max-width: 48rem;
    color: rgba(255, 255, 255, 0.76);
}

@media (prefers-reduced-motion: reduce) {
    .collection-video-hero > video,
    .age-verification-background,
    .hero-cinematic__media video {
        display: none;
    }
}

/* Compact scale and resilient header layout. */
.header-shell {
    min-height: 4.5rem;
}

.brand,
.brand-mark {
    width: 4.6rem;
    height: 3.35rem;
    flex: 0 0 4.6rem;
}

.brand {
    overflow: visible;
}

.brand-mark {
    overflow: hidden;
}

.brand-logo {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    object-position: center;
}

.site-nav {
    min-width: 0;
    max-width: 100%;
    gap: clamp(0.5rem, 1.25vw, 0.95rem);
    overflow-x: auto;
    white-space: nowrap;
    scrollbar-width: none;
}

.site-nav::-webkit-scrollbar {
    display: none;
}

.site-nav a {
    flex: 0 0 auto;
    font-size: 0.61rem;
    letter-spacing: 0.16em;
}

h1,
.hero-panel h1,
.product-show-title,
.blog-show-title,
.collection-video-hero__content h1 {
    font-size: clamp(1.35rem, 2.6vw, 2.05rem);
}

h2,
.section-head__title,
.home-intro__lead h2,
.product-show-panel__head h2,
.blog-show-panel__head h2 {
    font-size: clamp(1.05rem, 1.75vw, 1.45rem);
}

h3,
.media-card__title {
    font-size: clamp(0.92rem, 1.25vw, 1.08rem);
}

.hero-title-main {
    font-size: clamp(1.9rem, 4.25vw, 3.25rem);
}

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

.footer-navigation {
    display: grid;
    gap: 0.32rem;
}

.footer-navigation a {
    width: fit-content;
    color: var(--text-soft);
    font-size: 0.76rem;
    font-weight: 300;
    text-decoration: none;
}

.footer-navigation a:hover {
    color: var(--accent);
}

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

@media (max-width: 680px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* Unified type hierarchy and muted, matte palette. */
:root {
    --bg-main: #181713;
    --bg-deep: #11100e;
    --bg-soft: rgba(27, 25, 21, 0.92);
    --panel: rgba(44, 40, 34, 0.52);
    --line: rgba(209, 195, 176, 0.18);
    --soft-line: rgba(209, 195, 176, 0.1);
    --text-main: #ded6c8;
    --text-soft: #bdb4a6;
    --text-faint: #8f877d;
    --accent: #a77b63;
    --accent-soft: rgba(167, 123, 99, 0.12);
    --header: rgba(18, 17, 14, 0.32);
    --shadow-panel: none;
}

body,
button,
input,
select,
textarea,
h1,
h2,
h3,
h4,
.hero-title-main,
.site-nav,
.btn,
.lang-switch,
.eyebrow,
.section-label,
.card-meta {
    font-family: 'Kamerik 105', 'DM Sans', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 300;
}

body.locale-ar,
body.locale-ar button,
body.locale-ar input,
body.locale-ar select,
body.locale-ar textarea,
body.locale-ar h1,
body.locale-ar h2,
body.locale-ar h3,
body.locale-ar h4,
body.locale-ar .hero-title-main {
    font-family: 'Noto Sans Arabic', sans-serif;
    font-weight: 300;
}

h1,
h2,
h3,
h4,
.hero-title-main,
.collection-video-hero__content h1,
.product-show-title,
.blog-show-title,
.section-head__title,
.product-show-panel__head h2,
.blog-show-panel__head h2 {
    color: var(--text-main);
    font-weight: 300;
    letter-spacing: 0;
    text-transform: none;
}

.site-nav a,
.lang-switch,
.btn,
.eyebrow,
.section-label,
.card-meta,
.media-card__label,
.media-card__cta,
.product-show-hero__stamp,
.blog-show-hero__stamp,
.footer-heading,
.domain-line {
    font-weight: 300;
    letter-spacing: 0.04em;
    text-transform: none;
}

h1,
.hero-panel h1,
.product-show-title,
.blog-show-title,
.collection-video-hero__content h1 {
    font-size: clamp(1.2rem, 2.1vw, 1.7rem);
}

h2,
.section-head__title,
.home-intro__lead h2,
.product-show-panel__head h2,
.blog-show-panel__head h2 {
    font-size: clamp(1rem, 1.45vw, 1.25rem);
}

h3,
.media-card__title {
    font-size: clamp(0.88rem, 1.05vw, 1rem);
}

.hero-title-main {
    font-size: clamp(1.65rem, 3.4vw, 2.65rem);
    letter-spacing: 0;
}

p,
.entry-content,
.hero-subtitle,
.hero-description,
.footer-copy,
.blog-show-content {
    color: var(--text-soft);
    font-size: clamp(0.76rem, 0.72rem + 0.12vw, 0.84rem);
    font-weight: 300;
}

.panel,
.line-card,
.media-card,
.product-show-hero__body,
.blog-show-hero__body,
.blog-show-meta__item,
.attachment-list li,
.filter-form select {
    border-color: var(--soft-line);
    background: rgba(35, 32, 27, 0.58);
    box-shadow: none;
}

.site-header.is-scrolled,
.site-footer {
    background: rgba(20, 18, 15, 0.92);
    border-color: var(--soft-line);
}

.btn-primary {
    background: var(--accent);
    border-color: var(--accent);
    color: #17130f;
}

.btn-outline,
.lang-switch,
.social-icons a {
    border-color: var(--line);
    color: var(--text-main);
    background: transparent;
}

.collection-video-hero > video,
.hero-cinematic__media video {
    filter: saturate(0.55) contrast(0.92) brightness(0.78);
}

.collection-video-hero__shade {
    background: linear-gradient(180deg, rgba(18, 16, 13, 0.28), rgba(18, 16, 13, 0.76));
}

@media (max-width: 860px) {
    .site-container {
        width: min(100% - 2rem, 42rem);
    }

    .header-shell {
        grid-template-columns: auto 1fr auto;
        min-height: 4rem;
    }

    .brand,
    .brand-mark {
        width: 3.8rem;
        height: 2.8rem;
        flex-basis: 3.8rem;
    }

    .nav-toggle {
        grid-column: 3;
        width: 2.1rem;
        height: 2.1rem;
        border: 0;
    }

    .header-actions {
        grid-column: 2;
        grid-row: 1;
        justify-self: end;
        margin-inline-end: 0.3rem;
    }

    .site-nav {
        padding-block: 0.4rem;
        background: rgba(22, 20, 17, 0.98);
    }

    .site-nav a {
        padding: 0.65rem 1rem;
        border-color: var(--soft-line);
        font-size: 0.65rem;
        letter-spacing: 0.04em;
    }

    .hero-cinematic,
    .hero-cinematic--malaki {
        min-height: 100svh;
    }

    .hero-cinematic__content {
        max-width: 22rem;
        padding: 0;
        background: transparent;
        border: 0;
        box-shadow: none;
        backdrop-filter: none;
    }

    .hero-cinematic__content .hero-description,
    .hero-cinematic__content .hero-subtitle,
    .hero-cinematic__metrics,
    .hero-cinematic__social,
    .hero-actions {
        display: none;
    }

    .hero-kicker {
        margin-bottom: 0.55rem;
        font-size: 0.68rem;
        letter-spacing: 0.04em;
        text-transform: none;
    }

    .hero-title-main {
        font-size: clamp(1.55rem, 7vw, 2.15rem);
        line-height: 1.15;
    }

    .collection-video-hero,
    .collection-video-hero--compact {
        min-height: 72svh;
    }

    .collection-video-hero__content {
        justify-items: center;
        text-align: center;
        padding-block: 6rem 3rem;
    }

    .collection-video-hero__content .breadcrumbs {
        font-size: 0.68rem;
    }

    .panel {
        padding: 1rem;
        border-radius: 0;
        backdrop-filter: none;
    }

    .section-gap {
        padding-top: 2rem;
    }

    .section-gap-top {
        padding-top: 1rem;
    }

    .section-gap-bottom {
        padding-bottom: 2rem;
    }

    .cards-3,
    .cards-2 {
        gap: 0.75rem;
    }

    .footer-grid {
        gap: 1.5rem;
        padding-block: 1.5rem;
    }
}

/* Keep the supplied lockup contained after all legacy header overrides. */
.brand,
.brand-mark {
    width: clamp(5.4rem, 7vw, 6.75rem);
    height: 4rem;
    flex-basis: auto;
}

.brand-logo {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.footer-logo {
    width: clamp(7rem, 10vw, 9rem);
    height: auto;
    object-fit: contain;
}

@media (max-width: 640px) {
    .brand,
    .brand-mark {
        width: 4.6rem;
        height: 3.25rem;
    }
}

/* Compact collection sizing and final navigation scale. */
.site-nav a {
    font-size: 0.78rem;
    letter-spacing: 0.14em;
}

.malaki-home-products {
    padding: clamp(3rem, 5vw, 4.5rem) 0 clamp(3.5rem, 6vw, 5rem);
    color: #ebe7df;
    background: #151515;
}

.malaki-home-products > .site-container {
    width: min(calc(100% - 3rem), 68.75rem);
}

.malaki-home-products__head {
    margin-bottom: 1.75rem;
    border-bottom-color: rgba(235, 231, 223, 0.16);
}

.malaki-home-products__head p,
.malaki-home-products__head a {
    color: #ebe7df;
}

.malaki-home-products__head a {
    color: #b98666;
}

.malaki-products-row {
    gap: 0.75rem;
}

.malaki-product-card__link,
.malaki-home-products .malaki-product-card__link {
    min-height: 0;
    height: 21rem;
    margin-top: 2rem;
    padding: 0 1.25rem 1.4rem;
    gap: 1.35rem;
    color: #ebe7df;
    border-color: rgba(235, 231, 223, 0.22);
    background: #191816;
}

.malaki-product-card__image-wrap {
    width: min(9.5rem, 72%);
    height: 12rem;
    margin-top: -2rem;
}

.malaki-product-card__primary {
    gap: 0.45rem;
    transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

.malaki-product-card__secondary {
    position: absolute;
    z-index: 3;
    right: 1.25rem;
    bottom: 1.35rem;
    left: 1.25rem;
    max-height: none;
    pointer-events: none;
}

.malaki-product-card__link:hover .malaki-product-card__primary,
.malaki-product-card__link:focus-visible .malaki-product-card__primary {
    transform: translateY(-4.2rem);
}

.malaki-product-card__link:hover .malaki-product-card__secondary,
.malaki-product-card__link:focus-visible .malaki-product-card__secondary {
    max-height: none;
}

.products-grid-four {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

/* About page — video statement, restrained intro, alternating editorial story. */
.malaki-about-hero {
    position: relative;
    isolation: isolate;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100svh;
    padding: 8rem 1.5rem 5rem;
    overflow: hidden;
    text-align: center;
    background: #151515;
}

.malaki-about-hero__media,
.malaki-about-hero__media video,
.malaki-about-hero__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.malaki-about-hero__media {
    z-index: -1;
}

.malaki-about-hero__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(21, 21, 21, 0.18), rgba(21, 21, 21, 0.58));
}

.malaki-about-hero__media video {
    object-fit: cover;
    filter: saturate(0.72) brightness(0.78);
}

.malaki-about-hero__image {
    background-position: center;
    background-repeat: no-repeat;
    background-size: min(72vw, 60rem) auto;
}

.malaki-about-hero__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.malaki-about-hero__content p,
.malaki-about-story__kicker {
    margin: 0;
    color: #b98666;
    font-size: 0.72rem;
    font-weight: 300;
    line-height: 1.5;
    letter-spacing: 0.24em;
    text-transform: uppercase;
}

.malaki-about-hero__content h1 {
    margin: 0;
    color: #ebe7df;
    font-size: clamp(2rem, 4.5vw, 4rem);
    font-weight: 300;
    line-height: 1;
    letter-spacing: 0.01em;
    text-transform: uppercase;
}

.malaki-about-hero__content > span {
    width: 1.3rem;
    height: 0.75rem;
    border: 1px solid #b98666;
    transform: rotate(30deg) skewX(-28deg);
}

.malaki-about-intro {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    min-height: 52svh;
    padding: clamp(4.5rem, 9vw, 7.5rem) 1.5rem;
    text-align: center;
    background: #151515;
}

.malaki-about-intro__logo {
    width: clamp(8rem, 13vw, 11rem);
    height: auto;
}

.malaki-about-intro__statement {
    width: min(100%, 45rem);
    margin: 0;
    color: #c8c0b4;
    font-size: clamp(0.82rem, 1.1vw, 1rem);
    font-weight: 300;
    line-height: 1.9;
    letter-spacing: 0.03em;
}

.malaki-about-story {
    padding: clamp(5rem, 9vw, 8rem) 0;
    background: #1b1917;
}

.malaki-about-story__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: stretch;
    gap: clamp(2.5rem, 7vw, 6rem);
    width: min(calc(100% - 3rem), 68.75rem);
}

.malaki-about-story__media {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 34rem;
    margin: 0;
    overflow: hidden;
    border: 1px solid rgba(235, 231, 223, 0.12);
    background: #151515;
}

.malaki-about-story__media img {
    display: block;
    width: 100%;
    height: 100%;
    max-height: 42rem;
    padding: 7%;
    object-fit: contain;
}

.malaki-about-story__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
}

.malaki-about-story__content .entry-content {
    color: #c8c0b4;
    font-size: 0.86rem;
    font-weight: 300;
    line-height: 1.9;
}

.malaki-about-story__content .entry-content :is(h1, h2, h3, h4) {
    color: #ebe7df;
    font-size: clamp(1.1rem, 1.8vw, 1.55rem);
    font-weight: 300;
    line-height: 1.25;
}

.malaki-about-closing {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.25rem;
    min-height: 48svh;
    padding: 5rem 1.5rem;
    text-align: center;
    background: #151515;
}

.malaki-about-closing img {
    width: clamp(7rem, 12vw, 10rem);
    height: auto;
}

.malaki-about-closing p {
    width: min(100%, 38rem);
    margin: 0;
    color: #c8c0b4;
    font-size: 0.82rem;
    font-weight: 300;
    line-height: 1.8;
    letter-spacing: 0.04em;
}

@media (max-width: 1000px) {
    .products-grid-four {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .site-nav a {
        font-size: 0.74rem;
    }

    .malaki-home-products > .site-container,
    .malaki-about-story__grid {
        width: min(calc(100% - 2rem), 42rem);
    }

    .malaki-products-row {
        grid-template-columns: repeat(4, minmax(14rem, 72vw));
    }

    .malaki-product-card__link,
    .malaki-home-products .malaki-product-card__link {
        height: 20rem;
    }

    .malaki-product-card__image-wrap {
        height: 11.5rem;
    }

    .malaki-about-hero {
        min-height: 82svh;
    }

    .malaki-about-story__grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .malaki-about-story__media {
        min-height: 24rem;
    }
}

@media (max-width: 520px) {
    .products-grid-four {
        grid-template-columns: 1fr;
    }
}
