/* ============================================
   LESS Jewelry - Handcrafted in Sweden
   Variant 3: Original gold gradient + better accessibility
   ============================================ */

/* Fonts - Self-hosted */
@font-face {
    font-family: 'Cormorant';
    src: url('fonts/Cormorant-Light.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Cormorant';
    src: url('fonts/Cormorant-LightItalic.woff2') format('woff2');
    font-weight: 300;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Cormorant';
    src: url('fonts/Cormorant-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Cormorant';
    src: url('fonts/Cormorant-Italic.woff2') format('woff2');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Outfit';
    src: url('fonts/Outfit-Light.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Outfit';
    src: url('fonts/Outfit-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

:root {
    /* Colors - warm black */
    --color-black: #0c0a09;
    --color-black-warm: #1c1917;
    --color-cream: #faf9f7;
    --color-cream-muted: rgba(250, 249, 247, 0.8);
    --color-cream-subtle: rgba(250, 249, 247, 0.55);

    /* Gold - original richer palette */
    --color-gold: #D4AF37;
    --color-gold-light: #F5E6A3;
    --color-gold-mid: #E2C86A;
    --color-gold-dark: #B8972E;
    --color-gold-muted: rgba(226, 200, 106, 0.5);
    --color-gold-subtle: rgba(226, 200, 106, 0.15);

    /* Typography */
    --font-serif: 'Cormorant', Georgia, serif;
    --font-sans: 'Outfit', system-ui, sans-serif;

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2.5rem;
    --space-xl: 4rem;

    /* Transitions */
    --transition-base: 300ms ease;
}

/* Reset */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-sans);
    font-weight: 300;
    background-color: var(--color-black);
    color: var(--color-cream);
    line-height: 1.7;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Subtle warm glow at top */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 60vh;
    background: radial-gradient(ellipse at 50% 0%, rgba(212, 175, 55, 0.06) 0%, transparent 70%);
    pointer-events: none;
    z-index: -1;
}

/* Container */
.container {
    max-width: 680px;
    margin: 0 auto;
    padding: var(--space-xl) var(--space-md);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header */
.header {
    text-align: center;
    padding: var(--space-xl) 0;
    opacity: 0;
    animation: fadeIn 1s ease-out 0.2s forwards;
}

.logo-wrapper {
    margin-bottom: var(--space-md);
}

.logo {
    height: 110px;
    width: auto;
}

/* Hero */
.hero {
    text-align: center;
    padding: var(--space-lg) 0 var(--space-xl);
    opacity: 0;
    animation: fadeIn 1s ease-out 0.4s forwards;
}

.hero-title {
    font-family: var(--font-serif);
    font-weight: 300;
    font-size: clamp(2.25rem, 7vw, 3.25rem);
    line-height: 1.2;
    margin-bottom: var(--space-md);
    color: var(--color-cream);
}

.hero-line {
    display: block;
}

.hero-line-accent {
    color: var(--color-gold-mid);
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-light) 50%, var(--color-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-style: italic;
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.125rem);
    font-weight: 300;
    color: var(--color-cream-muted);
    max-width: 440px;
    margin: 0 auto;
    line-height: 1.8;
}

/* CTA Section */
.cta-section {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    padding: var(--space-lg) 0;
    opacity: 0;
    animation: fadeIn 1s ease-out 0.6s forwards;
}

.cta-link {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md) var(--space-lg);
    background: transparent;
    border: 1px solid rgba(250, 249, 247, 0.1);
    border-radius: 4px;
    text-decoration: none;
    color: var(--color-cream);
    transition: all var(--transition-base);
}

.cta-primary:hover {
    background: rgba(250, 249, 247, 0.03);
    border-color: var(--color-gold-muted);
}

.cta-secondary {
    cursor: default;
    opacity: 0.6;
}

.cta-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    flex-shrink: 0;
}

.cta-icon svg {
    width: 22px;
    height: 22px;
    stroke-width: 1.5;
    color: var(--color-gold-mid);
}

.cta-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.cta-label {
    font-weight: 400;
    font-size: clamp(1rem, 2.5vw, 1.0625rem);
}

.cta-sublabel {
    font-size: clamp(0.875rem, 2vw, 0.9375rem);
    color: var(--color-cream-subtle);
}

.cta-arrow {
    display: flex;
    align-items: center;
    width: 28px;
    height: 28px;
    transition: transform var(--transition-base);
}

.cta-arrow svg {
    width: 18px;
    height: 18px;
    color: var(--color-cream-subtle);
}

.cta-primary:hover .cta-arrow {
    transform: translateX(4px);
}

.cta-primary:hover .cta-arrow svg {
    color: var(--color-gold-mid);
}

.cta-badge {
    font-size: 0.8125rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    padding: 6px 14px;
    border: 1px solid var(--color-gold-muted);
    border-radius: 2px;
    color: var(--color-gold-mid);
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-light) 50%, var(--color-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Divider */
.divider {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-lg) 0;
    opacity: 0;
    animation: fadeIn 1s ease-out 0.8s forwards;
}

.divider-line {
    width: 50px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-gold-muted), transparent);
}

.divider-symbol {
    width: 7px;
    height: 7px;
    margin: 0 var(--space-sm);
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-light));
    transform: rotate(45deg);
}

/* Values Section */
.values {
    padding: var(--space-xl) 0;
    opacity: 0;
    animation: fadeIn 1s ease-out 0.9s forwards;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
}

.value-item {
    text-align: center;
    padding: var(--space-sm);
}

.value-label {
    font-family: var(--font-serif);
    font-size: clamp(1.125rem, 3vw, 1.3125rem);
    font-style: italic;
    margin-bottom: var(--space-xs);
    color: var(--color-gold-mid);
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-light) 50%, var(--color-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.value-text {
    font-size: clamp(0.9375rem, 2vw, 1rem);
    color: var(--color-cream-muted);
    line-height: 1.6;
}

/* Philosophy */
.philosophy {
    text-align: center;
    padding: var(--space-lg) 0;
    opacity: 0;
    animation: fadeIn 1s ease-out 1s forwards;
}

.philosophy-quote {
    font-family: var(--font-serif);
    font-size: clamp(1.5rem, 4vw, 1.75rem);
    font-weight: 300;
    font-style: italic;
    margin-bottom: var(--space-md);
    color: var(--color-gold-mid);
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-light) 50%, var(--color-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.philosophy-text {
    font-size: clamp(1rem, 2.5vw, 1.0625rem);
    font-weight: 300;
    color: var(--color-cream-muted);
    max-width: 400px;
    margin: 0 auto;
    line-height: 1.85;
}

/* Footer */
.footer {
    margin-top: auto;
    padding: var(--space-xl) 0 var(--space-lg);
    border-top: 1px solid rgba(250, 249, 247, 0.06);
    opacity: 0;
    animation: fadeIn 1s ease-out 1.1s forwards;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
    text-align: center;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.footer-logo {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-style: italic;
    letter-spacing: 0.15em;
    color: var(--color-gold-mid);
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-light) 50%, var(--color-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-location {
    font-size: 0.875rem;
    color: var(--color-cream-muted);
    letter-spacing: 0.1em;
}

.footer-legal {
    font-size: 0.875rem;
    color: var(--color-cream-subtle);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Focus states */
.cta-primary:focus-visible {
    outline: 1px solid var(--color-gold);
    outline-offset: 2px;
}

/* Selection */
::selection {
    background: var(--color-gold-muted);
    color: var(--color-black);
}

/* Responsive */
@media (max-width: 480px) {
    .container {
        padding: var(--space-lg) var(--space-sm);
    }

    .logo {
        height: 90px;
    }

    .cta-link {
        padding: var(--space-sm) var(--space-md);
        gap: var(--space-sm);
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }

    .cta-arrow {
        display: none;
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}