/* =========================================================
   STEFAN VAN DE WEIJER — Portfolio
   Aesthetic: Editorial / Warm minimalism with playful accents
   Palette:  Cream + Ink + Burnt Orange + Fuchsia + Sage
   ========================================================= */

:root {
    --cream: #f4ede4;
    --cream-deep: #ebe1d3;
    --ink: #1a1a1a;
    --ink-soft: #2c2825;
    --orange: #d4582c;
    --orange-deep: #b6431d;
    --fuchsia: #c4377a;
    --fuchsia-deep: #9c2860;
    --fuchsia-soft: #e96b9e;
    --fuchsia-glow: rgba(196, 55, 122, 0.15);
    --sage: #6b7d5b;
    --sage-soft: #8a9c7a;
    --gold: #c89d4a;
    --white: #ffffff;
    --gray-soft: #d6cdc0;
    --gray-mid: #6b6258;
    
    --font-display: 'Fraunces', Georgia, serif;
    --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    
    --radius: 12px;
    --radius-lg: 24px;
    --transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-slow: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--cream);
    color: var(--ink);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    cursor: none;
}

::selection {
    background: var(--fuchsia);
    color: var(--cream);
}

::-moz-selection {
    background: var(--fuchsia);
    color: var(--cream);
}

/* On touch devices, restore default cursor */
@media (hover: none) {
    body { cursor: auto; }
    .custom-cursor, .custom-cursor-dot { display: none !important; }
}

/* =====================================================
   CUSTOM CURSOR
   ===================================================== */
.custom-cursor {
    position: fixed;
    width: 32px;
    height: 32px;
    border: 1.5px solid var(--ink);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.15s ease, width 0.3s ease, height 0.3s ease, background 0.3s ease, border-color 0.3s ease;
    transform: translate(-50%, -50%);
    mix-blend-mode: difference;
}

.custom-cursor-dot {
    position: fixed;
    width: 6px;
    height: 6px;
    background: var(--fuchsia);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.05s ease;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 12px var(--fuchsia-glow);
}

.custom-cursor.hover {
    width: 64px;
    height: 64px;
    background: var(--orange);
    border-color: var(--orange);
}

/* =====================================================
   PAGE LOADER
   ===================================================== */
.loader {
    position: fixed;
    inset: 0;
    background: var(--ink);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.9s cubic-bezier(0.7, 0, 0.3, 1);
}

.loader.hidden {
    transform: translateY(-100%);
}

.loader-text {
    font-family: var(--font-display);
    font-size: clamp(3rem, 10vw, 8rem);
    font-weight: 800;
    color: var(--cream);
    letter-spacing: -0.04em;
}

.loader-text span {
    display: inline-block;
    opacity: 0;
    transform: translateY(40px);
    animation: loaderLetter 0.6s forwards;
}

.loader-text span:nth-child(1) { animation-delay: 0.0s; }
.loader-text span:nth-child(2) { animation-delay: 0.05s; }
.loader-text span:nth-child(3) { animation-delay: 0.1s; }
.loader-text span:nth-child(4) { animation-delay: 0.15s; }
.loader-text span:nth-child(5) { animation-delay: 0.2s; }
.loader-text span:nth-child(6) { animation-delay: 0.25s; }

@keyframes loaderLetter {
    to { opacity: 1; transform: translateY(0); }
}

/* =====================================================
   NAVIGATION
   ===================================================== */
.custom-navbar {
    padding: 1.4rem 0;
    background: transparent;
    transition: background 0.4s ease, padding 0.4s ease, backdrop-filter 0.4s ease;
}

.custom-navbar.scrolled {
    background: rgba(244, 237, 228, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(26, 26, 26, 0.08);
}

.navbar-brand {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--ink) !important;
    letter-spacing: -0.02em;
    display: flex;
    align-items: baseline;
}

.brand-mark {
    display: inline-block;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.navbar-brand:hover .brand-mark {
    transform: rotate(-12deg) scale(1.15);
    color: var(--orange);
}

.navbar-brand:hover .brand-dot {
    animation: dotPulse 0.8s ease infinite;
}

@keyframes dotPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.4); }
}

.brand-dot {
    color: var(--fuchsia);
    font-size: 1.6rem;
    line-height: 1;
    display: inline-block;
    transition: transform 0.3s var(--transition-bounce);
}

.navbar-nav .nav-link {
    color: var(--ink) !important;
    font-weight: 500;
    font-size: 0.95rem;
    margin: 0 0.4rem;
    padding: 0.5rem 0.9rem !important;
    position: relative;
    transition: var(--transition);
}

.navbar-nav .nav-link span {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 0.75rem;
    color: var(--orange);
    margin-right: 0.3rem;
    opacity: 0.7;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0.2rem;
    left: 0.9rem;
    width: 0;
    height: 1px;
    background: var(--ink);
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after {
    width: calc(100% - 1.8rem);
}

.nav-cta {
    color: var(--ink) !important;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    color: var(--orange) !important;
}

.nav-cta span {
    color: var(--orange);
    opacity: 0.7;
}

.navbar-toggler {
    border: 1.5px solid var(--ink);
    padding: 0.4rem 0.6rem;
}

.navbar-toggler:focus { box-shadow: none; }

/* =====================================================
   HERO
   ===================================================== */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    padding: 9rem 0 7rem;
    overflow: hidden;
}

.hero-bg-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(to right, rgba(26, 26, 26, 0.04) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(26, 26, 26, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.hero-noise {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.4'/%3E%3C/svg%3E");
    opacity: 0.5;
    mix-blend-mode: multiply;
    pointer-events: none;
}

/* =====================================================
   HERO DOODLES — hand-drawn UX/research illustrations
   Floating around the hero text. Each one has:
   - position: absolute on the hero
   - subtle floating animation, staggered delays
   - alternating accent colors (ink / orange / fuchsia / sage)
   ===================================================== */
.hero-doodles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.doodle {
    position: absolute;
    opacity: 0;
    animation: doodleFadeIn 0.8s ease forwards, doodleFloat 6s ease-in-out infinite;
}

@keyframes doodleFadeIn {
    to { opacity: 0.9; }
}

@keyframes doodleFloat {
    0%, 100% { transform: translate(0, 0) rotate(var(--rot, 0deg)); }
    25%      { transform: translate(2px, -6px) rotate(calc(var(--rot, 0deg) + 3deg)); }
    50%      { transform: translate(-2px, -3px) rotate(calc(var(--rot, 0deg) - 2deg)); }
    75%      { transform: translate(3px, -8px) rotate(calc(var(--rot, 0deg) + 1deg)); }
}

/* Position + style each doodle individually */
/* Top region (around "UX die je voelt.") */
.doodle-pencil {
    top: 14%;
    right: 8%;
    width: 64px;
    color: var(--orange);
    --rot: -8deg;
    animation-delay: 0.4s, 0s;
}

.doodle-notebook {
    top: 6%;
    left: 6%;
    width: 56px;
    color: var(--ink);
    --rot: -10deg;
    animation-delay: 0.7s, 1.2s;
}

.doodle-bulb {
    top: 22%;
    right: 28%;
    width: 50px;
    color: var(--gold);
    --rot: 12deg;
    animation-delay: 1.0s, 0.6s;
}

.doodle-squiggle {
    top: 32%;
    left: 12%;
    width: 110px;
    color: var(--fuchsia);
    --rot: -3deg;
    animation-delay: 1.3s, 2s;
    opacity: 0;
}

/* Middle region (between lines) */
.doodle-magnify {
    top: 44%;
    right: 12%;
    width: 60px;
    color: var(--fuchsia);
    --rot: 15deg;
    animation-delay: 1.6s, 1s;
}

.doodle-eye {
    top: 50%;
    left: 4%;
    width: 78px;
    color: var(--ink);
    --rot: -6deg;
    animation-delay: 1.9s, 2.5s;
}

/* Lower region (around "Research die je raakt.") */
.doodle-postit {
    bottom: 30%;
    right: 5%;
    width: 64px;
    color: var(--orange);
    --rot: 8deg;
    animation-delay: 2.2s, 1.5s;
}

.doodle-speech {
    bottom: 22%;
    left: 22%;
    width: 60px;
    color: var(--sage);
    --rot: -5deg;
    animation-delay: 2.5s, 0.8s;
}

.doodle-heart {
    bottom: 38%;
    right: 30%;
    width: 50px;
    color: var(--fuchsia);
    --rot: -10deg;
    animation-delay: 2.8s, 2.2s;
}

.doodle-star {
    top: 38%;
    right: 4%;
    width: 38px;
    color: var(--gold);
    --rot: 10deg;
    animation-delay: 3.1s, 1.8s;
}

.doodle-arrow {
    bottom: 12%;
    left: 38%;
    width: 86px;
    color: var(--orange);
    --rot: -8deg;
    animation-delay: 3.4s, 3s;
}

.doodle-cup {
    bottom: 8%;
    right: 18%;
    width: 50px;
    color: var(--ink);
    --rot: 6deg;
    animation-delay: 3.7s, 2.7s;
}

/* Hide some doodles on smaller viewports to keep things readable */
@media (max-width: 1100px) {
    .doodle-bulb, .doodle-star, .doodle-heart {
        display: none;
    }
}

@media (max-width: 768px) {
    .doodle {
        opacity: 0.5;
    }
    @keyframes doodleFadeIn {
        to { opacity: 0.5; }
    }
    .doodle-eye, .doodle-speech, .doodle-arrow, .doodle-cup {
        display: none;
    }
    .doodle-pencil, .doodle-notebook, .doodle-magnify, .doodle-postit, .doodle-squiggle {
        width: 42px;
    }
    .doodle-squiggle {
        width: 80px;
    }
}

/* Reduced motion: still show doodles, but no float animation */
@media (prefers-reduced-motion: reduce) {
    .doodle {
        animation: doodleFadeIn 0.8s ease forwards;
    }
}

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

.hero-meta {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--ink-soft);
    background: rgba(255, 255, 255, 0.6);
    padding: 0.5rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(26, 26, 26, 0.08);
    margin-bottom: 2.5rem;
    opacity: 0;
    animation: fadeInUp 0.8s 1.0s forwards;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--sage);
    border-radius: 50%;
    position: relative;
}

.pulse-dot::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: var(--sage);
    opacity: 0.4;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.4; }
    50% { transform: scale(1.5); opacity: 0; }
}

.hero-title {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(3rem, 11vw, 10rem);
    line-height: 0.92;
    letter-spacing: -0.045em;
    color: var(--ink);
    margin: 0 0 4rem;
}

.hero-line {
    display: block;
    overflow: hidden;
}

.hero-line em {
    font-style: italic;
    font-weight: 400;
    color: var(--orange);
}

.line-1, .line-2, .line-3, .line-4 {
    opacity: 0;
    transform: translateY(80px);
    animation: heroLine 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.line-1 { animation-delay: 0.5s; }
.line-2 { animation-delay: 0.65s; padding-left: clamp(2rem, 8vw, 8rem); }
.line-3 { animation-delay: 0.8s; }
.line-4 { animation-delay: 0.95s; padding-left: clamp(2rem, 8vw, 8rem); }

@keyframes heroLine {
    to { opacity: 1; transform: translateY(0); }
}

.hero-bottom {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 3rem;
    align-items: end;
    margin-bottom: 4rem;
    opacity: 0;
    animation: fadeInUp 0.8s 1.2s forwards;
}

@media (max-width: 768px) {
    .hero-bottom {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 5rem;
    }
}

.hero-intro p {
    font-size: clamp(1rem, 1.4vw, 1.2rem);
    line-height: 1.6;
    color: var(--ink-soft);
    max-width: 560px;
}

.hero-intro strong {
    color: var(--ink);
    font-weight: 600;
}

.hero-cta-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
}

@media (min-width: 769px) {
    .hero-cta-group { align-items: flex-end; }
}

.btn-primary-custom {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    background: var(--ink);
    color: var(--cream);
    padding: 1rem 1.8rem;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.btn-primary-custom::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--orange);
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 0;
}

.btn-primary-custom span,
.btn-primary-custom i {
    position: relative;
    z-index: 1;
}

.btn-primary-custom:hover {
    color: var(--cream);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 88, 44, 0.3);
}

.btn-primary-custom:hover::before {
    transform: translateY(0);
}

.btn-primary-custom:hover i {
    transform: translateX(5px);
}

.btn-primary-custom i {
    transition: transform 0.3s ease;
}

.btn-large {
    padding: 1.2rem 2.4rem;
    font-size: 1.1rem;
}

.btn-link-custom {
    color: var(--ink);
    font-weight: 500;
    text-decoration: none;
    border-bottom: 1.5px solid var(--ink);
    padding-bottom: 0.2rem;
    transition: all 0.3s ease;
}

.btn-link-custom.light {
    color: var(--cream);
    border-color: var(--cream);
}

.btn-link-custom:hover {
    color: var(--orange);
    border-color: var(--orange);
}

/* Hero marquee */
.hero-marquee {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    border-top: 1px solid rgba(26, 26, 26, 0.1);
    border-bottom: 1px solid rgba(26, 26, 26, 0.1);
    background: var(--cream);
    overflow: hidden;
    padding: 1rem 0;
}

.marquee-track {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    white-space: nowrap;
    animation: marquee 35s linear infinite;
    width: max-content;
}

.marquee-track span {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.5rem;
    color: var(--ink);
    font-weight: 400;
}

.marquee-track .dot {
    color: var(--orange);
    font-style: normal;
    font-size: 0.6rem;
}

.marquee-track .dot:nth-child(4n) {
    color: var(--fuchsia);
}

@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* =====================================================
   TRUSTED SECTION
   ===================================================== */
.trusted-section {
    padding: 4rem 0 3rem;
    background: var(--cream-deep);
    border-bottom: 1px solid rgba(26, 26, 26, 0.06);
}

.section-eyebrow {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-eyebrow::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    background: var(--fuchsia);
    border-radius: 50%;
    margin-right: 0.6rem;
    vertical-align: middle;
    transform: translateY(-1px);
    box-shadow: 0 0 8px var(--fuchsia-glow);
    animation: eyebrowPulse 2.5s ease-in-out infinite;
}

@keyframes eyebrowPulse {
    0%, 100% { transform: translateY(-1px) scale(1); opacity: 1; }
    50% { transform: translateY(-1px) scale(1.4); opacity: 0.7; }
}

.section-eyebrow.light {
    color: var(--orange);
}

.trusted-logos {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.trusted-logos span {
    font-family: var(--font-display);
    font-size: clamp(1.2rem, 2.5vw, 2rem);
    font-weight: 600;
    color: var(--ink);
    transition: color 0.3s ease, transform 0.3s ease;
    cursor: default;
}

.trusted-logos span:not(.sep):hover {
    color: var(--orange);
    transform: translateY(-3px);
}

.trusted-logos .sep {
    color: var(--gray-mid);
    font-weight: 300;
    font-size: 1.4rem;
}

/* =====================================================
   SECTION TITLES (shared)
   ===================================================== */
.section-title {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(2.5rem, 6vw, 5.5rem);
    line-height: 0.95;
    letter-spacing: -0.035em;
    margin-bottom: 1.5rem;
    color: var(--ink);
}

.section-title em {
    font-style: italic;
    font-weight: 400;
    color: var(--orange);
}

.section-title.light {
    color: var(--cream);
}

.section-title.light em {
    color: var(--gold);
}

.section-sub {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--gray-soft);
    max-width: 600px;
}

/* =====================================================
   ABOUT SECTION
   ===================================================== */
.about-section {
    padding: 8rem 0;
    background: var(--cream);
    position: relative;
}

.about-image-wrap {
    position: relative;
    padding: 2rem;
}

.about-image {
    aspect-ratio: 4/5;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: linear-gradient(135deg, var(--orange) 0%, var(--gold) 100%);
    position: relative;
    box-shadow: 
        0 20px 60px rgba(0,0,0,0.15),
        0 1px 0 rgba(255,255,255,0.5) inset;
    transform: rotate(-2deg);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-image:hover {
    transform: rotate(0deg) scale(1.02);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 25%;
    transition: transform 0.8s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

/* Award badge floating on the portrait */
.about-badge {
    position: absolute;
    bottom: -10px;
    right: -10px;
    width: 140px;
    height: 140px;
    background: var(--orange);
    color: var(--cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2), 0 0 0 4px var(--cream), 0 0 0 6px var(--fuchsia);
    z-index: 3;
    transition: transform 0.5s var(--transition-bounce);
}

.about-badge:hover {
    transform: scale(1.08) rotate(-8deg);
}

.about-badge::before {
    content: '';
    position: absolute;
    inset: 12px;
    border: 1px dashed rgba(244, 237, 228, 0.4);
    border-radius: 50%;
}

.about-badge .badge-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    animation: gentleSpin 12s linear infinite;
    padding: 0.5rem;
}

.badge-text { display: none; }

.badge-center {
    font-size: 2.2rem;
    margin-bottom: 0.2rem;
    color: var(--cream);
    line-height: 1;
}

.badge-label {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 0.75rem;
    line-height: 1.1;
    font-weight: 600;
    text-align: center;
    color: var(--cream);
    letter-spacing: 0.02em;
}

@keyframes gentleSpin {
    0%, 100% { transform: rotate(-5deg); }
    50% { transform: rotate(5deg); }
}

.floating-tag {
    position: absolute;
    background: var(--cream);
    border: 1.5px solid var(--ink);
    color: var(--ink);
    padding: 0.6rem 1.1rem;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 500;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    animation: float 4s ease-in-out infinite;
    z-index: 4;
    transition: transform 0.4s var(--transition-bounce);
    cursor: default;
}

.floating-tag:hover {
    animation-play-state: paused;
    transform: scale(1.08) rotate(-2deg);
}

.tag-1 {
    top: 10%;
    left: -10px;
    animation-delay: 0s;
    border-color: var(--fuchsia);
    color: var(--fuchsia-deep);
}

.tag-2 {
    bottom: 30%;
    right: -20px;
    background: var(--ink);
    color: var(--cream);
    animation-delay: 1.5s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

.about-text {
    margin: 2rem 0 3rem;
    color: var(--ink-soft);
}

.lead-text {
    font-family: var(--font-display);
    font-size: clamp(1.2rem, 2vw, 1.6rem);
    line-height: 1.4;
    color: var(--ink);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.about-text p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.2rem;
}

.about-text strong {
    color: var(--ink);
    font-weight: 600;
}

/* Strengths grid */
.strengths-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 3rem 0;
}

@media (max-width: 575px) {
    .strengths-grid { grid-template-columns: 1fr; }
}

.strength-card {
    background: var(--cream-deep);
    border: 1px solid rgba(26, 26, 26, 0.08);
    border-radius: var(--radius);
    padding: 1.6rem 1.4rem;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

/* Decorative corner dot */
.strength-card::after {
    content: '';
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--fuchsia);
    opacity: 0;
    transform: scale(0);
    transition: all 0.4s var(--transition-bounce);
}

.strength-card:hover::after {
    opacity: 1;
    transform: scale(1);
}

.strength-card:hover {
    transform: translateY(-6px);
    background: var(--ink);
    color: var(--cream);
    border-color: var(--ink);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.strength-card:hover .strength-num,
.strength-card:hover h3,
.strength-card:hover p {
    color: var(--cream);
}

.strength-card:hover .strength-num {
    color: var(--orange);
}

/* Alternate: even cards get fuchsia accent number on hover */
.strength-card:nth-child(even):hover .strength-num {
    color: var(--fuchsia-soft);
}

.strength-num {
    font-family: var(--font-display);
    font-style: italic;
    color: var(--orange);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
    transition: color 0.3s ease;
    display: inline-block;
}

.strength-card:hover .strength-num {
    transform: translateX(2px);
}

.strength-card h3 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--ink);
    margin-bottom: 0.6rem;
    letter-spacing: -0.02em;
    transition: color 0.3s ease;
}

.strength-card p {
    font-size: 0.92rem;
    line-height: 1.5;
    color: var(--ink-soft);
    margin: 0;
    transition: color 0.3s ease;
}

/* Quote */
.must-have-quote {
    position: relative;
    padding: 2rem 2rem 2rem 4rem;
    background: var(--ink);
    color: var(--cream);
    border-radius: var(--radius-lg);
    margin-top: 2rem;
}

.must-have-quote i {
    position: absolute;
    top: 1.2rem;
    left: 1.4rem;
    font-size: 2.5rem;
    color: var(--orange);
    line-height: 1;
}

.must-have-quote p {
    font-family: var(--font-display);
    font-size: 1.15rem;
    line-height: 1.5;
    font-style: italic;
    margin-bottom: 0.8rem;
}

.must-have-quote span {
    font-size: 0.85rem;
    color: var(--gray-soft);
    letter-spacing: 0.05em;
}

/* =====================================================
   AWARDS SECTION
   ===================================================== */
.awards-section {
    background: var(--ink);
    color: var(--cream);
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.awards-bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-display);
    font-weight: 900;
    font-size: clamp(15rem, 35vw, 40rem);
    color: rgba(244, 237, 228, 0.03);
    letter-spacing: -0.05em;
    pointer-events: none;
    user-select: none;
    z-index: 0;
    line-height: 1;
}

.awards-list {
    margin-top: 4rem;
    border-top: 1px solid rgba(244, 237, 228, 0.15);
}

.award-item {
    display: grid;
    grid-template-columns: 100px 1fr 100px;
    gap: 2rem;
    padding: 3rem 0;
    border-bottom: 1px solid rgba(244, 237, 228, 0.15);
    align-items: start;
    transition: padding 0.4s ease;
    position: relative;
}

@media (max-width: 768px) {
    .award-item {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

.award-item:hover {
    padding-left: 2rem;
}

.award-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 70%;
    background: var(--orange);
    transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.award-item:hover::before {
    width: 4px;
}

.award-year {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 2.5rem;
    color: var(--orange);
    line-height: 1;
    font-weight: 500;
}

.award-content h3 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(1.4rem, 2.4vw, 2rem);
    color: var(--cream);
    margin: 0.6rem 0 1rem;
    letter-spacing: -0.02em;
    line-height: 1.15;
}

.award-tag {
    display: inline-block;
    background: rgba(244, 237, 228, 0.1);
    color: var(--gold);
    padding: 0.3rem 0.8rem;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 0.3rem;
}

.award-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(244, 237, 228, 0.7);
    margin-bottom: 1rem;
}

.award-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
    font-size: 0.85rem;
    color: var(--gray-soft);
}

.award-meta i {
    color: var(--orange);
    margin-right: 0.4rem;
}

.award-visual {
    text-align: right;
    font-size: 3rem;
    line-height: 1;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.award-item:hover .award-visual {
    transform: rotate(15deg) scale(1.2);
}

@media (max-width: 768px) {
    .award-visual { text-align: left; font-size: 2rem; }
}

/* Award photo (jury photo, stage photo, etc.) */
.award-photo {
    margin: 1.4rem 0 1.2rem;
    max-width: 540px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0,0,0,0.25);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

.award-photo:hover {
    transform: translateY(-4px);
}

.award-photo img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.award-photo:hover img {
    transform: scale(1.03);
}

.award-photo-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem 1.2rem 0.8rem;
    background: linear-gradient(to top, rgba(26, 26, 26, 0.9) 0%, transparent 100%);
    color: var(--cream);
    font-family: var(--font-display);
    font-style: italic;
    font-size: 0.85rem;
    letter-spacing: 0.02em;
}

/* Speaker thumbnail strip inside the speaker award card */
.speaker-thumbs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.6rem;
    margin: 1.4rem 0 1.2rem;
    max-width: 520px;
}

.speaker-thumb {
    aspect-ratio: 4/3;
    border-radius: var(--radius);
    background-size: cover;
    background-position: center;
    cursor: pointer;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    border: 2px solid transparent;
}

.speaker-thumb:hover {
    transform: translateY(-4px) scale(1.04);
    border-color: var(--orange);
    box-shadow: 0 12px 25px rgba(212, 88, 44, 0.3);
    z-index: 2;
}

@media (max-width: 575px) {
    .speaker-thumbs { grid-template-columns: repeat(2, 1fr); }
}

/* =====================================================
   ON STAGE — Photo Gallery
   ===================================================== */
.stage-section {
    background: var(--cream-deep);
    padding: 7rem 0 6rem;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(26, 26, 26, 0.06);
}

.stage-header {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: end;
}

@media (max-width: 768px) {
    .stage-header { grid-template-columns: 1fr; }
}

.stage-intro {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--ink-soft);
    max-width: 480px;
    margin: 0;
}

.stage-marquee {
    width: 100%;
    overflow: hidden;
    padding: 1rem 0;
    -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
    mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}

.stage-track {
    display: flex;
    gap: 1.5rem;
    width: max-content;
    animation: stageMarquee 60s linear infinite;
}

.stage-track:hover {
    animation-play-state: paused;
}

@keyframes stageMarquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.stage-item {
    position: relative;
    flex: 0 0 auto;
    width: 380px;
    margin: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.stage-item:hover {
    transform: translateY(-8px) scale(1.02);
}

.stage-item img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
    transition: transform 0.8s ease;
}

.stage-item:hover img {
    transform: scale(1.08);
}

.stage-item figcaption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.4rem 1.2rem 1rem;
    background: linear-gradient(to top, rgba(26, 26, 26, 0.95) 0%, rgba(26, 26, 26, 0.7) 60%, transparent 100%);
    color: var(--cream);
    font-size: 0.9rem;
    font-weight: 500;
}

.stage-item figcaption span {
    display: inline-block;
    background: var(--orange);
    color: var(--cream);
    padding: 0.15rem 0.6rem;
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-right: 0.5rem;
    vertical-align: middle;
}

.stage-cta-line {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.1rem;
    color: var(--ink-soft);
    margin: 0;
}

.stage-cta-line a {
    color: var(--orange);
    text-decoration: none;
    border-bottom: 1.5px solid var(--orange);
    padding-bottom: 0.1rem;
    font-style: normal;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-left: 0.3rem;
}

.stage-cta-line a:hover {
    color: var(--ink);
    border-color: var(--ink);
}

@media (max-width: 575px) {
    .stage-item { width: 280px; }
    .stage-item img { height: 180px; }
}

/* =====================================================
   WORK SECTION
   ===================================================== */
.work-section {
    padding: 8rem 0;
    background: var(--cream);
}

.work-header {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: end;
    margin-bottom: 4rem;
}

@media (max-width: 768px) {
    .work-header { grid-template-columns: 1fr; }
}

.work-intro {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--ink-soft);
    max-width: 480px;
}

.work-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

@media (max-width: 768px) {
    .work-grid { grid-template-columns: 1fr; }
}

.work-card {
    text-decoration: none;
    color: var(--ink);
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid rgba(26, 26, 26, 0.06);
    display: block;
    position: relative;
}

/* Fuchsia ribbon accent on hover */
.work-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--orange), var(--fuchsia));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 2;
}

.work-card:hover::before {
    transform: scaleX(1);
}

.work-card-large {
    grid-column: 1 / -1;
}

.work-card-large .work-card-img {
    aspect-ratio: 21/9;
}

.work-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.12);
    color: var(--ink);
}

.work-card:nth-child(even):hover {
    transform: translateY(-8px) rotate(-0.4deg);
}

.work-card:nth-child(odd):hover {
    transform: translateY(-8px) rotate(0.4deg);
}

.work-card-img {
    aspect-ratio: 4/3;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, var(--cream-deep) 0%, var(--gray-soft) 100%);
}

.work-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.work-card:hover .work-card-img img {
    transform: scale(1.06);
}

.work-card-body {
    padding: 1.8rem 2rem 2rem;
    position: relative;
}

.work-num {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 0.95rem;
    color: var(--orange);
    margin-bottom: 0.6rem;
    display: block;
}

.work-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.work-tag {
    background: var(--cream-deep);
    color: var(--ink-soft);
    padding: 0.3rem 0.7rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 500;
}

.work-card h3 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(1.4rem, 2.2vw, 1.9rem);
    color: var(--ink);
    margin-bottom: 0.7rem;
    letter-spacing: -0.02em;
    line-height: 1.15;
}

.work-card p {
    font-size: 0.97rem;
    line-height: 1.5;
    color: var(--ink-soft);
    margin-bottom: 1.2rem;
}

.work-arrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--ink);
    transition: gap 0.3s ease, color 0.3s ease;
}

.work-card:hover .work-arrow {
    gap: 0.9rem;
    color: var(--orange);
}

/* =====================================================
   BLOG SECTION
   ===================================================== */
.blog-section {
    padding: 8rem 0;
    background: var(--cream-deep);
}

.blog-header {
    display: flex;
    justify-content: space-between;
    align-items: end;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 4rem;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.blog-grid .blog-card-featured {
    grid-column: 1 / -1;
}

@media (max-width: 992px) {
    .blog-grid { grid-template-columns: 1fr; }
    .blog-grid .blog-card-featured { grid-column: 1; }
}

.blog-card {
    text-decoration: none;
    color: var(--ink);
    background: var(--cream);
    border-radius: var(--radius-lg);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid rgba(26, 26, 26, 0.06);
    display: flex;
    flex-direction: column;
    min-height: 320px;
    position: relative;
    overflow: hidden;
}

.blog-card-thumb {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: var(--cream-deep);
    position: relative;
}

.blog-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.blog-card:hover .blog-card-thumb img {
    transform: scale(1.05);
}

.blog-card-featured .blog-card-thumb {
    aspect-ratio: 21 / 9;
}

.blog-card-body {
    padding: 1.6rem 1.8rem 1.8rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
}

.blog-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--fuchsia);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 2;
}

.blog-card:hover::before {
    transform: scaleX(1);
}

.blog-card .blog-read i {
    transition: transform 0.4s var(--transition-bounce);
    display: inline-block;
}

.blog-card:hover .blog-read i {
    transform: translate(4px, -4px);
}

.blog-card-featured {
    background: var(--cream);
    color: var(--ink);
    grid-row: span 1;
}

.blog-card-featured h3,
.blog-card-featured p {
    color: var(--ink);
}

.blog-card-featured .blog-read {
    color: var(--orange);
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    color: var(--ink);
}

.blog-card-featured:hover {
    background: linear-gradient(135deg, var(--orange) 0%, var(--fuchsia) 100%);
    color: var(--cream);
}

.blog-card-featured:hover h3,
.blog-card-featured:hover p,
.blog-card-featured:hover .blog-read {
    color: var(--cream);
}

.blog-card-featured:hover .blog-tag {
    background: rgba(244, 237, 228, 0.2);
    color: var(--cream);
}

.blog-card-featured:hover .blog-date {
    color: rgba(244, 237, 228, 0.8);
}

.blog-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.blog-tag {
    background: rgba(212, 88, 44, 0.12);
    color: var(--orange);
    padding: 0.3rem 0.8rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.blog-date {
    font-size: 0.8rem;
    color: var(--gray-mid);
    font-style: italic;
}

.blog-card h3 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(1.2rem, 1.8vw, 1.7rem);
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 0.8rem;
    color: var(--ink);
}

.blog-card-featured h3 {
    font-size: clamp(1.6rem, 2.4vw, 2.2rem);
}

.blog-card p {
    font-size: 0.95rem;
    line-height: 1.55;
    color: var(--ink-soft);
    margin-bottom: 1.5rem;
}

.blog-read {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--orange);
    transition: gap 0.3s ease;
}

.blog-card:hover .blog-read {
    gap: 0.8rem;
}

/* =====================================================
   CONTACT SECTION
   ===================================================== */
.contact-section {
    background: var(--ink);
    color: var(--cream);
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.contact-bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-display);
    font-weight: 900;
    font-size: clamp(20rem, 50vw, 60rem);
    color: rgba(196, 55, 122, 0.09);
    letter-spacing: -0.05em;
    pointer-events: none;
    user-select: none;
    z-index: 0;
    line-height: 1;
}

.contact-title {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(3rem, 9vw, 8rem);
    line-height: 0.95;
    letter-spacing: -0.04em;
    color: var(--cream);
    margin: 1rem 0 1.5rem;
}

.contact-title em {
    font-style: italic;
    font-weight: 400;
    color: var(--orange);
}

.contact-sub {
    font-size: 1.15rem;
    line-height: 1.6;
    color: rgba(244, 237, 228, 0.7);
    max-width: 580px;
    margin: 0 auto 3rem;
}

.contact-buttons {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    margin-bottom: 3rem;
}

.contact-buttons .btn-primary-custom {
    background: var(--orange);
}

.contact-buttons .btn-primary-custom::before {
    background: var(--cream);
}

.contact-buttons .btn-primary-custom:hover {
    color: var(--ink);
}

/* Contact form */
.contact-form {
    background: rgba(244, 237, 228, 0.04);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(244, 237, 228, 0.1);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    margin: 3rem 0 2rem;
    text-align: left;
}

@media (max-width: 768px) {
    .contact-form {
        padding: 1.8rem 1.4rem;
    }
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
}

@media (max-width: 575px) {
    .form-grid { grid-template-columns: 1fr; }
}

.form-field {
    margin-bottom: 1.2rem;
}

.form-field label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.form-field input,
.form-field textarea {
    width: 100%;
    background: rgba(244, 237, 228, 0.06);
    border: 1.5px solid rgba(244, 237, 228, 0.15);
    border-radius: var(--radius);
    padding: 0.9rem 1.1rem;
    color: var(--cream);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s ease;
    resize: vertical;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: rgba(244, 237, 228, 0.4);
    font-style: italic;
}

.form-field input:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--orange);
    background: rgba(244, 237, 228, 0.1);
    box-shadow: 0 0 0 3px rgba(212, 88, 44, 0.2);
}

.form-field textarea {
    min-height: 130px;
    line-height: 1.5;
}

.form-footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1.2rem;
    margin-top: 0.5rem;
}

.form-footer .btn-primary-custom {
    background: var(--orange);
    color: var(--cream);
}

.form-footer .btn-primary-custom::before {
    background: var(--cream);
}

.form-footer .btn-primary-custom:hover {
    color: var(--ink);
}

.form-note {
    font-size: 0.9rem;
    color: rgba(244, 237, 228, 0.6);
    margin: 0;
}

.form-note a {
    color: var(--gold);
    text-decoration: none;
    border-bottom: 1px solid var(--gold);
}

.form-note a:hover {
    color: var(--orange);
    border-color: var(--orange);
}

/* Form status messages */
.form-status {
    display: none;
    margin-top: 1.5rem;
    padding: 1rem 1.4rem;
    border-radius: var(--radius);
    align-items: center;
    gap: 0.8rem;
}

.form-status.show {
    display: flex;
}

.form-status i {
    font-size: 1.4rem;
    flex-shrink: 0;
}

.form-status p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.4;
}

.form-status-success {
    background: rgba(107, 125, 91, 0.15);
    border: 1px solid var(--sage-soft);
    color: var(--cream);
}

.form-status-success i {
    color: var(--sage-soft);
}

.form-status-error {
    background: rgba(212, 88, 44, 0.15);
    border: 1px solid var(--orange);
    color: var(--cream);
}

.form-status-error i {
    color: var(--orange);
}

/* Contact alternative info */
.contact-alt {
    text-align: center;
    margin: 2rem 0 1rem;
    color: rgba(244, 237, 228, 0.7);
    font-size: 0.95rem;
}

.contact-alt-link {
    color: var(--cream);
    text-decoration: none;
    border-bottom: 1px solid rgba(244, 237, 228, 0.3);
    padding-bottom: 0.1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.contact-alt-link:hover {
    color: var(--orange);
    border-color: var(--orange);
}

.contact-alt-sep {
    margin: 0 0.8rem;
    opacity: 0.4;
}

.contact-alt-meta {
    font-style: italic;
}

.contact-socials {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.contact-socials a {
    color: var(--cream);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-socials a:hover {
    color: var(--orange);
    transform: translateY(-3px);
}

/* =====================================================
   FOOTER
   ===================================================== */
.footer {
    background: var(--cream-deep);
    color: var(--ink);
    padding: 3rem 0;
    border-top: 1px solid rgba(26, 26, 26, 0.06);
}

.footer-brand {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: -0.02em;
    margin-bottom: 0.3rem;
}

.footer-brand span {
    color: var(--orange);
}

.footer-tagline,
.footer-copy {
    font-size: 0.9rem;
    color: var(--ink-soft);
    margin: 0;
}

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

/* Scroll-triggered reveals */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Blog content must ALWAYS be visible, even if JS fails or pages load oddly.
   This prevents the "scroll-but-no-content" problem on detail pages. */
.detail-content > *,
.detail-content > * > * {
    opacity: 1 !important;
}
.detail-content p,
.detail-content h2,
.detail-content h3,
.detail-content ul,
.detail-content ol,
.detail-content blockquote,
.detail-content .detail-image,
.detail-content > div {
    transform: none !important;
}

/* =====================================================
   BLOG OVERVIEW PAGE
   ===================================================== */
.blog-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(26, 26, 26, 0.08);
}

.filter-tag {
    background: transparent;
    border: 1.5px solid rgba(26, 26, 26, 0.15);
    color: var(--ink-soft);
    padding: 0.5rem 1.2rem;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s var(--transition-bounce);
    font-family: var(--font-body);
}

.filter-tag:hover {
    border-color: var(--fuchsia);
    color: var(--fuchsia);
    transform: translateY(-2px);
}

.filter-tag.active {
    background: var(--fuchsia);
    border-color: var(--fuchsia);
    color: var(--cream);
    box-shadow: 0 4px 14px var(--fuchsia-glow);
}

.blog-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.blog-list-item {
    display: block;
    text-decoration: none;
    color: var(--ink);
    padding: 2.5rem 0;
    border-bottom: 1px solid rgba(26, 26, 26, 0.08);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

.blog-list-item::before {
    content: '';
    position: absolute;
    left: -2rem;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 70%;
    background: var(--orange);
    transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.blog-list-item:hover {
    color: var(--ink);
    padding-left: 1.5rem;
}

.blog-list-item:hover::before {
    width: 4px;
}

.blog-list-item.featured {
    background: linear-gradient(135deg, rgba(212, 88, 44, 0.06) 0%, rgba(200, 157, 74, 0.04) 100%);
    margin: 0 -2rem;
    padding: 2.5rem 2rem;
    border-radius: var(--radius-lg);
    border-bottom: none;
    margin-bottom: 1rem;
}

.blog-list-item.featured::before {
    left: 0;
}

.blog-list-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
    margin-bottom: 1rem;
}

.blog-list-meta .blog-tag {
    background: rgba(212, 88, 44, 0.12);
    color: var(--orange);
    padding: 0.3rem 0.8rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.blog-list-meta .blog-date,
.blog-list-meta .blog-readtime {
    font-size: 0.85rem;
    color: var(--gray-mid);
    font-style: italic;
}

.blog-list-meta .blog-readtime::before {
    content: '· ';
    margin-right: 0.3rem;
}

.blog-list-item h2 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 0.8rem;
    color: var(--ink);
    transition: color 0.3s ease;
}

.blog-list-item:hover h2 {
    color: var(--orange);
}

.blog-list-item.featured h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
}

.blog-list-item p {
    font-size: 1.02rem;
    line-height: 1.6;
    color: var(--ink-soft);
    margin-bottom: 1rem;
    max-width: 720px;
}

.blog-list-item .blog-read {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--orange);
    transition: gap 0.3s ease;
}

.blog-list-item:hover .blog-read {
    gap: 0.8rem;
}

.blog-cta-section {
    margin-top: 5rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(26, 26, 26, 0.08);
}

@media (max-width: 768px) {
    .blog-list-item.featured {
        margin: 0;
        padding: 2rem 1.5rem;
    }
}
.detail-hero {
    padding: 9rem 0 5rem;
    background: var(--cream);
    border-bottom: 1px solid rgba(26, 26, 26, 0.06);
}

.detail-back {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--ink);
    text-decoration: none;
    font-weight: 500;
    margin-bottom: 2rem;
    transition: gap 0.3s ease, color 0.3s ease;
}

.detail-back:hover {
    gap: 0.9rem;
    color: var(--fuchsia);
}

.detail-title {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(2.5rem, 6vw, 5rem);
    line-height: 1;
    letter-spacing: -0.04em;
    margin: 1rem 0 1.5rem;
    color: var(--ink);
}

.detail-title em {
    font-style: italic;
    font-weight: 400;
    color: var(--orange);
}

.detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin: 2rem 0 1rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(26, 26, 26, 0.1);
}

.detail-meta-item {
    flex: 1;
    min-width: 180px;
}

.detail-meta-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gray-mid);
    margin-bottom: 0.4rem;
}

.detail-meta-value {
    font-family: var(--font-display);
    font-size: 1.15rem;
    color: var(--ink);
    font-weight: 500;
}

.detail-content {
    padding: 5rem 0;
    background: var(--cream);
}

.detail-content .container-xl {
    max-width: 820px;
}

.detail-content h2 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    letter-spacing: -0.02em;
    margin: 3rem 0 1rem;
    color: var(--ink);
}

.detail-content h3 {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.4rem;
    margin: 2rem 0 0.8rem;
    color: var(--ink);
}

.detail-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--ink-soft);
    margin-bottom: 1.4rem;
}

.detail-content blockquote {
    border-left: 4px solid var(--fuchsia);
    background: var(--cream-deep);
    padding: 1.5rem 2rem;
    margin: 2rem 0;
    border-radius: 0 var(--radius) var(--radius) 0;
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-style: italic;
    color: var(--ink);
    position: relative;
    transition: transform 0.3s var(--transition-bounce);
}

.detail-content blockquote::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 12px;
    font-size: 4rem;
    color: var(--fuchsia);
    opacity: 0.3;
    line-height: 1;
    font-family: var(--font-display);
}

.detail-content blockquote:hover {
    transform: translateX(4px);
}

.detail-content ul, .detail-content ol {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--ink-soft);
    margin-bottom: 1.4rem;
}

.detail-content li {
    margin-bottom: 0.6rem;
}

.detail-image {
    width: 100%;
    border-radius: var(--radius-lg);
    margin: 2rem 0;
    overflow: hidden;
}

.detail-image img {
    width: 100%;
    display: block;
}

/* Grid for multiple images side-by-side in blog content */
.detail-image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.detail-image-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius);
    display: block;
    transition: transform 0.4s var(--transition);
}

.detail-image-grid img:hover {
    transform: scale(1.02);
}

@media (max-width: 768px) {
    .detail-image-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.6rem;
    }
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 2.5rem 0;
}

@media (max-width: 768px) {
    .impact-grid { grid-template-columns: 1fr; }
}

.impact-card {
    background: var(--ink);
    color: var(--cream);
    padding: 2rem 1.5rem;
    border-radius: var(--radius-lg);
    text-align: center;
}

.impact-number {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 3rem;
    color: var(--orange);
    line-height: 1;
    margin-bottom: 0.4rem;
}

/* Alternate every other impact-number to fuchsia for vibrance */
.impact-card:nth-child(even) .impact-number {
    color: var(--fuchsia-soft);
}

.impact-label {
    font-size: 0.95rem;
    color: rgba(244, 237, 228, 0.7);
}

/* =====================================================
   RESPONSIVE TWEAKS
   ===================================================== */
@media (max-width: 768px) {
    .hero { padding: 7rem 0 5rem; }
    .about-section, .awards-section, .work-section, .blog-section, .contact-section {
        padding: 5rem 0;
    }
    .strengths-grid { grid-template-columns: 1fr; gap: 1rem; }
    .floating-tag { font-size: 0.75rem; padding: 0.45rem 0.9rem; }
    .about-badge { width: 100px; height: 100px; }
    .badge-center { font-size: 1.6rem; }
    .about-badge .label-circle { font-size: 0.6rem; }
    body { cursor: auto; }
    .custom-cursor, .custom-cursor-dot { display: none; }
}

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

/* =====================================================
   404 PAGE
   ===================================================== */
.page-404 {
    background: var(--ink);
    color: var(--cream);
    min-height: 100vh;
}

.error-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 9rem 0 5rem;
    position: relative;
    overflow: hidden;
    background: var(--ink);
}

.error-bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-display);
    font-weight: 900;
    font-size: clamp(20rem, 50vw, 55rem);
    color: rgba(212, 88, 44, 0.08);
    letter-spacing: -0.05em;
    pointer-events: none;
    user-select: none;
    z-index: 0;
    line-height: 1;
}

.error-eyebrow {
    color: var(--orange);
}

.error-title {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(3rem, 9vw, 8rem);
    line-height: 0.95;
    letter-spacing: -0.04em;
    color: var(--cream);
    margin: 1rem 0 1.5rem;
}

.error-title em {
    font-style: italic;
    font-weight: 400;
    color: var(--orange);
}

.error-subtitle {
    font-size: 1.15rem;
    line-height: 1.6;
    color: rgba(244, 237, 228, 0.7);
    max-width: 580px;
    margin: 0 auto 3rem;
}

/* Tea cup illustration */
.error-illustration {
    margin: 2rem 0 3rem;
    text-align: center;
}

.tea-cup {
    position: relative;
    display: inline-block;
    width: 120px;
    height: 140px;
}

.cup {
    font-size: 5rem;
    line-height: 1;
    animation: cupBob 4s ease-in-out infinite;
    display: inline-block;
}

@keyframes cupBob {
    0%, 100% { transform: translateY(0) rotate(-3deg); }
    50% { transform: translateY(-8px) rotate(3deg); }
}

.steam {
    position: absolute;
    bottom: 90px;
    width: 6px;
    height: 30px;
    background: linear-gradient(to top, rgba(244, 237, 228, 0.4), transparent);
    border-radius: 50%;
    animation: steamRise 2.5s ease-in-out infinite;
    opacity: 0;
}

.steam-1 {
    left: 40%;
    animation-delay: 0s;
}

.steam-2 {
    left: 50%;
    animation-delay: 0.6s;
    height: 40px;
}

.steam-3 {
    left: 60%;
    animation-delay: 1.2s;
}

@keyframes steamRise {
    0% { opacity: 0; transform: translateY(0) scaleX(1); }
    50% { opacity: 1; transform: translateY(-20px) scaleX(0.8); }
    100% { opacity: 0; transform: translateY(-40px) scaleX(0.4); }
}

.error-illustration-caption {
    font-family: var(--font-display);
    font-style: italic;
    color: var(--gold);
    font-size: 1rem;
    margin-top: 0.8rem;
}

.error-actions {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    margin: 2rem 0 3rem;
}

.error-actions .btn-primary-custom {
    background: var(--orange);
}

.error-actions .btn-primary-custom::before {
    background: var(--cream);
}

.error-actions .btn-primary-custom:hover {
    color: var(--ink);
}

.error-suggestions {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(244, 237, 228, 0.1);
}

.error-suggestions-label {
    font-size: 0.85rem;
    color: rgba(244, 237, 228, 0.5);
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
}

.error-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.6rem;
    align-items: center;
}

.error-links a {
    color: var(--cream);
    text-decoration: none;
    border-bottom: 1px solid rgba(244, 237, 228, 0.3);
    padding-bottom: 0.1rem;
    transition: all 0.3s ease;
}

.error-links a:hover {
    color: var(--orange);
    border-color: var(--orange);
}

.error-links .dot {
    color: var(--gray-mid);
    opacity: 0.5;
}

.page-404 .footer {
    background: rgba(244, 237, 228, 0.04);
    color: var(--cream);
    border-top: 1px solid rgba(244, 237, 228, 0.08);
}

.page-404 .footer-brand,
.page-404 .footer-tagline,
.page-404 .footer-copy {
    color: var(--cream);
}

.page-404 .footer-tagline,
.page-404 .footer-copy {
    color: rgba(244, 237, 228, 0.6);
}
