/* GLYNT Color Palette */
:root {
    --hydro-aqua: #A9DDE6;
    --deep-petrol: #3E6470;
    --soft-rose: #E9A8B8;
    --grace-navy: #2B3044;
    --bora-grey: #E8ECF1;
    --ultra-light: #F9FCFF;
    --warm-orange: #F49A4A;
    --white: #FFFFFF;
    --black: #000000;
}

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

html, body {
    overflow-x: hidden;
}

body {
    font-family: 'Helvetica Neue', -apple-system, sans-serif;
    background-color: var(--ultra-light);
    color: var(--grace-navy);
    line-height: 1.4;
    position: relative;
}

/* Intro Animation */
.intro-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg,
        #FFFFFF 0%,
        #F9FCFF 50%,
        #F0F8FA 100%);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeOut 0.8s ease 3.5s forwards;
    pointer-events: none;
}

.intro-content {
    text-align: center;
    animation: introScale 3s cubic-bezier(0.23, 1, 0.32, 1);
}

.intro-logo {
    height: 160px;
    width: auto;
    margin-bottom: 3rem;
    filter: brightness(0) saturate(100%) invert(13%) sepia(22%) saturate(1180%) hue-rotate(192deg) brightness(95%) contrast(93%);
    animation: logoFadeIn 1.2s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards,
               logoPulse 2s ease-in-out 1.2s infinite;
    opacity: 0;
    transform-origin: center;
}

.intro-quote {
    position: relative;
    margin: 2rem 0;
    animation: quoteFadeIn 1s ease 0.5s forwards;
    opacity: 0;
}

.intro-quote::before {
    content: '"';
    position: absolute;
    top: -1rem;
    left: -2rem;
    font-size: 5rem;
    line-height: 1;
    font-family: Georgia, serif;
    color: var(--hydro-aqua);
    opacity: 0.3;
}

.intro-quote::after {
    content: '"';
    position: absolute;
    bottom: -2rem;
    right: -2rem;
    font-size: 5rem;
    line-height: 1;
    font-family: Georgia, serif;
    color: var(--hydro-aqua);
    opacity: 0.3;
}

.quote-text {
    font-size: 1.8rem;
    font-weight: 300;
    letter-spacing: 0.02em;
    line-height: 1.5;
    color: var(--grace-navy);
    font-style: italic;
    max-width: 600px;
    margin: 0 auto;
    padding: 0 2rem;
}

.intro-subtitle {
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    opacity: 0;
    animation: subtitleFadeIn 1s ease 1.5s forwards;
    color: var(--hydro-aqua);
}

@keyframes fadeOut {
    to {
        opacity: 0;
        visibility: hidden;
    }
}

@keyframes logoFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.8) rotate(-5deg);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1) rotate(0deg);
    }
}

@keyframes logoPulse {
    0%, 100% {
        transform: scale(1);
        filter: brightness(0) saturate(100%) invert(13%) sepia(22%) saturate(1180%) hue-rotate(192deg) brightness(95%) contrast(93%);
    }
    50% {
        transform: scale(1.05);
        filter: brightness(0) saturate(100%) invert(43%) sepia(100%) saturate(638%) hue-rotate(139deg) brightness(97%) contrast(88%);
    }
}

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

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

@keyframes introScale {
    0%, 80% {
        transform: scale(1);
    }
    90% {
        transform: scale(0.95);
    }
    100% {
        transform: scale(1);
    }
}

/* Noise Texture Overlay */
.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    opacity: 0.03;
    background:
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 2px,
            rgba(0,0,0,.01) 2px,
            rgba(0,0,0,.01) 4px
        );
    mix-blend-mode: multiply;
}

/* Typography System */
h1, h2, h3, h4 {
    font-weight: 300;
    letter-spacing: -0.02em;
}

.italic {
    font-style: italic;
}

/* Editorial Header */
.editorial-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    background: linear-gradient(180deg,
        rgba(255, 255, 255, 0.98) 0%,
        rgba(255, 255, 255, 0.94) 50%,
        rgba(249, 252, 255, 0.90) 100%);
    backdrop-filter: blur(40px) saturate(180%);
    border-bottom: 1px solid rgba(169, 221, 230, 0.15);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 1px 40px rgba(169, 221, 230, 0.08);
}

/* Main Navigation */
.nav-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 3rem;
    max-width: 1600px;
    margin: 0 auto;
}

/* Header Contact */
.header-contact {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--grace-navy);
    text-decoration: none;
    font-size: 0.85rem;
    opacity: 0.8;
    transition: all 0.3s;
}

.contact-item:hover {
    opacity: 1;
    color: var(--hydro-aqua);
}

.contact-item.whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    margin-left: 1rem;
    font-weight: 500;
    opacity: 1;
    box-shadow: 0 2px 8px rgba(37, 211, 102, 0.15);
    animation: whatsappPulse 3s ease-in-out infinite;
}

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

.contact-item.whatsapp:hover {
    transform: translateY(-2px) scale(1.08);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    animation: none;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    color: var(--grace-navy);
    opacity: 0.6;
    transition: all 0.3s;
}

.social-icons a:hover {
    opacity: 1;
    color: var(--hydro-aqua);
    transform: translateY(-3px);
}

.logo-mark {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-image {
    height: 45px;
    width: auto;
    filter: brightness(0) saturate(100%) invert(13%) sepia(22%) saturate(1180%) hue-rotate(192deg) brightness(95%) contrast(93%);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.logo-image:hover {
    transform: scale(1.08) rotate(-2deg);
}

.nav-links {
    display: flex;
    gap: 3rem;
}

.nav-link {
    color: var(--grace-navy);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    position: relative;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 100%;
    height: 1px;
    background: var(--grace-navy);
    opacity: 0.3;
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.nav-link:hover {
    transform: translateY(-3px) scale(1.05);
    letter-spacing: 0.1em;
}

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

/* Dropdown Menu */
.nav-dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 180px;
    padding: 1rem 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s;
    margin-top: 1rem;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    padding: 0.7rem 1.5rem;
    color: var(--grace-navy);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.dropdown-item:hover {
    background: var(--bora-grey);
    color: var(--hydro-aqua);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10000;
    position: relative;
}

.mobile-menu-btn span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--grace-navy);
    transition: all 0.3s;
}

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

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

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

/* Mobile Menu Backdrop */
.mobile-menu-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(30, 35, 50, 0.55);
    backdrop-filter: blur(2px);
    z-index: 9998;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.mobile-menu-backdrop.active {
    display: block;
    opacity: 1;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: min(85vw, 360px);
    height: 100dvh;
    height: 100vh;
    background: var(--white);
    box-shadow: -8px 0 40px rgba(0,0,0,0.14);
    transform: translateX(100%);
    transition: transform 0.38s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 9999;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.mobile-menu.active {
    transform: translateX(0);
}

/* Menu Header with logo + close */
.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--bora-grey);
    flex-shrink: 0;
}

.mobile-menu-logo {
    height: 36px;
    width: auto;
}

.mobile-menu-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: var(--grace-navy);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: background 0.2s;
    min-width: 44px;
    min-height: 44px;
}

.mobile-menu-close:hover {
    background: var(--bora-grey);
}

.mobile-menu-content {
    padding: 1.5rem 1.5rem 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* Nav links */
.mobile-nav {
    margin-bottom: 1.5rem;
}

.mobile-link {
    display: flex;
    align-items: center;
    padding: 0.9rem 0;
    color: var(--grace-navy);
    text-decoration: none;
    font-size: 1.15rem;
    font-weight: 400;
    letter-spacing: -0.01em;
    border-bottom: 1px solid var(--bora-grey);
    transition: color 0.25s, padding-left 0.25s;
}

.mobile-link:last-child {
    border-bottom: none;
}

.mobile-link:hover {
    color: var(--hydro-aqua);
    padding-left: 0.5rem;
}

/* CTA Stack */
.mobile-cta-stack {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-bottom: 1.25rem;
}

.mobile-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.9rem 1.25rem;
    border-radius: 12px;
    font-weight: 500;
    font-size: 0.95rem;
    text-decoration: none;
    min-height: 48px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.mobile-cta-btn:active {
    transform: scale(0.97);
}

.mobile-cta-primary {
    background: var(--hydro-aqua);
    color: white;
    box-shadow: 0 4px 16px rgba(169,221,230,0.4);
}

.mobile-cta-primary:hover {
    box-shadow: 0 6px 20px rgba(169,221,230,0.55);
}

.mobile-cta-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    box-shadow: 0 4px 16px rgba(37,211,102,0.25);
}

.mobile-cta-gift {
    background: var(--soft-rose);
    color: white;
    box-shadow: 0 4px 16px rgba(233,168,184,0.3);
}

/* Social row */
.mobile-social-row {
    display: flex;
    gap: 0.6rem;
    margin-bottom: 1.5rem;
}

.mobile-social-pill {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    padding: 0.65rem 0.5rem;
    background: var(--ultra-light);
    color: var(--deep-petrol);
    text-decoration: none;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: background 0.25s, color 0.25s;
    min-height: 44px;
}

.mobile-social-pill:hover {
    background: var(--hydro-aqua);
    color: white;
}

/* Keep old classes for any lingering references */
.mobile-menu-actions,
.mobile-buttons,
.mobile-social-links { display: none; }

/* Magnetic Button */
.book-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 2rem;
    background: linear-gradient(135deg, var(--hydro-aqua) 0%, #9AD5E3 100%);
    color: var(--white);
    border: none;
    border-radius: 30px;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(169, 221, 230, 0.3);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.book-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(169, 221, 230, 0.4);
}

.magnetic-btn {
    padding: 0.8rem 2rem;
    background: linear-gradient(135deg, var(--hydro-aqua) 0%, #9AD5E3 100%);
    color: var(--white);
    border: none;
    border-radius: 30px;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 4px 15px rgba(169, 221, 230, 0.3);
}

.magnetic-btn:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 30px rgba(169, 221, 230, 0.4);
    background: linear-gradient(135deg, #7FC8D6 0%, var(--hydro-aqua) 100%);
}

/* Hero Editorial */
.hero-editorial {
    min-height: 100vh;
    padding: 10rem 3rem 3rem;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(135deg, rgba(169,221,230,0.03) 0%, transparent 50%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
}

.issue-number {
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    opacity: 0.4;
    margin-bottom: 2rem;
    font-weight: 300;
}

.hero-headline {
    font-size: clamp(4rem, 8vw, 7rem);
    line-height: 0.9;
    font-weight: 200;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.hero-headline span {
    display: block;
    overflow: hidden;
}

.line-2 {
    color: var(--hydro-aqua);
    font-style: italic;
    margin-left: 2rem;
}

.line-3 {
    margin-left: 1rem;
}

.line-4 {
    color: var(--deep-petrol);
    margin-left: 3rem;
}

.hero-meta {
    margin-top: 3rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.meta-divider {
    opacity: 0.3;
}

/* Image Frame */
.image-frame {
    position: relative;
    overflow: hidden;
    aspect-ratio: 2/3;
    border: 12px solid rgba(255,255,255,0.9);
    border-radius: 4px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
    background: white;
}

.image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    filter: brightness(1.25) contrast(1.1) saturate(0.95);
    transition: all 1.2s cubic-bezier(0.23, 1, 0.32, 1);
    transform: scale(1.2);
}

.image-frame {
    cursor: none;
}

.image-frame:hover img {
    transform: scale(1.25);
    filter: brightness(1.35) contrast(1.2) saturate(1.05);
}

.image-frame:hover {
    border-color: rgba(255,255,255,1);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at top, rgba(255,255,255,0.4) 0%, transparent 50%),
        radial-gradient(ellipse at bottom, rgba(249,252,255,0.3) 0%, transparent 50%),
        linear-gradient(180deg,
            rgba(255,255,255,0.2) 0%,
            transparent 20%,
            transparent 80%,
            rgba(169,221,230,0.15) 100%);
    z-index: 1;
    pointer-events: none;
    mix-blend-mode: screen;
}

.image-caption {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    color: var(--white);
    z-index: 2;
    display: flex;
    gap: 1rem;
    align-items: baseline;
}

.caption-number {
    font-size: 0.8rem;
    opacity: 0.7;
}

.caption-text {
    font-size: 0.9rem;
    letter-spacing: 0.05em;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.scroll-text {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    opacity: 0.5;
}

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

.scroll-line::after {
    content: '';
    position: absolute;
    top: -100%;
    width: 100%;
    height: 100%;
    background: var(--hydro-aqua);
    animation: scrollDown 2s infinite;
}

@keyframes scrollDown {
    to {
        top: 100%;
    }
}

/* Story Section */
.story-section {
    padding: 10rem 3rem 12rem;
    background: linear-gradient(180deg,
        var(--ultra-light) 0%,
        var(--white) 20%,
        rgba(169,221,230,0.02) 100%);
    position: relative;
    min-height: 100vh;
    overflow: hidden;
}

.story-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(180deg,
        transparent 0%,
        var(--bora-grey) 100%);
    pointer-events: none;
    z-index: 1;
}

.story-header {
    max-width: 1400px;
    margin: 0 auto 6rem;
    text-align: center;
}

.section-label {
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--hydro-aqua);
    display: block;
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(4rem, 7vw, 6rem);
    line-height: 0.9;
    font-weight: 200;
    letter-spacing: -0.02em;
}

.title-line {
    display: block;
    overflow: hidden;
    padding: 0.1em 0;
}

.title-line span {
    display: inline-block;
    animation: slideInUp 1s cubic-bezier(0.23, 1, 0.32, 1) forwards;
    transform: translateY(100%);
    opacity: 0;
}

@keyframes slideInUp {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.story-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 6rem;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
}

.story-intro {
    font-size: 1.5rem;
    line-height: 1.4;
    font-weight: 300;
    margin-bottom: 3rem;
    color: var(--deep-petrol);
}

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

.story-columns p {
    font-size: 0.95rem;
    line-height: 1.8;
    opacity: 0.8;
}

/* Story Visual Section */
.story-visual {
    position: relative;
}

.visual-container {
    position: relative;
    height: 600px;
    perspective: 1000px;
    overflow: hidden;
}

.background-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    opacity: 0.03;
    z-index: 0;
    pointer-events: none;
    animation: subtlePulse 20s ease-in-out infinite;
}

@keyframes subtlePulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.025;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.05);
        opacity: 0.035;
    }
}

.background-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: grayscale(100%) brightness(1.2) contrast(0.8);
}

/* Tools Stack Container - Elegant Overlapping Design */
.tools-stack-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: 2;
}

.tools-stack {
    position: relative;
    width: 200px;
    height: 200px;
    transform-style: preserve-3d;
    perspective: 1000px;
    cursor: pointer;
}

.stacked-tool {
    position: absolute;
    width: 100%;
    height: 100%;
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    will-change: transform;
}

.stacked-tool img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.15));
    transition: filter 0.4s ease;
}

.tool-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: 120%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle at center,
        rgba(169,221,230,0) 0%,
        rgba(169,221,230,0.1) 40%,
        transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

/* Stacked Tools Positioning - Default State */
.tool-back {
    transform: translateY(-15px) translateZ(-40px) rotateX(8deg) scale(0.85);
    opacity: 0.7;
    z-index: 1;
}

.tool-mid {
    transform: translateY(-8px) translateZ(-20px) rotateX(5deg) scale(0.92);
    opacity: 0.85;
    z-index: 2;
}

.tool-front {
    transform: translateZ(0) rotateX(0deg) scale(1);
    opacity: 1;
    z-index: 3;
}


/* Stack Hint */
.stack-hint {
    margin-top: 20px;
    font-size: 0.8rem;
    color: var(--deep-petrol);
    opacity: 0.5;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Dragging state */
.stacked-tool.dragging {
    cursor: grabbing !important;
}

.stacked-tool.dragging img {
    filter: drop-shadow(0 40px 80px rgba(0,0,0,0.25))
            drop-shadow(0 15px 30px rgba(0,0,0,0.15));
}

.stacked-tool {
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
}


/* Hover States - Desktop */
.tools-stack:hover .tool-back {
    transform: translateY(-30px) translateZ(20px) rotateX(0deg) translateX(-80px) scale(1);
    opacity: 1;
}

.tools-stack:hover .tool-mid {
    transform: translateY(-20px) translateZ(20px) rotateX(0deg) translateX(0) scale(1);
    opacity: 1;
}

.tools-stack:hover .tool-front {
    transform: translateY(-10px) translateZ(20px) rotateX(0deg) translateX(80px) scale(1);
    opacity: 1;
}

.tools-stack:hover .tool-glow {
    opacity: 1;
}

.tools-stack:hover .stacked-tool img {
    filter: drop-shadow(0 30px 60px rgba(0,0,0,0.2))
            drop-shadow(0 10px 20px rgba(0,0,0,0.1));
}

/* Active/Touch State */
.tools-stack.active .tool-back,
.tools-stack:active .tool-back {
    transform: translateY(-35px) translateZ(30px) rotateY(-15deg) translateX(-100px) scale(1.05);
}

.tools-stack.active .tool-mid,
.tools-stack:active .tool-mid {
    transform: translateY(-25px) translateZ(30px) rotateY(0deg) scale(1.05);
}

.tools-stack.active .tool-front,
.tools-stack:active .tool-front {
    transform: translateY(-15px) translateZ(30px) rotateY(15deg) translateX(100px) scale(1.05);
}

/* Hide hint on hover */
.tools-stack:hover ~ .stack-hint,
.tools-stack.active ~ .stack-hint {
    opacity: 0;
}

/* 3D floating animations with DYNAMIC depth changes */
@keyframes float3DFront {
    0%, 100% {
        transform: translateY(0) translateZ(60px) rotateY(0deg) rotateX(0deg) scale(1);
    }
    12% {
        transform: translateY(-30px) translateZ(120px) rotateY(8deg) rotateX(-5deg) scale(1.25);
    }
    25% {
        transform: translateY(-15px) translateZ(80px) rotateY(-6deg) rotateX(3deg) scale(1.1);
    }
    38% {
        transform: translateY(-40px) translateZ(150px) rotateY(4deg) rotateX(-2deg) scale(1.35);
    }
    50% {
        transform: translateY(-10px) translateZ(40px) rotateY(-7deg) rotateX(4deg) scale(0.9);
    }
    65% {
        transform: translateY(-35px) translateZ(100px) rotateY(5deg) rotateX(-3deg) scale(1.2);
    }
    78% {
        transform: translateY(-20px) translateZ(70px) rotateY(-3deg) rotateX(2deg) scale(1.05);
    }
    90% {
        transform: translateY(-8px) translateZ(65px) rotateY(2deg) rotateX(-1deg) scale(1.02);
    }
}

@keyframes float3DMid {
    0%, 100% {
        transform: translateY(0) translateZ(0px) rotateY(0deg) rotateX(0deg) scale(1);
    }
    18% {
        transform: translateY(-25px) translateZ(50px) rotateY(-6deg) rotateX(3deg) scale(1.18);
    }
    35% {
        transform: translateY(-12px) translateZ(-40px) rotateY(5deg) rotateX(-4deg) scale(0.85);
    }
    52% {
        transform: translateY(-35px) translateZ(70px) rotateY(-3deg) rotateX(2deg) scale(1.25);
    }
    70% {
        transform: translateY(-15px) translateZ(20px) rotateY(4deg) rotateX(-2deg) scale(1.08);
    }
    85% {
        transform: translateY(-20px) translateZ(-10px) rotateY(-2deg) rotateX(1deg) scale(0.95);
    }
}

@keyframes float3DBack {
    0%, 100% {
        transform: translateY(0) translateZ(-40px) rotateY(0deg) rotateX(0deg) scale(1);
        opacity: 0.9;
    }
    20% {
        transform: translateY(-20px) translateZ(40px) rotateY(5deg) rotateX(-3deg) scale(1.3);
        opacity: 1;
    }
    40% {
        transform: translateY(-8px) translateZ(-70px) rotateY(-4deg) rotateX(2deg) scale(0.75);
        opacity: 0.7;
    }
    60% {
        transform: translateY(-30px) translateZ(20px) rotateY(3deg) rotateX(-1deg) scale(1.2);
        opacity: 0.95;
    }
    80% {
        transform: translateY(-12px) translateZ(-20px) rotateY(-2deg) rotateX(1deg) scale(0.9);
        opacity: 0.85;
    }
}

@keyframes float3DFar {
    0%, 100% {
        transform: translateY(0) translateZ(-80px) rotateY(0deg) rotateX(0deg) scale(1);
        opacity: 0.8;
    }
    30% {
        transform: translateY(-15px) translateZ(-30px) rotateY(-4deg) rotateX(2deg) scale(1.25);
        opacity: 0.95;
    }
    60% {
        transform: translateY(-8px) translateZ(-100px) rotateY(3deg) rotateX(-1deg) scale(0.7);
        opacity: 0.6;
    }
    85% {
        transform: translateY(-20px) translateZ(-50px) rotateY(-1deg) rotateX(1deg) scale(1.1);
        opacity: 0.85;
    }
}

/* Hover effects - Apple style */
.floating-tool:hover {
    transform: translateY(-20px) scale(1.08);
    z-index: 10;
}

.floating-tool:hover img {
    filter: drop-shadow(0 25px 50px rgba(0,0,0,0.2))
            drop-shadow(0 10px 20px rgba(0,0,0,0.15));
}

.floating-tool:hover .tool-shadow {
    transform: translateX(-50%) scaleX(0.9) scaleY(0.2);
    opacity: 0.3;
    filter: blur(20px);
}

/* Tablet screens */
@media (min-width: 768px) {
    .tools-stack {
        width: 250px;
        height: 250px;
    }

    .tools-stack:hover .tool-back {
        transform: translateY(-30px) translateZ(20px) rotateX(0deg) translateX(-100px) scale(1);
    }

    .tools-stack:hover .tool-front {
        transform: translateY(-10px) translateZ(20px) rotateX(0deg) translateX(100px) scale(1);
    }
}

/* Desktop screens */
@media (min-width: 1200px) {
    .tools-stack {
        width: 300px;
        height: 300px;
    }

    .tools-stack:hover .tool-back {
        transform: translateY(-35px) translateZ(30px) rotateX(0deg) translateX(-120px) scale(1.05);
    }

    .tools-stack:hover .tool-mid {
        transform: translateY(-25px) translateZ(30px) rotateX(0deg) translateX(0) scale(1.05);
    }

    .tools-stack:hover .tool-front {
        transform: translateY(-15px) translateZ(30px) rotateX(0deg) translateX(120px) scale(1.05);
    }

    .stack-hint {
        font-size: 0.9rem;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) translateX(0);
    }
    25% {
        transform: translateY(-15px) translateX(5px);
    }
    50% {
        transform: translateY(-25px) translateX(0);
    }
    75% {
        transform: translateY(-10px) translateX(-5px);
    }
}

@keyframes floatRotate {
    0%, 100% {
        transform: rotate(0deg) translateY(0);
    }
    50% {
        transform: rotate(10deg) translateY(-30px);
    }
}

@keyframes floatSlow {
    0%, 100% {
        transform: rotate(45deg) translateY(0);
    }
    50% {
        transform: rotate(50deg) translateY(-20px);
    }
}

/* Owner Quote */
.owner-quote {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(169,221,230,0.05) 0%, transparent 100%);
    border-left: 3px solid var(--hydro-aqua);
}

.owner-portrait {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: filter 0.5s;
}

.owner-quote:hover .owner-portrait {
    filter: grayscale(0%);
}

.owner-quote blockquote {
    flex: 1;
}

.owner-quote blockquote p {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--deep-petrol);
    margin-bottom: 1rem;
}

.owner-quote cite {
    font-size: 0.9rem;
    color: var(--hydro-aqua);
    font-style: normal;
    letter-spacing: 0.1em;
}

/* Gradient Text */
.gradient-text {
    background: linear-gradient(135deg, var(--hydro-aqua) 0%, var(--deep-petrol) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

.gradient-text::after {
    content: 'Leidenschaft';
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    background: none;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 1px rgba(169,221,230,0.2);
    transform: translate(3px, 3px);
}

/* Philosophy to Team Transition */
.philosophy-to-team-transition {
    position: relative;
    height: 200px;
    margin-top: -80px;
    margin-bottom: -60px;
    z-index: 15;
    overflow: hidden;
}



/* Artists Section */
.artists-section {
    padding: 6rem 3rem 8rem;
    background: var(--bora-grey);
    position: relative;
    margin-top: -60px;
    z-index: 2;
}

.artists-section::before {
    content: '';
    position: absolute;
    top: -150px;
    left: 0;
    right: 0;
    height: 300px;
    background: radial-gradient(ellipse at center top,
        rgba(169,221,230,0.1) 0%,
        transparent 70%);
    pointer-events: none;
    animation: sectionGlow 8s ease-in-out infinite;
}

@keyframes sectionGlow {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

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

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

.artist-card {
    background: var(--white);
    overflow: hidden;
    border-radius: 20px;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
}

.artist-card.featured {
    grid-column: span 1;
    position: relative;
}

.artist-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--warm-orange);
    color: var(--white);
    padding: 0.3rem 0.8rem;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    font-weight: 600;
    z-index: 3;
    border-radius: 2px;
}

.artist-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(62, 100, 112, 0.15);
}

.artist-image {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.artist-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: filter 0.6s;
}

.artist-card:hover .artist-image img {
    filter: grayscale(0%);
}

.artist-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    transform: translateY(100%);
    transition: transform 0.4s;
}

.artist-card:hover .artist-overlay {
    transform: translateY(0);
}

.artist-specialty {
    color: var(--hydro-aqua);
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.artist-info {
    padding: 2rem;
}

.artist-name {
    font-size: 1.3rem;
    font-weight: 300;
    margin-bottom: 0.5rem;
    color: var(--grace-navy);
}

.artist-bio {
    font-size: 0.9rem;
    opacity: 0.7;
    line-height: 1.6;
}

/* Team to Price Transition */
.team-to-price-transition {
    position: relative;
    height: 200px;
    margin-top: -80px;
    margin-bottom: -60px;
    z-index: 15;
    overflow: hidden;
}

.transition-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.transition-wave {
    position: absolute;
    width: 200%;
    height: 120px;
    top: 40px;
    animation: waveAnimation 20s linear infinite;
}

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

.transition-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 20;
}

.transition-icon {
    margin-bottom: 1rem;
    animation: rotateIcon 10s linear infinite;
}

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

.transition-text {
    font-size: 0.9rem;
    color: var(--deep-petrol);
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.6;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 0.6;
        transform: translateY(0);
    }
}

@keyframes particleMove {
    0% {
        transform: translateX(-50px) translateY(0);
        opacity: 0;
    }
    20% {
        opacity: 1;
    }
    50% {
        transform: translateX(50px) translateY(-20px);
        opacity: 0.5;
    }
    80% {
        opacity: 1;
    }
    100% {
        transform: translateX(100px) translateY(0);
        opacity: 0;
    }
}

.transition-line {
    position: absolute;
    top: 50%;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(169,221,230,0.3) 20%,
        rgba(169,221,230,0.3) 80%,
        transparent 100%);
    transform: translateY(-50%);
}

.line-dot {
    position: absolute;
    top: 50%;
    left: 0;
    width: 8px;
    height: 8px;
    background: var(--hydro-aqua);
    border-radius: 50%;
    transform: translateY(-50%);
    box-shadow: 0 0 20px rgba(169,221,230,0.6);
    animation: dotMove 6s ease-in-out infinite;
}

@keyframes dotMove {
    0%, 100% {
        left: 0;
        opacity: 0;
    }
    10%, 90% {
        opacity: 1;
    }
    50% {
        left: calc(100% - 8px);
    }
}

/* Collections Section */
.collections-section {
    padding: 8rem 3rem 8rem;
    background: linear-gradient(180deg,
        var(--white) 0%,
        rgba(249, 252, 255, 0.5) 100%);
    position: relative;
    overflow: hidden;
}

.collections-section::before {
    content: '';
    position: absolute;
    top: -100px;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(180deg,
        var(--bora-grey) 0%,
        transparent 100%);
    opacity: 0.3;
    pointer-events: none;
}

.collections-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -50%;
    width: 200%;
    height: 300px;
    background: radial-gradient(ellipse at center,
        rgba(169, 221, 230, 0.08) 0%,
        transparent 70%);
    animation: priceGlow 12s ease-in-out infinite;
    pointer-events: none;
}

@keyframes priceGlow {
    0%, 100% {
        transform: translateY(50px) scale(0.9);
        opacity: 0.3;
    }
    50% {
        transform: translateY(0) scale(1);
        opacity: 0.6;
    }
}

.collections-header {
    text-align: center;
    margin-bottom: 5rem;
}

/* Price Categories */
.price-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto 4rem;
}

.price-category {
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.98) 0%,
        rgba(169, 221, 230, 0.03) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(169, 221, 230, 0.15);
    padding: 3rem;
    border-radius: 24px;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04),
                inset 0 1px 3px rgba(255, 255, 255, 0.5);
}

.price-category::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle,
        rgba(169, 221, 230, 0.1) 0%,
        transparent 70%);
    animation: categoryPulse 8s ease-in-out infinite;
    pointer-events: none;
}

@keyframes categoryPulse {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0;
    }
    50% {
        transform: translate(-25%, -25%) scale(1.2);
        opacity: 0.5;
    }
}

.price-category:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 30px 60px rgba(169, 221, 230, 0.25),
                inset 0 1px 3px rgba(255, 255, 255, 0.8);
    border-color: rgba(169, 221, 230, 0.4);
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 1) 0%,
        rgba(169, 221, 230, 0.08) 100%);
}

.category-title {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
    color: var(--grace-navy);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.category-number {
    font-size: 0.8rem;
    background: var(--hydro-aqua);
    color: var(--white);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: 600;
}

.price-items {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.price-item {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(169, 221, 230, 0.1);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
}

.price-item::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -1px;
    height: 1px;
    width: 0;
    background: linear-gradient(90deg,
        var(--hydro-aqua) 0%,
        transparent 100%);
    transition: width 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.price-item:hover {
    padding-left: 1rem;
    background: linear-gradient(90deg,
        rgba(169, 221, 230, 0.08) 0%,
        transparent 50%);
}

.price-item:hover::before {
    width: 100%;
}

.service-name {
    font-size: 0.95rem;
    color: var(--grace-navy);
    opacity: 0.9;
    flex: 0 0 auto;
    max-width: 70%;
}

.price-dots {
    flex: 1;
    border-bottom: 1px dotted rgba(169, 221, 230, 0.3);
    margin: 0 1rem;
}

.service-price {
    font-size: 1rem;
    color: var(--deep-petrol);
    font-weight: 500;
    flex: 0 0 auto;
}

.price-item.has-hint {
    flex-wrap: wrap;
}

.service-hint {
    width: 100%;
    font-size: 0.78rem;
    color: var(--deep-petrol);
    opacity: 0.5;
    margin-top: 0.25rem;
    line-height: 1.4;
    font-style: italic;
}

.price-cta {
    text-align: center;
    margin-top: 3rem;
    padding: 0 1.25rem;
}

.price-cta-note {
    color: var(--deep-petrol);
    opacity: 0.6;
    font-size: 0.88rem;
    margin-bottom: 1.25rem;
}

.price-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 1rem 2.5rem;
    background: var(--hydro-aqua);
    color: white;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 30px;
    min-height: 52px;
    box-shadow: 0 4px 16px rgba(169,221,230,0.4);
    transition: all 0.3s;
}

.price-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(169,221,230,0.5);
}

@media (max-width: 768px) {
    .price-cta-btn {
        width: 100%;
        box-sizing: border-box;
    }
}

.book-btn.large {
    padding: 1.2rem 3rem;
    font-size: 1rem;
}

.collection-card {
    padding: 3rem;
    background: var(--ultra-light);
    border: 1px solid var(--bora-grey);
    border-radius: 20px;
    position: relative;
    transition: all 0.4s;
    cursor: pointer;
}

.collection-card[data-collection="hydro"]:hover {
    background: linear-gradient(135deg, rgba(169,221,230,0.1) 0%, transparent 100%);
    border-color: var(--hydro-aqua);
}

.collection-card[data-collection="revital"]:hover {
    background: linear-gradient(135deg, rgba(233,168,184,0.1) 0%, transparent 100%);
    border-color: var(--soft-rose);
}

.collection-card[data-collection="grace"]:hover {
    background: linear-gradient(135deg, rgba(43,48,68,0.05) 0%, transparent 100%);
    border-color: var(--grace-navy);
}

.collection-card[data-collection="bora"]:hover {
    background: linear-gradient(135deg, rgba(244,154,74,0.1) 0%, transparent 100%);
    border-color: var(--warm-orange);
}

.collection-number {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 3rem;
    font-weight: 100;
    opacity: 0.1;
}

.collection-title {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 1rem;
    color: var(--grace-navy);
}

.collection-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.7;
    margin-bottom: 2rem;
}

.collection-price {
    font-size: 1.1rem;
    color: var(--deep-petrol);
    margin-bottom: 1.5rem;
}

.collection-link {
    color: var(--hydro-aqua);
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    display: inline-flex;
    align-items: center;
    transition: gap 0.3s;
}

.collection-link:hover {
    gap: 0.5rem;
}

/* Price to Contact Transition */
.price-contact-transition {
    position: relative;
    height: 200px;
    margin-top: -40px;
    margin-bottom: -60px;
    z-index: 15;
    overflow: hidden;
}

@media (max-width: 768px) {
    .price-contact-transition {
        height: 150px;
        margin-top: -20px;
        margin-bottom: -40px;
    }
}




.salon-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 300px;
    background: radial-gradient(ellipse at center,
        rgba(169,221,230,0.15) 0%,
        transparent 70%);
    pointer-events: none;
}

.showcase-header {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
    z-index: 2;
}

.showcase-subtitle {
    font-size: 1.1rem;
    color: var(--deep-petrol);
    opacity: 0.7;
    margin-top: 1rem;
    font-weight: 300;
    letter-spacing: 1px;
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 4rem;
    position: relative;
    z-index: 2;
}

.showcase-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 2.5rem;
    border: 1px solid rgba(169,221,230,0.2);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
}

.showcase-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle,
        rgba(169,221,230,0.1) 0%,
        transparent 60%);
    opacity: 0;
    transition: opacity 0.5s;
}

.showcase-card:hover::before {
    opacity: 1;
}

.showcase-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
    border-color: var(--hydro-aqua);
}

/* Hero Logo Card */
.card-hero {
    grid-column: span 2;
    background: linear-gradient(135deg,
        rgba(255,255,255,0.95) 0%,
        rgba(169,221,230,0.1) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 350px;
    position: relative;
}

.card-logo-container {
    position: relative;
    width: 200px;
    height: 200px;
    margin-bottom: 2rem;
}

.showcase-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(169,221,230,0.3));
    animation: logoFloat 6s ease-in-out infinite;
}

@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-15px) scale(1.05);
    }
}

.logo-glow-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 250px;
    height: 250px;
    background: radial-gradient(circle,
        rgba(169,221,230,0.3) 0%,
        rgba(169,221,230,0.1) 50%,
        transparent 70%);
    animation: glowPulse 4s ease-in-out infinite;
    pointer-events: none;
}

@keyframes glowPulse {
    0%, 100% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.2);
    }
}

.card-content h3 {
    font-size: 1.8rem;
    font-weight: 300;
    color: var(--grace-navy);
    margin-bottom: 0.5rem;
    text-align: center;
}

.card-content p {
    font-size: 1rem;
    color: var(--deep-petrol);
    opacity: 0.7;
    text-align: center;
    letter-spacing: 1px;
}

/* Feature Cards */
.card-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg,
        rgba(169,221,230,0.2) 0%,
        rgba(169,221,230,0.05) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.4s;
}

.feature-icon svg {
    stroke: var(--hydro-aqua);
}

.showcase-card:hover .feature-icon {
    transform: scale(1.1) rotateY(180deg);
    background: linear-gradient(135deg,
        var(--hydro-aqua) 0%,
        rgba(169,221,230,0.8) 100%);
}

.showcase-card:hover .feature-icon svg {
    stroke: white;
}

.card-feature h4 {
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--grace-navy);
    margin-bottom: 0.8rem;
}

.card-feature p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--deep-petrol);
    opacity: 0.8;
}

/* Quote Card */
.card-quote {
    background: linear-gradient(135deg,
        var(--deep-petrol) 0%,
        var(--grace-navy) 100%);
    color: white;
    position: relative;
    grid-column: span 2;
}

.quote-mark {
    font-size: 8rem;
    line-height: 0.5;
    opacity: 0.1;
    position: absolute;
    top: 1rem;
    left: 1rem;
    font-family: Georgia, serif;
}

.quote-text {
    font-size: 1.5rem;
    line-height: 1.5;
    font-weight: 300;
    font-style: italic;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.card-quote cite {
    font-size: 1rem;
    color: var(--hydro-aqua);
    font-style: normal;
    letter-spacing: 1px;
}

/* Location Card */
.card-location {
    background: linear-gradient(135deg,
        rgba(169,221,230,0.15) 0%,
        rgba(255,255,255,0.95) 100%);
}

.location-badge {
    width: 60px;
    height: 60px;
    background: var(--hydro-aqua);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.location-badge svg {
    stroke: white;
}

.card-location h4 {
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--grace-navy);
    margin-bottom: 0.5rem;
}

.card-location p {
    font-size: 1rem;
    color: var(--deep-petrol);
    opacity: 0.7;
    margin-bottom: 1.5rem;
}

.location-link {
    display: inline-flex;
    align-items: center;
    color: var(--hydro-aqua);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
}

.location-link:hover {
    transform: translateX(5px);
}

/* Showcase Action */
.showcase-action {
    text-align: center;
    position: relative;
    z-index: 2;
}

.showcase-cta {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: linear-gradient(135deg, var(--hydro-aqua) 0%, var(--deep-petrol) 100%);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 10px 30px rgba(169,221,230,0.3);
}

.showcase-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(169,221,230,0.5);
}

/* Responsive */
@media (max-width: 768px) {
    .showcase-grid {
        grid-template-columns: 1fr;
    }

    .card-hero,
    .card-quote {
        grid-column: span 1;
    }

    .card-logo-container {
        width: 150px;
        height: 150px;
    }

    .quote-text {
        font-size: 1.2rem;
    }

    .showcase-header {
        margin-bottom: 3rem;
    }
}

/* Old Gallery Section Styles - REMOVED */
.gallery-section {
    padding: 6rem 2rem;
    background: var(--white);
    display: none; /* Hide old gallery */
}

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

.gallery-header .section-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--hydro-aqua);
    margin-bottom: 1rem;
}

.gallery-header .section-title {
    font-size: 3.5rem;
    font-weight: 300;
    color: var(--grace-navy);
    letter-spacing: -1px;
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    background: var(--ultra-light);
    cursor: pointer;
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

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

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

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

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(180deg, transparent, rgba(0,0,0,0.7));
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.gallery-overlay span {
    color: white;
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 1px;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

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

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

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

    .gallery-header .section-title {
        font-size: 2.5rem;
    }
}

/* Contact Section - Final Compact Design */
.contact-final {
    padding: 5rem 3rem 4rem;
    background: linear-gradient(180deg,
        var(--white) 0%,
        var(--bora-grey) 100%);
    position: relative;
}

.contact-header-simple {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-header-simple .section-title {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: var(--grace-navy);
}

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

.contact-blocks {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-block {
    background: white;
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.contact-block h4 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    color: var(--grace-navy);
    margin-bottom: 0.8rem;
}

.contact-block h4 svg {
    color: var(--hydro-aqua);
}

.contact-block p {
    font-size: 0.9rem;
    color: var(--deep-petrol);
    line-height: 1.5;
}

.hours-compact {
    font-size: 0.85rem;
    color: var(--deep-petrol);
    line-height: 1.6;
}

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

.contact-list a {
    font-size: 0.9rem;
    color: var(--deep-petrol);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-list a:hover {
    color: var(--hydro-aqua);
    transform: translateX(5px);
}

.contact-icon {
    flex-shrink: 0;
    transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

.contact-list a:hover .contact-icon {
    transform: scale(1.1);
}

.map-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.map-button svg {
    transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

.map-button:hover svg {
    transform: translateY(-2px);
}

.compact-form {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.compact-form h3 {
    font-size: 1.2rem;
    color: var(--grace-navy);
    margin-bottom: 1rem;
}

.compact-form form {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.compact-form input,
.compact-form textarea {
    padding: 0.8rem;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.compact-form input:focus,
.compact-form textarea:focus {
    outline: none;
    border-color: var(--hydro-aqua);
}

.compact-form button {
    background: var(--hydro-aqua);
    color: white;
    border: none;
    padding: 0.9rem;
    border-radius: 10px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.compact-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(169,221,230,0.4);
}

.map-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    margin-bottom: 1.5rem;
}

.map-actions {
    position: absolute;
    bottom: 20px;
    right: 20px;
}

.map-button {
    background: white;
    padding: 0.7rem 1.2rem;
    border-radius: 10px;
    text-decoration: none;
    color: var(--grace-navy);
    font-weight: 500;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    display: inline-block;
    transition: all 0.3s;
}

.map-button:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

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

.btn-primary,
.btn-secondary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
}

.btn-primary {
    background: var(--hydro-aqua);
    color: white;
}

.btn-secondary {
    background: var(--soft-rose);
    color: white;
}

.btn-primary:hover,
.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* Info Blocks Grid */
.info-blocks-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto 6rem;
}

.glass-block {
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(169,221,230,0.15);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.04);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.info-block {
    text-align: center;
    position: relative;
    overflow: hidden;
}

.info-block::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle,
        rgba(169,221,230,0.08) 0%,
        transparent 60%);
    opacity: 0;
    transition: opacity 0.4s;
}

.info-block:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

.info-block:hover::before {
    opacity: 1;
}

.block-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--hydro-aqua), rgba(169,221,230,0.5));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
}

.info-block h3 {
    font-size: 1.2rem;
    color: var(--grace-navy);
    margin-bottom: 1rem;
    font-weight: 600;
}

.info-block p {
    color: var(--deep-petrol);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.block-link {
    color: var(--hydro-aqua);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    transition: gap 0.3s;
}

.block-link:hover {
    gap: 0.6rem;
}

.hours-grid {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 0.5rem;
    text-align: left;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.live-status {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(37,211,102,0.1);
    border-radius: 20px;
    margin-top: 0.5rem;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #25D366;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.status-text {
    font-size: 0.85rem;
    color: #25D366;
    font-weight: 500;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.method-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.6rem;
    background: rgba(0,0,0,0.02);
    border-radius: 10px;
    text-decoration: none;
    color: var(--deep-petrol);
    font-size: 0.95rem;
    transition: all 0.3s;
}

.method-link:hover {
    background: rgba(169,221,230,0.1);
    transform: scale(1.05);
}

.method-link.whatsapp {
    background: rgba(37,211,102,0.1);
}

.block-cta-btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: var(--hydro-aqua);
    color: white;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
}

.block-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(169,221,230,0.4);
}

/* Polaroid Maps Section */
.polaroid-maps {
    padding: 4rem 0;
    max-width: 1400px;
    margin: 0 auto 6rem;
}

.polaroid-container {
    position: relative;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.polaroid {
    position: absolute;
    background: white;
    padding: 15px 15px 60px 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.polaroid img,
.polaroid .map-frame {
    width: 350px;
    height: 350px;
    object-fit: cover;
}

.map-frame {
    overflow: hidden;
    border-radius: 4px;
}

.polaroid-caption {
    position: absolute;
    bottom: 15px;
    left: 15px;
    right: 15px;
    text-align: center;
    font-family: 'Caveat', cursive;
    font-size: 1.3rem;
    color: #333;
}

.polaroid-1 {
    transform: rotate(-8deg) translateX(-150px);
    z-index: 1;
}

.polaroid-2 {
    transform: rotate(3deg);
    z-index: 3;
}

.polaroid-3 {
    transform: rotate(10deg) translateX(150px);
    z-index: 2;
}

.polaroid:hover {
    transform: rotate(0deg) scale(1.1) !important;
    z-index: 10 !important;
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

/* Team Preview Section */
.team-preview-section {
    padding: 4rem 3rem;
    background: rgba(255,255,255,0.5);
    border-radius: 30px;
    max-width: 1400px;
    margin: 0 auto 4rem;
}

.preview-title {
    text-align: center;
    font-size: 2rem;
    color: var(--grace-navy);
    margin-bottom: 3rem;
    font-weight: 300;
}

.team-preview-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.team-member-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.team-member-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    filter: grayscale(100%);
    transition: filter 0.4s;
}

.team-member-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.team-member-card:hover img {
    filter: grayscale(0%);
}

.member-info {
    padding: 1.5rem;
}

.member-info h4 {
    font-size: 1.3rem;
    color: var(--grace-navy);
    margin-bottom: 0.3rem;
}

.member-info span {
    color: var(--deep-petrol);
    font-size: 0.9rem;
    display: block;
    margin-bottom: 1rem;
}

.member-specialties {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.specialty-tag {
    padding: 0.3rem 0.8rem;
    background: rgba(169,221,230,0.1);
    border: 1px solid rgba(169,221,230,0.3);
    border-radius: 15px;
    font-size: 0.75rem;
    color: var(--deep-petrol);
}

/* Contact Form Section */
.contact-form-section {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 0;
}

.form-container {
    padding: 3rem;
}

.form-container h3 {
    font-size: 1.5rem;
    color: var(--grace-navy);
    margin-bottom: 2rem;
}

.modern-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.modern-form input,
.modern-form select,
.modern-form textarea {
    padding: 1rem;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 12px;
    background: rgba(255,255,255,0.8);
    font-size: 0.95rem;
    transition: all 0.3s;
}

.modern-form input:focus,
.modern-form select:focus,
.modern-form textarea:focus {
    outline: none;
    border-color: var(--hydro-aqua);
    background: white;
    box-shadow: 0 0 0 3px rgba(169,221,230,0.1);
}

.form-submit {
    background: linear-gradient(135deg, var(--hydro-aqua), var(--pastel-green-light));
    color: white;
    border: none;
    padding: 1.2rem 2rem;
    border-radius: 15px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

.form-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(169,221,230,0.4);
}

/* Quick Actions */
.quick-actions-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.action-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: white;
    border-radius: 20px;
    text-decoration: none;
    color: var(--grace-navy);
    font-weight: 500;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.3s;
}

.action-card:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.action-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.action-icon.aqua {
    background: linear-gradient(135deg, var(--hydro-aqua), var(--pastel-green-light));
}

.action-icon.rose {
    background: linear-gradient(135deg, var(--soft-rose), #F5C4D0);
}

/* Quick Info */
.quick-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255,255,255,0.6);
    border-radius: 12px;
    transition: all 0.3s;
}

.info-item:hover {
    background: white;
    transform: translateX(5px);
}

.info-item svg {
    color: var(--hydro-aqua);
}

.info-label {
    display: block;
    font-size: 0.85rem;
    color: #999;
    margin-bottom: 0.2rem;
}

.info-item a {
    color: var(--grace-navy);
    text-decoration: none;
    font-weight: 500;
}

/* Map Container with Layered Design */
.map-container {
    position: relative;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.salon-preview {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 180px;
    z-index: 2;
    overflow: hidden;
}

.preview-main {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.9);
}

.preview-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg,
        rgba(0,0,0,0.3) 0%,
        rgba(0,0,0,0.5) 100%);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
}

.address-card {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--grace-navy);
}

.address-card strong {
    display: block;
    margin-bottom: 0.2rem;
}

.address-card span {
    font-size: 0.85rem;
    opacity: 0.8;
}

.map-wrapper {
    position: absolute;
    top: 150px;
    left: 0;
    right: 0;
    bottom: 80px;
    background: #f0f0f0;
}

.map-btn {
    position: absolute;
    bottom: 100px;
    right: 20px;
    background: white;
    border: none;
    padding: 0.8rem 1.2rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--grace-navy);
    font-weight: 500;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: all 0.3s;
    z-index: 10;
}

.map-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.gallery-strip {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: white;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    z-index: 3;
}

.gallery-strip img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.85);
    transition: all 0.3s;
    cursor: pointer;
}

.gallery-strip img:hover {
    filter: brightness(1);
    transform: scale(1.05);
}

/* CTA Buttons */
.cta-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 1.5rem;
}

.cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
}

.cta-btn.book {
    background: var(--hydro-aqua);
    color: white;
}

.cta-btn.gift {
    background: var(--soft-rose);
    color: white;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.atelier-info-panel {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card {
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(169,221,230,0.2);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle,
        rgba(169,221,230,0.1) 0%,
        transparent 60%);
    opacity: 0;
    transition: opacity 0.4s;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border-color: var(--hydro-aqua);
}

.info-card:hover::before {
    opacity: 1;
}

.card-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--hydro-aqua), var(--pastel-green-light));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: white;
}

.info-card h3 {
    font-size: 1.3rem;
    color: var(--grace-navy);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.info-card p {
    color: var(--deep-petrol);
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.card-link {
    color: var(--hydro-aqua);
    text-decoration: none;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    transition: gap 0.3s;
}

.card-link:hover {
    gap: 0.6rem;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin: 1rem 0;
}

.hour-row {
    display: flex;
    justify-content: space-between;
    padding: 0.3rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    font-size: 0.95rem;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    background: rgba(37,211,102,0.1);
    border-radius: 20px;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #25D366;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.6;
    }
}

.status-text {
    font-size: 0.85rem;
    color: #25D366;
    font-weight: 500;
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-top: 1rem;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.6rem 1rem;
    background: rgba(0,0,0,0.02);
    border-radius: 10px;
    text-decoration: none;
    color: var(--deep-petrol);
    transition: all 0.3s;
}

.contact-link:hover {
    background: rgba(169,221,230,0.1);
    transform: translateX(5px);
}

.contact-link.whatsapp {
    background: linear-gradient(135deg, rgba(37,211,102,0.1), rgba(18,140,126,0.1));
}

.contact-link.whatsapp:hover {
    background: linear-gradient(135deg, rgba(37,211,102,0.2), rgba(18,140,126,0.2));
}

.quick-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2rem;
}

.action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

.action-btn.primary {
    background: var(--hydro-aqua);
    color: white;
}

.action-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(169,221,230,0.4);
}

.action-btn.secondary {
    background: var(--soft-rose);
    color: white;
}

.action-btn.secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(233,168,184,0.4);
}

.atelier-map {
    position: relative;
    height: 600px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.map-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;
}

.map-expand {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    border: none;
    padding: 0.8rem 1.2rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--grace-navy);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.map-expand:hover {
    background: white;
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.atelier-desc {
    font-size: 1.2rem;
    line-height: 1.6;
    font-weight: 300;
    margin: 2rem 0 3rem;
    color: var(--deep-petrol);
}

.atelier-info {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.info-block {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.info-label {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    opacity: 0.5;
}

.info-value {
    font-size: 1.1rem;
    color: var(--grace-navy);
}

.atelier-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.book-appointment, .gift-card-btn {
    display: inline-block;
    text-decoration: none;
    text-align: center;
}

.book-appointment {
    background: linear-gradient(135deg, var(--hydro-aqua) 0%, #9AD5E3 100%);
    color: var(--white);
}

.book-appointment:hover {
    background: linear-gradient(135deg, #7FC8D6 0%, var(--hydro-aqua) 100%);
    transform: translateY(-2px);
}

.gift-card-btn {
    background: var(--soft-rose);
    color: var(--grace-navy);
}

.gift-card-btn:hover {
    background: var(--hydro-aqua);
}

/* Gallery */
.atelier-gallery {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    align-items: flex-start;
}

.gallery-frame {
    position: relative;
    overflow: hidden;
}

.gallery-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.gallery-frame:hover img {
    transform: scale(1.05);
}

.gallery-frame.small {
    margin-top: 4rem;
}

/* Footer */
.editorial-footer {
    padding: 0 3rem 3rem;
    background: linear-gradient(180deg,
        var(--bora-grey) 0%,
        rgba(249, 252, 255, 0.95) 30%,
        rgba(255, 255, 255, 0.98) 100%);
    color: var(--grace-navy);
}

.footer-top {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 0 2.5rem;
    border-bottom: 1px solid rgba(169,221,230,0.2);
    margin-bottom: 2.5rem;
}

.footer-insta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer-insta-icon {
    color: var(--hydro-aqua);
    flex-shrink: 0;
}

.footer-insta-text {
    flex: 1;
    min-width: 180px;
}

.footer-insta-label {
    display: block;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--grace-navy);
    margin-bottom: 0.2rem;
}

.footer-insta-sub {
    display: block;
    font-size: 0.85rem;
    color: var(--deep-petrol);
    opacity: 0.5;
}

.footer-insta-btn {
    display: inline-flex;
    align-items: center;
    padding: 0.7rem 1.8rem;
    background: var(--hydro-aqua);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    box-shadow: 0 4px 16px rgba(169,221,230,0.35);
    transition: all 0.3s;
    white-space: nowrap;
}

.footer-insta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(169,221,230,0.5);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.footer-logo-img {
    height: 35px;
    width: auto;
    filter: brightness(0) saturate(100%) invert(13%) sepia(22%) saturate(1180%) hue-rotate(192deg) brightness(95%) contrast(93%);
    opacity: 0.8;
    margin-bottom: 0.5rem;
    transition: all 0.3s;
}

.footer-logo-img:hover {
    transform: scale(1.05);
    opacity: 1;
    filter: brightness(0) saturate(100%) invert(71%) sepia(78%) saturate(289%) hue-rotate(151deg) brightness(95%) contrast(88%);
}

.footer-tagline {
    font-size: 0.85rem;
    opacity: 0.5;
    font-style: italic;
    color: var(--grace-navy);
}

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

.footer-link {
    color: var(--grace-navy);
    text-decoration: none;
    font-size: 0.9rem;
    opacity: 0.6;
    transition: all 0.3s;
}

.footer-link:hover {
    opacity: 1;
    color: var(--hydro-aqua);
}

.footer-credits {
    font-size: 0.85rem;
    opacity: 0.4;
    display: flex;
    gap: 1rem;
    align-items: center;
    color: var(--grace-navy);
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .story-section {
        padding: 5rem 1.25rem 6rem;
    }

    .story-header {
        margin-bottom: 3rem;
    }

    .story-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

    .atelier-content {
        grid-template-columns: 1fr;
    }

    .atelier-gallery {
        grid-template-columns: 1fr;
    }

    .gallery-frame.small {
        margin-top: 0;
    }

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

/* Header Scroll Effect */
.editorial-header.scrolled {
    box-shadow: 0 4px 30px rgba(0,0,0,0.06);
    background: rgba(255, 255, 255, 0.98);
    border-bottom-color: rgba(169, 221, 230, 0.3);
}

.editorial-header.scrolled .nav-main {
    padding: 0.8rem 3rem;
}

.editorial-header.scrolled .logo-image {
    height: 38px;
}

@media (max-width: 1200px) {
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-blocks {
        grid-template-columns: 1fr;
    }

    .philosophy-to-team-transition,
    .team-to-price-transition,
    .price-contact-transition {
        height: 150px;
        margin-top: -60px;
        margin-bottom: -40px;
    }

    .transition-text {
        font-size: 0.8rem;
        letter-spacing: 1px;
    }

    .transition-icon {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 768px) {
    /* Intro Quote Marks for Mobile */
    .intro-quote::before {
        font-size: 3rem;
        top: -0.5rem;
        left: -1rem;
    }

    .intro-quote::after {
        font-size: 3rem;
        bottom: -1rem;
        right: -1rem;
    }

    .intro-quote .quote-text {
        font-size: 1.4rem;
        padding: 0 1rem;
    }

    /* Mobile Header Cleanup */
    .header-contact .contact-item.phone {
        display: none !important;
    }

    .header-contact .social-icons {
        display: none !important;
    }

    /* Keep only WhatsApp and Book button visible */
    .header-contact {
        gap: 0.5rem;
    }

    .header-contact .contact-item.whatsapp {
        padding: 0.4rem 0.8rem;
        background: #25D366;
        color: white;
        border-radius: 20px;
        font-size: 0.8rem;
    }

    .header-contact .contact-item.whatsapp svg {
        stroke: white;
        width: 14px;
        height: 14px;
    }

    .header-contact .contact-item.whatsapp span {
        display: none;
    }

    .nav-cta .book-btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }

    .nav-cta .book-btn svg {
        display: none;
    }

    .nav-main {
        gap: 0.5rem;
    }

    /* Story visual adjustments for mobile */
    .visual-container {
        height: 450px;
        padding: 20px;
    }

    .background-logo {
        width: 250px;
        height: 250px;
        opacity: 0.02;
    }

    /* Ensure floating tools are well positioned on mobile */
    .floating-tool img {
        filter: drop-shadow(0 8px 20px rgba(0,0,0,0.1))
                drop-shadow(0 3px 5px rgba(0,0,0,0.06));
    }

    .tool-shadow {
        bottom: -30px;
        height: 30px;
    }

    .contact-section {
        padding: 4rem 1.5rem 3rem;
    }

    .contact-header .section-title {
        font-size: 2rem;
    }

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

    .cta-buttons {
        grid-template-columns: 1fr;
    }

    .gallery-strip {
        height: 60px;
    }

    .map-container {
        height: 400px;
    }

    .salon-preview {
        height: 140px;
    }

    .map-wrapper {
        top: 120px;
        bottom: 60px;
    }

    .map-btn {
        bottom: 70px;
        right: 10px;
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }

    .header-top {
        display: none;
    }

    .nav-main {
        padding: 1.5rem;
    }

    .nav-links, .nav-cta {
        display: none;
    }

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

    .hero-headline {
        font-size: clamp(3rem, 10vw, 5rem);
    }

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

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

    .footer-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .editorial-footer {
        padding: 0 1.25rem 2rem;
    }

    .footer-top {
        padding: 2.5rem 0 2rem;
    }

    .footer-insta {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .footer-insta-text {
        min-width: auto;
    }

    .footer-insta-btn {
        width: 100%;
        justify-content: center;
    }

    .footer-links {
        flex-wrap: wrap;
        gap: 0.75rem 1.5rem;
    }

    .footer-credits {
        flex-wrap: wrap;
        gap: 0.25rem 0.5rem;
    }

    .legal-content {
        padding: 6rem 1.5rem 3rem;
    }

    .legal-content h2 {
        font-size: 2rem;
    }

    .maps-consent {
        min-height: 250px;
    }

    .scroll-top-btn {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 44px;
        height: 44px;
    }

    /* Price Section */
    .collections-section {
        padding: 4rem 1.25rem 4rem;
    }

    .collections-header {
        margin-bottom: 2.5rem;
    }

    .price-categories {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .price-category {
        padding: 1.5rem 1.25rem;
    }

    .price-category:hover {
        transform: none;
    }

    .category-title {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }

    /* Contact Section */
    .contact-final {
        padding: 4rem 1.25rem 3rem;
    }

    .contact-blocks {
        grid-template-columns: 1fr;
    }

    .contact-header-simple .section-title {
        font-size: 2rem;
    }

    .action-buttons {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .btn-primary,
    .btn-secondary {
        padding: 0.9rem 1.5rem;
        font-size: 0.95rem;
        white-space: nowrap;
        width: 100%;
        justify-content: center;
    }
}

/* ========================================
   LEGAL SECTIONS (Impressum & Datenschutz)
   ======================================== */
.legal-section {
    background: var(--white);
    border-top: 1px solid var(--bora-grey);
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 6rem 3rem 4rem;
}

.legal-content h2 {
    font-family: 'Helvetica Neue', -apple-system, sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--grace-navy);
    margin-bottom: 2rem;
    letter-spacing: -0.5px;
}

.legal-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--deep-petrol);
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    letter-spacing: 0.5px;
}

.legal-content p,
.legal-content li {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--grace-navy);
    opacity: 0.8;
}

.legal-content ul {
    padding-left: 1.5rem;
    margin: 0.5rem 0 1rem;
}

.legal-content ul li {
    margin-bottom: 0.4rem;
}

.legal-content a {
    color: var(--deep-petrol);
    text-decoration: underline;
    text-decoration-color: var(--hydro-aqua);
    text-underline-offset: 3px;
    transition: color 0.3s ease;
}

.legal-content a:hover {
    color: var(--hydro-aqua);
}

.legal-content strong {
    font-weight: 600;
    color: var(--grace-navy);
}

.legal-update {
    margin-top: 2rem;
    font-size: 0.85rem;
    opacity: 0.5;
    font-style: italic;
}

.legal-page {
    padding-top: 100px;
}

.legal-page .legal-content {
    padding-top: 2rem;
}

.legal-page .legal-content h1 {
    font-family: 'Helvetica Neue', -apple-system, sans-serif;
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    font-weight: 700;
    color: var(--grace-navy);
    margin-bottom: 2rem;
    letter-spacing: -0.5px;
    word-wrap: break-word;
}

.legal-back {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--deep-petrol);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    margin-bottom: 2rem;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
    min-height: 44px;
}

.legal-back:hover {
    color: var(--hydro-aqua);
    transform: translateX(-4px);
}

/* ========================================
   GOOGLE MAPS 2-CLICK CONSENT
   ======================================== */
.maps-consent {
    min-height: 350px;
    background: linear-gradient(135deg, var(--bora-grey) 0%, var(--ultra-light) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}

.maps-consent-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.maps-consent-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--grace-navy);
}

.maps-consent-content p {
    font-size: 0.9rem;
    color: var(--grace-navy);
    opacity: 0.7;
    max-width: 300px;
    line-height: 1.6;
}

.maps-consent-btn {
    padding: 0.9rem 2.5rem;
    background: var(--hydro-aqua);
    border: none;
    border-radius: 50px;
    color: var(--white);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 44px;
}

.maps-consent-btn:hover {
    background: var(--deep-petrol);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(62, 100, 112, 0.3);
}

.maps-privacy-link {
    font-size: 0.8rem;
    color: var(--grace-navy);
    opacity: 0.5;
    text-decoration: underline;
}

.maps-container {
    border-radius: 20px;
    overflow: hidden;
    min-height: 350px;
}

.maps-container iframe {
    width: 100%;
    height: 400px;
    border: 0;
    border-radius: 20px;
}

/* ========================================
   PRIVACY CHECKBOX (Kontaktformular)
   ======================================== */
.privacy-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.85rem;
    color: var(--grace-navy);
    opacity: 0.8;
    line-height: 1.5;
    cursor: pointer;
    margin: 0.5rem 0;
}

.privacy-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    min-width: 18px;
    margin-top: 2px;
    accent-color: var(--hydro-aqua);
    cursor: pointer;
}

.privacy-checkbox a {
    color: var(--deep-petrol);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.privacy-checkbox a:hover {
    color: var(--hydro-aqua);
}

/* ========================================
   FOOTER LEGAL LINKS
   ======================================== */
.footer-legal {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
}

.footer-legal-link {
    color: var(--grace-navy);
    opacity: 0.5;
    text-decoration: none;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.footer-legal-link:hover {
    opacity: 1;
    color: var(--hydro-aqua);
}

.footer-legal .divider {
    opacity: 0.3;
    font-size: 0.8rem;
}

/* ========================================
   MOBILE LEGAL LINKS (in Mobile Menu)
   ======================================== */
.mobile-legal-links {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem 0 0.5rem;
    border-top: 1px solid var(--bora-grey);
    margin-top: auto;
}

.mobile-legal-link {
    font-size: 0.82rem;
    color: var(--grace-navy);
    opacity: 0.45;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.mobile-legal-link:hover {
    opacity: 1;
    color: var(--hydro-aqua);
}

/* ========================================
   SCROLL TO TOP BUTTON
   ======================================== */
.scroll-top-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 48px;
    height: 48px;
    background: var(--white);
    border: 1px solid var(--bora-grey);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: 999;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

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

.scroll-top-btn:hover {
    background: var(--hydro-aqua);
    border-color: var(--hydro-aqua);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(169, 221, 230, 0.4);
}

.scroll-top-btn svg {
    stroke: var(--grace-navy);
    transition: stroke 0.3s ease;
}

.scroll-top-btn:hover svg {
    stroke: var(--white);
}

/* ========================================
   COOKIE BANNER
   ======================================== */
.cookie-banner {
    position: fixed;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%) translateY(120px);
    width: calc(100% - 3rem);
    max-width: 700px;
    background: var(--grace-navy);
    color: white;
    border-radius: 14px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.18);
    z-index: 9997;
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.4s ease;
    pointer-events: none;
}

.cookie-banner.visible {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.cookie-banner-inner {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1rem 1.25rem;
    flex-wrap: wrap;
}

.cookie-banner-text {
    flex: 1;
    font-size: 0.88rem;
    line-height: 1.5;
    color: rgba(255,255,255,0.85);
    min-width: 200px;
}

.cookie-banner-text strong {
    color: white;
}

.cookie-banner-link {
    color: var(--hydro-aqua);
    text-decoration: underline;
    margin-left: 0.4rem;
    white-space: nowrap;
}

.cookie-banner-btn {
    background: white;
    color: var(--grace-navy);
    border: none;
    padding: 0.55rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.88rem;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s, transform 0.15s;
    min-height: 40px;
    flex-shrink: 0;
}

.cookie-banner-btn:hover {
    background: var(--hydro-aqua);
    color: white;
}

.cookie-banner-btn:active {
    transform: scale(0.97);
}

@media (max-width: 480px) {
    .cookie-banner {
        bottom: 1rem;
        width: calc(100% - 2rem);
        border-radius: 12px;
    }
    .cookie-banner-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
    .cookie-banner-btn {
        width: 100%;
        text-align: center;
    }
}

/* ========================================
   SOCIAL FOLLOW SECTION
   ======================================== */
.social-follow {
    display: none;
}

.social-follow-inner {
    max-width: 520px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.social-follow-icon {
    color: var(--hydro-aqua);
    margin-bottom: 0.25rem;
}

.social-follow-handle {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: var(--deep-petrol);
    opacity: 0.4;
    text-transform: uppercase;
    margin: 0;
}

.social-follow-headline {
    font-size: clamp(2rem, 6vw, 3rem);
    font-weight: 300;
    color: var(--grace-navy);
    letter-spacing: -0.02em;
    line-height: 1.15;
    margin: 0.25rem 0 0.5rem;
}

.social-follow-sub {
    color: var(--deep-petrol);
    opacity: 0.6;
    font-size: 0.95rem;
    line-height: 1.65;
    margin: 0;
}

.social-follow-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.9rem 2.5rem;
    background: var(--hydro-aqua);
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 30px;
    margin-top: 0.75rem;
    min-height: 50px;
    transition: background 0.25s, color 0.25s, transform 0.2s;
}

.social-follow-btn:hover {
    background: var(--hydro-aqua);
    color: white;
    transform: translateY(-2px);
}

/* Instagram post tiles */
.insta-posts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.6rem;
    width: 100%;
    margin: 0.5rem 0 0.25rem;
}

.insta-post {
    position: relative;
    aspect-ratio: 1 / 1;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    text-decoration: none;
    overflow: hidden;
    transition: background 0.25s, transform 0.2s;
}

.insta-post:hover {
    background: rgba(169,221,230,0.15);
    border-color: var(--hydro-aqua);
    transform: translateY(-2px);
}

.insta-post-type {
    position: absolute;
    top: 0.5rem;
    left: 0.5rem;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--hydro-aqua);
    background: rgba(0,0,0,0.3);
    padding: 0.2rem 0.45rem;
    border-radius: 4px;
}

.insta-play {
    opacity: 0.7;
}

.insta-post-label {
    font-size: 0.65rem;
    color: rgba(255,255,255,0.6);
    text-align: center;
    padding: 0 0.4rem;
    line-height: 1.3;
}

.social-follow-fb {
    display: none;
}

@media (max-width: 480px) {
    .social-follow {
        padding: 3.5rem 1.25rem;
    }
    .social-follow-btn {
        width: 100%;
    }
    .insta-posts {
        gap: 0.4rem;
    }
}