/* ============================================
   ANTONIO CARMONA — Psicólogo y Constelador
   Palette: Warm Amber, Golden, Cream, Rose
   ============================================ */

:root {
    --bg: #F4EBE1;
    --bg-alt: #EBE0D4;
    --bg-card: #FAF6F1;
    --moss: #B8935A;
    --moss-dark: #9A7A48;
    --moss-light: rgba(184, 147, 90, 0.10);
    --moss-glow: rgba(184, 147, 90, 0.06);
    --aqua: #C4A06A;
    --aqua-dark: #A8874F;
    --terracotta: #B07A6E;
    --terracotta-dark: #956458;
    --terracotta-light: rgba(176, 122, 110, 0.10);
    --lilac: #C9A898;
    --lilac-dark: #A8877A;
    --lilac-light: rgba(201, 168, 152, 0.12);
    --beige: #E0D3C5;
    --text: #2C2420;
    --text-mid: #5A4E47;
    --text-muted: #8A7E76;
    --white: #FFFFFF;
    --border: rgba(184, 147, 90, 0.15);

    --font-display: 'DM Serif Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    --sp-xs: 0.5rem;
    --sp-sm: 1rem;
    --sp-md: 1.5rem;
    --sp-lg: 2.5rem;
    --sp-xl: 4rem;
    --sp-2xl: 6rem;
    --sp-3xl: 8rem;
    --sp-4xl: 10rem;

    --r-sm: 8px;
    --r-md: 14px;
    --r-lg: 22px;
    --r-xl: 40px;

    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    --t-fast: 0.2s;
    --t-base: 0.4s;
    --t-slow: 0.7s;
}

/* --- Reset --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: var(--font-body);
    font-weight: 400;
    color: var(--text);
    background: var(--bg);
    line-height: 1.7;
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--t-fast); }

/* ============================================
   PRELOADER
   ============================================ */
.preloader {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.7s ease, visibility 0.7s ease;
}
.preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.preloader-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--sp-md);
}
.preloader-icon {
    animation: preloaderPulse 2s ease-in-out infinite;
}
@keyframes preloaderPulse {
    0%, 100% { transform: scale(1); opacity: 0.7; }
    50% { transform: scale(1.08); opacity: 1; }
}
.preloader-path {
    stroke-dasharray: 80;
    stroke-dashoffset: 80;
    animation: preloaderDraw 2s ease-in-out infinite;
}
.preloader-path-2 {
    animation-delay: 0.3s;
}
@keyframes preloaderDraw {
    0% { stroke-dashoffset: 80; }
    50% { stroke-dashoffset: 0; }
    100% { stroke-dashoffset: -80; }
}
.preloader-text {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--text);
    letter-spacing: 0.01em;
    animation: preloaderFade 1.5s ease-in-out infinite;
}
@keyframes preloaderFade {
    0%, 100% { opacity: 0.35; }
    50% { opacity: 1; }
}

/* --- Cursor Glow --- */
.cursor-glow {
    position: fixed;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--moss-glow) 0%, rgba(196, 131, 106, 0.03) 40%, transparent 70%);
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s;
    opacity: 0;
}
.cursor-glow.active { opacity: 1; }

/* --- Organic Background --- */
.organic-bg {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}
.organic-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.3;
}
.organic-shape-1 {
    width: 500px;
    height: 500px;
    background: rgba(184, 147, 90, 0.10);
    top: -10%;
    right: -5%;
    animation: floatSlow 20s ease-in-out infinite;
}
.organic-shape-2 {
    width: 400px;
    height: 400px;
    background: rgba(201, 168, 152, 0.10);
    bottom: 10%;
    left: -8%;
    animation: floatSlow 25s ease-in-out infinite reverse;
}
.organic-shape-3 {
    width: 350px;
    height: 350px;
    background: rgba(196, 160, 106, 0.07);
    top: 40%;
    left: 50%;
    transform: translateX(-50%);
    animation: floatSlow 18s ease-in-out infinite 5s;
}
@keyframes floatSlow {
    0%, 100% { transform: translate(0, 0); }
    25% { transform: translate(30px, -20px); }
    50% { transform: translate(-20px, 30px); }
    75% { transform: translate(15px, 15px); }
}

/* --- Utilities --- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--sp-md);
}
.accent-underline {
    position: relative;
    display: inline;
}
.accent-underline::after {
    content: '';
    position: absolute;
    left: -2px;
    right: -2px;
    bottom: 4px;
    height: 30%;
    background: linear-gradient(90deg, rgba(184, 147, 90, 0.22), rgba(176, 122, 110, 0.22));
    border-radius: 3px;
    z-index: -1;
    transition: height var(--t-base);
}
.sr-only {
    position: absolute;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    border: 0;
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: var(--sp-md) 0;
    transition: all var(--t-base) var(--ease);
}
.navbar.scrolled {
    background: rgba(244, 235, 225, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 0.8rem 0;
    box-shadow: 0 1px 30px rgba(46, 42, 37, 0.06);
}
.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--sp-md);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav-logo {
    font-family: var(--font-display);
    font-size: 1.35rem;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 10px;
}
.nav-logo-icon {
    color: inherit;
    display: flex;
    align-items: center;
}
.navbar.scrolled .nav-logo { color: var(--text); }
.navbar.scrolled .nav-logo-icon { color: var(--moss); }
.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--sp-lg);
    list-style: none;
}
.nav-link {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 400;
    color: rgba(255,255,255,0.85);
    letter-spacing: 0.01em;
    position: relative;
    padding: 4px 0;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--moss), var(--terracotta));
    border-radius: 2px;
    transition: width var(--t-base) var(--ease);
}
.nav-link:hover { color: var(--white); }
.nav-link:hover::after { width: 100%; }
.navbar.scrolled .nav-link { color: var(--text-muted); }
.navbar.scrolled .nav-link:hover { color: var(--text); }
.nav-link--cta {
    background: linear-gradient(135deg, var(--moss), var(--moss-dark));
    color: var(--white) !important;
    padding: 0.6rem 1.6rem;
    border-radius: 100px;
    font-weight: 500;
    transition: transform var(--t-base) var(--ease-spring), box-shadow var(--t-base);
}
.nav-link--cta::after { display: none; }
.nav-link--cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(122, 143, 111, 0.3);
    color: var(--white) !important;
}
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}
.nav-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: transform var(--t-base), opacity var(--t-fast);
}

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: var(--sp-4xl) var(--sp-md) var(--sp-3xl);
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 30%, rgba(184, 147, 90, 0.20) 0%, transparent 55%),
        radial-gradient(ellipse at 80% 70%, rgba(196, 160, 106, 0.25) 0%, transparent 55%),
        radial-gradient(ellipse at 50% 50%, rgba(201, 168, 152, 0.12) 0%, transparent 60%),
        linear-gradient(160deg, #2C2420 0%, #3A302A 40%, #2C2420 100%);
}
.hero-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
}
.hero-circle {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.06);
}
.hero-circle-1 {
    width: 600px; height: 600px;
    top: -15%; right: -10%;
    animation: heroFloat 15s ease-in-out infinite;
}
.hero-circle-2 {
    width: 400px; height: 400px;
    bottom: -5%; left: -5%;
    border-color: rgba(184, 147, 90, 0.1);
    animation: heroFloat 20s ease-in-out infinite reverse;
}
.hero-circle-3 {
    width: 200px; height: 200px;
    top: 30%; left: 40%;
    border-color: rgba(196, 160, 106, 0.08);
    animation: heroFloat 12s ease-in-out infinite 3s;
}
.hero-line {
    position: absolute;
    width: 1px;
    background: linear-gradient(180deg, transparent, rgba(255,255,255,0.06), transparent);
}
.hero-line-1 {
    height: 60%;
    top: 20%;
    left: 25%;
    animation: heroLinePulse 8s ease-in-out infinite;
}
.hero-line-2 {
    height: 45%;
    top: 30%;
    right: 30%;
    animation: heroLinePulse 10s ease-in-out infinite 2s;
}
@keyframes heroFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(20px, -15px) scale(1.02); }
    66% { transform: translate(-15px, 10px) scale(0.98); }
}
@keyframes heroLinePulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.8; }
}
.hero-content {
    position: relative;
    z-index: 1;
    max-width: 720px;
    text-align: center;
    margin: 0 auto;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.78rem;
    font-weight: 400;
    letter-spacing: 0.03em;
    color: rgba(255,255,255,0.85);
    background: rgba(255,255,255,0.07);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 0.55rem 1.4rem;
    border-radius: 100px;
    border: 1px solid rgba(255,255,255,0.10);
    margin-bottom: var(--sp-lg);
}
.badge-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--moss);
    animation: dotPulse 2s ease-in-out infinite;
}
@keyframes dotPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.4); }
}
.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 6vw, 4.8rem);
    font-weight: 400;
    line-height: 1.1;
    color: white;
    margin-bottom: var(--sp-md);
    letter-spacing: -0.01em;
}
.hero-accent {
    background: linear-gradient(135deg, var(--moss), #D4B87A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-subtitle {
    font-size: 1rem;
    font-weight: 300;
    color: rgba(255,255,255,0.75);
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
    margin-bottom: var(--sp-lg);
}
.hero-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--sp-sm);
    flex-wrap: wrap;
}
.hero-scroll {
    position: absolute;
    bottom: var(--sp-lg);
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}
.hero-scroll-text {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
}
.hero-scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, rgba(255,255,255,0.3), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
    0% { transform: scaleY(1); opacity: 1; transform-origin: top; }
    50% { transform: scaleY(0); opacity: 0; transform-origin: top; }
    50.1% { transform: scaleY(0); opacity: 0; transform-origin: bottom; }
    100% { transform: scaleY(1); opacity: 1; transform-origin: bottom; }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    padding: 0.95rem 2.2rem;
    border-radius: var(--r-md);
    border: none;
    cursor: pointer;
    transition: transform var(--t-base) var(--ease-spring), box-shadow var(--t-base), background var(--t-base);
}
.btn-primary {
    background: linear-gradient(135deg, var(--moss), var(--moss-dark));
    color: var(--white);
}
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 40px rgba(122, 143, 111, 0.3);
}
.btn-outline {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: white;
    border: 1px solid rgba(255,255,255,0.15);
}
.btn-outline:hover {
    background: rgba(255,255,255,0.18);
    transform: translateY(-3px);
}
.btn-icon {
    transition: transform var(--t-base);
}
.btn:hover .btn-icon { transform: translateX(4px); }
.btn-block { width: 100%; justify-content: center; }

/* ============================================
   MARQUEE
   ============================================ */
.marquee {
    background: linear-gradient(135deg, var(--text), #3A332C);
    padding: var(--sp-sm) 0;
    overflow: hidden;
}
.marquee-track {
    display: flex;
    align-items: center;
    gap: var(--sp-lg);
    width: max-content;
    animation: marquee 30s linear infinite;
}
.marquee-track span {
    font-family: var(--font-display);
    font-size: 0.9rem;
    color: var(--beige);
    letter-spacing: 0.03em;
    white-space: nowrap;
}
.marquee-sep {
    font-size: 0.7rem !important;
    color: var(--terracotta) !important;
    opacity: 0.6;
}
@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ============================================
   SECTIONS COMMON
   ============================================ */
.section {
    position: relative;
    padding: var(--sp-4xl) 0;
    overflow: hidden;
}
.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto var(--sp-2xl);
}
.section-tag {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--moss);
    margin-bottom: var(--sp-sm);
    position: relative;
    padding-left: 20px;
}
.section-tag::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 12px;
    height: 1px;
    background: var(--moss);
    transform: translateY(-50%);
}
.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.9rem, 3.8vw, 3rem);
    font-weight: 400;
    line-height: 1.2;
    color: var(--text);
    margin-bottom: var(--sp-md);
}
.section-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.8;
}

/* ============================================
   SERVICE ROWS
   ============================================ */
.section-services {
    background: var(--bg);
}
.services-list {
    display: flex;
    flex-direction: column;
    gap: var(--sp-md);
}
.service-row {
    display: grid;
    grid-template-columns: 60px 1fr 80px 56px;
    gap: var(--sp-lg);
    align-items: center;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: var(--sp-lg) var(--sp-xl);
    transition: transform var(--t-slow) var(--ease-out), box-shadow var(--t-slow);
    position: relative;
}
.service-row::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    border-radius: var(--r-lg) 0 0 var(--r-lg);
    background: linear-gradient(180deg, var(--moss), var(--terracotta));
    opacity: 0;
    transition: opacity var(--t-base);
}
.service-row:hover {
    transform: translateX(8px);
    box-shadow: 0 20px 60px rgba(46, 42, 37, 0.06);
}
.service-row:hover::before { opacity: 1; }
.service-number {
    font-family: var(--font-display);
    font-size: 2.4rem;
    color: var(--beige);
    line-height: 1;
}
.service-row:hover .service-number {
    color: var(--terracotta);
    transition: color var(--t-base);
}
.service-name {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--text);
    margin-bottom: 6px;
}
.service-text {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: var(--sp-sm);
}
.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.service-tags span {
    font-size: 0.68rem;
    font-weight: 500;
    color: var(--moss-dark);
    background: var(--moss-light);
    padding: 3px 12px;
    border-radius: 100px;
    letter-spacing: 0.02em;
}
.service-icon-wrap {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--moss-light), var(--lilac-light));
    border-radius: var(--r-md);
    color: var(--moss);
    transition: transform var(--t-base) var(--ease-spring), background var(--t-base);
}
.service-row:hover .service-icon-wrap {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, var(--moss), var(--terracotta));
    color: var(--white);
}
.service-link {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    border-radius: 50%;
    color: var(--text-muted);
    transition: all var(--t-base);
}
.service-row:hover .service-link {
    background: var(--moss);
    border-color: var(--moss);
    color: var(--white);
    transform: rotate(-45deg);
}

/* ============================================
   QUOTE SECTION
   ============================================ */
.section-quote {
    padding: var(--sp-3xl) 0;
    background: var(--bg-alt);
}
.quote-wrap {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}
.quote-deco {
    margin-bottom: var(--sp-md);
    opacity: 0.6;
}
.quote-text {
    font-family: var(--font-display);
    font-size: clamp(1.3rem, 3vw, 2.1rem);
    font-weight: 400;
    line-height: 1.5;
    color: var(--text);
    font-style: italic;
    margin-bottom: var(--sp-lg);
}
.quote-author {
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 600;
    font-style: normal;
    color: var(--moss);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.section-about {
    background: var(--bg);
}
.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: var(--sp-3xl);
    align-items: center;
}
.about-numbers {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--sp-md);
    margin: var(--sp-lg) 0;
    padding: var(--sp-lg) 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.number-item { text-align: center; }
.number-value {
    display: block;
    font-family: var(--font-display);
    font-size: 2.4rem;
    background: linear-gradient(135deg, var(--moss), var(--terracotta));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
}
.number-value::after {
    content: '+';
    font-size: 1.2rem;
}
.number-label {
    display: block;
    font-size: 0.72rem;
    color: var(--text-muted);
    margin-top: 4px;
}
.about-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.tag {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-mid);
    background: var(--white);
    padding: 6px 16px;
    border-radius: 100px;
    border: 1px solid var(--border);
    transition: all var(--t-base);
    cursor: default;
}
.tag:hover {
    background: linear-gradient(135deg, var(--moss), var(--terracotta));
    color: var(--white);
    border-color: transparent;
    transform: translateY(-2px);
}

/* --- Photo --- */
.about-visual {
    position: relative;
}
.about-photo-frame {
    position: relative;
}
.about-photo {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    object-position: top center;
    border-radius: var(--r-xl);
    display: block;
}
.photo-accent {
    position: absolute;
    top: -16px;
    right: -16px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--terracotta);
    border-radius: var(--r-xl);
    opacity: 0.15;
    z-index: -1;
}
.photo-dot {
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    animation: dotFloat 6s ease-in-out infinite;
}
.photo-dot-1 {
    background: var(--moss);
    bottom: 30px;
    left: -20px;
    opacity: 0.4;
}
.photo-dot-2 {
    background: var(--terracotta);
    top: 40px;
    right: -24px;
    opacity: 0.3;
    animation-delay: 2s;
}
@keyframes dotFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

/* ============================================
   WORKSHOPS
   ============================================ */
.section-workshops {
    background: var(--bg-alt);
}
/* --- Featured workshop --- */
.workshop-featured {
    display: grid;
    grid-template-columns: 0.45fr 1fr;
    gap: 0;
    background: var(--white);
    border-radius: var(--r-lg);
    border: 1px solid var(--border);
    overflow: hidden;
    margin-bottom: var(--sp-lg);
    transition: transform var(--t-slow) var(--ease-out), box-shadow var(--t-slow);
}
.workshop-featured:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 70px rgba(44, 36, 32, 0.10);
}
.workshop-featured-img {
    position: relative;
    overflow: hidden;
}
.workshop-featured-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform var(--t-slow) var(--ease-out);
}
.workshop-featured:hover .workshop-featured-img img {
    transform: scale(1.03);
}
.workshop-featured-body {
    padding: var(--sp-xl);
    display: flex;
    flex-direction: column;
}
.workshop-title--featured {
    font-size: 1.5rem;
}

.workshops-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--sp-lg);
}
.workshops-grid--two {
    grid-template-columns: repeat(2, 1fr);
}
.workshop-card {
    background: var(--white);
    border-radius: var(--r-lg);
    padding: var(--sp-lg);
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    transition: transform var(--t-slow) var(--ease-out), box-shadow var(--t-slow);
}
.workshop-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 60px rgba(46, 42, 37, 0.08);
}
.workshop-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--sp-md);
    flex-wrap: wrap;
    gap: 8px;
}
.workshop-badge {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--moss-dark);
    background: var(--moss-light);
    padding: 4px 14px;
    border-radius: 100px;
}
.workshop-badge--alt {
    color: var(--terracotta-dark);
    background: var(--terracotta-light);
}
.workshop-badge--online {
    color: var(--lilac-dark);
    background: var(--lilac-light);
}
.workshop-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.73rem;
    font-weight: 500;
    padding: 5px 12px;
    border-radius: 100px;
}
.workshop-status--open {
    color: var(--moss-dark);
    background: var(--moss-light);
}
.workshop-status--few {
    color: var(--terracotta-dark);
    background: var(--terracotta-light);
}
.status-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: currentColor;
    animation: dotPulse 2s ease-in-out infinite;
    display: inline-block;
}
.workshop-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--text);
    margin-bottom: var(--sp-xs);
}
.workshop-subtitle {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--moss);
    letter-spacing: 0.02em;
    margin-bottom: var(--sp-xs);
}
.workshop-desc {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: var(--sp-md);
}
.workshop-meta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--sp-md);
    margin-bottom: var(--sp-md);
}
.meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: var(--text-mid);
}
.meta-item svg { color: var(--moss); flex-shrink: 0; }
.workshop-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--moss-dark);
    margin-top: auto;
    padding-top: var(--sp-sm);
    transition: gap var(--t-base);
}
.workshop-link svg { transition: transform var(--t-base); }
.workshop-card:hover .workshop-link svg { transform: translateX(4px); }

/* ============================================
   CONTACT
   ============================================ */
.section-contact {
    background: var(--bg);
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--sp-3xl);
    align-items: start;
}
.contact-items {
    display: flex;
    flex-direction: column;
    gap: var(--sp-sm);
    margin-top: var(--sp-lg);
}
.contact-item {
    display: flex;
    align-items: center;
    gap: var(--sp-md);
    padding: var(--sp-sm) var(--sp-md);
    border-radius: var(--r-md);
    transition: background var(--t-fast);
}
.contact-item:hover {
    background: rgba(255,255,255,0.5);
}
.contact-icon {
    width: 44px; height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--moss-light);
    border-radius: 50%;
    color: var(--moss);
}
.contact-icon--wa {
    background: rgba(37, 211, 102, 0.1);
    color: #25D366;
}
.contact-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
}
.contact-value {
    display: block;
    font-size: 0.95rem;
    color: var(--text);
}

/* --- Form --- */
.contact-form {
    background: var(--white);
    padding: var(--sp-xl);
    border-radius: var(--r-lg);
    border: 1px solid var(--border);
    box-shadow: 0 10px 40px rgba(46, 42, 37, 0.04);
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-md);
}
.form-field { margin-bottom: var(--sp-md); }
.form-input {
    width: 100%;
    padding: 1rem 1.2rem;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--text);
    background: var(--bg);
    border: 1.5px solid transparent;
    border-radius: var(--r-sm);
    transition: border-color var(--t-fast), box-shadow var(--t-fast), background var(--t-fast);
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}
.form-input::placeholder {
    color: var(--text-muted);
    opacity: 0.55;
}
.form-input:focus {
    border-color: var(--moss);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(122, 143, 111, 0.08);
}
.form-select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M3 4.5l3 3 3-3' stroke='%238C8580' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1.2rem center;
    padding-right: 2.5rem;
}
.form-select option { color: var(--text); }
.form-textarea { resize: vertical; min-height: 110px; }
.form-note {
    font-size: 0.72rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: var(--sp-sm);
    opacity: 0.65;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: linear-gradient(135deg, var(--text), #1E1B17);
    color: var(--beige);
    padding: var(--sp-2xl) 0 var(--sp-lg);
}
.footer-main {
    display: flex;
    justify-content: space-between;
    gap: var(--sp-xl);
    padding-bottom: var(--sp-xl);
    border-bottom: 1px solid rgba(232, 221, 210, 0.08);
}
.footer-logo {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 10px;
}
.footer-desc {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-top: var(--sp-xs);
}
.footer-links {
    display: flex;
    gap: var(--sp-2xl);
}
.footer-col {
    display: flex;
    flex-direction: column;
    gap: var(--sp-xs);
}
.footer-heading {
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: var(--sp-xs);
}
.footer-col a {
    font-size: 0.85rem;
    color: var(--text-muted);
    transition: color var(--t-fast);
}
.footer-col a:hover { color: var(--moss); }
.footer-bottom {
    padding-top: var(--sp-lg);
    text-align: center;
}
.footer-bottom p {
    font-size: 0.75rem;
    color: var(--text-muted);
    opacity: 0.4;
}

/* ============================================
   ANIMATIONS
   ============================================ */
.fade-in-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}
.fade-in-left[data-delay="1"] { transition-delay: 0.1s; }
.fade-in-left[data-delay="2"] { transition-delay: 0.2s; }
.fade-in-left[data-delay="3"] { transition-delay: 0.3s; }

.slide-in {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.slide-in.visible {
    opacity: 1;
    transform: translateY(0);
}
.slide-in[data-delay="1"] { transition-delay: 0.1s; }
.slide-in[data-delay="2"] { transition-delay: 0.2s; }
.slide-in[data-delay="3"] { transition-delay: 0.3s; }
.slide-in[data-delay="4"] { transition-delay: 0.4s; }

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .workshops-grid { grid-template-columns: repeat(2, 1fr); }
    .workshops-grid--two { grid-template-columns: repeat(2, 1fr); }
    .about-grid { grid-template-columns: 1fr; gap: var(--sp-xl); }
    .contact-grid { grid-template-columns: 1fr; gap: var(--sp-xl); }
    .service-row { grid-template-columns: 50px 1fr 56px; }
    .service-icon-wrap { display: none; }
    .cursor-glow { display: none; }
    .organic-bg { display: none; }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0; right: -100%;
        width: 80%; max-width: 340px;
        height: 100vh;
        background: var(--bg);
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        padding: var(--sp-xl);
        gap: var(--sp-lg);
        transition: right var(--t-slow) var(--ease-out);
        box-shadow: -10px 0 50px rgba(46, 42, 37, 0.15);
    }
    .nav-menu.active { right: 0; }
    .nav-menu .nav-link { color: var(--text-muted); }
    .nav-menu .nav-link:hover { color: var(--text); }
    .nav-menu li:last-child { margin-top: var(--sp-xl); }
    .nav-toggle { display: flex; }
    .nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
    .nav-toggle.active span:nth-child(2) { opacity: 0; }
    .nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

    .hero { padding: var(--sp-3xl) var(--sp-md) var(--sp-2xl); }
    .hero-scroll { display: none; }

    .service-row {
        grid-template-columns: 1fr;
        gap: var(--sp-md);
        padding: var(--sp-lg);
    }
    .service-number { font-size: 1.8rem; }
    .service-link {
        position: absolute;
        top: var(--sp-lg);
        right: var(--sp-lg);
    }

    .about-grid { grid-template-columns: 1fr; }
    .about-visual { max-width: 380px; margin: 0 auto; order: -1; }
    .about-numbers { grid-template-columns: repeat(3, 1fr); gap: var(--sp-sm); }

    .workshop-featured {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto var(--sp-lg);
    }
    .workshop-featured-img {
        aspect-ratio: 3/4;
        max-height: none;
    }
    .workshop-featured-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: top center;
    }
    .workshop-featured-body { padding: var(--sp-lg); }
    .workshops-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
    .workshops-grid--two { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }

    .footer-main { flex-direction: column; gap: var(--sp-xl); }
    .footer-links { flex-wrap: wrap; gap: var(--sp-xl); }

    .section { padding: var(--sp-2xl) 0; }
    .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 2.3rem; }
    .hero-buttons { flex-direction: column; width: 100%; }
    .hero-buttons .btn { width: 100%; justify-content: center; }
    .contact-form { padding: var(--sp-lg); }
    .about-numbers { grid-template-columns: 1fr; }
    .number-item { padding: var(--sp-xs) 0; }
    .workshop-card { padding: var(--sp-md); }
    .workshop-meta { flex-direction: column; gap: var(--sp-xs); }
}
