:root {
    --cream: #FDF8F4;
    --cream-dark: #F8EDE6;
    --warm-white: #FFFDF9;

    --blush: #FFDCE8;
    --blush-soft: #FFF0F5;
    --rose: #F2A0B8;
    --pink: #E8458A;
    --pink-dark: #D43A7A;
    --pink-glow: rgba(232, 69, 138, 0.15);

    --text-dark: #3D3532;
    --text-medium: #6B5E59;
    --text-light: #9A8B85;

    --font-display: 'Fraunces', Georgia, serif;
    --font-body: 'Source Sans 3', -apple-system, sans-serif;
    --font-handwritten: 'Playpen Sans', cursive;

    --text-sm: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
    --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
    --text-lg: clamp(1.125rem, 1rem + 0.5vw, 1.375rem);
    --text-xl: clamp(1.25rem, 1.1rem + 0.75vw, 1.625rem);
    --text-2xl: clamp(1.5rem, 1.2rem + 1.5vw, 2.25rem);
    --text-3xl: clamp(2rem, 1.5rem + 2.5vw, 3.25rem);
    --text-4xl: clamp(2.5rem, 1.75rem + 3.75vw, 4.5rem);

    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 5rem;
    --space-3xl: 8rem;

    --container: min(90%, 1100px);
    --container-narrow: min(90%, 800px);

    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;

    --ease-gentle: cubic-bezier(0.4, 0, 0.2, 1);
}

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

::selection {
    background: var(--blush);
    color: var(--text-dark);
}

:focus-visible {
    outline: 2px solid var(--pink);
    outline-offset: 2px;
}

/* scroll-behavior handled by JS for precise control */

body {
    font-family: var(--font-body);
    font-size: var(--text-base);
    line-height: 1.7;
    color: var(--text-dark);
    background: var(--cream);
    -webkit-font-smoothing: antialiased;
    overflow-x: clip;
}

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

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.2;
    color: var(--text-dark);
}

.container {
    width: var(--container);
    margin: 0 auto;
}

/* ================== ANIMATIONS ================== */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

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

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(var(--rotation, 0deg)); }
    50% { transform: translateY(-8px) rotate(var(--rotation, 0deg)); }
}

@keyframes pulse-soft {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s var(--ease-gentle), transform 0.6s var(--ease-gentle);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}

/* ================== HEADER ================== */
section[id] {
    scroll-margin-top: 80px;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    padding: var(--space-md) 0;
    background: var(--cream);
    transition: box-shadow 0.3s var(--ease-gentle), background 0.3s var(--ease-gentle);
}

.header.scrolled {
    background: rgba(253, 248, 244, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 2px 20px rgba(61, 53, 50, 0.08);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-family: var(--font-display);
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--text-dark);
}

.logo-icon {
    width: 32px;
    height: 32px;
}

.header-right {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.nav {
    display: flex;
    gap: 0;
    align-items: center;
}

.nav a {
    font-family: var(--font-handwritten);
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--text-medium);
    padding: 6px 10px;
    text-decoration: none;
    transition: color 0.3s var(--ease-gentle), transform 0.3s var(--ease-gentle);
}

.nav a:hover {
    color: var(--pink);
    transform: translateY(-2px);
}

.nav a.active {
    color: var(--pink);
    font-weight: 600;
}

.nav-sep {
    color: var(--rose);
    font-size: 0.65rem;
    padding: 0 4px;
    opacity: 0.6;
    user-select: none;
}

.lang-switch {
    display: flex;
    gap: 2px;
    background: var(--cream-dark);
    border-radius: 20px;
    padding: 2px;
}

.lang-btn {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 16px;
    color: var(--text-light);
    transition: all 0.2s var(--ease-gentle);
}

.lang-btn.active {
    background: var(--pink);
    color: white;
}

.lang-btn:hover:not(.active) {
    color: var(--pink);
}

.mobile-menu-btn {
    display: none;
    width: 40px;
    height: 40px;
    position: relative;
    z-index: 110;
}

.mobile-menu-btn span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-dark);
    border-radius: 2px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    transition: top 0.2s var(--ease-gentle), transform 0.2s var(--ease-gentle) 0.2s, opacity 0.15s;
}

.mobile-menu-btn span:nth-child(1) { top: 12px; }
.mobile-menu-btn span:nth-child(2) { top: 19px; }
.mobile-menu-btn span:nth-child(3) { top: 26px; }

.mobile-menu-btn.open span {
    transition: top 0.2s var(--ease-gentle), transform 0.2s var(--ease-gentle) 0.2s, opacity 0.15s;
}

.mobile-menu-btn.open span:nth-child(1) {
    top: 19px;
    transform: translateX(-50%) rotate(45deg);
}

.mobile-menu-btn.open span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.open span:nth-child(3) {
    top: 19px;
    transform: translateX(-50%) rotate(-45deg);
}

/* Mobile nav overlay — lives outside header to avoid backdrop-filter stacking issues */
.mobile-nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--cream);
    z-index: 150;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    overscroll-behavior: contain;
}

.mobile-nav-overlay.open {
    display: flex;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
}

.mobile-nav a {
    font-family: var(--font-handwritten);
    font-size: var(--text-xl);
    font-weight: 500;
    color: var(--text-medium);
    padding: 10px 24px;
    text-decoration: none;
    transition: color 0.3s var(--ease-gentle);
}

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

.mobile-nav .nav-sep {
    color: var(--rose);
    font-size: 0.8rem;
    opacity: 0.6;
    user-select: none;
}

.lang-switch--mobile {
    position: absolute;
    bottom: var(--space-2xl);
    left: 50%;
    transform: translateX(-50%);
}

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

    .lang-switch--header {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }
}

/* ================== HERO ================== */
.hero {
    min-height: 100vh;
    padding: calc(80px + var(--space-3xl)) 0 var(--space-3xl);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-bg-shape {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 60vw;
    height: 60vw;
    max-width: 700px;
    max-height: 700px;
    background: radial-gradient(circle, var(--blush) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    opacity: 0.7;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
}

.hero-content {
    animation: fadeUp 0.8s var(--ease-gentle) forwards;
    position: relative;
    z-index: 2;
}

.hero-greeting {
    font-family: var(--font-handwritten);
    font-size: var(--text-2xl);
    color: var(--pink);
    margin-bottom: var(--space-xs);
}

.hero-title {
    font-size: var(--text-4xl);
    margin-bottom: var(--space-md);
    line-height: 1.1;
}

.hero-subtitle {
    font-size: var(--text-xl);
    color: var(--text-medium);
    margin-bottom: var(--space-lg);
    max-width: 450px;
}

.hero-subtitle .accent {
    color: var(--pink);
    font-weight: 600;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    background: var(--pink);
    color: white;
    padding: var(--space-md) var(--space-xl);
    border-radius: var(--radius-xl);
    font-weight: 600;
    font-size: var(--text-base);
    transition: all 0.3s var(--ease-gentle);
    box-shadow: 0 4px 20px var(--pink-glow);
}

.hero-cta:hover {
    background: var(--pink-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(232, 69, 138, 0.35);
}

.hero-cta svg {
    transition: transform 0.3s var(--ease-gentle);
}

.hero-cta:hover svg {
    transform: translateX(4px);
}

.hero-image-wrapper {
    position: relative;
    animation: fadeIn 1s var(--ease-gentle) 0.3s forwards;
    opacity: 0;
    z-index: 2;
}

.hero-image {
    position: relative;
    transform: rotate(3deg);
    transition: transform 0.4s var(--ease-gentle);
}

.hero-image:hover {
    transform: rotate(1deg) scale(1.02);
}

.hero-image img {
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 60px rgba(61, 53, 50, 0.15);
    border: 8px solid var(--warm-white);
}

.hero-handwritten-note {
    position: absolute;
    bottom: -20px;
    right: -20px;
    font-family: var(--font-handwritten);
    font-size: var(--text-lg);
    color: var(--pink);
    transform: rotate(-5deg);
    animation: float 4s ease-in-out infinite;
    --rotation: -5deg;
    background: var(--warm-white);
    padding: 6px 14px;
    border-radius: var(--radius-md);
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
}

.hero-emoji-float {
    position: absolute;
    font-size: 2rem;
    animation: float 5s ease-in-out infinite;
    pointer-events: none;
    z-index: 3;
}

.hero-emoji-float:nth-child(1) {
    top: 15%;
    right: -40px;
    --rotation: 10deg;
    animation-delay: 0.5s;
}

.hero-emoji-float:nth-child(2) {
    bottom: 10%;
    left: -30px;
    --rotation: -8deg;
    animation-delay: 1.5s;
}

@media (max-width: 968px) {
    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-subtitle { margin-left: auto; margin-right: auto; }

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

    .hero-handwritten-note {
        bottom: -10px;
        right: 10px;
        font-size: var(--text-sm);
    }

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

/* ================== PHILOSOPHY ================== */
.philosophy {
    padding: var(--space-3xl) 0;
    background: var(--cream-dark);
    position: relative;
}

.philosophy-header {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.philosophy-tag {
    font-family: var(--font-handwritten);
    font-size: var(--text-lg);
    color: var(--pink);
    margin-bottom: var(--space-xs);
}

.philosophy-title {
    font-size: var(--text-3xl);
    margin-bottom: var(--space-sm);
}

.philosophy-body {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: var(--space-2xl);
    align-items: center;
}

.philosophy-arch-image {
    position: relative;
    width: 320px;
}

.philosophy-arch-image img {
    width: 100%;
    border-radius: 180px 180px 20px 20px;
    position: relative;
    z-index: 1;
    box-shadow: 0 20px 50px rgba(61, 53, 50, 0.12);
}

.philosophy-arch-frame {
    position: absolute;
    top: 14px;
    left: 14px;
    right: -14px;
    bottom: -14px;
    border: 2px solid var(--rose);
    border-radius: 180px 180px 20px 20px;
    z-index: 0;
}

.philosophy-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

.philosophy-card {
    background: var(--warm-white);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    transition: transform 0.3s var(--ease-gentle), box-shadow 0.3s var(--ease-gentle);
}

@media (hover: hover) {
    .philosophy-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 30px rgba(61, 53, 50, 0.08);
    }
}

.philosophy-card-icon {
    width: 32px;
    height: 32px;
    margin-bottom: var(--space-sm);
    display: block;
    color: var(--pink);
}
.philosophy-card-icon svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.philosophy-card h3 {
    font-size: var(--text-lg);
    margin-bottom: 4px;
}

.philosophy-card p {
    color: var(--text-medium);
    font-size: var(--text-sm);
}

@media (max-width: 868px) {
    .philosophy-body {
        grid-template-columns: 1fr;
        justify-items: center;
    }

    .philosophy-arch-image {
        width: 250px;
    }

    .philosophy-cards {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
}

/* ================== ABOUT ================== */
.about {
    padding: var(--space-3xl) 0;
}

.about-inner {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: var(--space-2xl);
    align-items: start;
}

.about-image-wrapper {
    position: relative;
}

.about-image img {
    border-radius: var(--radius-lg);
    box-shadow: 0 15px 40px rgba(61, 53, 50, 0.12);
    border: 6px solid var(--warm-white);
}

.about-annotation {
    position: absolute;
    bottom: -30px;
    left: -10px;
    font-family: var(--font-handwritten);
    font-size: var(--text-base);
    color: var(--pink);
    transform: rotate(-6deg);
    white-space: nowrap;
    background: var(--warm-white);
    padding: 6px 14px;
    border-radius: var(--radius-md);
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.about-content h2 {
    font-size: var(--text-3xl);
    margin-bottom: var(--space-lg);
}

.about-content p {
    color: var(--text-medium);
    margin-bottom: var(--space-md);
}

.about-content p strong {
    color: var(--text-dark);
}

.about-highlight {
    background: linear-gradient(180deg, transparent 60%, var(--blush) 60%);
    padding: 0 4px;
}

.about-quote {
    margin-top: var(--space-2xl);
    text-align: center;
    position: relative;
    padding: 2.2rem 0 1.2rem;
}
.about-quote-bracket {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    width: 100%;
    max-width: 340px;
}
.about-quote-bracket:first-child { top: 0; }
.about-quote-bracket:last-child { bottom: 0; }
.about-quote-bracket::before,
.about-quote-bracket::after {
    content: '✿';
    font-size: 0.7rem;
    color: var(--rose);
    flex-shrink: 0;
}
.about-quote-bracket span {
    flex: 1;
    height: 1px;
    background: var(--blush);
}
.about-quote-text {
    font-family: var(--font-handwritten);
    font-size: clamp(1.35rem, 2.2vw, 1.65rem);
    font-weight: 500;
    color: var(--pink);
    line-height: 1.45;
    max-width: 480px;
    margin: 0 auto;
}

.about-stats {
    display: flex;
    gap: var(--space-md);
    margin-top: var(--space-2xl);
    justify-content: center;
}

.about-stat {
    flex: 0 1 220px;
    text-align: center;
    background: var(--warm-white);
    border-radius: var(--radius-lg);
    padding: var(--space-lg) var(--space-sm);
    border: 1.5px solid var(--cream-dark);
    transition: all 0.3s var(--ease-gentle);
}

@media (hover: hover) {
    .about-stat:hover {
        border-color: var(--pink);
        transform: translateY(-3px);
        box-shadow: 0 8px 20px var(--pink-glow);
    }
}

.about-stat-number {
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    font-weight: 600;
    color: var(--pink);
    line-height: 1;
    margin-bottom: 4px;
}

.about-stat-label {
    font-size: 0.8rem;
    color: var(--text-light);
}

@media (max-width: 868px) {
    .about-inner {
        grid-template-columns: 1fr;
    }

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

    .about-annotation {
        left: 0;
        bottom: -40px;
        white-space: normal;
        max-width: 100%;
    }

    .about-content {
        text-align: center;
        margin-top: var(--space-xl);
    }

    .about-stats {
        justify-content: center;
    }

    .about-quote-bracket {
        max-width: 260px;
    }
}

/* ================== SERVICES ================== */
.services {
    padding: var(--space-3xl) 0;
    background: var(--cream-dark);
}

.services-header {
    margin-bottom: var(--space-2xl);
}

.services-header h2 {
    font-size: var(--text-3xl);
}

.services-layout {
    display: grid;
    grid-template-columns: 1.15fr 0.95fr 0.9fr;
    gap: var(--space-md);
    align-items: stretch;
}

/* --- Shared card base --- */
.svc {
    border-radius: var(--radius-lg);
    padding: var(--space-xl) var(--space-lg);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.35s var(--ease-gentle), box-shadow 0.35s var(--ease-gentle);
}

@media (hover: hover) {
    .svc:hover { transform: translateY(-5px); }
}

/* --- Decorative circle on secondary cards --- */

/* --- Featured card (1:1) --- */
.svc--featured {
    background: linear-gradient(160deg, var(--pink) 0%, var(--pink-dark) 100%);
    color: white;
    box-shadow: 0 8px 30px rgba(232, 69, 138, 0.25);
}

.svc--featured::before {
    display: none;
}

.svc--featured::after {
    content: '';
    position: absolute;
    bottom: -40px;
    right: -30px;
    width: 140px;
    height: 140px;
    background: rgba(255,255,255,0.06);
    border-radius: 50%;
    pointer-events: none;
}

@media (hover: hover) {
    .svc--featured:hover {
        box-shadow: 0 16px 45px rgba(232, 69, 138, 0.35);
    }
}

/* --- Secondary cards --- */
.svc--secondary {
    background: var(--warm-white);
    border: 1.5px solid rgba(232, 69, 138, 0.1);
}

.svc--secondary::before {
    display: none;
}

@media (hover: hover) {
    .svc--secondary:hover {
        border-color: var(--pink);
        box-shadow: 0 12px 30px var(--pink-glow);
    }
}

/* --- Card internals --- */
.svc__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--space-sm);
}

.svc__icon {
    width: 28px;
    height: 28px;
    color: var(--pink);
}
.svc--featured .svc__icon {
    color: rgba(255, 255, 255, 0.85);
}
.svc__icon svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.svc__badge {
    font-size: 0.7rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    letter-spacing: 0.02em;
}

.svc--featured .svc__badge {
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(8px);
    color: white;
}

.svc--secondary .svc__badge {
    background: var(--blush);
    color: var(--pink);
}

.svc__title {
    font-family: var(--font-display);
    font-size: var(--text-lg);
    font-weight: 600;
    margin-bottom: var(--space-xs);
    line-height: 1.3;
}

.svc--featured .svc__title {
    color: white;
}

.svc__desc {
    font-size: var(--text-sm);
    line-height: 1.6;
    flex-grow: 1;
}

.svc--featured .svc__desc {
    color: rgba(255,255,255,0.85);
}

.svc--secondary .svc__desc {
    color: var(--text-medium);
}

.svc__quote {
    font-family: var(--font-handwritten);
    font-size: 0.8rem;
    margin-top: var(--space-sm);
    opacity: 0.7;
    line-height: 1.5;
}

.svc__cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    font-size: var(--text-sm);
    margin-top: var(--space-md);
    transition: gap 0.25s var(--ease-gentle);
}

.svc__cta:hover { gap: 12px; }

.svc--featured .svc__cta {
    color: white;
    border-bottom: 1.5px solid rgba(255,255,255,0.4);
    padding-bottom: 2px;
    align-self: flex-start;
}

.svc--featured .svc__cta:hover {
    border-bottom-color: white;
}

.svc--secondary .svc__cta {
    color: var(--pink);
}

@media (max-width: 768px) {
    .services-layout {
        grid-template-columns: 1fr;
        gap: var(--space-sm);
    }

    .svc {
        padding: var(--space-lg);
    }
}

/* ================== GALLERY ================== */
.gallery {
    padding: var(--space-3xl) 0;
    overflow: hidden;
}

.gallery-header {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.gallery-header h2 {
    font-size: var(--text-3xl);
}

.gallery-header p {
    font-family: var(--font-handwritten);
    font-size: var(--text-lg);
    color: var(--pink);
    margin-top: var(--space-xs);
}

/* --- Editorial Gallery --- */
.gallery-editorial {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: var(--container);
    margin: 0 auto;
}

.gallery-cluster {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 16px;
    height: clamp(420px, 55vh, 620px);
}

/* 4th image spans bottom-right 2 columns */
.gal--wide {
    grid-column: 2 / 4;
}

.gal {
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    position: relative;
    transition: transform 0.4s var(--ease-gentle), box-shadow 0.4s var(--ease-gentle);
}

.gal img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    display: block;
    transition: transform 0.5s var(--ease-gentle);
}

@media (hover: hover) {
    .gal:hover {
        transform: translateY(-4px);
        box-shadow: 0 16px 40px rgba(232, 69, 138, 0.18);
    }

    .gal:hover img {
        transform: scale(1.04);
    }
}

/* Hover overlay with title */
.gal-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 50%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: var(--space-lg);
    opacity: 0;
    transition: opacity 0.35s var(--ease-gentle);
    pointer-events: none;
}

@media (hover: hover) {
    .gal:hover .gal-overlay {
        opacity: 1;
    }
}

.gal-overlay__title {
    font-family: var(--font-display);
    font-size: var(--text-lg);
    font-weight: 600;
    color: white;
    line-height: 1.3;
    transform: translateY(8px);
    transition: transform 0.35s var(--ease-gentle);
}

@media (hover: hover) {
    .gal:hover .gal-overlay__title {
        transform: translateY(0);
    }
}

.gal-overlay__sub {
    font-family: var(--font-handwritten);
    font-size: var(--text-sm);
    color: rgba(255,255,255,0.75);
    margin-top: 4px;
    transform: translateY(8px);
    transition: transform 0.4s var(--ease-gentle);
}

@media (hover: hover) {
    .gal:hover .gal-overlay__sub {
        transform: translateY(0);
    }
}

.gal--hero {
    grid-row: 1 / 3;
}

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

    .gal--hero {
        grid-column: 1 / 3;
        grid-row: auto;
        min-height: 280px;
    }

    .gal--wide {
        grid-column: 1 / 3;
    }

    .gal:not(.gal--hero):not(.gal--wide) {
        min-height: 200px;
    }
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(20, 10, 15, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s var(--ease-gentle), visibility 0.4s;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-img {
    max-width: 88vw;
    max-height: 82vh;
    border-radius: var(--radius-lg);
    object-fit: contain;
    box-shadow: 0 25px 80px rgba(0,0,0,0.5);
    transition: transform 0.4s var(--ease-gentle), opacity 0.3s;
}

.lightbox.active .lightbox-img {
    animation: lightbox-enter 0.4s var(--ease-gentle) forwards;
}

@keyframes lightbox-enter {
    from { transform: scale(0.92); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.lightbox-close {
    position: absolute;
    top: 24px;
    right: 24px;
    color: white;
    font-size: 1.25rem;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    transition: all 0.25s var(--ease-gentle);
}

.lightbox-close:hover {
    background: var(--pink);
    border-color: var(--pink);
    transform: rotate(90deg);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 1.5rem;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    transition: all 0.25s var(--ease-gentle);
}

.lightbox-nav:hover {
    background: var(--pink);
    border-color: var(--pink);
    transform: translateY(-50%) scale(1.08);
}

.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }

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

.lightbox-counter {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.5);
    font-family: var(--font-handwritten);
    font-size: var(--text-sm);
    letter-spacing: 0.1em;
}

/* ================== VIDEO / SDK SECTION ================== */
.video-section {
    padding: var(--space-3xl) 0;
    background: #1F1A1C;
    color: white;
    position: relative;
    overflow: hidden;
}

.video-section::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(232, 69, 138, 0.07) 0%, transparent 70%);
    pointer-events: none;
}

.video-inner {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: var(--space-2xl);
    align-items: center;
}

.video-info {
    position: relative;
    z-index: 1;
}

.video-badge {
    display: inline-block;
    font-family: var(--font-handwritten);
    font-size: var(--text-sm);
    color: var(--pink);
    margin-bottom: var(--space-md);
}

.video-info h2 {
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    font-weight: 600;
    color: white;
    margin-bottom: var(--space-sm);
}

.video-info p {
    color: rgba(255,255,255,0.55);
    font-size: var(--text-sm);
    line-height: 1.7;
    margin-bottom: var(--space-lg);
}

.video-info p a {
    color: rgba(255,255,255,0.8);
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color 0.2s var(--ease-gentle);
}

.video-info p a:hover {
    color: white;
}

.video-info .video-stat {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    font-weight: 600;
    color: var(--pink);
    display: block;
    margin-bottom: var(--space-xs);
}

.video-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--pink);
    color: white;
    padding: var(--space-sm) var(--space-xl);
    border-radius: var(--radius-xl);
    font-weight: 600;
    font-size: var(--text-sm);
    transition: all 0.3s var(--ease-gentle);
    box-shadow: 0 4px 20px rgba(232, 69, 138, 0.3);
}

.video-cta:hover {
    background: var(--pink-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(232, 69, 138, 0.4);
}

.video-embed {
    position: relative;
    z-index: 1;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
    border: 1px solid rgba(255,255,255,0.08);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

@media (max-width: 768px) {
    .video-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .video-cta {
        width: 100%;
        justify-content: center;
    }
}

/* ================== COLLABS ================== */
.collabs {
    padding: var(--space-2xl) 0;
    border-top: 1px solid var(--cream-dark);
}

.collabs-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
}

.collabs-label {
    font-family: var(--font-handwritten);
    font-size: var(--text-lg);
    font-weight: 500;
    color: var(--pink);
}

.collabs-list {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex-wrap: wrap;
    justify-content: center;
}

.collabs-list a {
    font-family: var(--font-display);
    font-size: var(--text-sm);
    color: var(--text-medium);
    padding: 0.45rem 1.2rem;
    border: 1px solid var(--blush);
    border-radius: 100px;
    background: var(--warm-white);
    transition: color 0.3s var(--ease-gentle), border-color 0.3s var(--ease-gentle), background 0.3s var(--ease-gentle);
    white-space: nowrap;
}

.collabs-list a:hover {
    color: var(--pink);
    border-color: var(--rose);
    background: var(--blush-soft);
}

.collabs-pitch {
    text-align: center;
    margin-top: var(--space-sm);
}

.collabs-pitch p {
    font-style: italic;
    font-size: var(--text-sm);
    color: var(--text-light);
    line-height: 1.7;
    max-width: 480px;
    margin: 0 auto;
}

.collabs-pitch a {
    color: var(--pink);
    font-weight: 600;
    font-style: normal;
    transition: color 0.2s var(--ease-gentle);
}

.collabs-pitch a:hover {
    color: var(--pink-dark);
}

@media (max-width: 768px) {
    .collabs-list {
        gap: 0.5rem;
    }
}

/* ================== TESTIMONIALS ================== */
.testimonials {
    padding: var(--space-3xl) 0;
    background: var(--blush-soft);
    position: relative;
    overflow: hidden;
}

/* Large decorative quote watermark */
.testimonials::before {
    content: '\201C';
    font-family: var(--font-display);
    font-size: clamp(14rem, 22vw, 24rem);
    color: var(--pink);
    opacity: 0.05;
    position: absolute;
    top: -2.5rem;
    left: 50%;
    transform: translateX(-50%);
    line-height: 1;
    pointer-events: none;
    z-index: 0;
}

.testimonials-header {
    text-align: center;
    margin-bottom: var(--space-2xl);
    position: relative;
    z-index: 1;
}

.testimonials-header h2 {
    font-size: var(--text-3xl);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    position: relative;
    z-index: 1;
}

.testi-card {
    padding: var(--space-md) var(--space-lg);
}

/* Editorial column rules */
.testi-card:not(:first-child) {
    border-left: 1px solid rgba(242, 160, 184, 0.35);
}

/* Decorative opening quote */
.testi-card::before {
    content: '„';
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--pink);
    opacity: 0.35;
    line-height: 1;
    display: block;
    margin-bottom: var(--space-xs);
}

.testi-card .tq-text {
    font-family: var(--font-body);
    font-size: var(--text-base);
    color: var(--text-dark);
    line-height: 1.7;
}

.testi-card .tq-author {
    font-family: var(--font-handwritten);
    font-size: var(--text-sm);
    color: var(--pink);
    margin-top: var(--space-md);
}

@media (max-width: 868px) {
    .testimonials::before {
        font-size: 8rem;
        top: 0.5rem;
    }

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

    .testi-card:not(:first-child) {
        border-left: none;
        border-top: 1px solid rgba(242, 160, 184, 0.3);
        padding-top: var(--space-lg);
    }

    .testi-card {
        padding: var(--space-md) 0;
    }
}

/* ================== LOCATION (modest) ================== */
.location {
    padding: var(--space-xl) 0;
    background: var(--warm-white);
    border-top: 1px solid var(--cream-dark);
    border-bottom: 1px solid var(--cream-dark);
}

.location-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    text-align: center;
}

.location-label {
    font-family: var(--font-handwritten);
    font-size: var(--text-lg);
    font-weight: 500;
    color: var(--pink);
}

.location-name {
    font-family: var(--font-display);
    font-size: var(--text-lg);
    color: var(--text-dark);
}

.location-name a {
    color: inherit;
    text-decoration: underline;
    text-decoration-color: var(--blush);
    text-underline-offset: 4px;
    text-decoration-thickness: 2px;
    transition: text-decoration-color 0.3s var(--ease-gentle);
}

.location-name a:hover {
    text-decoration-color: var(--pink);
}

.location-name .location-city {
    color: var(--text-medium);
    font-family: var(--font-body);
    font-size: var(--text-base);
}

.location-note {
    font-size: var(--text-sm);
    color: var(--text-light);
    font-style: italic;
    margin-top: 0.15rem;
}

/* ================== CONTACT ================== */
.contact {
    padding: var(--space-3xl) 0;
    background: linear-gradient(135deg, var(--blush-soft) 0%, var(--cream-dark) 100%);
}

.contact-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: stretch;
}

.contact-info h2 {
    font-size: var(--text-3xl);
    margin-bottom: var(--space-sm);
}

.contact-info h2 em {
    font-style: italic;
    color: var(--pink);
}

.contact-info > p {
    color: var(--text-medium);
    margin-bottom: var(--space-lg);
}

.contact-subtitle {
    font-family: var(--font-handwritten);
    font-size: var(--text-xl);
    color: var(--pink);
    margin-bottom: var(--space-md);
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    margin-bottom: var(--space-xl);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-md);
    background: var(--warm-white);
    border-radius: var(--radius-md);
    transition: all 0.3s var(--ease-gentle);
}

@media (hover: hover) {
    .contact-item:hover {
        transform: translateX(6px);
        box-shadow: 0 6px 20px rgba(61, 53, 50, 0.06);
    }
}

.contact-item-icon {
    width: 40px;
    height: 40px;
    background: var(--blush-soft);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--pink);
}

.contact-item-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-light);
}

.contact-item-value {
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--text-dark);
}

.contact-app {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-lg);
    margin: var(--space-2xl) auto 0;
    max-width: 400px;
    background: var(--warm-white);
    border-radius: var(--radius-xl);
    border: 1px dashed var(--rose);
}

.contact-app-icon {
    color: var(--pink);
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.contact-app-text {
    font-size: var(--text-sm);
    color: var(--text-medium);
}

.contact-app-text strong {
    color: var(--text-dark);
    display: block;
}

.contact-form-wrap {
    background: var(--warm-white);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    box-shadow: 0 20px 50px rgba(61, 53, 50, 0.06);
    display: flex;
    flex-direction: column;
}

.contact-form {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.contact-form .form-group:last-of-type {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.contact-form .form-group:last-of-type textarea {
    flex-grow: 1;
}

.form-group {
    margin-bottom: var(--space-md);
}

.form-group label {
    display: block;
    margin-bottom: var(--space-xs);
    color: var(--text-dark);
    font-weight: 600;
    font-size: var(--text-sm);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: var(--space-sm) var(--space-md);
    border: 2px solid var(--cream-dark);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: var(--text-base);
    background: var(--cream);
    transition: border-color 0.2s var(--ease-gentle), box-shadow 0.2s var(--ease-gentle);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--pink);
    box-shadow: 0 0 0 4px var(--pink-glow);
}

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

.form-submit {
    margin-top: var(--space-md);
}

.form-submit button {
    width: 100%;
    background: var(--pink);
    color: white;
    padding: var(--space-md);
    border-radius: var(--radius-xl);
    font-weight: 600;
    font-size: var(--text-base);
    transition: all 0.3s var(--ease-gentle);
    box-shadow: 0 4px 20px var(--pink-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
}

.form-submit button:hover {
    background: var(--pink-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(232, 69, 138, 0.3);
}

.contact-alternative {
    text-align: center;
    margin-top: var(--space-md);
    font-size: var(--text-sm);
    color: var(--text-light);
}

.contact-alternative a {
    color: var(--pink);
    font-weight: 600;
}

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

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

    .contact-item {
        text-align: center;
    }
    .contact-item > div:last-child {
        flex: 1;
    }
}

/* ================== FOOTER ================== */
.footer {
    padding: var(--space-2xl) 0 var(--space-lg);
    background: var(--text-dark);
    color: rgba(255,255,255,0.7);
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-lg);
    margin-bottom: var(--space-lg);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    font-family: var(--font-display);
    font-size: var(--text-lg);
    font-weight: 600;
    color: white;
}

.footer-logo svg {
    width: 28px;
    height: 28px;
}

.footer-tagline {
    font-size: var(--text-sm);
    color: rgba(255,255,255,0.5);
}

.footer-nav {
    display: flex;
    gap: var(--space-lg);
}

.footer-nav a {
    font-size: var(--text-sm);
    color: rgba(255,255,255,0.6);
    transition: color 0.2s;
}

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

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

.footer-social a:hover {
    background: var(--pink);
    color: white;
    transform: translateY(-3px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-sm);
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(255,255,255,0.08);
    font-size: var(--text-sm);
}

.footer-lang {
    display: flex;
    gap: 4px;
}

.footer-lang .lang-btn {
    color: rgba(255,255,255,0.4);
    font-size: 0.75rem;
    padding: 4px 8px;
    border-radius: 12px;
}

.footer-lang .lang-btn.active {
    background: var(--pink);
    color: white;
}

.footer-lang .lang-btn:hover:not(.active) {
    color: rgba(255,255,255,0.8);
}

.footer-app-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    padding: 6px 14px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 20px;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.5);
    transition: all 0.2s;
}

.footer-app-badge:hover {
    border-color: var(--pink);
    color: var(--pink);
}

.footer-copy {
    color: rgba(255,255,255,0.3);
}

@media (max-width: 768px) {
    .footer-inner {
        flex-direction: column;
        text-align: center;
    }

    .footer-nav {
        flex-wrap: wrap;
        justify-content: center;
    }

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