/* ============================================
   QOQO NAILS — "Soft Precision" Design System
   Premium Nail Art Studio Wien
   ============================================ */

/* --- Custom Properties --- */
:root {
    --rose: #D4A5A5;
    --rose-gold: #C9A86C;
    --rose-gold-light: #D4B896;
    --pink-blush: #FDF2F4;
    --pink-soft: #FADCE3;
    --pink-medium: #F5D6DC;
    --cream: #F5F0E8;
    --cream-light: #FEF9F7;
    --taupe: #B8A99A;
    --sage: #C5D1C5;
    --charcoal: #3A3A3A;
    --text-muted: #8A7A7A;
    --text-light: #A89E9E;
    --white: #FFFFFF;
    --glass-bg: rgba(255, 255, 255, 0.35);
    --glass-border: rgba(255, 255, 255, 0.5);
    --shadow-soft: 0 20px 60px rgba(58, 58, 58, 0.08);
    --shadow-hover: 0 30px 80px rgba(58, 58, 58, 0.12);
    --shadow-glow: 0 0 60px rgba(212, 165, 165, 0.2);
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 30px;
    --radius-xl: 50px;
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-slow: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    color: var(--charcoal);
    background: var(--pink-blush);
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* --- Typography --- */
.font-serif {
    font-family: 'Cormorant Garamond', serif;
}

/* --- Utility --- */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}

/* --- Custom Cursor (Desktop) --- */
@media (hover: hover) and (pointer: fine) {
    .cursor-dot {
        position: fixed;
        width: 8px;
        height: 8px;
        background: var(--rose-gold);
        border-radius: 50%;
        pointer-events: none;
        z-index: 10000;
        transition: transform 0.15s ease, opacity 0.15s ease;
        mix-blend-mode: difference;
    }
    .cursor-ring {
        position: fixed;
        width: 40px;
        height: 40px;
        border: 1px solid var(--rose-gold);
        border-radius: 50%;
        pointer-events: none;
        z-index: 10000;
        transition: transform 0.3s ease, width 0.3s ease, height 0.3s ease, opacity 0.3s ease;
        opacity: 0.5;
    }
    .cursor-ring.hover {
        width: 60px;
        height: 60px;
        opacity: 0.8;
        border-color: var(--rose);
    }
}

/* ===== SPLASH SCREEN ===== */
.splash {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: opacity 0.8s ease, visibility 0.8s ease;
    overflow: hidden;
}

.splash.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.splash-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.splash-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0;
    animation: none;
}

.splash-orb-1 {
    width: 500px;
    height: 500px;
    background: var(--pink-soft);
    top: -15%;
    right: -10%;
}

.splash-orb-2 {
    width: 400px;
    height: 400px;
    background: var(--rose);
    bottom: -15%;
    left: -10%;
    animation-delay: -10s;
}

.splash-content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px;
}

.splash-logo {
    width: min(550px, 70vw);
    height: auto;
    margin-bottom: 50px;
    border-radius: 50%;
    animation: splashPulse 3s ease-in-out infinite;
}

@keyframes splashPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

.splash-enter {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    animation: splashBounce 2.5s ease-in-out infinite;
}

.splash-enter span {
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--charcoal);
}

.splash-enter svg {
    stroke: var(--taupe);
}

@keyframes splashBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
}

/* ===== VIDEO INTRO ===== */
.video-intro {
    position: fixed;
    inset: 0;
    z-index: 99998;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.video-intro.active {
    opacity: 1;
    visibility: visible;
}

.video-intro.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.video-intro video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-skip {
    position: absolute;
    bottom: 50px;
    right: 50px;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(12px);
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: white;
    padding: 20px 50px;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.video-skip:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Hide main content until splash is dismissed */
.main-hidden {
    overflow: hidden;
    height: 100vh;
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 15px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 10px 60px;
    background: rgba(245, 240, 232, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(201, 168, 108, 0.15);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
}

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

.nav-logo img {
    height: 135px;
    width: auto;
    transition: var(--transition);
    mix-blend-mode: multiply;
    border-radius: 50%;
}

.navbar.scrolled .nav-logo img {
    height: 90px;
}

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

.nav-links a {
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--charcoal);
    position: relative;
    padding: 5px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 1px;
    background: var(--rose-gold);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

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

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

.nav-links a.nav-cta {
    background: linear-gradient(135deg, var(--rose-gold) 0%, var(--rose-gold-light) 100%);
    color: var(--white) !important;
    padding: 14px 34px;
    border-radius: var(--radius-xl);
    font-weight: 500;
    letter-spacing: 0.1em;
    box-shadow: 0 8px 25px rgba(201, 168, 108, 0.3);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(201, 168, 108, 0.4);
    color: var(--white) !important;
}

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

/* Nav Instagram Badge — same style as TERMIN BUCHEN */
.nav-links a.nav-insta {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--rose-gold) 0%, var(--rose-gold-light) 100%);
    color: var(--white) !important;
    padding: 14px;
    border-radius: var(--radius-xl);
    box-shadow: 0 8px 25px rgba(201, 168, 108, 0.3);
    transition: var(--transition);
}

.nav-links a.nav-insta:hover {
    transform: translateY(-2px);
    color: var(--white) !important;
    box-shadow: 0 12px 35px rgba(201, 168, 108, 0.4);
}

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

.nav-insta svg {
    width: 20px;
    height: 20px;
    stroke: var(--white);
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 7px;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.mobile-menu-btn span {
    width: 28px;
    height: 1.5px;
    background: var(--charcoal);
    transition: var(--transition);
    transform-origin: center;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

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

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Nav Overlay */
.mobile-nav {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(245, 240, 232, 0.98);
    backdrop-filter: blur(30px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 35px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

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

.mobile-nav a {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    font-weight: 300;
    letter-spacing: 0.1em;
    color: var(--charcoal);
    position: relative;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s ease;
}

.mobile-nav.active a {
    transform: translateY(0);
    opacity: 1;
}

.mobile-nav a:nth-child(2) { transition-delay: 0.05s; }
.mobile-nav a:nth-child(3) { transition-delay: 0.1s; }
.mobile-nav a:nth-child(4) { transition-delay: 0.15s; }
.mobile-nav a:nth-child(5) { transition-delay: 0.2s; }
.mobile-nav a:nth-child(6) { transition-delay: 0.25s; }

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

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(
        160deg,
        var(--cream) 0%,
        var(--pink-blush) 30%,
        var(--pink-soft) 60%,
        var(--pink-medium) 100%
    );
}

/* Animated background orbs */
.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: orbFloat 20s ease-in-out infinite;
}

.hero-orb-1 {
    width: 600px;
    height: 600px;
    background: var(--pink-soft);
    top: -20%;
    right: -10%;
    animation-delay: 0s;
}

.hero-orb-2 {
    width: 400px;
    height: 400px;
    background: var(--rose);
    bottom: -10%;
    left: -5%;
    animation-delay: -7s;
    opacity: 0.25;
}

.hero-orb-3 {
    width: 300px;
    height: 300px;
    background: var(--sage);
    top: 30%;
    left: 20%;
    animation-delay: -14s;
    opacity: 0.2;
}

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

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 40px;
}

.hero-label {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--rose-gold);
    margin-bottom: 30px;
    animation: heroFadeUp 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(36px, 5.5vw, 72px);
    font-weight: 300;
    line-height: 1.15;
    color: var(--charcoal);
    margin-bottom: 30px;
}

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

/* --- Typewriter Effect --- */
.hero-typed-line {
    display: block;
    min-height: 1.2em;
    overflow: hidden;
    white-space: nowrap;
}

.hero-typed-line.typing::after {
    content: '|';
    animation: cursorBlink 0.6s step-end infinite;
    color: var(--rose-gold);
    font-weight: 100;
    margin-left: 2px;
}

.hero-typed-line.done::after {
    display: none;
}

@keyframes cursorBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

/* --- Logo Slam Animation --- */
.hero-inline-logo {
    display: block;
    width: clamp(250px, 40vw, 450px);
    height: auto;
    margin: 0.3em auto;
    object-fit: contain;
}

.hero-logo-animated {
    opacity: 0;
    transform: scale(0);
    transition: none;
}

.hero-logo-animated.slam {
    opacity: 1;
    transform: scale(1);
    animation: logoSlam 0.6s cubic-bezier(0.18, 0.89, 0.32, 1.28) forwards;
}

@keyframes logoSlam {
    0% { opacity: 0; transform: scale(0); }
    60% { opacity: 1; transform: scale(1.12); }
    80% { transform: scale(0.95); }
    100% { opacity: 1; transform: scale(1); }
}

/* --- Delayed Elements (subtitle, buttons) --- */
.hero-delayed {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.hero-delayed.show {
    opacity: 1;
    transform: translateY(0);
}

.hero-subtitle {
    font-size: clamp(16px, 1.8vw, 19px);
    font-weight: 400;
    letter-spacing: 0.2em;
    color: var(--text-muted);
    margin-bottom: 50px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

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

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    animation: heroFadeUp 1.2s ease 1s both;
}

.scroll-indicator span {
    font-size: 10px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--text-light);
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: var(--taupe);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--rose-gold);
    animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {
    0% { top: -100%; }
    50% { top: 100%; }
    100% { top: 100%; }
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 45px;
    border-radius: var(--radius-xl);
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--rose-gold) 0%, var(--rose-gold-light) 100%);
    color: var(--white);
    box-shadow: 0 10px 40px rgba(201, 168, 108, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(201, 168, 108, 0.4);
}

.btn-secondary {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    color: var(--charcoal);
}

.btn-secondary:hover {
    background: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-soft);
}

/* ===== SECTION HEADERS ===== */
section {
    padding: 140px 60px;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-label {
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--rose-gold);
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.section-label::before,
.section-label::after {
    content: '';
    width: 40px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--rose-gold));
}

.section-label::after {
    background: linear-gradient(90deg, var(--rose-gold), transparent);
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(36px, 4.5vw, 56px);
    font-weight: 300;
    color: var(--charcoal);
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 19px;
    color: var(--text-muted);
    max-width: 550px;
    margin: 0 auto;
    line-height: 1.9;
}

/* ===== MARQUEE / RUNNING TEXT ===== */
.marquee-section {
    padding: 30px 0;
    background: var(--charcoal);
    overflow: hidden;
    position: relative;
}

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

.marquee-content {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 0 30px;
    white-space: nowrap;
}

.marquee-content span {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 300;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
}

.marquee-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--rose-gold);
    flex-shrink: 0;
}

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

/* ===== WAX SEAL PROMOS ===== */
.wax-seal {
    position: absolute;
    z-index: 10;
    text-decoration: none;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.wax-seal:hover {
    transform: scale(1.1) !important;
}

.wax-seal-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(75, 15, 30, 0.35));
}

.wax-seal--1 {
    top: 33%;
    right: 25%;
    width: 10vw;
    transform: rotate(-4deg);
    animation: waxFloat1 4s ease-in-out infinite;
}

.wax-seal--2 {
    top: 56%;
    right: 13%;
    width: 10vw;
    transform: rotate(3deg);
    animation: waxFloat2 5s ease-in-out 1s infinite;
}

@keyframes waxFloat1 {
    0%, 100% { transform: rotate(-4deg) translateY(0); }
    50% { transform: rotate(-4deg) translateY(-0.5vw); }
}

@keyframes waxFloat2 {
    0%, 100% { transform: rotate(3deg) translateY(0); }
    50% { transform: rotate(3deg) translateY(-0.4vw); }
}

/* ===== SERVICES ===== */
.services {
    background: linear-gradient(180deg, #F5EBED 0%, #F0E0E4 100%);
}

/* Services Hero */
.services-hero {
    text-align: center;
    margin-bottom: 60px;
}

.services-hero-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 24px;
    background: var(--rose-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.services-hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 300;
    color: var(--charcoal);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.services-hero-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(16px, 2vw, 20px);
    color: var(--text-muted);
    font-weight: 300;
    margin-bottom: 20px;
}

/* Price Card */
.price-card {
    background: #FFFFFF;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: none;
    border-radius: var(--radius-lg);
    padding: 60px 45px 50px;
    max-width: 700px;
    margin: 0 auto 40px;
    position: relative;
    box-shadow: 0 8px 40px rgba(58, 58, 58, 0.12), 0 2px 8px rgba(58, 58, 58, 0.06);
}

/* Ornamental SVG border */
.price-card::before {
    content: '';
    position: absolute;
    inset: 8px;
    border: 1.5px solid rgba(201, 168, 108, 0.4);
    border-radius: 22px;
    pointer-events: none;
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100'%3E%3Crect x='0' y='0' width='100' height='100' rx='15' fill='white'/%3E%3C/svg%3E");
}
.price-card::after {
    content: '';
    position: absolute;
    inset: 14px;
    border: 1px solid rgba(201, 168, 108, 0.25);
    border-radius: 18px;
    pointer-events: none;
}

/* Ornamental flourish top & bottom */
.price-card-header::before {
    content: '\2766';
    display: block;
    text-align: center;
    font-size: 22px;
    color: var(--rose-gold);
    margin-bottom: 16px;
    letter-spacing: 0.3em;
    opacity: 0.7;
}
.price-list::after {
    content: '\2767';
    display: block;
    text-align: center;
    font-size: 18px;
    color: var(--rose-gold);
    margin-top: 16px;
    opacity: 0.5;
}

.price-card-header {
    text-align: center;
    margin-bottom: 30px;
}

.price-card-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: var(--rose-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.price-card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 300;
    color: var(--charcoal);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 16px;
    text-shadow: 0 1px 2px rgba(58, 58, 58, 0.1);
}

/* Price List */
.price-list {
    list-style: none;
    padding: 0;
    margin: 0;
    overflow: visible;
}

.price-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 8px;
    border-bottom: 1px solid rgba(201, 168, 108, 0.15);
    gap: 12px;
}

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

.price-item--highlight:last-child {
    border-bottom: 2px solid var(--rose-gold);
}

.price-item--highlight {
    background: rgba(253, 242, 244, 0.5);
    border: 2px solid var(--rose-gold);
    border-radius: var(--radius-lg);
    margin: 8px 0;
    padding: 14px 6px;
    overflow: visible;
    flex-wrap: nowrap;
}

/* Hide dots in highlight/action items */
.price-item--highlight .price-dots {
    display: none;
}

/* Price sticks right after text */
.price-item--highlight .price-name {
    color: var(--charcoal);
    flex: 1;
}

.price-item--highlight .price-amount {
    flex-shrink: 0;
    margin-left: 16px;
}

.price-item--highlight .price-num,
.price-item--highlight .price-euro {
    color: var(--rose-gold);
}

.price-seal-img {
    flex-shrink: 0;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(75, 15, 30, 0.25));
    margin: -10px 0;
    align-self: flex-start;
}

/* Both seals: same width, smaller to fit inside border */
img.price-seal-img[alt="Blind Date"],
img.price-seal-img[alt="Friendship+"] {
    width: 80px;
    height: auto;
}

/* Drip flows OVER the border line */
img.price-seal-img[alt="Friendship+"] {
    position: relative;
    z-index: 2;
}

/* Friendship+ item: same box height as Blind Date, drip overflows below border */
.price-item--highlight:has(img[alt="Friendship+"]) {
    max-height: 80px;
    align-items: flex-start;
    position: relative;
    border-color: transparent;
}

/* Redraw border ON TOP so drip goes underneath the border line */
.price-item--highlight:has(img[alt="Friendship+"])::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 2px solid var(--rose-gold);
    border-radius: var(--radius-lg);
    pointer-events: none;
    z-index: 1;
}

.price-name {
    font-size: 18px;
    font-weight: 500;
    color: var(--charcoal);
    flex: 0 0 auto;
    text-shadow: 0 0.5px 0 rgba(58, 58, 58, 0.15);
}

.price-dots {
    flex: 1;
    border-bottom: 2px dotted rgba(201, 168, 108, 0.5);
    min-width: 40px;
    margin: 0 12px;
    align-self: center;
}

.price-badge {
    background: linear-gradient(135deg, var(--rose-gold), var(--rose-gold-light));
    color: var(--white);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 50px;
    white-space: nowrap;
    flex-shrink: 0;
}

.price-amount {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #5A4A3A;
    white-space: nowrap;
    flex-shrink: 0;
}

.price-euro {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    color: #8A6D3B;
    font-weight: 600;
}

.price-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    color: #8A6D3B;
    font-weight: 700;
    text-shadow: 0 1px 1px rgba(138, 109, 59, 0.15);
}

/* Services Footer */
.services-footer {
    text-align: center;
    margin-top: 60px;
}

.services-footer p {
    font-size: 13px;
    color: var(--text-muted);
    letter-spacing: 0.05em;
    margin-bottom: 30px;
}

/* ===== GALLERY — Masonry-style ===== */
.gallery {
    background: var(--pink-blush);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 300px);
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-item:hover img {
    transform: scale(1.08);
}

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(58, 58, 58, 0.6) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    display: flex;
    align-items: flex-end;
    padding: 30px;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-caption {
    color: var(--white);
    font-size: 17px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.gallery-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-placeholder-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.gallery-note {
    text-align: center;
    margin-top: 40px;
    font-size: 17px;
    font-style: italic;
    color: var(--text-light);
    letter-spacing: 0.05em;
}

/* Video Play Button */
.gallery-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    opacity: 0.85;
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
}
.gallery-item--video:hover .gallery-play-btn {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
}

/* Video Lightbox */
.video-lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(0, 0, 0, 0.9);
    align-items: center;
    justify-content: center;
    padding: 40px;
}
.video-lightbox.active {
    display: flex;
}
.video-lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: var(--white);
    background: none;
    border: none;
    cursor: pointer;
    z-index: 10001;
    line-height: 1;
    transition: opacity 0.3s ease;
}
.video-lightbox-close:hover {
    opacity: 0.7;
}
.video-lightbox-content {
    max-width: 900px;
    width: 100%;
    border-radius: var(--radius-md);
    overflow: hidden;
}
.video-lightbox-content video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-md);
}

/* --- Photo Lightbox --- */
.photo-lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(0, 0, 0, 0.92);
    align-items: center;
    justify-content: center;
    padding: 40px;
}
.photo-lightbox.active { display: flex; }
.photo-lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: var(--white);
    background: none;
    border: none;
    cursor: pointer;
    z-index: 10001;
    transition: opacity 0.3s;
}
.photo-lightbox-close:hover { opacity: 0.7; }
.photo-lightbox-prev,
.photo-lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--white);
    z-index: 10001;
    transition: background 0.3s, transform 0.3s;
    backdrop-filter: blur(8px);
}
.photo-lightbox-prev { left: 20px; }
.photo-lightbox-next { right: 20px; }
.photo-lightbox-prev:hover,
.photo-lightbox-next:hover {
    background: rgba(255,255,255,0.25);
    transform: translateY(-50%) scale(1.08);
}
.photo-lightbox-prev.hidden,
.photo-lightbox-next.hidden { display: none; }
.photo-lightbox-content {
    max-width: 900px;
    max-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.photo-lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: var(--radius-md);
    user-select: none;
    -webkit-user-drag: none;
    transition: opacity 0.3s ease;
}
.photo-lightbox-content img.loading { opacity: 0.3; }
.photo-lightbox-counter {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.6);
    font-family: var(--font-body);
    font-size: 14px;
    letter-spacing: 0.15em;
    z-index: 10001;
}
/* Clickable cursor for photo gallery items */
.gallery-item--photos { cursor: pointer; }

/* ===== ABOUT ===== */
.about {
    background: var(--pink-blush);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    position: relative;
}

.about-image-wrapper img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.about-image-wrapper:hover img {
    transform: scale(1.03);
}

.about-badge {
    position: absolute;
    bottom: -25px;
    right: -25px;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--rose-gold) 0%, var(--rose-gold-light) 100%);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: 0 15px 40px rgba(201, 168, 108, 0.4);
    animation: badgeRotate 15s linear infinite;
}

@keyframes badgeRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.about-badge-inner {
    animation: badgeRotateReverse 15s linear infinite;
    text-align: center;
}

@keyframes badgeRotateReverse {
    from { transform: rotate(0deg); }
    to { transform: rotate(-360deg); }
}

.about-badge-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    font-weight: 600;
    line-height: 1;
}

.about-badge-text {
    font-size: 9px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 500;
}

.about-text h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(30px, 3.5vw, 42px);
    font-weight: 300;
    line-height: 1.3;
    margin-bottom: 30px;
}

.about-text h3 em {
    font-style: italic;
    color: var(--rose-gold);
}

.about-text p {
    font-size: 19px;
    line-height: 2;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-top: 40px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 18px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(201, 168, 108, 0.15);
    transition: var(--transition);
}

.about-feature:hover {
    background: var(--white);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    transform: translateX(5px);
}

.about-feature-icon {
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, var(--rose-gold), var(--rose-gold-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 14px;
    flex-shrink: 0;
}

.about-feature span {
    font-size: 17px;
    font-weight: 400;
    letter-spacing: 0.02em;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    background: var(--charcoal);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 50%, rgba(212, 165, 165, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.testimonials .section-label {
    color: var(--rose-gold-light);
}

.testimonials .section-label::before,
.testimonials .section-label::after {
    background: linear-gradient(90deg, transparent, var(--rose-gold-light));
}

.testimonials .section-label::after {
    background: linear-gradient(90deg, var(--rose-gold-light), transparent);
}

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

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: 45px 35px;
    transition: var(--transition);
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
    border-color: rgba(201, 168, 108, 0.3);
}

.testimonial-stars {
    color: var(--rose-gold);
    font-size: 16px;
    letter-spacing: 3px;
    margin-bottom: 25px;
}

.testimonial-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 300;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.85);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--rose-gold), var(--rose));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    color: var(--white);
    font-weight: 500;
}

.testimonial-name {
    font-weight: 500;
    font-size: 15px;
    margin-bottom: 3px;
}

.testimonial-role {
    font-size: 12px;
    color: var(--rose-gold-light);
    letter-spacing: 0.05em;
}

/* ===== CONTACT ===== */
.contact {
    background: var(--pink-blush);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(32px, 3.5vw, 42px);
    font-weight: 300;
    margin-bottom: 20px;
    line-height: 1.3;
}

.contact-info > p {
    font-size: 19px;
    line-height: 1.9;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

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

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--rose-gold), var(--rose-gold-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--white);
    fill: none;
    stroke-width: 1.5;
}

.contact-item-label {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.contact-item-value {
    font-size: 19px;
    color: var(--charcoal);
}

.contact-item-value a {
    color: var(--charcoal);
}

.contact-item-value a:hover {
    color: var(--rose-gold);
}

/* Map */
.contact-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    height: 100%;
    min-height: 400px;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(30%) brightness(1.05);
    transition: filter 0.5s ease;
}

.contact-map:hover iframe {
    filter: grayscale(0%) brightness(1);
}

/* ===== INSTAGRAM CTA ===== */
.instagram-cta {
    background: var(--pink-blush);
    text-align: center;
    padding: 100px 60px;
}

.instagram-cta h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 300;
    margin-bottom: 20px;
}

.instagram-cta p {
    font-size: 19px;
    color: var(--text-muted);
    margin-bottom: 35px;
}

.instagram-handle {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    font-size: 26px;
    font-weight: 500;
    color: var(--white);
    background: linear-gradient(135deg, var(--rose-gold) 0%, var(--rose-gold-light) 100%);
    border: 2px solid var(--rose-gold);
    border-radius: var(--radius-xl);
    padding: 18px 40px;
    transition: var(--transition);
    letter-spacing: 0.08em;
    box-shadow: 0 8px 30px rgba(201, 168, 108, 0.35);
}

.instagram-handle:hover {
    transform: translateY(-4px);
    color: var(--white);
    box-shadow: 0 14px 40px rgba(201, 168, 108, 0.5);
}

.instagram-handle svg {
    width: 29px;
    height: 29px;
}

/* ===== FOOTER ===== */
footer {
    background: var(--charcoal);
    color: var(--white);
    padding: 80px 60px 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto 60px;
}

.footer-brand-logo {
    height: 30px;
    width: auto;
    margin-bottom: 20px;
    opacity: 0.9;
}

.footer-brand p {
    font-size: 18px;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 25px;
    max-width: 280px;
}

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

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

.footer-social a svg {
    width: 18px;
    height: 18px;
    stroke: rgba(255, 255, 255, 0.6);
    fill: none;
    stroke-width: 1.5;
}

.footer-social a:hover {
    background: var(--rose-gold);
    border-color: var(--rose-gold);
    transform: translateY(-3px);
}

.footer-social a:hover svg {
    stroke: var(--white);
}

.footer-column h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 25px;
    letter-spacing: 0.05em;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 14px;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 18px;
    letter-spacing: 0.02em;
}

.footer-column a:hover {
    color: var(--rose-gold-light);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 0.05em;
}

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

.footer-bottom a:hover {
    color: var(--rose-gold-light);
}

/* ===== ANIMATIONS ===== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.reveal-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-right {
    opacity: 0;
    transform: translateX(60px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-left.visible,
.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Stagger children */
.stagger-children .reveal:nth-child(1) { transition-delay: 0s; }
.stagger-children .reveal:nth-child(2) { transition-delay: 0.1s; }
.stagger-children .reveal:nth-child(3) { transition-delay: 0.2s; }
.stagger-children .reveal:nth-child(4) { transition-delay: 0.3s; }
.stagger-children .reveal:nth-child(5) { transition-delay: 0.4s; }
.stagger-children .reveal:nth-child(6) { transition-delay: 0.5s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 250px);
    }
    .gallery-item.large {
        grid-column: span 2;
        grid-row: span 1;
    }
    .testimonials-grid {
        grid-template-columns: 1fr 1fr;
    }
    .testimonials-grid .testimonial-card:last-child {
        grid-column: span 2;
    }
}

@media (max-width: 992px) {
    section { padding: 100px 30px; }
    .container { padding: 0 30px; }
    .navbar { padding: 18px 30px; }
    .navbar.scrolled { padding: 12px 30px; }
    .nav-links { display: none; }
    .mobile-menu-btn { display: flex; }
    .about-content { grid-template-columns: 1fr; gap: 60px; }
    .contact-content { grid-template-columns: 1fr; gap: 50px; }
    .footer-content { grid-template-columns: 1fr 1fr; }
    .about-badge { bottom: -20px; right: -10px; width: 100px; height: 100px; }
    .about-badge-number { font-size: 28px; }
}

@media (max-width: 768px) {
    html, body { overflow-x: hidden; max-width: 100vw; }
    .photo-lightbox { padding: 10px; }
    .photo-lightbox-prev,
    .photo-lightbox-next { width: 40px; height: 40px; }
    .photo-lightbox-prev { left: 8px; }
    .photo-lightbox-next { right: 8px; }
    .photo-lightbox-prev svg,
    .photo-lightbox-next svg { width: 20px; height: 20px; }
    .photo-lightbox-content img { border-radius: 8px; }
    .photo-lightbox-counter { bottom: 16px; font-size: 12px; }
    section { padding: 80px 20px; }
    .container { padding: 0 20px; }
    .navbar { padding: 15px 20px; }
    .navbar.scrolled { padding: 12px 20px; }
    .hero-content { padding: 20px; }
    .hero-title { font-size: clamp(28px, 8vw, 42px); }
    .hero-buttons { flex-direction: column; align-items: center; }
    .btn { padding: 16px 35px; width: 100%; max-width: 280px; }

    /* Price cards — contain within screen */
    .price-card { padding: 40px 16px 30px; max-width: 100%; }
    .price-item {
        padding: 14px 6px;
        gap: 8px;
        flex-wrap: wrap;
    }
    .price-name {
        font-size: 15px;
        flex: 1 1 auto;
        min-width: 0;
        word-break: break-word;
    }
    .price-dots { min-width: 20px; margin: 0 6px; }
    .price-num { font-size: 22px; }
    .price-euro { font-size: 18px; }
    .price-amount { font-size: 14px; }
    .price-badge { font-size: 8px; padding: 4px 10px; }

    /* Seals smaller on mobile */
    img.price-seal-img[alt="Blind Date"],
    img.price-seal-img[alt="Friendship+"] {
        width: 55px;
    }
    .price-item--highlight { padding: 10px 4px; }
    .price-item--highlight:has(img[alt="Friendship+"]) { max-height: 60px; }

    /* Hero seals — smaller and contained */
    .hero .price-seal-img,
    .hero img[alt="Blind Date"],
    .hero img[alt="Friendship+"] {
        max-width: 70px;
    }

    /* Gallery */
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }
    .gallery-item { height: 200px; }
    .gallery-item.large { grid-column: span 2; grid-row: span 1; height: 250px; }
    .gallery-item img { width: 100%; height: 100%; object-fit: cover; }

    /* All images contained */
    img { max-width: 100%; height: auto; }

    /* Testimonials */
    .testimonials-grid { grid-template-columns: 1fr; }
    .testimonials-grid .testimonial-card:last-child { grid-column: span 1; }
    .about-features { grid-template-columns: 1fr; }
    .contact-map { min-height: 300px; }
    .footer-content { grid-template-columns: 1fr; gap: 40px; }
    .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
    .instagram-cta { padding: 70px 20px; }
    .instagram-handle { font-size: 18px; padding: 14px 24px; gap: 10px; }
    .instagram-handle svg { width: 22px; height: 22px; }
    .marquee-content span { font-size: 17px; }

    /* About section image */
    .about-image-wrapper img { max-width: 100%; }

    /* Contact form */
    .contact-form { max-width: 100%; }
}

@media (max-width: 420px) {
    .hero-title { font-size: clamp(24px, 7vw, 36px); }
    .hero-subtitle { letter-spacing: 0.1em; }
    .price-card { padding: 24px 12px 20px; }
    .price-name { font-size: 13px; }
    .price-num { font-size: 20px; }
    .price-euro { font-size: 16px; }
    .price-dots { min-width: 10px; margin: 0 4px; }
    .testimonial-card { padding: 30px 25px; }
    .testimonial-quote { font-size: 18px; }
    img.price-seal-img[alt="Blind Date"],
    img.price-seal-img[alt="Friendship+"] {
        width: 45px;
    }
    .price-item--highlight:has(img[alt="Friendship+"]) { max-height: 50px; }
    .gallery-item { height: 160px; }
    .gallery-item.large { height: 200px; }
}

/* iOS safe area */
@supports (padding: env(safe-area-inset-top)) {
    .navbar { padding-top: max(25px, env(safe-area-inset-top)); }
    .navbar.scrolled { padding-top: max(15px, env(safe-area-inset-top)); }
    footer { padding-bottom: max(30px, env(safe-area-inset-bottom)); }
}

/* Touch devices — remove hover */
@media (hover: none) and (pointer: coarse) {
    .gallery-item:hover img { transform: none; }
    .gallery-overlay { opacity: 0.6; }
    .about-feature:hover { transform: none; }
    .testimonial-card:hover { transform: none; }
    .btn-primary:hover, .btn-secondary:hover { transform: none; }
    .cursor-dot, .cursor-ring { display: none !important; }
}

/* Print */
@media print {
    .navbar, .preloader, .mobile-nav, .scroll-indicator, .cursor-dot, .cursor-ring { display: none; }
    section { padding: 40px 20px; }
    .hero { min-height: auto; padding: 60px 20px; }
}
