/* Gold shimmer animation */
@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

.gold-shimmer {
    background: linear-gradient(
        90deg,
        #C9A94E 0%,
        #f0d98c 25%,
        #C9A94E 50%,
        #f0d98c 75%,
        #C9A94E 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 4s linear infinite;
}

/* Hero */
.hero {
    position: relative;
    text-align: center;
    padding: 5rem 0 3rem;
    overflow: hidden;
}

.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(201, 169, 78, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero-inner {
    position: relative;
}

.hero-eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.8rem;
    color: var(--color-accent);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    color: #ffffff;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-subtitle {
    color: var(--color-muted);
    font-size: 1.15rem;
    line-height: 1.7;
    max-width: 540px;
    margin: 0 auto 2.5rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-hero {
    display: inline-block;
    padding: 0.85rem 2rem;
    background: var(--color-accent);
    color: #1B1B18;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 8px;
    transition: all 0.25s;
}
.btn-hero:hover {
    background: #d4ba6a;
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(201, 169, 78, 0.3);
}

.btn-hero-outline {
    display: inline-block;
    padding: 0.85rem 2rem;
    border: 1px solid rgba(201, 169, 78, 0.3);
    color: var(--color-accent);
    font-weight: 500;
    font-size: 0.95rem;
    border-radius: 8px;
    transition: all 0.25s;
}
.btn-hero-outline:hover {
    border-color: var(--color-accent);
    background: rgba(201, 169, 78, 0.06);
    text-decoration: none;
}

.hero-divider {
    margin-top: 4rem;
    display: flex;
    justify-content: center;
}

.gold-line {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #C9A94E, transparent);
}

/* Sections */
.section {
    padding: 3rem 0;
}

.section-label {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.75rem;
    color: var(--color-accent);
    font-weight: 500;
}

.gold-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-accent);
    display: inline-block;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: #ffffff;
    margin: 0 0 1.5rem;
}

/* Value Props */
.value-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.value-card {
    background: var(--color-glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--color-glass-border);
    border-radius: 12px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: border-color 0.3s, transform 0.3s;
}

.value-card:hover {
    border-color: rgba(201, 169, 78, 0.3);
    transform: translateY(-2px);
}

.value-icon {
    margin-bottom: 1.25rem;
}

.value-card h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: #ffffff;
    margin-bottom: 0.75rem;
}

.value-card p {
    color: var(--color-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* About */
.about-panel {
    background: var(--color-glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--color-glass-border);
    border-radius: 16px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
}

.about-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #C9A94E, transparent);
}

.about-content {
    max-width: 600px;
}

.about-content p {
    color: var(--color-muted);
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 1rem;
}

/* Footer logo */
.footer-logo {
    height: 40px;
    margin-bottom: 1rem;
    opacity: 0.5;
}

/* Responsive */
@media (max-width: 640px) {
    .hero { padding: 3rem 0 2rem; }
    .hero-title { font-size: 2rem; }
    .hero-subtitle { font-size: 1rem; }
    .value-grid { grid-template-columns: 1fr; }
    .about-panel { padding: 2rem 1.5rem; }
}
