/* ============================================
   POSITIVI-TEES — Creative Youth Arts Workshop
   ============================================ */

/* ---------- CSS Variables ---------- */
:root {
    --pink: #FF2D7B;
    --pink-light: #FF6BA6;
    --yellow: #FFD23F;
    --yellow-light: #FFE57A;
    --green: #00E676;
    --green-dark: #00C853;
    --blue: #2979FF;
    --blue-light: #69A5FF;
    --purple: #AA00FF;
    --purple-light: #D050FF;
    --orange: #FF6D00;

    --dark: #1A1A2E;
    --dark-mid: #16213E;
    --dark-light: #0F3460;
    --white: #FFFFFF;
    --off-white: #F8F7FF;
    --gray: #9CA3AF;
    --gray-light: #E5E7EB;

    --font-display: 'Archivo Black', sans-serif;
    --font-body: 'Poppins', sans-serif;

    --nav-height: 72px;
    --container: 1200px;
    --radius: 16px;
    --radius-sm: 8px;

    --transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--nav-height);
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--dark);
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
    font-family: var(--font-display);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 16px;
    transition: var(--transition);
    letter-spacing: 0.02em;
}

.btn-primary {
    background: var(--pink);
    color: var(--white);
    box-shadow: 0 4px 24px rgba(255, 45, 123, 0.4);
}

.btn-primary:hover {
    background: var(--pink-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(255, 45, 123, 0.5);
}

.btn-outline {
    border: 2px solid var(--white);
    color: var(--white);
    background: transparent;
}

.btn-outline:hover {
    background: var(--white);
    color: var(--dark);
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
}

/* ---------- Section Common ---------- */
.section {
    padding: 72px 0;
    position: relative;
}

.section-dark {
    background: var(--dark);
    color: var(--white);
}

.section-vibrant {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-light) 50%, var(--dark-mid) 100%);
    color: var(--white);
}

.section-label {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--pink);
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 16px;
}

.section-title .accent {
    background: linear-gradient(135deg, var(--pink), var(--purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-dark .section-title .accent {
    background: linear-gradient(135deg, var(--yellow), var(--orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-vibrant .section-title .accent {
    background: linear-gradient(135deg, var(--green), var(--blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-sub {
    font-size: 18px;
    color: var(--gray);
    max-width: 600px;
    margin-bottom: 48px;
}

.section-dark .section-sub {
    color: rgba(255,255,255,0.6);
}

/* ---------- NAV ---------- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--nav-height);
    z-index: 1000;
    background: rgba(26, 26, 46, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    transition: var(--transition);
}

.nav.scrolled {
    background: rgba(26, 26, 46, 0.98);
    box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.nav-logo {
    font-family: var(--font-display);
    font-size: 22px;
    color: var(--white);
    letter-spacing: 0.02em;
}

.nav-logo span {
    background: linear-gradient(135deg, var(--pink), var(--yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    color: rgba(255,255,255,0.7);
    font-weight: 500;
    font-size: 15px;
    transition: var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--pink);
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--white);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--pink);
    color: var(--white);
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
}

.nav-cta:hover {
    background: var(--pink-light);
    transform: translateY(-1px);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
    z-index: 1001;
}

.hamburger span {
    width: 28px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translateY(5px) translateX(5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-5px) translateX(5px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--dark);
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.mobile-menu.active {
    opacity: 1;
    pointer-events: all;
}

.mobile-link {
    font-family: var(--font-display);
    font-size: 28px;
    color: var(--white);
    transition: var(--transition);
}

.mobile-link:hover {
    color: var(--pink);
}

.mobile-cta {
    background: var(--pink);
    padding: 12px 36px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 16px;
    margin-top: 12px;
}

/* ---------- HERO ---------- */
.hero {
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: var(--dark);
    padding-top: var(--nav-height);
    padding-bottom: 60px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.splatter {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    animation: float 8s ease-in-out infinite;
}

.splatter-1 {
    width: 500px;
    height: 500px;
    background: var(--pink);
    top: -10%;
    right: -5%;
    animation-delay: 0s;
}

.splatter-2 {
    width: 400px;
    height: 400px;
    background: var(--blue);
    bottom: -5%;
    left: -5%;
    animation-delay: -2s;
}

.splatter-3 {
    width: 350px;
    height: 350px;
    background: var(--yellow);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.3;
    animation-delay: -4s;
}

.splatter-4 {
    width: 250px;
    height: 250px;
    background: var(--green);
    top: 20%;
    left: 10%;
    opacity: 0.35;
    animation-delay: -6s;
}

.splatter-5 {
    width: 300px;
    height: 300px;
    background: var(--purple);
    bottom: 15%;
    right: 15%;
    opacity: 0.4;
    animation-delay: -3s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -30px) scale(1.05); }
    50% { transform: translate(-20px, 20px) scale(0.95); }
    75% { transform: translate(20px, 10px) scale(1.02); }
}

.splatter-3 {
    animation-name: floatCenter;
}

@keyframes floatCenter {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    25% { transform: translate(-45%, -55%) scale(1.05); }
    50% { transform: translate(-55%, -45%) scale(0.95); }
    75% { transform: translate(-48%, -52%) scale(1.02); }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 24px;
}

.hero-logo {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: block;
    filter: drop-shadow(0 4px 16px rgba(255,255,255,0.15));
    animation: fadeInDown 0.8s ease forwards;
}
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    padding: 8px 24px;
    border-radius: 50px;
    color: var(--white);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 32px;
}

.hero h1 {
    font-size: clamp(3rem, 10vw, 6.5rem);
    color: var(--white);
    margin-bottom: 24px;
    line-height: 1.05;
}

.hero-line-1 {
    background: linear-gradient(135deg, var(--pink), var(--orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-line-2 {
    background: linear-gradient(135deg, var(--yellow), var(--green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-line-3 {
    background: linear-gradient(135deg, var(--blue), var(--purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    color: rgba(255,255,255,0.75);
    font-size: clamp(16px, 2.5vw, 20px);
    max-width: 580px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.4);
    font-size: 12px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    z-index: 2;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.4; height: 40px; }
    50% { opacity: 1; height: 60px; }
}

/* ---------- ABOUT ---------- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    margin-top: 48px;
}

.about-lead {
    font-size: 20px;
    font-weight: 600;
    color: var(--dark);
    line-height: 1.6;
    margin-bottom: 16px;
}

.about-text p {
    color: #555;
    margin-bottom: 16px;
}

.about-values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.value-card {
    background: var(--off-white);
    border-radius: var(--radius);
    padding: 28px;
    transition: var(--transition);
    border: 1px solid transparent;
}

.value-card:hover {
    border-color: var(--pink);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(255, 45, 123, 0.1);
}

.value-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.value-icon svg {
    width: 28px;
    height: 28px;
}

.value-card:nth-child(1) .value-icon {
    background: rgba(255, 45, 123, 0.1);
    color: var(--pink);
}

.value-card:nth-child(2) .value-icon {
    background: rgba(0, 230, 118, 0.1);
    color: var(--green-dark);
}

.value-card:nth-child(3) .value-icon {
    background: rgba(255, 210, 63, 0.15);
    color: var(--orange);
}

.value-card:nth-child(4) .value-icon {
    background: rgba(41, 121, 255, 0.1);
    color: var(--blue);
}

.value-card h3 {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 6px;
}

.value-card p {
    font-size: 14px;
    color: #777;
    line-height: 1.5;
}

/* ---------- WORKSHOPS ---------- */
.workshops-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.workshop-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius);
    padding: 36px 28px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.workshop-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--pink), var(--yellow), var(--green), var(--blue), var(--purple));
    opacity: 0;
    transition: var(--transition);
}

.workshop-card:hover {
    background: rgba(255,255,255,0.08);
    transform: translateY(-6px);
    border-color: rgba(255,255,255,0.2);
}

.workshop-card:hover::before {
    opacity: 1;
}

.workshop-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.workshop-icon svg {
    width: 28px;
    height: 28px;
}

.workshop-card:nth-child(1) .workshop-icon { background: rgba(255, 45, 123, 0.15); color: var(--pink); }
.workshop-card:nth-child(2) .workshop-icon { background: rgba(0, 230, 118, 0.15); color: var(--green); }
.workshop-card:nth-child(3) .workshop-icon { background: rgba(255, 210, 63, 0.15); color: var(--yellow); }
.workshop-card:nth-child(4) .workshop-icon { background: rgba(41, 121, 255, 0.15); color: var(--blue); }
.workshop-card:nth-child(5) .workshop-icon { background: rgba(170, 0, 255, 0.15); color: var(--purple-light); }

.workshop-card h3 {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--white);
}

.workshop-card p {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
    margin-bottom: 20px;
}

.workshop-tag {
    display: inline-block;
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.5);
    border: 1px solid rgba(255,255,255,0.1);
}

/* ---------- PROCESS ---------- */
.process-grid {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    margin-top: 48px;
}

.process-step {
    flex: 1;
    max-width: 320px;
    text-align: center;
    padding: 0 20px;
}

.step-number {
    font-family: var(--font-display);
    font-size: 64px;
    background: linear-gradient(135deg, var(--pink), var(--purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 16px;
}

.process-step:nth-child(3) .step-number {
    background: linear-gradient(135deg, var(--yellow), var(--orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.process-step:nth-child(5) .step-number {
    background: linear-gradient(135deg, var(--green), var(--blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.step-visual {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    color: var(--pink);
}

.process-step:nth-child(3) .step-visual { color: var(--yellow); }
.process-step:nth-child(5) .step-visual { color: var(--green); }

.step-visual svg {
    width: 100%;
    height: 100%;
}

.process-step h3 {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 22px;
    margin-bottom: 12px;
}

.process-step p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
}

.process-connector {
    display: flex;
    align-items: center;
    width: 100px;
    flex-shrink: 0;
    padding-top: 100px;
    color: var(--gray-light);
}

.process-connector svg {
    width: 100%;
}

/* ---------- TECHNIQUES ---------- */
.techniques-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.technique-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius);
    padding: 0;
    overflow: hidden;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.technique-card:hover {
    background: rgba(255,255,255,0.08);
    transform: translateY(-4px);
    border-color: rgba(255,255,255,0.2);
}
.technique-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}
.technique-card h3,
.technique-card p {
    padding-left: 32px;
    padding-right: 32px;
    text-align: center;
}
.technique-card h3 { margin-top: 20px; }
.technique-card p { padding-bottom: 32px; }

.technique-number {
    font-family: var(--font-display);
    font-size: 48px;
    line-height: 1;
    margin-bottom: 20px;
    opacity: 0.15;
}

.technique-card:nth-child(1) .technique-number { color: var(--pink); opacity: 0.4; }
.technique-card:nth-child(2) .technique-number { color: var(--green); opacity: 0.4; }
.technique-card:nth-child(3) .technique-number { color: var(--blue); opacity: 0.4; }

.technique-card h3 {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 22px;
    color: var(--white);
    margin-bottom: 12px;
}

.technique-card p {
    font-size: 15px;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
}

/* ---------- PARTNERS ---------- */
.partners-strip {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 48px;
    padding: 40px 0;
}

.partner-item {
    background: var(--off-white);
    border: 1px solid var(--gray-light);
    border-radius: var(--radius-sm);
    padding: 16px 24px;
    transition: var(--transition);
}

.partner-item:hover {
    border-color: var(--pink);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 45, 123, 0.08);
}

.partner-item span {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 16px;
    color: var(--dark);
    white-space: nowrap;
}

/* ---------- CONTACT ---------- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 48px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius);
    padding: 24px 28px;
}

.contact-card h3 {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--pink);
    margin-bottom: 8px;
}

.contact-card a {
    color: var(--white);
    font-weight: 500;
    font-size: 17px;
    transition: var(--transition);
}

.contact-card a:hover {
    color: var(--yellow);
}

.contact-card p {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
}

.contact-card-muted {
    background: rgba(255,255,255,0.02);
    border-color: rgba(255,255,255,0.06);
}

.contact-card-muted h3 {
    color: rgba(255,255,255,0.4);
}

.contact-card-muted p {
    font-size: 13px;
    color: rgba(255,255,255,0.35);
    margin-bottom: 4px;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-weight: 500;
    transition: var(--transition);
}

.social-link:hover {
    color: var(--pink);
}

.social-link svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

.social-link span {
    font-size: 15px;
}

/* Contact Form */
.contact-form-wrap {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius);
    padding: 36px;
}

.contact-form-wrap h3 {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 20px;
    color: var(--white);
    margin-bottom: 28px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.5);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-sm);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 15px;
    transition: var(--transition);
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255,255,255,0.25);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--pink);
    background: rgba(255,255,255,0.08);
    box-shadow: 0 0 0 3px rgba(255, 45, 123, 0.15);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-success {
    text-align: center;
    padding: 40px;
}

.success-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--green);
    color: var(--white);
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-weight: 700;
}

.form-success h3 {
    color: var(--white);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 8px;
}

.form-success p {
    color: rgba(255,255,255,0.6);
    font-size: 15px;
}

/* ---------- FOOTER ---------- */
.footer {
    background: #0D0D1A;
    color: var(--white);
    padding: 60px 0 0;
}

.footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 24px;
    margin-bottom: 12px;
}

.footer-logo span {
    background: linear-gradient(135deg, var(--pink), var(--yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-tagline {
    color: rgba(255,255,255,0.5);
    font-size: 15px;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-bottom: 18px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--pink);
    border-color: var(--pink);
    color: var(--white);
}

.footer-social a svg {
    width: 20px;
    height: 20px;
}

.footer-col h4 {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--white);
    margin-bottom: 16px;
}

.footer-col a,
.footer-col p {
    display: block;
    color: rgba(255,255,255,0.45);
    font-size: 14px;
    margin-bottom: 8px;
    transition: var(--transition);
}

.footer-col a:hover {
    color: var(--pink);
}

.footer-bottom {
    padding: 24px 0;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255,255,255,0.3);
    font-size: 13px;
}

/* ---------- NAV LOGO IMAGE ---------- */
.nav-logo-img {
    height: 60px;
    width: auto;
    display: block;
}

/* ---------- HERO PHOTO BACKGROUND ---------- */
.hero-photo-bg {
    position: absolute;
    inset: 0;
    background: url('images/workshop-spray.jpg') center/cover no-repeat;
    opacity: 0.25;
    z-index: 0;
}

.hero-bg {
    z-index: 1;
}

/* ---------- WORKSHOP CARD IMAGES ---------- */
.workshop-card-img {
    width: 100%;
    height: 180px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    margin-bottom: 20px;
}

.workshop-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

/* ---------- PROCESS STEP IMAGES ---------- */
.step-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid var(--pink);
    box-shadow: 0 8px 30px rgba(255, 45, 123, 0.2);
}

.process-step:nth-child(3) .step-img {
    border-color: var(--yellow);
    box-shadow: 0 8px 30px rgba(255, 210, 63, 0.2);
}

.process-step:nth-child(5) .step-img {
    border-color: var(--green);
    box-shadow: 0 8px 30px rgba(0, 230, 118, 0.2);
}

.step-visual {
    width: 140px;
    height: 140px;
}

/* ---------- PARTNER LOGOS ---------- */
.partner-logo {
    height: 50px;
    width: auto;
    max-width: 160px;
    object-fit: contain;
    display: block;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: var(--transition);
}

.partner-item:hover .partner-logo {
    filter: grayscale(0%);
    opacity: 1;
}

/* ---------- SOCIAL ICON IMAGES ---------- */
.social-icon-img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    flex-shrink: 0;
}

.footer-social-img {
    width: 22px;
    height: 22px;
    object-fit: contain;
}

/* ---------- FOOTER LOGO IMAGE ---------- */
.footer-logo-img {
    height: 36px;
    width: auto;
    display: block;
}

/* ---------- FOUNDER PHOTO ---------- */
.about-founder-grid {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 48px;
    align-items: start;
    max-width: 900px;
    margin: 0 auto;
}
.about-founder-photo-col {
    position: sticky;
    top: 100px;
}
.founder-photo-large {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    border-radius: 16px;
    border: 4px solid var(--pink);
    box-shadow: 0 12px 40px rgba(255, 45, 123, 0.2);
}
.about-founder-text-col p {
    margin-bottom: 16px;
    line-height: 1.8;
}
.founder-motto {
    text-align: center;
    font-style: italic;
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 16px;
}

/* Values section */
.section-values { background: var(--light); }
.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .about-founder-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .about-founder-photo-col {
        position: static;
        max-width: 250px;
        margin: 0 auto;
    }
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 480px) {
    .values-grid {
        grid-template-columns: 1fr;
    }
}
.founder-quote {
    font-size: 1.15rem;
    font-style: italic;
    line-height: 1.7;
    border-left: 4px solid var(--pink);
    padding: 12px 0 12px 20px;
    margin: 0 0 8px;
    color: var(--dark);
}
.founder-credit {
    font-size: 0.9rem;
    margin-bottom: 24px;
    opacity: 0.7;
}

/* ---------- Scroll Reveal ---------- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .workshops-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .nav-links,
    .nav-cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero h1 {
        font-size: clamp(2.5rem, 12vw, 4rem);
    }

    .hero-ctas {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        padding: 14px 32px;
        width: 100%;
        max-width: 280px;
    }

    .section {
        padding: 72px 0;
    }

    .section-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }

    .workshops-grid {
        grid-template-columns: 1fr;
    }

    .process-grid {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .process-connector {
        transform: rotate(90deg);
        width: 60px;
        padding-top: 0;
    }

    .techniques-grid {
        grid-template-columns: 1fr;
    }

    .about-values {
        grid-template-columns: 1fr;
    }

    .partners-strip {
        gap: 16px;
    }

    .partner-item {
        padding: 16px 24px;
    }

    .about-founder-img {
        float: none;
        width: 150px;
        height: 150px;
        margin: 0 auto 20px;
    }

    .founder-photo {
        height: 150px;
    }

    .step-visual {
        width: 120px;
        height: 120px;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .contact-form-wrap {
        padding: 24px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero p {
        font-size: 15px;
    }

    .hero-badge {
        font-size: 12px;
        padding: 6px 16px;
    }

    .step-number {
        font-size: 48px;
    }

    .partners-strip {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        align-items: stretch;
    }

    .partner-item {
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 16px 12px;
    }

    .pillars-grid {
        grid-template-columns: 1fr !important;
    }

    .events-empty {
        padding: 40px 20px !important;
    }
}

/* ---------- HERO TAGS ---------- */
.hero-tags {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 28px;
}

.hero-tag {
    display: inline-block;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border: 1px solid rgba(255,255,255,0.25);
    color: var(--white);
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(8px);
    transition: var(--transition);
}

.hero-tag:nth-child(1) {
    border-color: var(--pink);
    color: var(--pink);
    background: rgba(255, 45, 123, 0.12);
}

.hero-tag:nth-child(2) {
    border-color: var(--green);
    color: var(--green);
    background: rgba(0, 230, 118, 0.12);
}

.hero-tag:nth-child(3) {
    border-color: var(--blue);
    color: var(--blue);
    background: rgba(41, 121, 255, 0.12);
}

/* ---------- PILLARS ---------- */
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 48px;
}

.pillar-card {
    border-radius: var(--radius);
    padding: 40px 32px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    border: 2px solid transparent;
}

.pillar-card:hover {
    transform: translateY(-6px);
}

.pillar-empower {
    background: linear-gradient(135deg, rgba(255, 45, 123, 0.12), rgba(255, 45, 123, 0.04));
    border-color: rgba(255, 45, 123, 0.3);
}

.pillar-empower:hover {
    border-color: var(--pink);
    box-shadow: 0 12px 40px rgba(255, 45, 123, 0.2);
}

.pillar-create {
    background: linear-gradient(135deg, rgba(255, 210, 63, 0.12), rgba(255, 109, 0, 0.04));
    border-color: rgba(255, 210, 63, 0.3);
}

.pillar-create:hover {
    border-color: var(--yellow);
    box-shadow: 0 12px 40px rgba(255, 210, 63, 0.2);
}

.pillar-regenerate {
    background: linear-gradient(135deg, rgba(0, 230, 118, 0.12), rgba(41, 121, 255, 0.04));
    border-color: rgba(0, 230, 118, 0.3);
}

.pillar-regenerate:hover {
    border-color: var(--green);
    box-shadow: 0 12px 40px rgba(0, 230, 118, 0.2);
}

.pillar-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.pillar-icon svg {
    width: 30px;
    height: 30px;
}

.pillar-empower .pillar-icon {
    background: rgba(255, 45, 123, 0.2);
    color: var(--pink);
}

.pillar-create .pillar-icon {
    background: rgba(255, 210, 63, 0.2);
    color: var(--yellow);
}

.pillar-regenerate .pillar-icon {
    background: rgba(0, 230, 118, 0.2);
    color: var(--green);
}

.pillar-card h3 {
    font-family: var(--font-display);
    font-size: 24px;
    color: var(--white);
    margin-bottom: 12px;
}

.pillar-card p {
    font-size: 15px;
    color: rgba(255,255,255,0.65);
    line-height: 1.7;
}

/* ---------- UPCOMING EVENTS ---------- */
.events-empty {
    background: var(--off-white);
    border: 2px dashed var(--gray-light);
    border-radius: var(--radius);
    padding: 60px 40px;
    text-align: center;
    margin-top: 32px;
}

.events-empty-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 20px;
    color: var(--gray);
}

.events-empty-icon svg {
    width: 100%;
    height: 100%;
}

.events-empty p {
    font-size: 17px;
    color: #666;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.7;
}

.events-empty a {
    color: var(--pink);
    font-weight: 600;
    transition: var(--transition);
}

.events-empty a:hover {
    color: var(--purple);
}

/* ---------- VIDEO ---------- */
.video-section { background: var(--dark); color: var(--white); }
.video-wrap {
    max-width: 800px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(0,0,0,0.3);
}
.video-wrap video {
    width: 100%;
    display: block;
}

/* ---------- EVENTS ---------- */
.events-past-heading {
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
    margin: 48px 0 24px;
    opacity: 0.6;
}
.events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 960px;
    margin: 0 auto;
}
.event-card {
    background: var(--off-white);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--gray-light);
    transition: var(--transition);
}
.event-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.1);
}
.event-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}
.event-date {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px 20px 0;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--pink);
}
.event-month { text-transform: uppercase; }
.event-day { font-size: 1.4rem; }
.event-year { opacity: 0.6; }
.event-info {
    padding: 8px 20px 20px;
}
.event-info h4 {
    font-size: 1.1rem;
    margin-bottom: 4px;
}
.event-time {
    font-size: 0.8rem;
    opacity: 0.5;
    margin-bottom: 8px;
}
.event-info p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #555;
}
@media (max-width: 768px) {
    .events-grid { grid-template-columns: 1fr; max-width: 480px; }
}

/* ---------- AWARDS BADGE ---------- */
.awards-badge {
    display: flex;
    align-items: center;
    gap: 24px;
    background: rgba(255, 210, 63, 0.08);
    border: 1px solid rgba(255, 210, 63, 0.25);
    border-radius: var(--radius);
    padding: 32px 40px;
    max-width: 700px;
    margin: 0 auto;
}

.awards-icon {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    color: var(--yellow);
}

.awards-icon svg {
    width: 100%;
    height: 100%;
}

.awards-text h3 {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 20px;
    color: var(--yellow);
    margin-bottom: 4px;
}

.awards-text p {
    font-size: 14px;
    color: rgba(255,255,255,0.55);
    line-height: 1.5;
}

/* ---------- RESPONSIVE: PILLARS & EVENTS & AWARDS ---------- */
@media (max-width: 768px) {
    .pillars-grid {
        grid-template-columns: 1fr;
    }

    .awards-badge {
        flex-direction: column;
        text-align: center;
        padding: 28px 24px;
    }

    .events-empty {
        padding: 40px 20px;
    }

    .hero-tags {
        gap: 8px;
    }

    .hero-tag {
        font-size: 11px;
        padding: 5px 14px;
    }
}

/* ========== MOBILE FIX — COMPREHENSIVE ========== */
@media (max-width: 768px) {
    /* Hero */
    .hero-logo { width: 120px; height: 120px; }
    .hero { padding: 100px 20px 60px; }
    .hero h1 { font-size: clamp(2rem, 10vw, 3rem); }
    .hero p { font-size: 14px; padding: 0 8px; }

    /* Founder grid */
    .about-founder-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .about-founder-photo-col {
        position: static;
        max-width: 220px;
        margin: 0 auto;
    }
    .founder-photo-large { aspect-ratio: 1; }
    .founder-quote { font-size: 1rem; }

    /* Values */
    .values-grid { grid-template-columns: 1fr 1fr; gap: 16px; }

    /* Pillars */
    .pillars-grid { grid-template-columns: 1fr; }

    /* Video */
    .video-wrap { border-radius: 12px; }

    /* Workshop cards */
    .workshop-card-img { height: 140px; }

    /* Techniques */
    .techniques-grid { grid-template-columns: 1fr; }
    .technique-img { height: 160px; }

    /* Events */
    .events-grid { grid-template-columns: 1fr; max-width: 480px; }
    .event-img { height: 160px; }

    /* Partners */
    .partners-strip { gap: 12px; }
    .partner-item { padding: 12px 16px; }
    .partner-item img { height: 35px; }

    /* Contact */
    .contact-grid { grid-template-columns: 1fr; }

    /* Footer */
    .footer-inner { grid-template-columns: 1fr; text-align: center; }

    /* General */
    .section { padding: 60px 0; }
    .section-title { font-size: clamp(1.6rem, 6vw, 2.2rem); }
    .section-sub { font-size: 14px; padding: 0 8px; }
}

@media (max-width: 480px) {
    .hero-logo { width: 100px; height: 100px; }
    .hero h1 { font-size: 1.8rem; }
    .values-grid { grid-template-columns: 1fr; }
    .about-founder-photo-col { max-width: 180px; }
    .founder-quote { font-size: 0.9rem; padding: 10px 0 10px 16px; }
    .event-card { font-size: 0.9rem; }
    .container { padding: 0 16px; }
}

/* ========== CRITICAL MOBILE FIX ========== */
@media (max-width: 768px) {
    body { font-size: 15px; }
    h1 { font-size: 2rem !important; }
    h2 { font-size: 1.5rem !important; }
    .hero { min-height: 80vh; padding: 100px 20px 60px; }
    .hero p { font-size: 0.95rem; }

    .contact-grid,
    .footer-inner {
        grid-template-columns: 1fr !important;
    }

    .nav-links, .nav-social { display: none; }
    .hamburger { display: flex !important; }

    iframe { width: 100% !important; }
}

@media (max-width: 480px) {
    h1 { font-size: 1.7rem !important; }
    h2 { font-size: 1.3rem !important; }
    .hero { padding: 90px 16px 50px; }
}
