/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* SPR Gems - New Color Palette */
    --platinum: #e8e9e8;
    --isabelline: #eeeeeb;
    --space-cadet: #33325a;
    --powder-blue: #a0c0e6;
    --platinum-2: #e7e7e7;

    /* Primary brand colors using new palette */
    --navy-primary: var(--space-cadet);
    --navy-dark: #2a2948;
    --sapphire-blue: var(--powder-blue);
    --sapphire-light: #b8d4ed;
    --ceylon-gold: #8a9bb3;
    --ceylon-gold-dark: #7a8aa0;
    --white: #FFFFFF;
    --light-bg: var(--isabelline);
    --text-dark: var(--space-cadet);
    --text-gray: #6a6985;
    --border-color: var(--platinum);
    --secondary-bg: var(--platinum-2);

    /* Legacy variable mappings for compatibility */
    --gold: var(--ceylon-gold);
    --dark-gold: var(--ceylon-gold-dark);
    --dark-bg: var(--navy-primary);
    --darker-bg: var(--navy-dark);

    /* Spacing System */
    --section-spacing: 100px;
    --section-spacing-small: 60px;

    /* Container Widths */
    --container-width: 1200px;
    --container-width-wide: 1400px;

    /* Global Gutters */
    --page-padding: 50px;
    --page-padding-mobile: 24px;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-dark);
    font-size: 16px;
    line-height: 1.7;
    overflow-x: hidden;
}

/* Utility: remove horizontal padding when needed */
.full-bleed {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

/* Utility: standard horizontal gutters for inner content */
.content-gutters {
    padding-left: var(--page-padding);
    padding-right: var(--page-padding);
}

/* Shared inner wrapper to keep content inset while sections span full width */
.section-inner {
    width: 100%;
    max-width: 100%;
    padding: 0 var(--page-padding);
    margin: 0 auto;
    height: 100%;
}

h1, h2, h3, h4 {
    font-family: 'Cinzel', serif;
    font-weight: 600;
    line-height: 1.3;
}

h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 24px;
}

h2 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 20px;
}

h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 18px;
}

h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
}

/* Header */
.header {
    background: var(--white);
    border-bottom: 1px solid var(--border-color);
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 50px;
    font-size: 11px;
    border-bottom: 1px solid var(--border-color);
}

.nav-left, .nav-right {
    display: flex;
    gap: 20px;
    align-items: center;
}

.nav-left a, .nav-right span {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    cursor: pointer;
    transition: color 0.3s;
}

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

.nav-left a.active {
    color: var(--gold);
    font-weight: 600;
}

.language-select {
    border: none;
    background: transparent;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    cursor: pointer;
}

.logo-container {
    display: flex;
    justify-content: center;
    padding: 30px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    cursor: pointer;
}

.logo-image-link {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.main-logo {
    height: 80px;
    width: auto;
    max-width: 250px;
    object-fit: contain;
}

.footer-logo-img {
    height: 60px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    margin-bottom: 20px;
}

.logo-letter {
    font-family: 'Cinzel', serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--text-dark);
    border: 3px solid var(--text-dark);
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.logo-text {
    font-family: 'Cinzel', serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: 1px;
}

.main-nav {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 15px 0;
    background: var(--white);
    border-top: 1px solid var(--border-color);
}

.main-nav a {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: color 0.3s;
    position: relative;
}

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

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

.main-nav a.active::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gold);
}

/* Hero Section */
.hero {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero .section-inner {
    position: relative;
    height: 100%;
}

.hero-image {
    position: absolute;
    left: 0;
    top: 0;
    width: 60%;
    height: 100%;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: absolute;
    right: 0;
    top: 0;
    width: 40%;
    height: 100%;
    background: var(--dark-bg);
    display: flex;
    align-items: center;
    padding: 60px;
}

.hero-badge {
    position: absolute;
    left: -30px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    cursor: pointer;
}

.hero-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: var(--white);
    letter-spacing: 2px;
}

.hero-text p {
    color: var(--white);
    margin-bottom: 30px;
    line-height: 1.8;
    font-size: 16px;
}

.btn-primary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    padding: 12px 30px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-primary:hover {
    background: var(--white);
    color: var(--dark-bg);
}

/* Partners */
.partners {
    background: var(--darker-bg);
    padding: 30px 0;
}

.partner-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    width: 100%;
    max-width: 100%;
}

.partner-logo {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: 16px;
    color: var(--white);
    letter-spacing: 2px;
}

/* Expert Section */
.expert-section {
    width: 100%;
    max-width: 100%;
    margin: 0 0 var(--section-spacing);
    padding: 50px 0;
    text-align: center;
}

.section-header h2 {
    font-size: 28px;
    margin-bottom: 24px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.section-header p {
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.8;
}

.video-container {
    max-width: 800px;
    margin: 0 auto;
}

.video-placeholder {
    position: relative;
    width: 100%;
    height: 450px;
    background: var(--secondary-bg);
    border-radius: 8px;
    overflow: hidden;
}

.video-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    cursor: pointer;
    transition: transform 0.3s;
}

.play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

/* Services and Investment */
.services-investment {
    width: 100%;
    max-width: 100%;
    margin: 0;
}

.services-side {
    background: var(--dark-gold);
    padding: 0;
}

.services-content {
    height: 100%;
}

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

.services-info {
    background: var(--gold);
    padding: 60px;
    color: var(--white);
}

.services-info h3 {
    font-size: 24px;
    margin-bottom: 30px;
    letter-spacing: 2px;
}

.services-info ul {
    list-style: none;
    margin-bottom: 40px;
}

.services-info ul li {
    padding: 12px 0;
    padding-left: 20px;
    position: relative;
    font-size: 16px;
    line-height: 1.7;
}

.services-info ul li:before {
    content: "•";
    position: absolute;
    left: 0;
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    padding: 12px 30px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--gold);
}

.investment-section {
    width: 100%;
    max-width: 100%;
    margin: 0;
}

.investment-info {
    background: var(--dark-bg);
    padding: 60px;
    color: var(--white);
}

.investment-info h3 {
    font-size: 24px;
    margin-bottom: 30px;
    letter-spacing: 2px;
}

.investment-info ul {
    list-style: none;
    margin-bottom: 40px;
}

.investment-info ul li {
    padding: 12px 0;
    padding-left: 20px;
    position: relative;
    font-size: 16px;
    line-height: 1.7;
}

.investment-info ul li:before {
    content: "•";
    position: absolute;
    left: 0;
}

.investment-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Two-column section grids use the inner wrapper for layout */
.services-investment .section-inner,
.investment-section .section-inner,
.wearable-investment .section-inner,
.mission-section .section-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

/* Discover Gemstones */
.discover-gemstones {
    width: 100%;
    max-width: 100%;
    margin: 0 0 var(--section-spacing);
    padding: 50px 0;
    text-align: center;
}

.discover-gemstones h2 {
    font-size: 32px;
    margin-bottom: 24px;
    letter-spacing: 2px;
}

.discover-gemstones > p {
    max-width: 800px;
    margin: 0 auto 60px;
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.8;
}

.gemstone-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 50px;
    margin-bottom: 50px;
    justify-items: center;
    align-items: start;
}

.gemstone-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.gemstone-image {
    width: 130px;
    height: 130px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: transform 0.3s ease;
}

.gemstone-image:hover {
    transform: scale(1.05);
}

.gem-shape {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.3);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    animation: rotate 10s linear infinite;
}

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

.gemstone-item p {
    font-size: 15px;
    font-weight: 500;
    margin: 0;
}

.btn-outline {
    background: transparent;
    color: var(--text-dark);
    border: 2px solid var(--text-dark);
    padding: 12px 30px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-outline:hover {
    background: var(--text-dark);
    color: var(--white);
}

/* Press Partners */
.press-partners {
    background: var(--gold);
    padding: 30px 0;
    margin: 0 0 var(--section-spacing);
}

.press-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    width: 100%;
    max-width: 100%;
    flex-wrap: wrap;
}

.press-logos span {
    font-family: 'Cinzel', serif;
    font-weight: 600;
    font-size: 14px;
    color: var(--white);
}

/* Investment Style */
.investment-style {
    width: 100%;
    max-width: 100%;
    margin: 0 0 var(--section-spacing);
    padding: 0;
    text-align: center;
}

.investment-style h2 {
    font-size: 28px;
    margin-bottom: 50px;
    letter-spacing: 2px;
}

.investment-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 50px;
}

.investment-item h4 {
    font-size: 20px;
    margin-bottom: 16px;
}

.investment-item p {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.8;
}

/* Knowledge Section */
.knowledge-section {
    width: 100%;
    max-width: 100%;
    margin: 0 0 var(--section-spacing);
    padding: 0;
}

.knowledge-section h2 {
    font-size: 28px;
    text-align: center;
    margin-bottom: 50px;
    letter-spacing: 2px;
}

.knowledge-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.knowledge-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    overflow: hidden;
    transition: transform 0.3s;
}

.knowledge-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.card-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gem-large {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.4);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.knowledge-card h4 {
    padding: 30px 25px 20px;
    font-size: 16px;
    line-height: 1.6;
    min-height: 100px;
}

.btn-small {
    background: transparent;
    color: var(--text-dark);
    border: 2px solid var(--text-dark);
    padding: 10px 25px;
    margin: 0 25px 30px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 11px;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-small:hover {
    background: var(--text-dark);
    color: var(--white);
}

/* Wearable Investment */
.wearable-investment {
    width: 100%;
    max-width: 100%;
    margin: 0;
    background: var(--dark-bg);
}

.wearable-content {
    padding: 60px;
    color: var(--white);
}

.wearable-content h2 {
    font-size: 32px;
    margin-bottom: 24px;
    letter-spacing: 2px;
}

.wearable-content > p {
    margin-bottom: 30px;
    font-size: 16px;
    line-height: 1.8;
}

.wearable-content ul {
    list-style: none;
}

.wearable-content ul li {
    padding: 12px 0;
    padding-left: 20px;
    position: relative;
    font-size: 16px;
    line-height: 1.7;
}

.wearable-content ul li:before {
    content: "•";
    position: absolute;
    left: 0;
}

.wearable-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Mission Section */
.mission-section {
    width: 100%;
    max-width: 100%;
    margin: 0;
}

.mission-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mission-content {
    background: var(--gold);
    padding: 60px;
    color: var(--white);
}

.mission-content h2 {
    font-size: 32px;
    margin-bottom: 24px;
    letter-spacing: 2px;
}

.mission-content > p {
    margin-bottom: 30px;
    font-size: 16px;
    font-style: italic;
    line-height: 1.8;
}

.mission-content ul {
    list-style: none;
}

.mission-content ul li {
    padding: 12px 0;
    padding-left: 20px;
    position: relative;
    font-size: 16px;
    line-height: 1.7;
}

.mission-content ul li:before {
    content: "•";
    position: absolute;
    left: 0;
}

/* Footer */
.footer {
    background: var(--darker-bg);
    color: var(--white);
    padding: 30px 50px 15px;
}

.footer-content {
    max-width: var(--container-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    margin-bottom: 20px;
}

.footer-logo .logo {
    margin-bottom: 20px;
}

.footer-logo .logo-letter {
    border-color: var(--white);
    color: var(--white);
}

.footer-logo .logo-text {
    color: var(--white);
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 35px;
    height: 35px;
    border: 1px solid var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s;
}

.social-icons a:hover {
    background: var(--white);
    color: var(--darker-bg);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column h4 {
    font-size: 14px;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.footer-column a {
    display: block;
    color: var(--platinum);
    text-decoration: none;
    font-size: 13px;
    margin-bottom: 10px;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: var(--white);
}

.footer-column p {
    color: var(--platinum);
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 10px;
}

.payment-methods {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 15px 0;
    border-top: 1px solid var(--text-gray);
    border-bottom: 1px solid var(--text-gray);
}

.payment-methods img {
    height: 25px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.7;
}

.footer-bottom {
    text-align: center;
    padding-top: 12px;
}

.footer-bottom p {
    font-size: 11px;
    color: var(--platinum-2);
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background: #f5f6f7;
    color: var(--text-dark);
    font-size: 22px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    flex-shrink: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .gemstone-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .services-investment .section-inner,
    .investment-section .section-inner,
    .wearable-investment .section-inner,
    .mission-section .section-inner {
        grid-template-columns: 1fr;
    }

    .hero-image {
        width: 100%;
    }

    .hero-content {
        position: relative;
        width: 100%;
        margin-top: -100px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-spacing: 48px;
        --section-spacing-small: 28px;
        --page-padding: var(--page-padding-mobile);
    }

    /* Mobile Header Adjustments */
    .header-top {
        padding: 12px 16px;
        min-height: 64px;
        gap: 12px;
    }

    .nav-left {
        display: none;
    }

    .nav-right {
        gap: 12px;
        margin-left: auto;
        align-items: center;
    }

    .nav-right a[href="account.html"] {
        display: none;
    }

    /* Mobile Navigation */
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: 80px 30px 30px;
        gap: 25px;
        box-shadow: -5px 0 20px rgba(0,0,0,0.1);
        transition: right 0.3s ease;
        z-index: 999;
        overflow-y: auto;
        align-items: flex-start;
    }

    .main-nav.mobile-open {
        right: 0;
    }

    .main-nav a {
        font-size: 14px;
        padding: 10px 0;
        width: 100%;
        border-bottom: 1px solid var(--border-color);
    }

    /* Mobile Menu Toggle */
    .mobile-menu-toggle {
        display: block !important;
        order: -1;
        margin-right: 0;
        box-shadow: 0 4px 10px rgba(0,0,0,0.12);
    }

    /* Mobile Overlay */
    .main-nav.mobile-open::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.5);
        z-index: -1;
    }

    /* Logo adjustments */
    .main-logo {
        height: 60px;
    }

    .logo-container {
        padding: 20px 0;
    }

    /* Content sections */
    .knowledge-grid,
    .investment-content,
    .footer-links {
        grid-template-columns: 1fr;
    }

    .gemstone-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

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

    /* Hero adjustments */
    .hero {
        height: auto;
        display: block;
        overflow: visible;
    }

    .hero-image {
        position: relative;
        width: 100%;
        height: 320px;
    }

    .hero-content {
        position: relative;
        width: 100%;
        height: auto;
        padding: 48px 24px 40px;
        align-items: center;
        text-align: center;
    }

    .hero-badge {
        left: 50%;
        top: -30px;
        transform: translate(-50%, 0);
        width: 64px;
        height: 64px;
        box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    }

    .hero-text h2 {
        font-size: 24px;
    }

    .hero-text p {
        font-size: 13px;
    }

    /* Section spacing adjustments */
    .expert-section,
    .discover-gemstones,
    .knowledge-section,
    .investment-style,
    .services-investment,
    .investment-section,
    .wearable-investment,
    .mission-section,
    .press-partners {
        margin: 0 0 24px;
    }

    .press-partners {
        margin: 0 0 24px;
    }

    .services-side,
    .services-info,
    .investment-info,
    .wearable-content,
    .mission-content {
        padding: 40px 25px;
    }

    /* Footer mobile adjustments */
    .footer {
        padding: 25px 20px 12px;
    }

    .footer-content {
        gap: 30px;
        margin-bottom: 15px;
    }

    .footer-column h4 {
        font-size: 13px;
        margin-bottom: 15px;
    }

    .footer-column a,
    .footer-column p {
        font-size: 12px;
    }

    /* Typography mobile adjustments */
    h1 {
        font-size: 32px;
    }

    h2 {
        font-size: 26px;
    }

    h3 {
        font-size: 20px;
    }

    h4 {
        font-size: 16px;
    }

    body {
        font-size: 15px;
    }

    /* Gemstone grid mobile */
    .gemstone-image {
        width: 100px;
        height: 100px;
        margin-bottom: 15px;
    }

    .gemstone-item p {
        font-size: 13px;
    }
}
