/* =====================================================
   CAKE AFFAIR - V6 Soft Pink
   Zacht roze met bruin/goud tekst (Ivy style)
   ===================================================== */

:root {
    /* Soft Pink Palette */
    --color-pink: #E8C5D2;
    --color-pink-light: #F0D8E3;
    --color-pink-dark: #D4A0B8;
    --color-pink-deep: #C07898;

    /* Brown/Gold from Ivy Beauty Portal */
    --color-brown: #715D48;
    --color-brown-light: #8a7359;
    --color-gold: #d4a043;
    --color-gold-light: #ddb870;
    --color-gold-dark: #c08828;

    /* Neutrals */
    --color-cream: #F8EFF3;
    --color-white: #FFFFFF;
    --color-gray: #9A8A8E;
    --color-gray-light: #E8E0E2;

    /* Typography */
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Montserrat', -apple-system, sans-serif;

    /* Spacing */
    --section-padding: 100px;
    --container-width: 1200px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.4s ease;
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-sans);
    font-size: 16px;
    font-weight: 300;
    line-height: 1.8;
    color: var(--color-brown);
    background-color: var(--color-cream);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    transition: opacity 0.3s ease;
}

img:hover {
    opacity: 0.95;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

a:hover {
    color: var(--color-gold);
}

ul { list-style: none; }

/* --- Typography --- */
h1, h2, h3, h4 {
    font-family: var(--font-serif);
    font-weight: 400;
    line-height: 1.2;
}

.section-label {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 0.75rem;
}

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

.section-title {
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    color: var(--color-brown);
    margin-bottom: 1rem;
}

.section-title.light { color: var(--color-white); }

.section-intro {
    font-size: 1.05rem;
    color: var(--color-brown-light);
    max-width: 550px;
    margin: 0 auto;
}

.gold-divider {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, var(--color-gold), var(--color-gold-light));
    margin-bottom: 1.5rem;
}

.gold-divider.centered { margin-left: auto; margin-right: auto; }

/* --- Container --- */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.section { padding: var(--section-padding) 0; }

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header p {
    max-width: 600px;
    margin: 1.5rem auto 0;
    color: var(--color-brown-light);
    line-height: 1.8;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2.25rem;
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.btn-primary {
    background: var(--color-brown);
    color: var(--color-white);
    box-shadow: 0 4px 12px rgba(113, 93, 72, 0.15);
}

.btn-primary:hover {
    background: var(--color-gold);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201, 168, 117, 0.3);
}

.btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(113, 93, 72, 0.2);
}

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

.btn-outline:hover {
    background: var(--color-brown);
    color: var(--color-white);
    box-shadow: 0 4px 12px rgba(113, 93, 72, 0.2);
}

/* Instagram Button Styling */
.btn-outline.instagram-btn {
    background: linear-gradient(135deg, #FADCE6 0%, #E8B8C8 50%, #c9a875 100%);
    border: none;
    color: var(--color-white);
    font-weight: 500;
    position: relative;
    overflow: hidden;
}

.btn-outline.instagram-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #c9a875 0%, #E8B8C8 50%, #FADCE6 100%);
    transition: left 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
}

.btn-outline.instagram-btn:hover::before {
    left: 0;
}

.btn-outline.instagram-btn .btn-icon,
.btn-outline.instagram-btn svg {
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
}

.btn-outline.instagram-btn:hover {
    background: linear-gradient(135deg, #c9a875 0%, #E8B8C8 50%, #FADCE6 100%);
    box-shadow: 0 6px 20px rgba(201, 168, 117, 0.4);
    transform: translateY(-3px);
}

.btn-light {
    background: var(--color-white);
    color: var(--color-brown);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn-light:hover {
    background: var(--color-pink-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.btn-ghost-light {
    background: transparent;
    color: var(--color-white);
    border: 1.5px solid rgba(255,255,255,0.4);
}

.btn-ghost-light:hover {
    border-color: var(--color-white);
    background: rgba(255,255,255,0.1);
    transform: translateY(-1px);
}

/* =====================================================
   NAVIGATION
   ===================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.25rem 0;
    transition: var(--transition-medium);
    background:
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 8px,
            rgba(250, 220, 230, 0.5) 8px,
            rgba(250, 220, 230, 0.5) 16px
        ),
        repeating-linear-gradient(
            -45deg,
            transparent,
            transparent 8px,
            rgba(253, 242, 245, 0.6) 8px,
            rgba(253, 242, 245, 0.6) 16px
        ),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.95), rgba(255, 251, 252, 0.95));
    backdrop-filter: blur(8px);
    box-shadow: 0 2px 15px rgba(113, 93, 72, 0.06);
}

.navbar.scrolled {
    background:
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 8px,
            rgba(250, 220, 230, 0.6) 8px,
            rgba(250, 220, 230, 0.6) 16px
        ),
        repeating-linear-gradient(
            -45deg,
            transparent,
            transparent 8px,
            rgba(253, 242, 245, 0.7) 8px,
            rgba(253, 242, 245, 0.7) 16px
        ),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.98), rgba(255, 251, 252, 0.98));
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    box-shadow: 0 2px 20px rgba(113, 93, 72, 0.1);
}

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

/* Language Switcher */
.language-switcher {
    display: flex;
    gap: 0.35rem;
    align-items: center;
    order: 3;
}

.lang-btn {
    background: transparent;
    border: 1px solid transparent;
    border-radius: 3px;
    padding: 0.15rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.7;
}

.lang-btn .flag-icon {
    width: 24px;
    height: 18px;
    display: block;
    border-radius: 2px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.lang-btn:hover {
    opacity: 1;
    transform: translateY(-1px);
}

.lang-btn:hover .flag-icon {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.lang-btn.active {
    opacity: 1;
    border-color: var(--color-gold);
}

.lang-btn.active .flag-icon {
    box-shadow: 0 1px 3px rgba(201, 168, 117, 0.3);
}

.nav-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1;
    order: 1;
}

.logo-cake, .logo-affair {
    font-family: var(--font-serif);
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.logo-cake { font-size: 1.25rem; color: var(--color-gold); text-shadow: 0 1px 8px rgba(212, 160, 67, 0.4); }
.logo-affair { font-size: 1rem; color: var(--color-gold); text-shadow: 0 1px 8px rgba(212, 160, 67, 0.4); }
.logo-tagline {
    font-family: var(--font-serif);
    font-size: 0.55rem;
    font-style: italic;
    letter-spacing: 0.15em;
    color: var(--color-gold-light);
    margin-top: 0.2rem;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    order: 2;
    margin-left: auto;
    margin-right: 1.5rem;
}

.nav-link {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-brown);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-gold);
    transition: var(--transition-fast);
}

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

.nav-cta {
    padding: 0.75rem 1.5rem;
    background: var(--color-brown);
    color: var(--color-white) !important;
}

.nav-cta::after { display: none; }
.nav-cta:hover { background: var(--color-gold); }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    order: 4;
}

.nav-toggle span {
    width: 24px;
    height: 1px;
    background: var(--color-brown);
    transition: var(--transition-fast);
}

/* =====================================================
   HERO
   ===================================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-pink-light) 0%, var(--color-pink) 100%);
    overflow: hidden;
    padding-top: 80px;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: none;
}

.hero-content {
    position: relative;
    text-align: center;
    padding: 2rem;
    will-change: transform, opacity;
    transition: none;
}

.hero-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-brown-light);
    background: rgba(255,255,255,0.7);
    padding: 0.6rem 1.25rem;
    margin-bottom: 2rem;
}

.hero-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1rem;
}

.hero-logo-cake {
    font-family: var(--font-serif);
    font-size: clamp(4rem, 12vw, 7rem);
    font-weight: 300;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-gold);
    line-height: 1;
    opacity: 0;
    animation: fadeInUp 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.3s forwards,
               shimmerGold 3s ease-in-out 1.5s infinite;
    text-shadow: 0 2px 20px rgba(212, 160, 67, 0.5);
}

.hero-logo-affair {
    font-family: var(--font-serif);
    font-size: clamp(3rem, 9vw, 5.5rem);
    font-weight: 300;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--color-gold);
    line-height: 1;
    opacity: 0;
    animation: fadeInUp 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.6s forwards,
               shimmerGold 3s ease-in-out 2s infinite;
    text-shadow: 0 2px 20px rgba(212, 160, 67, 0.5);
}

.hero-tagline {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--color-gold-light);
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 1s forwards;
}

.hero-subtitle {
    font-family: var(--font-serif);
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    font-weight: 300;
    font-style: italic;
    color: var(--color-brown-light);
    margin-bottom: 2.5rem;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 1.3s forwards;
}

.hero-scroll {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.hero-scroll span {
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-gray);
}

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

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.8); }
    50% { opacity: 1; transform: scaleY(1); }
}

/* =====================================================
   STATS SECTION
   ===================================================== */
.section-stats {
    background: var(--color-white);
    padding: 3rem 0;
    border-bottom: 1px solid var(--color-gray-light);
}

.stats-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
}

.stat-item { text-align: center; }

.stat-number {
    display: block;
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--color-gold);
    line-height: 1;
}

.stat-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-gray);
    margin-top: 0.5rem;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--color-gray-light);
}

/* =====================================================
   OVER SECTION
   ===================================================== */
.section-over { background: var(--color-white); }

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

.over-grid--no-image {
    grid-template-columns: 1fr;
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
}

.over-grid--no-image .gold-divider {
    margin: 0 auto 1.5rem;
}

.over-image { position: relative; }

.image-frame {
    position: relative;
    padding: 1.5rem;
}

.image-frame::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 180px;
    height: 180px;
    border-top: 1px solid var(--color-gold);
    border-left: 1px solid var(--color-gold);
    border-top-left-radius: 12px;
}

.image-frame::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 180px;
    height: 180px;
    border-bottom: 1px solid var(--color-gold);
    border-right: 1px solid var(--color-gold);
    border-bottom-right-radius: 12px;
}

.placeholder-image {
    aspect-ratio: 4/5;
    background: var(--color-pink);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--color-gray);
}

.image-frame img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    border-radius: 12px;
}

.over-content { padding: 2rem 0; }

.over-lead {
    font-size: 1.15rem;
    font-weight: 400;
    color: var(--color-brown);
    margin-bottom: 1.5rem;
}

.over-text {
    font-size: 1rem;
    color: var(--color-brown-light);
    margin-bottom: 1rem;
}

.over-signature {
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.signature-name {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-style: italic;
    color: var(--color-gold);
}

.signature-title {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-gray);
}

/* =====================================================
   DIENSTEN SECTION
   ===================================================== */
.section-diensten { background: var(--color-pink-light); }

.diensten-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.dienst-card {
    background: var(--color-white);
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(113, 93, 72, 0.05);
    /* Start visible by default - progressive enhancement */
    opacity: 1;
    transform: translateY(0);
    transform-style: preserve-3d;
    perspective: 1000px;
}

/* Only hide and prepare for animation if JS adds this class */
.dienst-card.will-animate {
    opacity: 0;
    transform: translateY(50px);
}

.dienst-card.will-animate.scroll-reveal {
    animation: cardFadeIn 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.dienst-card:hover {
    transform: translateY(-8px) rotateX(2deg) rotateY(-2deg);
    box-shadow: 0 20px 50px rgba(113, 93, 72, 0.15);
}

.dienst-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 80%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.dienst-card:hover::after {
    transform: translateX(-50%) scaleX(1);
}

.dienst-card.featured {
    border: 2px solid var(--color-gold);
}

.dienst-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-gold);
    color: var(--color-white);
    font-size: 0.65rem;
    font-weight: 600;
    padding: 0.4rem 1rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.dienst-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    color: var(--color-gold);
}

.dienst-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--color-brown);
}

.dienst-text {
    font-size: 0.95rem;
    color: var(--color-brown-light);
    margin-bottom: 1.5rem;
}

.dienst-list {
    text-align: left;
    margin-bottom: 1.5rem;
}

.dienst-list li {
    font-size: 0.85rem;
    color: var(--color-gray);
    padding: 0.4rem 0;
    padding-left: 1.25rem;
    position: relative;
}

.dienst-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: var(--color-gold);
    border-radius: 50%;
}

.dienst-price {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-gold);
}

/* =====================================================
   WERKWIJZE SECTION
   ===================================================== */
.section-werkwijze { background: var(--color-white); }

.werkwijze-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
}

.werkwijze-timeline::before {
    content: '';
    position: absolute;
    top: 35px;
    left: 10%;
    right: 10%;
    height: 1px;
    background: var(--color-gold);
    opacity: 0.3;
}

.werkwijze-step {
    text-align: center;
    position: relative;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: var(--color-pink);
    border: 2px solid var(--color-gold);
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--color-brown);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.step-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--color-brown);
}

.step-content p {
    font-size: 0.9rem;
    color: var(--color-brown-light);
}

/* =====================================================
   PRICING SECTION
   ===================================================== */
.section-pricing {
    background: var(--color-white);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-card {
    position: relative;
    background: var(--color-cream);
    border: 1px solid var(--color-pink-light);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(113, 93, 72, 0.1);
}

.pricing-card--featured {
    background: var(--color-white);
    border: 2px solid var(--color-gold);
    box-shadow: 0 8px 30px rgba(212, 160, 67, 0.15);
}

.pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-gold);
    color: var(--color-white);
    font-family: var(--font-sans);
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 5px 18px;
    border-radius: 20px;
    white-space: nowrap;
}

.pricing-icon {
    color: var(--color-gold);
    width: 44px;
    height: 44px;
    margin: 0 auto 1.25rem;
}

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

.pricing-size {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--color-brown);
    margin-bottom: 1rem;
    letter-spacing: 0.04em;
}

.pricing-price {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    margin-bottom: 1.75rem;
    padding-bottom: 1.75rem;
    border-bottom: 1px solid var(--color-pink-light);
}

.pricing-card--featured .pricing-price {
    border-bottom-color: var(--color-gold-light);
}

.pricing-from {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-gray);
}

.pricing-amount {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--color-gold);
    line-height: 1.1;
}

.pricing-unit {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-gray);
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.pricing-features li {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 300;
    color: var(--color-gray);
    letter-spacing: 0.03em;
    padding-left: 1.2rem;
    position: relative;
}

.pricing-features li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--color-gold);
    font-size: 0.7rem;
}

.pricing-note {
    text-align: center;
    margin-top: 2.5rem;
    font-family: var(--font-sans);
    font-size: 0.78rem;
    font-weight: 300;
    color: var(--color-gray);
    letter-spacing: 0.04em;
    font-style: italic;
}

/* =====================================================
   CREATIES/GALLERY SECTION
   ===================================================== */
.section-creaties { background: var(--color-pink-light); }

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 340px;
    gap: 1rem;
}

/* 5e item alleen in zijn rij → zelfde grootte, gecentreerd */
.gallery-grid > .gallery-item:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    width: calc(50% - 0.5rem);
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border-radius: 12px;
    display: block;
    width: 100%;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--color-pink-light);
    /* Start visible by default - progressive enhancement */
    opacity: 1;
    transform: translateY(0);
}

/* Only hide and prepare for animation if JS adds this class */
.gallery-item.will-animate {
    opacity: 0;
    transform: translateY(50px) scale(0.9);
}

.gallery-item.will-animate.scroll-reveal {
    animation: galleryFadeIn 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.gallery-item:hover {
    transform: translateY(-2px);
}

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-placeholder {
    width: 100%;
    height: 100%;
    background: var(--color-pink);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--color-gray);
    transition: var(--transition-medium);
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: var(--transition-medium);
}

.gallery-item:hover .gallery-image {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(113, 93, 72, 0.9) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: var(--transition-medium);
}

.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-item:hover .gallery-placeholder { transform: scale(1.05); }

.gallery-category {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-gold-light);
}

.gallery-overlay h4 {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    color: var(--color-white);
    margin-top: 0.25rem;
}

.gallery-cta {
    text-align: center;
    margin-top: 3rem;
}

.gallery-cta p {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-style: italic;
    color: var(--color-brown-light);
    margin-bottom: 1rem;
}

/* =====================================================
   TESTIMONIALS SECTION
   ===================================================== */
.section-testimonials { background: var(--color-white); }

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

.testimonial-card {
    background: var(--color-pink-light);
    padding: 2rem;
    text-align: center;
}

.testimonial-stars {
    color: var(--color-gold);
    font-size: 1rem;
    letter-spacing: 0.2em;
    margin-bottom: 1.25rem;
}

.testimonial-card blockquote {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-style: italic;
    line-height: 1.6;
    color: var(--color-brown);
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.author-name {
    font-weight: 500;
    color: var(--color-brown);
}

.author-info {
    font-size: 0.8rem;
    color: var(--color-gray);
}

/* =====================================================
   FAQ SECTION
   ===================================================== */
.section-faq { background: var(--color-pink-light); }

.faq-layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: start;
}

.faq-header {
    position: sticky;
    top: 120px;
}

.faq-header p {
    color: var(--color-brown-light);
    margin-bottom: 1.5rem;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--color-white);
    border: 1px solid var(--color-gray-light);
    border-radius: 4px;
    margin-bottom: 0.75rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 1px 3px rgba(113, 93, 72, 0.04);
}

.faq-item:hover {
    border-color: var(--color-gold-light);
    box-shadow: 0 2px 8px rgba(113, 93, 72, 0.08);
}

.faq-item.active {
    border-color: var(--color-gold);
    box-shadow: 0 4px 12px rgba(201, 168, 117, 0.15);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-brown);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-question:hover {
    color: var(--color-gold);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--color-gold);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: var(--color-brown-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* =====================================================
   CTA SECTION
   ===================================================== */
.section-cta {
    position: relative;
    background: var(--color-brown);
    overflow: hidden;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23c9a875' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-content {
    position: relative;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* =====================================================
   FOOTER
   ===================================================== */
.footer {
    background: var(--color-brown);
    padding: 5rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.footer-logo .logo-cake { color: var(--color-white); }
.footer-logo .logo-affair { color: var(--color-gold); }

.footer-tagline {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 1rem;
}

.footer-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 280px;
}

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 1.25rem;
}

.footer-links ul,
.footer-contact ul {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-links a,
.footer-contact a,
.footer-contact li {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-links a:hover,
.footer-contact a:hover { color: var(--color-gold); }

.footer-social {
    margin-top: 1.5rem;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(250, 220, 230, 0.15) 0%, rgba(201, 168, 117, 0.15) 100%);
    border: 1px solid rgba(201, 168, 117, 0.3);
    color: var(--color-white);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.footer-social a::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #FADCE6 0%, #c9a875 100%);
    opacity: 0;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-social a:hover {
    border-color: var(--color-gold);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(201, 168, 117, 0.3);
}

.footer-social a:hover::before {
    opacity: 1;
}

.footer-social svg {
    width: 18px;
    height: 18px;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
}

.footer-bottom {
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
}

/* =====================================================
   FORM PAGE STYLES
   ===================================================== */
.page-header {
    padding: 10rem 0 4rem;
    background: linear-gradient(135deg, var(--color-pink-light) 0%, var(--color-pink) 100%);
    text-align: center;
}

.form-section {
    background: var(--color-white);
    padding: 4rem 0 6rem;
}

.form-wrapper {
    max-width: 780px;
    margin: 0 auto;
}

.form-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.form-intro p {
    font-size: 1.05rem;
    color: var(--color-brown-light);
}

.order-form {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.form-block {
    padding: 2rem;
    background: var(--color-cream);
    border: 1px solid var(--color-gray-light);
}

.form-block-title {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    color: var(--color-brown);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--color-gray-light);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.form-group:last-child { margin-bottom: 0; }

.form-label {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-brown);
}

.form-label .required { color: var(--color-gold); }

.form-input,
.form-select,
.form-textarea {
    padding: 0.9rem 1.1rem;
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 300;
    color: var(--color-brown);
    background: var(--color-white);
    border: 1px solid var(--color-gray-light);
    transition: var(--transition-fast);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--color-gold);
}

.form-select {
    cursor: pointer;
    appearance: none;
    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 fill='%23c9a875' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

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

.form-options {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.form-option { position: relative; }

.form-option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.form-option label {
    display: block;
    padding: 0.7rem 1.1rem;
    font-size: 0.85rem;
    background: var(--color-white);
    border: 1px solid var(--color-gray-light);
    cursor: pointer;
    transition: var(--transition-fast);
}

.form-option label:hover { border-color: var(--color-gold); }

.form-option input:checked + label {
    background: var(--color-gold);
    border-color: var(--color-gold);
    color: var(--color-white);
}

.form-submit {
    text-align: center;
    margin-top: 1.5rem;
}

.form-note {
    font-size: 0.85rem;
    color: var(--color-gray);
    margin-top: 1rem;
}

/* =====================================================
   BESTEL PAGE STYLES
   ===================================================== */
.bestel-page {
    background: var(--color-cream);
}

/* Bestel page nav */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    background:
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 8px,
            rgba(250, 220, 230, 0.5) 8px,
            rgba(250, 220, 230, 0.5) 16px
        ),
        repeating-linear-gradient(
            -45deg,
            transparent,
            transparent 8px,
            rgba(253, 242, 245, 0.6) 8px,
            rgba(253, 242, 245, 0.6) 16px
        ),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.98), rgba(255, 251, 252, 0.98));
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 15px rgba(113, 93, 72, 0.08);
}

.nav .nav-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.nav .nav-logo {
    display: flex;
    align-items: center;
    order: 1;
}

.nav .logo-text {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--color-gold);
    letter-spacing: 0.1em;
}

.nav .nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    order: 2;
    margin-left: auto;
    margin-right: 1.5rem;
}

.nav .language-switcher {
    order: 3;
}

.nav .nav-toggle {
    order: 4;
}

.nav .nav-links .menu-logo,
.nav .nav-links .menu-close {
    display: none;
}

.nav .nav-links a {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-brown);
    transition: var(--transition-fast);
}

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

.nav .nav-cta {
    padding: 0.6rem 1.2rem;
    background: var(--color-brown);
    color: var(--color-white) !important;
}

.nav .nav-cta:hover {
    background: var(--color-gold);
}

.nav .nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav .nav-toggle span {
    width: 24px;
    height: 1px;
    background: var(--color-brown);
}

/* Bestel Hero */
.bestel-hero {
    padding: 140px 0 60px;
    background: linear-gradient(135deg, var(--color-pink-light) 0%, var(--color-pink) 100%);
    text-align: center;
}

.bestel-hero-content {
    max-width: 600px;
    margin: 0 auto;
}

.bestel-hero h1 {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 400;
    color: var(--color-brown);
    margin-bottom: 1rem;
}

.bestel-hero h1 em {
    font-style: italic;
    color: var(--color-gold);
}

.bestel-hero p {
    font-size: 1rem;
    color: var(--color-brown-light);
    line-height: 1.7;
}

/* Bestel Form Section */
.bestel-form-section {
    padding: 60px 0 100px;
    background: var(--color-white);
}

.form-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    align-items: start;
}

/* Sidebar */
.form-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: sticky;
    top: 100px;
}

.sidebar-card {
    background: var(--color-pink-light);
    padding: 1.5rem;
    border: 1px solid var(--color-gray-light);
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(113, 93, 72, 0.04);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.sidebar-card:hover {
    box-shadow: 0 4px 12px rgba(113, 93, 72, 0.08);
    transform: translateY(-2px);
}

.sidebar-card h3 {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: var(--color-brown);
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--color-gray-light);
    letter-spacing: 0.02em;
}

.info-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.info-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.85rem;
    color: var(--color-brown-light);
}

.info-list svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: var(--color-gold);
    margin-top: 2px;
}

.price-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.price-item {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--color-brown);
    padding: 0.5rem 0;
    border-bottom: 1px dotted var(--color-gray-light);
}

.price-item:last-child {
    border-bottom: none;
}

.price-note {
    font-size: 0.75rem;
    color: var(--color-gray);
    margin-top: 0.75rem;
    font-style: italic;
}

.sidebar-contact {
    text-align: center;
}

.sidebar-contact p {
    font-size: 0.85rem;
    color: var(--color-brown-light);
    margin-bottom: 1rem;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: #25D366;
    color: var(--color-white);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    transition: var(--transition-fast);
}

.whatsapp-btn:hover {
    background: #128C7E;
}

.whatsapp-btn svg {
    width: 18px;
    height: 18px;
}

/* Form Main */
.form-main {
    background: var(--color-cream);
    padding: 2rem;
    border: 1px solid var(--color-gray-light);
}

.order-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-section {
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--color-gray-light);
}

.form-section:last-of-type {
    border-bottom: none;
    padding-bottom: 0;
}

.form-section-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.form-step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--color-gold);
    color: var(--color-white);
    font-family: var(--font-serif);
    font-size: 1rem;
    border-radius: 50%;
}

.form-section-header h2 {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--color-brown);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.form-group label {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-brown);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem 1rem;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    color: var(--color-brown);
    background: var(--color-white);
    border: 1.5px solid var(--color-gray-light);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
    border-color: var(--color-gold-light);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-gold);
    box-shadow: 0 0 0 3px rgba(201, 168, 117, 0.1);
    transform: translateY(-1px);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    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 fill='%23c9a875' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

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

.form-group-full {
    grid-column: 1 / -1;
}

/* Order Type Cards */
.order-type-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0.75rem;
}

.order-type-card {
    cursor: pointer;
}

.order-type-card input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.order-type-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.25rem 0.75rem;
    background: var(--color-white);
    border: 1px solid var(--color-gray-light);
    transition: var(--transition-fast);
}

.order-type-card:hover .order-type-content {
    border-color: var(--color-gold);
}

.order-type-card input:checked + .order-type-content {
    background: var(--color-pink);
    border-color: var(--color-gold);
}

.order-type-icon {
    width: 32px;
    height: 32px;
    margin-bottom: 0.5rem;
    color: var(--color-gold);
}

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

.order-type-title {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--color-brown);
    margin-bottom: 0.25rem;
}

.order-type-desc {
    font-size: 0.65rem;
    color: var(--color-gray);
}

/* Checkbox Grid */
.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.checkbox-item input {
    width: 18px;
    height: 18px;
    accent-color: var(--color-gold);
}

.checkbox-label {
    font-size: 0.85rem;
    color: var(--color-brown);
}

/* Delivery Options */
.delivery-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.delivery-option {
    cursor: pointer;
}

.delivery-option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.delivery-content {
    display: flex;
    flex-direction: column;
    padding: 1.25rem;
    background: var(--color-white);
    border: 1px solid var(--color-gray-light);
    transition: var(--transition-fast);
}

.delivery-option:hover .delivery-content {
    border-color: var(--color-gold);
}

.delivery-option input:checked + .delivery-content {
    background: var(--color-pink);
    border-color: var(--color-gold);
}

.delivery-title {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-brown);
    margin-bottom: 0.25rem;
}

.delivery-desc {
    font-size: 0.75rem;
    color: var(--color-gray);
}

/* Form Submit */
.form-submit {
    text-align: center;
    padding-top: 1.5rem;
}

.privacy-check {
    justify-content: center;
    margin-bottom: 1.5rem;
}

.privacy-check .checkbox-label {
    font-size: 0.8rem;
}

.btn-large {
    padding: 1.1rem 2.5rem;
    font-size: 0.85rem;
}

.btn-large svg {
    width: 18px;
    height: 18px;
}

/* Bestel Footer */
.bestel-page .footer {
    background: var(--color-brown);
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.footer-logo {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--color-white);
}

.footer-tagline {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
}

.bestel-page .footer-links {
    display: flex;
    gap: 2rem;
}

.bestel-page .footer-links a {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.6);
    transition: var(--transition-fast);
}

.bestel-page .footer-links a:hover {
    color: var(--color-gold);
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

/* Responsive for Bestel Page */
@media (max-width: 1024px) {
    .form-layout {
        grid-template-columns: 1fr;
    }

    .form-sidebar {
        position: static;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .sidebar-card {
        flex: 1;
        min-width: 250px;
    }

    .order-type-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .nav .nav-container {
        display: flex;
        flex-wrap: wrap;
    }

    .nav .nav-toggle {
        display: flex;
        order: 1;
    }

    .nav .nav-logo {
        order: 2;
    }

    .nav .language-switcher {
        order: 3;
        margin-left: auto;
    }

    .nav .nav-links {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: var(--color-pink-light);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 1.5rem;
        padding-top: 100px;
        transition: var(--transition-medium);
        z-index: 1001;
        order: 4;
        margin-left: 0;
        margin-right: 0;
    }

    .nav .nav-links.active {
        left: 0;
        box-shadow: 10px 0 30px rgba(113, 93, 72, 0.15);
    }

    .nav .nav-links a {
        color: var(--color-gold);
        font-size: 1rem;
    }

    .nav .nav-links .nav-cta {
        background: var(--color-gold);
        color: var(--color-white) !important;
    }

    .nav .nav-links .menu-logo {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-bottom: 1rem;
    }

    .nav .nav-links .menu-logo-cake,
    .nav .nav-links .menu-logo-affair {
        font-family: var(--font-serif);
        color: var(--color-gold);
        letter-spacing: 0.15em;
        text-transform: uppercase;
    }

    .nav .nav-links .menu-logo-cake {
        font-size: 1.75rem;
    }

    .nav .nav-links .menu-logo-affair {
        font-size: 1.25rem;
    }

    .nav .nav-links .menu-close {
        position: absolute;
        top: 1.5rem;
        right: 1.5rem;
        background: none;
        border: none;
        font-size: 2rem;
        color: var(--color-gold);
        cursor: pointer;
        line-height: 1;
    }

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

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

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

    .delivery-options {
        grid-template-columns: 1fr;
    }

    .sidebar-card {
        min-width: 100%;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .bestel-page .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

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

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

    .form-main {
        padding: 1.25rem;
    }
}

/* =====================================================
   LINKTREE STYLES
   ===================================================== */
.linktree-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-pink-light) 0%, var(--color-pink) 100%);
    padding: 2rem;
}

.linktree-container {
    max-width: 400px;
    width: 100%;
    text-align: center;
}

.linktree-logo { margin-bottom: 0.5rem; }
.linktree-logo .logo-cake { font-size: 2.5rem; }
.linktree-logo .logo-affair { font-size: 1.75rem; }

.linktree-tagline {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--color-brown-light);
    margin-bottom: 2.5rem;
}

.linktree-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
}

.linktree-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 1rem 1.5rem;
    background: var(--color-white);
    border: 1px solid var(--color-brown);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-brown);
    transition: var(--transition-medium);
}

.linktree-link:hover {
    background: var(--color-brown);
    color: var(--color-white);
}

.linktree-link svg {
    width: 18px;
    height: 18px;
}

.linktree-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-link {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-brown);
    border: 1px solid var(--color-brown);
    transition: var(--transition-fast);
}

.social-link:hover {
    background: var(--color-brown);
    color: var(--color-white);
}

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

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 1024px) {
    :root { --section-padding: 80px; }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .over-grid { gap: 3rem; }

    .diensten-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 0 auto;
    }

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

    .werkwijze-timeline::before { display: none; }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 260px;
    }

    .gallery-image {
        height: 100%;
        object-fit: cover;
    }

    .faq-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .faq-header {
        position: static;
        text-align: center;
    }

    .faq-header .gold-divider { margin: 0 auto 1.5rem; }

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

    .footer-brand { grid-column: span 2; }
}

@media (max-width: 768px) {
    .navbar .nav-container {
        display: flex;
        flex-wrap: wrap;
    }

    .navbar .nav-toggle {
        display: flex;
        order: 1;
    }

    .navbar .nav-logo {
        order: 2;
    }

    .navbar .language-switcher {
        order: 3;
        margin-left: auto;
    }

    .navbar .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: var(--color-pink-light);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 1.5rem;
        transition: var(--transition-medium);
        padding: 2rem;
        padding-top: 100px;
        z-index: 1001;
        order: 4;
        margin-left: 0;
        margin-right: 0;
    }

    .navbar .nav-menu.active {
        left: 0;
        box-shadow: 10px 0 30px rgba(113, 93, 72, 0.15);
    }

    .navbar .nav-menu .nav-link {
        color: var(--color-gold);
        font-size: 1rem;
    }

    .navbar .nav-menu .nav-cta {
        background: var(--color-gold);
        color: var(--color-white) !important;
    }

    .navbar .nav-menu .menu-logo {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-bottom: 1rem;
    }

    .navbar .nav-menu .menu-logo-cake,
    .navbar .nav-menu .menu-logo-affair {
        font-family: var(--font-serif);
        color: var(--color-gold);
        letter-spacing: 0.15em;
        text-transform: uppercase;
    }

    .navbar .nav-menu .menu-logo-cake {
        font-size: 1.75rem;
    }

    .navbar .nav-menu .menu-logo-affair {
        font-size: 1.25rem;
    }

    .navbar .nav-menu .menu-close {
        position: absolute;
        top: 1.5rem;
        right: 1.5rem;
        background: none;
        border: none;
        font-size: 2rem;
        color: var(--color-gold);
        cursor: pointer;
        line-height: 1;
    }

    .navbar .nav-menu .menu-logo {
        display: flex !important;
    }

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

    .over-image {
        order: -1;
        max-width: 380px;
        margin: 0 auto;
    }

    .werkwijze-timeline { grid-template-columns: 1fr; }

    .stats-grid {
        flex-direction: column;
        gap: 1.5rem;
    }

    .stat-divider {
        width: 40px;
        height: 1px;
    }

    .form-row { grid-template-columns: 1fr; }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-brand { grid-column: span 1; }
    .footer-logo { align-items: center; }
    .footer-desc { margin: 0 auto; }
}

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

    .gallery-item {
        aspect-ratio: 4 / 3;
    }

    /* fashion foto: volledig breed op mobiel */
    .gallery-grid > .gallery-item:last-child:nth-child(odd) {
        grid-column: 1;
        width: 100%;
        margin: 0;
    }

    .gallery-item.large {
        grid-column: span 1;
        grid-row: span 1;
    }

    .gallery-image {
        height: 100%;
        object-fit: cover;
    }

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

    .cta-buttons { flex-direction: column; align-items: center; }

    .form-options { flex-direction: column; }

    .form-option label {
        width: 100%;
        text-align: center;
    }
}

/* =====================================================
   HERO LOGO ANIMATIONS
   ===================================================== */

/* Fade in with upward movement */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Subtle golden shimmer effect */
@keyframes shimmerGold {
    0%, 100% {
        text-shadow:
            0 2px 20px rgba(201, 168, 117, 0.3),
            0 0 10px rgba(201, 168, 117, 0.2);
    }
    50% {
        text-shadow:
            0 2px 25px rgba(201, 168, 117, 0.5),
            0 0 20px rgba(201, 168, 117, 0.4),
            0 0 30px rgba(250, 220, 230, 0.3);
    }
}

/* Gallery scroll reveal animation */
@keyframes galleryFadeIn {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Service cards scroll reveal animation */
@keyframes cardFadeIn {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Parallax hero background effect */
.hero {
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
}

/* SVG Logo decorative underline */
.hero-logo-underline {
    width: 200px;
    height: 3px;
    margin: 1rem auto 0;
    opacity: 0;
    animation: fadeIn 0.8s cubic-bezier(0.4, 0, 0.2, 1) 1.2s forwards;
}

.hero-logo-underline line {
    stroke: var(--color-gold);
    stroke-width: 3;
    stroke-linecap: round;
    stroke-dasharray: 200;
    stroke-dashoffset: 200;
    animation: drawLine 2s cubic-bezier(0.4, 0, 0.2, 1) 1.5s forwards;
}

@keyframes drawLine {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* =====================================================
   MOBILE OPTIMIZATION
   ===================================================== */

@media (max-width: 768px) {
    /* Disable parallax background on mobile (known iOS/Android bug with background-attachment: fixed) */
    .hero {
        background-attachment: scroll !important;
    }

    /* Hero content parallax and fade work on mobile via JavaScript */

    /* Disable 3D transforms on mobile for performance (but keep fade-in animations) */
    .dienst-card {
        transform-style: flat !important;
        perspective: none !important;
    }

    /* Simplified hover effect on mobile (no 3D rotation) */
    .dienst-card:hover {
        transform: translateY(-4px) !important;
    }

    /* Mobile-optimized scroll reveal animations */
    /* Faster, lighter animations for better mobile performance */
    @keyframes galleryFadeInMobile {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes cardFadeInMobile {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Use lighter mobile animations */
    .gallery-item.will-animate.scroll-reveal {
        animation: galleryFadeInMobile 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards !important;
    }

    .dienst-card.will-animate.scroll-reveal {
        animation: cardFadeInMobile 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards !important;
    }
}
