/* =========================================================
   ZAR GOLD & DIAMONDS
   Premium Luxury Website CSS
   Dubai | Gold | Bullion | Jewellery | Diamonds
   ========================================================= */

/* ---------------------------------------------------------
   01. ROOT VARIABLES
   --------------------------------------------------------- */

:root {
    --color-bg: #050505;
    --color-bg-soft: #0a0a09;
    --color-bg-card: #0e0e0d;
    --color-bg-card-2: #121210;

    --color-gold: #c89b3c;
    --color-gold-light: #e8c66a;
    --color-gold-bright: #f5d98a;
    --color-gold-dark: #8d671f;

    --color-white: #f7f4ed;
    --color-white-soft: #dedbd3;
    --color-text: #aaa79f;
    --color-text-dark: #77736b;

    --color-border: rgba(232, 198, 106, 0.18);
    --color-border-light: rgba(255, 255, 255, 0.08);

    --font-heading: "Playfair Display", serif;
    --font-body: "DM Sans", sans-serif;

    --container-width: 1320px;

    --transition-fast: 0.25s ease;
    --transition: 0.45s cubic-bezier(0.22, 1, 0.36, 1);
    --transition-slow: 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}


/* ---------------------------------------------------------
   02. RESET
   --------------------------------------------------------- */

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    margin: 0;
    padding: 0;
    background: var(--color-bg);
    color: var(--color-white);
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body::selection {
    background: var(--color-gold);
    color: #000;
}

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

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

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

button {
    border: 0;
    outline: 0;
}

ul,
ol {
    list-style: none;
}


/* ---------------------------------------------------------
   03. GLOBAL
   --------------------------------------------------------- */

::selection {
    background: var(--color-gold);
    color: #000;
}

::-webkit-scrollbar {
    width: 7px;
}

::-webkit-scrollbar-track {
    background: #050505;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg,
            var(--color-gold-light),
            var(--color-gold-dark));
}

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

    margin-inline: auto;
}

.section {
    position: relative;
    padding: 150px 0;
}

.section-dark {
    background: var(--color-bg-soft);
}


/* ---------------------------------------------------------
   04. BACKGROUND TEXTURE
   --------------------------------------------------------- */

body::before {
    content: "";
    position: fixed;
    inset: 0;

    pointer-events: none;

    z-index: 9999;

    opacity: 0.035;

    background-image:
        url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");

    mix-blend-mode: soft-light;
}


/* ---------------------------------------------------------
   05. TYPOGRAPHY
   --------------------------------------------------------- */

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    font-family: var(--font-heading);
    font-weight: 500;
    line-height: 1.05;
}

p {
    margin: 0;
}

.heading-xl {
    font-family: var(--font-heading);

    font-size: clamp(55px,
            8vw,
            125px);

    line-height: 0.92;

    letter-spacing: -0.055em;
}

.heading-lg {
    font-size: clamp(45px,
            6vw,
            85px);

    line-height: 0.95;

    letter-spacing: -0.045em;
}

.heading-md {
    font-size: clamp(32px,
            4vw,
            58px);

    line-height: 1;
}

.text-gold {
    color: var(--color-gold-light);
}

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

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    color: var(--color-gold-light);

    font-family: var(--font-body);

    font-size: 10px;

    font-weight: 600;

    letter-spacing: 0.32em;

    text-transform: uppercase;
}

.eyebrow::before {
    content: "";

    width: 35px;
    height: 1px;

    background: var(--color-gold);
}


/* ---------------------------------------------------------
   06. PRELOADER
   --------------------------------------------------------- */

.preloader {
    position: fixed;

    inset: 0;

    z-index: 10000;

    display: flex;

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

    background: #030303;

    transition:
        opacity 0.8s ease,
        visibility 0.8s ease;
}

.preloader.hide {
    opacity: 0;
    visibility: hidden;
}

.preloader-inner {
    width: 220px;

    text-align: center;
}

.preloader-logo {
    width: 150px;

    margin: 0 auto 35px;
}

.preloader-line {
    position: relative;

    width: 100%;
    height: 1px;

    overflow: hidden;

    background: rgba(255, 255, 255, 0.08);
}

.preloader-line span {
    position: absolute;

    top: 0;
    left: 0;

    width: 0;
    height: 100%;

    background: linear-gradient(90deg,
            var(--color-gold-dark),
            var(--color-gold-light));
}


/* ---------------------------------------------------------
   07. HEADER
   --------------------------------------------------------- */

.site-header {
    position: fixed;

    top: 0;
    left: 0;

    width: 100%;

    z-index: 500;

    height: 100px;

    display: flex;

    align-items: center;

    transition:
        height 0.45s ease,
        background 0.45s ease,
        border-color 0.45s ease;

    border-bottom: 1px solid transparent;
}

.site-header.scrolled {
    height: 76px;

    background: rgba(5, 5, 5, 0.82);

    backdrop-filter: blur(18px);

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

    border-color: rgba(255, 255, 255, 0.06);
}

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

    margin-inline: auto;

    display: flex;

    align-items: center;

    justify-content: space-between;
}

.logo {
    position: relative;

    width: 145px;

    transition: var(--transition);
}

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

.logo img {
    width: 100%;
}


/* ---------------------------------------------------------
   08. NAVIGATION
   --------------------------------------------------------- */

.main-nav {
    display: flex;

    align-items: center;

    gap: 35px;
}

.main-nav a {
    position: relative;

    color: var(--color-white-soft);

    font-size: 11px;

    font-weight: 500;

    letter-spacing: 0.13em;

    text-transform: uppercase;

    transition: var(--transition);
}

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

    position: absolute;

    left: 0;
    bottom: -8px;

    width: 0;
    height: 1px;

    background: var(--color-gold-light);

    transition: var(--transition);
}

.main-nav a:hover {
    color: var(--color-gold-light);
}

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


/* ---------------------------------------------------------
   09. NAV CTA
   --------------------------------------------------------- */

.nav-button {
    position: relative;

    display: inline-flex;

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

    min-height: 45px;

    padding: 0 22px;

    border: 1px solid var(--color-border);

    color: var(--color-gold-light) !important;

    overflow: hidden;

    transition: var(--transition);
}

.nav-button::before {
    content: "";

    position: absolute;

    inset: 0;

    background: var(--color-gold);

    transform: translateY(100%);

    transition: var(--transition);

    z-index: -1;
}

.nav-button:hover {
    color: #050505 !important;

    border-color: var(--color-gold);
}

.nav-button:hover::before {
    transform: translateY(0);
}


/* ---------------------------------------------------------
   10. MOBILE MENU
   --------------------------------------------------------- */

.menu-toggle {
    display: none;

    width: 42px;
    height: 42px;

    position: relative;

    background: transparent;

    cursor: pointer;
}

.menu-toggle span {
    position: absolute;

    left: 7px;

    width: 28px;

    height: 1px;

    background: var(--color-white);

    transition: var(--transition);
}

.menu-toggle span:nth-child(1) {
    top: 14px;
}

.menu-toggle span:nth-child(2) {
    top: 22px;
}

.menu-toggle.active span:nth-child(1) {
    top: 18px;

    transform: rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    top: 18px;

    transform: rotate(-45deg);
}

.mobile-menu {
    position: fixed;

    inset: 0;

    z-index: 400;

    display: flex;

    flex-direction: column;

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

    gap: 25px;

    background: #050505;

    transform: translateY(-100%);

    transition:
        transform 0.8s cubic-bezier(0.77,
            0,
            0.175,
            1);
}

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

.mobile-menu a {
    font-family: var(--font-heading);

    font-size: 16px;

    color: var(--color-white);

    transition: var(--transition);
}

.mobile-menu a:hover {
    color: var(--color-gold-light);
}


/* ---------------------------------------------------------
   11. HERO
   --------------------------------------------------------- */

.hero {
    position: relative;

    min-height: 100svh;

    display: flex;

    align-items: center;

    overflow: hidden;

    background:
        radial-gradient(circle at 70% 45%,
            rgba(200, 155, 60, 0.15),
            transparent 30%),

        radial-gradient(circle at 20% 80%,
            rgba(200, 155, 60, 0.05),
            transparent 30%),

        #050505;
}

.hero-content {
    position: relative;

    z-index: 5;

    max-width: 1100px;
}

.hero-title {
    margin-top: 28px;
}

.hero-title .line {
    display: block;

    overflow: hidden;
}

.hero-title .line-inner {
    display: inline-block;
}

.hero-title em {
    color: var(--color-gold-light);

    font-style: normal;
}

.hero-description {
    max-width: 540px;

    margin-top: 35px;

    color: var(--color-text);

    font-size: 15px;

    line-height: 1.9;
}

.hero-actions {
    display: flex;

    align-items: center;

    gap: 28px;

    margin-top: 40px;
}


/* ---------------------------------------------------------
   12. HERO BACKGROUND GRID
   --------------------------------------------------------- */

.hero-grid {
    position: absolute;

    inset: 0;

    opacity: 0.18;

    background-image:
        linear-gradient(rgba(200, 155, 60, 0.12) 1px,
            transparent 1px),

        linear-gradient(90deg,
            rgba(200, 155, 60, 0.12) 1px,
            transparent 1px);

    background-size: 100px 100px;

    mask-image:
        linear-gradient(to right,
            black,
            transparent 75%);
}


/* ---------------------------------------------------------
   13. HERO GOLD GLOW
   --------------------------------------------------------- */

.hero-glow {
    position: absolute;

    width: 650px;
    height: 650px;

    right: -200px;
    top: 15%;

    border-radius: 50%;

    background:
        radial-gradient(circle,
            rgba(215, 168, 62, 0.18),
            rgba(215, 168, 62, 0.04) 40%,
            transparent 70%);

    filter: blur(10px);

    animation:
        heroGlow 8s ease-in-out infinite;
}

@keyframes heroGlow {

    0%,
    100% {
        transform: scale(1) translate(0, 0);
    }

    50% {
        transform: scale(1.08) translate(-30px, 20px);
    }
}


/* ---------------------------------------------------------
   14. GOLD PARTICLES
   --------------------------------------------------------- */

.gold-particle {
    position: absolute;

    width: 3px;
    height: 3px;

    border-radius: 50%;

    background: var(--color-gold-light);

    box-shadow:
        0 0 15px rgba(232, 198, 106, 0.8);

    opacity: 0.4;

    animation:
        particleFloat 7s ease-in-out infinite;
}

@keyframes particleFloat {

    0%,
    100% {
        transform:
            translate3d(0, 0, 0) scale(1);
    }

    50% {
        transform:
            translate3d(20px, -50px, 0) scale(1.5);
    }
}


/* ---------------------------------------------------------
   15. HERO SCROLL
   --------------------------------------------------------- */

.hero-scroll {
    position: absolute;

    left: 50%;

    bottom: 35px;

    transform: translateX(-50%);

    display: flex;

    align-items: center;

    gap: 15px;

    color: var(--color-text-dark);

    font-size: 9px;

    letter-spacing: 0.3em;

    text-transform: uppercase;
}

.hero-scroll-line {
    width: 55px;

    height: 1px;

    background: var(--color-gold-dark);
}


/* ---------------------------------------------------------
   16. BUTTONS
   --------------------------------------------------------- */

.btn {
    position: relative;

    display: inline-flex;

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

    min-height: 56px;

    padding: 0 30px;

    overflow: hidden;

    font-size: 10px;

    font-weight: 600;

    letter-spacing: 0.2em;

    text-transform: uppercase;

    cursor: pointer;

    transition: var(--transition);
}

.btn span {
    position: relative;

    z-index: 2;
}

.btn-gold {
    background: var(--color-gold);

    color: #050505;
}

.btn-gold::before {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(110deg,
            transparent 20%,
            rgba(255, 255, 255, 0.45) 45%,
            transparent 70%);

    transform: translateX(-120%);

    transition: 0.8s ease;
}

.btn-gold:hover::before {
    transform: translateX(120%);
}

.btn-gold:hover {
    box-shadow:
        0 15px 45px rgba(200, 155, 60, 0.18);
}


.btn-outline {
    border: 1px solid var(--color-border);

    color: var(--color-gold-light);

    background: transparent;
}

.btn-outline::before {
    content: "";

    position: absolute;

    inset: 0;

    background: var(--color-gold);

    transform: translateY(100%);

    transition: var(--transition);

    z-index: 0;
}

.btn-outline:hover {
    color: #050505;
}

.btn-outline:hover::before {
    transform: translateY(0);
}


/* ---------------------------------------------------------
   17. SECTION HEADING
   --------------------------------------------------------- */

.section-heading {
    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 50px;

    margin-bottom: 70px;
}

.section-heading-text {
    max-width: 850px;
}

.section-description {
    max-width: 340px;

    color: var(--color-text);

    font-size: 13px;

    line-height: 1.8;
}


/* ---------------------------------------------------------
   18. ABOUT
   --------------------------------------------------------- */

.about-grid {
    display: grid;

    grid-template-columns:
        1.1fr 0.9fr;

    gap: 100px;

    align-items: center;
}

.about-copy {
    color: var(--color-text);

    font-size: 16px;

    line-height: 1.95;
}

.about-copy p+p {
    margin-top: 25px;
}

.about-number {
    font-family: var(--font-heading);

    font-size: 220px;

    line-height: 0.7;

    color: rgba(255, 255, 255, 0.025);

    user-select: none;
}


/* ---------------------------------------------------------
   19. SERVICE GRID
   --------------------------------------------------------- */

.services-grid {
    display: grid;

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

    gap: 15px;
}

.service-card {
    position: relative;

    grid-column: span 4;

    min-height: 430px;

    padding: 35px;

    overflow: hidden;

    border: 1px solid var(--color-border-light);

    background:
        linear-gradient(145deg,
            rgba(255, 255, 255, 0.045),
            rgba(255, 255, 255, 0.01));

    transition:
        transform 0.6s cubic-bezier(.22, 1, .36, 1),
        border-color 0.5s ease;
}

.service-card:nth-child(1),
.service-card:nth-child(2) {
    grid-column: span 6;
}

.service-card:hover {
    transform: translateY(-10px);

    border-color:
        rgba(232, 198, 106, 0.35);
}

.service-card::before {
    content: "";

    position: absolute;

    width: 350px;
    height: 350px;

    right: -180px;
    bottom: -180px;

    border-radius: 50%;

    background:
        radial-gradient(circle,
            rgba(200, 155, 60, 0.18),
            transparent 70%);

    transition:
        transform 0.8s ease;
}

.service-card:hover::before {
    transform: scale(1.5);
}

.service-number {
    color: var(--color-gold);

    font-size: 10px;

    letter-spacing: 0.2em;
}

.service-icon {
    margin-top: 60px;

    font-size: 36px;

    color: var(--color-gold-light);
}

.service-title {
    margin-top: 15px;

    font-size: 43px;

    letter-spacing: -0.035em;
}

.service-text {
    max-width: 350px;

    margin-top: 15px;

    color: var(--color-text);

    font-size: 13px;

    line-height: 1.8;
}

.service-link {
    position: absolute;

    left: 35px;
    bottom: 32px;

    color: var(--color-gold-light);

    font-size: 9px;

    font-weight: 600;

    letter-spacing: 0.2em;

    text-transform: uppercase;
}

.service-link span {
    margin-left: 8px;

    transition: var(--transition);
}

.service-card:hover .service-link span {
    margin-left: 16px;
}


/* ---------------------------------------------------------
   20. GOLD TICKER
   --------------------------------------------------------- */

.gold-ticker {
    position: relative;

    overflow: hidden;

    padding: 25px 0;

    border-top: 1px solid var(--color-border);

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

    background: #080807;

    white-space: nowrap;
}

.ticker-track {
    display: inline-flex;

    align-items: center;

    gap: 45px;

    animation:
        tickerMove 30s linear infinite;
}

.ticker-item {
    font-family: var(--font-heading);

    font-size: 36px;

    letter-spacing: 0.03em;

    color: var(--color-gold-light);
}

.ticker-star {
    color: var(--color-gold);

    font-size: 14px;
}

@keyframes tickerMove {

    from {
        transform: translateX(0);
    }

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


/* ---------------------------------------------------------
   21. PREMIUM IMAGE SECTION
   --------------------------------------------------------- */

.image-feature {
    position: relative;

    min-height: 650px;

    overflow: hidden;

    background: #080808;
}

.image-feature img {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    opacity: 0.65;

    transform: scale(1.04);

    transition:
        transform 1.5s cubic-bezier(.22, 1, .36, 1);
}

.image-feature:hover img {
    transform: scale(1.09);
}

.image-feature::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(90deg,
            rgba(0, 0, 0, 0.85),
            rgba(0, 0, 0, 0.2));
}

.image-feature-content {
    position: relative;

    z-index: 2;

    min-height: 650px;

    display: flex;

    align-items: center;
}


/* ---------------------------------------------------------
   22. BULLION
   --------------------------------------------------------- */

.bullion-section {
    background:
        radial-gradient(circle at 75% 50%,
            rgba(200, 155, 60, 0.09),
            transparent 30%),
        #090909;
}

.bullion-grid {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 100px;

    align-items: center;
}

.bullion-visual {
    position: relative;

    height: 600px;

    overflow: hidden;

    border: 1px solid var(--color-border-light);

    background:
        radial-gradient(circle,
            rgba(200, 155, 60, 0.13),
            transparent 50%),
        #080808;
}

.bullion-circle {
    position: absolute;

    width: 390px;
    height: 390px;

    top: 50%;
    left: 50%;

    transform:
        translate(-50%, -50%);

    border-radius: 50%;

    background:
        radial-gradient(circle at 35% 25%,
            #ffe9a6,
            #d2a13d 30%,
            #8d641e 65%,
            #201604);

    box-shadow:
        0 0 100px rgba(200, 155, 60, 0.16),
        inset -40px -40px 80px rgba(0, 0, 0, 0.25);

    animation:
        bullionFloat 8s ease-in-out infinite;
}

@keyframes bullionFloat {

    0%,
    100% {
        transform:
            translate(-50%, -50%) rotate(0deg);
    }

    50% {
        transform:
            translate(-50%, -53%) rotate(6deg);
    }
}

.bullion-word {
    position: absolute;

    inset: 0;

    display: grid;

    place-items: center;

    font-family: var(--font-body);

    font-size: clamp(70px,
            9vw,
            140px);

    font-weight: 700;

    letter-spacing: -0.08em;

    color: rgba(255, 255, 255, 0.025);
}


/* ---------------------------------------------------------
   23. JEWELLERY SECTION
   --------------------------------------------------------- */

.jewellery-grid {
    display: grid;

    grid-template-columns:
        0.8fr 1.2fr;

    gap: 100px;

    align-items: center;
}

.jewellery-copy {
    max-width: 550px;
}

.jewellery-copy-text {
    margin-top: 30px;

    color: var(--color-text);

    line-height: 1.9;
}

.jewellery-art {
    position: relative;

    min-height: 600px;

    overflow: hidden;

    border: 1px solid var(--color-border-light);

    background:
        radial-gradient(circle at center,
            rgba(232, 198, 106, 0.1),
            transparent 50%),
        #080808;
}

.jewellery-ring {
    position: absolute;

    top: 50%;
    left: 50%;

    width: 330px;
    height: 330px;

    border: 1px solid rgba(232, 198, 106, 0.5);

    border-radius: 50%;

    transform:
        translate(-50%, -50%);

    box-shadow:
        0 0 70px rgba(200, 155, 60, 0.08);
}

.jewellery-ring::after {
    content: "";

    position: absolute;

    inset: 25px;

    border: 1px solid rgba(232, 198, 106, 0.25);

    border-radius: 50%;
}


/* ---------------------------------------------------------
   24. DIAMOND SECTION
   --------------------------------------------------------- */

.diamond-section {
    position: relative;

    min-height: 750px;

    display: flex;

    align-items: center;

    justify-content: center;

    overflow: hidden;

    text-align: center;

    background:
        radial-gradient(circle at center,
            rgba(255, 255, 255, 0.09),
            transparent 25%),
        #050505;
}

.diamond-content {
    position: relative;

    z-index: 3;

    max-width: 900px;

    margin-inline: auto;
}

.diamond-description {
    max-width: 550px;

    margin: 30px auto 40px;

    color: var(--color-text);

    line-height: 1.9;
}

.diamond-shape {
    position: absolute;

    width: 260px;
    height: 260px;

    border: 1px solid rgba(245, 217, 138, 0.28);

    transform: rotate(45deg);

    animation:
        diamondRotate 12s linear infinite;
}

.diamond-shape::before,
.diamond-shape::after {
    content: "";

    position: absolute;

    inset: 25px;

    border: 1px solid rgba(245, 217, 138, 0.15);
}

.diamond-shape::after {
    inset: 55px;
}

@keyframes diamondRotate {

    from {
        transform:
            rotate(45deg);
    }

    to {
        transform:
            rotate(405deg);
    }
}


/* ---------------------------------------------------------
   25. WHY ZAR
   --------------------------------------------------------- */

.why-grid {
    display: grid;

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

    gap: 1px;

    background: var(--color-border-light);
}

.why-card {
    position: relative;

    padding: 55px 40px;

    min-height: 300px;

    background: var(--color-bg);
}

.why-card-number {
    color: var(--color-gold);

    font-size: 10px;

    letter-spacing: 0.2em;
}

.why-card h3 {
    margin-top: 50px;

    font-size: 30px;
}

.why-card p {
    margin-top: 15px;

    color: var(--color-text);

    font-size: 13px;

    line-height: 1.8;
}


/* ---------------------------------------------------------
   26. CONTACT / INQUIRY
   --------------------------------------------------------- */

.contact-section {
    position: relative;

    overflow: hidden;

    background:
        radial-gradient(circle at 80% 40%,
            rgba(200, 155, 60, 0.12),
            transparent 35%),
        #090909;
}

.contact-grid {
    display: grid;

    grid-template-columns:
        1fr 0.8fr;

    gap: 100px;

    align-items: start;
}

.contact-text {
    max-width: 700px;
}

.contact-description {
    max-width: 520px;

    margin-top: 30px;

    color: var(--color-text);

    line-height: 1.9;
}

.contact-details {
    padding-left: 45px;

    border-left: 1px solid var(--color-border);
}

.contact-details-label {
    color: var(--color-gold);

    font-size: 9px;

    letter-spacing: 0.2em;

    text-transform: uppercase;
}

.contact-details a {
    display: block;

    margin-top: 14px;

    font-family: var(--font-heading);

    font-size: 25px;

    transition: var(--transition);
}

.contact-details a:hover {
    color: var(--color-gold-light);
}


/* ---------------------------------------------------------
   27. FORM
   --------------------------------------------------------- */

.inquiry-form {
    display: grid;

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

    gap: 22px;
}

.form-group {
    position: relative;
}

.form-group.full {
    grid-column: 1 / -1;
}

.form-label {
    display: block;

    margin-bottom: 10px;

    color: var(--color-text-dark);

    font-size: 9px;

    letter-spacing: 0.18em;

    text-transform: uppercase;
}

.form-control {
    width: 100%;

    min-height: 56px;

    padding: 0 18px;

    border: 1px solid rgba(255, 255, 255, 0.09);

    outline: none;

    background: rgba(255, 255, 255, 0.025);

    color: var(--color-white);

    transition: var(--transition);
}

textarea.form-control {
    min-height: 150px;

    padding: 18px;

    resize: vertical;
}

.form-control:focus {
    border-color:
        rgba(232, 198, 106, 0.5);

    background:
        rgba(232, 198, 106, 0.025);

    box-shadow:
        0 0 0 1px rgba(232, 198, 106, 0.08);
}

.form-control::placeholder {
    color: #5e5b55;
}


/* ---------------------------------------------------------
   28. FOOTER
   --------------------------------------------------------- */

.site-footer {
    padding: 80px 0 30px;

    background: #030303;

    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-main {
    display: grid;

    grid-template-columns:
        1.2fr 0.8fr 0.8fr;

    gap: 70px;
}

.footer-logo {
    width: 160px;
}

.footer-tagline {
    max-width: 300px;

    margin-top: 25px;

    color: var(--color-text-dark);

    font-size: 12px;

    line-height: 1.8;
}

.footer-title {
    color: var(--color-gold);

    font-size: 9px;

    letter-spacing: 0.2em;

    text-transform: uppercase;
}

.footer-links {
    margin-top: 20px;
}

.footer-links a {
    display: block;

    margin-bottom: 10px;

    color: var(--color-text);

    font-size: 12px;

    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--color-gold-light);

    transform: translateX(5px);
}

.footer-bottom {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    margin-top: 1px;

    padding-top: 5px;

    border-top: 1px solid rgba(255, 255, 255, 0.06);

    color: #55524d;

    font-size: 9px;

    letter-spacing: 0.12em;

    text-transform: uppercase;
}


/* ---------------------------------------------------------
   29. WHATSAPP BUTTON
   --------------------------------------------------------- */

.whatsapp-button {
    position: fixed;

    right: 25px;
    bottom: 25px;

    z-index: 300;

    width: 58px;
    height: 58px;

    display: flex;

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

    border: 1px solid rgba(255, 255, 255, 0.12);

    border-radius: 50%;

    background: rgba(10, 10, 10, 0.85);

    backdrop-filter: blur(12px);

    color: var(--color-gold-light);

    font-size: 20px;

    box-shadow:
        0 10px 35px rgba(0, 0, 0, 0.35);

    transition: var(--transition);
}

.whatsapp-button:hover {
    transform: translateY(-6px);

    border-color: var(--color-gold);

    box-shadow:
        0 15px 45px rgba(200, 155, 60, 0.15);
}


/* ---------------------------------------------------------
   30. SCROLL REVEAL
   --------------------------------------------------------- */

.reveal {
    opacity: 0;

    transform:
        translateY(45px);

    transition:
        opacity 1s ease,
        transform 1s cubic-bezier(0.22,
            1,
            0.36,
            1);
}

.reveal.is-visible {
    opacity: 1;

    transform:
        translateY(0);
}

.reveal-left {
    opacity: 0;

    transform:
        translateX(-50px);

    transition:
        opacity 1s ease,
        transform 1s cubic-bezier(0.22,
            1,
            0.36,
            1);
}

.reveal-left.is-visible {
    opacity: 1;

    transform:
        translateX(0);
}

.reveal-scale {
    opacity: 0;

    transform:
        scale(0.94);

    transition:
        opacity 1s ease,
        transform 1s cubic-bezier(0.22,
            1,
            0.36,
            1);
}

.reveal-scale.is-visible {
    opacity: 1;

    transform:
        scale(1);
}


/* ---------------------------------------------------------
   31. CURSOR GLOW
   --------------------------------------------------------- */

.cursor-glow {
    position: fixed;

    width: 300px;
    height: 300px;

    border-radius: 50%;

    pointer-events: none;

    z-index: 9998;

    background:
        radial-gradient(circle,
            rgba(200, 155, 60, 0.07),
            transparent 70%);

    transform:
        translate(-50%, -50%);

    opacity: 0;

    transition: opacity 0.4s ease;
}

body:hover .cursor-glow {
    opacity: 1;
}


/* ---------------------------------------------------------
   32. RESPONSIVE — TABLET
   --------------------------------------------------------- */

@media (max-width: 1100px) {

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

    .main-nav {
        gap: 22px;
    }

    .main-nav a {
        font-size: 10px;
    }

    .about-grid,
    .bullion-grid,
    .jewellery-grid,
    .contact-grid {
        gap: 60px;
    }

    .service-card {
        padding: 28px;
    }

    .service-title {
        font-size: 36px;
    }

}


/* ---------------------------------------------------------
   33. RESPONSIVE — MOBILE
   --------------------------------------------------------- */

@media (max-width: 768px) {

    .container,
    .header-inner {
        width: calc(100% - 36px);
    }

    .section {
        padding: 95px 0;
    }


    /* Header */

    .site-header {
        height: 78px;
    }

    .site-header.scrolled {
        height: 68px;
    }

    .logo {
        width: 110px;
    }

    .main-nav {
        display: none;
    }

    .menu-toggle {
        display: block;
    }


    /* Typography */

    .heading-xl {
        font-size:
            clamp(54px,
                15vw,
                90px);
    }

    .heading-lg {
        font-size:
            clamp(43px,
                12vw,
                70px);
    }


    /* Hero */

    .hero {
        min-height: 100svh;

        padding:
            120px 0 90px;
    }

    .hero-description {
        font-size: 13px;

        max-width: 90%;
    }

    .hero-actions {
        flex-direction: column;

        align-items: flex-start;

        gap: 20px;
    }

    .hero-glow {
        width: 400px;
        height: 400px;

        right: -200px;
    }

    .hero-grid {
        background-size: 60px 60px;
    }

    .hero-scroll {
        bottom: 25px;
    }


    /* Section heading */

    .section-heading {
        display: block;

        margin-bottom: 45px;
    }

    .section-description {
        margin-top: 25px;
    }


    /* About */

    .about-grid {
        grid-template-columns: 1fr;

        gap: 35px;
    }

    .about-number {
        font-size: 120px;
    }


    /* Services */

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

        gap: 12px;
    }

    .service-card,
    .service-card:nth-child(1),
    .service-card:nth-child(2) {
        grid-column: auto;

        min-height: 350px;
    }

    .service-icon {
        margin-top: 45px;
    }

    .service-title {
        font-size: 39px;
    }


    /* Ticker */

    .ticker-item {
        font-size: 27px;
    }


    /* Bullion */

    .bullion-grid {
        grid-template-columns: 1fr;

        gap: 45px;
    }

    .bullion-visual {
        height: 430px;
    }

    .bullion-circle {
        width: 260px;
        height: 260px;
    }


    /* Jewellery */

    .jewellery-grid {
        grid-template-columns: 1fr;

        gap: 45px;
    }

    .jewellery-art {
        min-height: 430px;
    }

    .jewellery-ring {
        width: 250px;
        height: 250px;
    }


    /* Diamond */

    .diamond-section {
        min-height: 600px;
    }

    .diamond-shape {
        width: 180px;
        height: 180px;
    }


    /* Why */

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

    .why-card {
        min-height: 250px;

        padding: 40px 28px;
    }

    .why-card h3 {
        margin-top: 35px;
    }


    /* Contact */

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

        gap: 55px;
    }

    .contact-details {
        padding-left: 25px;
    }


    /* Form */

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

    .form-group.full {
        grid-column: auto;
    }


    /* Footer */

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

        gap: 45px;
    }

    .footer-bottom {
        flex-direction: column;

        align-items: flex-start;

        gap: 10px;

        margin-top: 45px;
    }


    /* WhatsApp */

    .whatsapp-button {
        width: 52px;
        height: 52px;

        right: 17px;
        bottom: 17px;
    }

}


/* ---------------------------------------------------------
   34. SMALL MOBILE
   --------------------------------------------------------- */

@media (max-width: 420px) {

    .container,
    .header-inner {
        width: calc(100% - 28px);
    }

    .section {
        padding: 80px 0;
    }

    .heading-xl {
        font-size: 53px;
    }

    .heading-lg {
        font-size: 43px;
    }

    .service-card {
        min-height: 320px !important;

        padding: 25px;
    }

    .service-link {
        left: 25px;
        bottom: 25px;
    }

    .btn {
        min-height: 52px;

        padding: 0 22px;
    }

    .hero-description {
        max-width: 100%;
    }

}


/* ---------------------------------------------------------
   35. REDUCED MOTION
   --------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;

        animation-iteration-count: 1 !important;

        scroll-behavior: auto !important;

        transition-duration: 0.01ms !important;
    }

}

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

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    z-index: 1000;

    background: rgba(5, 5, 5, 0.45);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);

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

    transition:
        transform 0.5s cubic-bezier(.22, 1, .36, 1),
        height 0.45s ease,
        background 0.45s ease,
        border-color 0.45s ease;
}


.site-header.scrolled {
    height: 76px;

    background: rgba(5, 5, 5, 0.88);

    border-bottom-color:
        rgba(212, 166, 71, 0.18);
}


.site-header.header-hidden {
    transform: translateY(-100%);
}


.header-inner {
    width: min(1400px, calc(100% - 80px));
    height: 100%;

    margin: auto;

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


/* =========================================================
   LOGO
   ========================================================= */

.site-logo {
    display: flex;
    align-items: center;

    width: 200px;

    position: relative;
    z-index: 10;
}


.logo-image {
    width: 100%;
    height: auto;

    display: block;

    transition:
        transform 0.4s ease,
        filter 0.4s ease;
}


.site-logo:hover .logo-image {
    transform: scale(1.035);

    filter:
        drop-shadow(0 0 14px rgba(212, 166, 71, 0.28));
}


/* =========================================================
   DESKTOP NAV
   ========================================================= */

.main-navigation {
    display: flex;
    align-items: center;
    gap: 34px;

    margin-left: auto;
    margin-right: 42px;

    height: 100%;
}


.nav-link {
    position: relative;

    height: 100%;

    display: flex;
    align-items: center;

    color: rgba(255, 255, 255, 0.78);

    font-size: 12px;
    font-weight: 500;

    letter-spacing: 0.13em;
    text-transform: uppercase;

    text-decoration: none;

    transition:
        color 0.35s ease;
}


.nav-link::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 22px;

    width: 0;
    height: 1px;

    background: #d4a647;

    transition:
        width 0.4s cubic-bezier(.22, 1, .36, 1);
}


.nav-link:hover,
.nav-link.active {
    color: #ffffff;
}


.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}


.nav-arrow {
    margin-left: 6px;

    font-size: 14px;

    color: #d4a647;

    transform: translateY(-1px);
}


/* =========================================================
   SERVICES DROPDOWN
   ========================================================= */

.nav-dropdown-link {
    cursor: pointer;
}


.nav-dropdown {
    position: absolute;

    top: calc(100% - 1px);
    left: 50%;

    width: 310px;

    padding: 12px;

    background:
        rgba(10, 10, 10, 0.97);

    border:
        1px solid rgba(212, 166, 71, 0.20);

    box-shadow:
        0 25px 70px rgba(0, 0, 0, 0.45);

    opacity: 0;
    visibility: hidden;

    transform:
        translate(-50%, 15px);

    transition:
        opacity 0.35s ease,
        visibility 0.35s ease,
        transform 0.45s cubic-bezier(.22, 1, .36, 1);
}


.main-navigation>.nav-dropdown-link:hover~.nav-dropdown,
.nav-dropdown:hover {
    opacity: 1;
    visibility: visible;

    transform:
        translate(-50%, 0);
}


/* Dropdown links */

.nav-dropdown a {
    display: block;

    padding: 16px 18px;

    color: #ffffff;

    text-decoration: none;

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

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


.nav-dropdown a:last-child {
    border-bottom: 0;
}


.nav-dropdown a:hover {
    background:
        rgba(212, 166, 71, 0.07);

    padding-left: 23px;
}


.nav-dropdown a span {
    display: block;

    font-size: 13px;

    letter-spacing: 0.08em;

    text-transform: uppercase;
}


.nav-dropdown a small {
    display: block;

    margin-top: 5px;

    color:
        rgba(255, 255, 255, 0.42);

    font-size: 10px;

    letter-spacing: 0.03em;
}


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

.header-actions {
    display: flex;
    align-items: center;
    gap: 18px;
}


.header-inquiry-btn {
    display: inline-flex;
    align-items: center;
    gap: 18px;

    padding: 13px 20px;

    color: #111111;

    background:
        linear-gradient(135deg,
            #f2d37d,
            #c99532);

    text-decoration: none;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 0.12em;
    text-transform: uppercase;

    transition:
        box-shadow 0.4s ease,
        transform 0.35s ease;
}


.header-inquiry-btn:hover {
    box-shadow:
        0 8px 30px rgba(212, 166, 71, 0.22);
}


.btn-arrow {
    font-size: 16px;

    line-height: 1;

    transition:
        transform 0.3s ease;
}


.header-inquiry-btn:hover .btn-arrow {
    transform: translateX(4px);
}


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

.menu-toggle {
    display: none;

    width: 44px;
    height: 44px;

    padding: 0;

    border: 1px solid rgba(212, 166, 71, 0.25);

    background: transparent;

    cursor: pointer;

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

    flex-direction: column;

    gap: 5px;
}


.menu-toggle span {
    width: 19px;
    height: 1px;

    background: #d4a647;

    transition:
        transform 0.4s ease,
        opacity 0.3s ease;
}


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


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


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


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

.mobile-menu {
    position: fixed;

    inset: 0;

    z-index: 5;

    background:
        radial-gradient(circle at 80% 10%,
            rgba(212, 166, 71, 0.10),
            transparent 30%),
        #070707;

    visibility: hidden;
    opacity: 0;

    pointer-events: none;

    transform: translateY(-20px);

    transition:
        opacity 0.45s ease,
        visibility 0.45s ease,
        transform 0.55s cubic-bezier(.22, 1, .36, 1);
}


.mobile-menu.active {
    opacity: 1;

    visibility: visible;

    pointer-events: auto;

    transform: translateY(0);
}


.mobile-menu-inner {
    height: 100%;

    padding:
        120px 30px 30px;

    display: flex;
    flex-direction: column;
}


.mobile-menu-top {
    display: flex;

    justify-content: space-between;

    padding-bottom: 18px;

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


.mobile-menu-label {
    color:
        rgba(255, 255, 255, 0.42);

    font-size: 10px;

    letter-spacing: 0.2em;

    text-transform: uppercase;
}


.mobile-menu-number {
    color: #d4a647;

    font-size: 10px;

    letter-spacing: 0.15em;
}


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

.mobile-navigation {
    margin-top: 20px;
}


.mobile-navigation a {
    display: grid;

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

    align-items: center;

    min-height: 62px;

    color: #ffffff;

    text-decoration: none;

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

    transition:
        padding 0.35s ease,
        color 0.35s ease;
}


.mobile-navigation a:hover {
    padding-left: 8px;

    color: #d4a647;
}


.mobile-nav-number {
    color:
        rgba(212, 166, 71, 0.55);

    font-size: 10px;

    letter-spacing: 0.1em;
}


.mobile-nav-text {
    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 25px;

    font-weight: 400;
}


.mobile-nav-arrow {
    text-align: right;

    color: #d4a647;

    font-size: 17px;
}


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

.mobile-menu-bottom {
    margin-top: auto;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;
}


.mobile-menu-location {
    display: flex;

    align-items: center;

    gap: 8px;

    color:
        rgba(255, 255, 255, 0.45);

    font-size: 10px;

    letter-spacing: 0.12em;

    text-transform: uppercase;
}


.gold-dot {
    width: 5px;
    height: 5px;

    border-radius: 50%;

    background: #d4a647;

    box-shadow:
        0 0 10px rgba(212, 166, 71, 0.8);
}


.mobile-inquiry-btn {
    display: inline-flex;

    align-items: center;

    gap: 12px;

    padding: 13px 16px;

    color: #111111;

    background: #d4a647;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 0.12em;

    text-transform: uppercase;

    text-decoration: none;
}


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

@media (max-width: 1200px) {

    .header-inner {
        width:
            min(100% - 50px,
                1400px);
    }

    .main-navigation {
        gap: 22px;

        margin-right: 25px;
    }

    .nav-link {
        font-size: 10px;
    }

}


@media (max-width: 1024px) {

    .main-navigation,
    .header-inquiry-btn {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

}


@media (max-width: 767px) {

    .site-header {
        height: 76px;
    }

    .site-header.scrolled {
        height: 68px;
    }

    .header-inner {
        width:
            calc(100% - 32px);
    }

    .site-logo {
        width: 125px;
    }

    .mobile-menu-inner {
        padding:
            100px 22px 22px;
    }

    .mobile-nav-text {
        font-size: 22px;
    }

    .mobile-menu-bottom {
        align-items: flex-end;
    }

}

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

.footer-cta {
    position: relative;

    overflow: hidden;

    background:
        radial-gradient(circle at 50% 100%,
            rgba(212, 166, 71, 0.11),
            transparent 45%),
        #0b0b0b;

    border-top:
        1px solid rgba(212, 166, 71, 0.12);

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


.footer-cta-inner {
    width:
        min(1400px,
            calc(100% - 80px));

    min-height: 360px;

    margin: auto;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 60px;
}


.footer-cta-content {
    max-width: 720px;
}


.footer-cta-content h2 {
    margin: 14px 0 18px;

    color: #ffffff;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size:
        clamp(42px, 5vw, 76px);

    line-height: 0.98;

    font-weight: 400;

    letter-spacing: -0.035em;
}


.footer-cta-content h2 em {
    color: #d4a647;

    font-style: italic;
}


.footer-cta-content p {
    max-width: 520px;

    margin: 0;

    color:
        rgba(255, 255, 255, 0.48);

    font-size: 14px;

    line-height: 1.8;
}


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

.footer-cta-button {
    width: 155px;
    height: 155px;

    border-radius: 50%;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    gap: 8px;

    color: #111111;

    background:
        linear-gradient(145deg,
            #f0d17a,
            #c6932f);

    text-decoration: none;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 0.1em;

    text-transform: uppercase;

    box-shadow:
        0 20px 60px rgba(212, 166, 71, 0.14);

    transition:
        box-shadow 0.4s ease,
        transform 0.4s ease;
}


.footer-cta-button:hover {

    box-shadow:
        0 25px 80px rgba(212, 166, 71, 0.3);

}


.cta-arrow {

    font-size: 22px;

    line-height: 1;
}


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

.site-footer {
    position: relative;

    background: #050505;

    color: #ffffff;

    overflow: hidden;
}


.footer-main {
    width:
        min(1400px,
            calc(100% - 80px));

    margin: auto;

    padding:
        90px 0 75px;
}


.footer-grid {

    display: grid;

    grid-template-columns:
        2fr 1fr 1fr 1.25fr;

    gap: 70px;
}


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

.footer-logo {
    display: inline-block;

    width: 165px;

    margin-bottom: 25px;
}


.footer-logo img {
    width: 100%;

    height: auto;

    display: block;
}


.footer-brand-text {
    max-width: 330px;

    margin: 0 0 32px;

    color:
        rgba(255, 255, 255, 0.42);

    font-size: 13px;

    line-height: 1.9;
}


.footer-location {

    display: flex;

    align-items: flex-start;

    gap: 13px;
}


.location-icon {

    color: #d4a647;

    font-size: 13px;

    margin-top: 3px;
}


.footer-location>div {

    display: flex;

    flex-direction: column;

    gap: 4px;
}


.location-label {

    color:
        rgba(255, 255, 255, 0.3);

    font-size: 9px;

    letter-spacing: 0.15em;

    text-transform: uppercase;
}


.location-value {

    color:
        rgba(255, 255, 255, 0.72);

    font-size: 11px;
}


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

.footer-column-title {

    display: block;

    margin-bottom: 28px;

    color: #d4a647;

    font-size: 10px;

    font-weight: 600;

    letter-spacing: 0.18em;

    text-transform: uppercase;
}


.footer-links {

    margin: 0;

    padding: 0;

    list-style: none;
}


.footer-links li {

    margin-bottom: 15px;
}


.footer-links a {

    display: flex;

    align-items: center;

    justify-content: space-between;

    max-width: 180px;

    color:
        rgba(255, 255, 255, 0.55);

    font-size: 12px;

    text-decoration: none;

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


.footer-links a span {

    color: #d4a647;

    opacity: 0;

    transform:
        translate(-5px, 5px);

    transition:
        opacity 0.3s ease,
        transform 0.3s ease;
}


.footer-links a:hover {

    color: #ffffff;

    transform:
        translateX(4px);
}


.footer-links a:hover span {

    opacity: 1;

    transform:
        translate(0, 0);
}


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

.footer-contact-link {

    display: flex;

    flex-direction: column;

    gap: 6px;

    margin-bottom: 22px;

    color:
        rgba(255, 255, 255, 0.68);

    font-size: 12px;

    line-height: 1.5;

    text-decoration: none;

    transition:
        color 0.3s ease;
}


.footer-contact-link:hover {

    color: #d4a647;
}


.contact-small {

    color:
        rgba(255, 255, 255, 0.28);

    font-size: 8px;

    letter-spacing: 0.15em;

    text-transform: uppercase;
}


.footer-small-inquiry {

    display: inline-flex;

    align-items: center;

    gap: 12px;

    margin-top: 5px;

    color: #d4a647;

    font-size: 10px;

    letter-spacing: 0.1em;

    text-transform: uppercase;

    text-decoration: none;

    transition:
        gap 0.3s ease;
}


.footer-small-inquiry:hover {

    gap: 17px;

}


/* =========================================================
   DIVIDER
========================================================= */

.footer-divider {

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

    margin: auto;

    height: 1px;

    background:
        rgba(255, 255, 255, 0.07);

    position: relative;
}


.footer-divider span {

    position: absolute;

    left: 0;

    top: 0;

    width: 90px;

    height: 1px;

    background: #d4a647;
}


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

.footer-bottom {

    width: 100%;
}


.footer-bottom-inner {

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

    min-height: 45px;

    margin: auto;

    display: grid;

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

    align-items: center;

    gap: 30px;
}


.footer-copyright {

    color:
        rgba(255, 255, 255, 0.28);

    font-size: 9px;

    letter-spacing: 0.04em;
}


.footer-legal {

    display: flex;

    gap: 24px;
}


.footer-legal a {

    color:
        rgba(255, 255, 255, 0.35);

    font-size: 9px;

    text-decoration: none;

    transition:
        color 0.3s ease;
}


.footer-legal a:hover {

    color: #d4a647;
}


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

.footer-social {

    display: flex;

    justify-content: flex-end;

    gap: 8px;
}


.footer-social a {

    width: 32px;
    height: 32px;

    display: flex;

    align-items: center;

    justify-content: center;

    border:
        1px solid rgba(255, 255, 255, 0.12);

    color:
        rgba(255, 255, 255, 0.5);

    font-size: 8px;

    letter-spacing: 0.05em;

    text-decoration: none;

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


.footer-social a:hover {

    color: #111111;

    background: #d4a647;

    border-color: #d4a647;
}


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

.back-to-top {

    position: fixed;

    right: 28px;

    bottom: 28px;

    z-index: 900;

    width: 44px;
    height: 44px;

    border-radius: 50%;

    border:
        1px solid rgba(212, 166, 71, 0.35);

    background:
        rgba(8, 8, 8, 0.88);

    color: #d4a647;

    display: flex;

    align-items: center;

    justify-content: center;

    cursor: pointer;

    opacity: 0;

    visibility: hidden;

    transform:
        translateY(15px);

    transition:
        opacity 0.35s ease,
        visibility 0.35s ease,
        transform 0.35s ease,
        background 0.3s ease;
}


.back-to-top.show {

    opacity: 1;

    visibility: visible;

    transform:
        translateY(0);
}


.back-to-top:hover {

    background: #d4a647;

    color: #111111;
}


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

@media (max-width: 1024px) {

    .footer-grid {

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

        gap: 50px;

    }

    .footer-contact {

        grid-column: 2 / 4;

    }

}


@media (max-width: 767px) {

    .footer-cta-inner {

        width:
            calc(100% - 40px);

        min-height: auto;

        padding:
            70px 0;

        flex-direction: column;

        align-items: flex-start;

        gap: 40px;

    }


    .footer-cta-content h2 {

        font-size:
            clamp(38px,
                11vw,
                54px);

    }


    .footer-cta-button {

        width: 125px;
        height: 125px;

        font-size: 9px;

    }


    .footer-main {

        width:
            calc(100% - 40px);

        padding:
            65px 0 50px;

    }


    .footer-grid {

        grid-template-columns: 1fr;

        gap: 48px;

    }


    .footer-contact {

        grid-column: auto;

    }


    .footer-divider {

        width:
            calc(100% - 40px);

    }


    .footer-bottom-inner {

        width:
            calc(100% - 40px);

        padding:
            25px 0;

        grid-template-columns: 1fr;

        gap: 20px;

    }


    .footer-legal {

        order: 3;

        flex-wrap: wrap;

        gap: 15px;

    }


    .footer-social {

        justify-content: flex-start;

    }


    .back-to-top {

        right: 18px;

        bottom: 18px;

        width: 40px;

        height: 40px;

    }

}

/* =========================================================
   ZAR GOLD & DIAMONDS
   HOMEPAGE / HERO SYSTEM
========================================================= */

:root {
    --gold: #d4a647;
    --gold-light: #f1cf75;
    --gold-dark: #9b6d1e;

    --black: #050505;
    --black-soft: #0a0a0a;

    --white: #ffffff;
    --text-soft: rgba(255, 255, 255, 0.58);
    --text-muted: rgba(255, 255, 255, 0.34);

    --serif: "Playfair Display", Georgia, serif;
    --sans: "DM Sans", Arial, sans-serif;
}


/* =========================================================
   GLOBAL
========================================================= */

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

html {
    scroll-behavior: auto;
}

body {
    margin: 0;
    padding: 0;

    background: var(--black);

    color: var(--white);

    font-family: var(--sans);

    overflow-x: hidden;
}

main {
    width: 100%;
    overflow: hidden;
}

img {
    max-width: 100%;
}

a {
    -webkit-tap-highlight-color: transparent;
}


/* =========================================================
   CONTAINER
========================================================= */

.container {
    width: min(1320px, calc(100% - 80px));

    margin-left: auto;
    margin-right: auto;
}


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

.section-padding {
    padding-top: 30px;
    padding-bottom: 30px;
}

.dark-section {
    position: relative;

    background:
        radial-gradient(circle at 70% 50%,
            rgba(212, 166, 71, 0.07),
            transparent 40%),
        #060606;

    color: #fff;
}


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

.hero {
    position: relative;

    min-height: calc(100vh - 82px);

    width: 100%;

    overflow: hidden;

    background: #050505;
}


.hero-background {
    position: absolute;

    inset: 0;

    z-index: 0;

    pointer-events: none;
}


/* Gold atmospheric glow */

.hero-glow {
    position: absolute;

    width: 700px;
    height: 700px;

    right: 7%;
    top: 50%;

    transform: translateY(-50%);

    border-radius: 50%;

    background:
        radial-gradient(circle,
            rgba(212, 166, 71, 0.14) 0%,
            rgba(212, 166, 71, 0.05) 32%,
            transparent 70%);

    filter: blur(20px);
}


/* Grid */

.hero-grid {
    position: absolute;

    inset: 0;

    opacity: 0.18;

    background-image:
        linear-gradient(rgba(255, 255, 255, 0.045) 1px,
            transparent 1px),
        linear-gradient(90deg,
            rgba(255, 255, 255, 0.045) 1px,
            transparent 1px);

    background-size: 90px 90px;

    mask-image:
        linear-gradient(to bottom,
            transparent,
            black 15%,
            black 80%,
            transparent);
}


/* =========================================================
   HERO IMAGE / GOLD ORB
========================================================= */

.hero-image {
    position: absolute;

    width: min(470px, 38vw);
    aspect-ratio: 1 / 1;

    right: 17%;
    top: 50%;

    transform:
        translateY(-50%);

    border-radius: 50%;

    background:
        radial-gradient(circle at 35% 28%,
            #f9dc86 0%,
            #e5bd58 18%,
            #bd8b2e 48%,
            #8c601b 72%,
            #4c310b 100%);

    box-shadow:
        0 0 50px rgba(212, 166, 71, 0.13),
        0 0 130px rgba(212, 166, 71, 0.09),
        inset -35px -40px 80px rgba(45, 25, 0, 0.32),
        inset 25px 20px 45px rgba(255, 235, 150, 0.22);

    opacity: 0.96;

    z-index: 1;
}


/* Orb highlight */

.hero-image::before {
    content: "";

    position: absolute;

    width: 35%;
    height: 35%;

    top: 12%;
    left: 15%;

    border-radius: 50%;

    background:
        radial-gradient(circle,
            rgba(255, 244, 193, 0.65),
            transparent 70%);

    filter: blur(15px);
}


/* Orb subtle shine */

.hero-image::after {
    content: "";

    position: absolute;

    inset: 0;

    border-radius: 50%;

    background:
        linear-gradient(125deg,
            transparent 30%,
            rgba(255, 255, 255, 0.11) 48%,
            transparent 62%);

    opacity: 0.55;
}


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

.hero-inner {
    position: relative;

    z-index: 5;

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

    min-height: calc(100vh - 82px);

    margin: 0 auto;

    display: flex;

    align-items: center;

    justify-content: space-between;
}


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

.hero-content {
    width: min(590px, 48%);

    padding-top: 20px;

    position: relative;

    z-index: 10;
}


.hero-eyebrow-wrap {
    display: flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 28px;
}


.hero-eyebrow-line {
    display: block;

    width: 42px;

    height: 1px;

    background: var(--gold);
}


.eyebrow,
.hero-eyebrow {
    color: var(--gold-light);

    font-size: 10px;

    font-weight: 600;

    letter-spacing: 0.22em;

    text-transform: uppercase;
}


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

.hero-title {
    margin: 0;

    padding: 0;

    color: #fff;

    font-family: var(--serif);

    font-weight: 400;

    font-size: clamp(54px, 5.2vw, 82px);

    line-height: 0.98;

    letter-spacing: -0.045em;

    max-width: 680px;
}


.hero-title .line {
    display: block;

    overflow: hidden;

    height: auto;
}


.hero-title .line-inner {
    display: block;
}


.hero-title em {
    color: var(--gold-light);

    font-style: italic;
}


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

.hero-description {
    width: min(450px, 100%);

    margin: 32px 0 0;

    color: var(--text-soft);

    font-size: 14px;

    line-height: 1.9;
}


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

.hero-actions {
    display: flex;

    align-items: center;

    gap: 30px;

    margin-top: 36px;
}


.primary-button {
    min-height: 54px;

    padding: 0 24px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 22px;

    background:
        linear-gradient(135deg,
            #f0d176,
            #c69431);

    color: #101010;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 0.12em;

    text-transform: uppercase;

    text-decoration: none;

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}


.primary-button:hover {
    transform: translateY(-3px);

    box-shadow:
        0 15px 35px rgba(212, 166, 71, 0.18);
}


.button-arrow {
    font-size: 18px;

    line-height: 1;
}


.text-button {
    display: inline-flex;

    align-items: center;

    gap: 12px;

    color: rgba(255, 255, 255, 0.62);

    font-size: 10px;

    font-weight: 500;

    letter-spacing: 0.1em;

    text-transform: uppercase;

    text-decoration: none;

    transition: color 0.3s ease;
}


.text-button:hover {
    color: var(--gold-light);
}


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

.hero-side {
    position: absolute;

    right: 0;

    bottom: 110px;

    z-index: 10;

    display: flex;

    align-items: flex-end;

    gap: 18px;
}


.hero-side-line {
    width: 1px;

    height: 85px;

    background:
        linear-gradient(to bottom,
            transparent,
            var(--gold));
}


.hero-side-label {
    color: rgba(255, 255, 255, 0.35);

    font-size: 9px;

    line-height: 1.7;

    letter-spacing: 0.18em;

    text-transform: uppercase;

    text-align: right;
}


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

.hero-scroll {
    position: absolute;

    left: 50%;

    bottom: 34px;

    transform: translateX(-50%);

    display: flex;

    align-items: center;

    gap: 15px;

    white-space: nowrap;

    color: rgba(255, 255, 255, 0.34);

    font-size: 8px;

    font-weight: 500;

    letter-spacing: 0.22em;

    text-transform: uppercase;
}


.hero-scroll-line {
    display: block;

    width: 50px;

    height: 1px;

    background: var(--gold);
}


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

.hero-ticker {
    position: absolute;

    left: 0;
    right: 0;

    bottom: 0;

    z-index: 15;

    height: 55px;

    overflow: hidden;

    display: flex;

    align-items: center;

    border-top:
        1px solid rgba(255, 255, 255, 0.05);

    background:
        rgba(0, 0, 0, 0.32);

    backdrop-filter: blur(8px);
}


.ticker-track {
    display: flex;

    align-items: center;

    gap: 38px;

    white-space: nowrap;

    width: max-content;

    animation:
        tickerMove 35s linear infinite;
}


.ticker-track span {
    color: rgba(255, 255, 255, 0.7);

    font-size: 10px;

    font-weight: 500;

    letter-spacing: 0.15em;
}


.ticker-track i {
    color: var(--gold-light);

    font-style: normal;

    font-size: 9px;
}


@keyframes tickerMove {

    from {
        transform: translateX(0);
    }

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

}


/* =========================================================
   SECTION TOP
========================================================= */

.section-top {
    display: flex;

    align-items: center;

    gap: 15px;

    margin-bottom: 25px;
}


.section-number {
    color: var(--gold);

    font-size: 9px;

    font-weight: 600;

    letter-spacing: 0.15em;
}


.section-eyebrow {
    color: black;

    font-size: 9px;

    font-weight: 600;

    letter-spacing: 0.18em;

    text-transform: uppercase;
}


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

.brand-intro {
    background: #f5f2eb;

    color: #111;
}


.brand-intro .section-number {
    color: #8f671f;
}


.brand-intro .section-eyebrow {
    color: #8f671f;
}


.brand-intro-grid {
    display: grid;

    grid-template-columns: 1fr 0.85fr;

    gap: 120px;

    align-items: start;
}


.brand-intro-title h2 {
    margin: 0;

    font-family: var(--serif);

    font-weight: 400;

    font-size: clamp(52px, 6vw, 88px);

    line-height: 0.98;

    letter-spacing: -0.045em;
}


.brand-intro-title em {
    color: #a87927;

    font-style: italic;
}


.brand-intro-title span {
    display: block;
}


.brand-intro-content {
    padding-top: 15px;
}


.brand-intro-content p {
    margin: 0 0 24px;

    color: rgba(17, 17, 17, 0.58);

    font-size: 14px;

    line-height: 1.9;
}


.brand-intro-content .large-text {
    color: rgba(17, 17, 17, 0.78);

    font-family: var(--serif);

    font-size: 22px;

    line-height: 1.6;
}


.line-link {
    display: inline-flex;

    align-items: center;

    gap: 18px;

    margin-top: 18px;

    padding-bottom: 9px;

    border-bottom:
        1px solid rgba(17, 17, 17, 0.25);

    color: #111;

    font-size: 10px;

    font-weight: 600;

    letter-spacing: 0.08em;

    text-transform: uppercase;

    text-decoration: none;

    transition:
        gap 0.35s ease,
        color 0.35s ease;
}


.line-link:hover {
    gap: 25px;

    color: #a87927;
}


/* =========================================================
   SERVICES HEADING
========================================================= */

.services-section {
    background: #090909;

    color: #fff;
}


.section-heading {
    display: grid;

    grid-template-columns: 0.7fr 1.3fr;

    gap: 60px;

    margin-bottom: 70px;
}


.section-heading-left {
    padding-top: 10px;
}


.section-heading-main h2 {
    margin: 0;

    font-family: var(--serif);

    font-weight: 400;

    font-size: clamp(52px, 6vw, 82px);

    line-height: 0.95;

    letter-spacing: -0.045em;
}


.section-heading-main h2 em {


    font-style: italic;
}


.section-heading-main p {
    max-width: 480px;

    margin: 28px 0 0;

    color: var(--text-soft);

    font-size: 13px;

    line-height: 1.9;
}


/* =========================================================
   SERVICES GRID
========================================================= */

.services-grid {
    display: grid;

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

    gap: 16px;
}


.service-card {
    position: relative;

    min-height: 430px;

    overflow: hidden;

    background: #111;

    isolation: isolate;
}


.service-card-large {
    min-height: 540px;
}


.service-card-full {
    grid-column: 1 / -1;

    min-height: 470px;
}


.service-card-bg {
    position: absolute;

    inset: 0;

    z-index: -2;

    background-size: cover;

    background-position: center;

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


/*
    Replace these backgrounds with actual
    jewellery / gold images later.
*/

.service-buy {
    background:
        radial-gradient(circle at 50% 30%,
            #e8c66c,
            #825817 55%,
            #16100a);
}


.service-sell {
    background:
        radial-gradient(circle at 60% 40%,
            #c99a40,
            #3b2911 50%,
            #101010);
}


.service-bullion {
    background:
        linear-gradient(135deg,
            #3c2b13,
            #a87620 48%,
            #18120a);
}


.service-jewellery {
    background:
        radial-gradient(circle at 45% 30%,
            #d5b15e,
            #463517 48%,
            #090909);
}


.service-diamonds {
    background:
        radial-gradient(circle at 55% 35%,
            rgba(255, 255, 255, 0.85),
            rgba(151, 175, 184, 0.35) 20%,
            #182025 45%,
            #060708 80%);
}


.service-card-overlay {
    position: absolute;

    inset: 0;

    z-index: -1;

    background:
        linear-gradient(to top,
            rgba(0, 0, 0, 0.9),
            rgba(0, 0, 0, 0.25) 60%,
            rgba(0, 0, 0, 0.1));
}


.service-card:hover .service-card-bg {
    transform: scale(1.07);
}


.service-card-content {
    position: relative;

    height: 100%;

    min-height: inherit;

    padding: 32px;

    display: flex;

    flex-direction: column;

    justify-content: space-between;
}


.service-number {
    color: var(--gold-light);

    font-size: 9px;

    letter-spacing: 0.18em;
}


.service-label {
    display: block;

    margin-bottom: 10px;

    color: rgba(255, 255, 255, 0.48);

    font-size: 8px;

    font-weight: 600;

    letter-spacing: 0.18em;

    text-transform: uppercase;
}


.service-card h3 {
    margin: 0;

    color: #fff;

    font-family: var(--serif);

    font-weight: 400;

    font-size: clamp(38px, 4vw, 58px);

    line-height: 0.95;

    letter-spacing: -0.035em;
}


.service-card h3 em {
    color: var(--gold-light);

    font-style: italic;
}


.service-card p {
    max-width: 350px;

    margin: 18px 0 0;

    color: rgba(255, 255, 255, 0.52);

    font-size: 11px;

    line-height: 1.7;
}


.service-arrow {
    width: 48px;
    height: 48px;

    border:
        1px solid rgba(255, 255, 255, 0.3);

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    align-self: flex-end;

    color: #fff;

    font-size: 18px;

    text-decoration: none;

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


.service-arrow:hover {
    background: var(--gold);

    color: #111;

    border-color: var(--gold);

    transform: rotate(45deg);
}


/* =========================================================
   BULLION SECTION
========================================================= */

.bullion-section {
    position: relative;

    overflow: hidden;
}


.bullion-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    align-items: center;

    gap: 80px;
}


.bullion-content h2 {
    margin: 0;

    max-width: 650px;

    font-family: var(--serif);

    font-size: clamp(54px, 6vw, 86px);

    font-weight: 400;

    line-height: 0.95;

    letter-spacing: -0.045em;
}


.bullion-content h2 em {
    color: var(--gold-light);

    font-style: italic;
}


.bullion-content p {
    max-width: 510px;

    margin: 28px 0 35px;

    color: var(--text-soft);

    font-size: 13px;

    line-height: 1.9;
}


.outline-button {
    display: inline-flex;

    align-items: center;

    gap: 22px;

    min-height: 52px;

    padding: 0 22px;

    border:
        1px solid rgba(212, 166, 71, 0.55);

    color: var(--gold-light);

    font-size: 9px;

    font-weight: 600;

    letter-spacing: 0.12em;

    text-transform: uppercase;

    text-decoration: none;

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


.outline-button:hover {
    background: var(--gold);

    color: #111;
}


/* =========================================================
   BULLION VISUAL
========================================================= */

.bullion-visual {
    position: relative;

    min-height: 570px;

    display: flex;

    align-items: center;

    justify-content: center;
}


.bullion-circle {
    position: absolute;

    width: 600px;
    height: 600px;

    right: -250px;
    top: 50%;

    transform: translateY(-50%);

    border-radius: 50%;

    background:
        radial-gradient(circle,
            rgba(212, 166, 71, 0.13),
            transparent 65%);

    filter: blur(10px);
}


.bullion-metal {
    position: relative;

    width: min(330px, 70vw);
    aspect-ratio: 1 / 1;

    border-radius: 50%;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    background:
        radial-gradient(circle at 35% 28%,
            #f6d981,
            #d2a53f 32%,
            #9a691d 65%,
            #503309);

    box-shadow:
        0 0 100px rgba(212, 166, 71, 0.16),
        inset -30px -30px 60px rgba(40, 20, 0, 0.35);
}


.bullion-metal span {
    font-family: var(--serif);

    font-size: 80px;

    color: rgba(255, 240, 180, 0.8);
}


.bullion-metal small {
    margin-top: -5px;

    color: rgba(255, 255, 255, 0.45);

    font-size: 9px;

    letter-spacing: 0.35em;
}


.bullion-orbit {
    position: absolute;

    border:
        1px solid rgba(212, 166, 71, 0.2);

    border-radius: 50%;
}


.orbit-one {
    width: 430px;
    height: 430px;

    transform:
        rotate(25deg) scaleY(0.42);
}


.orbit-two {
    width: 500px;
    height: 500px;

    transform:
        rotate(-25deg) scaleY(0.3);
}


/* =========================================================
   JEWELLERY FEATURE
========================================================= */

.jewellery-feature {
    background: #f5f2eb;

    color: #111;
}


.jewellery-grid {
    display: grid;

    grid-template-columns: 1fr 0.8fr;

    gap: 110px;

    align-items: center;
}


.image-feature-frame {
    position: relative;

    min-height: 650px;

    overflow: hidden;

    background: #191919;
}


.jewellery-image {
    position: absolute;

    inset: 0;

    background:
        radial-gradient(circle at 50% 35%,
            #ead18a 0%,
            #8f6728 20%,
            #3c2b15 48%,
            #101010 80%);

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


.image-feature-frame:hover .jewellery-image {
    transform: scale(1.06);
}


.image-feature-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(to top,
            rgba(0, 0, 0, 0.45),
            transparent 55%);
}


.image-caption {
    display: block;

    margin-top: 13px;

    color: rgba(17, 17, 17, 0.4);

    font-size: 8px;

    letter-spacing: 0.12em;

    text-transform: uppercase;
}


.jewellery-feature-content h2 {
    margin: 0;

    font-family: var(--serif);

    font-size: clamp(52px, 6vw, 82px);

    font-weight: 400;

    line-height: 0.95;

    letter-spacing: -0.045em;
}


.jewellery-feature-content h2 em {
    color: #a87927;

    font-style: italic;
}


.jewellery-feature-content p {
    max-width: 480px;

    margin: 28px 0;

    color: rgba(17, 17, 17, 0.55);

    font-size: 13px;

    line-height: 1.9;
}


.jewellery-feature-content .line-link {
    color: #111;
}


/* =========================================================
   DIAMONDS
========================================================= */

.diamond-grid {
    display: grid;

    grid-template-columns: 0.9fr 1.1fr;

    align-items: center;

    gap: 80px;
}


.diamond-content h2 {
    margin: 0;

    max-width: 650px;

    font-family: var(--serif);

    font-size: clamp(52px, 6vw, 84px);

    font-weight: 400;

    line-height: 0.95;

    letter-spacing: -0.045em;
}


.diamond-content h2 em {
    color: var(--gold-light);

    font-style: italic;
}


.diamond-content p {
    max-width: 480px;

    margin: 30px 0 35px;

    color: var(--text-soft);

    font-size: 13px;

    line-height: 1.9;
}


.diamond-visual {
    position: relative;

    min-height: 560px;

    display: flex;

    align-items: center;

    justify-content: center;
}


.diamond-glow {
    position: absolute;

    width: 430px;
    height: 430px;

    border-radius: 50%;

    background:
        radial-gradient(circle,
            rgba(230, 245, 255, 0.14),
            transparent 65%);

    filter: blur(15px);
}


.diamond-shape {
    position: relative;

    width: 270px;
    height: 270px;

    transform:
        rotate(45deg);

    background:
        linear-gradient(135deg,
            rgba(255, 255, 255, 0.9),
            rgba(180, 204, 215, 0.45) 30%,
            rgba(255, 255, 255, 0.85) 55%,
            rgba(108, 135, 149, 0.35));

    box-shadow:
        0 0 80px rgba(220, 240, 255, 0.15);

    clip-path:
        polygon(50% 0%,
            100% 25%,
            100% 75%,
            50% 100%,
            0% 75%,
            0% 25%);
}


.diamond-inner {
    position: absolute;

    inset: 35px;

    border:
        1px solid rgba(255, 255, 255, 0.65);

    clip-path:
        polygon(50% 0%,
            100% 25%,
            100% 75%,
            50% 100%,
            0% 75%,
            0% 25%);
}


.diamond-caption {
    position: absolute;

    bottom: 35px;

    color: rgba(255, 255, 255, 0.32);

    font-size: 8px;

    letter-spacing: 0.18em;

    text-transform: uppercase;
}


/* =========================================================
   WHY ZAR
========================================================= */

.why-section {
    background: #f5f2eb;

    color: #111;
}


.why-section .section-number,
.why-section .section-eyebrow {
    color: #967025;
}


.why-grid {
    display: grid;

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

    border-top:
        1px solid rgba(17, 17, 17, 0.14);

    border-left:
        1px solid rgba(17, 17, 17, 0.14);
}


.why-card {
    min-height: 300px;

    padding: 30px;

    position: relative;

    border-right:
        1px solid rgba(17, 17, 17, 0.14);

    border-bottom:
        1px solid rgba(17, 17, 17, 0.14);

    transition:
        background 0.4s ease;
}


.why-card:hover {
    background: #ebe6dc;
}


.why-number {
    color: #a87927;

    font-size: 9px;

    letter-spacing: 0.15em;
}


.why-icon {
    margin-top: 55px;

    color: #a87927;

    font-family: var(--serif);

    font-size: 30px;
}


.why-card h3 {
    margin: 18px 0 10px;

    font-family: var(--serif);

    font-size: 26px;

    font-weight: 400;
}


.why-card p {
    margin: 0;

    color: rgba(17, 17, 17, 0.5);

    font-size: 11px;

    line-height: 1.8;
}


/* =========================================================
   DUBAI
========================================================= */

.dubai-section {
    position: relative;

    min-height: 700px;

    overflow: hidden;

    display: flex;

    align-items: center;

    background: #070707;

    color: #fff;
}


.dubai-background {
    position: absolute;

    inset: 0;

    background:
        radial-gradient(circle at 50% 40%,
            rgba(212, 166, 71, 0.14),
            transparent 25%),
        linear-gradient(120deg,
            #050505,
            #15110a,
            #050505);
}


.dubai-background::after {
    content: "";

    position: absolute;

    inset: 0;

    background-image:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px,
            transparent 1px),
        linear-gradient(90deg,
            rgba(255, 255, 255, 0.035) 1px,
            transparent 1px);

    background-size: 100px 100px;

    opacity: 0.25;
}


.dubai-content {
    position: relative;

    z-index: 2;

    max-width: 800px;

    text-align: center;

    margin: auto;
}


.dubai-content .section-eyebrow {
    display: block;

    margin-bottom: 25px;
}


.dubai-content h2 {
    margin: 0;

    font-family: var(--serif);

    font-size: clamp(58px, 8vw, 115px);

    font-weight: 400;

    line-height: 0.9;

    letter-spacing: -0.05em;
}


.dubai-content h2 em {
    color: var(--gold-light);

    font-style: italic;
}


.dubai-content p {
    max-width: 570px;

    margin: 30px auto 35px;

    color: var(--text-soft);

    font-size: 13px;

    line-height: 1.9;
}


/* =========================================================
   INQUIRY STRIP
========================================================= */

.inquiry-strip {
    background: #f5f2eb;

    color: #111;

    padding: 90px 0;
}


.inquiry-strip-inner {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 50px;
}


.inquiry-strip h2 {
    margin: 12px 0 0;

    font-family: var(--serif);

    font-size: clamp(50px, 6vw, 82px);

    font-weight: 400;

    line-height: 0.9;

    letter-spacing: -0.045em;
}


.inquiry-strip h2 em {
    color: #a87927;

    font-style: italic;
}


.round-arrow-button {
    width: 125px;
    height: 125px;

    flex-shrink: 0;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #111;

    color: var(--gold-light);

    font-size: 30px;

    text-decoration: none;

    transition:
        background 0.35s ease,
        color 0.35s ease,
        transform 0.35s ease;
}


.round-arrow-button:hover {
    background: var(--gold);

    color: #111;

    transform: rotate(20deg);
}


/* =========================================================
   PRELOADER
========================================================= */

.preloader {
    position: fixed;

    inset: 0;

    z-index: 99999;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #050505;
}


.preloader-content {
    text-align: center;
}


.preloader-logo {
    width: 150px;

    display: block;

    margin: auto auto 25px;
}


.preloader-line {
    width: 180px;

    height: 1px;

    margin: auto;

    overflow: hidden;

    background: rgba(255, 255, 255, 0.12);
}


.preloader-line span {
    display: block;

    width: 0;
    height: 100%;

    background: var(--gold);

    animation:
        preloaderLine 1.4s ease forwards;
}


.preloader-text {
    display: block;

    margin-top: 15px;

    color: rgba(255, 255, 255, 0.35);

    font-size: 8px;

    letter-spacing: 0.22em;

    text-transform: uppercase;
}


@keyframes preloaderLine {

    to {
        width: 100%;
    }

}


/* =========================================================
   REVEAL ANIMATION FALLBACK
========================================================= */

.reveal,
.reveal-left,
.reveal-scale {
    opacity: 0;

    will-change: transform, opacity;
}


.reveal {
    transform: translateY(35px);
}


.reveal-left {
    transform: translateX(-45px);
}


.reveal-scale {
    transform: scale(0.94);
}


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

@media (max-width: 1100px) {

    .container,
    .hero-inner {
        width: calc(100% - 60px);
    }


    .hero-content {
        width: 54%;
    }


    .hero-image {
        width: 430px;

        right: 4%;
    }


    .hero-title {
        font-size: clamp(50px, 6vw, 72px);
    }


    .brand-intro-grid,
    .jewellery-grid {
        gap: 60px;
    }


    .bullion-grid,
    .diamond-grid {
        gap: 50px;
    }


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

}


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

@media (max-width: 767px) {

    .container,
    .hero-inner {
        width: calc(100% - 40px);
    }


    .section-padding {
        padding-top: 85px;

        padding-bottom: 85px;
    }


    /* HERO */

    .hero {
        min-height: 760px;
    }


    .hero-inner {
        min-height: 760px;

        display: block;

        padding-top: 100px;
    }


    .hero-content {
        width: 100%;

        padding-top: 25px;
    }


    .hero-title {
        font-size: clamp(45px, 13vw, 64px);

        line-height: 0.96;
    }


    .hero-description {
        max-width: 330px;

        font-size: 12px;

        line-height: 1.8;

        margin-top: 25px;
    }


    .hero-actions {
        gap: 18px;

        margin-top: 28px;

        flex-wrap: wrap;
    }


    .primary-button {
        min-height: 48px;

        padding: 0 18px;

        font-size: 8px;
    }


    .text-button {
        font-size: 8px;
    }


    .hero-image {
        width: 310px;

        right: -100px;

        top: auto;

        bottom: 100px;

        transform: none;

        opacity: 0.55;
    }


    .hero-glow {
        width: 400px;
        height: 400px;

        right: -130px;

        top: auto;

        bottom: 60px;

        transform: none;
    }


    .hero-side {
        display: none;
    }


    .hero-scroll {
        display: none;
    }


    .hero-ticker {
        height: 48px;
    }


    .ticker-track {
        gap: 25px;
    }


    /* BRAND */

    .brand-intro-grid {
        grid-template-columns: 1fr;

        gap: 45px;
    }


    .brand-intro-title h2 {
        font-size: 54px;
    }


    .brand-intro-content .large-text {
        font-size: 19px;
    }


    /* SERVICES */

    .section-heading {
        grid-template-columns: 1fr;

        gap: 20px;

        margin-bottom: 45px;
    }


    .section-heading-main h2 {
        font-size: 56px;
    }


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

        gap: 12px;
    }


    .service-card,
    .service-card-large,
    .service-card-full {
        grid-column: auto;

        min-height: 390px;
    }


    .service-card-content {
        padding: 25px;
    }


    .service-card h3 {
        font-size: 42px;
    }


    /* BULLION */

    .bullion-grid,
    .diamond-grid,
    .jewellery-grid {
        grid-template-columns: 1fr;

        gap: 50px;
    }


    .bullion-content h2,
    .diamond-content h2 {
        font-size: 56px;
    }


    .bullion-visual {
        min-height: 400px;
    }


    .bullion-metal {
        width: 260px;
    }


    .bullion-metal span {
        font-size: 65px;
    }


    .orbit-one {
        width: 330px;
        height: 330px;
    }


    .orbit-two {
        width: 380px;
        height: 380px;
    }


    /* JEWELLERY */

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


    .jewellery-feature-content h2 {
        font-size: 56px;
    }


    /* DIAMONDS */

    .diamond-visual {
        min-height: 420px;
    }


    .diamond-shape {
        width: 210px;
        height: 210px;
    }


    /* WHY */

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


    .why-card {
        min-height: 260px;
    }


    /* DUBAI */

    .dubai-section {
        min-height: 600px;
    }


    .dubai-content h2 {
        font-size: 64px;
    }


    /* INQUIRY */

    .inquiry-strip {
        padding: 65px 0;
    }


    .inquiry-strip-inner {
        align-items: flex-start;

        flex-direction: column;

        gap: 35px;
    }


    .inquiry-strip h2 {
        font-size: 58px;
    }


    .round-arrow-button {
        width: 95px;
        height: 95px;

        font-size: 24px;
    }

}


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

@media (max-width: 420px) {

    .hero {
        min-height: 720px;
    }


    .hero-inner {
        min-height: 720px;
    }


    .hero-title {
        font-size: 44px;
    }


    .hero-image {
        width: 270px;

        right: -100px;

        bottom: 95px;
    }


    .service-card,
    .service-card-large,
    .service-card-full {
        min-height: 350px;
    }


    .service-card h3 {
        font-size: 38px;
    }


    .brand-intro-title h2,
    .section-heading-main h2,
    .bullion-content h2,
    .diamond-content h2,
    .jewellery-feature-content h2 {
        font-size: 48px;
    }


    .dubai-content h2 {
        font-size: 52px;
    }

}

/* =========================================================
   MOBILE NAVIGATION — PREMIUM FULL SCREEN MENU
========================================================= */

@media (max-width: 767px) {

    /* Header must stay above everything */
    .site-header,
    header {
        position: relative;
        z-index: 9999;
    }

    /* Mobile menu overlay */
    .mobile-menu,
    .nav-menu,
    .main-navigation,
    .menu-overlay {
        position: fixed !important;

        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;

        width: 100% !important;
        height: 100dvh !important;

        background:
            radial-gradient(circle at 85% 10%,
                rgba(212, 166, 71, 0.10),
                transparent 35%),
            #050505 !important;

        z-index: 9998 !important;

        overflow-y: auto !important;

        padding:
            105px 20px 40px !important;
    }


    /* Navigation list */
    .mobile-menu ul,
    .nav-menu ul,
    .main-navigation ul,
    .menu-overlay ul {

        width: 100% !important;

        margin: 0 !important;
        padding: 0 !important;

        list-style: none !important;
    }


    /* Individual menu item */
    .mobile-menu li,
    .nav-menu li,
    .main-navigation li,
    .menu-overlay li {

        position: relative !important;

        width: 100% !important;

        margin: 0 !important;
        padding: 0 !important;

        border-bottom:
            1px solid rgba(255, 255, 255, 0.08) !important;
    }


    /* Menu links */
    .mobile-menu li a,
    .nav-menu li a,
    .main-navigation li a,
    .menu-overlay li a {

        display: flex !important;

        align-items: center !important;
        justify-content: space-between !important;

        width: 100% !important;

        min-height: 72px !important;

        padding: 0 5px !important;

        color: #f5f1e8 !important;

        background: transparent !important;

        font-family:
            "Playfair Display",
            Georgia,
            serif !important;

        font-size: 26px !important;

        font-weight: 400 !important;

        line-height: 1 !important;

        text-decoration: none !important;

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


    /* Gold number before menu item */
    .mobile-menu li::before,
    .nav-menu li::before,
    .main-navigation li::before,
    .menu-overlay li::before {

        position: absolute;

        left: 5px;

        top: 10px;

        color: rgba(212, 166, 71, 0.65);

        font-family:
            "DM Sans",
            Arial,
            sans-serif;

        font-size: 7px;

        letter-spacing: .12em;
    }


    .mobile-menu li:nth-child(1)::before,
    .nav-menu li:nth-child(1)::before {
        content: "01";
    }

    .mobile-menu li:nth-child(2)::before,
    .nav-menu li:nth-child(2)::before {
        content: "02";
    }

    .mobile-menu li:nth-child(3)::before,
    .nav-menu li:nth-child(3)::before {
        content: "03";
    }

    .mobile-menu li:nth-child(4)::before,
    .nav-menu li:nth-child(4)::before {
        content: "04";
    }

    .mobile-menu li:nth-child(5)::before,
    .nav-menu li:nth-child(5)::before {
        content: "05";
    }

    .mobile-menu li:nth-child(6)::before,
    .nav-menu li:nth-child(6)::before {
        content: "06";
    }


    /* Hover / active */
    .mobile-menu li a:hover,
    .nav-menu li a:hover,
    .main-navigation li a:hover,
    .menu-overlay li a:hover {

        color: #e2bd61 !important;

        padding-left: 12px !important;
    }


    /* Close button */
    .mobile-menu-close,
    .menu-close {

        position: fixed !important;

        top: 22px !important;
        right: 20px !important;

        z-index: 10001 !important;

        width: 42px !important;
        height: 42px !important;

        display: flex !important;

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

        border:
            1px solid rgba(212, 166, 71, 0.45) !important;

        border-radius: 50% !important;

        background:
            rgba(212, 166, 71, 0.08) !important;

        color: #e5c36b !important;

        font-size: 20px !important;
    }


    /* Menu logo */
    .mobile-menu-logo {

        position: absolute !important;

        top: 20px !important;
        left: 20px !important;

        width: 105px !important;

        z-index: 10000 !important;
    }


    /* Prevent page behind menu from scrolling */
    body.menu-open {
        overflow: hidden !important;
    }


    /* Hide desktop navigation on mobile */
    .desktop-nav {
        display: none !important;
    }


    /* Mobile menu button */
    .mobile-menu-toggle {

        position: relative;

        z-index: 10000;

        width: 44px;
        height: 44px;

        border: 1px solid rgba(212, 166, 71, 0.35);

        background:
            rgba(0, 0, 0, 0.25);

        display: flex;

        flex-direction: column;

        align-items: center;

        justify-content: center;

        gap: 6px;

        cursor: pointer;
    }


    .mobile-menu-toggle span {

        display: block;

        width: 20px;

        height: 1px;

        background: #e5c36b;

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


    /* Menu footer */
    .mobile-menu-footer {

        margin-top: 35px;

        padding-top: 25px;

        border-top:
            1px solid rgba(255, 255, 255, 0.08);

        display: flex;

        justify-content: space-between;

        align-items: center;
    }


    .mobile-menu-footer span {

        color:
            rgba(255, 255, 255, 0.32);

        font-size: 8px;

        letter-spacing: .16em;

        text-transform: uppercase;
    }


    .mobile-menu-footer strong {

        color: #d8b45c;

        font-size: 8px;

        font-weight: 500;

        letter-spacing: .16em;

        text-transform: uppercase;
    }
}

/* =========================================================
   ZAR MOBILE MENU — FINAL
========================================================= */

@media (max-width: 767px) {

    /* -----------------------------------------
       HEADER
    ----------------------------------------- */

    .site-header {
        position: relative;
        z-index: 99999;
    }


    .header-inner {
        position: relative;
        z-index: 100001;
    }


    /* -----------------------------------------
       HAMBURGER
    ----------------------------------------- */

    .menu-toggle {
        position: relative;

        width: 44px;
        height: 44px;

        padding: 0;

        display: flex;

        flex-direction: column;

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

        gap: 5px;

        border: 1px solid rgba(212, 166, 71, 0.45);

        background: #080808;

        cursor: pointer;

        z-index: 100002;
    }


    .menu-toggle span {
        display: block;

        width: 18px;
        height: 1px;

        background: #e4bd62;

        transition:
            transform .35s ease,
            opacity .25s ease;
    }


    /* Hamburger -> X */

    body.menu-open .menu-toggle span:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }


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


    body.menu-open .menu-toggle span:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }


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

    .mobile-menu {
        position: fixed !important;

        inset: 0 !important;

        width: 100vw !important;
        height: 100dvh !important;

        margin: 0 !important;

        padding: 0 !important;

        background:
            radial-gradient(circle at 85% 15%,
                rgba(212, 166, 71, 0.10),
                transparent 30%),
            #050505 !important;

        color: #fff;

        z-index: 100000 !important;

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

        visibility: hidden;

        opacity: 0;

        pointer-events: none;

        transform: translateY(-12px);

        transition:
            opacity .35s ease,
            transform .4s cubic-bezier(.22, .61, .36, 1),
            visibility .35s ease;
    }


    /* OPEN */

    body.menu-open .mobile-menu {
        visibility: visible;

        opacity: 1;

        pointer-events: auto;

        transform: translateY(0);
    }


    /* -----------------------------------------
       MOBILE MENU HEADER
    ----------------------------------------- */

    .mobile-menu-header {
        position: sticky;

        top: 0;

        left: 0;

        width: 100%;

        height: 78px;

        display: flex;

        align-items: center;

        justify-content: space-between;

        padding:
            0 20px;

        background:
            rgba(5, 5, 5, 0.94);

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

        backdrop-filter: blur(15px);

        z-index: 10;
    }


    /* LOGO */

    .mobile-menu-logo {
        display: block;

        width: 105px;

        line-height: 0;
    }


    .mobile-menu-logo img {
        display: block;

        width: 100%;

        height: auto;
    }


    /* -----------------------------------------
       CLOSE BUTTON
    ----------------------------------------- */

    .mobile-menu-close {
        position: relative;

        width: 42px;
        height: 42px;

        flex-shrink: 0;

        padding: 0;

        border:
            1px solid rgba(212, 166, 71, 0.6);

        border-radius: 50%;

        background:
            rgba(212, 166, 71, 0.07);

        cursor: pointer;

        display: flex;

        align-items: center;

        justify-content: center;

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


    .mobile-menu-close:hover {
        background: #d4a647;

        border-color: #d4a647;

        transform: rotate(90deg);
    }


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

        width: 17px;

        height: 1px;

        background: #e5c36b;

        transition: background .3s ease;
    }


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


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


    .mobile-menu-close:hover span {
        background: #080808;
    }


    /* -----------------------------------------
       MENU INNER
    ----------------------------------------- */

    .mobile-menu-inner {
        width: calc(100% - 40px);

        max-width: 600px;

        margin: 0 auto;

        padding:
            28px 0 35px;
    }


    /* -----------------------------------------
       MENU TOP
    ----------------------------------------- */

    .mobile-menu-top {
        display: flex;

        align-items: center;

        justify-content: space-between;

        padding-bottom: 16px;

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

        margin-bottom: 0;
    }


    .mobile-menu-label {
        color:
            rgba(255, 255, 255, 0.38);

        font-family:
            "DM Sans",
            Arial,
            sans-serif;

        font-size: 8px;

        font-weight: 600;

        letter-spacing: .22em;

        text-transform: uppercase;
    }


    .mobile-menu-number {
        display: flex;

        align-items: center;

        justify-content: center;

        min-width: 22px;

        height: 22px;

        background: #d4a647;

        color: #080808;

        font-size: 8px;

        font-weight: 700;
    }


    /* -----------------------------------------
       NAVIGATION
    ----------------------------------------- */

    .mobile-navigation {
        width: 100%;
    }


    .mobile-navigation a {
        position: relative;

        width: 100%;

        min-height: 72px;

        padding: 0 3px;

        display: grid;

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

        align-items: center;

        column-gap: 10px;

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

        color: #f5f0e8;

        text-decoration: none;

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


    .mobile-navigation a:hover {
        padding-left: 12px;

        background:
            linear-gradient(90deg,
                rgba(212, 166, 71, 0.08),
                transparent);

        color: #e5c36b;
    }


    .mobile-nav-number {
        color:
            rgba(212, 166, 71, 0.55);

        font-family:
            "DM Sans",
            Arial,
            sans-serif;

        font-size: 7px;

        font-weight: 600;

        letter-spacing: .12em;
    }


    .mobile-nav-text {
        font-family:
            "Playfair Display",
            Georgia,
            serif;

        font-size: 25px;

        font-weight: 400;

        line-height: 1;
    }


    .mobile-nav-arrow {
        color: #d4a647;

        font-family: Arial, sans-serif;

        font-size: 15px;

        text-align: right;

        transition:
            transform .3s ease;
    }


    .mobile-navigation a:hover .mobile-nav-arrow {
        transform:
            translate(3px, -3px);
    }


    /* -----------------------------------------
       BOTTOM
    ----------------------------------------- */

    .mobile-menu-bottom {
        display: flex;

        flex-direction: column;

        gap: 22px;

        margin-top: 28px;

        padding-top: 24px;

        border-top:
            1px solid rgba(255, 255, 255, 0.08);
    }


    .mobile-menu-location {
        display: flex;

        align-items: center;

        gap: 9px;

        color:
            rgba(255, 255, 255, 0.38);

        font-size: 8px;

        font-weight: 500;

        letter-spacing: .18em;

        text-transform: uppercase;
    }


    .gold-dot {
        width: 5px;
        height: 5px;

        border-radius: 50%;

        background: #d4a647;

        box-shadow:
            0 0 10px rgba(212, 166, 71, 0.5);
    }


    .mobile-inquiry-btn {
        width: 100%;

        min-height: 54px;

        display: flex;

        align-items: center;

        justify-content: space-between;

        padding: 0 20px;

        background:
            linear-gradient(135deg,
                #f0d176,
                #c49331);

        color: #090909;

        font-size: 9px;

        font-weight: 700;

        letter-spacing: .14em;

        text-transform: uppercase;

        text-decoration: none;
    }


    /* -----------------------------------------
       BODY LOCK
    ----------------------------------------- */

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

}


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

@media (max-width: 420px) {

    .mobile-navigation a {
        min-height: 67px;
    }


    .mobile-nav-text {
        font-size: 22px;
    }


    .mobile-menu-inner {
        padding-top: 22px;
    }

}

/* =========================================================
   ZAR GOLD & DIAMONDS
   HOME PAGE — PREMIUM LUXURY SYSTEM
========================================================= */


/* =========================================================
   01. HOME PAGE BASE
========================================================= */

.home-page {
    background: #050505;
    color: #f4efe5;
    overflow-x: hidden;
}

.home-page a {
    text-decoration: none;
}


/* =========================================================
   02. HERO SECTION
========================================================= */

.zar-hero {
    position: relative;

    min-height: calc(100vh - 82px);

    width: 100%;

    display: flex;

    align-items: center;

    overflow: hidden;

    background:
        radial-gradient(circle at 70% 48%,
            rgba(180, 133, 42, 0.15),
            transparent 27%),
        radial-gradient(circle at 35% 70%,
            rgba(180, 133, 42, 0.06),
            transparent 30%),
        #050505;
}


/* Luxury grid */

.zar-hero::before {
    content: "";

    position: absolute;

    inset: 0;

    pointer-events: none;

    background-image:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px,
            transparent 1px),
        linear-gradient(90deg,
            rgba(255, 255, 255, 0.025) 1px,
            transparent 1px);

    background-size: 72px 72px;

    mask-image:
        linear-gradient(to bottom,
            black,
            transparent 92%);

    opacity: .45;
}


/* Gold ambient glow */

.zar-hero::after {
    content: "";

    position: absolute;

    width: 650px;
    height: 650px;

    right: 8%;
    top: 50%;

    transform: translateY(-50%);

    border-radius: 50%;

    background:
        radial-gradient(circle,
            rgba(220, 175, 70, .16),
            rgba(220, 175, 70, .04) 38%,
            transparent 70%);

    filter: blur(15px);

    pointer-events: none;
}


/* =========================================================
   03. HERO CONTAINER
========================================================= */

.zar-hero-inner {
    position: relative;

    width: min(1500px, 92%);

    min-height: calc(100vh - 82px);

    margin: 0 auto;

    display: flex;

    align-items: center;

    z-index: 2;
}


/* =========================================================
   04. HERO LEFT CONTENT
========================================================= */

.zar-hero-content {
    position: relative;

    width: 38%;

    z-index: 5;
}


/* Location */

.zar-hero-location {
    display: flex;

    align-items: center;

    gap: 13px;

    margin-bottom: 36px;

    color: #d8b45b;

    font-family:
        "DM Sans",
        Arial,
        sans-serif;

    font-size: 10px;

    font-weight: 600;

    letter-spacing: .25em;

    line-height: 1.5;

    text-transform: uppercase;
}


.zar-hero-location::before {
    content: "";

    width: 32px;

    height: 1px;

    background: #d8b45b;
}


/* =========================================================
   05. HERO TITLE
========================================================= */

.zar-hero-title {
    margin: 0;

    max-width: 580px;

    color: #f5f0e7;

    font-family:
        "Playfair Display",
        Georgia,
        serif;

    font-size:
        clamp(55px, 5.3vw, 92px);

    font-weight: 400;

    letter-spacing: -.045em;

    line-height: .92;
}


.zar-hero-title .gold {
    color: #d9b65e;

    font-style: italic;
}


.zar-hero-title-line {
    display: block;

    overflow: hidden;
}


/* =========================================================
   06. HERO DESCRIPTION
========================================================= */

.zar-hero-description {
    max-width: 390px;

    margin-top: 38px;

    color:
        rgba(244, 239, 229, .62);

    font-family:
        "DM Sans",
        Arial,
        sans-serif;

    font-size: 14px;

    font-weight: 400;

    line-height: 1.8;
}


/* =========================================================
   07. HERO ACTIONS
========================================================= */

.zar-hero-actions {
    display: flex;

    align-items: center;

    gap: 34px;

    margin-top: 42px;
}


.zar-hero-primary {
    min-width: 170px;

    min-height: 54px;

    padding: 0 22px;

    display: inline-flex;

    align-items: center;

    justify-content: space-between;

    gap: 25px;

    background:
        linear-gradient(135deg,
            #f0d176,
            #c59634);

    color: #080808;

    font-family:
        "DM Sans",
        Arial,
        sans-serif;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: .14em;

    text-transform: uppercase;

    transition:
        transform .4s ease,
        box-shadow .4s ease;
}


.zar-hero-primary:hover {
    transform: translateY(-4px);

    box-shadow:
        0 15px 45px rgba(210, 165, 67, .22);
}


.zar-hero-primary span:last-child {
    font-size: 17px;

    font-weight: 400;
}


.zar-hero-secondary {
    display: inline-flex;

    align-items: center;

    gap: 10px;

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

    font-family:
        "DM Sans",
        Arial,
        sans-serif;

    font-size: 9px;

    font-weight: 500;

    letter-spacing: .14em;

    text-transform: uppercase;

    transition: color .3s ease;
}


.zar-hero-secondary:hover {
    color: #d8b45b;
}


.zar-hero-secondary span:last-child {
    color: #d8b45b;

    font-size: 18px;
}


/* =========================================================
   08. HERO CENTER GOLD ORB
========================================================= */

.zar-hero-orb-wrap {
    position: absolute;

    width: min(43vw, 620px);

    aspect-ratio: 1;

    right: 10%;

    top: 50%;

    transform:
        translateY(-50%);

    display: flex;

    align-items: center;

    justify-content: center;

    z-index: 2;
}


.zar-hero-orb-wrap::before {
    content: "";

    position: absolute;

    inset: -18%;

    border-radius: 50%;

    background:
        radial-gradient(circle,
            rgba(216, 176, 78, .12),
            transparent 66%);

    filter: blur(15px);
}


.zar-hero-orb {
    position: relative;

    width: 100%;

    height: 100%;

    border-radius: 50%;

    background:
        radial-gradient(circle at 38% 27%,
            #f8d77a 0%,
            #e3b94f 18%,
            #bc8627 55%,
            #765014 100%);

    box-shadow:
        inset -45px -50px 100px rgba(35, 20, 3, .38),
        inset 25px 20px 65px rgba(255, 238, 169, .28),
        0 0 80px rgba(196, 147, 48, .13);

    animation:
        zarOrbFloat 7s ease-in-out infinite;
}


.zar-hero-orb::before {
    content: "";

    position: absolute;

    width: 25%;

    height: 13%;

    left: 27%;

    top: 13%;

    border-radius: 50%;

    background:
        rgba(255, 244, 190, .38);

    filter: blur(16px);

    transform: rotate(18deg);
}


@keyframes zarOrbFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-14px);
    }

}


/* =========================================================
   09. FLOATING GOLD PARTICLES
========================================================= */

.zar-hero-particle {
    position: absolute;

    width: 4px;

    height: 4px;

    border-radius: 50%;

    background: #d8b45b;

    box-shadow:
        0 0 12px rgba(216, 180, 91, .55);

    opacity: .65;

    animation:
        zarParticleFloat 5s ease-in-out infinite;
}


.zar-hero-particle:nth-child(1) {
    left: 23%;
    top: 25%;
}

.zar-hero-particle:nth-child(2) {
    left: 76%;
    top: 18%;
    animation-delay: 1s;
}

.zar-hero-particle:nth-child(3) {
    left: 83%;
    top: 67%;
    animation-delay: 2s;
}

.zar-hero-particle:nth-child(4) {
    left: 57%;
    top: 80%;
    animation-delay: 1.5s;
}

.zar-hero-particle:nth-child(5) {
    left: 34%;
    top: 72%;
    animation-delay: 3s;
}


@keyframes zarParticleFloat {

    0%,
    100% {
        transform: translateY(0);
        opacity: .25;
    }

    50% {
        transform: translateY(-12px);
        opacity: .8;
    }

}


/* =========================================================
   10. HERO MARQUEE
========================================================= */

.zar-marquee {
    position: absolute;

    left: 0;
    right: 0;

    bottom: 23%;

    width: 100%;

    overflow: hidden;

    z-index: 4;

    pointer-events: none;
}


.zar-marquee-track {
    display: flex;

    width: max-content;

    align-items: center;

    gap: 46px;

    white-space: nowrap;

    animation:
        zarMarquee 30s linear infinite;
}


.zar-marquee-item {
    display: flex;

    align-items: center;

    gap: 40px;

    color:
        rgba(244, 239, 229, .8);

    font-family:
        "DM Sans",
        Arial,
        sans-serif;

    font-size: 13px;

    font-weight: 500;

    letter-spacing: .04em;

    text-transform: uppercase;
}


.zar-marquee-star {
    color: #e2c477;

    font-size: 16px;
}


@keyframes zarMarquee {

    from {
        transform: translateX(0);
    }

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

}


/* =========================================================
   11. SCROLL INDICATOR
========================================================= */

.zar-scroll-indicator {
    position: absolute;

    left: 50%;

    bottom: 30px;

    transform: translateX(-50%);

    display: flex;

    align-items: center;

    gap: 18px;

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

    font-family:
        "DM Sans",
        Arial,
        sans-serif;

    font-size: 8px;

    font-weight: 600;

    letter-spacing: .28em;

    text-transform: uppercase;

    z-index: 6;
}


.zar-scroll-line {
    width: 50px;

    height: 1px;

    background:
        linear-gradient(90deg,
            transparent,
            #d5ad52);
}


/* =========================================================
   12. VERTICAL SIDE LABEL
========================================================= */

.zar-hero-side-label {
    position: absolute;

    right: 26px;

    top: 50%;

    transform:
        translateY(-50%) rotate(90deg);

    transform-origin: center;

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

    font-family:
        "DM Sans",
        Arial,
        sans-serif;

    font-size: 7px;

    letter-spacing: .3em;

    text-transform: uppercase;

    z-index: 5;
}


/* =========================================================
   13. GOLD DIVIDER
========================================================= */

.zar-gold-line {
    width: 100%;

    height: 1px;

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


/* =========================================================
   14. PREMIUM SECTION COMMON
========================================================= */

.zar-section {
    position: relative;

    padding:
        30px 0;

    background: #050505;

    overflow: hidden;
}


.zar-section-inner {
    width: min(1300px, 90%);

    margin: 0 auto;
}


.zar-eyebrow {
    display: flex;

    align-items: center;

    gap: 14px;

    margin-bottom: 28px;

    color: #d6b15b;

    font-family:
        "DM Sans",
        Arial,
        sans-serif;

    font-size: 9px;

    font-weight: 600;

    letter-spacing: .25em;

    text-transform: uppercase;
}


.zar-eyebrow::before {
    content: "";

    width: 30px;

    height: 1px;

    background: #d6b15b;
}


.zar-section-title {
    max-width: 850px;

    margin: 0;

    color: #f3eee4;

    font-family:
        "Playfair Display",
        Georgia,
        serif;

    font-size:
        clamp(42px, 5vw, 78px);

    font-weight: 400;

    line-height: .98;

    letter-spacing: -.04em;
}


.zar-section-title em {
    color: #d6b15b;

    font-style: italic;
}


/* =========================================================
   15. MOBILE
========================================================= */

@media (max-width: 767px) {

    .zar-hero {
        min-height:
            calc(100svh - 72px);

        align-items: flex-start;
    }


    .zar-hero-inner {
        min-height:
            calc(100svh - 72px);

        width: 100%;

        padding:
            70px 22px 90px;

        display: block;
    }


    .zar-hero-content {
        width: 100%;

        z-index: 6;
    }


    .zar-hero-location {
        margin-bottom: 25px;

        font-size: 8px;

        letter-spacing: .19em;
    }


    .zar-hero-title {
        max-width: 330px;

        font-size:
            clamp(46px, 13vw, 62px);

        line-height: .9;
    }


    .zar-hero-description {
        max-width: 320px;

        margin-top: 27px;

        font-size: 12px;

        line-height: 1.75;
    }


    .zar-hero-actions {
        margin-top: 30px;

        gap: 22px;
    }


    .zar-hero-primary {
        min-width: 150px;

        min-height: 50px;
    }


    .zar-hero-secondary {
        font-size: 8px;
    }


    /* Orb moves behind content */

    .zar-hero-orb-wrap {
        width: 82vw;

        right: -19%;

        top: 55%;

        opacity: .7;

        z-index: 1;
    }


    .zar-hero-orb-wrap::before {
        inset: -25%;
    }


    .zar-marquee {
        bottom: 17%;

        opacity: .6;
    }


    .zar-marquee-item {
        font-size: 10px;

        gap: 24px;
    }


    .zar-marquee-track {
        gap: 25px;

        animation-duration: 22s;
    }


    .zar-scroll-indicator {
        bottom: 18px;

        font-size: 7px;
    }


    .zar-scroll-line {
        width: 35px;
    }


    .zar-hero-side-label {
        display: none;
    }


    .zar-section {
        padding: 85px 0;
    }


    .zar-section-inner {
        width: calc(100% - 44px);
    }


    .zar-eyebrow {
        font-size: 8px;

        margin-bottom: 22px;
    }


    .zar-section-title {
        font-size: 44px;
    }

}


/* =========================================================
   16. VERY SMALL MOBILE
========================================================= */

@media (max-width: 380px) {

    .zar-hero-inner {
        padding-top: 55px;
    }


    .zar-hero-title {
        font-size: 43px;
    }


    .zar-hero-description {
        font-size: 11px;
    }


    .zar-hero-actions {
        flex-direction: column;

        align-items: flex-start;

        gap: 18px;
    }


    .zar-hero-orb-wrap {
        top: 58%;
    }

}


/* =========================================================
   17. REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .zar-hero-orb,
    .zar-hero-particle,
    .zar-marquee-track {
        animation: none !important;
    }

}

/* =========================================================
   BRAND INTRO SECTION
   ZAR GOLD & DIAMONDS
========================================================= */

.brand-intro {
    position: relative;
    background: #f4f1e9;
    color: #111;
    overflow: hidden;
}


/* subtle luxury texture */

.brand-intro::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;

    background-image:
        linear-gradient(rgba(0, 0, 0, 0.025) 1px,
            transparent 1px),
        linear-gradient(90deg,
            rgba(0, 0, 0, 0.025) 1px,
            transparent 1px);

    background-size: 80px 80px;

    opacity: .45;
}


/* =========================================================
   CONTAINER
========================================================= */

.brand-intro .container {
    position: relative;
    z-index: 2;

    width: min(1300px, 90%);
    margin: 0 auto;
}


/* =========================================================
   SECTION PADDING
========================================================= */

.brand-intro.section-padding {
    padding-top: 30px;
    padding-bottom: 35px;
}


/* =========================================================
   TOP LABEL
========================================================= */

.brand-intro .section-top {
    display: flex;
    align-items: center;
    gap: 18px;

    margin-bottom: 75px;
}


/* number */

.brand-intro .section-number {
    display: inline-flex;

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

    width: 34px;
    height: 34px;

    border: 1px solid rgba(167, 125, 37, .55);

    color: #9d7627;

    font-family:
        "DM Sans",
        Arial,
        sans-serif;

    font-size: 9px;
    font-weight: 600;

    letter-spacing: .12em;
}


/* eyebrow */

.brand-intro .section-eyebrow {
    position: relative;

    display: flex;
    align-items: center;

    gap: 14px;

    color: #8e6a22;

    font-family:
        "DM Sans",
        Arial,
        sans-serif;

    font-size: 9px;
    font-weight: 700;

    letter-spacing: .24em;

    text-transform: uppercase;
}


.brand-intro .section-eyebrow::before {
    content: "";

    width: 38px;
    height: 1px;

    background: #b28a35;
}


/* =========================================================
   MAIN GRID
========================================================= */

.brand-intro-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1.15fr) minmax(0, .85fr);

    gap: 100px;

    align-items: start;
}


/* =========================================================
   LEFT TITLE
========================================================= */

.brand-intro-title {
    position: relative;
}


.brand-intro-title h2 {
    margin: 0;

    max-width: 700px;

    color: #151515;

    font-family:
        "Playfair Display",
        Georgia,
        serif;

    font-size:
        clamp(60px, 6vw, 96px);

    font-weight: 400;

    line-height: .92;

    letter-spacing: -.055em;
}


.brand-intro-title h2 em {
    color: #b58a2c;

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


.brand-intro-title h2 span {
    display: block;

    margin-left: 85px;

    color: #151515;
}


/* =========================================================
   RIGHT CONTENT
========================================================= */

.brand-intro-content {
    padding-top: 8px;

    max-width: 500px;
}


.brand-intro-content p {
    margin: 0 0 28px;

    color: rgba(20, 20, 20, .62);

    font-family:
        "DM Sans",
        Arial,
        sans-serif;

    font-size: 14px;

    font-weight: 400;

    line-height: 1.85;
}


/* large paragraph */

.brand-intro-content .large-text {
    margin-bottom: 32px;

    color: #272727;

    font-family:
        "Playfair Display",
        Georgia,
        serif;

    font-size: 23px;

    line-height: 1.55;

    letter-spacing: -.015em;
}


/* =========================================================
   LINE LINK
========================================================= */

.brand-intro .line-link {
    position: relative;

    display: inline-flex;

    align-items: center;

    gap: 25px;

    margin-top: 20px;

    padding-bottom: 12px;

    color: #171717;

    font-family:
        "DM Sans",
        Arial,
        sans-serif;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: .16em;

    text-transform: uppercase;
}


.brand-intro .line-link::after {
    content: "";

    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    height: 1px;

    background: #b58a2c;

    transform-origin: left;

    transition:
        transform .45s ease;
}


.brand-intro .line-link:hover::after {
    transform: scaleX(.45);
}


.brand-intro .line-link span:last-child {
    color: #a87d25;

    font-size: 18px;

    font-weight: 400;

    line-height: 1;
}


/* =========================================================
   DECORATIVE GOLD CIRCLE
========================================================= */

.brand-intro-title::after {
    content: "";

    position: absolute;

    width: 220px;
    height: 220px;

    right: 8%;
    bottom: -100px;

    border: 1px solid rgba(176, 136, 45, .18);

    border-radius: 50%;

    pointer-events: none;
}


/* =========================================================
   REVEAL ANIMATION
========================================================= */

.brand-intro .reveal,
.brand-intro .reveal-left {
    opacity: 1;
    visibility: visible;
}


.brand-intro .reveal-left {
    transform: translateX(0);
}


/* If JS adds these classes */

.brand-intro .reveal.animate,
.brand-intro .reveal-left.animate {
    opacity: 1;
    transform: translate(0);
}


/* =========================================================
   RESPONSIVE — TABLET
========================================================= */

@media (max-width: 991px) {

    .brand-intro.section-padding {
        padding-top: 100px;
        padding-bottom: 110px;
    }


    .brand-intro .section-top {
        margin-bottom: 55px;
    }


    .brand-intro-grid {
        grid-template-columns: 1fr;

        gap: 55px;
    }


    .brand-intro-title h2 {
        font-size:
            clamp(55px, 9vw, 80px);

        max-width: 700px;
    }


    .brand-intro-title h2 span {
        margin-left: 60px;
    }


    .brand-intro-content {
        max-width: 650px;

        padding-left: 60px;
    }

}


/* =========================================================
   RESPONSIVE — MOBILE
========================================================= */

@media (max-width: 767px) {

    .brand-intro.section-padding {
        padding-top: 80px;
        padding-bottom: 90px;
    }


    .brand-intro .container {
        width: calc(100% - 44px);
    }


    .brand-intro .section-top {
        margin-bottom: 45px;

        gap: 12px;
    }


    .brand-intro .section-number {
        width: 29px;
        height: 29px;

        font-size: 8px;
    }


    .brand-intro .section-eyebrow {
        font-size: 7px;

        letter-spacing: .18em;
    }


    .brand-intro .section-eyebrow::before {
        width: 25px;
    }


    .brand-intro-grid {
        display: block;
    }


    .brand-intro-title h2 {
        max-width: 100%;

        font-size:
            clamp(46px, 13vw, 65px);

        line-height: .91;
    }


    .brand-intro-title h2 span {
        margin-left: 35px;
    }


    .brand-intro-content {
        max-width: 100%;

        padding-left: 35px;

        margin-top: 45px;
    }


    .brand-intro-content .large-text {
        font-size: 19px;

        line-height: 1.5;
    }


    .brand-intro-content p {
        font-size: 12px;

        line-height: 1.8;
    }


    .brand-intro-title::after {
        width: 130px;
        height: 130px;

        right: -25px;
        bottom: -65px;
    }

}


/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 380px) {

    .brand-intro-title h2 {
        font-size: 43px;
    }


    .brand-intro-title h2 span {
        margin-left: 25px;
    }


    .brand-intro-content {
        padding-left: 25px;
    }

}

/* =========================================================
   ZAR GOLD & DIAMONDS
   SERVICES SECTION
========================================================= */

.services-section {
    position: relative;
    background: #070707;
    color: #f4efe5;
    overflow: hidden;
}


/* ---------------------------------------------------------
   SECTION BACKGROUND
--------------------------------------------------------- */

.services-section::before {
    content: "";
    position: absolute;
    inset: 0;

    background-image:
        linear-gradient(rgba(255, 255, 255, .018) 1px,
            transparent 1px),
        linear-gradient(90deg,
            rgba(255, 255, 255, .018) 1px,
            transparent 1px);

    background-size: 90px 90px;

    pointer-events: none;

    opacity: .5;
}


/* ---------------------------------------------------------
   CONTAINER
--------------------------------------------------------- */

.services-section .container {
    position: relative;
    z-index: 2;

    width: min(1350px, 90%);
    margin: 0 auto;
}


/* ---------------------------------------------------------
   SECTION PADDING
--------------------------------------------------------- */

.services-section.section-padding {
    padding-top: 35px;
    padding-bottom: 50px;
    background: #c9a227;
}


/* =========================================================
   SECTION HEADING
========================================================= */

.section-heading {
    display: grid;

    grid-template-columns: .35fr 1fr;

    gap: 80px;

    margin-bottom: 75px;
}


/* ---------------------------------------------------------
   HEADING LEFT
--------------------------------------------------------- */

.section-heading-left {
    display: flex;

    align-items: flex-start;

    gap: 18px;

    padding-top: 12px;
}


.section-heading-left .section-number {
    display: inline-flex;

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

    width: 34px;
    height: 34px;

    border: 1px solid rgba(255, 255, 255, 0.993);

    color: #ffffff;

    font-family:
        "DM Sans",
        Arial,
        sans-serif;

    font-size: 9px;

    font-weight: 600;

    letter-spacing: .12em;
}


.section-heading-left .section-eyebrow {
    position: relative;

    display: flex;

    align-items: center;

    gap: 14px;

    margin-top: 9px;

    color: #000000;

    font-family:
        "DM Sans",
        Arial,
        sans-serif;

    font-size: 9px;

    font-weight: 600;

    letter-spacing: .22em;

    text-transform: uppercase;
}


.section-heading-left .section-eyebrow::before {
    content: "";

    width: 30px;

    height: 1px;

    background: #c9a348;
}


/* =========================================================
   MAIN HEADING
========================================================= */

.section-heading-main {
    max-width: 850px;
}


.section-heading-main h2 {
    margin: 0;

    color: #f2ede3;

    font-family:
        "Playfair Display",
        Georgia,
        serif;

    font-size:
        clamp(58px, 6vw, 92px);

    font-weight: 400;

    line-height: .92;

    letter-spacing: -.055em;
}


.section-heading-main h2 em {
    color: #080808 !important;

    font-style: italic;
}


.section-heading-main p {
    max-width: 480px;

    margin: 30px 0 0;

    color:
        rgba(244, 239, 229, .55);

    font-family:
        "DM Sans",
        Arial,
        sans-serif;

    font-size: 13px;

    line-height: 1.8;
}


/* =========================================================
   SERVICES GRID
========================================================= */

.services-grid {
    display: grid;

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

    gap: 14px;
}


/* =========================================================
   SERVICE CARD
========================================================= */

.service-card {
    position: relative;

    min-height: 430px;

    overflow: hidden;

    isolation: isolate;

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

    background: #101010;

    transition:
        border-color .5s ease,
        transform .5s cubic-bezier(.22, .61, .36, 1);
}


/* large cards */

.service-card-large {
    min-height: 550px;
}


/* full width */

.service-card-full {
    grid-column: 1 / -1;

    min-height: 500px;
}


/* hover */

.service-card:hover {
    border-color:
        rgba(214, 174, 77, .6);

    transform: translateY(-5px);
}


/* =========================================================
   CARD BACKGROUND
========================================================= */

.service-card-bg {
    position: absolute;

    inset: 0;

    z-index: -3;

    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;

    transform: scale(1.02);

    transition:
        transform 1.2s cubic-bezier(.16, 1, .3, 1),
        filter 1s ease;
}


.service-card:hover .service-card-bg {
    transform: scale(1.09);

    filter:
        saturate(1.08) contrast(1.04);
}


/* =========================================================
   IMAGE PLACEHOLDERS
========================================================= */

/*
   In images ko baad mein actual jewellery images se replace
   karna hai.

   Example:

   .service-buy {
       background-image: url("../images/services/buy-gold.jpg");
   }
*/

.service-buy {
    background:
        radial-gradient(circle at 60% 30%,
            rgba(218, 176, 69, .38),
            transparent 28%),
        linear-gradient(135deg,
            #39290d,
            #0c0a06);
}


.service-sell {
    background:
        radial-gradient(circle at 70% 35%,
            rgba(190, 145, 55, .28),
            transparent 30%),
        linear-gradient(135deg,
            #272016,
            #080808);
}


.service-bullion {
    background:
        radial-gradient(circle at 45% 35%,
            rgba(221, 181, 75, .32),
            transparent 30%),
        linear-gradient(135deg,
            #31250e,
            #080808);
}


.service-jewellery {
    background:
        radial-gradient(circle at 65% 30%,
            rgba(232, 203, 130, .25),
            transparent 25%),
        linear-gradient(135deg,
            #282116,
            #070707);
}


.service-diamonds {
    background:
        radial-gradient(circle at 50% 35%,
            rgba(230, 220, 190, .2),
            transparent 24%),
        linear-gradient(135deg,
            #191817,
            #050505);
}


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

.service-card-overlay {
    position: absolute;

    inset: 0;

    z-index: -2;

    background:
        linear-gradient(180deg,
            rgba(0, 0, 0, .12) 0%,
            rgba(0, 0, 0, .25) 35%,
            rgba(0, 0, 0, .9) 100%);

    transition:
        background .6s ease;
}


.service-card:hover .service-card-overlay {
    background:
        linear-gradient(180deg,
            rgba(0, 0, 0, .05),
            rgba(0, 0, 0, .18) 35%,
            rgba(0, 0, 0, .88));
}


/* =========================================================
   CARD CONTENT
========================================================= */

.service-card-content {
    position: relative;

    min-height: inherit;

    height: 100%;

    padding: 32px;

    display: flex;

    flex-direction: column;

    justify-content: space-between;
}


/* =========================================================
   CARD NUMBER
========================================================= */

.service-number {
    display: inline-flex;

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

    width: 31px;
    height: 31px;

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

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

    font-family:
        "DM Sans",
        Arial,
        sans-serif;

    font-size: 8px;

    letter-spacing: .1em;

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


.service-card:hover .service-number {
    color: #080808;

    border-color: #d8b45b;

    background: #d8b45b;
}


/* =========================================================
   CARD LABEL
========================================================= */

.service-label {
    display: block;

    margin-bottom: 12px;

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

    font-family:
        "DM Sans",
        Arial,
        sans-serif;

    font-size: 8px;

    font-weight: 600;

    letter-spacing: .22em;

    text-transform: uppercase;
}


/* =========================================================
   CARD TITLE
========================================================= */

.service-card h3 {
    margin: 0;

    color: #f5f0e7;

    font-family:
        "Playfair Display",
        Georgia,
        serif;

    font-size:
        clamp(42px, 4vw, 65px);

    font-weight: 400;

    line-height: .95;

    letter-spacing: -.045em;
}


.service-card h3 em {
    color: #d7b258;

    font-style: italic;
}


/* =========================================================
   CARD DESCRIPTION
========================================================= */

.service-card p {
    max-width: 350px;

    margin: 20px 0 0;

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

    font-family:
        "DM Sans",
        Arial,
        sans-serif;

    font-size: 12px;

    line-height: 1.75;
}


/* =========================================================
   SERVICE ARROW
========================================================= */

.service-arrow {
    position: absolute;

    right: 32px;
    bottom: 32px;

    width: 52px;
    height: 52px;

    display: flex;

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

    border: 1px solid rgba(216, 180, 91, .55);

    border-radius: 50%;

    color: #d8b45b;

    font-size: 19px;

    line-height: 1;

    transition:
        background .4s ease,
        color .4s ease,
        transform .5s cubic-bezier(.22, .61, .36, 1),
        border-color .4s ease;
}


.service-card:hover .service-arrow {
    background: #d8b45b;

    border-color: #d8b45b;

    color: #080808;

    transform:
        rotate(45deg) scale(1.08);
}


/* =========================================================
   GOLD CORNER DETAIL
========================================================= */

.service-card::after {
    content: "";

    position: absolute;

    top: 0;
    right: 0;

    width: 0;
    height: 0;

    border-top: 1px solid #d8b45b;
    border-right: 1px solid #d8b45b;

    opacity: 0;

    transition:
        width .5s ease,
        height .5s ease,
        opacity .4s ease;
}


.service-card:hover::after {
    width: 55px;
    height: 55px;

    opacity: 1;
}


/* =========================================================
   FULL WIDTH DIAMONDS CARD
========================================================= */

.service-card-full .service-card-content {
    padding-left: 45px;
    padding-right: 45px;
}


.service-card-full h3 {
    font-size:
        clamp(48px, 5vw, 78px);
}


.service-card-full p {
    max-width: 450px;
}


/* =========================================================
   REVEAL SUPPORT
========================================================= */

.services-grid .reveal,
.services-grid .reveal-scale {
    opacity: 1;
    visibility: visible;
}


/*
   Agar JS in classes ko use karta hai to animation
   automatically kaam karegi.
*/

.services-grid .reveal.animate,
.services-grid .reveal-scale.animate {
    opacity: 1;

    transform:
        translateY(0) scale(1);
}


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

@media (max-width: 991px) {

    .services-section.section-padding {
        padding-top: 35px;
        padding-bottom: 35px;
    }


    .section-heading {
        grid-template-columns: 1fr;

        gap: 35px;

        margin-bottom: 55px;
    }


    .section-heading-left {
        padding-top: 0;
    }


    .section-heading-main h2 {
        font-size:
            clamp(55px, 9vw, 78px);
    }


    .services-grid {
        gap: 12px;
    }


    .service-card,
    .service-card-large {
        min-height: 440px;
    }


    .service-card-full {
        min-height: 470px;
    }

}


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

@media (max-width: 767px) {

    .services-section.section-padding {
        padding-top: 20px;
        padding-bottom: 20px;
    }


    .services-section .container {
        width: calc(100% - 44px);
    }


    .section-heading {
        margin-bottom: 42px;

        gap: 28px;
    }


    .section-heading-left {
        gap: 12px;
    }


    .section-heading-left .section-number {
        width: 29px;
        height: 29px;

        font-size: 8px;
    }


    .section-heading-left .section-eyebrow {
        margin-top: 7px;

        font-size: 7px;

        letter-spacing: .18em;
    }


    .section-heading-left .section-eyebrow::before {
        width: 22px;
    }


    .section-heading-main h2 {
        font-size:
            clamp(47px, 13vw, 64px);

        line-height: .9;
    }


    .section-heading-main p {
        margin-top: 22px;

        font-size: 11px;

        line-height: 1.8;
    }


    /* One column cards */

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

        gap: 10px;
    }


    .service-card,
    .service-card-large,
    .service-card-full {
        grid-column: auto;

        min-height: 430px;
    }


    .service-card-content {
        padding: 25px;
    }


    .service-card-full .service-card-content {
        padding: 25px;
    }


    .service-card h3,
    .service-card-full h3 {
        font-size:
            clamp(42px, 12vw, 58px);
    }


    .service-card p {
        max-width: 270px;

        margin-top: 16px;

        font-size: 11px;

        line-height: 1.7;
    }


    .service-label {
        font-size: 7px;

        letter-spacing: .18em;
    }


    .service-number {
        width: 28px;
        height: 28px;

        font-size: 7px;
    }


    .service-arrow {
        right: 24px;
        bottom: 24px;

        width: 45px;
        height: 45px;

        font-size: 17px;
    }

}


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

@media (max-width: 380px) {

    .service-card,
    .service-card-large,
    .service-card-full {
        min-height: 390px;
    }


    .service-card-content {
        padding: 22px;
    }


    .service-card h3,
    .service-card-full h3 {
        font-size: 40px;
    }


    .service-arrow {
        right: 20px;
        bottom: 20px;
    }

}

.service-buy {
    background-image: url("../images/services/buy-gold.jpg");
}

.service-sell {
    background-image: url("../images/services/sell-gold.jpg");
}

.service-bullion {
    background-image: url("../images/services/bullion.jpg");
}

.service-jewellery {
    background-image: url("../images/services/jewellery.jpg");
}

.service-diamonds {
    background-image: url("../images/services/diamonds.jpg");
}

/* =========================================================
   SERVICES GRID
========================================================= */

.services-grid {
    display: grid;

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

    gap: 14px;

    width: 100%;
}


/* =========================================================
   SERVICE CARDS
========================================================= */

.services-grid .service-card {
    position: relative;

    width: 100%;
    min-height: 460px;

    overflow: hidden;

    isolation: isolate;

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

    background: #0b0b0b;
}


/* BUY */

.services-grid .service-card-buy {
    min-height: 540px;
}


/* SELL */

.services-grid .service-card-sell {
    min-height: 540px;
}


/* BULLION */

.services-grid .service-card-bullion {
    min-height: 420px;
}


/* JEWELLERY */

.services-grid .service-card-jewellery {
    min-height: 420px;
}


/* DIAMONDS FULL WIDTH */

.services-grid .service-card-full {
    grid-column: 1 / -1;

    min-height: 500px;
}


/* =========================================================
   CARD CONTENT
========================================================= */

.service-card-content {
    position: relative;

    z-index: 3;

    height: 100%;
    min-height: inherit;

    padding: 32px;

    display: flex;

    flex-direction: column;

    justify-content: space-between;
}


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

@media (max-width: 767px) {

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


    .services-grid .service-card,
    .services-grid .service-card-buy,
    .services-grid .service-card-sell,
    .services-grid .service-card-bullion,
    .services-grid .service-card-jewellery,
    .services-grid .service-card-full {
        grid-column: auto;

        width: 100%;

        min-height: 430px;
    }

}

/* =========================================================
   SERVICES SECTION
========================================================= */

.services-section {
    position: relative;
    background: #080808;
    overflow: hidden;
}


/* =========================================================
   SERVICES HEADING
========================================================= */

.section-heading {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 70px;
    margin-bottom: 80px;
    align-items: start;
}

.section-heading-left {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.section-number {
    font-family: var(--font-sans, Arial, sans-serif);
    font-size: 11px;
    letter-spacing: 0.25em;
    color: #c99b3b;
    font-weight: 600;
}

.section-eyebrow {
    font-family: var(--font-sans, Arial, sans-serif);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: rgb(0, 0, 0);
}

.section-heading-main {
    max-width: 850px;
}

.section-heading-main h2 {
    margin: 0 0 25px;
    color: #070707;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(48px, 6vw, 90px);
    font-weight: 400;
    line-height: 0.95;
    letter-spacing: -0.04em;
}

.section-heading-main h2 em {

    font-style: italic;
}

.section-heading-main p {
    max-width: 580px;
    margin: 0;
    color: rgb(255, 255, 255);
    font-family: var(--font-sans, Arial, sans-serif);
    font-size: 16px;
    line-height: 1.8;
}


/* =========================================================
   SERVICES GRID
========================================================= */

.services-grid {
    display: grid;

    /* IMPORTANT */
    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 20px;

    width: 100%;
    align-items: stretch;
}


/* =========================================================
   SERVICE CARD
========================================================= */

.service-card {
    position: relative;

    min-width: 0;
    min-height: 520px;

    overflow: hidden;

    background: #111;

    border: 1px solid rgba(255, 255, 255, 0.08);

    isolation: isolate;

    transition:
        transform 0.6s cubic-bezier(.2, .65, .2, 1),
        border-color 0.5s ease;
}


/* LARGE CARDS */

.service-card-large {
    min-height: 620px;
}


/* FULL WIDTH CARD */

.service-card-full {
    grid-column: 1 / -1;
    min-height: 580px;
}


/* =========================================================
   CARD BACKGROUND
========================================================= */

.service-card-bg {
    position: absolute;
    inset: 0;

    z-index: -3;

    background-size: cover;
    background-position: center;

    transform: scale(1.01);

    transition:
        transform 1.2s cubic-bezier(.2, .65, .2, 1),
        filter 0.8s ease;
}


/* =========================================================
   SERVICE IMAGES
========================================================= */

.service-buy {
    background-image: url("../images/services/buy-gold.jpg");
}

.service-sell {
    background-image: url("../images/services/sell-gold.jpg");
}

.service-bullion {
    background-image: url("../images/services/bullion.jpg");
}

.service-jewellery {
    background-image: url("../images/services/jewellery.jpg");
}

.service-diamonds {
    background-image: url("../images/services/diamonds.jpg");
}


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

.service-card-overlay {
    position: absolute;
    inset: 0;

    z-index: -2;

    background:
        linear-gradient(180deg,
            rgba(0, 0, 0, 0.05) 0%,
            rgba(0, 0, 0, 0.12) 25%,
            rgba(0, 0, 0, 0.55) 60%,
            rgba(0, 0, 0, 0.94) 100%);

    transition: background 0.6s ease;
}


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

.service-card:hover {
    transform: translateY(-6px);

    border-color: rgba(214, 170, 75, 0.45);
}

.service-card:hover .service-card-bg {
    transform: scale(1.08);
    filter: saturate(1.08);
}

.service-card:hover .service-card-overlay {
    background:
        linear-gradient(180deg,
            rgba(0, 0, 0, 0.02) 0%,
            rgba(0, 0, 0, 0.12) 25%,
            rgba(0, 0, 0, 0.50) 60%,
            rgba(0, 0, 0, 0.92) 100%);
}


/* =========================================================
   CARD CONTENT
========================================================= */

.service-card-content {
    position: absolute;
    inset: 0;

    z-index: 2;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    padding: 32px;
}


/* =========================================================
   CARD NUMBER
========================================================= */

.service-number {
    font-family: var(--font-sans, Arial, sans-serif);

    font-size: 11px;
    letter-spacing: 0.2em;

    color: #d6aa4b;

    opacity: 0.9;
}


/* =========================================================
   CARD LABEL
========================================================= */

.service-label {
    display: block;

    margin-bottom: 14px;

    font-family: var(--font-sans, Arial, sans-serif);

    font-size: 10px;
    font-weight: 600;

    text-transform: uppercase;
    letter-spacing: 0.22em;

    color: rgba(255, 255, 255, 0.55);
}


/* =========================================================
   CARD TITLE
========================================================= */

.service-card h3 {
    margin: 0;

    color: #fff;

    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(42px, 4vw, 68px);

    font-weight: 400;

    line-height: 0.95;

    letter-spacing: -0.04em;
}

.service-card h3 em {
    color: #d6aa4b;
    font-style: italic;
}


/* =========================================================
   CARD DESCRIPTION
========================================================= */

.service-card p {
    max-width: 430px;

    margin: 22px 0 0;

    color: rgba(255, 255, 255, 0.65);

    font-family: var(--font-sans, Arial, sans-serif);

    font-size: 14px;

    line-height: 1.7;
}


/* =========================================================
   CARD ARROW
========================================================= */

.service-arrow {
    position: absolute;

    right: 32px;
    bottom: 32px;

    width: 54px;
    height: 54px;

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

    border: 1px solid rgba(255, 255, 255, 0.25);

    border-radius: 50%;

    color: #fff;

    font-size: 18px;

    text-decoration: none;

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

.service-arrow:hover {
    background: #d6aa4b;

    border-color: #d6aa4b;

    color: #080808;

    transform: rotate(45deg);
}


/* =========================================================
   REVEAL ANIMATION
========================================================= */

.reveal,
.reveal-scale {
    opacity: 1;
    visibility: visible;
}

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


/* =========================================================
   DESKTOP - FORCE 2 COLUMNS
========================================================= */

@media (min-width: 992px) {

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

    /* Buy */
    .service-card:nth-child(1) {
        grid-column: 1;
    }

    /* Sell */
    .service-card:nth-child(2) {
        grid-column: 2;
    }

    /* Bullion */
    .service-card:nth-child(3) {
        grid-column: 1;
    }

    /* Jewellery */
    .service-card:nth-child(4) {
        grid-column: 2;
    }

    /* Diamonds */
    .service-card:nth-child(5) {
        grid-column: 1 / -1;
    }

}


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

@media (max-width: 991px) {

    .section-heading {
        grid-template-columns: 1fr;
        gap: 30px;
    }

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

    .service-card,
    .service-card-large {
        min-height: 480px;
    }

    .service-card-full {
        grid-column: 1 / -1;
    }

}


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

@media (max-width: 767px) {

    .section-heading {
        margin-bottom: 50px;
    }

    .section-heading-main h2 {
        font-size: 52px;
    }

    .services-grid {
        grid-template-columns: 1fr !important;
        gap: 14px;
    }

    .service-card,
    .service-card-large,
    .service-card-full {
        grid-column: 1 !important;

        min-height: 430px;
    }

    .service-card-content {
        padding: 24px;
    }

    .service-card h3 {
        font-size: 43px;
    }

    .service-card p {
        max-width: 75%;
        font-size: 13px;
    }

    .service-arrow {
        right: 24px;
        bottom: 24px;

        width: 46px;
        height: 46px;
    }

}


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

@media (max-width: 480px) {

    .section-heading-main h2 {
        font-size: 44px;
    }

    .service-card,
    .service-card-large,
    .service-card-full {
        min-height: 390px;
    }

    .service-card h3 {
        font-size: 38px;
    }

}

.hero-image {
    background-image: url("/assets/images/hero-gold-sphere.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;

    width: 620px;
    height: 620px;

    position: absolute;
    right: 10%;
    top: 50%;
    transform: translateY(-50%);

    z-index: 2;
}


/* =========================================================
   LARGE DESKTOP
========================================================= */

@media (min-width: 1400px) {

    .hero-image {
        width: 680px;
        height: 680px;

        right: 7%;
    }

}


/* =========================================================
   LAPTOP / DESKTOP
========================================================= */

@media (min-width: 1025px) and (max-width: 1399px) {

    .hero-image {
        width: 560px;
        height: 560px;

        right: 5%;
    }

}


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

@media (min-width: 768px) and (max-width: 1024px) {

    .hero-image {

        width: 480px;
        height: 480px;

        right: 0;
        top: 48%;

        opacity: 0.95;
    }

}


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

@media (max-width: 767px) {

    .hero {
        min-height: 100svh;
        overflow: hidden;
    }


    .hero-background {
        overflow: hidden;
    }


    .hero-image {

        width: 330px;
        height: 330px;

        right: 50%;
        top: 43%;

        transform: translate(50%, -50%);

        background-size: contain;

        opacity: 0.95;

        z-index: 1;
    }


    .hero-content {
        position: relative;
        z-index: 5;
    }


    .hero-side {
        display: none;
    }

}


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

@media (max-width: 480px) {

    .hero-image {

        width: 285px;
        height: 285px;

        right: 50%;
        top: 43%;

        transform: translate(50%, -50%);
    }

}


/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 380px) {

    .hero-image {

        width: 250px;
        height: 250px;

        top: 42%;
    }

}

/* =========================================================
   BULLION / GOLD FEATURE SECTION
========================================================= */

.bullion-section {
    position: relative;
    background: #080808;
    color: #ffffff;
    overflow: hidden;
    min-height: 720px;
    padding: 120px 0;
}

/* Gold ambient glow */

.bullion-section::before {
    content: "";
    position: absolute;
    width: 650px;
    height: 650px;
    right: 8%;
    bottom: -250px;

    background: radial-gradient(circle,
            rgba(196, 148, 45, 0.22) 0%,
            rgba(196, 148, 45, 0.08) 35%,
            transparent 70%);

    pointer-events: none;
}


/* Existing circle */

.bullion-circle {
    position: absolute;

    width: 520px;
    height: 520px;

    right: -180px;
    top: 50%;

    transform: translateY(-50%);

    border-radius: 50%;

    background: radial-gradient(circle,
            rgba(211, 163, 59, 0.10),
            transparent 68%);

    pointer-events: none;
}


/* Container */

.bullion-section .container {
    position: relative;
    z-index: 2;
}


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

.bullion-grid {
    display: grid;

    grid-template-columns: minmax(0, 1fr) minmax(420px, 0.85fr);

    align-items: center;

    gap: 80px;

    min-height: 480px;
}


/* =========================================================
   LEFT CONTENT
========================================================= */

.bullion-content {
    position: relative;
    z-index: 5;

    max-width: 650px;

    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
}


/* Section top */

.bullion-content .section-top {
    display: flex;
    align-items: center;
    gap: 20px;

    margin-bottom: 35px;
}


/* Number */

.bullion-content .section-number {
    color: #c9a13a;

    font-size: 12px;
    letter-spacing: 3px;
    font-weight: 600;
}


/* Eyebrow */

.bullion-content .section-eyebrow {
    color: #c9a13a;

    font-size: 11px;
    text-transform: uppercase;

    letter-spacing: 4px;
}


/* Heading */

.bullion-content h2 {
    margin: 0 0 30px;

    max-width: 620px;

    color: #ffffff;

    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(48px, 5vw, 82px);

    line-height: 0.98;

    font-weight: 400;

    letter-spacing: -2px;
}


/* Gold italic */

.bullion-content h2 em {
    color: #d5aa4c;

    font-style: italic;
}


/* Paragraph */

.bullion-content>p {
    max-width: 560px;

    margin: 0 0 35px;

    color: rgba(255, 255, 255, 0.62);

    font-size: 16px;

    line-height: 1.9;
}


/* Button */

.outline-button {
    display: inline-flex;

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

    gap: 35px;

    min-width: 205px;

    padding: 16px 22px;

    border: 1px solid rgba(207, 165, 70, 0.65);

    color: #d7b45d;

    text-decoration: none;

    font-size: 11px;

    text-transform: uppercase;

    letter-spacing: 2px;

    transition:
        background 0.35s ease,
        color 0.35s ease,
        border-color 0.35s ease;
}

.outline-button:hover {
    background: #d5aa4c;
    border-color: #d5aa4c;

    color: #080808;
}


/* =========================================================
   RIGHT VISUAL
========================================================= */

.bullion-visual {
    position: relative;

    width: 100%;
    min-height: 500px;

    display: flex;

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

    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
}


/* =========================================================
   GOLD METAL
========================================================= */

.bullion-metal {
    position: relative;

    width: 300px;
    height: 300px;

    border-radius: 50%;

    display: flex;

    flex-direction: column;

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

    z-index: 4;

    background:
        radial-gradient(circle at 35% 25%,
            #ffe89a 0%,
            #e8bd52 22%,
            #c18b20 58%,
            #80530b 100%);

    border: 2px solid rgba(245, 211, 125, 0.75);

    box-shadow:
        0 0 0 8px rgba(202, 155, 54, 0.10),
        0 0 0 18px rgba(202, 155, 54, 0.05),
        0 30px 80px rgba(0, 0, 0, 0.7),
        0 0 100px rgba(201, 155, 55, 0.25);
}


/* Inner ring */

.bullion-metal::before {
    content: "";

    position: absolute;

    inset: 12px;

    border: 1px solid rgba(255, 235, 170, 0.55);

    border-radius: 50%;
}


/* Second ring */

.bullion-metal::after {
    content: "";

    position: absolute;

    inset: 25px;

    border: 1px solid rgba(255, 235, 170, 0.25);

    border-radius: 50%;
}


/* AU */

.bullion-metal span {
    position: relative;
    z-index: 3;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 72px;

    line-height: 1;

    color: #f9e7ac;

    text-shadow:
        0 2px 3px rgba(90, 50, 0, 0.55);
}


/* GOLD */

.bullion-metal small {
    position: relative;
    z-index: 3;

    margin-top: 12px;

    color: #f8df9b;

    font-size: 9px;

    letter-spacing: 5px;
}


/* =========================================================
   ORBITS
========================================================= */

.bullion-orbit {
    position: absolute;

    left: 50%;
    top: 50%;

    width: 430px;
    height: 180px;

    border: 1px solid rgba(191, 147, 49, 0.25);

    border-radius: 50%;

    transform:
        translate(-50%, -50%) rotate(-12deg);

    pointer-events: none;
}


.orbit-two {
    width: 480px;
    height: 210px;

    transform:
        translate(-50%, -50%) rotate(18deg);

    border-color: rgba(191, 147, 49, 0.18);
}


/* =========================================================
   ANIMATION
========================================================= */

.bullion-metal {
    animation: bullionFloat 6s ease-in-out infinite;
}

@keyframes bullionFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }

}


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

@media (max-width: 1000px) {

    .bullion-section {
        padding: 90px 0;
    }

    .bullion-grid {
        grid-template-columns: 1fr;

        gap: 60px;

        text-align: center;
    }

    .bullion-content {
        margin: 0 auto;
    }

    .bullion-content .section-top {
        justify-content: center;
    }

    .bullion-content h2 {
        margin-left: auto;
        margin-right: auto;
    }

    .bullion-content>p {
        margin-left: auto;
        margin-right: auto;
    }

    .bullion-visual {
        min-height: 420px;
    }

}


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

@media (max-width: 600px) {

    .bullion-section {
        min-height: auto;

        padding: 75px 20px;
    }

    .bullion-grid {
        gap: 40px;
    }

    .bullion-content .section-top {
        margin-bottom: 25px;
    }

    .bullion-content h2 {
        font-size: 44px;

        line-height: 1;

        letter-spacing: -1px;

        margin-bottom: 24px;
    }

    .bullion-content>p {
        font-size: 14px;

        line-height: 1.75;
    }

    .outline-button {
        width: 100%;
    }

    .bullion-visual {
        min-height: 330px;
    }

    .bullion-metal {
        width: 230px;
        height: 230px;
    }

    .bullion-metal span {
        font-size: 55px;
    }

    .bullion-orbit {
        width: 330px;
        height: 135px;
    }

    .orbit-two {
        width: 370px;
        height: 155px;
    }

}


/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 380px) {

    .bullion-content h2 {
        font-size: 38px;
    }

    .bullion-metal {
        width: 200px;
        height: 200px;
    }

    .bullion-metal span {
        font-size: 48px;
    }

    .bullion-orbit {
        width: 290px;
    }

    .orbit-two {
        width: 320px;
    }

}

/* =========================================================
   BULLION / GOLD FEATURE SECTION
========================================================= */

.bullion-section {
    position: relative;
    background: #080808;
    color: #ffffff;
    overflow: hidden;
    min-height: 720px;
    padding: 120px 0;
}

/* Gold ambient glow */

.bullion-section::before {
    content: "";
    position: absolute;
    width: 650px;
    height: 650px;
    right: 8%;
    bottom: -250px;

    background: radial-gradient(circle,
            rgba(196, 148, 45, 0.22) 0%,
            rgba(196, 148, 45, 0.08) 35%,
            transparent 70%);

    pointer-events: none;
}


/* Existing circle */

.bullion-circle {
    position: absolute;

    width: 520px;
    height: 520px;

    right: -180px;
    top: 50%;

    transform: translateY(-50%);

    border-radius: 50%;

    background: radial-gradient(circle,
            rgba(211, 163, 59, 0.10),
            transparent 68%);

    pointer-events: none;
}


/* Container */

.bullion-section .container {
    position: relative;
    z-index: 2;
}


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

.bullion-grid {
    display: grid;

    grid-template-columns: minmax(0, 1fr) minmax(420px, 0.85fr);

    align-items: center;

    gap: 80px;

    min-height: 480px;
}


/* =========================================================
   LEFT CONTENT
========================================================= */

.bullion-content {
    position: relative;
    z-index: 5;

    max-width: 650px;

    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
}


/* Section top */

.bullion-content .section-top {
    display: flex;
    align-items: center;
    gap: 20px;

    margin-bottom: 35px;
}


/* Number */

.bullion-content .section-number {
    color: #c9a13a;

    font-size: 12px;
    letter-spacing: 3px;
    font-weight: 600;
}


/* Eyebrow */

.bullion-content .section-eyebrow {
    color: #c9a13a;

    font-size: 11px;
    text-transform: uppercase;

    letter-spacing: 4px;
}


/* Heading */

.bullion-content h2 {
    margin: 0 0 30px;

    max-width: 620px;

    color: #ffffff;

    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(48px, 5vw, 82px);

    line-height: 0.98;

    font-weight: 400;

    letter-spacing: -2px;
}


/* Gold italic */

.bullion-content h2 em {
    color: #d5aa4c;

    font-style: italic;
}


/* Paragraph */

.bullion-content>p {
    max-width: 560px;

    margin: 0 0 35px;

    color: rgba(255, 255, 255, 0.62);

    font-size: 16px;

    line-height: 1.9;
}


/* Button */

.outline-button {
    display: inline-flex;

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

    gap: 35px;

    min-width: 205px;

    padding: 16px 22px;

    border: 1px solid rgba(207, 165, 70, 0.65);

    color: #d7b45d;

    text-decoration: none;

    font-size: 11px;

    text-transform: uppercase;

    letter-spacing: 2px;

    transition:
        background 0.35s ease,
        color 0.35s ease,
        border-color 0.35s ease;
}

.outline-button:hover {
    background: #d5aa4c;
    border-color: #d5aa4c;

    color: #080808;
}


/* =========================================================
   RIGHT VISUAL
========================================================= */

.bullion-visual {
    position: relative;

    width: 100%;
    min-height: 500px;

    display: flex;

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

    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
}


/* =========================================================
   GOLD METAL
========================================================= */

.bullion-metal {
    position: relative;

    width: 300px;
    height: 300px;

    border-radius: 50%;

    display: flex;

    flex-direction: column;

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

    z-index: 4;

    background:
        radial-gradient(circle at 35% 25%,
            #ffe89a 0%,
            #e8bd52 22%,
            #c18b20 58%,
            #80530b 100%);

    border: 2px solid rgba(245, 211, 125, 0.75);

    box-shadow:
        0 0 0 8px rgba(202, 155, 54, 0.10),
        0 0 0 18px rgba(202, 155, 54, 0.05),
        0 30px 80px rgba(0, 0, 0, 0.7),
        0 0 100px rgba(201, 155, 55, 0.25);
}


/* Inner ring */

.bullion-metal::before {
    content: "";

    position: absolute;

    inset: 12px;

    border: 1px solid rgba(255, 235, 170, 0.55);

    border-radius: 50%;
}


/* Second ring */

.bullion-metal::after {
    content: "";

    position: absolute;

    inset: 25px;

    border: 1px solid rgba(255, 235, 170, 0.25);

    border-radius: 50%;
}


/* AU */

.bullion-metal span {
    position: relative;
    z-index: 3;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 72px;

    line-height: 1;

    color: #f9e7ac;

    text-shadow:
        0 2px 3px rgba(90, 50, 0, 0.55);
}


/* GOLD */

.bullion-metal small {
    position: relative;
    z-index: 3;

    margin-top: 12px;

    color: #f8df9b;

    font-size: 9px;

    letter-spacing: 5px;
}


/* =========================================================
   ORBITS
========================================================= */

.bullion-orbit {
    position: absolute;

    left: 50%;
    top: 50%;

    width: 430px;
    height: 180px;

    border: 1px solid rgba(191, 147, 49, 0.25);

    border-radius: 50%;

    transform:
        translate(-50%, -50%) rotate(-12deg);

    pointer-events: none;
}


.orbit-two {
    width: 480px;
    height: 210px;

    transform:
        translate(-50%, -50%) rotate(18deg);

    border-color: rgba(191, 147, 49, 0.18);
}


/* =========================================================
   ANIMATION
========================================================= */

.bullion-metal {
    animation: bullionFloat 6s ease-in-out infinite;
}

@keyframes bullionFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }

}


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

@media (max-width: 1000px) {

    .bullion-section {
        padding: 90px 0;
    }

    .bullion-grid {
        grid-template-columns: 1fr;

        gap: 60px;

        text-align: center;
    }

    .bullion-content {
        margin: 0 auto;
    }

    .bullion-content .section-top {
        justify-content: center;
    }

    .bullion-content h2 {
        margin-left: auto;
        margin-right: auto;
    }

    .bullion-content>p {
        margin-left: auto;
        margin-right: auto;
    }

    .bullion-visual {
        min-height: 420px;
    }

}


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

@media (max-width: 600px) {

    .bullion-section {
        min-height: auto;

        padding: 75px 20px;
    }

    .bullion-grid {
        gap: 40px;
    }

    .bullion-content .section-top {
        margin-bottom: 25px;
    }

    .bullion-content h2 {
        font-size: 44px;

        line-height: 1;

        letter-spacing: -1px;

        margin-bottom: 24px;
    }

    .bullion-content>p {
        font-size: 14px;

        line-height: 1.75;
    }

    .outline-button {
        width: 100%;
    }

    .bullion-visual {
        min-height: 330px;
    }

    .bullion-metal {
        width: 230px;
        height: 230px;
    }

    .bullion-metal span {
        font-size: 55px;
    }

    .bullion-orbit {
        width: 330px;
        height: 135px;
    }

    .orbit-two {
        width: 370px;
        height: 155px;
    }

}


/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 380px) {

    .bullion-content h2 {
        font-size: 38px;
    }

    .bullion-metal {
        width: 200px;
        height: 200px;
    }

    .bullion-metal span {
        font-size: 48px;
    }

    .bullion-orbit {
        width: 290px;
    }

    .orbit-two {
        width: 320px;
    }

}

/* =========================================================
   JEWELLERY FEATURE SECTION
========================================================= */

.jewellery-section {
    position: relative;
    background: #f3f0e8;
    color: #111111;
    overflow: hidden;

    padding: 120px 0;
}


/* =========================================================
   JEWELLERY GRID
========================================================= */

.jewellery-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    align-items: center;

    gap: 90px;

    min-height: 600px;
}


/* =========================================================
   LEFT VISUAL
========================================================= */

.jewellery-visual {
    position: relative;

    width: 100%;
    height: 620px;

    overflow: hidden;

    background: #0b0907;

    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
}


/* Image */

.jewellery-image {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    background-image: url("../images/services/jewellery.jpg");
    background-size: cover;
    background-position: center;

    background-repeat: no-repeat;

    transform: scale(1.01);

    transition: transform 1s ease;
}


/* Dark luxury overlay */

.jewellery-visual::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(180deg,
            rgba(0, 0, 0, 0.12) 0%,
            rgba(0, 0, 0, 0.20) 45%,
            rgba(0, 0, 0, 0.48) 100%);

    pointer-events: none;
}


/* Hover */

.jewellery-visual:hover .jewellery-image {
    transform: scale(1.05);
}


/* =========================================================
   IMAGE FALLBACK
   Agar HTML mein jewellery-image nahi hai
========================================================= */

.jewellery-visual-bg {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    background-image: url("../images/services/jewellery.jpg");

    background-size: cover;
    background-position: center;

    background-repeat: no-repeat;
}


/* =========================================================
   RIGHT CONTENT
========================================================= */

.jewellery-content {
    position: relative;

    max-width: 600px;

    padding-right: 30px;

    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
}


/* =========================================================
   SECTION TOP
========================================================= */

.jewellery-content .section-top {
    display: flex;

    align-items: center;

    gap: 18px;

    margin-bottom: 32px;
}


.jewellery-content .section-number {
    color: #b4872d;

    font-size: 11px;

    font-weight: 600;

    letter-spacing: 3px;
}


.jewellery-content .section-eyebrow {
    color: #b4872d;

    font-size: 11px;

    font-weight: 500;

    text-transform: uppercase;

    letter-spacing: 4px;
}


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

.jewellery-content h2 {
    margin: 0 0 32px;

    max-width: 600px;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: clamp(50px, 5vw, 82px);

    font-weight: 400;

    line-height: 0.98;

    letter-spacing: -3px;

    color: #111111;
}


.jewellery-content h2 em {
    color: #b4872d;

    font-style: italic;
}


/* =========================================================
   PARAGRAPHS
========================================================= */

.jewellery-content p {
    max-width: 540px;

    margin: 0 0 28px;

    color: rgba(17, 17, 17, 0.58);

    font-size: 15px;

    line-height: 1.85;
}


/* =========================================================
   JEWELLERY LINK / BUTTON
========================================================= */

.jewellery-content .line-link {
    display: inline-flex;

    align-items: center;

    gap: 25px;

    margin-top: 15px;

    padding-bottom: 12px;

    border-bottom: 1px solid rgba(17, 17, 17, 0.35);

    color: #171717;

    text-decoration: none;

    font-size: 10px;

    font-weight: 600;

    text-transform: uppercase;

    letter-spacing: 2px;

    transition:
        color 0.3s ease,
        border-color 0.3s ease;
}


.jewellery-content .line-link span:last-child {
    font-size: 14px;

    transition:
        transform 0.3s ease;
}


.jewellery-content .line-link:hover {
    color: #b4872d;

    border-color: #b4872d;
}


.jewellery-content .line-link:hover span:last-child {
    transform: translate(4px, -4px);
}


/* =========================================================
   REVEAL FIX
   ========================================================= */

.jewellery-section .reveal,
.jewellery-section .reveal-left,
.jewellery-section .reveal-right,
.jewellery-section .reveal-scale {
    opacity: 1 !important;

    visibility: visible !important;

    transform: none !important;
}


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

@media (max-width: 1000px) {

    .jewellery-section {
        padding: 90px 0;
    }

    .jewellery-grid {
        grid-template-columns: 1fr;

        gap: 60px;

        min-height: auto;
    }

    .jewellery-visual {
        height: 550px;

        order: 1;
    }

    .jewellery-content {
        order: 2;

        max-width: 700px;

        padding-right: 0;
    }

    .jewellery-content h2 {
        font-size: 64px;
    }

}


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

@media (max-width: 600px) {

    .jewellery-section {
        padding: 70px 20px;
    }

    .jewellery-grid {
        gap: 45px;
    }

    .jewellery-visual {
        height: 430px;
    }

    .jewellery-content .section-top {
        margin-bottom: 25px;
    }

    .jewellery-content h2 {
        font-size: 46px;

        line-height: 1;

        letter-spacing: -1.5px;

        margin-bottom: 25px;
    }

    .jewellery-content p {
        font-size: 14px;

        line-height: 1.75;

        margin-bottom: 22px;
    }

    .jewellery-content .line-link {
        margin-top: 8px;
    }

}


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

@media (max-width: 380px) {

    .jewellery-section {
        padding: 60px 18px;
    }

    .jewellery-visual {
        height: 360px;
    }

    .jewellery-content h2 {
        font-size: 40px;
    }

}

/* =========================================================
   BULLION VISUAL
========================================================= */

.bullion-visual {
    position: relative;
    width: 100%;
    height: 620px;

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

    overflow: hidden;

    background: #080808;
    border: 1px solid rgba(212, 166, 70, 0.16);
}


/* PNG EMBLEM */

.bullion-emblem {
    position: relative;
    z-index: 2;

    width: 92%;
    max-width: 620px;
    height: auto;

    display: block;

    object-fit: contain;

    filter:
        drop-shadow(0 25px 45px rgba(0, 0, 0, 0.65)) drop-shadow(0 0 35px rgba(212, 166, 70, 0.18));

    transition:
        transform 0.8s ease,
        filter 0.8s ease;
}


/* HOVER EFFECT */

.bullion-visual:hover .bullion-emblem {
    transform: scale(1.035);

    filter:
        drop-shadow(0 30px 50px rgba(0, 0, 0, 0.7)) drop-shadow(0 0 50px rgba(212, 166, 70, 0.28));
}


/* =========================================================
   SUBTLE GOLD GLOW
========================================================= */

.bullion-visual::before {
    content: "";

    position: absolute;

    width: 360px;
    height: 360px;

    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%);

    background: rgba(190, 140, 45, 0.12);

    filter: blur(90px);

    border-radius: 50%;

    z-index: 1;

    pointer-events: none;
}


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

@media (max-width: 768px) {

    .bullion-visual {
        height: 430px;
        margin-top: 35px;
    }

    .bullion-emblem {
        width: 96%;
        max-width: 480px;
    }

}


/* SMALL MOBILE */

@media (max-width: 480px) {

    .bullion-visual {
        height: 350px;
    }

    .bullion-emblem {
        width: 105%;
        max-width: none;
    }

}

/* =========================================================
   JEWELLERY FEATURE
========================================================= */

.jewellery-feature {
    position: relative;
    background: #f5f2ea;
    color: #111;
    overflow: hidden;
}


/* =========================================================
   CONTAINER
========================================================= */

.jewellery-feature .container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding-left: 40px;
    padding-right: 40px;
}


/* =========================================================
   MAIN GRID
========================================================= */

.jewellery-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: center;
    gap: 80px;
    min-height: 350px;
}


/* =========================================================
   IMAGE AREA
========================================================= */

.image-feature {
    position: relative;
    width: 100%;
}


.image-feature-frame {
    position: relative;
    width: 100%;
    height: 620px;
    overflow: hidden;
    background: #0b0b0b;
}


/* Actual Image */

.jewellery-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.01);
    transition: transform 1.2s cubic-bezier(.2, .7, .2, 1);
}


/* Image Hover */

.image-feature:hover .jewellery-image {
    transform: scale(1.05);
}


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

.image-feature-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(180deg,
            rgba(0, 0, 0, 0.05) 0%,
            rgba(0, 0, 0, 0.08) 45%,
            rgba(0, 0, 0, 0.45) 100%);

    pointer-events: none;
    z-index: 2;
}


/* =========================================================
   GOLD GLOW
========================================================= */

.image-feature-glow {
    position: absolute;

    width: 280px;
    height: 280px;

    right: -120px;
    bottom: -140px;

    background: rgba(183, 132, 42, 0.20);

    filter: blur(80px);

    border-radius: 50%;

    pointer-events: none;

    z-index: 3;
}


/* =========================================================
   IMAGE CAPTION
========================================================= */

.image-caption {
    display: block;

    margin-top: 18px;

    font-family: Arial, sans-serif;

    font-size: 10px;
    font-weight: 600;

    letter-spacing: 3px;
    text-transform: uppercase;

    color: #8d7446;
}


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

.jewellery-feature-content {
    position: relative;

    max-width: 600px;

    padding: 30px 0;
}


/* =========================================================
   SECTION TOP
========================================================= */

.jewellery-feature .section-top {
    display: flex;
    align-items: center;

    gap: 18px;

    margin-bottom: 38px;
}


/* Number */

.jewellery-feature .section-number {
    font-family: Arial, sans-serif;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 3px;

    color: #b7862f;
}


/* Small divider */

.jewellery-feature .section-number::after {
    content: "";
    display: inline-block;

    width: 32px;
    height: 1px;

    margin-left: 14px;

    vertical-align: middle;

    background: #b7862f;
}


/* Eyebrow */

.jewellery-feature .section-eyebrow {
    font-family: Arial, sans-serif;

    font-size: 10px;
    font-weight: 600;

    letter-spacing: 3px;

    text-transform: uppercase;

    color: #b8b1a5;
}


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

.jewellery-feature-content h2 {
    margin: 0 0 35px;

    max-width: 620px;

    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(48px, 5vw, 78px);

    font-weight: 400;

    line-height: 0.98;

    letter-spacing: -3px;

    color: #111;
}


.jewellery-feature-content h2 em {
    font-family: Georgia, "Times New Roman", serif;

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

    color: #b7862f;
}


/* =========================================================
   PARAGRAPHS
========================================================= */

.jewellery-feature-content p {
    max-width: 570px;

    margin: 0 0 24px;

    font-family: Arial, sans-serif;

    font-size: 14px;

    line-height: 1.9;

    color: #77736d;
}


/* =========================================================
   ENQUIRY LINK
========================================================= */

.jewellery-feature .line-link {
    display: inline-flex;
    align-items: center;

    gap: 18px;

    margin-top: 25px;

    padding-bottom: 12px;

    border-bottom: 1px solid #b8b1a5;

    color: #171717;

    font-family: Arial, sans-serif;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 1.5px;

    text-transform: uppercase;

    text-decoration: none;

    transition:
        color 0.3s ease,
        border-color 0.3s ease,
        gap 0.3s ease;
}


.jewellery-feature .line-link:hover {
    color: #b7862f;

    border-color: #b7862f;

    gap: 25px;
}


.line-link-arrow {
    font-size: 14px;

    line-height: 1;

    transition: transform 0.3s ease;
}


.jewellery-feature .line-link:hover .line-link-arrow {
    transform: translate(3px, -3px);
}


/* =========================================================
   REVEAL ANIMATION
========================================================= */

.jewellery-feature .reveal,
.jewellery-feature .reveal-scale {
    opacity: 1;
    visibility: visible;
}


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

@media (max-width: 1100px) {

    .jewellery-feature .container {
        padding-left: 30px;
        padding-right: 30px;
    }


    .jewellery-grid {
        gap: 50px;
        min-height: 580px;
    }


    .image-feature-frame {
        height: 550px;
    }


    .jewellery-feature-content h2 {
        font-size: clamp(45px, 5vw, 65px);
        letter-spacing: -2px;
    }

}


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

@media (max-width: 767px) {

    .jewellery-feature {
        padding-top: 70px;
        padding-bottom: 70px;
    }


    .jewellery-feature .container {
        padding-left: 20px;
        padding-right: 20px;
    }


    /* One column */

    .jewellery-grid {
        display: flex;
        flex-direction: column;

        gap: 45px;

        min-height: auto;

        align-items: stretch;
    }


    /* Image */

    .image-feature {
        width: 100%;
    }


    .image-feature-frame {
        width: 100%;
        height: 430px;
    }


    .jewellery-image {
        width: 100%;
        height: 100%;

        object-fit: cover;
        object-position: center;
    }


    .image-caption {
        margin-top: 14px;

        font-size: 9px;
        letter-spacing: 2px;
    }


    /* Content */

    .jewellery-feature-content {
        width: 100%;
        max-width: 100%;

        padding: 0;
    }


    /* Section top */

    .jewellery-feature .section-top {
        gap: 12px;

        margin-bottom: 25px;
    }


    .jewellery-feature .section-number {
        font-size: 10px;
    }


    .jewellery-feature .section-number::after {
        width: 20px;

        margin-left: 8px;
    }


    .jewellery-feature .section-eyebrow {
        font-size: 9px;

        letter-spacing: 2px;
    }


    /* Heading */

    .jewellery-feature-content h2 {
        margin-bottom: 25px;

        font-size: clamp(42px, 12vw, 58px);

        line-height: 0.98;

        letter-spacing: -2px;
    }


    /* Paragraph */

    .jewellery-feature-content p {
        font-size: 13px;

        line-height: 1.8;

        margin-bottom: 18px;
    }


    /* Button */

    .jewellery-feature .line-link {
        margin-top: 12px;

        font-size: 9px;

        gap: 14px;
    }

}


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

@media (max-width: 480px) {

    .jewellery-feature {
        padding-top: 55px;
        padding-bottom: 60px;
    }


    .image-feature-frame {
        height: 360px;
    }


    .jewellery-feature-content h2 {
        font-size: 43px;
        letter-spacing: -1.5px;
    }


    .jewellery-feature-content p {
        font-size: 12px;
    }

}

/* =========================================================
   WHY ZAR SECTION
========================================================= */

.why-section {
    position: relative;
    background: #f5f2ea;
    color: #111;
    overflow: hidden;
}


/* =========================================================
   CONTAINER
========================================================= */

.why-section .container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding-left: 40px;
    padding-right: 40px;
}


/* =========================================================
   SECTION HEADING
========================================================= */

.why-section .section-heading {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 60px;

    align-items: start;

    margin-bottom: 70px;
}


/* LEFT */

.why-section .section-heading-left {
    display: flex;
    align-items: center;
    gap: 15px;
}


/* Number */

.why-section .section-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 32px;
    height: 32px;

    border: 1px solid #c69a45;

    font-family: Arial, sans-serif;
    font-size: 9px;
    font-weight: 700;

    letter-spacing: 1px;

    color: #b7862f;
}


/* Eyebrow */

.why-section .section-eyebrow {
    position: relative;

    padding-left: 24px;

    font-family: Arial, sans-serif;

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 3px;

    text-transform: uppercase;

    color: #b7862f;
}


.why-section .section-eyebrow::before {
    content: "";

    position: absolute;

    left: 0;
    top: 50%;

    width: 20px;
    height: 1px;

    background: #b7862f;

    transform: translateY(-50%);
}


/* =========================================================
   HEADING MAIN
========================================================= */

.why-section .section-heading-main {
    max-width: 850px;
}


.why-section .section-heading-main h2 {
    margin: 0 0 25px;

    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(55px, 6vw, 88px);

    font-weight: 400;

    line-height: 0.95;

    letter-spacing: -4px;

    color: #111;
}


.why-section .section-heading-main h2 em {
    font-style: italic;

    color: black !important;
}


.why-section .section-heading-main p {
    max-width: 600px;

    margin: 0;

    font-family: Arial, sans-serif;

    font-size: 14px;

    line-height: 1.8;

    color: #77736d;
}


/* =========================================================
   WHY GRID
========================================================= */

.why-grid {
    display: grid;

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

    width: 100%;

    background: #050505;

    border: 1px solid rgba(198, 154, 69, 0.15);
}


/* =========================================================
   WHY CARD
========================================================= */

.why-card {
    position: relative;

    min-height: 330px;

    padding: 38px 28px 35px;

    background: #050505;

    border-right: 1px solid rgba(255, 255, 255, 0.28);

    overflow: hidden;

    transition:
        background 0.4s ease,
        transform 0.4s ease;
}


.why-card:last-child {
    border-right: none;
}


/* Gold glow on hover */

.why-card::before {
    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    right: -100px;
    bottom: -100px;

    background: rgba(190, 140, 45, 0.18);

    border-radius: 50%;

    filter: blur(45px);

    opacity: 0;

    transition: opacity 0.5s ease;
}


.why-card:hover::before {
    opacity: 1;
}


/* =========================================================
   NUMBER
========================================================= */

.why-number {
    position: relative;

    display: block;

    font-family: Arial, sans-serif;

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 2px;

    color: #9f7627;

    margin-bottom: 60px;

    z-index: 2;
}


/* =========================================================
   ICON
========================================================= */

.why-icon {
    position: relative;

    display: flex;

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

    width: 36px;
    height: 36px;

    margin-bottom: 28px;

    font-family: Georgia, serif;

    font-size: 25px;

    color: #c49436;

    z-index: 2;

    transition:
        transform 0.4s ease,
        color 0.4s ease;
}


.why-card:hover .why-icon {
    transform: translateY(-5px) scale(1.08);

    color: #e0b65e;
}


/* =========================================================
   CARD TITLE
========================================================= */

.why-card h3 {
    position: relative;

    margin: 0 0 14px;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 27px;

    font-weight: 400;

    line-height: 1.1;

    color: #f5f2ea !important;

    z-index: 2;
}


/* =========================================================
   CARD TEXT
========================================================= */

.why-card p {
    position: relative;

    max-width: 230px;

    margin: 0;

    font-family: Arial, sans-serif;

    font-size: 12px;

    line-height: 1.75;

    color: rgba(245, 242, 234, 0.62) !important;

    z-index: 2;
}


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

.why-card:hover {
    background: #0b0b0b;

    transform: translateY(-4px);
}


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

@media (max-width: 1100px) {

    .why-section .container {
        padding-left: 30px;
        padding-right: 30px;
    }


    .why-section .section-heading {
        grid-template-columns: 180px 1fr;

        gap: 40px;

        margin-bottom: 55px;
    }


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


    .why-card:nth-child(2) {
        border-right: none;
    }


    .why-card:nth-child(1),
    .why-card:nth-child(2) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.28);
    }


    .why-card {
        min-height: 300px;
    }

}


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

@media (max-width: 767px) {

    .why-section {
        padding-top: 70px;
        padding-bottom: 70px;
    }


    .why-section .container {
        padding-left: 20px;
        padding-right: 20px;
    }


    /* Heading */

    .why-section .section-heading {
        display: block;

        margin-bottom: 45px;
    }


    .why-section .section-heading-left {
        margin-bottom: 30px;
    }


    .why-section .section-heading-main h2 {
        font-size: 52px;

        letter-spacing: -2px;

        line-height: 0.98;

        margin-bottom: 22px;
    }


    .why-section .section-heading-main p {
        font-size: 13px;

        line-height: 1.75;
    }


    /* Grid */

    .why-grid {
        display: grid;

        grid-template-columns: 1fr;
    }


    /* Cards */

    .why-card {
        min-height: 270px;

        padding: 30px 25px;

        border-right: none !important;

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


    .why-card:last-child {
        border-bottom: none;
    }


    .why-number {
        margin-bottom: 35px;
    }


    .why-icon {
        margin-bottom: 20px;
    }


    .why-card h3 {
        font-size: 25px;

        margin-bottom: 12px;
    }


    .why-card p {
        max-width: 100%;

        font-size: 12px;

        line-height: 1.7;
    }

}


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

@media (max-width: 480px) {

    .why-section {
        padding-top: 55px;
        padding-bottom: 60px;
    }


    .why-section .section-heading-main h2 {
        font-size: 44px;
    }


    .why-card {
        min-height: 250px;

        padding: 28px 22px;
    }


    .why-card h3 {
        font-size: 23px;
    }

}

/* =========================================================
   INQUIRY STRIP
========================================================= */

.inquiry-strip {
    position: relative;
    width: 100%;
    background: #f5f2ea;
    color: #111111;
    overflow: hidden;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.inquiry-strip .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.inquiry-strip-inner {
    min-height: 330px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    position: relative;
}


/* =========================================================
   LEFT CONTENT
========================================================= */

.inquiry-strip-inner>div {
    position: relative;
    z-index: 2;
}

.inquiry-strip .section-eyebrow {
    display: block;
    margin-bottom: 20px;

    font-family: "Poppins", sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;

    color: #b4872c;
}

.inquiry-strip h2 {
    margin: 0;

    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(48px, 6vw, 82px);
    font-weight: 400;
    line-height: 0.95;
    letter-spacing: -3px;

    color: #111111;
}

.inquiry-strip h2 em {
    font-style: italic;
    color: #b4862b;
}


/* =========================================================
   ROUND ARROW BUTTON
========================================================= */

.round-arrow-button {
    width: 126px;
    height: 126px;

    flex: 0 0 126px;

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

    border-radius: 50%;

    background: #111111;
    color: #e4b94f;

    text-decoration: none;

    position: relative;
    z-index: 3;

    transition:
        transform 0.45s ease,
        background 0.35s ease,
        color 0.35s ease;
}

.round-arrow-button span {
    font-family: Arial, sans-serif;
    font-size: 30px;
    font-weight: 300;
    line-height: 1;

    display: block;

    transition: transform 0.35s ease;
}

.round-arrow-button:hover {
    background: #b4862b;
    color: #111111;
    transform: scale(1.05);
}

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


/* =========================================================
   SUBTLE GOLD DECORATION
========================================================= */

.inquiry-strip::after {
    content: "";
    position: absolute;

    width: 420px;
    height: 420px;

    right: -220px;
    top: 50%;

    transform: translateY(-50%);

    border-radius: 50%;

    background: radial-gradient(circle,
            rgba(180, 134, 43, 0.10) 0%,
            rgba(180, 134, 43, 0.035) 35%,
            transparent 70%);

    pointer-events: none;
}


/* =========================================================
   REVEAL SUPPORT
========================================================= */

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

.inquiry-strip .reveal-scale {
    opacity: 1;
    transform: scale(1);
}


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

@media (max-width: 991px) {

    .inquiry-strip .container {
        padding: 0 30px;
    }

    .inquiry-strip-inner {
        min-height: 280px;
        gap: 40px;
    }

    .inquiry-strip h2 {
        font-size: clamp(44px, 7vw, 64px);
        letter-spacing: -2px;
    }

    .round-arrow-button {
        width: 105px;
        height: 105px;
        flex-basis: 105px;
    }

    .round-arrow-button span {
        font-size: 26px;
    }
}


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

@media (max-width: 767px) {

    .inquiry-strip .container {
        padding: 0 22px;
    }

    .inquiry-strip-inner {
        min-height: auto;

        padding: 70px 0;

        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;

        gap: 35px;
    }

    .inquiry-strip .section-eyebrow {
        font-size: 9px;
        letter-spacing: 3px;
        margin-bottom: 15px;
    }

    .inquiry-strip h2 {
        font-size: clamp(42px, 12vw, 58px);
        line-height: 0.98;
        letter-spacing: -2px;
    }

    .round-arrow-button {
        width: 82px;
        height: 82px;
        flex-basis: 82px;
        align-self: flex-end;
    }

    .round-arrow-button span {
        font-size: 23px;
    }

    .inquiry-strip::after {
        width: 280px;
        height: 280px;
        right: -170px;
    }
}


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

@media (max-width: 480px) {

    .inquiry-strip-inner {
        padding: 55px 0;
        gap: 30px;
    }

    .inquiry-strip h2 {
        font-size: 40px;
        letter-spacing: -1.5px;
    }

    .inquiry-strip .section-eyebrow {
        font-size: 8px;
        letter-spacing: 2.5px;
        color: #000 !important;
    }

    .round-arrow-button {
        width: 72px;
        height: 72px;
        flex-basis: 72px;
    }

    .round-arrow-button span {
        font-size: 20px;
    }
}


/* Jewellery Image - 40% Height Reduction */
.jewellery-feature .image-feature-frame {
    height: 60%;
    min-height: 0;
}

.jewellery-feature .jewellery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.jewellery-feature .image-feature-frame {
    height: 390px;
    /* 650px ka 60% */
}

/* =========================================================
   JEWELLERY IMAGE FORCE FIX
========================================================= */

.jewellery-feature .image-feature {
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
}

.jewellery-feature .image-feature-frame {
    position: relative !important;
    width: 100% !important;
    height: 400px !important;
    min-height: 400px !important;
    max-height: 400px !important;

    overflow: hidden !important;

    padding: 0 !important;
    margin: 0 !important;

    aspect-ratio: auto !important;
}

.jewellery-feature .image-feature-frame .jewellery-image {
    position: absolute !important;

    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;

    display: block !important;

    width: 100% !important;
    height: 100% !important;

    max-width: none !important;
    max-height: none !important;

    min-width: 0 !important;
    min-height: 0 !important;

    margin: 0 !important;
    padding: 0 !important;

    object-fit: cover !important;
    object-position: center center !important;

    transform: none !important;
}

.jewellery-feature .image-feature-overlay {
    position: absolute !important;
    inset: 0 !important;

    width: 100% !important;
    height: 100% !important;

    margin: 0 !important;
    padding: 0 !important;

    z-index: 2 !important;

    pointer-events: none !important;
}

.jewellery-feature .image-feature-glow {
    position: absolute !important;

    z-index: 3 !important;
    pointer-events: none !important;
}


/* Caption ko image ke bahar rakho */
.jewellery-feature .image-caption {
    display: block !important;
    height: auto !important;
    margin-top: 15px !important;
}


/* =========================================================
   DESKTOP
========================================================= */

@media (min-width: 992px) {

    .jewellery-feature .image-feature-frame {
        height: 400px !important;
        min-height: 400px !important;
        max-height: 400px !important;
    }

}


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

@media (min-width: 768px) and (max-width: 991px) {

    .jewellery-feature .image-feature-frame {
        height: 360px !important;
        min-height: 360px !important;
        max-height: 360px !important;
    }

}


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

@media (max-width: 767px) {

    .jewellery-feature .image-feature-frame {
        height: 300px !important;
        min-height: 300px !important;
        max-height: 300px !important;
    }

    .jewellery-feature .image-feature-frame .jewellery-image {
        width: 100% !important;
        height: 100% !important;

        object-fit: cover !important;
        object-position: center center !important;
    }

}


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

@media (max-width: 480px) {

    .jewellery-feature .image-feature-frame {
        height: 270px !important;
        min-height: 270px !important;
        max-height: 270px !important;
    }

}

/*
=========================================================
 ZAR GOLD & DIAMONDS
 FINAL OVERRIDE / FIX PATCH
 Apply this AFTER style_white_gold_black_clean.css
 Fixes the header overlap, accidental desktop mobile-menu,
 hero positioning and keeps the White + Gold + Black theme.
=========================================================
*/

/* ---------- FINAL COLOR TOKENS ---------- */
:root {
    --color-bg: #ffffff;
    --color-bg-soft: #faf9f5;
    --color-bg-card: #ffffff;
    --color-bg-card-2: #f5f2ea;

    --color-gold: #c9a227;
    --color-gold-light: #d8b85a;
    --color-gold-bright: #e7cc78;
    --color-gold-dark: #9a7417;

    --color-white: #111111;
    --color-white-soft: #333333;
    --color-text: #666666;
    --color-text-dark: #888888;

    --color-border: rgba(201, 162, 39, .28);
    --color-border-light: rgba(17, 17, 17, .10);
}

/* ---------- GLOBAL ---------- */
body {
    background: #fff !important;
    color: #242424 !important;
}

.home-page {
    background: #fff !important;
    color: #242424 !important;
}

/* =========================================================
   HEADER — FIXED DESKTOP LAYOUT
========================================================= */
.site-header {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px !important;
    z-index: 5000 !important;
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, .97) !important;
    border-bottom: 1px solid rgba(17, 17, 17, .08) !important;
    box-shadow: 0 5px 25px rgba(0, 0, 0, .04);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.site-header.scrolled {
    height: 74px !important;
    background: rgba(255, 255, 255, .98) !important;
    border-bottom-color: rgba(201, 162, 39, .20) !important;
}

.header-inner {
    width: min(1400px, calc(100% - 60px)) !important;
    height: 100%;
    margin: 0 auto !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 25px;
}

.site-logo {
    flex: 0 0 auto !important;
    width: 145px !important;
    display: flex !important;
    align-items: center !important;
}

.site-logo img,
.logo-image {
    display: block;
    width: 100%;
    max-height: 90px;
    object-fit: contain;
}

/* ---------- DESKTOP NAV ---------- */
.main-navigation {
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: 25px !important;
    height: 100% !important;
    margin-left: auto !important;
    margin-right: 22px !important;
    flex: 1 1 auto !important;
}

.main-navigation>a,
.main-navigation>.nav-link,
.nav-link {
    position: relative;
    display: flex !important;
    align-items: center !important;
    justify-content: center;
    height: 100% !important;
    min-width: max-content !important;
    white-space: nowrap !important;
    color: #111 !important;
    font-family: "DM Sans", Arial, sans-serif !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    line-height: 1.2 !important;
    letter-spacing: .11em !important;
    text-transform: uppercase !important;
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-gold-dark) !important;
}

.nav-link::after {
    bottom: 17px !important;
    background: var(--color-gold) !important;
}

/* Dropdown must be positioned from its navigation area */
.main-navigation>.nav-dropdown {
    z-index: 6000 !important;
}

.nav-dropdown {
    background: #fff !important;
    border: 1px solid rgba(201, 162, 39, .28) !important;
    box-shadow: 0 20px 55px rgba(0, 0, 0, .12) !important;
}

.nav-dropdown a {
    color: #111 !important;
    border-bottom: 1px solid rgba(17, 17, 17, .07) !important;
}

.nav-dropdown a:hover {
    background: #faf7ee !important;
    color: var(--color-gold-dark) !important;
}

.nav-dropdown a small {
    color: #141414 !important;
}

/* ---------- HEADER CTA ---------- */
.header-actions {
    display: flex !important;
    align-items: center !important;
    gap: 14px !important;
    flex: 0 0 auto !important;
}

.header-inquiry-btn {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 14px;
    min-width: 150px;
    min-height: 48px;
    padding: 0 18px !important;
    background: var(--color-gold) !important;
    color: #111 !important;
    border: 1px solid var(--color-gold) !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    letter-spacing: .10em !important;
    text-transform: uppercase;
}

.header-inquiry-btn:hover {
    background: #111 !important;
    color: #fff !important;
}

/* ---------- MOBILE MENU MUST NOT SHOW ON DESKTOP ---------- */
.mobile-menu {
    position: fixed !important;
    inset: 0 !important;
    z-index: 7000 !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
    transform: translateY(-20px) !important;
    background: #111 !important;
}

.mobile-menu.active {
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    transform: translateY(0) !important;
}

/* Never let desktop navigation become the full-screen mobile overlay */
@media (min-width:1025px) {

    .mobile-menu,
    .mobile-navigation {
        position: static !important;
    }

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

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

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

/* =========================================================
   HERO — EXACT ZAR CLASSES
========================================================= */
.zar-hero {
    position: relative !important;
    width: 100% !important;
    min-height: calc(100vh - 88px) !important;
    margin-top: 88px !important;
    display: flex !important;
    align-items: center !important;
    overflow: hidden !important;
    background:
        radial-gradient(circle at 72% 48%, rgba(201, 162, 39, .12), transparent 27%),
        radial-gradient(circle at 30% 75%, rgba(201, 162, 39, .045), transparent 32%),
        #fff !important;
    color: #111 !important;
}

.zar-hero::before {
    background-image:
        linear-gradient(rgba(17, 17, 17, .035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(17, 17, 17, .035) 1px, transparent 1px) !important;
    background-size: 72px 72px !important;
    opacity: .55 !important;
}

.zar-hero::after {
    background: radial-gradient(circle,
            rgba(201, 162, 39, .13),
            rgba(201, 162, 39, .035) 38%,
            transparent 70%) !important;
}

.zar-hero-inner {
    position: relative !important;
    width: min(1500px, calc(100% - 80px)) !important;
    min-height: calc(100vh - 88px) !important;
    margin: 0 auto !important;
    display: flex !important;
    align-items: center !important;
    z-index: 2 !important;
}

.zar-hero-content {
    position: relative !important;
    width: 44% !important;
    max-width: 650px !important;
    z-index: 6 !important;
    transform: none !important;
}

.zar-hero-location {
    color: var(--color-gold-dark) !important;
}

.zar-hero-location::before {
    background: var(--color-gold) !important;
}

.zar-hero-title {
    max-width: 620px !important;
    color: #111 !important;
    font-family: "Playfair Display", Georgia, serif !important;
    font-size: clamp(58px, 5.3vw, 88px) !important;
    line-height: .94 !important;
    letter-spacing: -.045em !important;
    margin: 0 !important;
}

.zar-hero-title .gold {
    color: var(--color-gold-dark) !important;
}

.zar-hero-description {
    color: #666 !important;
}

.zar-hero-actions {
    display: flex !important;
    align-items: center !important;
    gap: 24px !important;
    margin-top: 35px !important;
}

.zar-hero-primary {
    background: var(--color-gold) !important;
    color: #111 !important;
    border-color: var(--color-gold) !important;
}

.zar-hero-secondary {
    color: #111 !important;
}

.zar-hero-secondary:hover {
    color: var(--color-gold-dark) !important;
}

.zar-hero-secondary span:last-child {
    color: var(--color-gold-dark) !important;
}

/* ---------- GOLD ORB ---------- */
.zar-hero-orb-wrap {
    position: absolute !important;
    width: min(43vw, 620px) !important;
    aspect-ratio: 1 !important;
    right: 8% !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    z-index: 2 !important;
}

.zar-hero-orb-wrap::before {
    background: radial-gradient(circle,
            rgba(201, 162, 39, .13),
            transparent 66%) !important;
}

.zar-hero-orb {
    background: radial-gradient(circle at 38% 27%,
            #f6d67c 0%,
            #dfb752 18%,
            #bc8627 55%,
            #795315 100%) !important;
    box-shadow:
        inset -45px -50px 100px rgba(35, 20, 3, .30),
        inset 25px 20px 65px rgba(255, 238, 169, .30),
        0 0 80px rgba(196, 147, 48, .13) !important;
}

/* ---------- HERO MARQUEE ---------- */
.zar-marquee {
    position: absolute !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 20% !important;
    z-index: 4 !important;
    overflow: hidden !important;
}

.zar-marquee-track {
    display: flex !important;
    width: max-content !important;
    gap: 46px !important;
}

.zar-marquee-item {
    color: #fff !important;
    background: #111;
    padding: 11px 0;
    font-size: 10px !important;
    letter-spacing: .18em !important;
}

.zar-marquee-star {
    color: var(--color-gold-bright) !important;
}

.zar-scroll-indicator {
    color: #777 !important;
}

.zar-scroll-line {
    background: linear-gradient(90deg, transparent, var(--color-gold)) !important;
}

.zar-hero-side-label {
    color: #999 !important;
}

/* =========================================================
   COMMON LIGHT SECTIONS
========================================================= */
.zar-section {
    background: #fff !important;
    color: #222 !important;
}

.zar-section-title {
    color: #111 !important;
}

.zar-section-title em {
    color: var(--color-gold-dark) !important;
}

.zar-eyebrow {
    color: var(--color-gold-dark) !important;
}

.zar-eyebrow::before {
    background: var(--color-gold) !important;
}

/* =========================================================
   GOLD TICKER
========================================================= */
.gold-ticker {
    background: #111 !important;
    border-color: var(--color-gold) !important;
}

.ticker-item {
    color: var(--color-gold-bright) !important;
}

/* =========================================================
   IMAGE FEATURE
========================================================= */
.image-feature {
    background: #f5f2ea !important;
}

.image-feature::after {
    background: linear-gradient(90deg,
            rgba(0, 0, 0, .35),
            rgba(0, 0, 0, .02)) !important;
}

/* =========================================================
   BULLION / JEWELLERY / DIAMONDS / WHY
========================================================= */
.bullion-section {
    background: #fff !important;
    color: #222 !important;
}

.bullion-content h2,
.jewellery-content h2,
.jewellery-feature-content h2,
.diamond-content h2 {
    color: #111 !important;
}

.bullion-content>p,
.jewellery-content p,
.jewellery-feature-content p,
.diamond-content p {
    color: #666 !important;
}

.bullion-visual {
    background: #faf9f5 !important;
    border-color: rgba(201, 162, 39, .25) !important;
}

.jewellery-section,
.jewellery-feature,
.why-section {
    background: #faf9f5 !important;
    color: #222 !important;
}

.why-card {
    background: #fff !important;
}

/* =========================================================
   MOBILE — CLEAN AND SAFE
========================================================= */
@media (max-width:1024px) {

    .main-navigation,
    .header-inquiry-btn {
        display: none !important;
    }

    .menu-toggle {
        display: flex !important;
    }

    .header-inner {
        width: calc(100% - 40px) !important;
    }

    .zar-hero {
        margin-top: 76px !important;
        min-height: calc(100svh - 76px) !important;
    }

    .zar-hero-inner {
        min-height: calc(100svh - 76px) !important;
        width: 100% !important;
        padding: 75px 22px 90px !important;
        display: block !important;
    }

    .zar-hero-content {
        width: 100% !important;
        max-width: 600px !important;
    }

    .zar-hero-title {
        max-width: 500px !important;
        font-size: clamp(46px, 8vw, 70px) !important;
    }

    .zar-hero-orb-wrap {
        width: 55vw !important;
        right: -7% !important;
        opacity: .72 !important;
    }

    .zar-marquee {
        bottom: 12% !important;
    }
}

@media (max-width:767px) {
    .site-header {
        height: 100px !important;
    }

    .site-header.scrolled {
        height: 100px !important;
    }

    .site-logo {
        width: 125px !important;
    }

    .header-inner {
        width: calc(100% - 32px) !important;
    }

    .zar-hero {
        margin-top: 76px !important;
        min-height: calc(100svh - 76px) !important;
    }

    .zar-hero-inner {
        min-height: calc(100svh - 76px) !important;
        padding: 70px 22px 90px !important;
    }

    .zar-hero-title {
        max-width: 330px !important;
        font-size: clamp(46px, 13vw, 62px) !important;
        line-height: .90 !important;
    }

    .zar-hero-description {
        max-width: 320px !important;
        font-size: 12px !important;
        line-height: 1.75 !important;
    }

    .zar-hero-actions {
        gap: 18px !important;
        margin-top: 28px !important;
        flex-wrap: wrap !important;
    }

    .zar-hero-orb-wrap {
        width: 82vw !important;
        right: -19% !important;
        top: 55% !important;
        opacity: .62 !important;
        z-index: 1 !important;
    }

    .zar-marquee {
        bottom: 17% !important;
    }

    .zar-marquee-item {
        font-size: 9px !important;
    }

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

    .mobile-menu-inner {
        padding: 100px 22px 22px !important;
    }

    .mobile-menu-top,
    .mobile-navigation,
    .mobile-menu-bottom {
        display: flex !important;
    }

    .mobile-navigation {
        flex-direction: column !important;
    }

    .mobile-navigation a {
        color: #fff !important;
    }

    .mobile-nav-text {
        color: #fff !important;
    }

    .mobile-menu-location {
        color: rgba(255, 255, 255, .45) !important;
    }

    .mobile-inquiry-btn {
        background: var(--color-gold) !important;
        color: #111 !important;
    }
}

@media (max-width:420px) {
    .zar-hero-title {
        font-size: 43px !important;
    }

    .zar-hero-orb-wrap {
        top: 58% !important;
    }
}

/* =========================================================
   FINAL SAFETY: REMOVE OLD DARK BODY COLORS
========================================================= */
body,
html,
.home-page,
.zar-hero,
.zar-section,
.brand-intro,
.services-section,
.bullion-section,
.jewellery-section,
.jewellery-feature,
.diamond-section,
.why-section,
.dubai-section,
.contact-section,
.inquiry-strip {
    background-color: #fff;
}