:root {
    --gold: #D4AF37;       /* main brand */
    --gold-soft: rgba(212, 175, 55, 0.45);
    --bg-dark: #050608;
    --bg-card: rgba(10, 12, 18, 0.9);
    --text-main: #f9f2da;
    --text-muted: #b7b3a0;
    --border-radius-circle: 999px;
    --shadow-gold: 0 0 25px rgba(212, 175, 55, 0.35);
}

/* GLOBAL RESET -------------------------------------------------- */

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html,
body {
    height: 100%;
}

body {
    font-family: 'Poppins', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    background: radial-gradient(circle at top, #12121c 0, #050608 45%, #020308 100%);
    color: var(--text-main);
    overflow-x: hidden;
}


/* HEADER -------------------------------------------------------- */

.rij-header {
    position: fixed;
    inset-inline: 0;
    top: 0;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.2rem 6vw;
    background: linear-gradient(to bottom, rgba(5, 6, 8, 0.95), rgba(5, 6, 8, 0.2));
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.18);
}

.rij-logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
}

.rij-logo-text span {
    color: var(--text-main);
}

.rij-nav {
    display: flex;
    gap: 1.7rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
}

.rij-nav a {
    color: var(--text-muted);
    text-decoration: none;
    position: relative;
    padding-block: 0.2rem;
    transition: color 0.2s ease;
}

.rij-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.15rem;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    transition: width 0.25s ease;
}

.rij-nav a:hover {
    color: var(--text-main);
}

.rij-nav a:hover::after {
    width: 100%;
}

/* HERO ---------------------------------------------------------- */

.rij-hero {
    min-height: 100vh;
    padding: 6rem 6vw 4rem;
    position: relative;
    isolation: isolate;
}

/* subtle big circles in background */
.hero-bg-overlay::before,
.hero-bg-overlay::after {
    content: "";
    position: fixed;
    border-radius: 999px;
    filter: blur(70px);
    opacity: 0.6;
    pointer-events: none;
    z-index: -2;
}

.hero-bg-overlay::before {
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, var(--gold-soft), transparent 70%);
    top: -80px;
    right: 4vw;
}

.hero-bg-overlay::after {
    width: 360px;
    height: 360px;
    background: radial-gradient(circle, rgba(120, 110, 255, 0.5), transparent 70%);
    bottom: -40px;
    left: -40px;
}

.hero-content {
    margin-top: 3.5rem;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    gap: clamp(2.5rem, 4vw, 4rem);
    align-items: center;
}

/* TEXT SIDE ----------------------------------------------------- */

.hero-text h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.4rem, 3.3vw + 1.2rem, 3.7rem);
    line-height: 1.1;
}

.hero-text h1 span {
    color: var(--gold);
    text-shadow: 0 0 18px rgba(212, 175, 55, 0.4);
}

.hero-text p {
    margin-top: 1.2rem;
    max-width: 32rem;
    color: var(--text-muted);
    font-size: 0.98rem;
}

.hero-cta {
    margin-top: 1.9rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.btn-gold,
.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1.9rem;
    border-radius: 999px;
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: pointer;
    border: 1px solid transparent;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.btn-gold {
    background: linear-gradient(135deg, #f3d38b, var(--gold), #c49b24);
    color: #080706;
    box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 35px rgba(212, 175, 55, 0.55);
}

.btn-outline {
    background: transparent;
    border-color: rgba(212, 175, 55, 0.45);
    color: var(--text-main);
}

.btn-outline:hover {
    background: rgba(212, 175, 55, 0.06);
    box-shadow: 0 0 18px rgba(212, 175, 55, 0.3);
}

.btn-gold.big {
    padding-inline: 2.7rem;
}

/* ORBIT --------------------------------------------------------- */

.hero-orbit {
    position: relative;
    width: min(460px, 80vw);
    aspect-ratio: 1 / 1;
    margin-inline: auto;
    border-radius: 50%;
    display: grid;
    place-items: center;
}

.hero-orbit::before {
    content: "";
    position: absolute;
    inset: 16%;
    border-radius: 50%;
    border: 1px dashed rgba(212, 175, 55, 0.32);
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.6);
}

/* shared circle style */
.orbit-item {
    position: absolute;
    width: 30%;
    aspect-ratio: 1 / 1;
    border-radius: 999px;
    background: radial-gradient(circle at 20% 0%, #fce9b0 0, #f6d789 12%, #b2821c 55%, #100b06 100%);
    box-shadow: var(--shadow-gold);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fef5dd;
    text-align: center;
    padding: 0.4rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    overflow: hidden;
}

/* subtle glossy highlight */
.orbit-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 10% 0%, rgba(255, 255, 255, 0.45), transparent 60%);
    mix-blend-mode: soft-light;
    opacity: 0.3;
    pointer-events: none;
}

/* center logo is bigger */
.orbit-center {
    position: relative;
    width: 46%;
    z-index: 2;
    background: radial-gradient(circle at 20% 0%, #ffffff 0, #f9f7f0 40%, #c09e37 100%);
    color: #4c3608;
}

.orbit-center .brand-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.7rem;
    letter-spacing: 0.12em;
}

.orbit-center .brand-sub {
    font-size: 0.85rem;
    letter-spacing: 0.26em;
    text-transform: uppercase;
}

/* smaller brands */
.brand-title {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.brand-sub {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    opacity: 0.95;
}

.brand-icon {
    font-size: 1.4rem;
    margin-bottom: 0.25rem;
}

/* positions around the circle */
.orbit-1 { top: 4%;   left: 50%; transform: translateX(-50%); }
.orbit-2 { top: 24%;  right: 0%;  transform: translateX(15%); }
.orbit-3 { bottom: 16%; right: 6%; }
.orbit-4 { bottom: 0%; left: 50%; transform: translate(-50%, 10%); }
.orbit-5 { bottom: 16%; left: 6%; }
.orbit-6 { top: 24%; left: 0%; transform: translateX(-15%); }

/* ANIMATIONS ---------------------------------------------------- */

@keyframes float {
    0%, 100% { transform: translateY(0) scale(1); }
    50%      { transform: translateY(-8px) scale(1.02); }
}

@keyframes shimmer {
    0%   { box-shadow: 0 0 18px rgba(212, 175, 55, 0.35); }
    50%  { box-shadow: 0 0 32px rgba(212, 175, 55, 0.7); }
    100% { box-shadow: 0 0 18px rgba(212, 175, 55, 0.35); }
}

.float {
    animation: float 5s ease-in-out infinite;
}

.float.delay-1 { animation-delay: 0.5s; }
.float.delay-2 { animation-delay: 1s; }
.float.delay-3 { animation-delay: 1.5s; }
.float.delay-4 { animation-delay: 2s; }
.float.delay-5 { animation-delay: 2.5s; }

.shimmer {
    animation: shimmer 3s ease-in-out infinite;
}

/* hover glow */
.orbit-item:hover {
    transform: none !important;        /* no movement */
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.9); /* glow only */
    cursor: pointer;
}


/* BRAND STRIP --------------------------------------------------- */

.brand-strip {
    margin-top: 4rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
}

.brand-strip-item {
    padding: 0.9rem 1.1rem;
    border-radius: 999px;
    border: 1px solid rgba(212, 175, 55, 0.28);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.14), rgba(1, 1, 3, 0.8));
    font-size: 0.82rem;
    text-align: center;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
/* MOBILE SPACING FIX */

/* CONTACT ------------------------------------------------------- */

.contact-section {
    margin-top: 4rem;
    text-align: center;
    max-width: 44rem;
    margin-inline: auto;
    padding: 2.5rem 1.5rem 0;
}

.contact-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.7rem;
    margin-bottom: 0.9rem;
}

.contact-section p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.8rem;
}

/* RESPONSIVE ---------------------------------------------------- */

@media (max-width: 900px) {
    .rij-header {
        padding-inline: 5vw;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text p {
        margin-inline: auto;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-orbit {
        margin-top: 2rem;
    }
}


/* Make logos fill the orbit circles perfectly */
.orbit-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;      /* fills the circle */
    object-position: center;
    border-radius: 50%;     /* keeps round shape */
    display: block;
}

/* Remove extra padding so images fill the circle edge-to-edge */
.orbit-item {
    padding: 0 !important;
}
/* RESPONSIVE + MOBILE MENU -------------------------------------- */

.rij-menu-toggle {
    display: none;
    position: relative;
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 999px;
    border: 1px solid rgba(212, 175, 55, 0.4);
    background: radial-gradient(circle at 20% 0%, #fce9b0 0, #b2821c 55%, #050608 100%);
    box-shadow: var(--shadow-gold);
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
}

.rij-menu-toggle span {
    position: absolute;
    width: 56%;
    height: 2px;
    background: #080706;
    border-radius: 999px;
    transition: transform 0.2s ease, opacity 0.2s ease, top 0.2s ease, bottom 0.2s ease;
}

.rij-menu-toggle span:first-child {
    top: 40%;
}

.rij-menu-toggle span:last-child {
    bottom: 40%;
}

/* X state */
.rij-menu-toggle.open span:first-child {
    top: 50%;
    transform: rotate(45deg);
}

.rij-menu-toggle.open span:last-child {
    bottom: 50%;
    transform: rotate(-45deg);
}

/* Mobile nav panel */
.rij-nav-mobile {
    position: fixed;
    top: 4.3rem; /* just below header */
    right: 6vw;
    left: 6vw;
    z-index: 40;
    background: var(--bg-card);
    border-radius: 1.2rem;
    border: 1px solid rgba(212, 175, 55, 0.35);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.65);
    padding: 0.8rem 1.1rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    transform: translateY(-16px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.18s ease, transform 0.18s ease;
}

.rij-nav-mobile a {
    color: var(--text-main);
    text-decoration: none;
    font-size: 0.86rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    padding: 0.6rem 0.4rem;
    border-radius: 999px;
    display: block;
    border: 1px solid transparent;
    transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.rij-nav-mobile a:hover {
    background: rgba(212, 175, 55, 0.08);
    border-color: rgba(212, 175, 55, 0.35);
}

/* open state */
.rij-nav-mobile.open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/* RESPONSIVE ---------------------------------------------------- */

@media (max-width: 900px) {
    .rij-header {
        padding-inline: 5vw;
    }

    /* hide desktop nav on phone */
    .rij-nav {
        display: none;
    }

    /* show burger */
    .rij-menu-toggle {
        display: flex;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text p {
        margin-inline: auto;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-orbit {
        margin-top: 2rem;
    }
}
/* ========== ABOUT PAGE STYLING ========== */

.about-page {
    min-height: 100vh;
    padding: 7rem 6vw 4rem;
    position: relative;
}

.about-hero {
    display: flex;
    justify-content: center;
    margin-bottom: 2.5rem;
}

.about-hero-inner {
    text-align: center;
    max-width: 700px;
}

.about-badge {
    display: inline-block;
    padding: 0.25rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(212, 175, 55, 0.4);
    color: var(--gold);
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    background: rgba(212,175,55,0.1);
    margin-bottom: 0.6rem;
}

.about-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.4rem, 3vw + 1rem, 3.3rem);
    letter-spacing: 0.14em;
    margin-bottom: 0.6rem;
}

.about-lead {
    color: var(--text-muted);
    max-width: 35rem;
    margin: 0 auto;
}

/* GRID LAYOUT */
.about-content {
    margin-top: 2rem;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 2.2rem;
}

/* LEFT MAIN CARD */
.about-card {
    background: radial-gradient(circle at top left, rgba(212,175,55,0.18), rgba(5,6,10,0.98));
    border-radius: 1.8rem;
    border: 1px solid rgba(212,175,55,0.32);
    padding: 2.2rem;
    position: relative;
    overflow: hidden;
}

.about-body p {
    margin-bottom: 1rem;
    line-height: 1.7;
    font-size: 0.98rem;
}

.about-body p:first-of-type::first-letter {
    font-size: 2.9rem;
    font-family: 'Playfair Display', serif;
    float: left;
    padding-right: 0.4rem;
    color: var(--gold);
}

.about-quote {
    margin-top: 1.6rem;
    padding: 1.1rem 1.2rem;
    background: rgba(5,6,10,0.85);
    border-left: 3px solid var(--gold);
    border-radius: 1rem;
    font-style: italic;
}

/* RIGHT SIDE */
.about-side {
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
}

.about-pillars {
    padding: 1.6rem;
    border-radius: 1.5rem;
    background: rgba(10,12,18,0.98);
    border: 1px solid rgba(212,175,55,0.35);
}

.about-pillars h2 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 1rem;
}

.about-pillars ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.about-pillars li span {
    font-size: 0.9rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.about-pillars li small {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.about-orbit-card {
    padding: 1.6rem;
    border-radius: 1.5rem;
    background: rgba(5,6,10,0.95);
    border: 1px solid rgba(255,255,255,0.08);
}

.about-orbit-card h3 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 0.6rem;
}

.btn-gold.slim {
    padding: 0.7rem 1.4rem;
    font-size: 0.8rem;
}

/* ANIMATIONS */
.fade-in-up {
    animation: fadeUpSoft 0.9s ease-out both;
}
@keyframes fadeUpSoft {
    from {opacity: 0; transform: translateY(18px);}
    to {opacity: 1; transform: translateY(0);}
}

.glow-on-scroll {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.glow-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
}
.rij-logo-text {
    text-decoration: none !important;
}
/* ===========================
   LUXURY MOBILE MENU BUTTON
   =========================== */

.rij-menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(212,175,55,0.55);
    background: radial-gradient(circle at 20% 0%, #fce9b0 0%, #d4af37 55%, #b2821c 100%);
    box-shadow: 0 0 18px rgba(212,175,55,0.45), inset 0 0 8px rgba(0,0,0,0.55);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.rij-menu-toggle:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 0 30px rgba(212,175,55,0.75), inset 0 0 10px rgba(0,0,0,0.75);
}

/* The 3 bars */
.rij-menu-toggle span {
    position: absolute;
    left: 50%;
    width: 55%;
    height: 2px;
    background: #0a0703;
    border-radius: 99px;
    transform: translateX(-50%);
    transition: 0.35s ease;
}

.rij-menu-toggle span:nth-child(1) { top: 33%; }
.rij-menu-toggle span:nth-child(2) { top: 50%; }
.rij-menu-toggle span:nth-child(3) { top: 67%; }

/* OPEN STATE (X animation) */
.rij-menu-toggle.is-open span:nth-child(1) {
    top: 50%;
    transform: translateX(-50%) rotate(45deg);
}

.rij-menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
}

.rij-menu-toggle.is-open span:nth-child(3) {
    top: 50%;
    transform: translateX(-50%) rotate(-45deg);
}

/* SHOW ON MOBILE */
@media(max-width:900px){
    .rij-menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }
}
/* Mobile nav open style (same gold-dark theme on all pages) */
.nav-open {
    opacity: 1 !important;
    pointer-events: auto !important;
    transform: translateY(0) !important;
}

@media (max-width: 900px) {

    /* hide desktop inline nav text */
    .rij-nav {
        position: fixed;
        top: 4.3rem;
        right: 6vw;
        left: 6vw;
        background: var(--bg-card);
        border-radius: 1.2rem;
        border: 1px solid rgba(212, 175, 55, 0.38);
        box-shadow: 0 18px 40px rgba(0,0,0,0.65);
        padding: 0.9rem 1.1rem;
        flex-direction: column;
        align-items: stretch;
        gap: 0.45rem;
        opacity: 0;
        transform: translateY(-16px);
        pointer-events: none;
        transition: opacity 0.22s ease, transform 0.22s ease;
        z-index: 40;
    }

    .rij-nav a {
        color: var(--text-main);
        padding: 0.7rem 0.4rem;
        border-radius: 999px;
        border: 1px solid transparent;
        text-decoration: none;
    }

    .rij-nav a:hover {
        background: rgba(212,175,55,0.10);
        border-color: rgba(212,175,55,0.35);
    }

    /* when JS adds nav-open */
    .rij-nav.nav-open {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }

    /* show the burger only on mobile */
    .rij-menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }
}
/* DESKTOP — simple & elegant arrow RIGHT → */
.arrow-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 500;
}

.arrow-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    transition: 0.3s ease;
}

.arrow-circle svg {
    stroke: #080706;
    transition: 0.3s ease;
}

.arrow-btn:hover .arrow-circle {
    transform: translateX(5px);
}


/* MOBILE — arrow DOWN ↓ + gold glow + bounce */
@media (max-width: 768px) {

    .arrow-btn {
        justify-content: center;
        width: 100%;
        gap: 1rem;
    }

    .arrow-circle {
        width: 42px;
        height: 42px;
        background: radial-gradient(circle at 30% 20%, #f9d787, #d4af37, #a57f1e);
        box-shadow: 0 0 18px rgba(212,175,55,0.9), inset 0 0 10px rgba(0,0,0,0.5);
        animation: pulseDown 2.2s infinite ease-in-out;
        position: relative;
    }

    .arrow-circle::after {
        content: "";
        position: absolute;
        width: 65%;
        height: 65%;
        border-radius: 50%;
        background: radial-gradient(circle at 40% 20%, rgba(255,255,255,0.4), transparent);
        filter: blur(5px);
    }

    /* Rotate RIGHT arrow to become DOWN arrow */
    .arrow-circle svg {
        transform: rotate(90deg); /* ↓ */
        stroke: #000;
    }

    @keyframes pulseDown {
        0%   { transform: translateY(0) scale(1); }
        50%  { transform: translateY(5px) scale(1.08); }
        100% { transform: translateY(0) scale(1); }
    }
}
/* ===== LOGO HOVER EFFECT ===== */
.rij-logo-hover {
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.rij-logo-hover:hover {
    color: var(--gold);
    text-shadow: 0 0 10px rgba(212,175,55,0.7),
                 0 0 20px rgba(212,175,55,0.5);
}

.rij-logo-hover:hover span {
    color: #ffffff;
    text-shadow: 0 0 12px rgba(255,255,255,0.8);
}
