/* ============================================
   THE GALL — Art Gallery & Marketplace
   Design System & Global Styles
   ============================================ */

:root {
    --black: #1a1a1a;
    --dark: #333333;
    --gray: #666666;
    --mid-gray: #999999;
    --light-gray: #e8e8e8;
    --bg-light: #f0f0f0;
    --bg-section: #f5f5f5;
    --white: #ffffff;
    --font-heading: 'Bricolage Grotesque', sans-serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --max-width: 1400px;
    --header-height: 90px;
    --ticker-height: 32px;
    --side-padding: 80px;
    --transition: 0.3s ease;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body { font-family: var(--font-sans); font-size: 15px; line-height: 1.7; color: var(--black); background: var(--white); overflow-x: hidden; }
a { text-decoration: none; color: inherit; transition: opacity var(--transition); }
a:hover { opacity: 0.7; }
ul, ol { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; font-size: inherit; }

/* ---- Typography ---- */
h1, h2, h3, h4, h5 { font-family: var(--font-heading); font-weight: 400; line-height: 1.2; }
h1 { font-size: clamp(1.875rem, 3.75vw, 3.375rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 3rem); letter-spacing: -0.02em; }
h3 { font-size: clamp(1.3rem, 2vw, 1.8rem); }
h4 { font-size: 1.1rem; font-family: var(--font-sans); font-weight: 600; }
p { color: var(--dark); }
.text-small { font-size: 13px; }
.text-serif { font-family: var(--font-heading); }

/* ---- Layout ---- */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 var(--side-padding); }
.section { padding: 100px 0; }
.section--gray { background: var(--bg-light); }
.section--dark { background: var(--black); color: var(--white); }
.section--dark p { color: rgba(255,255,255,0.8); }

/* ============================================
   TICKER BAR
   ============================================ */
.ticker {
    background: var(--white);
    height: var(--ticker-height);
    overflow: hidden;
    border-bottom: 1px solid var(--light-gray);
    position: relative;
    z-index: 100;
}
.ticker__track {
    display: flex;
    animation: ticker-scroll 30s linear infinite;
    white-space: nowrap;
    height: 100%;
    align-items: center;
}
.ticker__item {
    font-size: 11px;
    letter-spacing: 0.05em;
    color: var(--gray);
    padding: 0 12px;
    flex-shrink: 0;
}
.ticker__item::after {
    content: '·';
    margin-left: 24px;
    color: var(--mid-gray);
}
@keyframes ticker-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.header {
    position: sticky;
    top: 0;
    z-index: 90;
    background: var(--white);
    height: var(--header-height);
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--light-gray);
}
.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--side-padding);
}
.header__left {
    display: flex;
    align-items: center;
    gap: 36px;
}
.header__hamburger {
    width: 22px;
    height: 16px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
}
.header__hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--black);
    transition: var(--transition);
}
.header__nav {
    display: flex;
    gap: 32px;
}
.header__nav a {
    font-size: 14px;
    letter-spacing: 0.02em;
    color: var(--dark);
    position: relative;
}
.header__nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--black);
    transition: width var(--transition);
}
.header__nav a:hover { opacity: 1; }
.header__nav a:hover::after { width: 100%; }
.header__nav a.active::after { width: 100%; }

/* Nav Dropdown */
.nav-dropdown {
    position: relative;
}
.nav-dropdown__menu {
    position: absolute;
    top: calc(100% + 14px);
    left: -20px;
    min-width: 240px;
    background: var(--white);
    border: 1px solid var(--light-gray);
    padding: 12px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(4px);
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
    z-index: 100;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.nav-dropdown__menu::before {
    content: '';
    position: absolute;
    top: -18px;
    left: 0;
    width: 100%;
    height: 18px;
}
.nav-dropdown:hover .nav-dropdown__menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.nav-dropdown__menu a {
    display: block;
    padding: 8px 24px;
    font-size: 13px;
    color: var(--dark);
    transition: background 0.15s;
}
.nav-dropdown__menu a:hover {
    background: var(--bg-light);
    opacity: 1;
}
.nav-dropdown__menu a::after {
    display: none;
}
.nav-dropdown__all {
    border-top: 1px solid var(--light-gray);
    margin-top: 8px;
    padding-top: 14px !important;
    font-weight: 500;
    font-size: 12px !important;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--mid-gray) !important;
}

/* Logo */
.logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    height: 100%;
}
.logo img {
    height: 56px;
    width: auto;
    display: block;
}

/* Right Icons */
.header__icons {
    display: none;
}
.header__icon {
    width: 22px;
    height: 22px;
    color: var(--black);
    transition: opacity var(--transition);
}
.header__icon:hover { opacity: 0.5; }
.header__icon svg { width: 100%; height: 100%; }

/* Header Saved / Collection Heart */
.header__saved {
    display: flex;
    align-items: center;
    gap: 4px;
    width: 22px;
    height: 22px;
    position: relative;
    margin-right: 12px;
}
.header__saved svg {
    width: 100%;
    height: 100%;
}
.header__saved-count {
    position: absolute;
    top: -6px;
    right: -8px;
    background: var(--black);
    color: var(--white);
    font-size: 10px;
    font-weight: 600;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

/* Header CTA */
.header__cta {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.02em;
    padding: 10px 24px;
    border: 1px solid var(--black);
    color: var(--black);
    transition: all var(--transition);
    white-space: nowrap;
}
.header__cta:hover {
    background: var(--black);
    color: var(--white);
    opacity: 1;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: var(--white);
    z-index: 200;
    transition: left 0.4s ease;
    padding: 30px;
    display: flex;
    flex-direction: column;
}
.mobile-menu.is-open { left: 0; }
.mobile-menu__close {
    align-self: flex-end;
    font-size: 28px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.mobile-menu__nav {
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.mobile-menu__nav a {
    font-family: var(--font-heading);
    font-size: 28px;
    color: var(--black);
}
.mobile-menu__sub {
    display: none;
    flex-direction: column;
    gap: 14px;
    padding-left: 24px;
    margin-top: -10px;
}
.mobile-menu__sub.is-open {
    display: flex;
}
@media (hover: hover) {
    .mobile-menu__toggle:hover + .mobile-menu__sub {
        display: flex;
    }
    .mobile-menu__sub:hover {
        display: flex;
    }
}
.mobile-menu__sub a {
    font-family: var(--font-sans);
    font-size: 16px;
    color: var(--gray);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    height: calc(100vh - var(--header-height) - var(--ticker-height));
    min-height: 500px;
    max-height: 900px;
    overflow: hidden;
}
.hero__slides {
    position: relative;
    width: 100%;
    height: 100%;
}
.hero__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero__slide.is-active { opacity: 1; }
.hero__slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(0.5);
}
.hero__slide:nth-child(1) .hero__slide-bg {
    background-image: url('../images/hero/hero-banner-02.jpg');
}
.hero__slide:nth-child(2) .hero__slide-bg {
    background-image: url('../images/hero/hero-banner-03.jpg');
}
.hero__slide:nth-child(3) .hero__slide-bg {
    background-image: url('../images/hero/hero-banner-04.jpg');
}
.hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    padding: 0 20px;
}
.hero__tagline {
    font-family: var(--font-heading);
    font-weight: 200;
    font-size: clamp(1.35rem, 3vw, 2.4rem);
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: -0.02em;
}
.dot {
    font-size: 0.5em;
    font-weight: 700;
    vertical-align: baseline;
}
.hero__tagline .dot {
    color: var(--white);
}
.hero__content--left {
    text-align: left;
    max-width: none;
    width: 100%;
    padding: 0 60px;
}
.hero__content--left .hero__tagline {
    max-width: 650px;
}
.hero__content--left .hero__subtitle {
    margin-left: 0;
    margin-right: 0;
    text-align: left;
    max-width: 500px;
}
.hero__subtitle {
    font-size: clamp(0.85rem, 1.5vw, 1.05rem);
    font-weight: 300;
    color: rgba(255,255,255,0.85);
    margin-top: 16px;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    text-align: center;
}
.hero__cta {
    display: inline-block;
    margin-top: 28px;
    padding: 14px 36px;
    border: 1px solid rgba(255,255,255,0.6);
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.02em;
    text-decoration: none;
    transition: background 0.3s, border-color 0.3s;
}
.hero__cta:hover {
    background: rgba(255,255,255,0.15);
    border-color: var(--white);
}
.hero__dots {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 5;
}
.hero__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: background var(--transition);
}
.hero__dot.is-active { background: var(--white); }

/* ============================================
   HOME CONTACT FORM SECTION
   ============================================ */
.contact-form-section {
    display: flex;
    gap: 60px;
    align-items: center;
}
.contact-form-section__image {
    flex: 0 0 40%;
}
.contact-form-section__image img {
    width: 100%;
    height: auto;
    display: block;
}
.contact-form-section__form {
    flex: 1;
    border: 1px solid var(--light-gray);
    padding: 40px;
    background: var(--white);
}
@media (max-width: 768px) {
    .contact-form-section { flex-direction: column; gap: 30px; }
    .contact-form-section__image { flex: none; width: 100%; }
}

/* ============================================
   ABOUT THE GALL (HOME)
   ============================================ */
.about-home {
    display: flex;
    gap: 70px;
    align-items: center;
}
.about-home__image {
    flex: 0 0 48%;
}
.about-home__image img {
    width: 100%;
    height: auto;
    display: block;
}
.about-home__text {
    flex: 1;
}
.about-home__text h2 {
    margin-bottom: 24px;
}
.about-home__text h4 {
    margin-top: 30px;
    margin-bottom: 14px;
}
.about-home__text p {
    line-height: 1.9;
    color: var(--gray);
    margin-bottom: 16px;
}
.about-home__text p strong {
    color: var(--black);
}
.about-home__text p em {
    color: var(--dark);
}
.read-more {
    display: inline-block;
    margin-top: 24px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.03em;
    color: var(--black);
    border-bottom: 1px solid var(--black);
    padding-bottom: 2px;
    transition: all var(--transition);
}
.read-more:hover {
    opacity: 1;
    border-bottom-color: var(--mid-gray);
    color: var(--gray);
}
@media (max-width: 768px) {
    .about-home { flex-direction: column; gap: 30px; }
    .about-home__image { flex: none; width: 100%; }
}

/* ============================================
   HOME FAQ SECTION
   ============================================ */
.home-faq {
    display: flex;
    gap: 70px;
    align-items: center;
}
.home-faq__image {
    flex: 0 0 250px;
}
.home-faq__image img {
    width: 100%;
    height: auto;
    display: block;
}
.home-faq__content {
    flex: 1;
}
.home-faq__content h2 {
    margin-bottom: 30px;
}
.home-faq__list {
    border-top: 1px solid var(--light-gray);
}
.faq-item {
    border-bottom: 1px solid var(--light-gray);
}
.faq-item__question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    cursor: pointer;
    font-size: 15px;
    color: var(--dark);
    transition: color var(--transition);
}
.faq-item__question:hover {
    color: var(--black);
}
.home-faq .faq-item__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}
.home-faq .faq-item.is-open .faq-item__answer {
    max-height: 200px;
}
.home-faq .faq-item__answer p {
    padding-bottom: 18px;
    font-size: 14px;
    line-height: 1.8;
    color: var(--gray);
}
@media (max-width: 768px) {
    .home-faq { flex-direction: column; gap: 30px; }
    .home-faq__image { flex: none; width: 180px; }
}

/* ============================================
   INTRO / STATEMENT SECTION
   ============================================ */
.intro-bg {
    background: url('../images/main/bg-sec-02.jpg') center/cover no-repeat;
    position: relative;
}
.intro-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.85);
}
.intro-bg .container {
    position: relative;
    z-index: 1;
}
.intro {
    display: flex;
    align-items: center;
    gap: 80px;
    padding: 100px 0;
}
.intro__image {
    flex: 0 0 45%;
    position: relative;
}
.intro__image-frame {
    width: 100%;
    max-height: 500px;
    aspect-ratio: auto;
    background: url('../images/main/sec-02.png') center/contain no-repeat;
    min-height: 400px;
    position: relative;
}
.intro__image-frame::before {
    display: none;
}
.intro__text h2 {
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    line-height: 1.35;
    color: var(--black);
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
    display: flex;
    align-items: flex-start;
    gap: 80px;
    padding: 100px 0;
}
.about-section__image {
    flex: 0 0 48%;
}
.about-section__image-wrap {
    width: 100%;
    aspect-ratio: 4/5;
    background: linear-gradient(145deg, #555 0%, #777 50%, #444 100%);
    clip-path: polygon(15% 0%, 100% 0%, 100% 85%, 85% 100%, 0% 100%, 0% 15%);
}
.about-section__content h2 {
    font-size: 1.6rem;
    margin-bottom: 20px;
}
.about-section__content h3 {
    font-weight: 700;
    font-size: 0.95rem;
    font-family: var(--font-sans);
    margin: 8px 0;
}
.about-section__content p {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 16px;
}
.about-section__content .bold-statement {
    font-weight: 600;
    font-size: 14px;
}
.about-section__content .sub-heading {
    font-weight: 700;
    font-size: 14px;
    margin-top: 24px;
    margin-bottom: 8px;
}

/* ============================================
   OUR CIRCLE
   ============================================ */
.circle-section { padding: 100px 0; }
.circle-section__header {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    margin-bottom: 60px;
}
.circle-section__badge {
    flex: 0 0 140px;
    height: 140px;
    border-radius: 50%;
    background: var(--black);
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    font-family: var(--font-sans);
}
.circle-section__badge-title {
    font-size: 22px;
    font-weight: 300;
    line-height: 1.2;
}
.circle-section__text h2 {
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    margin-bottom: 16px;
    line-height: 1.35;
}
.circle-section__text p {
    font-size: 14px;
    line-height: 1.8;
    max-width: 680px;
}
.circle-section__members {
    margin-top: 50px;
    margin-left: 200px;
}
.circle-section__subtitle {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 30px;
}
.circle-section__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}
.circle-member {
    text-align: center;
    transition: opacity 0.3s;
}
.circle-member:hover {
    opacity: 0.75;
}
.circle-member__photo {
    width: 120px;
    height: 120px;
    margin: 0 auto 14px;
    border-radius: 50%;
    overflow: hidden;
}
.circle-member__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: grayscale(100%);
}
.circle-member__name {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 4px;
}
.circle-member__tag {
    display: inline-block;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #1a1a1a;
    background: #e8e8e8;
    padding: 3px 10px;
    margin-bottom: 6px;
}
.circle-member__role {
    font-size: 11px;
    color: var(--gray);
    margin-bottom: 6px;
}

/* Circle Modal */
.circle-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    align-items: center;
    justify-content: center;
}
.circle-modal.is-open {
    display: flex;
}
.circle-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
}
.circle-modal__content {
    position: relative;
    background: var(--white);
    max-width: 820px;
    width: 90%;
    max-height: 85vh;
    overflow-y: auto;
    padding: 40px;
}
.circle-modal__close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--gray);
    line-height: 1;
}
.circle-modal__close:hover {
    color: var(--black);
}
.circle-modal__body {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}
.circle-modal__photo {
    flex: 0 0 240px;
}
.circle-modal__photo img {
    width: 100%;
    display: block;
    filter: grayscale(100%);
}
.circle-modal__info {
    flex: 1;
}
.circle-modal__name {
    font-family: var(--font-heading);
    font-size: clamp(1.3rem, 2vw, 1.8rem);
    font-weight: 500;
    margin-bottom: 6px;
}
.circle-modal__tag {
    display: inline-block;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #1a1a1a;
    background: #e8e8e8;
    padding: 3px 10px;
    margin-bottom: 8px;
}
.circle-modal__title {
    font-size: 13px;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
}
.circle-modal__bio p {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 14px;
}
.circle-modal__bio p:last-child {
    margin-bottom: 0;
}

/* Circle — Dedicated Page */
.circle-page__intro {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}
.circle-page__intro-text h1 {
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    margin-bottom: 16px;
    line-height: 1.35;
}
.circle-page__intro-text p {
    font-size: 14px;
    line-height: 1.8;
    max-width: 680px;
}
.circle-page__empty {
    text-align: center;
    padding: 60px 0;
    color: var(--gray);
    font-size: 16px;
}

.circle-profile {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}
.circle-profile--reverse {
    flex-direction: row-reverse;
}
.circle-profile__photo {
    flex: 0 0 320px;
}
.circle-profile__photo img {
    width: 100%;
    display: block;
    filter: grayscale(100%);
}
.circle-profile__content {
    flex: 1;
    padding-top: 10px;
}
.circle-profile__name {
    font-family: var(--font-heading);
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    font-weight: 500;
    margin-bottom: 6px;
}
.circle-profile__title {
    font-size: 14px;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
}
.circle-profile__bio p {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 16px;
}
.circle-profile__bio p:last-child {
    margin-bottom: 0;
}

/* ============================================
   ART ADVISORY
   ============================================ */
.advisory-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    padding: 100px 0;
}
.advisory-section__illustration {
    flex: 0 0 300px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.advisory-section__illustration svg {
    width: 100%;
    height: 100%;
}
.advisory-section__badge {
    width: 120px;
    height: 120px;
    background: var(--black);
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 16px;
    font-size: 18px;
    font-weight: 300;
    line-height: 1.3;
    margin-bottom: 24px;
}
.advisory-section__content h2 {
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    margin-bottom: 20px;
}
.advisory-section__content p {
    font-size: 14px;
    line-height: 1.8;
    max-width: 560px;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials { padding: 100px 0; text-align: center; }
.testimonials__title {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    margin-bottom: 60px;
}
.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.testimonial-card {
    background: var(--bg-light);
    padding: 40px 30px;
    text-align: left;
    position: relative;
    display: flex;
    clip-path: polygon(0 0, calc(100% - 30px) 0, 100% 30px, 100% 100%, 30px 100%, 0 calc(100% - 30px));
    flex-direction: column;
    min-height: 240px;
    filter: drop-shadow(4px 4px 0 rgba(0,0,0,0.15));
}
.testimonial-card__quote {
    font-size: 14px;
    line-height: 1.8;
    color: var(--dark);
    flex: 1;
}
.testimonial-card__author {
    margin-top: 24px;
    font-size: 13px;
    color: var(--gray);
    font-weight: 500;
}

/* ============================================
   TRUST BADGES
   ============================================ */
.trust-badges {
    background: var(--black);
    padding: 60px 0;
}
.trust-badges__grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
}
.trust-badge {
    text-align: left;
    color: var(--white);
}
.trust-badge__icon {
    width: 40px;
    height: 40px;
    margin-bottom: 16px;
    opacity: 0.9;
}
.trust-badge__icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--white);
    fill: none;
    stroke-width: 1.5;
}
.trust-badge__title {
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 8px;
    letter-spacing: 0.02em;
}
.trust-badge__text {
    font-size: 12px;
    line-height: 1.6;
    color: rgba(255,255,255,0.65);
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
    display: flex;
    gap: 80px;
    align-items: flex-start;
    padding: 100px 0;
}
.faq-section__badge {
    flex: 0 0 160px;
    height: 160px;
    background: var(--black);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    clip-path: polygon(0% 0%, 100% 0%, 100% 70%, 70% 100%, 0% 100%);
    position: relative;
}
.faq-section__badge-text {
    font-size: 42px;
    font-weight: 300;
    line-height: 0.9;
}
.faq-section__badge-text span {
    display: block;
    font-size: 28px;
}
.faq-section__content { flex: 1; }
.faq-section__content h2 {
    font-size: 1.6rem;
    margin-bottom: 30px;
}
.faq-item {
    border-top: 1px solid var(--black);
    padding: 20px 0;
}
.faq-item:last-child { border-bottom: 1px solid var(--black); }
.faq-item__question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    font-weight: 400;
    gap: 20px;
    user-select: none;
}
.faq-item__icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    position: relative;
    transition: transform var(--transition);
}
.faq-item__icon::before,
.faq-item__icon::after {
    content: '';
    position: absolute;
    background: var(--black);
    transition: transform var(--transition);
}
.faq-item__icon::before {
    width: 16px;
    height: 1.5px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.faq-item__icon::after {
    width: 1.5px;
    height: 16px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.faq-item.is-open .faq-item__icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
}
.faq-item__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-item.is-open .faq-item__answer {
    max-height: 300px;
    padding-top: 16px;
}
.faq-item__answer p {
    font-size: 14px;
    line-height: 1.8;
    color: var(--gray);
}

/* ============================================
   CONTACT FORM
   ============================================ */
.contact-section {
    display: flex;
    gap: 80px;
    align-items: flex-start;
}
.contact-section__left {
    flex: 0 0 280px;
}
.contact-badge {
    width: 180px;
    height: 180px;
    border: 1px solid var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-bottom: 40px;
}
.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.contact-details__item h4 {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 6px;
}
.contact-details__item a,
.contact-details__item p {
    font-size: 14px;
    color: var(--gray);
}
.contact-details__social {
    display: flex;
    gap: 16px;
}
.contact-details__social a {
    font-size: 14px;
    color: var(--gray);
    border-bottom: 1px solid transparent;
    transition: all var(--transition);
}
.contact-details__social a:hover {
    color: var(--black);
    border-bottom-color: var(--black);
    opacity: 1;
}
.contact-badge__hex {
    width: 100px;
    height: 100px;
    background: var(--black);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    display: flex;
    align-items: center;
    justify-content: center;
}
.contact-badge__text {
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 14px;
    font-style: italic;
    transform: rotate(-15deg);
}
.contact-section__form {
    flex: 1;
    max-width: 600px;
}
.contact-section__form .form-intro {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 30px;
    color: var(--dark);
}
.form-group { margin-bottom: 20px; }
.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 6px;
    color: var(--dark);
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--black);
    background: var(--white);
    font-size: 14px;
    transition: border-color var(--transition);
    outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--gray);
}
.form-group textarea {
    min-height: 120px;
    resize: vertical;
}
.form-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 20px 0;
}
.form-checkbox input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: var(--black);
}
.form-checkbox label {
    font-size: 13px;
    color: var(--dark);
    margin-bottom: 0;
}
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 40px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: all var(--transition);
    cursor: pointer;
}
.btn--black {
    background: var(--black);
    color: var(--white);
    border: 1px solid var(--black);
}
.btn--black:hover {
    background: var(--white);
    color: var(--black);
    opacity: 1;
}
.btn--outline {
    background: transparent;
    color: var(--black);
    border: 1px solid var(--black);
}
.btn--outline:hover {
    background: var(--black);
    color: var(--white);
    opacity: 1;
}

/* ============================================
   ARTISTS GRID
   ============================================ */
.artists-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    padding: 60px 0 100px;
}
.artist-card {
    background: var(--white);
    border: 1px solid var(--light-gray);
    padding: 30px 20px;
    text-align: center;
    transition: box-shadow var(--transition);
}
.artist-card:hover {
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}
.artist-card__avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--mid-gray);
    margin: 0 auto 16px;
    object-fit: cover;
    display: block;
}
.artist-card__name {
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 14px;
}
.artist-card__works {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 16px;
}
.artist-card__work {
    aspect-ratio: 1;
    background: var(--light-gray);
    width: 100%;
    object-fit: cover;
    display: block;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: filter 0.4s ease, opacity 0.4s ease;
}
.artist-card:hover .artist-card__work {
    filter: grayscale(0%);
    opacity: 1;
}
.artist-card__link {
    font-size: 13px;
    padding: 8px 20px;
    border: 1px solid var(--black);
    display: inline-block;
    transition: all var(--transition);
}
.artist-card__link:hover {
    background: var(--black);
    color: var(--white);
    opacity: 1;
}

/* ============================================
   ARTIST PROFILE PAGE
   ============================================ */
.artist-hero {
    padding: 80px 0 60px;
    border-bottom: 1px solid var(--light-gray);
}
.artist-hero__inner {
    display: flex;
    align-items: center;
    gap: 50px;
}
.artist-hero__avatar {
    flex-shrink: 0;
}
.artist-hero__avatar img {
    width: 180px;
    height: 180px;
    border-radius: 4px;
    object-fit: cover;
}
.artist-hero__name {
    font-size: 26px;
    margin-bottom: 8px;
}
.artist-hero__location {
    font-size: 14px;
    color: var(--mid-gray);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.artist-hero__medium {
    font-size: 15px;
    color: var(--gray);
}

/* Artist Statement */
.artist-statement {
    max-width: 750px;
}
.artist-statement h2 {
    font-size: 20px;
    margin-bottom: 24px;
}
.artist-statement p {
    margin-bottom: 16px;
    font-size: 14px;
    line-height: 1.8;
    color: var(--gray);
}

/* Artist Two-Column Layout */
.artist-layout {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}
.artist-layout__works {
    flex: 1;
    min-width: 0;
}
.artist-layout__sidebar {
    flex: 0 0 340px;
    position: sticky;
    top: 110px;
    max-height: calc(100vh - 130px);
    overflow-y: auto;
}
.artist-layout__sidebar::-webkit-scrollbar {
    width: 3px;
}
.artist-layout__sidebar::-webkit-scrollbar-thumb {
    background: var(--light-gray);
    border-radius: 3px;
}
.artist-layout__sidebar .artist-statement {
    max-width: none;
    margin-bottom: 40px;
}
.artist-bio--sidebar .artist-bio__content {
    grid-template-columns: 1fr;
    gap: 24px;
}
.artwork-grid--2col {
    grid-template-columns: repeat(2, 1fr);
}

/* Artwork Grid */
.artwork-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.artwork-card {
    background: var(--white);
    transition: transform var(--transition), box-shadow var(--transition);
}
.artwork-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}
.artwork-card__image {
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--light-gray);
}
.artwork-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.artwork-card:hover .artwork-card__image img {
    transform: scale(1.03);
}
.artwork-card__info {
    padding: 20px;
}
.artwork-card__title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: 6px;
}
.artwork-card__details {
    font-size: 13px;
    color: var(--mid-gray);
    margin-bottom: 10px;
}
.artwork-card__price {
    font-size: 15px;
    font-weight: 600;
    color: var(--black);
}
.artwork-card__enquire {
    display: inline-block;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
    padding: 8px 24px;
    border: 1px solid var(--black);
    color: var(--black);
    text-decoration: none;
    transition: all var(--transition);
}
.artwork-card__enquire:hover {
    background: var(--black);
    color: var(--white);
}
.artwork-card[data-lightbox]:hover .artwork-card__image img {
    transform: scale(1.03);
}
.artwork-card__image img {
    transition: transform 0.4s ease;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    align-items: center;
    justify-content: center;
}
.lightbox.is-open {
    display: flex;
}
.lightbox__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.92);
}
.lightbox__close {
    position: absolute;
    top: 24px;
    right: 28px;
    background: none;
    border: none;
    color: #fff;
    font-size: 36px;
    cursor: pointer;
    z-index: 10;
    line-height: 1;
    opacity: 0.7;
    transition: opacity 0.3s;
}
.lightbox__close:hover {
    opacity: 1;
}
.lightbox__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #fff;
    font-size: 48px;
    cursor: pointer;
    z-index: 10;
    padding: 16px;
    opacity: 0.5;
    transition: opacity 0.3s;
}
.lightbox__nav:hover {
    opacity: 1;
}
.lightbox__nav--prev {
    left: 16px;
}
.lightbox__nav--next {
    right: 16px;
}
.lightbox__content {
    position: relative;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 48px;
    max-width: 90vw;
    max-height: 85vh;
    padding: 20px;
}
.lightbox__image {
    flex: 1;
    max-width: 65vw;
    max-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    cursor: zoom-in;
}
.lightbox__image.is-zoomed {
    cursor: zoom-out;
}
.lightbox__image img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
    user-select: none;
    -webkit-user-drag: none;
}
.lightbox__watermark {
    position: absolute;
    bottom: 16px;
    right: 16px;
    color: rgba(255, 255, 255, 0.35);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    pointer-events: none;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
    z-index: 2;
}
.lightbox__zoom-hint {
    position: absolute;
    bottom: 16px;
    left: 16px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
    letter-spacing: 0.5px;
    pointer-events: none;
    z-index: 2;
}
.lightbox__copyright {
    font-size: 11px;
    color: #666;
    line-height: 1.5;
    margin-top: 24px;
}
.artwork-card__image img {
    user-select: none;
    -webkit-user-drag: none;
}

/* Heart / Save Button */
/* Artwork SKU */
.artwork-card__sku {
    font-size: 9px;
    color: var(--mid-gray);
    letter-spacing: 0.05em;
    margin-top: -2px;
}
.lightbox__sku {
    font-size: 10px;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.05em;
    margin-top: 2px;
}

/* Heart / Save Button */
.artwork-heart {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.9);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.2s, transform 0.2s, background 0.2s;
    z-index: 3;
    padding: 0;
}
.artwork-card__image { position: relative; }
.artwork-card:hover .artwork-heart,
.artwork-heart.is-saved {
    opacity: 1;
    transform: scale(1);
}
.artwork-heart svg {
    width: 18px;
    height: 18px;
    stroke: var(--black);
    fill: none;
    stroke-width: 2;
    transition: fill 0.2s, stroke 0.2s;
}
.artwork-heart.is-saved svg {
    fill: #e74c3c;
    stroke: #e74c3c;
}
.artwork-heart:hover {
    background: var(--white);
    transform: scale(1.1);
    opacity: 1;
}
.lightbox__details {
    min-width: 220px;
    max-width: 280px;
    color: #fff;
}
.lightbox__title {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 12px;
    line-height: 1.3;
}
.lightbox__medium {
    font-size: 14px;
    color: #aaa;
    margin-bottom: 6px;
}
.lightbox__dimensions {
    font-size: 14px;
    color: #aaa;
    margin-bottom: 20px;
}
.lightbox__description {
    font-size: 13px;
    color: #999;
    line-height: 1.7;
    margin-bottom: 20px;
    padding-top: 16px;
    border-top: 1px solid #333;
}
.lightbox__price {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}
.lightbox__enquire {
    display: inline-block;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
    padding: 10px 28px;
    border: 1px solid #fff;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s;
}
.lightbox__enquire:hover {
    background: #fff;
    color: #000;
}

/* Lightbox Actions (Heart + Share) */
.lightbox__actions {
    display: flex;
    gap: 16px;
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,0.15);
}
.lightbox__heart,
.lightbox__share-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border: 1px solid rgba(255,255,255,0.3);
    color: #fff;
    font-size: 13px;
    font-family: var(--font-sans);
    cursor: pointer;
    background: none;
    transition: all 0.2s;
}
.lightbox__heart:hover,
.lightbox__share-btn:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.5);
}
.lightbox__heart svg,
.lightbox__share-btn svg {
    width: 18px;
    height: 18px;
    stroke: #fff;
    fill: none;
    stroke-width: 2;
}
.lightbox__heart.is-saved svg {
    fill: #e74c3c;
    stroke: #e74c3c;
}

@media (max-width: 768px) {
    .lightbox__content {
        flex-direction: column;
        gap: 20px;
        max-height: 90vh;
        overflow-y: auto;
    }
    .lightbox__image {
        max-width: 90vw;
        max-height: 55vh;
    }
    .lightbox__details {
        text-align: center;
        min-width: auto;
        max-width: 100%;
    }
    .lightbox__nav--prev { left: 4px; font-size: 32px; }
    .lightbox__nav--next { right: 4px; font-size: 32px; }
}

/* Discover More Artists */
.more-artists-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}
.more-artist {
    text-align: center;
    text-decoration: none;
    color: var(--black);
    transition: transform 0.3s ease;
}
.more-artist:hover {
    transform: translateY(-4px);
}
.more-artist__avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 16px;
    border: 2px solid var(--light-gray);
}
.more-artist__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.more-artist__name {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 4px;
}
.more-artist__medium {
    font-size: 13px;
    color: var(--mid-gray);
}
@media (max-width: 768px) {
    .more-artists-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    .more-artist__avatar {
        width: 90px;
        height: 90px;
    }
}

/* Artist Bio */
.artist-bio h2 {
    font-size: 20px;
    margin-bottom: 40px;
}
.artist-bio__content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}
.artist-bio__block + .artist-bio__block {
    margin-top: 48px;
}
.artist-bio__block h4 {
    margin-bottom: 20px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.artist-bio__block ul {
    list-style: none;
}
.artist-bio__block li {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.8;
    padding-left: 14px;
    position: relative;
}
.artist-bio__block li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--mid-gray);
}

/* CTA Button */
.btn {
    display: inline-block;
    padding: 14px 40px;
    border: 1px solid var(--white);
    color: var(--white);
    font-size: 14px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: all var(--transition);
}
.btn:hover {
    background: var(--white);
    color: var(--black);
    opacity: 1;
}

/* Artist Profile Responsive */
@media (max-width: 768px) {
    .artist-hero__inner {
        flex-direction: column;
        text-align: center;
        gap: 25px;
    }
    .artwork-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    .artist-bio__content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* ============================================
   ARTIST SUBMISSIONS
   ============================================ */
.submissions-hero {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ddd 0%, #bbb 50%, #ccc 100%);
    overflow: hidden;
}
.submissions-hero__title {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    color: var(--dark);
    position: relative;
    z-index: 2;
}
.submissions-content {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    padding: 100px 0;
}
.submissions-content__main { flex: 1; }
.submissions-content__main h2 {
    font-size: 1.8rem;
    margin-bottom: 8px;
}
.submissions-content__main h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
}
.submissions-content__main p {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 16px;
}
.submissions-content__image {
    flex: 0 0 200px;
}
.submissions-content__image-wrap {
    width: 200px;
    height: 300px;
    background: linear-gradient(145deg, #666 0%, #888 50%, #555 100%);
    object-fit: cover;
}
.review-process { padding: 60px 0 100px; }
.review-process h2 {
    font-size: 1.4rem;
    margin-bottom: 30px;
}
.review-step { margin-bottom: 24px; }
.review-step h4 {
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 4px;
}
.review-step p {
    font-size: 14px;
    line-height: 1.8;
    color: var(--gray);
}
.what-we-look h3 {
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 12px;
    font-family: var(--font-sans);
}
.what-we-look ul {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 24px;
}
.what-we-look li {
    font-size: 14px;
    line-height: 1.8;
    color: var(--dark);
}
.what-we-look .note { margin-top: 24px; }
.what-we-look .note h4 {
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 4px;
}
.what-we-look .note p {
    font-size: 14px;
    line-height: 1.8;
    color: var(--gray);
}
.what-we-look .tagline {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 14px;
    margin: 16px 0;
    color: var(--black);
}
.get-in-touch { margin-top: 40px; padding-top: 30px; border-top: 1px solid var(--light-gray); }
.get-in-touch h2 {
    font-size: 1.4rem;
    margin-bottom: 12px;
}
.get-in-touch p {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 12px;
}
.get-in-touch a {
    font-weight: 600;
    color: var(--black);
}

/* ============================================
   ARTIST SUBMISSION FORM (6-step)
   ============================================ */
.sf { max-width: 580px; margin: 0 auto; padding: 0 0 2rem; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

.sf__label {
    font-size: 11px;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: var(--mid-gray);
    margin-bottom: 2.5rem;
}

.sf__prog-meta {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: var(--mid-gray);
    margin-bottom: 0.5rem;
}
.sf__prog-bar {
    height: 2px;
    background: var(--light-gray);
    border-radius: 2px;
    margin-bottom: 2.5rem;
    overflow: hidden;
}
.sf__prog-fill {
    height: 100%;
    background: var(--black);
    border-radius: 2px;
    transition: width 0.4s ease;
}

.sf__step { display: none; }
.sf__step.is-active { display: block; }

.sf__q-big {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 400;
    color: var(--black);
    line-height: 1.35;
    margin-bottom: 0.5rem;
}
.sf__q-hint {
    font-size: 13px;
    color: var(--mid-gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}
.sf__q-sub-hint {
    font-size: 12px;
    color: var(--mid-gray);
    margin: 0 0 0.75rem;
}

.sf__pills { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 0.5rem; }
.sf__pill {
    border: 0.5px solid var(--mid-gray);
    border-radius: 100px;
    padding: 9px 18px;
    font-size: 14px;
    color: var(--black);
    background: var(--white);
    cursor: pointer;
    transition: all 0.15s;
    user-select: none;
}
.sf__pill:hover { border-color: var(--dark); background: var(--bg-light); }
.sf__pill.on { background: var(--black); color: var(--white); border-color: var(--black); }

.sf__field {
    width: 100%;
    border: 0.5px solid var(--mid-gray);
    border-radius: 4px;
    padding: 12px 14px;
    font-size: 15px;
    font-family: var(--font-sans);
    color: var(--black);
    background: var(--white);
    outline: none;
    resize: vertical;
    transition: border-color 0.15s;
    margin-bottom: 0.5rem;
}
.sf__field:focus { border-color: var(--dark); box-shadow: 0 0 0 2px rgba(26,26,26,0.06); }
.sf__field::placeholder { color: var(--mid-gray); }

.sf__two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 0.5rem; }
.sf__field-wrap { display: flex; flex-direction: column; gap: 5px; }
.sf__field-wrap label { font-size: 12px; color: var(--mid-gray); text-transform: uppercase; letter-spacing: 0.06em; }

.sf__nav { display: flex; gap: 10px; margin-top: 2rem; align-items: center; }
.sf__btn-next {
    flex: 1;
    padding: 13px;
    background: var(--black);
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-family: var(--font-sans);
    cursor: pointer;
    transition: opacity 0.15s;
}
.sf__btn-next:hover { opacity: 0.82; }
.sf__btn-next:disabled { opacity: 0.5; cursor: not-allowed; }
.sf__btn-back {
    padding: 13px 18px;
    background: transparent;
    color: var(--gray);
    border: 0.5px solid var(--mid-gray);
    border-radius: 4px;
    font-size: 15px;
    font-family: var(--font-sans);
    cursor: pointer;
    transition: all 0.15s;
}
.sf__btn-back:hover { border-color: var(--dark); color: var(--black); }

.sf__err {
    font-size: 12px;
    color: #c0392b;
    margin-top: 4px;
    display: none;
}
.sf__err.show { display: block; }

.sf__char-count { font-size: 12px; color: var(--mid-gray); text-align: right; margin-top: 3px; }

.sf__range-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.sf__range-label { font-size: 12px; color: var(--mid-gray); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 5px; }
.sf__range-val { font-size: 20px; font-weight: 500; color: var(--black); margin-bottom: 8px; }
.sf input[type=range] {
    width: 100%;
    -webkit-appearance: none;
    appearance: none;
    height: 4px;
    background: var(--light-gray);
    border-radius: 2px;
    outline: none;
}
.sf input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--black);
    cursor: pointer;
}
.sf input[type=range]::-moz-range-thumb {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--black);
    border: none;
    cursor: pointer;
}

.sf__inline-note { font-size: 13px; color: var(--mid-gray); margin-top: 0.5rem; line-height: 1.5; }
.sf__skip-link { color: var(--black); cursor: pointer; text-decoration: underline; }

.sf__end-screen { text-align: center; padding: 1rem 0 2rem; }
.sf__end-mark {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--bg-light);
    border: 0.5px solid var(--mid-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 22px;
    color: var(--black);
}
.sf__end-heading {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 400;
    color: var(--black);
    margin-bottom: 0.6rem;
    line-height: 1.3;
}
.sf__end-sub {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.7;
    max-width: 380px;
    margin: 0 auto 2rem;
}
.sf__end-divider { border: none; border-top: 0.5px solid var(--light-gray); margin: 2rem 0; }

.sf__what-next { text-align: left; }
.sf__wn-title { font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--mid-gray); margin-bottom: 1rem; }
.sf__wn-item { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 1.25rem; }
.sf__wn-num {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 0.5px solid var(--mid-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    color: var(--mid-gray);
    flex-shrink: 0;
    margin-top: 1px;
}
.sf__wn-text p { font-size: 14px; color: var(--black); font-weight: 500; margin-bottom: 2px; }
.sf__wn-text span { font-size: 13px; color: var(--gray); }

.sf__btn-wa {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 1rem;
    font-size: 13px;
    color: var(--gray);
    text-decoration: none;
    border-bottom: 0.5px solid var(--mid-gray);
    padding-bottom: 1px;
    cursor: pointer;
}
.sf__btn-wa:hover { color: var(--black); opacity: 1; }
.sf__btn-wa svg { flex-shrink: 0; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--white);
    border-top: 1px solid var(--light-gray);
    padding: 60px 0 30px;
}
.footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}
.footer__logo img {
    height: 96px;
    width: auto;
    display: block;
}
.footer__tagline {
    font-size: 13px;
    color: var(--gray);
    margin-top: 12px;
    font-style: italic;
    font-family: var(--font-heading);
}
.footer__heading {
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 16px;
    color: var(--black);
}
.footer__links a {
    display: block;
    font-size: 13px;
    color: var(--gray);
    margin-bottom: 10px;
}
.footer__links a:hover { color: var(--black); opacity: 1; }
.footer__bottom {
    border-top: 1px solid var(--light-gray);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: var(--mid-gray);
}
.footer__social {
    display: flex;
    gap: 20px;
    align-items: center;
}
.footer__social a {
    color: var(--gray);
    display: flex;
    align-items: center;
    transition: color 0.3s;
}
.footer__social a:hover { color: var(--black); opacity: 1; }
.footer__social svg { display: block; }

/* ============================================
   FORM MESSAGES
   ============================================ */
.form-message {
    margin-top: 16px;
    padding: 14px 20px;
    font-size: 14px;
    line-height: 1.6;
    border-radius: 4px;
}
.form-message--success {
    background: #f0faf0;
    color: #2d7a2d;
    border: 1px solid #c3e6c3;
}
.form-message--error {
    background: #fef2f2;
    color: #b91c1c;
    border: 1px solid #fecaca;
}

/* ============================================
   WHATSAPP BUTTON
   ============================================ */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 56px;
    height: 56px;
    background: var(--black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 80;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    transition: transform var(--transition);
}
.whatsapp-btn:hover {
    transform: scale(1.08);
    opacity: 1;
}
.whatsapp-btn svg {
    width: 28px;
    height: 28px;
    fill: var(--white);
}

/* ============================================
   SHARE MODAL
   ============================================ */
.share-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
}
.share-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
}
.share-modal__content {
    position: relative;
    background: var(--white);
    padding: 32px;
    max-width: 360px;
    width: 90%;
    text-align: center;
}
.share-modal__close {
    position: absolute;
    top: 12px;
    right: 16px;
    font-size: 24px;
    color: var(--gray);
    background: none;
    border: none;
    cursor: pointer;
    line-height: 1;
}
.share-modal__options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.share-modal__option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border: 1px solid var(--light-gray);
    font-size: 14px;
    font-family: var(--font-sans);
    color: var(--black);
    cursor: pointer;
    background: none;
    transition: background 0.2s;
    text-decoration: none;
}
.share-modal__option:hover {
    background: var(--bg-section);
    opacity: 1;
}
.share-modal__copied {
    margin-top: 12px;
    font-size: 13px;
    color: #27ae60;
    font-weight: 500;
}

/* ============================================
   ENQUIRY MODAL
   ============================================ */
.enquiry-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.enquiry-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
}
.enquiry-modal__content {
    position: relative;
    background: var(--white);
    padding: 36px 32px 32px;
    max-width: 440px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
}
.enquiry-modal__close {
    position: absolute;
    top: 12px;
    right: 16px;
    font-size: 28px;
    color: var(--gray);
    background: none;
    border: none;
    cursor: pointer;
    line-height: 1;
}
.enquiry-modal__title {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 600;
    margin: 0 0 24px;
    text-align: center;
}
.enquiry-modal__instant {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
}
.enquiry-modal__btn {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    border: 1px solid var(--light-gray);
    text-decoration: none;
    color: var(--black);
    transition: all 0.2s;
}
.enquiry-modal__btn div {
    display: flex;
    flex-direction: column;
}
.enquiry-modal__btn strong {
    font-size: 15px;
    font-weight: 600;
}
.enquiry-modal__btn span {
    font-size: 12px;
    color: var(--gray);
    margin-top: 2px;
}
.enquiry-modal__btn--wa:hover {
    background: #25d366;
    border-color: #25d366;
    color: #fff;
}
.enquiry-modal__btn--wa:hover span {
    color: rgba(255,255,255,0.8);
}
.enquiry-modal__btn--wa:hover svg {
    fill: #fff;
}
.enquiry-modal__btn--email:hover {
    background: var(--black);
    border-color: var(--black);
    color: var(--white);
}
.enquiry-modal__btn--email:hover span {
    color: rgba(255,255,255,0.7);
}
.enquiry-modal__btn--email:hover svg {
    stroke: #fff;
}
.enquiry-modal__divider {
    text-align: center;
    position: relative;
    margin-bottom: 20px;
}
.enquiry-modal__divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--light-gray);
}
.enquiry-modal__divider span {
    position: relative;
    background: var(--white);
    padding: 0 16px;
    font-size: 13px;
    color: var(--gray);
    text-transform: lowercase;
}
.enquiry-modal__toggle {
    display: flex;
    gap: 0;
    margin-bottom: 16px;
}
.enquiry-toggle {
    flex: 1;
    padding: 10px;
    font-size: 14px;
    font-family: var(--font-sans);
    font-weight: 500;
    border: 1px solid var(--light-gray);
    background: none;
    color: var(--gray);
    cursor: pointer;
    transition: all 0.2s;
}
.enquiry-toggle:first-child {
    border-right: none;
}
.enquiry-toggle.is-active {
    background: var(--black);
    border-color: var(--black);
    color: var(--white);
}
.enquiry-modal__fields {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 12px;
}
.enquiry-modal__fields input,
.enquiry-modal__fields textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--light-gray);
    font-size: 14px;
    font-family: var(--font-sans);
    color: var(--black);
    background: var(--white);
    transition: border-color 0.2s;
    box-sizing: border-box;
}
.enquiry-modal__fields input:focus,
.enquiry-modal__fields textarea:focus {
    outline: none;
    border-color: var(--black);
}
.enquiry-modal__fields input.is-invalid,
.enquiry-modal__fields textarea.is-invalid {
    border-color: #e74c3c;
}
.enquiry-modal__checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    font-size: 13px;
    color: var(--gray);
    cursor: pointer;
}
.enquiry-modal__checkbox input {
    width: 16px;
    height: 16px;
    cursor: pointer;
}
.enquiry-modal__submit {
    width: 100%;
    padding: 14px;
    background: var(--black);
    color: var(--white);
    border: none;
    font-size: 14px;
    font-family: var(--font-sans);
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.2s;
    letter-spacing: 0.5px;
}
.enquiry-modal__submit:hover {
    opacity: 0.85;
}
.enquiry-modal__submit:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}
.enquiry-modal__msg {
    margin-top: 12px;
    padding: 10px 14px;
    font-size: 13px;
    text-align: center;
}
.enquiry-modal__msg--success {
    background: #f0fdf4;
    color: #166534;
    border: 1px solid #bbf7d0;
}
.enquiry-modal__msg--error {
    background: #fef2f2;
    color: #b91c1c;
    border: 1px solid #fecaca;
}

@media (max-width: 480px) {
    .enquiry-modal__content {
        padding: 28px 20px 24px;
    }
    .enquiry-modal__title {
        font-size: 20px;
    }
}

/* ============================================
   COLLECTION PAGE
   ============================================ */
.collection-actions {
    display: flex;
    gap: 12px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}
.collection-actions .btn--outline {
    font-size: 13px;
    padding: 8px 20px;
    border: 1px solid var(--black);
    background: none;
    color: var(--black);
    font-family: var(--font-sans);
    cursor: pointer;
    transition: all 0.2s;
}
.collection-actions .btn--outline:hover {
    background: var(--black);
    color: var(--white);
}
.collection-actions .btn--danger {
    font-size: 13px;
    padding: 8px 20px;
    border: 1px solid #e74c3c;
    background: none;
    color: #e74c3c;
    font-family: var(--font-sans);
    cursor: pointer;
    transition: all 0.2s;
}
.collection-actions .btn--danger:hover {
    background: #e74c3c;
    color: var(--white);
}
.collection-empty {
    text-align: center;
    padding: 80px 20px;
}
.collection-empty__icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    color: var(--mid-gray);
}
.collection-empty__icon svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.5;
}
.collection-empty h3 {
    font-size: 20px;
    margin-bottom: 8px;
}
.collection-empty p {
    color: var(--gray);
    font-size: 14px;
    max-width: 360px;
    margin: 0 auto;
}

/* ============================================
   404 NOT FOUND
   ============================================ */
.not-found {
    display: flex;
    min-height: 80vh;
}
.not-found__image {
    flex: 1;
    background: #0a0a0a;
}
.not-found__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.not-found__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 60px 40px;
    border: 1px solid var(--light-gray);
}
.not-found__title {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.04em;
    margin-bottom: 28px;
    color: var(--black);
}
.not-found__content p {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.8;
    margin: 0;
}
.not-found__link {
    margin-top: 36px;
    font-size: 14px;
    font-weight: 600;
    color: var(--black);
    letter-spacing: 0.02em;
}
.not-found__link:hover {
    opacity: 0.6;
}
@media (max-width: 768px) {
    .not-found {
        flex-direction: column;
        min-height: auto;
    }
    .not-found__image {
        height: 50vh;
    }
    .not-found__content {
        padding: 48px 24px;
    }
}

/* ============================================
   PAGE HERO (inner pages)
   ============================================ */
.page-hero {
    background: var(--bg-light);
    padding: 80px 0;
    text-align: center;
}
.page-hero--banner {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    padding: 0;
}
.page-hero--banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.35);
}
.page-hero--banner .container {
    position: relative;
    z-index: 2;
    text-align: left;
    width: 100%;
    max-width: 100%;
    margin: 0;
}
.page-hero--banner h1 {
    color: var(--white);
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 200;
    white-space: nowrap;
}
.page-hero h1 {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 200;
}
.page-hero p {
    margin-top: 12px;
    color: var(--gray);
    font-size: 15px;
}

/* ============================================
   ANIMATIONS
   ============================================ */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}
.fade-in {
    opacity: 0;
    transition: opacity 0.8s ease;
}
.fade-in.is-visible { opacity: 1; }

/* ---- Blog Grid ---- */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1200px) {
    :root { --side-padding: 40px; }
    .trust-badges__grid { grid-template-columns: repeat(3, 1fr); gap: 30px 20px; }
}

@media (max-width: 992px) {
    :root { --side-padding: 30px; }
    .header__nav { display: none; }
    .header__cta { display: none; }
    .header__saved { margin-right: 0; }
    .lightbox__actions { flex-wrap: wrap; }
    .intro { flex-direction: column; gap: 40px; }
    .intro__image { flex: none; width: 100%; }
    .about-section { flex-direction: column; gap: 40px; }
    .about-section__image { flex: none; width: 100%; }
    .testimonials__grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
    .artists-grid { grid-template-columns: repeat(2, 1fr); }
    .faq-section { flex-direction: column; gap: 30px; }
    .contact-section { flex-direction: column; gap: 40px; }
    .contact-section__left { flex: none; width: 100%; }
    .circle-section__header { flex-direction: column; gap: 30px; }
    .circle-section__members { margin-left: 0; }
    .circle-section__grid { grid-template-columns: 1fr 1fr; }
    .circle-page__intro { flex-direction: column; gap: 30px; }
    .circle-profile, .circle-profile--reverse { flex-direction: column; gap: 30px; }
    .circle-profile__photo { flex: none; max-width: 360px; }
    .circle-modal__body { flex-direction: column; gap: 24px; }
    .circle-modal__photo { flex: none; max-width: 200px; }
    .circle-modal__content { padding: 24px; }
    .advisory-section { flex-direction: column; text-align: center; }
    .advisory-section__content p { margin: 0 auto; }
    .submissions-content { flex-direction: column; }
    .footer__grid { grid-template-columns: 1fr 1fr; }
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
    .artist-layout { flex-direction: column; gap: 40px; }
    .artist-layout__sidebar { flex: none; width: 100%; position: static; max-height: none; overflow-y: visible; }
    .artwork-grid--2col { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
    :root { --side-padding: 20px; --header-height: 70px; }
    .hero { min-height: 400px; max-height: 600px; }
    .hero__slide-bg { background-position: center center; }
    .hero__slide:nth-child(1) .hero__slide-bg { background-image: url('../images/hero/mobile/hero-banner-02.jpg'); }
    .hero__slide:nth-child(2) .hero__slide-bg { background-image: url('../images/hero/mobile/hero-banner-03.jpg'); }
    .hero__slide:nth-child(3) .hero__slide-bg { background-image: url('../images/hero/mobile/hero-banner-04.jpg'); }
    .hero__content--left { padding: 0 20px; }
    .hero__content--left .hero__tagline { font-size: 1.3rem; }
    .hero__cta { padding: 12px 28px; font-size: 12px; }
    .trust-badges__grid { grid-template-columns: repeat(2, 1fr); }
    .artists-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .form-row { grid-template-columns: 1fr; }
    .circle-section { padding: 60px 0; }
    .circle-section__header { text-align: center; align-items: center; }
    .circle-section__badge { flex: 0 0 110px; height: 110px; }
    .circle-section__badge-title { font-size: 18px; }
    .circle-section__text h2 { text-align: center; }
    .circle-section__text p { text-align: center; margin: 0 auto; }
    .circle-section__members { margin-top: 30px; }
    .circle-section__subtitle { text-align: center; }
    .circle-section__grid { grid-template-columns: 1fr; gap: 30px; }
    .circle-page__intro { text-align: center; align-items: center; }
    .circle-page__intro-text h1 { text-align: center; }
    .circle-page__intro-text p { text-align: center; margin: 0 auto; }
    .circle-profile__photo { max-width: 260px; margin: 0 auto; }
    .circle-profile__content { text-align: center; }
    .footer__grid { grid-template-columns: 1fr; gap: 30px; }
    .footer__bottom { flex-direction: column; gap: 12px; text-align: center; }
    .sf__two-col { grid-template-columns: 1fr; }
    .sf__range-row { grid-template-columns: 1fr; }
    .blog-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .artists-grid { grid-template-columns: 1fr; max-width: 320px; margin: 0 auto; }
    .trust-badges__grid { grid-template-columns: 1fr; }
    .hero__tagline { font-size: 1.6rem; }
    .circle-section { padding: 40px 0; }
    .circle-section__badge { flex: 0 0 90px; height: 90px; }
    .circle-section__badge-title { font-size: 16px; }
    .circle-section__header { gap: 20px; }
    .circle-profile__photo { max-width: 200px; }
}

/* ============================================
   SEARCH OVERLAY
   ============================================ */
.search-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 12vh;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.search-overlay.is-open {
    opacity: 1;
    visibility: visible;
}
.search-overlay__inner {
    width: 90%;
    max-width: 680px;
    position: relative;
}
.search-overlay__close {
    position: absolute;
    top: -50px;
    right: 0;
    background: none;
    border: none;
    color: rgba(255,255,255,0.6);
    font-size: 36px;
    cursor: pointer;
    transition: color 0.2s;
    line-height: 1;
}
.search-overlay__close:hover { color: #fff; }
.search-overlay__box {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 8px;
    padding: 0 20px;
    gap: 14px;
}
.search-overlay__icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    color: var(--mid-gray);
}
.search-overlay__input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 18px;
    padding: 16px 0;
    font-family: var(--font-sans);
    color: var(--black);
    background: transparent;
}
.search-overlay__input::placeholder { color: var(--mid-gray); }
.search-overlay__results {
    margin-top: 16px;
    max-height: 55vh;
    overflow-y: auto;
}
.search-overlay__group-title {
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.45);
    padding: 12px 4px 6px;
}
.search-overlay__item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 16px;
    border-radius: 8px;
    color: #fff;
    text-decoration: none;
    transition: background 0.15s;
}
.search-overlay__item:hover {
    background: rgba(255,255,255,0.1);
    opacity: 1;
}
.search-overlay__thumb {
    width: 50px;
    height: 50px;
    border-radius: 6px;
    object-fit: cover;
    flex-shrink: 0;
    background: rgba(255,255,255,0.1);
}
.search-overlay__item-info { flex: 1; min-width: 0; }
.search-overlay__item-title {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.search-overlay__item-meta {
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    margin-top: 2px;
}
.search-overlay__empty {
    text-align: center;
    color: rgba(255,255,255,0.45);
    padding: 32px 0;
    font-size: 14px;
}
.search-overlay__loading {
    text-align: center;
    color: rgba(255,255,255,0.45);
    padding: 24px 0;
    font-size: 14px;
}
.search-overlay__suggestions { padding: 8px 0; }
.search-overlay__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 4px 0;
}
.search-overlay__tag {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-family: var(--font-sans);
    cursor: pointer;
    transition: all 0.2s;
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    line-height: 1.3;
}
.search-overlay__tag:hover {
    background: rgba(255,255,255,0.18);
    color: #fff;
    border-color: rgba(255,255,255,0.4);
    opacity: 1;
}
.search-overlay__tag--cat {
    border-color: rgba(124,92,191,0.4);
    background: rgba(124,92,191,0.15);
    color: rgba(200,180,230,0.9);
}
.search-overlay__tag--cat:hover {
    background: rgba(124,92,191,0.35);
    color: #fff;
    border-color: rgba(124,92,191,0.6);
}
.search-overlay__tag--link {
    border-color: rgba(100,180,140,0.35);
    background: rgba(100,180,140,0.1);
    color: rgba(160,220,180,0.9);
}
.search-overlay__tag--link:hover {
    background: rgba(100,180,140,0.3);
    color: #fff;
    border-color: rgba(100,180,140,0.55);
}

@media (max-width: 768px) {
    .search-overlay { padding-top: 6vh; }
    .search-overlay__inner { width: 94%; }
    .search-overlay__input { font-size: 16px; padding: 14px 0; }
    .search-overlay__close { top: -42px; font-size: 30px; }
}

/* ============================================
   CHATBOT WIDGET
   ============================================ */
.chatbot-toggle {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--black);
    color: var(--white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 90;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    transition: transform var(--transition);
}
.chatbot-toggle:hover {
    transform: scale(1.08);
}
.chatbot-toggle svg {
    width: 26px;
    height: 26px;
}
.chatbot-toggle .chatbot-toggle__close {
    display: none;
}
.chatbot-toggle.is-open .chatbot-toggle__open {
    display: none;
}
.chatbot-toggle.is-open .chatbot-toggle__close {
    display: block;
}

.chatbot {
    position: fixed;
    bottom: 170px;
    right: 30px;
    width: 380px;
    max-height: 520px;
    background: var(--white);
    border: 1px solid var(--light-gray);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
    z-index: 89;
    display: none;
    flex-direction: column;
    overflow: hidden;
}
.chatbot.is-open {
    display: flex;
}

.chatbot__header {
    background: var(--black);
    color: var(--white);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}
.chatbot__avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.chatbot__avatar svg {
    width: 20px;
    height: 20px;
    fill: var(--white);
}
.chatbot__header-info h4 {
    margin: 0;
    font-size: 15px;
    font-weight: 600;
    font-family: var(--font-heading);
}
.chatbot__header-info p {
    margin: 2px 0 0;
    font-size: 11px;
    opacity: 0.7;
}

.chatbot__messages {
    flex: 1;
    overflow-y: auto;
    padding: 20px 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-height: 200px;
    max-height: 320px;
}

.chatbot__msg {
    max-width: 85%;
    padding: 10px 14px;
    font-size: 13px;
    line-height: 1.5;
    word-wrap: break-word;
}
.chatbot__msg--bot {
    background: var(--off-white);
    border: 1px solid var(--light-gray);
    align-self: flex-start;
    border-radius: 0 12px 12px 12px;
}
.chatbot__msg--user {
    background: var(--black);
    color: var(--white);
    align-self: flex-end;
    border-radius: 12px 0 12px 12px;
}
.chatbot__msg a {
    color: inherit;
    text-decoration: underline;
}
.chatbot__msg--bot a {
    color: var(--black);
    font-weight: 500;
}

.chatbot__quick-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    padding: 0 16px 12px;
    flex-shrink: 0;
}
.chatbot__quick-btn {
    padding: 7px 14px;
    font-size: 12px;
    font-weight: 500;
    border: 1px solid #d0c4e0;
    background: #e8e0f0;
    color: #4a3270;
    cursor: pointer;
    transition: all 0.2s;
    border-radius: 16px;
    white-space: nowrap;
}
.chatbot__quick-btn:hover {
    background: #7c5cbf;
    color: #fff;
    border-color: #7c5cbf;
}
.chatbot__quick-btn--home {
    background: #dde4f0;
    border-color: #b8c8e0;
    color: #3a5280;
}
.chatbot__quick-btn--home:hover {
    background: #4a6fa5;
    color: #fff;
    border-color: #4a6fa5;
}

.chatbot__input-area {
    display: flex;
    border-top: 1px solid var(--light-gray);
    flex-shrink: 0;
}
.chatbot__input {
    flex: 1;
    border: none;
    padding: 14px 16px;
    font-size: 13px;
    font-family: var(--font-body);
    outline: none;
    background: transparent;
}
.chatbot__send {
    background: none;
    border: none;
    padding: 14px 16px;
    cursor: pointer;
    color: var(--black);
    transition: opacity 0.2s;
}
.chatbot__send:hover {
    opacity: 0.6;
}
.chatbot__send svg {
    width: 18px;
    height: 18px;
}

.chatbot__typing {
    display: flex;
    gap: 4px;
    align-items: center;
    padding: 10px 14px;
    align-self: flex-start;
}
.chatbot__typing span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gray);
    animation: chatDot 1.2s infinite;
}
.chatbot__typing span:nth-child(2) { animation-delay: 0.2s; }
.chatbot__typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes chatDot {
    0%, 60%, 100% { opacity: 0.3; transform: scale(0.8); }
    30% { opacity: 1; transform: scale(1); }
}

.chatbot__artwork-card {
    display: flex;
    gap: 10px;
    padding: 8px;
    border: 1px solid var(--light-gray);
    margin-top: 8px;
    text-decoration: none;
    color: inherit;
    transition: background 0.2s;
}
.chatbot__artwork-card:hover {
    background: var(--off-white);
}
.chatbot__artwork-card img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    flex-shrink: 0;
}
.chatbot__artwork-card div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
}
.chatbot__artwork-card strong {
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.chatbot__artwork-card small {
    font-size: 11px;
    color: var(--gray);
    margin-top: 2px;
}

@media (max-width: 480px) {
    .chatbot {
        right: 0;
        bottom: 0;
        width: 100%;
        max-height: 100vh;
        max-height: 100dvh;
        border: none;
    }
    .chatbot__messages {
        max-height: calc(100vh - 180px);
        max-height: calc(100dvh - 180px);
    }
    .chatbot-toggle {
        bottom: 90px;
        right: 20px;
    }
    .whatsapp-btn {
        bottom: 20px;
        right: 20px;
    }
}
