/*
Theme Name: S&R Siivous Palvelu Theme
Theme URI: https://www.rssiivous.fi/
Author: Antigravity
Author URI: https://deepmind.google/
Description: A custom theme for S&R Siivous Palvelu website.
Version: 1.2.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: rssiivous-theme
*/

        /* =============================================
           DESIGN TOKENS — Navy / Sky Blue Theme
        ============================================= */
        :root {
            --navy:        #0a1628;
            --navy-mid:    #0f2040;
            --navy-soft:   #162a50;
            --sky:         #38bdf8;
            --sky-light:   #7dd3fc;
            --sky-dim:     #0ea5e9;
            --white:       #ffffff;
            --off-white:   #f0f7ff;
            --pale-blue:   #e8f4fd;
            --text-dark:   #0a1628;
            --text-body:   #334155;
            --text-soft:   #64748b;
            --border:      #cbd5e1;
            --border-soft: #e2eaf4;
            --transition:  all 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
            --shadow-sm:   0 1px 3px rgba(10,22,40,0.06);
            --shadow-md:   0 4px 16px rgba(10,22,40,0.10);
            --shadow-lg:   0 12px 36px rgba(10,22,40,0.14);
            --shadow-xl:   0 24px 60px rgba(10,22,40,0.18);
        }

        *, *::before, *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html { scroll-behavior: smooth; }

        body {
            background-color: var(--white);
            color: var(--text-dark);
            font-family: 'Inter', system-ui, sans-serif;
            font-weight: 400;
            font-size: 16px;
            line-height: 1.65;
            overflow-x: hidden;
        }

        h1, h2, h3, h4, h5 {
            font-family: 'Cormorant Garamond', Georgia, serif;
            font-weight: 400;
            letter-spacing: -0.01em;
        }

        img { max-width: 100%; display: block; }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 clamp(1.25rem, 4vw, 3rem);
        }


        /* =============================================
           TOPBAR — Glass effect (Kalm Moments style)
        ============================================= */
        #site-header {
            position: fixed;
            top: 0; left: 0; right: 0;
            z-index: 9999;
            transition: var(--transition);
        }

        /* Header inner — position:relative so logo can be absolute */
        #site-header .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between; /* Space out elements: logo left, menu center, CTA right */
            height: 120px;
            padding: 0 clamp(1.25rem, 4vw, 3rem);
            max-width: 100%;
            position: relative;
            transition: height 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
        }

        #site-header.scrolled .header-inner {
            height: 80px;
        }

        /* Glass becomes visible on scroll */
        #site-header.scrolled {
            background: rgba(10, 22, 40, 0.85);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
            box-shadow: 0 4px 32px rgba(0,0,0,0.25);
        }

        /* Always glass from top on light sections, but fully transparent initially */
        #site-header:not(.scrolled) {
            background: linear-gradient(to bottom, rgba(10,22,40,0.55) 0%, rgba(10,22,40,0) 100%);
        }

        /* Logo — absolutely pinned to top-left corner with same spacing as header-inner's padding */
        .nav-logo {
            position: absolute;
            top: 15%; /* Lowered from 10% */
            left: clamp(1.25rem, 4vw, 3rem);
            display: flex;
            align-items: flex-start;
            text-decoration: none;
            z-index: 10;
        }
        .nav-logo img {
            height: 90px; /* Reduced by 10% (was 100px) */
            object-fit: contain;
            filter: brightness(0) invert(1);
            transition: height 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
            display: block;
        }

        #site-header.scrolled .nav-logo img {
            height: 57px; /* Reduced by 10% (was 63px) */
        }
        #site-header.scrolled .nav-logo {
            top: 50%;
            transform: translateY(-50%); /* Centered vertically in scrolled view */
        }
        .nav-logo-text {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.4rem;
            font-weight: 500;
            color: var(--white);
            letter-spacing: 0.02em;
            display: none;
        }

        /* Nav links absolutely centered in middle of header container */
        .nav-links {
            display: flex;
            align-items: center;
            gap: 2rem;
            list-style: none;
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
            margin: 0;
            z-index: 5;
        }
        .nav-cta  { display: inline-flex; position: relative; z-index: 10; margin-left: auto; } /* Push CTA to the right edge */
        .nav-toggle { display: none; }

        .nav-links a {
            text-decoration: none;
            color: rgba(255,255,255,0.82);
            font-size: 0.875rem;
            font-weight: 500;
            letter-spacing: 0.04em;
            transition: var(--transition);
            position: relative;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -4px; left: 0;
            width: 0; height: 1px;
            background: var(--sky-light);
            transition: width 0.3s ease;
        }

        .nav-links a:hover,
        .nav-links a.active {
            color: var(--white);
        }

        .nav-links a:hover::after,
        .nav-links a.active::after {
            width: 100%;
        }

        /* CTA pill button */
        .nav-cta {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.6rem 1.4rem;
            background: rgba(56, 189, 248, 0.15);
            border: 1px solid rgba(56, 189, 248, 0.4);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            color: var(--white);
            font-size: 0.875rem;
            font-weight: 600;
            text-decoration: none;
            border-radius: 999px;
            transition: var(--transition);
        }

        .nav-cta:hover {
            background: var(--sky);
            border-color: var(--sky);
            color: var(--navy);
            transform: translateY(-2px);
        }

        /* Mobile hamburger */
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: var(--white);
            font-size: 1.4rem;
            cursor: pointer;
        }


        /* =============================================
           HERO — Full-bleed image with overlay
           (Kalm Moments style)
        ============================================= */
        .km-hero {
            position: relative;
            min-height: 100svh;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            overflow: hidden;
        }

        .km-hero-img {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center 30%;
            z-index: 0;
        }

        /* Navy-tinted gradient overlay */
        .km-hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(
                90deg,
                rgba(10, 22, 40, 0.75) 0%,
                rgba(10, 22, 40, 0.50) 55%,
                rgba(10, 22, 40, 0.25) 100%
            );
            z-index: 1;
        }

        .km-hero-container {
            position: relative;
            z-index: 2;
            max-width: 1200px;
            margin: 0 auto;
            padding: 160px clamp(1.25rem, 4vw, 3rem) clamp(80px, 10vw, 130px);
            width: 100%;
        }

        .km-hero-content {
            max-width: 660px;
        }

        /* Trust badge pill */
        .km-trust-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 8px 16px 8px 12px;
            background: rgba(255,255,255,0.10);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.18);
            border-radius: 999px;
            margin-bottom: 28px;
        }

        .km-trust-stars {
            display: inline-flex;
            align-items: center;
            gap: 2px;
            color: #f59e0b;
        }
        .km-trust-stars i { font-size: 11px; }
        .km-trust-divider {
            width: 1px; height: 13px;
            background: rgba(255,255,255,0.28);
        }
        .km-trust-text {
            font-size: 12.5px;
            font-weight: 500;
            color: #fff;
            letter-spacing: 0.02em;
        }
        .km-trust-count {
            font-size: 12.5px;
            color: rgba(255,255,255,0.80);
            letter-spacing: 0.02em;
        }

        /* Eyebrow */
        .km-eyebrow {
            display: inline-block;
            font-family: 'Inter', sans-serif;
            font-size: 11px;
            letter-spacing: 0.3em;
            text-transform: uppercase;
            color: var(--sky-light);
            margin-bottom: 22px;
            font-weight: 500;
        }

        /* Headline */
        .km-headline {
            font-family: 'Cormorant Garamond', Georgia, serif;
            font-size: clamp(44px, 7vw, 82px);
            font-weight: 400;
            line-height: 1.03;
            color: #ffffff;
            margin: 0 0 22px;
            letter-spacing: -0.015em;
        }

        .km-headline em {
            font-style: italic;
            color: var(--sky-light);
        }

        /* Horizontal rule divider */
        .km-divider {
            width: 56px;
            height: 1px;
            background: var(--sky);
            border: none;
            margin: 0 0 22px;
        }

        .km-subline {
            font-size: 17px;
            line-height: 1.68;
            color: rgba(255,255,255,0.85);
            margin: 0;
            font-weight: 300;
            letter-spacing: 0.01em;
            max-width: 520px;
        }

        /* Scroll indicator */
        .km-scroll {
            position: absolute;
            bottom: 36px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 2;
            color: rgba(255,255,255,0.6);
            font-size: 10px;
            letter-spacing: 0.28em;
            text-transform: uppercase;
            font-family: 'Inter', sans-serif;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
        }

        .km-scroll-line {
            width: 1px;
            height: 36px;
            background: linear-gradient(to bottom, rgba(255,255,255,0.7), rgba(255,255,255,0));
            animation: scrollPulse 2.2s ease-in-out infinite;
        }

        @keyframes scrollPulse {
            0%, 100% { opacity: 0.4; transform: scaleY(0.7); }
            50%       { opacity: 1;   transform: scaleY(1);   }
        }


        /* =============================================
           SECTION UTILITIES
        ============================================= */
        .section-pad {
            padding: clamp(64px, 9vw, 120px) 0;
        }

        .eyebrow-label {
            display: inline-flex;
            align-items: center;
            gap: 14px;
            font-family: 'Inter', sans-serif;
            font-size: 11px;
            letter-spacing: 0.32em;
            text-transform: uppercase;
            color: var(--sky-dim);
            margin-bottom: 20px;
            font-weight: 500;
        }

        .eyebrow-label::before,
        .eyebrow-label::after {
            content: '';
            display: inline-block;
            width: 28px; height: 1px;
            background: var(--sky);
            flex-shrink: 0;
        }

        .section-heading {
            font-family: 'Cormorant Garamond', Georgia, serif;
            font-size: clamp(36px, 5vw, 58px);
            font-weight: 400;
            line-height: 1.1;
            color: var(--navy);
            margin-bottom: 18px;
            letter-spacing: -0.015em;
        }

        .section-heading em {
            font-style: italic;
            color: var(--sky-dim);
        }

        .section-intro {
            font-size: 16px;
            color: var(--text-soft);
            font-weight: 300;
            line-height: 1.7;
            max-width: 560px;
        }

        .section-center .section-intro { margin: 0 auto; }
        .section-center { text-align: center; }


        /* =============================================
           STATS BAR — below hero
        ============================================= */
        .stats-bar {
            background: var(--navy);
            padding: 2rem 0;
        }

        .stats-inner {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: clamp(2rem, 6vw, 5rem);
            flex-wrap: wrap;
        }

        .stat-item {
            text-align: center;
        }

        .stat-num {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 400;
            color: var(--sky-light);
            line-height: 1;
            margin-bottom: 4px;
        }

        .stat-label {
            font-family: 'Inter', sans-serif;
            font-size: 11px;
            letter-spacing: 0.16em;
            text-transform: uppercase;
            color: rgba(255,255,255,0.55);
            font-weight: 500;
        }

        .stat-sep {
            width: 1px;
            height: 48px;
            background: rgba(255,255,255,0.08);
        }


        /* =============================================
           ABOUT — 2-column: visual left, text right
        ============================================= */
        .about-section {
            background: var(--off-white);
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1.1fr;
            gap: clamp(40px, 6vw, 80px);
            align-items: center;
        }

        .about-image-wrap {
            position: relative;
        }

        .about-img-container {
            position: relative;
            overflow: hidden;
            border-radius: 20px;
            aspect-ratio: 4 / 5;
            box-shadow: var(--shadow-xl);
        }

        .about-img-main {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: bottom;
            position: absolute;
            bottom: 0;
            left: 0;
        }

        /* Floating accent card */
        .about-float-card {
            position: absolute;
            bottom: -20px;
            right: -20px;
            background: var(--navy);
            color: white;
            border-radius: 16px;
            padding: 1.25rem 1.5rem;
            box-shadow: var(--shadow-lg);
        }

        .afc-num {
            font-family: 'Cormorant Garamond', serif;
            font-size: 2.5rem;
            color: var(--sky-light);
            line-height: 1;
        }

        .afc-label {
            font-size: 11px;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: rgba(255,255,255,0.6);
            margin-top: 4px;
        }

        .about-content .section-intro {
            margin-bottom: 2rem;
            max-width: 100%;
        }

        /* Bullet list */
        .about-bullets {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 14px;
            margin-bottom: 2.5rem;
        }

        .about-bullets li {
            display: flex;
            align-items: flex-start;
            gap: 14px;
        }

        .ab-check {
            width: 28px; height: 28px;
            border-radius: 50%;
            background: rgba(56, 189, 248, 0.10);
            color: var(--sky-dim);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            margin-top: 2px;
        }

        .ab-check i { font-size: 12px; }

        .ab-text strong {
            font-family: 'Cormorant Garamond', serif;
            font-size: 19px;
            font-weight: 500;
            color: var(--navy);
            display: block;
            margin-bottom: 1px;
        }

        .ab-text span {
            font-size: 14px;
            color: var(--text-soft);
            font-weight: 300;
        }


        /* =============================================
           SERVICES — Horizontal scroll card slider
           (Kalm Moments video slider style)
        ============================================= */
        .services-section {
            background: var(--white);
        }

        .services-header {
            text-align: center;
            margin-bottom: clamp(36px, 5vw, 60px);
        }

        .slider-wrap {
            position: relative;
            max-width: 100%;
        }

        .service-slider {
            display: flex;
            gap: clamp(14px, 2vw, 22px);
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            scroll-behavior: smooth;
            padding: 8px clamp(1.25rem, 4vw, 3rem) 28px;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
        }

        .service-slider::-webkit-scrollbar { display: none; }

        /* Service cards */
        .svc-card {
            flex: 0 0 auto;
            width: clamp(280px, 28vw, 340px);
            border-radius: 20px;
            overflow: hidden;
            background: var(--white);
            border: 1px solid var(--border-soft);
            box-shadow: var(--shadow-sm);
            scroll-snap-align: start;
            transition: var(--transition);
            display: flex;
            flex-direction: column;
        }

        .svc-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-lg);
            border-color: rgba(56,189,248,0.3);
        }

        .svc-card-img {
            width: 100%;
            aspect-ratio: 16 / 10;
            object-fit: cover;
            background: var(--pale-blue);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3.5rem;
            color: var(--sky-dim);
        }

        .svc-icon-placeholder {
            width: 100%;
            aspect-ratio: 16 / 10;
            background: linear-gradient(135deg, var(--navy) 0%, var(--navy-soft) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3rem;
            color: var(--sky-light);
            position: relative;
            overflow: hidden;
        }

        .svc-icon-placeholder::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at 70% 30%, rgba(56,189,248,0.15), transparent 60%);
        }

        .svc-icon-placeholder i {
            position: relative;
            z-index: 1;
        }

        .svc-body {
            padding: 1.5rem;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .svc-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.5rem;
            font-weight: 500;
            color: var(--navy);
            margin-bottom: 0.6rem;
        }

        .svc-desc {
            font-size: 14px;
            color: var(--text-soft);
            font-weight: 300;
            line-height: 1.6;
            flex: 1;
        }

        .svc-features {
            list-style: none;
            margin-top: 1.1rem;
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

        .svc-features li {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            color: var(--text-body);
        }

        .svc-features i {
            color: var(--sky-dim);
            font-size: 11px;
        }

        /* Slider arrows */
        .slider-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 48px; height: 48px;
            border-radius: 50%;
            background: rgba(255,255,255,0.92);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid var(--border);
            display: none; /* Hide by default; shown dynamically via JS if content overflows */
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 5;
            color: var(--navy);
            font-size: 20px;
            transition: var(--transition);
            box-shadow: var(--shadow-md);
        }

        .slider-arrow:hover {
            background: var(--navy);
            color: var(--white);
            border-color: var(--navy);
            transform: translateY(-50%) scale(1.06);
        }

        .slider-arrow:disabled {
            opacity: 0.3;
            cursor: not-allowed;
        }

        .arrow-left { left: clamp(4px, 1.5vw, 12px); }
        .arrow-right { right: clamp(4px, 1.5vw, 12px); }

        .slider-hint {
            text-align: center;
            font-size: 11px;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: var(--text-soft);
            margin-top: 12px;
            opacity: 0.7;
            display: none;
        }


        /* =============================================
           WHY CHOOSE US — 2-col (image left, bullets right)
        ============================================= */
        .why-section {
            background: var(--pale-blue);
        }

        .why-grid {
            display: grid;
            grid-template-columns: 1fr 1.1fr;
            gap: clamp(40px, 6vw, 80px);
            align-items: center;
        }

        .why-images {
            display: flex;
            flex-direction: column;
            gap: 14px;
        }

        .why-img-main {
            width: 100%;
            max-height: 620px;
            border-radius: 20px;
            object-fit: cover;
            object-position: top;
            box-shadow: var(--shadow-xl);
        }

        .why-img-row {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 12px;
        }

        .why-img-sm {
            width: 100%;
            aspect-ratio: 1/1;
            object-fit: cover;
            border-radius: 14px;
            border: 1px solid var(--border-soft);
            transition: var(--transition);
        }

        .why-img-sm:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-md);
        }

        /* Use icon placeholders for sub images */
        .why-sm-placeholder {
            width: 100%;
            aspect-ratio: 1/1;
            border-radius: 14px;
            background: var(--navy);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            color: var(--sky-light);
            border: 1px solid rgba(255,255,255,0.05);
            transition: var(--transition);
        }

        .why-sm-placeholder:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-md);
        }

        /* Bullets */
        .why-bullets {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 20px;
            margin-top: 1.5rem;
        }

        .why-bullet {
            display: flex;
            align-items: flex-start;
            gap: 16px;
        }

        .wb-check {
            width: 32px; height: 32px;
            border-radius: 50%;
            background: rgba(56,189,248,0.10);
            color: var(--sky-dim);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            margin-top: 2px;
        }

        .wb-check i { font-size: 13px; }

        .wb-text strong {
            font-family: 'Cormorant Garamond', serif;
            font-size: 20px;
            font-weight: 500;
            color: var(--navy);
            display: block;
            margin-bottom: 3px;
        }

        .wb-text span {
            font-size: 14px;
            color: var(--text-soft);
            font-weight: 300;
            line-height: 1.5;
        }


        /* =============================================
           TESTIMONIALS
        ============================================= */
        .testimonials-section {
            background: var(--navy);
        }

        .testimonials-section .section-heading {
            color: var(--white);
        }

        .testimonials-section .eyebrow-label {
            color: var(--sky-light);
        }

        .testimonials-section .eyebrow-label::before,
        .testimonials-section .eyebrow-label::after {
            background: var(--sky-light);
        }

        .testimonials-section .section-intro {
            color: rgba(255,255,255,0.60);
        }

        .testi-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 24px;
            margin-top: 3rem;
        }

        .testi-card {
            background: rgba(255,255,255,0.05);
            border: 1px solid rgba(255,255,255,0.08);
            border-radius: 20px;
            padding: 2rem;
            position: relative;
            transition: var(--transition);
        }

        .testi-card:hover {
            background: rgba(56,189,248,0.06);
            border-color: rgba(56,189,248,0.2);
            transform: translateY(-4px);
        }

        .testi-stars {
            color: #f59e0b;
            display: flex;
            gap: 3px;
            margin-bottom: 1rem;
            font-size: 13px;
        }

        .testi-quote {
            font-size: 15px;
            line-height: 1.7;
            color: rgba(255,255,255,0.80);
            font-style: italic;
            font-weight: 300;
            margin-bottom: 1.5rem;
            font-family: 'Cormorant Garamond', serif;
            font-size: 19px;
        }

        .testi-client {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .testi-avatar {
            width: 42px; height: 42px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--sky), var(--sky-dim));
            color: var(--navy);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 14px;
            font-family: 'Inter', sans-serif;
            flex-shrink: 0;
        }

        .testi-name {
            font-weight: 600;
            color: var(--white);
            font-size: 14px;
        }

        .testi-role {
            font-size: 12px;
            color: rgba(255,255,255,0.45);
        }

        .quote-mark {
            position: absolute;
            top: 1.5rem; right: 1.5rem;
            font-size: 3rem;
            color: rgba(56,189,248,0.10);
            font-family: Georgia, serif;
            line-height: 1;
        }

        /* =============================================
           FAQ SECTION
        ============================================= */
        .faq-section {
            background: var(--white);
        }

        .faq-accordion {
            max-width: 800px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .faq-item {
            background: var(--off-white);
            border: 1px solid var(--border-soft);
            border-radius: 16px;
            overflow: hidden;
            transition: var(--transition);
        }

        .faq-item:hover {
            border-color: rgba(56, 189, 248, 0.4);
            box-shadow: var(--shadow-sm);
        }

        .faq-question {
            width: 100%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.25rem 1.75rem;
            background: none;
            border: none;
            outline: none;
            cursor: pointer;
            text-align: left;
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.35rem;
            font-weight: 500;
            color: var(--navy);
            transition: var(--transition);
        }

        .faq-question span {
            padding-right: 1.5rem;
            line-height: 1.3;
        }

        .faq-icon {
            font-size: 0.9rem;
            color: var(--text-soft);
            transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
            flex-shrink: 0;
        }

        .faq-item.active {
            border-color: var(--sky);
            background: var(--white);
            box-shadow: var(--shadow-md);
        }

        .faq-item.active .faq-question {
            color: var(--sky-dim);
        }

        .faq-item.active .faq-icon {
            transform: rotate(180deg);
            color: var(--sky-dim);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
        }

        .faq-answer-content {
            padding: 0 1.75rem 1.5rem;
            font-size: 15px;
            color: var(--text-body);
            font-weight: 300;
            line-height: 1.6;
        }

        /* =============================================
           CONTACT / BOOKING
        ============================================= */
        .contact-section {
            background: var(--off-white);
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1.3fr 1fr;
            gap: clamp(3rem, 7vw, 6rem);
            align-items: flex-start;
        }

        .contact-info .section-intro {
            margin-bottom: 2.5rem;
        }

        .contact-details {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
        }

        .ci-icon {
            width: 48px; height: 48px;
            border-radius: 12px;
            background: rgba(56,189,248,0.10);
            color: var(--sky-dim);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
            flex-shrink: 0;
        }

        .ci-text h4 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 17px;
            font-weight: 500;
            color: var(--navy);
            margin-bottom: 2px;
        }

        .ci-text a, .ci-text p {
            font-size: 14px;
            color: var(--text-soft);
            text-decoration: none;
            transition: var(--transition);
        }

        .ci-text a:hover { color: var(--sky-dim); }

        /* Form */
        .contact-form-box {
            background: var(--white);
            border: 1px solid var(--border-soft);
            border-radius: 24px;
            padding: clamp(1.5rem, 4vw, 2.75rem);
            box-shadow: var(--shadow-lg);
        }

        .contact-form-box h3 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 2rem;
            font-weight: 400;
            color: var(--navy);
            margin-bottom: 0.4rem;
        }

        .contact-form-box > p {
            font-size: 14px;
            color: var(--text-soft);
            margin-bottom: 1.75rem;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
        }

        .form-group { margin-bottom: 1rem; }

        .form-label {
            display: block;
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: var(--text-body);
            margin-bottom: 6px;
        }

        .form-input, .form-select, .form-textarea {
            width: 100%;
            padding: 0.8rem 1rem;
            border-radius: 10px;
            border: 1px solid var(--border);
            background: var(--white);
            font-family: 'Inter', sans-serif;
            font-size: 14px;
            color: var(--text-dark);
            transition: var(--transition);
            outline: none;
        }

        .form-input:focus, .form-select:focus, .form-textarea:focus {
            border-color: var(--sky);
            box-shadow: 0 0 0 3px rgba(56,189,248,0.12);
        }

        .form-textarea { height: 110px; resize: none; }

        .btn-submit {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 1rem;
            background: var(--navy);
            color: var(--white);
            border: none;
            border-radius: 12px;
            font-family: 'Inter', sans-serif;
            font-size: 15px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            margin-top: 0.5rem;
        }

        .btn-submit:hover {
            background: var(--sky-dim);
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(14,165,233,0.3);
        }


        /* =============================================
           FOOTER
        ============================================= */
        footer {
            background: var(--navy);
            color: white;
            padding: 4rem 0 2rem;
            border-top: 1px solid rgba(255,255,255,0.04);
        }

        .footer-top {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            padding-bottom: 3rem;
            border-bottom: 1px solid rgba(255,255,255,0.06);
            flex-wrap: wrap;
            gap: 2.5rem;
        }

        .footer-brand p {
            font-size: 13px;
            color: rgba(255,255,255,0.45);
            max-width: 260px;
            line-height: 1.6;
            margin-top: 0.75rem;
        }

        .footer-logo-text {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.6rem;
            font-weight: 400;
            color: var(--white);
        }

        .footer-cols {
            display: flex;
            gap: clamp(2rem, 5vw, 4rem);
            flex-wrap: wrap;
        }

        .footer-col h4 {
            font-family: 'Inter', sans-serif;
            font-size: 11px;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            font-weight: 600;
            color: rgba(255,255,255,0.45);
            margin-bottom: 1rem;
        }

        .footer-col ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 0.6rem;
        }

        .footer-col a {
            color: rgba(255,255,255,0.68);
            text-decoration: none;
            font-size: 14px;
            transition: var(--transition);
        }

        .footer-col a:hover { color: var(--sky-light); }

        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 2.5rem;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .footer-bottom p {
            font-size: 13px;
            color: rgba(255,255,255,0.35);
        }

        .footer-socials {
            display: flex;
            gap: 10px;
        }

        .social-link {
            width: 36px; height: 36px;
            border-radius: 50%;
            background: rgba(255,255,255,0.06);
            border: 1px solid rgba(255,255,255,0.08);
            color: rgba(255,255,255,0.65);
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            font-size: 14px;
            transition: var(--transition);
        }

        .social-link:hover {
            background: var(--sky-dim);
            border-color: var(--sky-dim);
            color: white;
            transform: translateY(-2px);
        }


        /* =============================================
           MOBILE RESPONSIVE
        ============================================= */
        @media (max-width: 900px) {
            .about-grid,
            .why-grid,
            .contact-grid {
                grid-template-columns: 1fr;
                gap: 2.5rem;
            }
            .about-float-card {
                right: 0;
            }
        }

        @media (max-width: 768px) {
            .nav-links, .nav-cta { display: none; }
            .nav-toggle { display: block; }

            /* Mobile header: tall at top to fit big logo, short when scrolled */
            #site-header .header-inner {
                height: 110px;
                padding: 0 1.25rem;
            }
            #site-header.scrolled .header-inner { height: 70px; }

            /* Mobile logo: big at top, smaller when scrolled */
            .nav-logo {
                left: 1.25rem;
                top: 5%;
                transform: none;
            }
            .nav-logo img { height: 72px; }
            #site-header.scrolled .nav-logo {
                top: 50%;
                transform: translateY(-50%);
            }
            #site-header.scrolled .nav-logo img { height: 45px; }

            .nav-toggle {
                display: block;
                position: absolute;
                right: 1.25rem;
                top: 50%;
                transform: translateY(-50%);
            }

            .km-headline { font-size: 42px; }

            .stats-inner { gap: 1.5rem; }
            .stat-sep { display: none; }

            .slider-hint { display: block; }
            .slider-arrow { display: none; }

            .testi-grid { grid-template-columns: 1fr; }

            .form-row { grid-template-columns: 1fr; }

            .footer-top { flex-direction: column; }

            .km-scroll { display: none; }
        }


        @media (max-width: 480px) {
            .km-headline { font-size: 36px; }
            .km-subline { font-size: 15px; }
            .km-hero-container { padding: 130px 1.25rem 60px; }
        }

        /* Mobile menu overlay */
        .mobile-menu {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(10,22,40,0.97);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            z-index: 9998;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 2rem;
        }

        .mobile-menu.open { display: flex; }

        .mobile-menu a {
            font-family: 'Cormorant Garamond', serif;
            font-size: 2.5rem;
            font-weight: 400;
            color: rgba(255,255,255,0.80);
            text-decoration: none;
            letter-spacing: -0.01em;
            transition: var(--transition);
        }

        .mobile-menu a:hover { color: var(--sky-light); }

        .mobile-menu-close {
            position: absolute;
            top: 1.5rem; right: 1.5rem;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
        }
