/* ============================================================
   Maudie's Incredible Emporium — Main Stylesheet
   Colors: Purple #6B2D8B | Green #5BA35C | Pink #E8A4C8
           Coral #E07090 | Cream #FAF8F5 | Gold #C9973B
   ============================================================ */

/* --- Custom Properties --- */
:root {
    --purple:         #6B2D8B;
    --purple-dark:    #4a1a62;
    --purple-deeper:  #360f4a;
    --purple-light:   #8b4aaa;
    --purple-pale:    #f3eaf8;
    --green:          #5BA35C;
    --green-dark:     #3d7a3e;
    --green-light:    #7bc57c;
    --green-pale:     #eaf6ea;
    --pink:           #E8A4C8;
    --pink-light:     #f5d0e8;
    --coral:          #E07090;
    --gold:           #C9973B;
    --gold-light:     #f0c96e;
    --gold-pale:      #fdf3dc;
    --cream:          #FAF8F5;
    --cream-dark:     #ede8e0;
    --white:          #ffffff;
    --text:           #2D2D2D;
    --text-mid:       #4a4a4a;
    --text-light:     #777777;
    --shadow-sm:      0 2px 10px rgba(107, 45, 139, 0.10);
    --shadow:         0 4px 20px rgba(107, 45, 139, 0.14);
    --shadow-lg:      0 8px 40px rgba(107, 45, 139, 0.20);
    --radius:         14px;
    --radius-lg:      22px;
    --radius-xl:      32px;
    --ease:           cubic-bezier(0.4, 0, 0.2, 1);
    --duration:       0.3s;
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Lato', sans-serif;
    color: var(--text);
    background-color: var(--cream);
    line-height: 1.75;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
address { font-style: normal; }

/* --- Typography --- */
h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    line-height: 1.2;
}

h2 {
    font-size: clamp(1.9rem, 4vw, 2.9rem);
    color: var(--purple-dark);
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.25rem;
    color: var(--purple);
    margin-bottom: 0.6rem;
}

p { margin-bottom: 1rem; color: var(--text-mid); }

strong { color: var(--text); }

/* --- Layout Helpers --- */
.container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-label {
    font-family: 'Lato', sans-serif;
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 0.4rem;
    display: block;
}

.section-label--light { color: var(--green-light); }

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.78rem 1.8rem;
    border-radius: 50px;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 0.92rem;
    letter-spacing: 0.04em;
    cursor: pointer;
    border: 2px solid transparent;
    transition: background var(--duration) var(--ease),
                color var(--duration) var(--ease),
                border-color var(--duration) var(--ease),
                transform var(--duration) var(--ease),
                box-shadow var(--duration) var(--ease);
    white-space: nowrap;
}

.btn:focus-visible {
    outline: 3px solid var(--gold-light);
    outline-offset: 3px;
}

.btn-primary {
    background: var(--purple);
    color: var(--white);
    border-color: var(--purple);
    box-shadow: 0 4px 18px rgba(107, 45, 139, 0.38);
}
.btn-primary:hover {
    background: var(--purple-dark);
    border-color: var(--purple-dark);
    transform: translateY(-2px);
    box-shadow: 0 7px 28px rgba(107, 45, 139, 0.48);
}

.btn-gold {
    background: var(--gold);
    color: var(--white);
    border-color: var(--gold);
    box-shadow: 0 4px 18px rgba(201, 151, 59, 0.42);
}
.btn-gold:hover {
    background: #a87e2e;
    border-color: #a87e2e;
    transform: translateY(-2px);
    box-shadow: 0 7px 28px rgba(201, 151, 59, 0.52);
}

.btn-facebook {
    background: #1877f2;
    color: var(--white);
    border-color: #1877f2;
}
.btn-facebook:hover {
    background: #0d65d8;
    border-color: #0d65d8;
    transform: translateY(-2px);
    box-shadow: 0 4px 18px rgba(24, 119, 242, 0.45);
}

.btn-outline-purple {
    background: transparent;
    color: var(--purple);
    border-color: var(--purple);
}
.btn-outline-purple:hover {
    background: var(--purple);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 18px rgba(107, 45, 139, 0.35);
}

.btn-ghost-white {
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.4);
}
.btn-ghost-white:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.7);
    transform: translateY(-2px);
}

/* --- Badges --- */
.badge {
    display: inline-block;
    padding: 0.3rem 0.9rem;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
}
.badge-purple { background: var(--purple-pale); color: var(--purple); }
.badge-green  { background: var(--green-pale);  color: var(--green-dark); }
.badge-pink   { background: var(--pink-light);   color: var(--coral); }

/* --- Floral Dividers --- */
.floral-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    font-size: 1.4rem;
    color: var(--pink);
}
.floral-line {
    flex: 1;
    max-width: 180px;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--pink), transparent);
    display: inline-block;
}
.floral-divider--green { color: var(--green); }
.floral-divider--green .floral-line {
    background: linear-gradient(to right, transparent, var(--green), transparent);
}

/* --- Section Fade-In Animation --- */
.section-fade {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}
.section-fade.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0.9rem 0;
    background: rgba(74, 26, 98, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: background var(--duration) var(--ease),
                padding var(--duration) var(--ease),
                box-shadow var(--duration) var(--ease);
}

#navbar.scrolled {
    background: var(--purple-dark);
    padding: 0.6rem 0;
    box-shadow: 0 2px 24px rgba(0, 0, 0, 0.22);
}

.nav-container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-brand {
    font-family: 'Great Vibes', cursive;
    font-size: 2.3rem;
    color: var(--white);
    text-shadow: 1px 2px 8px rgba(0, 0, 0, 0.25);
    line-height: 1;
    transition: color var(--duration);
}
.nav-brand:hover { color: var(--pink-light); }

.nav-links {
    display: flex;
    align-items: center;
    gap: 0.15rem;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.88rem;
    font-weight: 700;
    padding: 0.38rem 0.85rem;
    border-radius: 20px;
    letter-spacing: 0.04em;
    transition: background var(--duration), color var(--duration);
}
.nav-links a:hover {
    background: rgba(255, 255, 255, 0.14);
    color: var(--white);
}

.nav-links .nav-cta {
    background: var(--green);
    color: var(--white);
    padding: 0.38rem 1.1rem;
}
.nav-links .nav-cta:hover {
    background: var(--green-dark);
}

.nav-toggle {
    display: none;
    background: none;
    border: 2px solid rgba(255, 255, 255, 0.55);
    border-radius: 6px;
    color: var(--white);
    font-size: 1.2rem;
    line-height: 1;
    padding: 0.3rem 0.55rem;
    cursor: pointer;
    transition: border-color var(--duration);
}
.nav-toggle:hover { border-color: var(--white); }

/* ============================================================
   HERO
   ============================================================ */
#hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: var(--cream);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('../images/cripple-creek-bg.png');
    background-size: cover;
    background-position: center 38%;
    background-repeat: no-repeat;
    opacity: 0.22;
    z-index: 0;
}

/* Extra gentle vignette overlay */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 40%, rgba(250, 248, 245, 0.55) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 9rem 2rem 5rem;
    max-width: 900px;
}

.hero-eyebrow {
    font-family: 'Lato', sans-serif;
    font-size: 0.88rem;
    font-weight: 900;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 0.35rem;
}

.hero-title {
    font-family: 'Great Vibes', cursive;
    font-size: clamp(3.8rem, 9.5vw, 8.5rem);
    color: var(--purple);
    text-shadow: 2px 4px 14px rgba(107, 45, 139, 0.22);
    line-height: 1.08;
    margin-bottom: 0.4rem;
}

.hero-flower {
    font-size: 2.1rem;
    color: var(--pink);
    margin: 0.4rem 0;
    display: inline-block;
    animation: float 3.2s ease-in-out infinite;
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-9px); }
}

.hero-tagline {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.1rem, 2.6vw, 1.65rem);
    color: var(--purple-dark);
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.hero-location {
    font-family: 'Lato', sans-serif;
    font-size: 0.95rem;
    color: var(--text-light);
    letter-spacing: 0.1em;
    margin-bottom: 2.2rem;
}

.hero-btn {
    font-size: 1rem;
    padding: 0.92rem 2.6rem;
}

.hero-scroll-hint {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    font-size: 1.6rem;
    color: var(--purple-light);
    animation: bounce 2.2s ease-in-out infinite;
    line-height: 1;
}
@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.7; }
    50%       { transform: translateX(-50%) translateY(9px); opacity: 1; }
}

/* ============================================================
   ABOUT
   ============================================================ */
#about {
    padding: 5.5rem 0;
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text .lead-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-style: italic;
    color: var(--purple);
    margin-bottom: 1.2rem;
    line-height: 1.6;
}

.about-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin-top: 1.5rem;
}

.about-image-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
}

.about-image-frame {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 5px solid var(--pink-light);
    transform: rotate(1.8deg);
    transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
    width: 100%;
    max-width: 460px;
}
.about-image-frame:hover {
    transform: rotate(0deg) scale(1.025);
    box-shadow: 0 12px 50px rgba(107, 45, 139, 0.22);
}
.about-image-frame img {
    width: 100%;
    height: auto;
    display: block;
}

.about-caption {
    font-size: 0.78rem;
    color: var(--text-light);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-family: 'Lato', sans-serif;
    margin-bottom: 0;
}

/* ============================================================
   ARTIST OF THE MONTH
   ============================================================ */
#artist { padding: 0; }

.artist-banner {
    position: relative;
    overflow: hidden;
}

.artist-banner-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        140deg,
        var(--purple-deeper) 0%,
        var(--purple-dark) 30%,
        #3a5e65 65%,
        var(--green-dark) 100%
    );
    z-index: 0;
}

/* Decorative overlay orbs */
.artist-banner-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 15% 60%, rgba(232, 164, 200, 0.18) 0%, transparent 55%),
        radial-gradient(ellipse at 85% 20%, rgba(240, 201, 110, 0.13) 0%, transparent 48%),
        radial-gradient(ellipse at 50% 90%, rgba(107, 45, 139, 0.25) 0%, transparent 60%);
}

.artist-inner {
    position: relative;
    z-index: 1;
    padding: 5.5rem 2rem 5rem;
    text-align: center;
}

.artist-badge-row { margin-bottom: 0.85rem; }

.artist-month-badge {
    display: inline-block;
    background: var(--gold);
    color: var(--white);
    font-family: 'Lato', sans-serif;
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    padding: 0.38rem 1.3rem;
    border-radius: 50px;
    box-shadow: 0 3px 14px rgba(201, 151, 59, 0.55);
}

.artist-label {
    font-family: 'Lato', sans-serif;
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--pink);
    margin-bottom: 0.15rem;
}

.artist-name {
    font-family: 'Great Vibes', cursive;
    font-size: clamp(3.2rem, 7.5vw, 6.5rem);
    color: var(--white);
    text-shadow: 2px 5px 18px rgba(0, 0, 0, 0.32);
    margin-bottom: 0.2rem;
}

.artist-studio {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--gold-light);
    margin-bottom: 2.8rem;
    letter-spacing: 0.04em;
}
.studio-name { font-weight: 700; }
.booth-num   { color: var(--pink); font-weight: 700; }

.artist-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    text-align: left;
    max-width: 1020px;
    margin: 0 auto 3rem;
}

/* Bio column */
.artist-bio p {
    color: rgba(255, 255, 255, 0.86);
    margin-bottom: 0.9rem;
    font-size: 0.97rem;
}

.artist-quote {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-style: italic;
    color: var(--gold-light);
    border-left: 3px solid var(--gold);
    padding-left: 1rem;
    margin-bottom: 1.4rem;
    line-height: 1.55;
}

.artist-bio strong { color: var(--pink); font-weight: 700; }

.artist-mission {
    color: rgba(255, 255, 255, 0.7) !important;
    font-family: 'Playfair Display', serif;
    font-size: 0.95rem !important;
}

.artist-tagline {
    font-family: 'Great Vibes', cursive;
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    color: var(--pink);
    text-shadow: 1px 3px 10px rgba(0, 0, 0, 0.28);
    margin-top: 0.3rem;
    line-height: 1.1;
}

/* Photo grid column */
.artist-photo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.7rem;
    margin-bottom: 0.75rem;
}

.artist-photo-slot {
    aspect-ratio: 1 / 1;
    border-radius: var(--radius);
    overflow: hidden;
}
.artist-photo-slot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
    transition: transform 0.4s var(--ease);
}
.artist-photo-slot img:hover { transform: scale(1.06); }

.photo-placeholder {
    width: 100%;
    height: 100%;
    min-height: 135px;
    background: rgba(255, 255, 255, 0.07);
    border: 2px dashed rgba(255, 255, 255, 0.2);
    border-radius: var(--radius);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    padding: 1rem;
    transition: background var(--duration), border-color var(--duration);
    cursor: default;
}
.photo-placeholder:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.35);
}
.ph-icon  { font-size: 2.1rem; }
.ph-label {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.73rem;
    font-family: 'Lato', sans-serif;
    letter-spacing: 0.06em;
    text-align: center;
}

.photos-note {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.45);
    text-align: center;
    margin-bottom: 0;
}

.artist-cta-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

/* ============================================================
   ARTISAN COMMUNITY
   ============================================================ */
.section-light {
    padding: 5.5rem 0;
    background: var(--cream);
}

.section-intro {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: var(--text-light);
    font-size: 1.05rem;
    margin-bottom: 3rem;
}

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

.card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.2rem 1.8rem;
    box-shadow: var(--shadow);
    transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-top-color 0.35s;
    border-top: 5px solid transparent;
}
.card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow-lg);
}

.card--purple:hover { border-top-color: var(--purple); }
.card--green:hover  { border-top-color: var(--green); }
.card--coral:hover  { border-top-color: var(--coral); }

.card-icon {
    font-size: 2.4rem;
    margin-bottom: 1rem;
    display: block;
    line-height: 1;
}

.card h3 { font-size: 1.18rem; }
.card p  { font-size: 0.93rem; margin-bottom: 0; }

/* ============================================================
   GALLERY
   ============================================================ */
.section-dark {
    position: relative;
    padding: 5.5rem 0;
    background: var(--purple-deeper);
    overflow: hidden;
}

.gallery-bg {
    position: absolute;
    inset: 0;
    background-image: url('../images/cripple-creek-bg.png');
    background-size: cover;
    background-position: center 60%;
    background-repeat: no-repeat;
    opacity: 0.07;
    z-index: 0;
}

.gallery-inner {
    position: relative;
    z-index: 1;
    text-align: center;
}

.gallery-title {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.gallery-intro {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: rgba(255, 255, 255, 0.55);
    font-size: 1rem;
    margin-bottom: 2.5rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 200px;
    gap: 0.9rem;
    margin-bottom: 1.5rem;
    text-align: left;
}

.gallery-item { border-radius: var(--radius); overflow: hidden; }
.gallery-item--tall { grid-row: span 2; }
.gallery-item--wide { grid-column: span 2; }
.gallery-item--full { grid-column: span 3; min-height: 260px; }

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
    transition: transform 0.4s var(--ease), filter 0.4s var(--ease);
    filter: brightness(0.95);
}
.gallery-item img:hover {
    transform: scale(1.04);
    filter: brightness(1.05);
}

.gallery-placeholder {
    width: 100%;
    height: 100%;
    min-height: 200px;
    background: rgba(255, 255, 255, 0.055);
    border: 2px dashed rgba(255, 255, 255, 0.13);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--duration), border-color var(--duration);
}
.gallery-placeholder:hover {
    background: rgba(255, 255, 255, 0.09);
    border-color: rgba(255, 255, 255, 0.28);
}
.gallery-placeholder span {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: rgba(255, 255, 255, 0.28);
    font-size: 0.88rem;
    letter-spacing: 0.08em;
}

.gallery-note {
    font-size: 0.84rem;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 0;
}
.gallery-note a {
    color: var(--pink);
    text-decoration: underline;
    text-underline-offset: 3px;
}
.gallery-note a:hover { color: var(--pink-light); }

/* ============================================================
   VISIT US
   ============================================================ */
#visit {
    padding: 5.5rem 0;
    background: var(--white);
}

.visit-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 3.5rem;
    align-items: start;
}

.visit-info h2 { margin-bottom: 1.2rem; }

.visit-address {
    margin-bottom: 1.8rem;
    padding: 1rem 1.2rem;
    background: var(--purple-pale);
    border-radius: var(--radius);
    border-left: 4px solid var(--purple);
}
.visit-address p {
    font-size: 1rem;
    color: var(--purple-dark);
    font-weight: 600;
    margin-bottom: 0.1rem;
}
.visit-address p:last-child { margin-bottom: 0; }

.hours-block { margin-bottom: 1.8rem; }

.hours-title {
    font-family: 'Lato', sans-serif;
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--purple);
    margin-bottom: 0.7rem;
}

.hours-table {
    width: 100%;
    border-collapse: collapse;
}
.hours-table td {
    padding: 0.4rem 0.7rem;
    font-size: 0.92rem;
    border-bottom: 1px solid var(--cream-dark);
}
.hours-table td:first-child {
    font-weight: 700;
    color: var(--text);
    width: 120px;
}
.hours-table td:last-child {
    color: var(--green-dark);
    font-weight: 700;
}
.hours-table tr:last-child td { border-bottom: none; }

.hours-note {
    font-size: 0.78rem;
    color: var(--text-light);
    margin-top: 0.6rem;
    margin-bottom: 0;
}

.visit-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.visit-map iframe {
    width: 100%;
    height: 430px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    display: block;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
    background: var(--purple-deeper);
    color: var(--white);
}

.footer-flower-bar {
    background: var(--purple-dark);
    text-align: center;
    padding: 0.75rem 0;
    font-size: 1.05rem;
    color: var(--pink);
    letter-spacing: 0.55rem;
}

.footer-inner {
    text-align: center;
    padding: 3rem 2rem 2.5rem;
}

.footer-brand {
    font-family: 'Great Vibes', cursive;
    font-size: clamp(2.5rem, 5vw, 3.4rem);
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 0.3rem;
}

.footer-tagline {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: var(--pink);
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
}

.footer-address {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    margin-bottom: 1.5rem;
}

.footer-fb-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    background: rgba(255, 255, 255, 0.09);
    border-radius: 50%;
    color: var(--white);
    margin-bottom: 1.5rem;
    transition: background var(--duration), transform var(--duration);
}
.footer-fb-btn:hover {
    background: #1877f2;
    transform: scale(1.12);
}

.footer-copy {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 0;
}

/* ============================================================
   SCROLL TO TOP
   ============================================================ */
.scroll-top-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 48px;
    height: 48px;
    background: var(--purple);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 4px 18px rgba(107, 45, 139, 0.45);
    transition: all var(--duration) var(--ease);
    opacity: 0;
    pointer-events: none;
    z-index: 998;
    display: flex;
    align-items: center;
    justify-content: center;
}
.scroll-top-btn.visible {
    opacity: 1;
    pointer-events: auto;
}
.scroll-top-btn:hover {
    background: var(--purple-dark);
    transform: translateY(-3px);
    box-shadow: 0 7px 24px rgba(107, 45, 139, 0.55);
}

/* ============================================================
   RESPONSIVE — TABLET (max 1024px)
   ============================================================ */
@media (max-width: 1024px) {
    .about-grid    { gap: 2.5rem; }
    .artist-content { gap: 2rem; }
    .cards-grid    { gap: 1rem; }
    .visit-grid    { gap: 2.5rem; }
}

/* ============================================================
   RESPONSIVE — MOBILE (max 768px)
   ============================================================ */
@media (max-width: 768px) {
    /* Nav */
    .nav-toggle { display: block; }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--purple-dark);
        flex-direction: column;
        padding: 1rem 1.5rem;
        gap: 0.15rem;
        box-shadow: 0 8px 24px rgba(0,0,0,0.2);
    }
    .nav-links.open { display: flex; }
    .nav-links a { padding: 0.55rem 0.9rem; font-size: 0.95rem; }

    /* About */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2.2rem;
    }
    .about-image-frame {
        transform: none;
        max-width: 360px;
        margin: 0 auto;
    }

    /* Artist */
    .artist-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .artist-inner { padding: 4rem 1.5rem 3.5rem; }

    /* Cards */
    .cards-grid { grid-template-columns: 1fr; }

    /* Gallery */
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }
    .gallery-item--tall  { grid-row: span 1; min-height: 180px; }
    .gallery-item--wide  { grid-column: span 2; }
    .gallery-item--full  { grid-column: span 2; }
    .gallery-placeholder { min-height: 180px; }

    /* Visit */
    .visit-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .visit-map iframe { height: 300px; }
    .visit-actions {
        flex-direction: column;
    }
    .visit-actions .btn { width: 100%; justify-content: center; }
}

/* ============================================================
   RESPONSIVE — SMALL MOBILE (max 480px)
   ============================================================ */
@media (max-width: 480px) {
    .container { padding: 0 1.25rem; }

    .hero-content { padding: 7.5rem 1.5rem 4rem; }

    .gallery-grid {
        grid-template-columns: 1fr;
    }
    .gallery-item--tall,
    .gallery-item--wide,
    .gallery-item--full {
        grid-row: span 1;
        grid-column: span 1;
    }
    .gallery-placeholder { min-height: 160px; }

    .artist-photo-grid { gap: 0.5rem; }

    .artist-cta-row { flex-direction: column; align-items: stretch; }
    .artist-cta-row .btn { text-align: center; justify-content: center; }

    .section-light,
    #about,
    #visit,
    .section-dark {
        padding: 3.5rem 0;
    }
    .artist-inner { padding: 3rem 1.25rem 2.5rem; }
}
