﻿/* ============================================
   BLOOM - Beauty Salon | 2026 Minimal Design
   ============================================ */

/* --- Variables --- */
:root {
    --green: #b8ada2;
    --green-dark: #a39588;
    --green-deep: #8e8176;
    --sand: #b8ada2;
    --gray-bg: #F5F5F5;
    --gray-mid: #EDEDED;
    --gray-text: #6B6B6B;
    --dark: #1A1A1A;
    --dark-light: #2E2E2E;
    --white: #FFFFFF;
    --font-body: 'DM Sans', sans-serif;
    --font-display: 'Playfair Display', serif;
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
    --radius: 16px;
    --radius-sm: 10px;
}

/* --- Reset --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark);
    overflow-x: hidden;
    
    /* === BACKGROUND EFFECTS (Delete lines below to revert) === */
    background-color: #e8e3de;
    /* No body background image here as it gets covered. 
       We will use a fixed overlay instead for the 'spots' */
    position: relative;
    /* === END BACKGROUND EFFECTS === */
}

/* === ANIMATED SHADER-LIKE CANVAS BACKGROUND === */
.bg-shader {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 16% 22%, rgba(168, 156, 144, 0.1) 0%, transparent 52%),
        radial-gradient(circle at 84% 74%, rgba(230, 222, 214, 0.2) 0%, transparent 58%),
        radial-gradient(circle at 52% 52%, rgba(244, 239, 234, 0.34) 0%, transparent 64%),
        linear-gradient(130deg, #ede8e3 0%, #d8d0c9 48%, #f1ece7 100%);
}

#reactShaderRoot {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.shader-react-layer {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.shader-react-layer--mesh {
    opacity: 0.65;
}

.shader-react-layer--dots {
    opacity: 0.32;
    mix-blend-mode: soft-light;
}

.shader-react-glow {
    position: absolute;
    border-radius: 999px;
    filter: blur(70px);
    pointer-events: none;
}

.shader-react-glow--a {
    top: 22%;
    left: 30%;
    width: 220px;
    height: 220px;
    background: rgba(210, 202, 194, 0.18);
    animation: shaderPulseA 6s ease-in-out infinite alternate;
}

.shader-react-glow--b {
    right: 20%;
    bottom: 28%;
    width: 190px;
    height: 190px;
    background: rgba(248, 244, 239, 0.3);
    animation: shaderPulseB 5s ease-in-out infinite alternate;
}

.shader-react-glow--c {
    right: 32%;
    top: 48%;
    width: 140px;
    height: 140px;
    background: rgba(198, 189, 180, 0.14);
    animation: shaderPulseC 7s ease-in-out infinite alternate;
}

@keyframes shaderPulseA {
    from { transform: scale(0.9); opacity: 0.6; }
    to { transform: scale(1.12); opacity: 1; }
}

@keyframes shaderPulseB {
    from { transform: scale(0.94); opacity: 0.55; }
    to { transform: scale(1.08); opacity: 1; }
}

@keyframes shaderPulseC {
    from { transform: scale(0.92); opacity: 0.5; }
    to { transform: scale(1.14); opacity: 1; }
}

main,
.nav,
.footer,
.loader,
.modal {
    position: relative;
}

main,
.nav,
.footer,
.modal {
    z-index: 2;
}
/* === END SHADER CANVAS === */

/* === FLOATING SPOTS OVERLAY === */
.bg-spots {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    background-image:
        radial-gradient(circle at 15% 25%, rgba(60, 60, 60, 0.012) 0%, transparent 50%),
        radial-gradient(circle at 85% 75%, rgba(60, 60, 60, 0.01) 0%, transparent 48%);
    background-size: 140% 140%;
    animation: gradientMove 25s ease infinite alternate;
}
/* === END SPOTS OVERLAY === */

/* === BACKGROUND ANIMATION === */
@keyframes gradientMove {
    0% { background-position: 0% 0%; }
    50% { background-position: 100% 100%; }
    100% { background-position: 0% 0%; }
}

/* === VERTICAL LINES (Grid) === */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 90%; /* Max width of lines spacing */
    max-width: 1200px;
    height: 100%;
    border-left: 1px solid rgba(0,0,0,0.055);
    border-right: 1px solid rgba(0,0,0,0.055);
    z-index: 1;
    pointer-events: none; /* Allows clicks to pass through */
}

@media (max-width: 768px) {
    body::before {
        display: none; /* Hide decorative lines on mobile to prevent text overlap */
    }
}
/* === END VERTICAL LINES === */

/* === NOISE TEXTURE (Delete block to revert) === */
body::after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.022;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.6' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}
/* === END NOISE TEXTURE === */

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul { list-style: none; }
img { max-width: 100%; display: block; }

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 120px 0;
}

/* --- Loader --- */
.loader {
    position: fixed;
    inset: 0;
    background: var(--white);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s var(--ease), visibility 0.6s;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-inner {
    text-align: center;
}

.loader-logo {
    width: auto;
    height: 60px;
    max-height: 60px;
    display: block;
    margin: 0 auto 20px;
    object-fit: contain;
}

.loader-text {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 500;
    color: var(--dark);
    letter-spacing: 0.2em;
    display: block;
    margin-bottom: 20px;
}

.loader-bar {
    width: 120px;
    height: 2px;
    background: var(--gray-mid);
    border-radius: 2px;
    overflow: hidden;
    margin: 0 auto;
}

.loader-progress {
    width: 0;
    height: 100%;
    background: var(--green);
    border-radius: 2px;
    animation: loaderFill 1.4s var(--ease) forwards;
}

@keyframes loaderFill {
    to { width: 100%; }
}

/* --- Navigation --- */
.top-info-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1001;
    background: rgba(184, 173, 162, 0.42);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}

.top-info-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 7px 24px;
    font-size: 0.78rem;
    color: #111111;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.top-info-inner a {
    color: #111111;
}

.top-info-inner a:hover {
    color: #000000;
}

.top-info-social {
    display: flex;
    align-items: center;
    gap: 14px;
}

.top-info-social a {
    color: #111111;
    transition: color 0.25s ease;
}

.top-info-social a:hover {
    color: #000000;
}

.nav {
    position: fixed;
    top: 32px;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.4s var(--ease);
}

.nav.scrolled {
    background: rgba(245, 240, 235, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 14px 0;
    box-shadow: 0 1px 20px rgba(0, 0, 0, 0.04);
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    backdrop-filter: none;
}

.logo-img {
    width: auto;
    height: 36px;
    max-height: 36px;
    display: block;
    object-fit: contain;
    filter: grayscale(1) brightness(0.72) contrast(0.9);
    transition: transform 0.3s var(--ease);
}

.nav-logo:hover .logo-img {
    transform: scale(1.05);
}

.nav-links {
    display: none;
    gap: 32px;
}

.nav-links a {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-text);
    position: relative;
    transition: color 0.3s ease;
}

/* Keep top nav readable over animated background */
.nav:not(.scrolled) .nav-links a {
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.15);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--green-dark);
    transition: width 0.3s var(--ease);
}

.nav-links a:hover {
    color: var(--dark);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    font-size: 0.875rem;
    font-weight: 500;
    padding: 10px 24px;
    background: var(--green);
    color: var(--white);
    border-radius: 100px;
    transition: all 0.3s var(--ease);
}

.nav-cta:hover {
    background: var(--green-dark);
    transform: translateY(-1px);
}

.nav-row-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-menu-btn {
    border: 1px solid rgba(0, 0, 0, 0.14);
    background: rgba(255, 255, 255, 0.86);
    color: var(--dark);
    border-radius: 100px;
    height: 40px;
    padding: 0 14px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.25s ease;
}

.nav-menu-btn:hover {
    background: #fff;
    border-color: rgba(184, 173, 162, 0.8);
    color: var(--sand);
}

.nav:not(.scrolled) .nav-menu-btn {
    background: rgba(15, 15, 15, 0.55);
    border-color: rgba(255, 255, 255, 0.26);
    color: #fff;
}

.nav-menu-btn-text {
    font-size: 0.82rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.nav-menu-btn-icon {
    width: 14px;
    height: 14px;
    position: relative;
    display: inline-block;
}

.nav-menu-btn-icon::before,
.nav-menu-btn-icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 14px;
    height: 1.5px;
    background: currentColor;
    transform: translate(-50%, -50%);
    transition: transform 0.25s ease;
}

.nav-menu-btn-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

body.menu-open .nav-menu-btn-icon::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

body.menu-open .nav-menu-btn-icon::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

/* Burger */
.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.burger span {
    width: 24px;
    height: 1.5px;
    background: var(--dark);
    transition: all 0.3s var(--ease);
    transform-origin: center;
}

.burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(4.5px, 4.5px);
}

.burger.active span:nth-child(2) {
    opacity: 0;
}

.burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(4.5px, -4.5px);
}

.nav-overlay-wrapper {
    position: fixed;
    inset: 0;
    z-index: 1400;
    visibility: hidden;
    pointer-events: none;
}

.nav-overlay-wrapper[data-nav="open"] {
    visibility: visible;
    pointer-events: auto;
}

.kinetic-overlay {
    position: absolute;
    inset: 0;
    background: rgba(5, 5, 5, 0.36);
    backdrop-filter: blur(4px);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.nav-overlay-wrapper[data-nav="open"] .kinetic-overlay {
    opacity: 1;
}

.menu-content {
    position: absolute;
    right: 0;
    top: 0;
    width: min(760px, 100%);
    height: 100%;
    transform: translateX(104%);
    transition: transform 0.55s cubic-bezier(0.65, 0.05, 0, 1);
    overflow: hidden;
}

.nav-overlay-wrapper[data-nav="open"] .menu-content {
    transform: translateX(0);
}

.menu-bg {
    position: absolute;
    inset: 0;
    background: #121212;
}

.backdrop-layer {
    position: absolute;
    inset: 0;
    transform: translateX(101%);
    transition: transform 0.5s cubic-bezier(0.65, 0.05, 0, 1);
}

.backdrop-layer.first { background: #efefef; transition-delay: 0.03s; }
.backdrop-layer.second { background: #dcdcdc; transition-delay: 0.09s; }
.backdrop-layer.third { background: #151515; transition-delay: 0.15s; }

.nav-overlay-wrapper[data-nav="open"] .backdrop-layer {
    transform: translateX(0);
}

.ambient-background-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.bg-shape {
    position: absolute;
    width: 62%;
    height: 62%;
    right: -10%;
    bottom: -8%;
    opacity: 0;
    transition: opacity 0.25s ease;
}

.bg-shape.active { opacity: 1; }

.shape-element {
    fill: rgba(175, 175, 175, 0.16);
    stroke: rgba(175, 175, 175, 0.24);
    stroke-width: 20;
}

.menu-content-wrapper {
    position: relative;
    z-index: 2;
    height: 100%;
    padding: 36px 38px;
    display: flex;
    flex-direction: column;
}

.menu-close-btn {
    margin-left: auto;
    border: none;
    background: transparent;
    color: rgba(255, 255, 255, 0.86);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
    font-size: 0.78rem;
}

.menu-list {
    margin-top: 56px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.menu-list-item {
    overflow: hidden;
}

.menu-list-item .nav-link {
    position: relative;
    display: inline-block;
    color: #f6f6f6;
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.9rem);
    line-height: 1.12;
    padding: 6px 0;
    transform: translateY(120%);
    transition: transform 0.5s cubic-bezier(0.65, 0.05, 0, 1), color 0.25s ease;
}

.nav-overlay-wrapper[data-nav="open"] .menu-list-item .nav-link {
    transform: translateY(0);
}

.nav-overlay-wrapper[data-nav="open"] .menu-list-item:nth-child(1) .nav-link { transition-delay: 0.22s; }
.nav-overlay-wrapper[data-nav="open"] .menu-list-item:nth-child(2) .nav-link { transition-delay: 0.27s; }
.nav-overlay-wrapper[data-nav="open"] .menu-list-item:nth-child(3) .nav-link { transition-delay: 0.32s; }
.nav-overlay-wrapper[data-nav="open"] .menu-list-item:nth-child(4) .nav-link { transition-delay: 0.37s; }
.nav-overlay-wrapper[data-nav="open"] .menu-list-item:nth-child(5) .nav-link { transition-delay: 0.42s; }
.nav-overlay-wrapper[data-nav="open"] .menu-list-item:nth-child(6) .nav-link { transition-delay: 0.47s; }
.nav-overlay-wrapper[data-nav="open"] .menu-list-item:nth-child(7) .nav-link { transition-delay: 0.52s; }
.nav-overlay-wrapper[data-nav="open"] .menu-list-item:nth-child(8) .nav-link { transition-delay: 0.57s; }

.menu-list-item .nav-link::before {
    content: "";
    position: absolute;
    left: -14px;
    top: 50%;
    width: 4px;
    height: 0;
    border-radius: 0 999px 999px 0;
    transform: translateY(-50%);
    background: var(--sand);
    transition: height 0.2s ease;
}

.menu-list-item .nav-link:hover {
    color: #fff;
}

.menu-list-item .nav-link:hover::before {
    height: 26px;
}

/* Force all logos to be gray */
img[src*="logo.svg"] {
    filter: grayscale(100%);
}

/* Hero Logo Circle */
.hero-logo-circle {
    width: 350px;
    height: 350px;
    border: 2px solid var(--green); /* Uses the new gray color */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    animation: fadeScaleIn 1.2s var(--ease) forwards;
}

.hero-logo-large {
    width: 60%;
    height: auto;
    /* Filter is already applied globally, but we can enforce it here too */
    filter: grayscale(100%);
    opacity: 0.9;
}

@keyframes fadeScaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* --- Buttons --- */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    background: var(--green);
    color: var(--white);
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.9375rem;
    border: none;
    border-radius: 100px;
    cursor: pointer;
    transition: all 0.35s var(--ease);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.5s var(--ease), height 0.5s var(--ease);
}

.btn-primary:hover {
    background: var(--green-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(158, 158, 158, 0.35);
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 0;
    font-weight: 500;
    font-size: 0.9375rem;
    color: var(--dark);
    border-bottom: 1.5px solid var(--dark);
    transition: all 0.3s ease;
}

.btn-ghost:hover {
    color: var(--green-dark);
    border-color: var(--green-dark);
}

.btn-full { width: 100%; }

/* --- Section header --- */
.section-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.section-num {
    font-family: var(--font-display);
    font-size: 0.875rem;
    color: var(--sand);
    font-weight: 500;
}

.section-tag {
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--green-dark);
    font-weight: 500;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 40px;
    color: var(--dark);
}

.section-title em {
    font-style: italic;
    color: var(--sand);
}

/* --- Hero --- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 24px 80px;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    gap: 60px;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--gray-text);
    margin-bottom: 32px;
    font-weight: 500;
}

.hero-tag,
.hero-desc,
.hero-scroll {
    color: rgba(255, 255, 255, 0.92);
    text-shadow: 0 1px 12px rgba(0, 0, 0, 0.16);
}

.tag-line {
    width: 40px;
    height: 1.5px;
    background: var(--sand);
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    /* Softer headline rendering */
    font-weight: 400;
    letter-spacing: -0.01em;
    text-rendering: optimizeLegibility;
    line-height: 1.1;
    margin-bottom: 28px;
}

.title-line {
    display: block;
}

.title-italic {
    font-style: italic;
    color: var(--sand);
    text-shadow: none;
}

.hero-desc {
    font-size: 1.0625rem;
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 480px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
}

.hero-visual {
    flex: 1;
    max-width: 500px;
}

.hero-img {
    width: 100%;
    height: auto;
    aspect-ratio: 3/4;
    object-fit: cover;
    border-radius: var(--radius);
    display: block;
}

.hero-img-placeholder {
    width: 100%;
    aspect-ratio: 3/4;
    background: var(--gray-bg);
    border-radius: var(--radius);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    color: var(--gray-text);
    font-size: 0.875rem;
}

.placeholder-icon { opacity: 0.4; }

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.92);
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: var(--green);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.5); }
    50% { opacity: 1; transform: scaleY(1); }
}

/* --- Marquee --- */
.marquee {
    overflow: hidden;
    background: var(--green);
    padding: 14px 0;
    white-space: nowrap;
}

.marquee-track {
    display: flex;
    gap: 24px;
    animation: marqueeScroll 20s linear infinite;
    width: max-content;
}

.marquee-track span {
    font-family: var(--font-display);
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--white);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.marquee-track .sep {
    opacity: 0.5;
}

@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* --- About --- */
.about {
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    margin-bottom: 80px;
}

.about-right p {
    color: var(--gray-text);
    font-size: 1.0625rem;
    line-height: 1.7;
    margin-bottom: 16px;
}

.about-tagline {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-style: italic;
    color: var(--green-dark);
    margin-top: 16px;
    line-height: 1.5;
}

.about-services-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px 40px;
    margin: 48px 0 32px;
    padding: 32px;
    background: var(--gray-bg);
    border-radius: var(--radius);
}

.about-service-item {
    display: block;
    font-size: 1.0625rem;
    line-height: 2;
    color: var(--dark);
}

.about-cta-text {
    text-align: center;
    font-size: 1.125rem;
    color: var(--gray-text);
    margin-bottom: 48px;
    line-height: 1.6;
}

.about-cta-text strong {
    color: var(--green-dark);
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    align-items: start;
}

.values-accordion {
    width: 100%;
    background: var(--gray-bg);
    border-radius: var(--radius);
    overflow: hidden;
}

.value-acc-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

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

.value-acc-trigger {
    width: 100%;
    text-align: left;
    background: transparent;
    border: none;
    padding: 20px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    cursor: pointer;
    transition: background 0.25s ease;
}

.value-acc-trigger h3 {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--gray-text);
    transition: color 0.25s ease;
}

.value-num {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--green-dark);
    font-weight: 600;
    display: inline-block;
    min-width: 54px;
}

.value-acc-item.active .value-acc-trigger {
    background: rgba(255, 255, 255, 0.66);
}

.value-acc-item.active .value-acc-trigger h3 {
    color: var(--dark);
}

.values-preview {
    background: var(--gray-bg);
    border-radius: var(--radius);
    padding: 28px;
    min-height: 100%;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.04);
}

.value-preview-num {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.2rem);
    color: var(--green-dark);
    display: block;
    margin-bottom: 8px;
}

.values-preview h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.values-preview p {
    color: var(--gray-text);
    line-height: 1.7;
}

.values-preview .value-preview-num,
.values-preview h3,
.values-preview p {
    transition: opacity 0.22s ease, transform 0.22s ease;
    opacity: 1;
    transform: translateY(0);
}

.values-preview.is-changing .value-preview-num,
.values-preview.is-changing h3,
.values-preview.is-changing p {
    opacity: 0;
    transform: translateY(8px);
}

/* --- Services --- */
.services {
    background: var(--gray-bg);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.service-card {
    background: transparent;
    padding: 36px 28px;
    border-radius: 0;
    border-right: 1px solid rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    transition: background 0.35s var(--ease);
    position: relative;
    overflow: hidden;
}

.service-card:nth-child(3n + 1) {
    border-left: 1px solid rgba(0, 0, 0, 0.08);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 3px;
    height: 20px;
    border-radius: 0 999px 999px 0;
    background: rgba(0, 0, 0, 0.18);
    z-index: 3;
    transition: height 0.25s ease, background 0.25s ease;
}

.service-card::after {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.25s ease;
    pointer-events: none;
}

.service-card:nth-child(-n + 3)::after {
    background: linear-gradient(to top, rgba(190, 190, 190, 0.2), transparent 60%);
}

.service-card:nth-child(n + 4)::after {
    background: linear-gradient(to bottom, rgba(190, 190, 190, 0.2), transparent 60%);
}

.service-card:hover::after {
    opacity: 1;
}

.service-card:hover::before {
    height: 32px;
    background: var(--green-dark);
}

.service-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--gray-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--green-dark);
    transition: background 0.3s ease, color 0.3s ease;
    position: relative;
    z-index: 2;
}

.service-icon i {
    font-size: 28px;
}

.service-card:hover .service-icon {
    background: var(--green);
    color: var(--white);
}

.service-card h3 {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 500;
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
    transition: transform 0.22s ease;
}

.service-card p {
    font-size: 0.875rem;
    color: var(--gray-text);
    line-height: 1.6;
    margin-bottom: 16px;
    position: relative;
    z-index: 2;
}

.service-price {
    font-weight: 600;
    color: var(--green-dark);
    font-size: 0.9375rem;
    position: relative;
    z-index: 2;
}

.service-card:hover h3 {
    transform: translateX(8px);
}

/* --- Advantages --- */
.advantages {
    background: var(--white);
}

.adv-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 80px;
}

.adv-card {
    text-align: center;
    padding: 40px 20px;
    border-radius: var(--radius);
    background: var(--gray-bg);
    transition: transform 0.3s var(--ease);
}

.adv-card:hover {
    transform: translateY(-4px);
}

.adv-number {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 600;
    color: var(--green-dark);
    margin-bottom: 8px;
}

.adv-card p {
    font-size: 0.875rem;
    color: var(--gray-text);
}

/* Reviews slider */
.reviews-wrap {
    max-width: 980px;
    margin: 0 auto;
    text-align: center;
}

.reviews-heading {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 500;
    margin-bottom: 28px;
}

.reviews-slider {
    position: relative;
    height: 360px;
    margin: 0 auto;
    overflow: visible;
}

.review-slide {
    position: absolute;
    top: 50%;
    left: 50%;
    width: min(640px, calc(100% - 24px));
    padding: 30px 28px 24px;
    text-align: left;
    border-radius: 18px;
    border: 1px solid rgba(184, 173, 162, 0.48);
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 14px 34px rgba(80, 70, 60, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, -50%) scale(0.9);
    transition: transform 0.5s var(--ease), opacity 0.5s var(--ease), box-shadow 0.5s var(--ease), background 0.5s var(--ease);
    pointer-events: none;
}

.review-slide::before {
    content: "";
    position: absolute;
    right: 18px;
    top: 10px;
    font-size: 3rem;
    line-height: 1;
    color: rgba(163, 149, 136, 0.24);
    font-family: var(--font-display);
}

.review-slide.active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1) rotate(0deg);
    z-index: 3;
    pointer-events: auto;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 22px 44px rgba(80, 70, 60, 0.18);
}

.review-slide.is-prev {
    opacity: 0.68;
    visibility: visible;
    transform: translate(calc(-50% - 190px), calc(-50% + 8px)) scale(0.9) rotate(-3deg);
    z-index: 2;
}

.review-slide.is-next {
    opacity: 0.68;
    visibility: visible;
    transform: translate(calc(-50% + 190px), calc(-50% + 8px)) scale(0.9) rotate(3deg);
    z-index: 2;
}

.review-text {
    font-family: var(--font-display);
    font-size: 1.08rem;
    font-style: italic;
    line-height: 1.68;
    color: var(--dark-light);
    margin-bottom: 18px;
}

.review-author {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.review-name {
    font-weight: 600;
    font-size: 0.95rem;
}

.review-service {
    font-size: 0.82rem;
    color: var(--gray-text);
}

.reviews-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 32px;
}

.rev-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1.5px solid var(--gray-mid);
    background: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    transition: all 0.3s ease;
}

.rev-btn:hover {
    border-color: var(--green);
    color: var(--green-dark);
}

.rev-dots {
    display: flex;
    gap: 8px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gray-mid);
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--green);
    width: 28px;
    border-radius: 4px;
}

@media (max-width: 900px) {
    .reviews-slider {
        height: 420px;
    }

    .review-slide {
        width: min(620px, calc(100% - 14px));
    }

    .review-slide.is-prev {
        transform: translate(calc(-50% - 90px), calc(-50% + 10px)) scale(0.92) rotate(-2deg);
    }

    .review-slide.is-next {
        transform: translate(calc(-50% + 90px), calc(-50% + 10px)) scale(0.92) rotate(2deg);
    }
}

@media (max-width: 640px) {
    .reviews-wrap {
        max-width: 100%;
    }

    .reviews-slider {
        height: 360px;
    }

    .review-slide {
        width: calc(100% - 4px);
        padding: 20px 16px 16px;
        border-radius: 14px;
    }

    .review-slide.active {
        transform: translate(-50%, -50%) scale(1);
    }

    .review-slide.is-prev,
    .review-slide.is-next {
        opacity: 0;
        visibility: hidden;
        transform: translate(-50%, -50%) scale(0.88);
    }

    .review-text {
        font-size: 0.96rem;
        line-height: 1.58;
    }
}

/* --- Team --- */
.team {
    background: var(--gray-bg);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.team-card {
    text-align: center;
    padding: 32px 20px;
    background: var(--white);
    border-radius: var(--radius);
    transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.team-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 50px rgba(0,0,0,0.06);
}

.team-photo {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
}

.team-photo-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}

/* Team leads (Maria & Elena) */
.team-leads {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-bottom: 48px;
    align-items: stretch;
}

.team-lead-card {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 28px;
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    padding: 24px;
    border: 2px solid var(--green);
    transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
    align-items: start;
}

.team-lead-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 50px rgba(0,0,0,0.08);
}

.team-lead-photo {
    width: 200px;
    height: 260px;
    border-radius: 12px;
    overflow: hidden;
}

.team-lead-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.team-lead-info {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 8px;
}

.team-lead-badge {
    display: inline-block;
    width: fit-content;
    padding: 4px 14px;
    background: var(--green);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.team-lead-info h3 {
    font-family: var(--font-display);
    font-size: 1.375rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.team-lead-info .team-role {
    margin-bottom: 12px;
}

.team-lead-info p {
    font-size: 0.875rem;
    color: var(--gray-text);
    line-height: 1.6;
}

.photo-placeholder {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--green);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 500;
}

.team-card h3 {
    font-family: var(--font-display);
    font-size: 1.0625rem;
    font-weight: 500;
    margin-bottom: 4px;
}

.team-role {
    font-size: 0.8125rem;
    color: var(--green-dark);
    font-weight: 500;
    display: block;
    margin-bottom: 12px;
}

.team-card p {
    font-size: 0.8125rem;
    color: var(--gray-text);
    line-height: 1.6;
}

/* --- Gallery Overlay --- */
.gallery-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.92);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.gallery-overlay.active {
    opacity: 1;
    visibility: visible;
}

.gallery-overlay-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 40px;
    padding-top: calc(24px + env(safe-area-inset-top, 0px));
    position: sticky;
    top: 0;
    z-index: 10;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(10px);
}

.gallery-overlay-header h2 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--white);
    font-weight: 500;
}

.gallery-close {
    width: 48px;
    height: 48px;
    border: none;
    background: rgba(255,255,255,0.1);
    color: var(--white);
    font-size: 1.75rem;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 30;
}

.gallery-close:hover {
    background: rgba(255,255,255,0.2);
}

body.gallery-open .top-info-bar,
body.gallery-open .nav {
    opacity: 0;
    pointer-events: none;
}

.gallery-overlay-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 300px;
    gap: 12px;
    padding: 12px 40px 60px;
}

.gallery-overlay-large {
    grid-column: span 2;
}

.gallery-overlay-item {
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
}

.gallery-overlay-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s var(--ease);
}

.gallery-overlay-item:hover img {
    transform: scale(1.04);
}

/* Gallery trigger link style */
.gallery-trigger {
    cursor: pointer;
}

/* --- Lightbox --- */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox img {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
    border: none;
    background: rgba(255,255,255,0.15);
    color: var(--white);
    font-size: 1.75rem;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* --- Video Section --- */
.video-section {
    background: var(--gray-bg);
}

.video-subtitle {
    color: var(--gray-text);
    font-size: 1.0625rem;
    margin-bottom: 40px;
    max-width: 560px;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 280px;
    gap: 16px;
}

.video-card--large {
    grid-column: span 2;
}

.video-card {
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    background: var(--dark);
}

.video-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: opacity 0.3s ease;
}

.video-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(255,255,255,0.9);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    transition: transform 0.3s var(--ease), background 0.3s ease;
    z-index: 2;
}

.video-play svg {
    margin-left: 3px;
}

.video-card:hover .video-play {
    transform: translate(-50%, -50%) scale(1.1);
    background: var(--white);
}

.video-card.playing .video-play {
    opacity: 0;
    pointer-events: none;
}

.video-card.playing:hover .video-play {
    opacity: 1;
    pointer-events: auto;
}

/* --- Booking --- */
.booking {
    background: var(--gray-bg);
}

.booking-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.booking-desc {
    color: var(--gray-text);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 32px;
}

.booking-alt-link {
    margin-bottom: 18px;
}

.booking-alt-link a {
    display: inline-flex;
    align-items: center;
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid rgba(184, 173, 162, 0.6);
    background: rgba(255, 255, 255, 0.72);
    color: var(--dark);
    font-size: 0.86rem;
    font-weight: 600;
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.booking-alt-link a:hover {
    transform: translateY(-1px);
    border-color: rgba(163, 149, 136, 0.85);
    background: rgba(255, 255, 255, 0.9);
}

.booking-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.booking-info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9375rem;
    color: var(--dark);
}

.booking-info-item svg {
    color: var(--green-dark);
    flex-shrink: 0;
}

.booking-info-item i {
    color: var(--green-dark);
    flex-shrink: 0;
    width: 20px;
    text-align: center;
}

/* Form */
.booking-form {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: 0 4px 30px rgba(0,0,0,0.04);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--dark);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1.5px solid var(--gray-mid);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.9375rem;
    color: var(--dark);
    background: var(--gray-bg);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(158, 158, 158, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #b0b0b0;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M2 4L6 8L10 4' fill='none' stroke='%236B6B6B' stroke-width='1.5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.form-group input.shake,
.form-group select.shake {
    animation: formShake 0.4s ease;
    border-color: #e87070;
}

@keyframes formShake {
    0%, 100% { transform: translateX(0); }
    20%, 60% { transform: translateX(-6px); }
    40%, 80% { transform: translateX(6px); }
}

/* --- Contact --- */
.contact {
    background: var(--white);
    padding-bottom: 80px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 32px;
}

.contact-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gray-text);
    font-weight: 500;
}

.contact-value {
    font-size: 1rem;
    color: var(--dark);
    transition: color 0.3s ease;
}

a.contact-value:hover {
    color: var(--green-dark);
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid var(--gray-mid);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    transition: all 0.3s ease;
}

.social-link:hover {
    border-color: var(--green);
    background: var(--green);
    color: var(--white);
}

.social-link i {
    font-size: 20px;
}

.contact-map {
    border-radius: var(--radius);
    overflow: hidden;
    height: 360px;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    background: var(--gray-bg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--gray-text);
    font-size: 0.875rem;
}

/* --- Footer --- */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 60px 0 0;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo-img {
    width: 48px;
    height: auto;
    margin-bottom: 8px;
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    display: block;
    margin-bottom: 12px;
}

.footer-brand p {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.6;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-heading {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(255,255,255,0.4);
    font-weight: 500;
    margin-bottom: 6px;
}

.footer-col a,
.footer-col span {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.7);
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: var(--green);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.4);
}

.footer-privacy:hover {
    color: var(--green);
}

/* Developer credit */
.dev-banner {
    text-align: center;
    padding: 16px 0;
    border-top: 1px solid rgba(255,255,255,0.06);
    font-size: 0.75rem;
    color: rgba(255,255,255,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.dev-banner a {
    color: rgba(255,255,255,0.5);
    transition: color 0.3s ease;
}

.dev-banner a:hover {
    color: var(--green);
}

/* --- Modal --- */
.modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-box {
    background: var(--white);
    padding: 48px;
    border-radius: var(--radius);
    text-align: center;
    max-width: 420px;
    width: 90%;
    position: relative;
    transform: translateY(20px) scale(0.96);
    transition: transform 0.4s var(--ease);
}

.modal.active .modal-box {
    transform: translateY(0) scale(1);
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--gray-text);
    transition: color 0.2s;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    color: var(--dark);
}

.modal-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--green);
    color: var(--white);
    font-size: 1.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.modal-box h3 {
    font-family: var(--font-display);
    font-size: 1.375rem;
    margin-bottom: 8px;
}

.modal-box p {
    color: var(--gray-text);
    font-size: 0.9375rem;
}

/* --- Reveal animation --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
        padding-top: 100px;
        gap: 40px;
    }

    .hero-content { max-width: 100%; }

    .hero-visual { 
        max-width: 100%;
        width: 100%;
    }

    .hero-img-placeholder {
        aspect-ratio: 16/9;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-card {
        border-left: none;
    }

    .service-card:nth-child(3n + 1) {
        border-left: none;
    }

    .service-card:nth-child(2n + 1) {
        border-left: 1px solid rgba(0, 0, 0, 0.08);
    }

    .service-card:nth-child(-n + 2)::after {
        background: linear-gradient(to top, rgba(190, 190, 190, 0.2), transparent 60%);
    }

    .service-card:nth-child(n + 3)::after {
        background: linear-gradient(to bottom, rgba(190, 190, 190, 0.2), transparent 60%);
    }

    .adv-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-leads {
        grid-template-columns: 1fr;
    }

    .booking-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .gallery-overlay-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 200px;
        padding: 12px 20px 60px;
    }

    .gallery-overlay-large {
        grid-column: span 1;
    }

    .video-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 220px;
    }

    .video-card--large {
        grid-column: span 1;
    }

    .about-services-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .section { padding: 80px 0; }

    .nav-links, .nav-cta { display: none; }
    .burger { display: none !important; }

    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: var(--white);
        align-items: center;
        justify-content: center;
        gap: 28px;
        z-index: 999;
    }

    .nav-links.active a {
        font-size: 1.25rem;
        color: var(--dark);
    }

    .nav-row-right {
        margin-left: auto;
    }

    .nav-menu-btn {
        height: 38px;
        padding: 0 12px;
    }

    .menu-content {
        width: 100%;
    }

    .menu-content-wrapper {
        padding: 28px 24px;
    }

    .top-info-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 7px 24px;
    font-size: 0.78rem;
    color: #111111;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }

    .section-title {
        font-size: 1.75rem;
    }

    .adv-grid {
        grid-template-columns: 1fr;
    }

    .review-text {
        font-size: 1rem;
    }

    .gallery-overlay-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 200px;
    }

    .team-lead-card {
        grid-template-columns: 120px 1fr;
        gap: 16px;
        padding: 14px;
        text-align: left;
    }

    .team-lead-photo {
        width: 120px;
        height: 160px;
    }

    .team-lead-info {
        align-items: flex-start;
        padding-top: 4px;
    }

    .team-lead-info h3 {
        font-size: 1rem;
    }

    .team-lead-badge {
        font-size: 0.6875rem;
        padding: 3px 10px;
    }

    .team-lead-info p {
        font-size: 0.75rem;
    }

    .video-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 200px;
    }
}

/* --- Mobile header spacing fixes --- */
@media (max-width: 768px) {
    .top-info-inner {
        padding: 6px 14px;
        font-size: 0.72rem;
        gap: 8px;
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }

    .top-info-social {
        gap: 10px;
    }

    .nav {
        top: 52px;
        padding: 10px 0;
    }

    .nav-inner {
        padding: 0 16px;
    }

    .logo-img {
        height: 30px;
        max-height: 30px;
    }

    .hero {
        padding-top: 190px;
    }

    /* Mobile hero: use gray text on the light mobile background (no shadow/outline). */
    .hero-tag,
    .hero-desc {
        color: var(--gray-text);
        text-shadow: none;
    }

    .hero-actions .btn-ghost {
        color: var(--gray-text);
        border-color: var(--gray-text);
    }
}

@media (max-width: 480px) {
    .top-info-inner {
        font-size: 0.68rem;
        padding: 6px 10px;
    }

    .nav {
        top: 58px;
    }

    .logo-img {
        height: 28px;
        max-height: 28px;
    }

    .nav-menu-btn {
        height: 34px;
        padding: 0 10px;
    }

    .hero {
        padding-top: 205px;
    }
}

/* === Extra warm accents (#b8ada2) === */
.hero-tag {
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid rgba(184, 173, 162, 0.62);
    background: rgba(255, 255, 255, 0.18);
}

.section-tag {
    padding: 4px 10px;
    border-radius: 999px;
    border: 1px solid rgba(184, 173, 162, 0.58);
    background: rgba(184, 173, 162, 0.14);
}

.about-services-list {
    background: rgba(255, 255, 255, 0.45);
    box-shadow: inset 0 0 0 1px rgba(184, 173, 162, 0.45);
}

.values-accordion {
    box-shadow: inset 0 0 0 1px rgba(184, 173, 162, 0.34);
}

.value-acc-item {
    border-bottom: 1px solid rgba(184, 173, 162, 0.36);
}

.value-acc-item.active .value-acc-trigger {
    background: rgba(184, 173, 162, 0.2);
}

.values-preview {
    background: rgba(255, 255, 255, 0.52);
    box-shadow: inset 0 0 0 1px rgba(184, 173, 162, 0.46);
}

.services-grid {
    border-top: 1px solid rgba(184, 173, 162, 0.52);
}

.service-card {
    border-right: 1px solid rgba(184, 173, 162, 0.44);
    border-bottom: 1px solid rgba(184, 173, 162, 0.44);
}

.service-card:nth-child(3n + 1) {
    border-left: 1px solid rgba(184, 173, 162, 0.44);
}

.adv-card {
    background: linear-gradient(180deg, rgba(184, 173, 162, 0.16), rgba(255, 255, 255, 0.78));
    box-shadow: inset 0 0 0 1px rgba(184, 173, 162, 0.32);
}

@media (max-width: 768px) {
    .hero-tag {
        background: rgba(255, 255, 255, 0.25);
    }
    .section-tag {
        padding: 3px 9px;
    }
}



/* === Hero ghost CTA visibility boost === */
.hero-actions .btn-ghost {
    padding: 14px 22px;
    border: 1.5px solid rgba(255, 255, 255, 0.78);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    color: #ffffff;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.hero-actions .btn-ghost:hover {
    background: rgba(255, 255, 255, 0.94);
    color: var(--dark);
    border-color: rgba(184, 173, 162, 0.95);
    transform: translateY(-2px);
}

/* Mobile override: the rule above is defined later in the file and can override mobile colors.
   Keep the hero CTA as a simple gray underlined link on mobile. */
@media (max-width: 768px) {
    .hero-actions .btn-ghost {
        color: var(--gray-text) !important;
        background: transparent !important;
        border: none !important;
        border-bottom: 1.5px solid var(--gray-text) !important;
        text-shadow: none !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
    }
}

/* --- Mobile fix: values block (7+ years etc.) --- */
@media (max-width: 768px) {
    .values-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .values-accordion,
    .values-preview {
        width: 100%;
    }

    .value-acc-trigger {
        padding: 16px 14px;
        gap: 10px;
        align-items: flex-start;
    }

    .value-acc-trigger h3 {
        font-size: 1rem;
        line-height: 1.35;
        white-space: normal;
        overflow-wrap: anywhere;
        word-break: break-word;
        min-width: 0;
        flex: 1;
    }

    .value-num {
        font-size: 1.3rem;
        min-width: 44px;
    }

    .values-preview {
        padding: 18px 14px;
        min-height: auto;
    }

    .values-preview h3 {
        font-size: 1.12rem;
        line-height: 1.35;
    }

    .values-preview p {
        font-size: 0.95rem;
        line-height: 1.55;
        overflow-wrap: anywhere;
        word-break: break-word;
    }
}

/* --- Services cards grid (prompt-adapted) --- */
.services-grid.modern-resource-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    border-top: none;
}

.services-grid.modern-resource-grid .service-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 228px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(184, 173, 162, 0.45);
    border-radius: 14px;
    padding: 20px;
    box-shadow: 0 6px 18px rgba(72, 62, 54, 0.06);
    text-decoration: none;
    transition: transform 0.26s ease, box-shadow 0.26s ease, border-color 0.26s ease;
}

.services-grid.modern-resource-grid .service-card::before,
.services-grid.modern-resource-grid .service-card::after {
    display: none;
}

.services-grid.modern-resource-grid .service-card:nth-child(3n + 1) {
    border-left: 1px solid rgba(184, 173, 162, 0.45);
}

.services-grid.modern-resource-grid .service-card:hover {
    transform: translateY(-4px) scale(1.01);
    border-color: rgba(163, 149, 136, 0.75);
    box-shadow: 0 16px 34px rgba(72, 62, 54, 0.12);
}

.react-service-card {
    opacity: 0;
    animation: reactCardIn 0.5s ease forwards;
}

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

.service-card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 12px;
}

.service-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.service-head {
    min-width: 0;
}

.services-grid.modern-resource-grid .service-head h3 {
    margin: 0;
    font-size: 1.04rem;
    line-height: 1.3;
    color: #202020;
}

.service-updated {
    margin: 4px 0 0;
    font-size: 0.79rem;
    color: var(--gray-text);
}

.services-grid.modern-resource-grid .service-arrow {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    color: var(--gray-text);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 34px;
    transition: transform 0.22s ease, color 0.22s ease, border-color 0.22s ease;
}

.services-grid.modern-resource-grid .service-card:hover .service-arrow {
    transform: translate(2px, -2px);
    color: var(--green-dark);
    border-color: rgba(163, 149, 136, 0.7);
}

.services-grid.modern-resource-grid .service-icon {
    width: 44px;
    height: 44px;
    margin: 0;
    border-radius: 10px;
    background: rgba(184, 173, 162, 0.16);
}

.services-grid.modern-resource-grid .service-icon i {
    font-size: 20px;
}

.services-grid.modern-resource-grid .service-card:hover .service-icon {
    background: rgba(184, 173, 162, 0.28);
    color: var(--green-deep);
}

.service-desc {
    margin: 0;
    font-size: 0.88rem;
    line-height: 1.56;
    color: var(--gray-text);
}

@media (max-width: 1024px) {
    .services-grid.modern-resource-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .services-grid.modern-resource-grid .service-card:nth-child(3n + 1) {
        border-left: 1px solid rgba(184, 173, 162, 0.45);
    }
}

@media (max-width: 640px) {
    .services-grid.modern-resource-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .services-grid.modern-resource-grid .service-card {
        min-height: 196px;
        padding: 16px;
    }

    .services-grid.modern-resource-grid .service-head h3 {
        font-size: 0.98rem;
    }
}

/* --- About services: enhanced chips style --- */
.about-services-list {
    position: relative;
    display: block;
    width: 100%;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.7), rgba(184, 173, 162, 0.14));
    box-shadow:
        inset 0 0 0 1px rgba(184, 173, 162, 0.42),
        0 16px 36px rgba(94, 84, 75, 0.08);
}

.about-services-list::before {
    content: "";
    position: absolute;
    inset: -40% auto auto -10%;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(184, 173, 162, 0.22), transparent 68%);
    pointer-events: none;
}

.about-services-col {
    display: grid;
    gap: 12px;
    align-content: start;
}

.about-service-item {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 48px;
    padding: 11px 14px 11px 38px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(184, 173, 162, 0.46);
    line-height: 1.4;
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease, background 0.24s ease;
}

.about-service-item::before {
    content: "";
    position: absolute;
    left: 14px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--green-dark);
    box-shadow: 0 0 0 5px rgba(184, 173, 162, 0.2);
}

.about-service-item:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(163, 149, 136, 0.7);
    box-shadow: 0 10px 22px rgba(94, 84, 75, 0.12);
}

/* Gooey morphing headline for services block */
.about-services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.services-gooey {
    position: relative;
    width: 100%;
    margin: 4px 0 2px;
    padding: 6px 0;
}

.services-gooey-svg {
    position: absolute;
    width: 0;
    height: 0;
}

.services-gooey-stage {
    position: relative;
    min-height: 138px;
    padding: 0 24px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    filter: url(#servicesThreshold);
}

.services-gooey-stage--react {
    filter: url(#servicesThresholdReact);
}

.services-gooey-text {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 clamp(12px, 4vw, 44px);
    user-select: none;
    font-family: var(--font-body);
    font-size: clamp(2rem, 4.6vw, 3.25rem);
    font-weight: 700;
    line-height: 1.14;
    color: #1a1a1a;
    letter-spacing: 0;
    text-shadow: none;
    white-space: normal;
    text-wrap: balance;
    text-align: center;
    transform: none;
}

@media (max-width: 768px) {
    .about-services-list {
        padding: 18px;
        gap: 14px;
    }

    .services-gooey {
        margin: 0;
        padding: 0;
    }

    .services-gooey-stage {
        min-height: 96px;
        padding: 0 8px;
    }

    .services-gooey-text {
        font-size: clamp(1.2rem, 7vw, 2rem);
        line-height: 1.16;
    }

    .about-service-item {
        font-size: 0.98rem;
        min-height: 44px;
        padding: 10px 12px 10px 34px;
    }
}


/* --- Header adjustments requested --- */
.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    backdrop-filter: none;
}

.nav-logo-mark {
    display: none;
}

.nav-menu-btn {
    width: 42px;
    height: 42px;
    padding: 0;
    border-radius: 11px;
    justify-content: center;
    gap: 0;
}

.nav-menu-btn-text {
    display: none;
}

.nav-menu-btn-icon {
    width: 18px;
    height: 14px;
    display: inline-flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: stretch;
    position: static;
}

.nav-menu-btn-icon::before,
.nav-menu-btn-icon::after {
    display: none;
}

.nav-menu-btn-icon .burger-line {
    display: block;
    width: 100%;
    height: 1.8px;
    border-radius: 2px;
    background: currentColor;
    transition: transform 0.25s ease, opacity 0.2s ease;
    transform-origin: center;
}

body.menu-open .nav-menu-btn-icon .burger-line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

body.menu-open .nav-menu-btn-icon .burger-line:nth-child(2) {
    opacity: 0;
}

body.menu-open .nav-menu-btn-icon .burger-line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

/* Floating online booking button */
.floating-booking-btn {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 1800;
    padding: 12px 16px;
    border-radius: 999px;
    background: #111;
    color: #fff;
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.24);
    transition: transform 0.22s ease, background 0.22s ease;
}

.floating-booking-btn:hover {
    background: #222;
    transform: translateY(-2px);
}

.floating-booking-btn.is-hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px);
}

@media (max-width: 768px) {
    .floating-booking-btn {
        right: 12px;
        bottom: 12px;
        padding: 11px 14px;
        font-size: 0.82rem;
    }
}

/* Cookie banner */
.cookie-banner {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 14px;
    z-index: 1900;
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 12px 14px;
    border-radius: 12px;
    background: rgba(20, 20, 20, 0.92);
    color: #f5f5f5;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
}

.cookie-banner p {
    margin: 0;
    font-size: 0.82rem;
    line-height: 1.45;
}

.cookie-actions {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.cookie-banner a {
    color: #fff;
    text-decoration: underline;
}

.cookie-accept-btn {
    border: 1px solid rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 999px;
    padding: 9px 14px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
}

.cookie-accept-btn:hover {
    background: rgba(255, 255, 255, 0.18);
}

.cookie-decline-btn {
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: transparent;
    color: rgba(255, 255, 255, 0.92);
    border-radius: 999px;
    padding: 9px 14px;
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    white-space: nowrap;
}

.cookie-decline-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.cookie-banner.is-visible {
    display: flex;
}

/* Mobile performance: keep background, reduce heavy overlays */
@media (max-width: 768px) {
    body::after {
        display: none;
    }

    .shader-react-layer--dots,
    .shader-react-glow {
        display: none;
    }

    .bg-spots {
        opacity: 0.55;
        animation-duration: 40s;
    }

    .cookie-banner {
        left: 10px;
        right: 10px;
        bottom: 10px;
        align-items: flex-start;
        flex-direction: column;
    }

    .cookie-actions {
        width: 100%;
    }

    /* Lighter mobile rendering */
    .top-info-bar,
    .nav.scrolled,
    .nav-menu-btn,
    .services-gooey,
    .adv-card,
    .service-card,
    .team-lead-card,
    .booking-form,
    .modal-box {
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
    }

    .service-card,
    .adv-card,
    .team-lead-card,
    .booking-form,
    .modal-box {
        box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08) !important;
    }

    .reveal {
        transition-duration: 0.45s;
    }

    .marquee-track {
        animation-duration: 30s;
    }

    .services-grid.modern-resource-grid .service-card:hover,
    .team-lead-card:hover,
    .adv-card:hover {
        transform: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
        scroll-behavior: auto !important;
    }
}

@media (min-width: 1025px) {
    .nav-cta {
        display: none;
    }
}
