/* ============================================
   JANIQUE SMEETS - DESIGN SYSTEM STYLES
   Liquid Glass + Spring/Summer Editorial
   ============================================ */

/* ============================================
   CSS VARIABLES
   ============================================ */

:root {
    /* Base Neutrals */
    --color-warm-white: #FDFBF7;
    --color-sand: #F5F1E8;
    --color-text-primary: #2C2C2C;
    --color-text-secondary: #6B6B6B;

    /* Accent Colors */
    --color-butter-yellow: #FFD662;
    --color-coral-pink: #FF9B9B;
    --color-sage-green: #A8C5A8;
    --color-sky-blue: #A3C9E2;
    --color-apricot-orange: #FFB088;

    /* Typography */
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Open Sans', sans-serif;

    /* Type Scale */
    --text-hero: 4.5rem;
    --text-section: 3rem;
    --text-subsection: 2rem;
    --text-large: 1.25rem;
    --text-body: 1rem;
    --text-small: 0.875rem;

    /* Line Heights */
    --line-height-heading: 1.2;
    --line-height-body: 1.75;
    --line-height-large: 1.5;

    /* Spacing */
    --container-max: 1280px;
    --padding-mobile: 80px;
    --padding-desktop: 120px;
    --section-spacing: 160px;
    --gap: 32px;

    /* Glass Effect */
    --glass-bg: rgba(253, 251, 247, 0.8);
    --glass-border: rgba(255, 255, 255, 0.4);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    --glass-blur: 20px;

    /* Timing */
    --timing-micro: 200ms;
    --timing-transition: 400ms;
    --timing-scroll: 800ms;
}

/* ============================================
   RESET & BASE STYLES
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-body);
    font-size: var(--text-body);
    line-height: var(--line-height-body);
    color: var(--color-text-primary);
    background: var(--color-warm-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    line-height: var(--line-height-heading);
    font-weight: 700;
}

p {
    line-height: var(--line-height-body);
}

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

/* ============================================
   UTILITY CLASSES
   ============================================ */

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 2rem;
}

.section-title {
    font-size: var(--text-section);
    text-align: center;
    margin-bottom: 4rem;
}

/* Glass Card Component */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    box-shadow: var(--glass-shadow);
    padding: 2.5rem;
    transition: all var(--timing-transition) ease-in-out;
}

.glass-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.12);
}

/* Buttons */
.btn,
.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: var(--text-body);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all var(--timing-micro) ease;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--color-butter-yellow);
    color: var(--color-text-primary);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 214, 98, 0.4);
}

.btn-secondary {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    border: 2px solid var(--color-text-secondary);
    color: var(--color-text-primary);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    border-color: var(--color-butter-yellow);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.btn:focus-visible,
.btn-primary:focus-visible,
.btn-secondary:focus-visible {
    outline: 2px solid var(--color-butter-yellow);
    outline-offset: 4px;
}

/* ============================================
   NAVIGATION - FLOATING GLASS MENU
   ============================================ */

.main-nav {
    position: fixed;
    top: 2rem;
    left: 2rem;
    transform: none;
    z-index: 1000;

    /* Glass morphism */
    background: rgba(253, 251, 247, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50px;
    padding: 1rem 2rem;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.08),
        0 2px 8px rgba(0, 0, 0, 0.04);

    /* Animation */
    animation: navSlideDown 0.6s ease-out 1.2s backwards;
}

@keyframes navSlideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Desktop: Horizontal top-left navigation */
@media (min-width: 1024px) {
    .main-nav {
        top: 2rem;
        left: 2rem;
        transform: none;
        border-radius: 50px;
    }
}

.nav-list {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
    flex-direction: row;
}

/* Desktop: Keep navigation horizontal */
@media (min-width: 1024px) {
    .nav-list {
        flex-direction: row;
        gap: 2.5rem;
    }
}

.nav-item {
    margin: 0;
}

.nav-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--color-text-primary);
    transition: all 0.3s ease;
    cursor: pointer;
}

.nav-link:hover {
    transform: translateY(-4px);
}

.nav-icon {
    width: 40px;
    height: 40px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.nav-link:hover .nav-icon {
    transform: scale(1.15) rotate(5deg);
    filter: drop-shadow(0 6px 16px rgba(255, 214, 98, 0.4));
}

.nav-link:active .nav-icon {
    transform: scale(0.95);
}

.nav-text {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.nav-link:hover .nav-text {
    opacity: 1;
    color: var(--color-coral-pink);
}

/* Active state */
.nav-link.active .nav-icon {
    transform: scale(1.1);
}

.nav-link.active .nav-text {
    opacity: 1;
    font-weight: 600;
    color: var(--color-butter-yellow);
}

/* Mobile: Keep navigation horizontal at bottom center */
@media (max-width: 1023px) {
    .main-nav {
        top: auto;
        bottom: 1rem;
        left: 50%;
        transform: translateX(-50%);
        padding: 0.75rem 1rem;
        border-radius: 40px;
    }
}

    .nav-list {
        gap: 1.5rem;
    }

    .nav-icon {
        width: 32px;
        height: 32px;
    }

    .nav-text {
        font-size: 0.65rem;
    }
}

@media (max-width: 480px) {
    .nav-list {
        gap: 1rem;
    }

    .nav-icon {
        width: 28px;
        height: 28px;
    }

    .nav-text {
        font-size: 0.6rem;
    }
}

/* ============================================
   HERO - MINIMALIST 3-COLUMN LAYOUT
   ============================================ */

.hero-minimalist {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1.5rem;  /* Small horizontal padding */
    background: var(--color-warm-white);
    position: relative;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    max-width: 100%;
    width: 100%;
    align-items: center;
    padding: 0;
}

/* Desktop: 3-column layout */
@media (min-width: 1024px) {
    .hero-minimalist {
        padding: 2rem 3rem;  /* Slightly more on desktop */
    }

    .hero-grid {
        grid-template-columns: 1fr auto 1fr;
        gap: 6rem;
        padding: 0;
    }
}

/* LEFT COLUMN - Text + Buttons */
.hero-left {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    opacity: 0;
    animation: fadeUpIn 0.8s ease-out 0.5s forwards;
    padding: 0;
    margin: 0;
}

.hero-label {
    font-family: var(--font-body);
    font-size: 1.125rem;  /* Increased from 0.875rem (14px) to 1.125rem (18px) */
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-coral-pink);  /* Changed back from sage green */
}

/* Desktop: Larger label for more prominence */
@media (min-width: 1024px) {
    .hero-label {
        font-size: 1.5rem;  /* Larger on desktop: 24px */
        letter-spacing: 0.2em;  /* Increase letter spacing proportionally */
    }
}

.hero-intro {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.75;
    color: var(--color-text-secondary);
    max-width: 400px;
}

.hero-cta-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* CENTER COLUMN - Photo + Accent Circle */
.hero-center {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    /* No min-height on mobile - let content size naturally */
}

@media (min-width: 1024px) {
    .hero-center {
        min-height: 850px;
    }
}

.accent-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) translateY(30px);
    width: 350px;
    height: 350px;
    background: var(--color-coral-pink);
    border-radius: 50%;
    opacity: 0;
    animation: fadeIn 0.6s ease-out 0s forwards;  /* Appears FIRST with 0s delay */
    z-index: 1;
}

@media (min-width: 768px) {
    .accent-circle {
        width: 640px;
        height: 640px;
        transform: translate(-50%, -50%) translateY(40px);
    }
}

@media (min-width: 1024px) {
    .accent-circle {
        width: 650px;
        height: 650px;
        transform: translate(-50%, -50%) translateY(50px);
    }
}

.hero-photo {
    position: relative;
    width: 400px;
    height: auto;
    object-fit: contain;
    opacity: 0;
    animation: fadeIn 0.8s ease-out 0.7s forwards;
    z-index: 2;
}

@media (min-width: 768px) {
    .hero-photo {
        width: 550px;
    }
}

@media (min-width: 1024px) {
    .hero-photo {
        width: 650px;
        transform: translateY(60px);  /* Move photo down 60px */
    }
}

/* RIGHT COLUMN - Large Name Typography */
.hero-right {
    opacity: 0;
    animation: fadeUpIn 0.8s ease-out 0.9s forwards;
    padding: 0;
    margin: 0;
}

.hero-name {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 800;
    line-height: 0.9;
    color: var(--color-text-primary);
    letter-spacing: -0.02em;
    text-align: left;
}

@media (min-width: 768px) {
    .hero-name {
        font-size: 5rem;
    }
}

@media (min-width: 1024px) {
    .hero-name {
        font-size: 7rem;
        text-align: right;
    }
}

.name-line {
    display: block;
}

/* ANIMATIONS */
@keyframes fadeUpIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* MOBILE ADJUSTMENTS */
@media (max-width: 1023px) {
    .hero-grid {
        text-align: center;
        display: flex;
        flex-direction: column;
        gap: 1rem;  /* Reduced to 1rem for very tight spacing */
    }

    .hero-left {
        align-items: center;
        order: 1;  /* Text first */
    }

    .hero-right {
        order: 2;  /* Name second (above photo) */
    }

    .hero-center {
        order: 3;  /* Photo+circle third */
    }

    .hero-cta-group {
        order: 4;  /* Buttons last (below photo) */
        justify-content: center;
        width: 100%;
    }

    .hero-intro {
        max-width: 500px;
    }

    .hero-name {
        text-align: center;
    }
}

/* ============================================
   KPI CARDS - SOPHISTICATED EXECUTIVE DESIGN
   ============================================ */

.kpis-section {
    padding: 8rem 3rem;
    background: var(--color-warm-white);
}

.kpis-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.kpi-card {
    position: relative;
    background: #FFFFFF;
    border-radius: 16px;
    padding: 3rem 2rem;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow:
        0 2px 8px rgba(0, 0, 0, 0.04),
        0 1px 2px rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;

    opacity: 0;
    transform: translateY(30px);
}

.kpi-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.kpi-card:hover {
    transform: translateY(-4px);
    box-shadow:
        0 8px 24px rgba(0, 0, 0, 0.08),
        0 2px 8px rgba(0, 0, 0, 0.04);
    border-color: rgba(0, 0, 0, 0.1);
}

/* Large number */
.kpi-number {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1;
    color: var(--color-text-primary);
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
}

.kpi-suffix {
    display: inline;
    font-size: 3rem;
    opacity: 0.6;
    margin-left: -0.5rem;
}

/* Label */
.kpi-label {
    font-family: var(--font-body);
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--color-text-secondary);
    font-weight: 500;
    letter-spacing: 0.01em;
}

/* Responsive */
@media (max-width: 768px) {
    .kpis-section {
        padding: 4rem 1.5rem;
    }

    .kpis-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .kpi-card {
        padding: 2rem 1.5rem;
    }

    .kpi-number {
        font-size: 3.5rem;
    }
}

@media (max-width: 480px) {
    .kpis-container {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   CASE STUDIES SECTION
   ============================================ */

.case-studies-section {
    padding: var(--section-spacing) 0;
    background: var(--color-warm-white);
}

.case-study {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 6rem;
    align-items: center;
}

.case-study-reverse {
    direction: rtl;
}

.case-study-reverse > * {
    direction: ltr;
}

.case-study-image {
    position: relative;
}

.image-placeholder {
    aspect-ratio: 4/3;
    border-radius: 24px;
    background: var(--color-sand);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-secondary);
    font-size: var(--text-large);
}

.case-label {
    display: inline-block;
    font-size: var(--text-small);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    margin-bottom: 1rem;
}

.case-study[data-accent="yellow"] .case-label {
    background: var(--color-butter-yellow);
    color: var(--color-text-primary);
}

.case-study[data-accent="coral"] .case-label {
    background: var(--color-coral-pink);
    color: var(--color-text-primary);
}

.case-study[data-accent="sage"] .case-label {
    background: var(--color-sage-green);
    color: var(--color-text-primary);
}

.case-title {
    font-size: var(--text-subsection);
    margin-bottom: 1.5rem;
}

.case-meta {
    margin-bottom: 1.5rem;
}

.meta-item {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.case-meta p {
    color: var(--color-text-secondary);
}

/* ============================================
   EXPERIENCE TIMELINE
   ============================================ */

.experience-section {
    padding: var(--section-spacing) 0;
    background: var(--color-sand);
}

.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--color-text-secondary);
    opacity: 0.2;
}

.timeline-item {
    position: relative;
    padding-left: 80px;
    margin-bottom: 4rem;
}

.timeline-dot {
    position: absolute;
    left: 16px;
    top: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 4px solid var(--color-warm-white);
    z-index: 1;
}

.timeline-dot[data-accent="yellow"] { background: var(--color-butter-yellow); }
.timeline-dot[data-accent="coral"] { background: var(--color-coral-pink); }
.timeline-dot[data-accent="sage"] { background: var(--color-sage-green); }
.timeline-dot[data-accent="blue"] { background: var(--color-sky-blue); }

.timeline-years {
    font-size: var(--text-small);
    font-weight: 600;
    color: var(--color-text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.timeline-role {
    font-size: var(--text-large);
    margin-bottom: 0.25rem;
}

.timeline-company {
    font-size: var(--text-body);
    color: var(--color-text-secondary);
    margin-bottom: 1rem;
}

.timeline-summary {
    margin-bottom: 1rem;
}

.timeline-highlights {
    list-style: none;
    padding: 0;
}

.timeline-highlights li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--color-text-secondary);
}

.timeline-highlights li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--color-butter-yellow);
}

/* ============================================
   LEADERSHIP PHILOSOPHY
   ============================================ */

.philosophy-section {
    padding: var(--section-spacing) 0;
    background: var(--color-warm-white);
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--gap);
}

.philosophy-card {
    text-align: center;
}

.philosophy-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.philosophy-title {
    font-size: var(--text-large);
    margin-bottom: 1rem;
}

.philosophy-description {
    color: var(--color-text-secondary);
    line-height: var(--line-height-body);
}

.philosophy-card[data-accent="yellow"] .philosophy-icon { filter: hue-rotate(0deg); }
.philosophy-card[data-accent="coral"] .philosophy-icon { filter: hue-rotate(340deg); }
.philosophy-card[data-accent="sage"] .philosophy-icon { filter: hue-rotate(120deg); }
.philosophy-card[data-accent="blue"] .philosophy-icon { filter: hue-rotate(200deg); }
.philosophy-card[data-accent="orange"] .philosophy-icon { filter: hue-rotate(20deg); }

/* ============================================
   TESTIMONIALS
   ============================================ */

.testimonials-section {
    padding: var(--section-spacing) 0;
    background: var(--color-sand);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--gap);
}

.testimonial-card[data-accent="yellow"] {
    border-top: 4px solid var(--color-butter-yellow);
}

.testimonial-card[data-accent="coral"] {
    border-top: 4px solid var(--color-coral-pink);
}

.testimonial-card[data-accent="sage"] {
    border-top: 4px solid var(--color-sage-green);
}

.testimonial-quote {
    font-size: var(--text-large);
    font-style: italic;
    margin-bottom: 2rem;
    line-height: var(--line-height-large);
}

.author-name {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.author-role {
    font-size: var(--text-small);
    color: var(--color-text-secondary);
}

/* ============================================
   PERSONAL SECTION
   ============================================ */

.personal-section {
    padding: var(--section-spacing) 0;
    background: var(--color-warm-white);
}

.personal-content {
    max-width: 1000px;
    margin: 0 auto;
}

.personal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.personal-heading {
    font-size: var(--text-large);
    margin-bottom: 1rem;
}

.personal-item p {
    color: var(--color-text-secondary);
}

/* ============================================
   CONTACT SECTION
   ============================================ */

.contact-section {
    padding: var(--section-spacing) 0;
    background: var(--color-sand);
    text-align: center;
}

.contact-tagline {
    font-size: var(--text-large);
    color: var(--color-text-secondary);
    max-width: 700px;
    margin: 0 auto 3rem;
}

.contact-cta {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    padding: 3rem 0;
    background: var(--color-text-primary);
    color: var(--color-warm-white);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--color-warm-white);
    opacity: 0.8;
    transition: opacity var(--timing-micro) ease;
}

.footer-links a:hover {
    opacity: 1;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1024px) {
    :root {
        --text-hero: 3.5rem;
        --text-section: 2.5rem;
        --text-subsection: 1.75rem;
    }

    .case-study,
    .case-study-reverse {
        grid-template-columns: 1fr;
        direction: ltr;
    }

    .philosophy-grid,
    .personal-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --text-hero: 2.5rem;
        --text-section: 2rem;
        --text-subsection: 1.5rem;
        --text-large: 1.125rem;
        --section-spacing: 100px;
    }

    .nav-menu {
        gap: 1rem;
    }

    .hero-minimalist {
        padding: 1rem 1rem 3rem;  /* Reduced top padding from 6rem to 1rem for mobile */
    }

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

    .timeline::before {
        left: 14px;
    }

    .timeline-item {
        padding-left: 50px;
    }

    .timeline-dot {
        left: 0;
    }

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

    .contact-cta {
        flex-direction: column;
        align-items: stretch;
    }

    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
}

@media (max-width: 640px) {
    :root {
        --text-hero: 2rem;
        --text-section: 1.75rem;
    }

    .container {
        padding: 0 1rem;
    }

    .nav-menu {
        display: none;
    }

    .hero-cta-group {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
    }
}

/* ============================================
   ANIMATIONS & SCROLL EFFECTS
   ============================================ */

/* Fade-up animation */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-up {
    opacity: 0;
    animation: fadeUp var(--timing-scroll) ease forwards;
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .glass-card:hover {
        transform: none;
    }

    .btn:hover {
        transform: none;
    }
}

/* ============================================
   ACCESSIBILITY
   ============================================ */

/* Focus visible styles */
a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--color-butter-yellow);
    outline-offset: 4px;
}

/* Skip to content link */
.skip-to-content {
    position: absolute;
    top: -100px;
    left: 0;
    background: var(--color-butter-yellow);
    color: var(--color-text-primary);
    padding: 1rem 2rem;
    z-index: 9999;
    text-decoration: none;
    font-weight: 600;
}

.skip-to-content:focus {
    top: 0;
}
