/* ========== RESET & BASE ========== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --cream: #FAF5F9;
    --cream-dark: #F0E8EE;
    /* --orange, --orange-light, --orange-dark are injected dynamically from CMS globals */
    --peach: #fde8f6;
    --peach-light: #fef3fa;
    --charcoal: #2B2B2B;
    --charcoal-light: #4A4A4A;
    --white: #FFFBFE;
    --warm-gray: #8B7A8A;

    --font-display: 'Caveat', cursive;
    --font-body: 'DM Sans', sans-serif;

    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 32px;
    --radius-xl: 48px;

    --shadow-soft: 0 4px 24px rgba(43, 43, 43, 0.06);
    --shadow-hover: 0 8px 40px rgba(245, 162, 236, 0.18);
    --shadow-card: 0 2px 16px rgba(43, 43, 43, 0.04);
}

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

body {
    font-family: var(--font-body);
    color: var(--charcoal);
    background: var(--cream);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* ========== UTILITY ========== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-label {
    font-family: var(--font-display);
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    color: var(--orange);
    margin-bottom: 8px;
    font-weight: 600;
}

.section-title {
    font-family: var(--font-body);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    color: var(--charcoal-light);
    max-width: 560px;
    line-height: 1.7;
}

/* ========== BLOB SHAPES ========== */
.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.3;
    pointer-events: none;
    z-index: 0;
}

.blob-orange {
    background: var(--orange);
}

.blob-peach {
    background: var(--peach);
}

/* ========== BRUSH STROKE SVG ========== */
.brush-underline {
    position: relative;
    display: inline-block;
}

.brush-underline::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: -4%;
    width: 108%;
    height: 12px;
    background: var(--orange);
    opacity: 0.25;
    border-radius: 4px;
    transform: rotate(-1deg);
    z-index: -1;
}

/* ========== NAVIGATION ========== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(250, 245, 249, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(253, 232, 246, 0.5);
    transition: all 0.3s ease;
}

.nav.scrolled {
    box-shadow: 0 2px 20px rgba(43, 43, 43, 0.06);
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav-logo {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--charcoal);
    text-decoration: none;
    letter-spacing: -0.01em;
}

.nav-logo span {
    color: var(--orange);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--charcoal);
    font-size: 0.92rem;
    font-weight: 500;
    transition: color 0.2s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--orange);
    border-radius: 2px;
    transition: width 0.3s ease;
}

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

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

.nav-cta {
    background: var(--orange);
    color: var(--white) !important;
    padding: 10px 24px;
    border-radius: 100px;
    font-weight: 600 !important;
    font-size: 0.9rem !important;
    transition: all 0.3s ease !important;
    border: 2px solid var(--orange);
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    background: var(--orange-dark) !important;
    border-color: var(--orange-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(245, 162, 236, 0.25);
}

/* Mobile menu */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--charcoal);
    margin: 6px 0;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.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 ========== */
.hero {
    padding: 140px 0 80px;
    position: relative;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero .blob-1 {
    width: 500px;
    height: 500px;
    top: -100px;
    right: -150px;
}

.hero .blob-2 {
    width: 300px;
    height: 300px;
    bottom: -50px;
    left: -100px;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 560px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--peach-light);
    border: 1px solid var(--peach);
    padding: 8px 18px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--orange-dark);
    margin-bottom: 28px;
}

.hero-badge svg {
    width: 16px;
    height: 16px;
}

.hero h1 {
    font-family: var(--font-body);
    font-size: clamp(2.8rem, 5.5vw, 4.2rem);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
    color: var(--charcoal);
}

.hero h1 .accent {
    color: var(--orange);
    font-family: var(--font-display);
    font-size: 1.15em;
    font-weight: 700;
}

.hero h1 .script {
    font-family: var(--font-display);
    color: var(--orange);
    font-weight: 600;
    display: inline-block;
    transform: rotate(-2deg);
}

.hero-text {
    font-size: clamp(1.05rem, 1.5vw, 1.2rem);
    color: var(--charcoal-light);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 480px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--orange);
    color: var(--white);
    padding: 16px 32px;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid var(--orange);
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary:hover {
    background: var(--orange-dark);
    border-color: var(--orange-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(245, 162, 236, 0.25);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--charcoal);
    padding: 16px 32px;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid var(--peach);
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-secondary:hover {
    border-color: var(--orange);
    color: var(--orange);
    transform: translateY(-2px);
}

.hero-image {
    position: relative;
}

.hero-image-main {
    width: 100%;
    aspect-ratio: 4 / 5;
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
}

.hero-image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-float-card {
    position: absolute;
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    box-shadow: var(--shadow-soft);
    animation: float 6s ease-in-out infinite;
}

.hero-float-card.card-1 {
    top: 15%;
    left: -30px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-float-card.card-1 .icon {
    width: 44px;
    height: 44px;
    background: var(--peach-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.hero-float-card.card-1 .info {
    font-size: 0.85rem;
}

.hero-float-card.card-1 .info strong {
    display: block;
    font-size: 0.95rem;
}

.hero-float-card.card-2 {
    bottom: 12%;
    right: -20px;
    animation-delay: -3s;
}

.hero-float-card.card-2 .stars {
    color: var(--orange);
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 4px;
}

.hero-float-card.card-2 .review-text {
    font-size: 0.85rem;
    font-style: italic;
    color: var(--charcoal-light);
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

/* ========== MARQUEE ========== */
.marquee-section {
    padding: 32px 0;
    overflow: hidden;
    background: var(--orange);
    position: relative;
}

.marquee-track {
    display: flex;
    animation: marquee 25s linear infinite;
    width: max-content;
}

.marquee-track span {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 600;
    color: var(--white);
    white-space: nowrap;
    padding: 0 24px;
    display: flex;
    align-items: center;
    gap: 24px;
}

.marquee-track span::after {
    content: '✦';
    font-size: 0.6em;
    opacity: 0.6;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ========== ABOUT ========== */
.about {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.about .blob-3 {
    width: 400px;
    height: 400px;
    top: 50%;
    right: -200px;
    transform: translateY(-50%);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-image {
    position: relative;
}

.about-image-main {
    width: 100%;
    aspect-ratio: 3 / 4;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.about-image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-image-accent {
    position: absolute;
    width: 140px;
    height: 125px;
    background: var(--orange);
    clip-path: path('M70 120 C70 120 0 80 0 40 C0 10 20 0 40 0 C55 0 65 10 70 20 C75 10 85 0 100 0 C120 0 140 10 140 40 C140 80 70 120 70 120Z');
    bottom: -20px;
    right: -20px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 38px;
    box-shadow: 0 8px 32px rgba(245, 162, 236, 0.25);
}

.about-image-accent span {
    font-family: var(--font-display);
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 600;
    text-align: center;
    line-height: 1.3;
}

.about-content {
    max-width: 520px;
}

.about-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--charcoal-light);
    margin-bottom: 20px;
}

.about-text:first-of-type::first-letter {
    font-family: var(--font-display);
    font-size: 3.5rem;
    float: left;
    line-height: 0.8;
    margin-right: 8px;
    margin-top: 6px;
    color: var(--orange);
    font-weight: 700;
}

.about-signature {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--orange);
    margin-top: 28px;
    font-weight: 600;
}

.about-values {
    display: flex;
    gap: 24px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.about-value {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    padding: 12px 20px;
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 500;
    box-shadow: var(--shadow-card);
}

.about-value .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--orange);
}

/* ========== WORKSHOPS ========== */
.workshops {
    padding: 120px 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.workshops::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--peach), transparent);
}

.workshops-header {
    text-align: center;
    margin-bottom: 64px;
}

.workshops-header .section-subtitle {
    margin: 0 auto;
}

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

.workshop-card {
    background: var(--cream);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    border: 1px solid transparent;
}

.workshop-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: var(--peach);
}

.workshop-card-image {
    width: 100%;
    aspect-ratio: 16 / 10;
    background: linear-gradient(135deg, var(--peach-light), var(--cream-dark));
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

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

.workshop-card-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--orange);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.03em;
}

.workshop-card-body {
    padding: 28px;
}

.workshop-card-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}

.workshop-card-desc {
    font-size: 0.95rem;
    color: var(--charcoal-light);
    line-height: 1.6;
    margin-bottom: 20px;
}

.workshop-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.workshop-card-price {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--orange);
}

.workshop-card-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--charcoal);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 100px;
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.workshop-card-btn:hover {
    background: var(--orange);
    transform: translateX(3px);
}

.workshop-card-btn svg {
    width: 14px;
    height: 14px;
    transition: transform 0.3s ease;
}

.workshop-card-btn:hover svg {
    transform: translateX(3px);
}

/* ========== SHOP ========== */
.shop {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.shop .blob-4 {
    width: 350px;
    height: 350px;
    top: 20%;
    left: -150px;
}

.shop-header {
    text-align: center;
    margin-bottom: 64px;
    position: relative;
    z-index: 1;
}

.shop-header .section-subtitle {
    margin: 0 auto;
}

.shop-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
}

.product-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(232, 213, 196, 0.5);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.product-card-image {
    width: 100%;
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--peach-light), var(--cream));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

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

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

.product-card-new {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--orange);
    color: var(--white);
    font-family: var(--font-display);
    font-size: 0.9rem;
    padding: 4px 12px;
    border-radius: 100px;
    font-weight: 600;
}

.product-card-body {
    padding: 20px;
}

.product-card-name {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 6px;
}

.product-card-detail {
    font-size: 0.85rem;
    color: var(--warm-gray);
    margin-bottom: 16px;
}

.product-card-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.product-card-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--charcoal);
}

.product-card-add {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--orange);
    color: var(--white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.product-card-add:hover {
    background: var(--orange-dark);
    transform: scale(1.1);
}

/* ========== ERVARINGEN ========== */
.reviews {
    padding: 120px 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.reviews::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--peach), transparent);
}

.reviews-header {
    text-align: center;
    margin-bottom: 64px;
}

.reviews-header .section-subtitle {
    margin: 0 auto;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.review-card {
    background: var(--cream);
    border-radius: var(--radius-md);
    padding: 36px;
    position: relative;
    transition: all 0.3s ease;
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-soft);
}

.review-card:nth-child(2) {
    transform: translateY(20px);
}

.review-card:nth-child(2):hover {
    transform: translateY(16px);
}

.review-card-quote {
    font-family: var(--font-display);
    font-size: 3.5rem;
    color: var(--orange);
    line-height: 1;
    margin-bottom: 8px;
    opacity: 0.6;
}

.review-card-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--charcoal-light);
    margin-bottom: 24px;
    font-style: italic;
}

.review-card-stars {
    color: var(--orange);
    font-size: 0.85rem;
    letter-spacing: 3px;
    margin-bottom: 12px;
}

.review-card-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-card-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--peach);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--orange-dark);
}

.review-card-name {
    font-weight: 600;
    font-size: 0.95rem;
}

.review-card-type {
    font-size: 0.82rem;
    color: var(--warm-gray);
}

/* ========== CONTACT ========== */
.contact {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.contact .blob-5 {
    width: 400px;
    height: 400px;
    bottom: -100px;
    right: -150px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    position: relative;
    z-index: 1;
}

.contact-info-items {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.contact-info-icon {
    width: 52px;
    height: 52px;
    background: var(--peach-light);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-icon svg {
    width: 22px;
    height: 22px;
    color: var(--orange);
}

.contact-info-text {
    font-size: 0.95rem;
}

.contact-info-text strong {
    display: block;
    font-size: 1rem;
    margin-bottom: 2px;
}

.contact-info-text a {
    color: var(--orange);
    text-decoration: none;
    transition: color 0.2s;
}

.contact-info-text a:hover {
    color: var(--orange-dark);
}

.contact-location {
    margin-top: 36px;
    padding: 24px;
    background: var(--peach-light);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--orange);
}

.contact-location p {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--orange-dark);
}

.contact-form-wrapper {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 48px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(232, 213, 196, 0.4);
}

.contact-form-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.contact-form-sub {
    font-size: 0.92rem;
    color: var(--warm-gray);
    margin-bottom: 32px;
}

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

.form-group label {
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--charcoal);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--cream-dark);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--charcoal);
    background: var(--cream);
    transition: all 0.3s ease;
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--orange);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(245, 162, 236, 0.12);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--warm-gray);
}

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

.form-submit {
    width: 100%;
    padding: 16px;
    background: var(--orange);
    color: var(--white);
    border: none;
    border-radius: 100px;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.form-submit:hover {
    background: var(--orange-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(245, 162, 236, 0.25);
}

.form-submit svg {
    width: 18px;
    height: 18px;
}

/* ========== FOOTER ========== */
.footer {
    background: var(--charcoal);
    color: var(--cream);
    padding: 60px 0 32px;
}

.footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
}

.footer-logo span {
    color: var(--orange);
}

.footer-desc {
    font-size: 0.92rem;
    line-height: 1.7;
    color: rgba(245, 240, 235, 0.6);
    max-width: 340px;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.footer-social a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cream);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--orange);
    transform: translateY(-2px);
}

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

.footer-heading {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--warm-gray);
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: rgba(245, 240, 235, 0.7);
    text-decoration: none;
    font-size: 0.92rem;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--orange);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.82rem;
    color: rgba(245, 240, 235, 0.4);
}

.footer-bottom a {
    color: rgba(245, 240, 235, 0.5);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-bottom a:hover {
    color: var(--orange);
}

/* ========== SCROLL TO TOP ========== */
.scroll-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--orange);
    color: var(--white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(245, 162, 236, 0.25);
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px);
    transition: all 0.3s ease;
    z-index: 999;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top:hover {
    background: var(--orange-dark);
    transform: translateY(-2px);
}

.scroll-top svg {
    width: 20px;
    height: 20px;
}

/* ========== SCROLL ANIMATIONS ========== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.35s; }

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hero-image {
        max-width: 480px;
        margin: 0 auto;
    }

    .hero {
        min-height: auto;
        padding: 120px 0 60px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about-image {
        max-width: 400px;
        margin: 0 auto;
    }

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

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

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

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

@media (max-width: 768px) {
    html {
        scroll-padding-top: 72px;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        height: 100dvh;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 8px;
        padding: 0 40px;
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.4s;
        display: flex;
        overflow: hidden;
    }

    .nav-links.active {
        opacity: 1;
        visibility: visible;
    }

    .nav-links::after {
        content: '';
        position: absolute;
        bottom: -60px;
        right: -60px;
        width: 300px;
        height: 300px;
        background: radial-gradient(circle, var(--peach) 0%, transparent 70%);
        opacity: 0.5;
        pointer-events: none;
    }

    .nav-links li {
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.3s ease, transform 0.3s ease;
    }

    .nav-links.active li {
        opacity: 1;
        transform: translateY(0);
    }

    .nav-links.active li:nth-child(1) { transition-delay: 0.1s; }
    .nav-links.active li:nth-child(2) { transition-delay: 0.15s; }
    .nav-links.active li:nth-child(3) { transition-delay: 0.2s; }
    .nav-links.active li:nth-child(4) { transition-delay: 0.25s; }
    .nav-links.active li:nth-child(5) { transition-delay: 0.35s; }

    .nav-links a {
        font-size: 2rem;
        font-family: var(--font-display);
        font-weight: 600;
        display: block;
        padding: 14px 0;
        text-align: center;
    }

    .nav-links a::after {
        display: none;
    }

    .nav-cta {
        font-size: 1.2rem !important;
        padding: 16px 36px;
        margin-top: 24px;
        text-align: center;
    }

    .mobile-menu-overlay {
        display: none;
    }

    .nav-toggle {
        display: block;
    }

    .hero h1 {
        font-size: clamp(2.2rem, 8vw, 3rem);
    }

    .hero-float-card {
        display: none;
    }

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

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

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

    .review-card:nth-child(2) {
        transform: none;
    }

    .review-card:nth-child(2):hover {
        transform: translateY(-4px);
    }

    .contact-form-wrapper {
        padding: 32px 24px;
    }

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

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .shop-grid {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .about-values {
        flex-direction: column;
        gap: 12px;
    }
}
