:root {
    --kivu-bg: #07111c;
    --kivu-bg-deep: #04101a;
    --kivu-panel: #0b1520;
    --kivu-gold: #d5a63e;
    --kivu-gold-light: #e7c56a;
    --kivu-teal: #0fa88a;
    --kivu-text: #f5f2ea;
    --kivu-muted: rgba(255,255,255,.70);
    --kivu-border: rgba(255,255,255,.10);
    --kivu-body: 'Inter', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --kivu-heading: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--kivu-bg);
    color: var(--kivu-text);
    font-family: var(--kivu-body);
    overflow-x: hidden;
}

body,
button,
input,
select,
textarea {
    font-family: var(--kivu-body);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--kivu-heading);
    letter-spacing: -.02em;
}

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

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

.premium-site-bg {
    min-height: 100vh;
    background:
        radial-gradient(circle at top left, rgba(213,166,62,.10), transparent 20%),
        radial-gradient(circle at bottom right, rgba(15,168,138,.10), transparent 24%),
        linear-gradient(to bottom, #06111b, #04101a);
}

.content-width {
    width: min(100% - 48px, 1280px);
    margin-inline: auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid var(--kivu-border);
    background: rgba(7,17,28,.92);
    backdrop-filter: blur(20px);
}

.site-header-inner {
    width: min(100% - 32px, 1280px);
    min-height: 84px;
    margin-inline: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.site-logo-wrap {
    position: relative;
    display: flex;
    align-items: center;
    max-width: 230px;
}

.site-logo {
    position: relative;
    z-index: 2;
    width: auto;
    height: 60px;
    max-width: 220px;
    object-fit: contain;
}

.logo-glow {
    pointer-events: none;
    position: absolute;
    z-index: 1;
    border-radius: 999px;
    filter: blur(18px);
}

.logo-glow-a {
    width: 118px;
    height: 82px;
    left: -8px;
    background: radial-gradient(circle, rgba(255,255,255,.30), transparent 75%);
}

.logo-glow-b {
    width: 132px;
    height: 58px;
    left: 66px;
    background: radial-gradient(circle, rgba(255,255,255,.20), transparent 78%);
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 26px;
}

.desktop-nav a {
    font-size: 14px;
    font-weight: 700;
    color: rgba(255,255,255,.94);
    transition: color .2s ease;
}

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

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

.gold-button,
.ghost-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    border-radius: 999px;
    padding: 11px 22px;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    transition:
        transform .2s ease,
        background .2s ease,
        border-color .2s ease;
}

.gold-button {
    border: 1px solid rgba(213,166,62,.30);
    background: linear-gradient(90deg, var(--kivu-gold), var(--kivu-gold-light));
    color: var(--kivu-bg);
    box-shadow: 0 14px 36px rgba(213,166,62,.18);
}

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

.ghost-button {
    border: 1px solid rgba(255,255,255,.15);
    background: rgba(255,255,255,.05);
    color: white;
}

.ghost-button:hover {
    background: rgba(255,255,255,.09);
}

.mobile-menu-button {
    display: none;
    width: 48px;
    height: 48px;
    border-radius: 16px;
    border: 1px solid var(--kivu-border);
    background: rgba(255,255,255,.04);
    padding: 0;
}

.mobile-menu-button span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 5px auto;
    border-radius: 2px;
    background: white;
}

.mobile-menu {
    border-top: 1px solid var(--kivu-border);
    background: var(--kivu-bg);
}

.mobile-menu nav {
    width: min(100% - 32px, 1280px);
    margin-inline: auto;
    padding: 14px 0 20px;
    display: grid;
    gap: 4px;
}

.mobile-menu a {
    border-radius: 12px;
    padding: 13px;
    color: rgba(255,255,255,.82);
}

.mobile-menu a:hover {
    background: rgba(255,255,255,.05);
    color: white;
}

.mobile-menu .mobile-quote {
    margin-top: 8px;
    text-align: center;
    color: var(--kivu-bg);
    font-weight: 700;
    background: linear-gradient(90deg, var(--kivu-gold), var(--kivu-gold-light));
}

.home-hero,
.page-hero {
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--kivu-border);
}

.home-hero {
    padding: 64px 0 72px;
}

.page-hero {
    padding: 64px 0;
    background: rgba(255,255,255,.02);
}

.home-hero-grid,
.two-column-hero {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 40px;
    align-items: center;
}

.hero-blob {
    pointer-events: none;
    position: absolute;
    border-radius: 999px;
}

.hero-blob-left {
    width: 480px;
    height: 480px;
    left: -150px;
    top: -40px;
    filter: blur(36px);
    background: radial-gradient(circle, rgba(15,168,138,.34), transparent 72%);
}

.hero-blob-right {
    width: 380px;
    height: 380px;
    right: -130px;
    top: 10px;
    filter: blur(30px);
    background: radial-gradient(circle, rgba(231,197,106,.26), transparent 74%);
}

.hero-blob-mid {
    width: 320px;
    height: 320px;
    left: 25%;
    bottom: -160px;
    filter: blur(30px);
    background: radial-gradient(circle, rgba(37,99,235,.12), transparent 74%);
}

.home-hero-grid {
    position: relative;
    z-index: 2;
}

.section-kicker,
.mini-kicker {
    margin: 0;
    color: var(--kivu-gold-light);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .30em;
    line-height: 1.5;
    text-transform: uppercase;
}

.mini-kicker {
    letter-spacing: .24em;
}

.page-hero-title {
    max-width: 22ch;
    margin: 16px 0 0;
    color: white;
    font-size: clamp(2.25rem, 4vw, 3.35rem);
    font-weight: 600;
    line-height: 1.02;
}

.page-hero-text {
    max-width: 760px;
    margin: 24px 0 0;
    color: var(--kivu-muted);
    font-size: 17px;
    line-height: 1.9;
}

.section-title {
    max-width: 850px;
    margin: 12px 0 0;
    color: white;
    font-size: clamp(2rem, 3.2vw, 3rem);
    font-weight: 600;
    line-height: 1.05;
}

.button-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

.glass-card {
    border: 1px solid var(--kivu-border);
    border-radius: 28px;
    background: rgba(255,255,255,.04);
    box-shadow: 0 22px 60px rgba(0,0,0,.20);
}

.hero-stat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 38px;
}

.hero-stat-grid article {
    padding: 20px;
}

.hero-stat-grid strong {
    display: block;
    margin-top: 10px;
    color: white;
    font-size: 17px;
}

.hero-highlight-card {
    padding: 26px;
}

.hero-highlight-content {
    min-height: 420px;
    margin-top: 22px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    border-radius: 24px;
    padding: 30px;
    background:
        radial-gradient(circle at top left, rgba(15,168,138,.20), transparent 40%),
        radial-gradient(circle at bottom right, rgba(231,197,106,.16), transparent 44%),
        linear-gradient(145deg, #091722, #07111c);
}

.hero-highlight-content h2 {
    max-width: 12ch;
    margin: 16px 0 0;
    font-size: 36px;
    font-weight: 600;
    line-height: 1.05;
}

.hero-highlight-content p {
    margin: 18px 0 0;
    color: var(--kivu-muted);
    line-height: 1.8;
}

.section-band,
.section-standard {
    padding: 68px 0;
}

.section-band {
    border-top: 1px solid var(--kivu-border);
    border-bottom: 1px solid var(--kivu-border);
    background: rgba(255,255,255,.02);
}

.section-last {
    padding-bottom: 96px;
}

.section-heading {
    margin-bottom: 36px;
}

.section-heading-row {
    margin-bottom: 36px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
}

.values-grid,
.mineral-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.mineral-grid {
    grid-template-columns: repeat(4, 1fr);
}

.value-card {
    padding: 28px;
}

.value-number {
    display: inline-flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(231,197,106,.20);
    border-radius: 999px;
    color: var(--kivu-gold-light);
    background: rgba(231,197,106,.10);
}

.value-card h3 {
    margin: 16px 0 0;
    color: white;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.15;
}

.value-card p:not(.section-kicker) {
    color: var(--kivu-muted);
    line-height: 1.8;
}

.value-card .section-kicker {
    margin-top: 18px;
}

.mineral-card {
    overflow: hidden;
    border: 1px solid var(--kivu-border);
    border-radius: 28px;
    background: var(--kivu-panel);
    box-shadow: 0 20px 50px rgba(0,0,0,.20);
    transition: transform .25s ease;
}

.mineral-card:hover {
    transform: translateY(-4px);
}

.mineral-image {
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

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

.mineral-card-copy {
    padding: 22px;
}

.mineral-card-copy h2,
.mineral-card-copy h3 {
    margin: 16px 0 0;
    color: white;
    font-size: 25px;
    font-weight: 600;
}

.mineral-card-copy p {
    color: var(--kivu-muted);
    line-height: 1.75;
}

.mineral-meta-pill {
    display: inline-flex;
    border: 1px solid var(--kivu-border);
    border-radius: 999px;
    padding: 6px 10px;
    color: rgba(255,255,255,.60);
    font-size: 11px;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.mineral-more {
    display: block;
    margin-top: 18px;
    color: var(--kivu-gold-light);
    font-size: 14px;
}

.cta-shell {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 34px;
    align-items: center;
    overflow: hidden;
    border: 1px solid var(--kivu-border);
    border-radius: 32px;
    padding: 38px;
    background:
        linear-gradient(
            135deg,
            rgba(213,166,62,.12),
            rgba(15,168,138,.10),
            rgba(255,255,255,.03)
        );
    box-shadow: 0 24px 60px rgba(0,0,0,.22);
}

.cta-shell p:not(.section-kicker) {
    max-width: 760px;
    color: var(--kivu-muted);
    line-height: 1.8;
}

.story-card,
.contact-card {
    padding: 32px;
}

.story-card h2 {
    margin: 15px 0 0;
    font-size: 30px;
}

.story-card > p:not(.section-kicker) {
    color: var(--kivu-muted);
    line-height: 1.8;
}

.mini-grid,
.contact-grid,
.snapshot-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-top: 28px;
}

.mini-grid > div,
.contact-grid > div,
.snapshot-grid > div {
    border: 1px solid var(--kivu-border);
    border-radius: 20px;
    padding: 18px;
    background: rgba(255,255,255,.03);
}

.mini-grid span,
.contact-grid span,
.snapshot-grid span {
    display: block;
    color: rgba(255,255,255,.42);
    font-size: 11px;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.mini-grid strong,
.contact-grid strong,
.snapshot-grid strong {
    display: block;
    margin-top: 10px;
    overflow-wrap: anywhere;
    color: white;
    line-height: 1.5;
}

.two-card-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
    margin-top: 34px;
}

.mission-card {
    padding: 30px;
}

.mission-card > p:not(.section-kicker) {
    color: rgba(255,255,255,.90);
    font-size: 17px;
    line-height: 1.9;
}

.contact-person {
    padding: 26px;
}

.contact-person > span {
    color: rgba(255,255,255,.42);
    font-size: 11px;
    letter-spacing: .20em;
    text-transform: uppercase;
}

.contact-person h3 {
    margin: 16px 0 8px;
    font-size: 28px;
}

.contact-person a {
    color: var(--kivu-gold-light);
    overflow-wrap: anywhere;
}

.contact-person p {
    color: var(--kivu-muted);
}

.team-card {
    overflow: hidden;
}

.team-photo {
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card > div:last-child {
    padding: 24px;
}

.team-card h2 {
    margin: 0;
    font-size: 28px;
}

.team-bio {
    color: var(--kivu-muted);
    line-height: 1.8;
}

.mineral-detail-grid {
    display: grid;
    grid-template-columns: 1.08fr .92fr;
    gap: 30px;
}

.mineral-main-image {
    overflow: hidden;
    border: 1px solid var(--kivu-border);
    border-radius: 32px;
}

.mineral-main-image img {
    width: 100%;
    min-height: 500px;
    object-fit: cover;
}

.mineral-detail-copy {
    display: grid;
    gap: 20px;
}

.mineral-detail-copy > article {
    padding: 26px;
}

.mineral-detail-copy h2 {
    margin: 16px 0 0;
    font-size: 24px;
}

.mineral-detail-copy p,
.entry-content {
    color: var(--kivu-muted);
    line-height: 1.85;
}

.quote-info-grid {
    display: grid;
    gap: 14px;
}

.quote-info-grid > div,
.quote-notes,
.quote-form-card {
    padding: 24px;
}

.quote-info-grid p:not(.section-kicker),
.quote-notes p {
    color: var(--kivu-muted);
    line-height: 1.75;
}

.quote-layout {
    display: grid;
    grid-template-columns: .78fr 1.22fr;
    gap: 30px;
    align-items: start;
}

.quote-notes h3 {
    margin: 22px 0 4px;
    font-size: 20px;
}

.quote-form {
    display: grid;
    gap: 20px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.quote-form label > span {
    display: block;
    margin-bottom: 8px;
    color: rgba(255,255,255,.72);
    font-size: 14px;
    font-weight: 600;
}

.quote-form input,
.quote-form textarea {
    width: 100%;
    border: 1px solid var(--kivu-border);
    border-radius: 16px;
    outline: none;
    padding: 14px 16px;
    background: var(--kivu-bg);
    color: white;
}

.quote-form input:focus,
.quote-form textarea:focus {
    border-color: rgba(231,197,106,.50);
}

.selected-mineral,
.form-success {
    margin-bottom: 20px;
    border-radius: 16px;
    padding: 15px 17px;
}

.selected-mineral {
    border: 1px solid rgba(231,197,106,.20);
    background: rgba(231,197,106,.08);
}

.form-success {
    border: 1px solid rgba(15,168,138,.28);
    background: rgba(15,168,138,.12);
}

.honeypot {
    position: absolute !important;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
}

.empty-state {
    padding: 30px;
    color: var(--kivu-muted);
}

.page-content {
    color: var(--kivu-muted);
    line-height: 1.85;
}

.site-footer-premium {
    border-top: 1px solid var(--kivu-border);
    background: #061019;
    padding-top: 54px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr .65fr .9fr;
    gap: 48px;
}

.footer-grid h3 {
    max-width: 19ch;
    margin: 16px 0 0;
    color: white;
    font-size: 25px;
    font-weight: 600;
    line-height: 1.2;
}

.footer-grid h4 {
    margin: 0;
    color: rgba(255,255,255,.46);
    font-family: var(--kivu-body);
    font-size: 13px;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.footer-copy,
.footer-grid li,
.footer-contact-card {
    color: rgba(255,255,255,.66);
    font-size: 14px;
    line-height: 1.8;
}

.footer-grid ul {
    padding: 0;
    list-style: none;
}

.footer-grid li {
    margin: 10px 0;
}

.footer-grid a:hover {
    color: var(--kivu-gold-light);
}

.footer-contact-card {
    margin-top: 24px;
    border: 1px solid var(--kivu-border);
    border-radius: 22px;
    padding: 20px;
    background: rgba(255,255,255,.04);
}

.footer-bottom {
    margin-top: 42px;
    padding: 20px 0 26px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border-top: 1px solid var(--kivu-border);
    color: rgba(255,255,255,.42);
    font-size: 12px;
}

.footer-bottom a {
    color: var(--kivu-gold-light);
    font-weight: 700;
}

@media (max-width: 1100px) {
    .desktop-nav,
    .desktop-quote {
        display: none;
    }

    .mobile-menu-button {
        display: block;
    }

    .home-hero-grid,
    .two-column-hero,
    .mineral-detail-grid,
    .quote-layout,
    .cta-shell {
        grid-template-columns: 1fr;
    }

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

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

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

@media (max-width: 700px) {
    .content-width {
        width: min(100% - 32px, 1280px);
    }

    .site-header-inner {
        min-height: 74px;
    }

    .site-logo {
        height: 52px;
    }

    .home-hero,
    .page-hero {
        padding: 48px 0;
    }

    .page-hero-title {
        font-size: 2.15rem;
    }

    .page-hero-text {
        font-size: 15px;
    }

    .hero-stat-grid,
    .values-grid,
    .mineral-grid,
    .two-card-grid,
    .form-grid,
    .mini-grid,
    .contact-grid,
    .snapshot-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero-highlight-content {
        min-height: 340px;
        padding: 24px;
    }

    .hero-highlight-content h2 {
        font-size: 30px;
    }

    .section-band,
    .section-standard {
        padding: 52px 0;
    }

    .section-heading-row,
    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .cta-shell {
        padding: 26px;
    }

    .mineral-main-image img {
        min-height: 320px;
    }
}
