/* ============================================
   GWENDALIN ARANYA — v3
   The spirit of the original, refined to sell.
   Warm but sharp. Personal but professional.
   ============================================ */

:root {
    /* Warm base — the butter-yellow soul of the original */
    --bg: #FDFAF3;
    --bg-warm: #FBF6EC;
    --bg-cream: #F8F2E6;

    /* Original palette — elevated */
    --peri: #7B78E8;
    --peri-soft: #A5A3F0;
    --peri-pale: #E8E7FC;
    --orchid: #C48AE0;
    --orchid-soft: #DDB8EF;
    --orchid-pale: #F4E8FB;
    --mauve: #9A6B84;
    --mauve-deep: #7A4F68;
    --pink-warm: #F9D4E2;
    --ice: #E4F3F8;
    --mint: #DFF3EA;
    --gold: #E8D06E;
    --peach: #F5DCC0;

    /* Text */
    --ink: #1C1128;
    --text: #3A2E48;
    --text-mid: #6B5E7A;
    --text-light: #9A8FA6;

    /* Fonts */
    --serif: 'Playfair Display', Georgia, serif;
    --sans: 'DM Sans', -apple-system, sans-serif;
    --hand: 'Caveat', cursive;

    --max: 1280px;
    --nav-h: 64px;
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
    --ease-in: cubic-bezier(0.55, 0, 1, 0.45);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
    font-family: var(--sans);
    font-weight: 400;
    color: var(--text);
    background: var(--bg);
    overflow-x: hidden;
    line-height: 1.65;
    font-size: 15px;
}

::selection { background: var(--peri-pale); color: var(--ink); }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { border: none; background: none; cursor: pointer; color: inherit; font-family: inherit; }

.container { max-width: var(--max); margin: 0 auto; padding: 0 clamp(1.25rem, 4vw, 3rem); }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    padding: 0.85rem 2rem;
    border-radius: 6px;
    transition: all 0.35s var(--ease);
    white-space: nowrap;
}

.btn-light { background: white; color: var(--ink); }
.btn-light:hover { background: var(--peri-pale); transform: translateY(-1px); }

.btn-ghost { background: transparent; color: white; border: 1.5px solid rgba(255,255,255,0.4); }
.btn-ghost:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.7); }

.btn-primary { background: var(--peri); color: white; }
.btn-primary:hover { background: var(--ink); transform: translateY(-1px); }

.btn-outline { background: transparent; color: var(--peri); border: 1.5px solid var(--peri-soft); margin: 2.5rem auto 0; display: block; width: fit-content; }
.btn-outline:hover { background: var(--peri); color: white; }

/* ===== NAV ===== */
.nav {
    position: fixed; top: 0; left: 0; right: 0; height: var(--nav-h);
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 clamp(1.25rem, 3vw, 2.5rem);
    z-index: 1000;
    background: rgba(253,250,243,0.85);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid transparent;
    transition: border-color 0.4s, box-shadow 0.4s;
}

.nav.scrolled { border-color: rgba(123,120,232,0.08); box-shadow: 0 1px 12px rgba(28,17,40,0.04); }

.nav-logo { display: flex; flex-direction: column; line-height: 1.15; }
.logo-name { font-family: var(--serif); font-size: 1.1rem; font-weight: 500; color: var(--ink); }
.logo-sub { font-size: 0.6rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-light); }

.nav-links { display: flex; gap: 1.75rem; }
.nav-links a {
    font-size: 0.73rem; font-weight: 500; letter-spacing: 0.07em; text-transform: uppercase;
    color: var(--text-mid); transition: color 0.25s; position: relative;
}
.nav-links a::after {
    content: ''; position: absolute; bottom: -3px; left: 0; width: 0; height: 1.5px;
    background: var(--peri); transition: width 0.3s var(--ease);
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { width: 100%; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav-toggle span { display: block; width: 20px; height: 1.5px; background: var(--ink); transition: all 0.3s var(--ease); }
.nav-toggle.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-menu {
    position: fixed; inset: 0; background: rgba(253,250,243,0.98); backdrop-filter: blur(20px);
    z-index: 999; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1.75rem;
    opacity: 0; pointer-events: none; transition: opacity 0.35s var(--ease);
}
.mobile-menu.active { opacity: 1; pointer-events: auto; }
.mobile-menu a { font-family: var(--serif); font-size: 1.8rem; color: var(--ink); transition: color 0.25s; }
.mobile-menu a:hover { color: var(--peri); }

/* ===== HERO ===== */
.hero {
    position: relative; min-height: 100vh; min-height: 100dvh;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden; background: var(--ink);
}

.hero-paintings { position: absolute; inset: 0; }

.hero-painting {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    opacity: 0; transition: opacity 1.8s var(--ease-in);
    transform: scale(1.06);
    animation: heroZoom 18s linear infinite alternate;
}

.hero-painting.active { opacity: 1; }

@keyframes heroZoom {
    from { transform: scale(1); }
    to { transform: scale(1.08); }
}

.hero-gradient {
    position: absolute; inset: 0; z-index: 1;
    background:
        linear-gradient(180deg, rgba(28,17,40,0.25) 0%, rgba(28,17,40,0.15) 35%, rgba(28,17,40,0.55) 70%, rgba(28,17,40,0.92) 100%),
        radial-gradient(ellipse at 50% 80%, rgba(123,120,232,0.08) 0%, transparent 60%);
}

/* Warm color edges — homage to original columns */
.hero-edge {
    position: absolute; top: 0; bottom: 0; width: clamp(4px, 0.8vw, 10px); z-index: 2;
}
.hero-edge-l { left: 0; background: linear-gradient(180deg, var(--peri-soft), var(--peri) 50%, var(--peri-soft)); opacity: 0.6; }
.hero-edge-r { right: 0; background: linear-gradient(180deg, var(--orchid-soft), var(--orchid) 50%, var(--orchid-soft)); opacity: 0.6; }

.hero-body {
    position: relative; z-index: 3; text-align: center;
    max-width: 680px; padding: 0 1.5rem;
}

.hero-badge {
    display: inline-block;
    font-size: 0.65rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--gold); border: 1px solid rgba(232,208,110,0.35);
    padding: 0.4rem 1rem; border-radius: 100px;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-family: var(--serif); font-weight: 400; color: white;
    font-size: clamp(3rem, 8vw, 6rem); line-height: 1;
    margin-bottom: 1.25rem;
}
.hero-title em { font-style: italic; color: var(--orchid-soft); }

.hero-quote-wrap {
    background: rgba(154,107,132,0.35);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(249,212,226,0.15);
    border-radius: 8px;
    padding: clamp(1rem, 2.5vw, 1.5rem) clamp(1.25rem, 3vw, 2rem);
    margin-bottom: 2rem;
}

.hero-quote {
    font-family: var(--hand);
    font-size: clamp(1.1rem, 2.2vw, 1.4rem);
    color: rgba(255,255,255,0.92);
    line-height: 1.7;
}

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

.hero-scroll {
    position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
    z-index: 3; display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
}
.hero-scroll span { font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.4); }
.hero-scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, rgba(255,255,255,0.3), transparent); animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.2; } }

/* ===== PROOF BAR ===== */
.proof-bar {
    display: flex; justify-content: center; align-items: center; flex-wrap: wrap;
    gap: 0.5rem 1.25rem;
    padding: 1rem 1.5rem;
    background: var(--ice);
    border-bottom: 1px solid rgba(123,120,232,0.06);
}
.proof-bar span { font-size: 0.68rem; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-mid); }
.proof-dot { width: 3px; height: 3px; border-radius: 50%; background: var(--peri-soft); }

/* ===== SECTION HEADERS ===== */
.sh { text-align: center; margin-bottom: clamp(2rem, 4vw, 3rem); }
.sh-label { display: block; font-size: 0.65rem; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase; color: var(--peri); margin-bottom: 0.6rem; }
.sh-title { font-family: var(--serif); font-size: clamp(1.7rem, 4vw, 2.8rem); font-weight: 400; color: var(--ink); line-height: 1.15; }
.sh-sub { font-size: 0.88rem; color: var(--text-mid); margin-top: 0.6rem; }

/* ===== FEATURED CAROUSEL ===== */
.featured { padding: clamp(3rem, 7vh, 5rem) 0; background: var(--bg-warm); }
.carousel-wrap { overflow: hidden; }
.carousel { display: flex; transition: transform 0.65s var(--ease); cursor: grab; user-select: none; }
.carousel:active { cursor: grabbing; }

.car-slide {
    min-width: 100%; padding: 0 clamp(1.5rem, 5vw, 4rem);
    display: flex; align-items: center; justify-content: center; gap: clamp(1.5rem, 4vw, 3.5rem);
}

.car-img {
    flex: 1; max-width: 520px; cursor: pointer; border-radius: 8px; overflow: hidden;
    box-shadow: 0 8px 40px rgba(28,17,40,0.08);
    transition: box-shadow 0.4s;
}
.car-img:hover { box-shadow: 0 12px 50px rgba(28,17,40,0.14); }
.car-img img { width: 100%; height: auto; max-height: 62vh; object-fit: contain; transition: transform 0.7s var(--ease); }
.car-img:hover img { transform: scale(1.015); }

.car-info { flex: 0 0 260px; max-width: 260px; }
.car-info h3 { font-family: var(--serif); font-size: 1.5rem; font-weight: 500; color: var(--ink); margin-bottom: 0.4rem; line-height: 1.25; }
.car-info .c-meta { font-size: 0.75rem; color: var(--text-light); margin-bottom: 0.6rem; }
.car-info .c-desc { font-size: 0.85rem; color: var(--text-mid); line-height: 1.7; margin-bottom: 0.8rem; }
.car-info .c-price { font-family: var(--serif); font-size: 1.1rem; color: var(--mauve-deep); font-weight: 500; }
.car-info .c-inquire {
    display: inline-block; margin-top: 0.6rem;
    font-size: 0.7rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase;
    color: var(--peri); border-bottom: 1px solid var(--peri-soft);
    padding-bottom: 2px; transition: color 0.25s;
}
.car-info .c-inquire:hover { color: var(--ink); }

.car-info .c-buy {
    display: inline-block; margin-top: 0.9rem; margin-right: 1rem;
    font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
    color: white; background: var(--peri);
    padding: 0.7rem 1.4rem; border-radius: 3px;
    transition: background 0.25s var(--ease), transform 0.2s var(--ease);
}
.car-info .c-buy:hover { background: var(--ink); transform: translateY(-1px); }

.carousel-ui { display: flex; align-items: center; justify-content: center; gap: 1rem; margin-top: 2rem; }
.car-btn {
    width: 40px; height: 40px; display: flex; align-items: center; justify-content: center;
    border-radius: 50%; border: 1.5px solid var(--peri-soft); color: var(--peri);
    transition: all 0.25s var(--ease);
}
.car-btn:hover { background: var(--peri); color: white; border-color: var(--peri); }
.car-dots { display: flex; gap: 5px; }
.car-dot {
    width: 7px; height: 7px; border-radius: 50%; background: var(--peri-pale);
    border: none; cursor: pointer; transition: all 0.3s var(--ease);
}
.car-dot.active { background: var(--peri); width: 20px; border-radius: 4px; }

/* ===== ART STRIP ===== */
.art-strip { padding: 1.25rem 0; overflow: hidden; background: var(--orchid-pale); }
.art-strip-track { display: flex; gap: 0.6rem; animation: strip 50s linear infinite; width: max-content; }
.art-strip-track:hover { animation-play-state: paused; }
.art-strip-item {
    width: 170px; height: 120px; flex-shrink: 0; overflow: hidden;
    border-radius: 5px; opacity: 0.7; cursor: pointer;
    transition: opacity 0.3s, transform 0.3s var(--ease);
    box-shadow: 0 2px 8px rgba(28,17,40,0.05);
}
.art-strip-item:hover { opacity: 1; transform: scale(1.04); }
.art-strip-item img { width: 100%; height: 100%; object-fit: cover; }
@keyframes strip { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ===== EXHIBITION ===== */
.exhibition { padding: clamp(3rem, 7vh, 5rem) 0; background: linear-gradient(180deg, var(--orchid-pale) 0%, var(--cream) 100%); }
.exhibition .sh-sub { max-width: 600px; margin: 0 auto; }
.exhibition-collab-link { color: var(--peri); border-bottom: 1px solid var(--peri-soft); transition: color 0.25s; }
.exhibition-collab-link:hover { color: var(--ink); }
.exhibition-booth { margin: 2.5rem auto; max-width: 900px; border-radius: 6px; overflow: hidden; box-shadow: 0 8px 30px rgba(0,0,0,0.12); }
.exhibition-booth img { width: 100%; display: block; }
.exhibition-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    margin-top: 2.5rem;
}
.ex-item { text-align: center; }
.ex-img {
    border-radius: 4px; overflow: hidden; cursor: pointer;
    aspect-ratio: 1; background: var(--orchid-pale);
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.ex-img:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.1); }
.ex-img img { width: 100%; height: 100%; object-fit: cover; }
.ex-info { padding-top: 1rem; }
.ex-title { font-family: var(--serif); font-size: 1.1rem; font-weight: 500; color: var(--ink); }
.ex-meta { font-size: 0.78rem; color: var(--text-mid); margin-top: 0.3rem; letter-spacing: 0.03em; }
.ex-price { font-family: var(--serif); font-size: 1rem; color: var(--mauve-deep); font-weight: 500; margin-top: 0.5rem; }
.ex-buy {
    display: inline-block; margin-top: 0.7rem;
    font-size: 0.7rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
    color: white; background: var(--peri);
    padding: 0.6rem 1.2rem; border-radius: 3px;
    transition: background 0.25s var(--ease), transform 0.2s var(--ease);
}
.ex-buy:hover { background: var(--ink); transform: translateY(-1px); }

/* ===== GALLERY ===== */
.gallery-section { padding: clamp(3rem, 7vh, 5rem) 0; }

.gallery-filters { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.35rem; margin-bottom: clamp(1.5rem, 3vw, 2.5rem); }
.fil {
    font-size: 0.7rem; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase;
    padding: 0.45rem 0.9rem; border-radius: 100px;
    color: var(--text-mid); border: 1.5px solid rgba(123,120,232,0.15);
    transition: all 0.25s var(--ease);
}
.fil:hover { border-color: var(--peri); color: var(--ink); }
.fil.active { background: var(--peri); color: white; border-color: var(--peri); }

.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 0.9rem; }

.g-item {
    position: relative; overflow: hidden; cursor: pointer;
    border-radius: 6px; background: white;
    box-shadow: 0 2px 10px rgba(28,17,40,0.04);
    transition: box-shadow 0.35s, transform 0.3s var(--ease);
    animation: fadeUp 0.45s var(--ease) both;
}
.g-item:hover { box-shadow: 0 10px 35px rgba(28,17,40,0.1); transform: translateY(-3px); }

.g-item img {
    width: 100%; aspect-ratio: 1; object-fit: cover;
    transition: transform 0.5s var(--ease);
    opacity: 0; background: var(--bg-cream);
}
.g-item img.loaded { opacity: 1; transition: opacity 0.35s, transform 0.5s var(--ease); }
.g-item:hover img { transform: scale(1.04); }

.g-overlay {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 2.5rem 0.8rem 0.8rem;
    background: linear-gradient(to top, rgba(28,17,40,0.82) 0%, transparent 100%);
    opacity: 0; transition: opacity 0.35s;
}
.g-item:hover .g-overlay { opacity: 1; }
.g-title { font-family: var(--serif); font-size: 0.92rem; color: white; font-weight: 400; }
.g-meta { font-size: 0.65rem; color: rgba(255,255,255,0.6); margin-top: 0.15rem; }

.load-more.hidden { display: none; }

@keyframes fadeUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }

/* ===== ABOUT ===== */
.about { padding: clamp(3rem, 7vh, 5rem) 0; background: var(--bg-cream); }

.about-grid {
    display: grid; grid-template-columns: 280px 1fr; gap: clamp(2.5rem, 5vw, 5rem); align-items: start;
}

.about-img { position: relative; position: sticky; top: calc(var(--nav-h) + 2rem); }
.about-img img { width: 100%; border-radius: 8px; box-shadow: 0 8px 30px rgba(28,17,40,0.08); }
.about-img-accent {
    position: absolute; top: 12px; left: 12px; right: -12px; bottom: -12px;
    border: 2px solid var(--orchid-soft); border-radius: 8px; z-index: -1; opacity: 0.5;
}

.about-body .sh-label { text-align: left; }
.about-body .sh-title { text-align: left; margin-bottom: 0.4rem; }
.about-role { font-size: 0.82rem; color: var(--mauve); margin-bottom: 1.5rem; letter-spacing: 0.02em; }
.about-body p { font-size: 0.9rem; color: var(--text); line-height: 1.85; margin-bottom: 0.9rem; }

.about-callout {
    background: var(--mauve);
    padding: 4px; border-radius: 8px; margin: 1.5rem 0;
}
.about-callout p {
    background: var(--pink-warm);
    padding: 1.25rem 1.5rem; border-radius: 6px;
    font-family: var(--hand); font-size: 1.05rem; color: var(--ink);
    line-height: 1.85; margin: 0;
}

.about-stats {
    display: flex; gap: 2rem; margin-top: 1.5rem; padding-top: 1.5rem;
    border-top: 1px solid rgba(28,17,40,0.06);
}
.about-stats div { text-align: left; }
.about-stats strong { display: block; font-family: var(--serif); font-size: 1.3rem; color: var(--mauve-deep); font-weight: 500; }
.about-stats span { font-size: 0.65rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-light); }

/* ===== ZEN ===== */
.zen { padding: clamp(3rem, 7vh, 5rem) 0; background: var(--mint); }
.zen-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.zen-card {
    padding: clamp(1.5rem, 3vw, 2rem); border-radius: 8px;
    background: rgba(253,250,243,0.75); backdrop-filter: blur(6px);
}
.zen-card:first-child { grid-column: 1 / -1; }
.zen-card h3 { font-family: var(--serif); font-size: 1.2rem; font-weight: 500; color: var(--ink); margin-bottom: 0.6rem; }
.zen-card p { font-size: 0.88rem; color: var(--text); line-height: 1.85; margin-bottom: 0.6rem; }
.zen-card p:last-child { margin-bottom: 0; }

/* ===== WRITINGS TEASE ===== */
.writings-tease { padding: clamp(3rem, 7vh, 5rem) 0; background: var(--orchid-pale); text-align: center; }
.wt-quote {
    font-family: var(--hand); font-size: clamp(1.1rem, 2.2vw, 1.35rem);
    color: var(--ink); line-height: 1.85;
    max-width: 550px; margin: 1.25rem auto 2rem; border: none; padding: 0;
}
.wt-links { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ===== CV ===== */
.cv { padding: clamp(3rem, 7vh, 5rem) 0; background: var(--bg-warm); }
.cv-body { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 4vw, 4rem); }
.cv-col h3 {
    font-family: var(--serif); font-size: 1.15rem; font-weight: 500; color: var(--mauve-deep);
    margin-bottom: 0.8rem; padding-bottom: 0.5rem; border-bottom: 2px solid var(--peri-pale);
}
.cv-col h3:not(:first-child) { margin-top: 1.5rem; }
.cv-col dl { display: grid; grid-template-columns: 75px 1fr; gap: 0.3rem 0.8rem; font-size: 0.84rem; color: var(--text); }
.cv-col dt { font-family: var(--serif); color: var(--text-light); }
.cv-col dd { margin: 0; line-height: 1.55; }
.cv-col dd strong { color: var(--ink); font-weight: 500; }
.cv-col ul { list-style: none; }
.cv-col li {
    font-size: 0.82rem; color: var(--text); line-height: 1.55;
    padding: 0.2rem 0 0.2rem 0.8rem; border-left: 2px solid var(--peri-pale); margin-bottom: 0.15rem;
}
.cv-col li em { color: var(--mauve); font-style: normal; }
.cv-col p { font-size: 0.82rem; color: var(--text); line-height: 1.6; }
.cv-col p em { color: var(--mauve); }

/* ===== GUEST ===== */
.guest { padding: clamp(3rem, 7vh, 5rem) 0; background: var(--ice); }
.guest-stmt {
    font-family: var(--serif); font-size: 1rem; font-style: italic;
    color: var(--text); line-height: 1.8; text-align: center;
    max-width: 600px; margin: 0 auto 2rem;
}
.guest-works { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.guest-imgs { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 0.35rem; margin-bottom: 0.6rem; }
.guest-imgs img {
    width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 4px;
    transition: transform 0.3s var(--ease); cursor: pointer;
}
.guest-imgs img:hover { transform: scale(1.03); }
.guest-piece h3 { font-family: var(--serif); font-size: 1.1rem; color: var(--ink); font-weight: 400; }
.guest-piece p { font-size: 0.78rem; color: var(--text-mid); }
.guest-price { font-family: var(--serif); font-size: 0.95rem; color: var(--mauve-deep); font-weight: 500; }

/* ===== CONTACT ===== */
.contact { padding: clamp(3rem, 7vh, 5rem) 0; background: var(--bg-cream); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 5rem); align-items: start; }
.contact-left .sh-label { text-align: left; }
.contact-left .sh-title { text-align: left; margin-bottom: 0.8rem; }
.contact-left p { font-size: 0.9rem; color: var(--text); line-height: 1.75; margin-bottom: 1.5rem; }
.contact-details { display: flex; flex-direction: column; gap: 0.35rem; margin-bottom: 1rem; }
.contact-link {
    font-family: var(--serif); font-size: 1.3rem; color: var(--ink); font-weight: 400;
    transition: color 0.25s; width: fit-content;
}
.contact-link:hover { color: var(--peri); }
.contact-phone { font-size: 1rem; color: var(--text-mid); }
.contact-loc { font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-light); }

.contact-services { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.cs-item {
    padding: 1rem 1.25rem; border-radius: 8px;
    background: white; box-shadow: 0 2px 8px rgba(28,17,40,0.03);
    transition: box-shadow 0.3s, transform 0.3s var(--ease);
}
.cs-item:hover { box-shadow: 0 6px 20px rgba(28,17,40,0.07); transform: translateY(-2px); }
.cs-item h4 { font-family: var(--serif); font-size: 0.95rem; color: var(--ink); font-weight: 500; margin-bottom: 0.2rem; }
.cs-item p { font-size: 0.75rem; color: var(--text-mid); line-height: 1.5; margin: 0; }

/* ===== REFUGES ===== */
.refuges {
    display: flex; justify-content: center; gap: clamp(0.75rem, 3vw, 2.5rem);
    padding: 1rem 1rem; background: var(--ice);
    border-top: 1px solid rgba(123,120,232,0.06);
}
.refuges span { font-family: var(--serif); font-size: 0.82rem; font-style: italic; color: var(--text-mid); opacity: 0.7; }

/* ===== FOOTER ===== */
.footer { padding: 1.25rem; text-align: center; background: var(--bg); }
.footer p { font-size: 0.68rem; color: var(--text-light); }

/* ===== LIGHTBOX ===== */
.lightbox {
    position: fixed; inset: 0; z-index: 2000;
    background: rgba(28,17,40,0.94); backdrop-filter: blur(16px);
    opacity: 0; pointer-events: none; transition: opacity 0.4s var(--ease);
    overflow-y: auto;
}
.lightbox.active { opacity: 1; pointer-events: auto; }

.lb-x {
    position: fixed; top: 1rem; right: 1.25rem; z-index: 2001;
    font-size: 2.2rem; color: rgba(255,255,255,0.6); transition: color 0.25s; line-height: 1;
}
.lb-x:hover { color: white; }

.lb-arr {
    position: fixed; top: 50%; transform: translateY(-50%); z-index: 2001;
    color: rgba(255,255,255,0.5); transition: color 0.25s;
}
.lb-arr-l { left: 1rem; }
.lb-arr-r { right: 1rem; }
.lb-arr:hover { color: white; }

.lb-body {
    min-height: 100vh; display: flex; align-items: center; justify-content: center;
    gap: clamp(2rem, 4vw, 3.5rem); padding: clamp(4rem, 6vh, 5rem) clamp(3rem, 5vw, 5rem);
}

.lb-img-w { flex: 1; max-width: 620px; display: flex; align-items: center; justify-content: center; }
.lb-img { max-width: 100%; max-height: 80vh; object-fit: contain; border-radius: 4px; box-shadow: 0 16px 50px rgba(0,0,0,0.3); }

.lb-info { flex: 0 0 280px; max-width: 280px; color: white; }
.lb-info h3 { font-family: var(--serif); font-size: 1.7rem; font-weight: 400; margin-bottom: 0.4rem; line-height: 1.2; }
.lb-info .lb-year { font-size: 0.68rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--peri-soft); margin-bottom: 0.6rem; }
.lb-info .lb-medium, .lb-info .lb-dimensions { font-size: 0.8rem; color: rgba(255,255,255,0.55); margin-bottom: 0.15rem; }
.lb-info .lb-dimensions { margin-bottom: 0.9rem; padding-bottom: 0.9rem; border-bottom: 1px solid rgba(255,255,255,0.08); }
.lb-info .lb-description { font-size: 0.85rem; color: rgba(255,255,255,0.65); line-height: 1.75; margin-bottom: 0.9rem; }
.lb-info .lb-price { font-family: var(--serif); font-size: 1.15rem; color: var(--orchid-soft); font-weight: 500; }
.lb-info .lb-sold { font-family: var(--serif); font-size: 0.92rem; color: var(--pink-warm); font-style: italic; }
.lb-info .lb-series {
    display: inline-block; font-size: 0.62rem; letter-spacing: 0.08em; text-transform: uppercase;
    color: var(--pink-warm); border: 1px solid var(--pink-warm); padding: 0.2rem 0.55rem;
    border-radius: 100px; margin-bottom: 0.6rem;
}
.lb-info .lb-inquire {
    display: inline-block; margin-top: 0.8rem;
    font-size: 0.72rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase;
    color: var(--peri-soft); border-bottom: 1px solid var(--peri-soft);
    padding-bottom: 2px; cursor: pointer; transition: color 0.25s;
}
.lb-info .lb-inquire:hover { color: white; }

.lb-info .lb-buy {
    display: inline-block; margin-top: 1rem; margin-right: 1rem;
    font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--ink); background: white;
    padding: 0.75rem 1.5rem; border-radius: 3px;
    transition: transform 0.2s var(--ease), background 0.25s var(--ease);
}
.lb-info .lb-buy:hover { background: var(--peri-soft); transform: translateY(-1px); }

/* ===== REVEAL ===== */
.reveal { opacity: 0; transform: translateY(25px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
.reveal.revealed { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .car-slide { flex-direction: column; gap: 1.5rem; }
    .car-info { flex: none; max-width: 420px; text-align: center; }
    .about-grid { grid-template-columns: 1fr; }
    .about-img { max-width: 220px; margin: 0 auto; position: static; }
    .about-body .sh-label, .about-body .sh-title { text-align: center; }
    .about-role { text-align: center; }
    .lb-body { flex-direction: column; padding: 4rem 1.5rem 2rem; }
    .lb-info { flex: none; max-width: 420px; text-align: center; }
    .lb-arr { display: none; }
    .zen-cols { grid-template-columns: 1fr; }
    .zen-card:first-child { grid-column: auto; }
    .cv-body { grid-template-columns: 1fr; gap: 2rem; }
    .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .contact-left .sh-label, .contact-left .sh-title { text-align: center; }
    .contact-left p { text-align: center; }
    .contact-details { align-items: center; }
    .contact-loc { text-align: center; }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-toggle { display: flex; }
    .gallery-grid { grid-template-columns: repeat(auto-fill, minmax(145px, 1fr)); gap: 0.5rem; }
    .g-overlay { opacity: 1; }
    .guest-works { grid-template-columns: 1fr; }
    .refuges { flex-direction: column; gap: 0.15rem; text-align: center; }
    .art-strip-item { width: 130px; height: 92px; }
    .proof-bar { gap: 0.3rem 0.8rem; }
    .hero-edge { width: 3px; }
    .contact-services { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .gallery-grid { grid-template-columns: 1fr 1fr; gap: 0.4rem; }
    .fil { font-size: 0.62rem; padding: 0.35rem 0.65rem; }
    .about-stats { flex-wrap: wrap; gap: 1.25rem; }
    .hero-actions { flex-direction: column; align-items: center; }
}

@media print {
    .nav, .lightbox, .carousel-ui, .art-strip, .gallery-filters, .load-more, .mobile-menu, .hero-scroll, .proof-bar { display: none; }
    body { background: #fff; }
}
