:root,
[data-theme="light"] {
    --color-bg: #f2f7fa;
    --color-surface: #f7fbfd;
    --color-surface-2: #eef5f9;
    --color-surface-offset: #e3edf4;
    --color-surface-dynamic: #d3e6f0;
    --color-divider: #c8dde9;
    --color-border: #b8d0e0;
    --color-text: #0f2330;
    --color-text-muted: #4a6070;
    --color-text-faint: #8aa8bb;
    --color-text-inverse: #f2f7fa;
    --color-primary: #0077a8;
    --color-primary-hover: #005f87;
    --color-primary-active: #00476a;
    --color-primary-highlight: #c0dce9;
    --color-accent: #00a878;
    --color-accent-hover: #008860;
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-full: 9999px;
    --shadow-sm: 0 1px 3px oklch(0.2 0.05 220 / 0.07);
    --shadow-md: 0 4px 16px oklch(0.2 0.05 220 / 0.10);
    --shadow-lg: 0 12px 40px oklch(0.2 0.05 220 / 0.14);
    --transition: 180ms cubic-bezier(0.16, 1, 0.3, 1);
    --content-default: 960px;
    --content-wide: 1200px;
    --space-1: .25rem;
    --space-2: .5rem;
    --space-3: .75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;
    --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
    --text-sm: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
    --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
    --text-lg: clamp(1.125rem, 1rem + 0.75vw, 1.5rem);
    --text-xl: clamp(1.5rem, 1.2rem + 1.25vw, 2.25rem);
    --text-2xl: clamp(2rem, 1.2rem + 2.5vw, 3.5rem);
    --text-3xl: clamp(2.5rem, 1rem + 4vw, 5rem);
    --font-display: 'Zodiak', Georgia, serif;
    --font-body: 'Satoshi', 'Helvetica Neue', sans-serif;
}

[data-theme="dark"] {
    --color-bg: #0a1720;
    --color-surface: #0e1e2a;
    --color-surface-2: #132535;
    --color-surface-offset: #172c3d;
    --color-surface-dynamic: #1d3548;
    --color-divider: #1f3a4e;
    --color-border: #26475e;
    --color-text: #cce4f0;
    --color-text-muted: #7aa0b5;
    --color-text-faint: #3f6070;
    --color-text-inverse: #0a1720;
    --color-primary: #3ab5e0;
    --color-primary-hover: #5ecaec;
    --color-primary-active: #7dd4ef;
    --color-primary-highlight: #1a3b50;
    --color-accent: #2dd4a6;
    --color-accent-hover: #50e0ba;
    --shadow-sm: 0 1px 3px oklch(0 0 0 / 0.25);
    --shadow-md: 0 4px 16px oklch(0 0 0 / 0.35);
    --shadow-lg: 0 12px 40px oklch(0 0 0 / 0.45);
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    scroll-behavior: smooth;
    scroll-padding-top: var(--space-20);
}

body {
    min-height: 100dvh;
    font-family: var(--font-body);
    font-size: var(--text-base);
    color: var(--color-text);
    background-color: var(--color-bg);
    line-height: 1.65;
}

img,
picture,
svg {
    display: block;
    max-width: 100%;
    height: auto;
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    background: none;
    border: none;
    font: inherit;
    color: inherit;
}

a {
    color: inherit;
    text-decoration: none;
}

h1,
h2,
h3,
h4 {
    text-wrap: balance;
    line-height: 1.2;
    font-family: var(--font-display);
}

p,
li {
    text-wrap: pretty;
}

a,
button,
[role="button"] {
    transition: color var(--transition), background var(--transition), border-color var(--transition), box-shadow var(--transition), opacity var(--transition);
}

:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 3px;
    border-radius: var(--radius-sm);
}

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        transition-duration: .01ms !important;
    }
}

.container {
    max-width: var(--content-default);
    margin-inline: auto;
    padding-inline: var(--space-6);
}

.container--wide {
    max-width: var(--content-wide);
    margin-inline: auto;
    padding-inline: var(--space-6);
}

/* HEADER */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: oklch(from var(--color-bg) l c h / 0.92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--color-border);
    transition: box-shadow var(--transition);
}

.site-header.scrolled {
    box-shadow: var(--shadow-sm);
}

.nav-inner {
    max-width: var(--content-wide);
    margin-inline: auto;
    padding-inline: var(--space-6);
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-6);
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    font-family: var(--font-display);
    font-size: var(--text-lg);
    font-weight: 700;
    color: var(--color-primary);
    letter-spacing: -0.02em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: var(--space-8);
}

.nav-links a {
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--color-text-muted);
    letter-spacing: .01em;
}

.nav-links a:hover {
    color: var(--color-primary);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: var(--space-4);
}

.btn-contact-nav {
    font-size: var(--text-sm);
    font-weight: 600;
    padding: var(--space-2) var(--space-5);
    background: var(--color-primary);
    color: var(--color-text-inverse);
    border-radius: var(--radius-full);
}

.btn-contact-nav:hover {
    background: var(--color-primary-hover);
    box-shadow: var(--shadow-sm);
}

.theme-toggle {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-full);
    color: var(--color-text-muted);
}

.theme-toggle:hover {
    background: var(--color-surface-2);
    color: var(--color-text);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--color-text);
    border-radius: 2px;
    transition: transform var(--transition), opacity var(--transition);
}

.hamburger:hover {
    background: var(--color-surface-2);
}

.mobile-nav {
    display: none;
    flex-direction: column;
    padding: var(--space-4) var(--space-6) var(--space-6);
    border-top: 1px solid var(--color-border);
    background: var(--color-bg);
    gap: var(--space-2);
}

.mobile-nav a {
    font-size: var(--text-base);
    font-weight: 500;
    color: var(--color-text-muted);
    padding: var(--space-3) 0;
    border-bottom: 1px solid var(--color-divider);
}

.mobile-nav a:last-child {
    border-bottom: none;
}

.mobile-nav a:hover {
    color: var(--color-primary);
}

.mobile-nav.open {
    display: flex;
}

@media (max-width: 680px) {

    .nav-links,
    .btn-contact-nav {
        display: none;
    }

    .hamburger {
        display: flex;
    }
}

/* HERO */
.hero {
    min-height: 80vh;
    display: grid;
    place-items: center;
    padding: clamp(var(--space-16), 10vw, var(--space-24)) var(--space-6);
    position: relative;
    overflow: hidden;
    background: radial-gradient(ellipse 80% 60% at 60% 40%, oklch(0.70 0.12 220 / 0.18) 0%, transparent 65%), radial-gradient(ellipse 50% 40% at 20% 70%, oklch(0.65 0.10 175 / 0.12) 0%, transparent 60%), var(--color-bg);
}

.hero-inner {
    max-width: var(--content-default);
    margin-inline: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
    align-items: center;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--text-xs);
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--color-primary);
    background: var(--color-primary-highlight);
    padding: var(--space-1) var(--space-3);
    border-radius: var(--radius-full);
    margin-bottom: var(--space-5);
}

.hero h1 {
    font-size: var(--text-3xl);
    font-weight: 700;
    color: var(--color-text);
    letter-spacing: -0.03em;
    margin-bottom: var(--space-5);
    line-height: 1.1;
}

.hero h1 span {
    color: var(--color-primary);
}

.hero-desc {
    font-size: var(--text-base);
    color: var(--color-text-muted);
    max-width: 48ch;
    margin-bottom: var(--space-8);
    line-height: 1.7;
}

.hero-cta-group {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-4);
}

.btn-primary {
    font-weight: 700;
    font-size: var(--text-sm);
    padding: var(--space-3) var(--space-8);
    background: var(--color-primary);
    color: var(--color-text-inverse);
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-sm);
    letter-spacing: .01em;
}

.btn-primary:hover {
    background: var(--color-primary-hover);
    box-shadow: var(--shadow-md);
    transform: translateY(-1px);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-ghost {
    font-weight: 600;
    font-size: var(--text-sm);
    padding: var(--space-3) var(--space-8);
    color: var(--color-primary);
    border: 1.5px solid var(--color-primary);
    border-radius: var(--radius-full);
}

.btn-ghost:hover {
    background: var(--color-primary-highlight);
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.water-orb {
    width: clamp(220px, 30vw, 340px);
    height: clamp(220px, 30vw, 340px);
    border-radius: 50%;
    background: radial-gradient(circle at 35% 35%, oklch(0.78 0.13 215 / 0.9), oklch(0.55 0.18 220 / 0.85) 50%, oklch(0.40 0.20 240 / 0.95) 100%);
    box-shadow: 0 0 0 1px oklch(0.60 0.15 220 / 0.3), 0 24px 60px oklch(0.45 0.18 220 / 0.35), inset 0 4px 12px oklch(1 0 0 / 0.25), inset -4px -4px 20px oklch(0.35 0.20 240 / 0.4);
    animation: float 6s ease-in-out infinite;
    position: relative;
}

.water-orb::after {
    content: '';
    position: absolute;
    top: 12%;
    left: 18%;
    width: 35%;
    height: 20%;
    background: oklch(1 0 0 / 0.35);
    border-radius: var(--radius-full);
    filter: blur(6px);
    transform: rotate(-20deg);
}

.orb-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid oklch(0.65 0.14 215 / 0.25);
}

.orb-ring-1 {
    width: calc(clamp(220px, 30vw, 340px) + 40px);
    height: calc(clamp(220px, 30vw, 340px) + 40px);
    animation: pulse-ring 4s ease-in-out infinite;
}

.orb-ring-2 {
    width: calc(clamp(220px, 30vw, 340px) + 80px);
    height: calc(clamp(220px, 30vw, 340px) + 80px);
    animation: pulse-ring 4s ease-in-out .8s infinite;
    opacity: .6;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-16px);
    }
}

@keyframes pulse-ring {

    0%,
    100% {
        opacity: .25;
        transform: scale(1);
    }

    50% {
        opacity: .05;
        transform: scale(1.04);
    }
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-3);
    margin-top: var(--space-10);
}

.hero-badge {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--text-xs);
    font-weight: 600;
    color: var(--color-text-muted);
    letter-spacing: .03em;
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    border-radius: var(--radius-full);
    background: var(--color-accent);
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-visual {
        order: -1;
    }

    .hero-desc,
    .hero-badges {
        max-width: 100%;
    }

    .hero-cta-group,
    .hero-badges {
        justify-content: center;
    }
}

/* SECTIONS */
section {
    padding-block: clamp(var(--space-12), 8vw, var(--space-24));
}

.section-label {
    display: inline-block;
    font-size: var(--text-xs);
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: var(--space-3);
}

.section-title {
    font-size: var(--text-2xl);
    font-weight: 700;
    letter-spacing: -.025em;
    color: var(--color-text);
    margin-bottom: var(--space-4);
}

.section-desc {
    font-size: var(--text-base);
    color: var(--color-text-muted);
    max-width: 58ch;
    line-height: 1.7;
}

.divider {
    border: none;
    border-top: 1px solid var(--color-divider);
}

/* ABOUT */
.about {
    background: var(--color-surface);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
    align-items: center;
}

.about-image-main {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.about-image-wrap {
    position: relative;
}

.about-badge-float {
    position: absolute;
    bottom: -16px;
    right: -16px;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: var(--space-4) var(--space-5);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

.about-badge-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-md);
    background: var(--color-primary-highlight);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    flex-shrink: 0;
}

.about-badge-text p {
    font-size: var(--text-xs);
    color: var(--color-text-muted);
}

.about-badge-text strong {
    font-size: var(--text-sm);
    font-weight: 700;
    color: var(--color-text);
    display: block;
}

.about-content p {
    font-size: var(--text-base);
    color: var(--color-text-muted);
    line-height: 1.75;
    margin-bottom: var(--space-5);
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    margin-top: var(--space-6);
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: var(--space-4);
    padding: var(--space-4);
    background: var(--color-surface-2);
    border-radius: var(--radius-lg);
    border: 1px solid oklch(from var(--color-text) l c h / 0.07);
}

.about-feature-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    background: var(--color-primary-highlight);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
}

.about-feature-text h4 {
    font-size: var(--text-sm);
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: var(--space-1);
    font-family: var(--font-body);
}

.about-feature-text p {
    font-size: var(--text-xs);
    color: var(--color-text-muted);
    max-width: 36ch;
}

@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: var(--space-10);
    }

    .about-image-wrap {
        max-width: 480px;
        margin-inline: auto;
    }
}

/* WHY */
.why {
    background: var(--color-bg);
}

.why-header {
    text-align: center;
    margin-bottom: var(--space-12);
}

.why-header .section-desc {
    margin-inline: auto;
}

.why-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(260px, 100%), 1fr));
    gap: var(--space-5);
}

.why-card {
    padding: var(--space-6);
    background: var(--color-surface);
    border: 1px solid oklch(from var(--color-text) l c h / 0.07);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--transition), transform var(--transition);
}

.why-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.why-card-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-lg);
    background: var(--color-primary-highlight);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    margin-bottom: var(--space-4);
}

.why-card h3 {
    font-size: var(--text-sm);
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: var(--space-2);
    font-family: var(--font-body);
}

.why-card p {
    font-size: var(--text-xs);
    color: var(--color-text-muted);
    line-height: 1.6;
    max-width: 32ch;
}

/* CONTACT */
.contact {
    background: var(--color-surface);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: var(--space-12);
    align-items: start;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: var(--space-5);
    margin-top: var(--space-8);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-4);
}

.contact-item-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    background: var(--color-primary-highlight);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
}

.contact-item-body h4 {
    font-size: var(--text-sm);
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: var(--space-1);
    font-family: var(--font-body);
}

.contact-item-body p,
.contact-item-body a {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    line-height: 1.6;
}

.contact-item-body a:hover {
    color: var(--color-primary);
}

.contact-form {
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    box-shadow: var(--shadow-sm);
}

.contact-form h3 {
    font-size: var(--text-xl);
    font-weight: 700;
    margin-bottom: var(--space-6);
    color: var(--color-text);
}

.form-group {
    margin-bottom: var(--space-5);
}

.form-group label {
    display: block;
    font-size: var(--text-xs);
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    margin-bottom: var(--space-2);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: var(--space-3) var(--space-4);
    font-family: var(--font-body);
    font-size: var(--text-sm);
    color: var(--color-text);
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    transition: border-color var(--transition), box-shadow var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px oklch(from var(--color-primary) l c h / 0.15);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4);
}

.btn-submit {
    width: 100%;
    padding: var(--space-4);
    font-weight: 700;
    font-size: var(--text-sm);
    letter-spacing: .02em;
    background: var(--color-primary);
    color: var(--color-text-inverse);
    border-radius: var(--radius-md);
    margin-top: var(--space-2);
}

.btn-submit:hover {
    background: var(--color-primary-hover);
    box-shadow: var(--shadow-sm);
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

/* MAP */
.map-section {
    background: var(--color-bg);
    padding-block: clamp(var(--space-12), 8vw, var(--space-20));
}

.map-header {
    margin-bottom: var(--space-8);
}

.map-wrap {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--color-border);
    aspect-ratio: 16/7;
    min-height: 320px;
    background: var(--color-surface-2);
}

.map-wrap iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

@media (max-width: 680px) {
    .map-wrap {
        aspect-ratio: unset;
        min-height: unset;
        height: clamp(220px, 70vw, 320px);
        width: 100%;
    }

    .map-wrap iframe {
        width: 100%;
        height: 100%;
    }
}

/* FOOTER */
.site-footer {
    background: #0f2330;
    color: #cce4f0;
    padding-block: var(--space-12) var(--space-8);
}

[data-theme="dark"] .site-footer {
    background: #060e14;
    color: #cce4f0;
}

.footer-inner {
    max-width: var(--content-wide);
    margin-inline: auto;
    padding-inline: var(--space-6);
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: var(--space-10);
    margin-bottom: var(--space-10);
    padding-bottom: var(--space-8);
    border-bottom: 1px solid oklch(1 0 0 / 0.1);
}

.footer-brand .logo {
    color: #fff;
    margin-bottom: var(--space-4);
}

.footer-brand p {
    font-size: var(--text-sm);
    color: oklch(1 0 0 / 0.55);
    max-width: 38ch;
    line-height: 1.7;
}

.footer-col h4 {
    font-family: var(--font-body);
    font-size: var(--text-xs);
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: oklch(1 0 0 / 0.45);
    margin-bottom: var(--space-4);
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.footer-col ul a {
    font-size: var(--text-sm);
    color: oklch(1 0 0 / 0.65);
    transition: color var(--transition);
}

.footer-col ul a:hover {
    color: #fff;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--space-4);
}

.footer-bottom p {
    font-size: var(--text-xs);
    color: oklch(1 0 0 / 0.4);
    max-width: 100%;
}

.footer-tagline {
    font-size: var(--text-xs);
    font-style: italic;
    color: oklch(1 0 0 / 0.3);
}

@media (max-width: 640px) {
    .footer-top {
        grid-template-columns: 1fr;
    }
}

/* REVEAL */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .6s cubic-bezier(0.16, 1, 0.3, 1), transform .6s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
    opacity: 1;
    transform: none;
}

.reveal-delay-1 {
    transition-delay: .1s;
}

.reveal-delay-2 {
    transition-delay: .2s;
}

.reveal-delay-3 {
    transition-delay: .3s;
}

.reveal-delay-4 {
    transition-delay: .4s;
}

/* GOLD MODE */
[data-gold="on"] {
    --color-primary: #b8820a;
    --color-primary-hover: #9a6c08;
    --color-primary-active: #7c5606;
    --color-primary-highlight: #f5e6c0;
}

[data-gold="on"][data-theme="dark"] {
    --color-primary: #e8af34;
    --color-primary-hover: #fdc551;
    --color-primary-active: #feda74;
    --color-primary-highlight: #4d4332;
}

[data-gold="on"] .water-orb {
    background: radial-gradient(circle at 35% 35%, oklch(0.88 0.13 85 / 0.95), oklch(0.72 0.18 75 / 0.90) 50%, oklch(0.55 0.20 65 / 0.95) 100%);
    box-shadow: 0 0 0 1px oklch(0.70 0.15 80 / 0.35), 0 24px 60px oklch(0.60 0.18 75 / 0.40), inset 0 4px 12px oklch(1 0 0 / 0.30), inset -4px -4px 20px oklch(0.45 0.20 65 / 0.45);
}

[data-gold="on"] .orb-ring {
    border-color: oklch(0.72 0.16 80 / 0.30);
}

[data-gold="on"] .hero {
    background: radial-gradient(ellipse 80% 60% at 60% 40%, oklch(0.78 0.14 80 / 0.18) 0%, transparent 65%), radial-gradient(ellipse 50% 40% at 20% 70%, oklch(0.72 0.12 70 / 0.12) 0%, transparent 60%), var(--color-bg);
}

[data-theme="dark"][data-gold="on"] .water-orb {
    background: radial-gradient(circle at 35% 35%, oklch(0.82 0.16 85 / 0.92), oklch(0.65 0.20 75 / 0.88) 50%, oklch(0.48 0.22 65 / 0.95) 100%);
    box-shadow: 0 0 0 1px oklch(0.68 0.17 80 / 0.40), 0 24px 60px oklch(0.55 0.20 75 / 0.50), inset 0 4px 12px oklch(1 0 0 / 0.28), inset -4px -4px 20px oklch(0.40 0.22 65 / 0.50);
}

[data-theme="dark"][data-gold="on"] .orb-ring {
    border-color: oklch(0.68 0.18 80 / 0.35);
}

[data-theme="dark"][data-gold="on"] .hero {
    background: radial-gradient(ellipse 80% 60% at 60% 40%, oklch(0.65 0.16 80 / 0.22) 0%, transparent 65%), radial-gradient(ellipse 50% 40% at 20% 70%, oklch(0.60 0.14 70 / 0.15) 0%, transparent 60%), var(--color-bg);
}

.gold-toggle {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-full);
    color: var(--color-text-muted);
    position: relative;
}

.gold-toggle:hover {
    background: var(--color-surface-2);
    color: var(--color-text);
}

.gold-toggle[aria-pressed="true"] {
    background: #f5e6c0;
    color: #b8820a;
}

[data-theme="dark"] .gold-toggle[aria-pressed="true"] {
    background: #4d4332;
    color: #e8af34;
}

.gold-toggle-dot {
    position: absolute;
    bottom: 6px;
    right: 6px;
    width: 6px;
    height: 6px;
    border-radius: var(--radius-full);
    background: #b8820a;
    opacity: 0;
    transition: opacity var(--transition);
}

[data-theme="dark"] .gold-toggle-dot {
    background: #e8af34;
}

.gold-toggle[aria-pressed="true"] .gold-toggle-dot {
    opacity: 1;
}