/* ============================================
   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%; }

/* 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;
    align-items: center;
    gap: 20px;
}
.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 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);
}

/* ============================================
   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-01.jpg');
}
.hero__slide:nth-child(2) .hero__slide-bg {
    background-image: url('../images/hero/hero-banner-02.jpg');
}
.hero__slide:nth-child(3) .hero__slide-bg {
    background-image: url('../images/hero/hero-banner-03.jpg');
}
.hero__slide:nth-child(4) .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;
    background: var(--black);
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: 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-left: calc(140px + 60px);
}
.circle-section__members h3 {
    font-family: var(--font-sans);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 24px;
}
.circle-section__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}
.circle-member__name {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 4px;
}
.circle-member__role {
    font-size: 13px;
    color: var(--gray);
}

/* ============================================
   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: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
}
.artist-hero__name {
    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 {
    margin-bottom: 30px;
}
.artist-statement p {
    margin-bottom: 20px;
    line-height: 1.9;
    color: var(--gray);
}

/* 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);
}

/* Artist Bio */
.artist-bio h2 {
    margin-bottom: 40px;
}
.artist-bio__content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}
.artist-bio__block h4 {
    margin-bottom: 16px;
    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: 48px;
    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);
}

/* ============================================
   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; }
    .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; }
    .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); }
}

@media (max-width: 768px) {
    :root { --side-padding: 20px; --header-height: 70px; }
    .hero { min-height: 400px; max-height: 600px; }
    .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__grid { grid-template-columns: 1fr; }
    .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; }
}
