/* =============================================
   1. CSS CUSTOM PROPERTIES
   ============================================= */
:root {
    /* Colors — Pure Black Premium Theme (k.Glanz) */
    --color-bg-primary:    #0A0A0A;
    --color-bg-secondary:  #111111;
    --color-bg-dark:       #050505;
    --color-bg-card:       #181818;

    --color-text-primary:  #FFFFFF;
    --color-text-secondary:#9A9A9A;
    --color-text-muted:    #555555;
    --color-text-inverse:  #0A0A0A;

    /* Gold accent — extracted from k.Glanz logo */
    --color-accent:        #00aeff;
    --color-accent-hover:  #00f7ff;
    --color-accent-subtle: rgba(23, 121, 212, 0.12);

    --color-border:        rgba(255, 255, 255, 0.08);
    --color-border-dark:   rgba(255, 255, 255, 0.05);
    --color-shadow:        rgba(0, 0, 0, 0.55);
    --color-shadow-deep:   rgba(0, 0, 0, 0.80);

    /* Button */
    --color-btn-dark:      #1E1E1E;
    --color-btn-dark-hover:#2C2C2C;

    /* Typography */
    --font-display: 'Barlow Condensed', sans-serif;
    --font-body:    'DM Sans', sans-serif;

    /* Spacing */
    --space-1:  0.25rem;
    --space-2:  0.5rem;
    --space-3:  0.75rem;
    --space-4:  1rem;
    --space-5:  1.25rem;
    --space-6:  1.5rem;
    --space-8:  2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;
    --space-32: 8rem;

    /* Border radius */
    --radius-sm:   4px;
    --radius-md:   8px;
    --radius-lg:   16px;
    --radius-full: 9999px;

    /* Transitions */
    --transition-fast:   150ms ease;
    --transition-base:   250ms ease;
    --transition-slow:   400ms ease;

    /* Layout */
    --max-width:             1200px;
    --navbar-topbar-height:  36px;
    --navbar-bottom-height:  66px;
    --navbar-height:         calc(var(--navbar-topbar-height) + var(--navbar-bottom-height));

    /* Letter spacing */
    --tracking-wide:  0.04em;
    --tracking-wider: 0.10em;

    /* Line height */
    --leading-tight:  1.1;
    --leading-normal: 1.5;
    --leading-loose:  1.7;
}

/* Mobile: topbar hidden, so navbar height = bottom row only */
@media (max-width: 767px) {
    :root { --navbar-height: var(--navbar-bottom-height); }
}

.navbar__logo-img {
    height: 50px;
    width: auto;

    display: block;
    object-fit: contain;
}

/* =============================================
   2. RESET & BASE
   ============================================= */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

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

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: var(--leading-normal);
    background: var(--color-bg-primary);
    color: var(--color-text-primary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.nav-open { overflow: hidden; }

img, svg { display: block; max-width: 100%; }

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

ul { list-style: none; }

section[id] { scroll-margin-top: var(--navbar-height); }


/* =============================================
   3. TYPOGRAPHY UTILITIES
   ============================================= */
h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: var(--leading-tight);
}

.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: var(--space-3);
    font-family: var(--font-body);
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--color-accent);
    letter-spacing: var(--tracking-wider);
    text-transform: uppercase;
    margin-bottom: var(--space-4);
}

.section-eyebrow::before {
    content: '';
    display: block;
    width: 20px;
    height: 2px;
    background: var(--color-accent);
    flex-shrink: 0;
}


/* =============================================
   4. LAYOUT UTILITIES
   ============================================= */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin-inline: auto;
    padding-inline: var(--space-6);
}

@media (min-width: 768px)  { .container { padding-inline: var(--space-8); } }
@media (min-width: 1024px) { .container { padding-inline: var(--space-12); } }

.section-header {
    text-align: center;
    max-width: 620px;
    margin: 0 auto var(--space-16);
}

.section-header h2 {
    font-size: clamp(1.875rem, 4vw, 2.75rem);
    color: var(--color-text-primary);
    margin-bottom: var(--space-4);
}

.section-desc {
    font-size: 1.0625rem;
    color: var(--color-text-secondary);
    line-height: var(--leading-loose);
}


/* =============================================
   5. BUTTON COMPONENTS
   ============================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: 0.75rem 1.75rem;
    min-height: 48px;
    border-radius: var(--radius-full);
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 500;
    line-height: 1;
    cursor: pointer;
    border: 2px solid transparent;
    transition:
        background var(--transition-fast),
        color var(--transition-fast),
        border-color var(--transition-fast),
        transform var(--transition-fast),
        box-shadow var(--transition-fast);
    white-space: nowrap;
}

.btn:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 3px;
}

.btn--primary {
    background: var(--color-btn-dark);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.10);
}

.btn--primary:hover {
    background: var(--color-btn-dark-hover);
    border-color: rgba(255, 255, 255, 0.22);
    transform: translateY(-1px);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.50);
}

.btn--ghost {
    background: transparent;
    color: #FFFFFF;
    border-color: rgba(255, 255, 255, 0.45);
}

.btn--ghost:hover {
    background: rgba(255, 255, 255, 0.10);
    border-color: rgba(255, 255, 255, 0.80);
}

.btn--full { width: 100%; }


/* =============================================
   6. NAVBAR (Two-row: topbar + bottom nav)
   ============================================= */

/* --- Outer wrapper — fixed, full width --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: background var(--transition-base), box-shadow var(--transition-base);
}

/* --- Top info bar --- */
.navbar__topbar {
    height: var(--navbar-topbar-height);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.38);
    letter-spacing: 0.02em;
    overflow: hidden;
}

.topbar__brand { color: rgba(255, 255, 255, 0.45); white-space: nowrap; }
.topbar__sep   { color: rgba(255, 255, 255, 0.2); margin: 0 2px; }

.topbar__link {
    color: rgba(255, 255, 255, 0.38);
    text-decoration: none;
    transition: color var(--transition-fast);
}
.topbar__link:hover { color: rgba(255, 255, 255, 0.80); }

.topbar__insta {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
}

/* --- Main nav row --- */
.navbar__bottom {
    height: var(--navbar-bottom-height);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.navbar__inner {
    height: 100%;
    gap: var(--space-8);
    display: flex;
    align-items: center;
}

/* --- Logo --- */
.navbar__logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    text-decoration: none;
}

.logo-mark { flex-shrink: 0; display: block; }

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.logo-wordmark {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: #C4C4C4;
}

.logo-wordmark span { color: var(--color-accent); }

.logo-tagline {
    font-family: var(--font-display);
    font-size: 0.52rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--color-accent);
    opacity: 0.75;
}

/* --- Nav links (desktop) --- */
.navbar__nav {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.navbar__nav ul {
    display: flex;
    align-items: center;
    gap: var(--space-8);
}

.navbar__nav a {
    position: relative;
    font-size: 0.9375rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.70);
    transition: color var(--transition-fast);
    padding-bottom: 2px;
    text-decoration: none;
}

.navbar__nav a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-accent);
    transition: width var(--transition-base);
}

.navbar__nav a:hover { color: #fff; }
.navbar__nav a:hover::after,
.navbar__nav a.active::after { width: 100%; }

.navbar__nav a:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 4px;
    border-radius: 2px;
}

.navbar__cta {
    margin-left: auto;
    flex-shrink: 0;
    position: absolute;
    right: var(--space-12);
}

/* --- Hamburger (mobile only) --- */
.navbar__hamburger {
    display: none;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--color-text-primary);
    border-radius: var(--radius-md);
    transition: background var(--transition-fast);
    margin-left: auto;
}

.navbar__hamburger:hover { background: rgba(255, 255, 255, 0.08); }

.navbar__hamburger:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 2px;
}

.icon-close { display: none; }
.navbar__hamburger[aria-expanded="true"] .icon-hamburger { display: none; }
.navbar__hamburger[aria-expanded="true"] .icon-close   { display: block; }

/* --- Scrolled state --- */
.navbar.navbar--scrolled {
    background: rgba(5, 5, 5, 0.96);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.04),
        0 4px 24px rgba(0, 0, 0, 0.65);
}

/* --- Mobile nav --- */
@media (max-width: 767px) {
    .navbar__topbar   { display: none; }
    .navbar__hamburger { display: flex; }
    .navbar__cta       { display: none; }

    .navbar__nav {
        position: absolute;
        top: var(--navbar-bottom-height);
        left: 0;
        right: 0;
        background: rgba(5, 5, 5, 0.98);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        padding: var(--space-2) var(--space-6) var(--space-6);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.70);
        border-top: 1px solid rgba(255, 255, 255, 0.05);
        transform: translateY(-8px);
        opacity: 0;
        pointer-events: none;
        transition: transform var(--transition-base), opacity var(--transition-base);
    }

    .navbar__nav.navbar__nav--open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .navbar__nav ul {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }

    .navbar__nav a {
        display: block;
        padding: var(--space-4) 0;
        border-bottom: 1px solid var(--color-border);
        font-size: 1rem;
        color: rgba(255, 255, 255, 0.80);
    }

    .navbar__nav li:last-child a { border-bottom: none; }
}

@media (min-width: 768px) { .navbar__hamburger { display: none; } }


/* =============================================
   7. HERO
   ============================================= */

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

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    padding-top: calc(var(--navbar-height) + var(--space-8));
    padding-bottom: 120px; /* room for rating badge */
}

/* Parallax background layer
   To add a real photo: set background-image: url('img/hero.jpg') on .hero__bg */
.hero__bg {
    position: absolute;
    inset: -12%;          /* extra size so parallax movement never clips */
    background-color: #030303;
    background-image:
        url('img/hero.jpg'),
        radial-gradient(ellipse 90% 70% at 65% 35%, rgba(4, 18, 17, 0.98) 0%, transparent 65%),
        radial-gradient(ellipse 50% 40% at 15% 80%, rgba(23, 206, 212, 0.04) 0%, transparent 55%),
        linear-gradient(160deg, #040c0c 0%, #050505 55%, #0a0a0a 100%);
    background-size: cover;
    background-position: center;
    z-index: 0;
    will-change: transform;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.50);
    z-index: 1;
    pointer-events: none;
}

.hero__content {
    position: relative;
    z-index: 2;
    max-width: 860px;
}

/* Location badge */
.hero__location-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.45);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: var(--space-5);
    animation: fadeInUp 0.55s ease 0.08s both;
}

/* Impact headline */
.hero__headline {
    font-family: var(--font-display);
    font-size: clamp(3.25rem, 9vw, 7rem);
    font-weight: 700;
    line-height: 0.93;
    color: #ffffff;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    margin-bottom: var(--space-6);
    animation: fadeInUp 0.7s ease 0.18s both;
}

/* Star rating subtitle */
.hero__sub {
    font-family: var(--font-body);
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.849);
    letter-spacing: 0.06em;
    margin-bottom: var(--space-10);
    animation: fadeInUp 0.6s ease 0.32s both;
}

.hero__actions {
    animation: fadeInUp 0.6s ease 0.44s both;
}

/* Bottom rating badge */
.hero__rating {
    position: absolute;
    bottom: var(--space-8);

    left: 0;
    right: 0;

    margin: 0 auto;
    width: fit-content;

    z-index: 2;
    display: flex;
    align-items: center;
    gap: var(--space-3);
    white-space: nowrap;

    animation: fadeInUp 0.6s ease 0.60s both;
}

.hero__rating-score {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-accent);
    letter-spacing: 0.04em;
}

.hero__rating-label {
    display: block;
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.32);
    letter-spacing: 0.06em;
    margin-top: 1px;
}


/* =============================================
   8. SERVICES
   ============================================= */
.services {
    padding: var(--space-24) 0;
    background: var(--color-bg-primary);
}

.services__group { margin-bottom: var(--space-16); }
.services__group:last-child { margin-bottom: 0; }

.services__group-label {
    position: relative;
    isolation: isolate;
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--color-text-primary);
    padding-left: var(--space-5);
    border-left: 3px solid var(--color-accent);
    margin-bottom: var(--space-8);
    letter-spacing: var(--tracking-wide);
    text-transform: uppercase;
}

.services__group-label::before {
    content: attr(data-number);
    position: absolute;
    z-index: -1;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 6rem;
    line-height: 1;
    font-weight: 700;
    color: var(--color-accent);
    opacity: 0.08;
    letter-spacing: -0.02em;
    pointer-events: none;
    user-select: none;
}

.services__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-5);
}

@media (min-width: 640px)  { .services__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services__grid { grid-template-columns: repeat(3, 1fr); } }

.service-card {
    position: relative;
    overflow: hidden;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: var(--space-8);
    transition:
        transform var(--transition-base),
        box-shadow var(--transition-base),
        border-color var(--transition-base);
}

.service-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 0;
    background: var(--color-accent);
    transition: height var(--transition-slow);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px var(--color-shadow);
    border-color: rgba(255, 255, 255, 0.14);
}

.service-card:hover::before { height: 100%; }

.service-card__icon {
    width: 48px;
    height: 48px;
    background: var(--color-accent-subtle);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent);
    margin-bottom: var(--space-5);
    transition: background var(--transition-fast), color var(--transition-fast);
    flex-shrink: 0;
}

.service-card:hover .service-card__icon {
    background: var(--color-accent);
    color: #fff;
}

.service-card__title {
    font-size: 1.1875rem;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: var(--space-3);
    letter-spacing: var(--tracking-wide);
    text-transform: uppercase;
    transition: color var(--transition-fast);
}

.service-card:hover .service-card__title { color: var(--color-accent); }

.service-card__desc {
    font-size: 0.9375rem;
    color: var(--color-text-secondary);
    line-height: var(--leading-loose);
}


/* =============================================
   9. GALLERY
   ============================================= */
.gallery {
    padding: var(--space-24) 0;
    background: var(--color-bg-secondary);
}

.gallery__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-4);
}

@media (min-width: 640px)  { .gallery__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .gallery__grid { grid-template-columns: repeat(3, 1fr); } }

.gallery__item {
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.gallery__item:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.50);
}

.gallery__placeholder {
    aspect-ratio: 4 / 3;
    background: linear-gradient(135deg, #161616 0%, #1c1c1c 50%, #111 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: border-color var(--transition-base);
}

.gallery__item:hover .gallery__placeholder {
    border-color: rgba(255, 255, 255, 0.12);
}

.gallery__placeholder span {
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 600;
    color: rgba(232, 236, 244, 0.18);
    letter-spacing: var(--tracking-wider);
    text-transform: uppercase;
}


/* =============================================
   10. CONTACT
   ============================================= */
.contact {
    padding: var(--space-24) 0;
    background: var(--color-bg-dark);
}

.contact__layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-12);
}

@media (min-width: 768px) {
    .contact__layout {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-16);
        align-items: start;
    }
}

@media (min-width: 1024px) {
    .contact__layout { grid-template-columns: 2fr 3fr; }
}

.contact__intro {
    font-size: 1rem;
    color: var(--color-text-secondary);
    line-height: var(--leading-loose);
    margin-bottom: var(--space-8);
}

.contact__list { margin-bottom: var(--space-8); }

.contact__link {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    padding: var(--space-5) 0;
    color: var(--color-text-primary);
    font-size: 1rem;
    font-weight: 500;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: color var(--transition-fast), gap var(--transition-fast);
    cursor: pointer;
}

.contact__list li:first-child .contact__link {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.contact__link:hover {
    color: var(--color-accent);
    gap: var(--space-5);
}

.contact__link:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 4px;
    border-radius: 2px;
}

.contact__link-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(23, 199, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--color-accent);
    flex-shrink: 0;
    transition: background var(--transition-fast);
}

.contact__link:hover .contact__link-icon { background: rgba(23, 212, 212, 0.22); }

.contact__social-label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 500;
    color: rgba(232, 236, 244, 0.30);
    letter-spacing: var(--tracking-wider);
    text-transform: uppercase;
    margin-bottom: var(--space-4);
}

.contact__social-links { display: flex; gap: var(--space-3); }

/* Form */
.contact__form {
    display: flex;
    flex-direction: column;
    gap: var(--space-5);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.form-group label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-text-secondary);
    letter-spacing: 0.02em;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: var(--space-4) var(--space-5);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--color-border-dark);
    border-radius: var(--radius-md);
    color: var(--color-text-primary);
    font-family: var(--font-body);
    font-size: 0.9375rem;
    line-height: var(--leading-normal);
    transition:
        border-color var(--transition-fast),
        background var(--transition-fast),
        box-shadow var(--transition-fast);
    resize: vertical;
    min-height: 48px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(232, 236, 244, 0.18);
}

.form-group input:hover,
.form-group textarea:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.12);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    background: rgba(23, 212, 202, 0.05);
    border-color: rgba(23, 212, 202, 0.5);
    box-shadow: 0 0 0 3px rgba(23, 212, 196, 0.1);
}

.contact__submit { margin-top: var(--space-2); }


/* =============================================
   11. SOCIAL LINK (shared)
   ============================================= */
.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    color: rgba(232, 236, 244, 0.45);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition:
        color var(--transition-fast),
        background var(--transition-fast),
        border-color var(--transition-fast),
        transform var(--transition-fast);
}

.social-link:hover {
    color: #fff;
    background: var(--color-accent);
    border-color: var(--color-accent);
    transform: translateY(-2px);
}

.social-link:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 3px;
}


/* =============================================
   12. FOOTER
   ============================================= */
.footer {
    background: #030303;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding: var(--space-8) 0;
}

.footer__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-5);
    text-align: center;
}

@media (min-width: 768px) {
    .footer__inner {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.footer__logo {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: var(--tracking-wide);
    color: var(--color-text-primary);
    transition: opacity var(--transition-fast);
}

.footer__logo:hover { opacity: 0.75; }
.footer__logo span { color: var(--color-accent); }

.footer__copy {
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

.footer__social { display: flex; gap: var(--space-3); }


/* =============================================
   PACKAGES SECTION
   ============================================= */

/* Spread columns — JS drives translateX, no CSS transition so scroll feels instant */
[data-spread] {
    will-change: transform;
}

.packages {
    padding: var(--space-24) 0;
    background: var(--color-bg-primary);
    overflow: hidden; /* clip spread columns at section edges */
}

/* Large italic impact title — mirrors reference "DETAIL PACKAGES" style */
.packages__title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 700;
    font-style: italic;
    text-transform: uppercase;
    color: #ffffff;
    text-align: center;
    line-height: 0.95;
    letter-spacing: -0.01em;
    margin-bottom: var(--space-16);
}

/* Package card */
.pkg-card {
    position: relative;
    background: var(--color-bg-card);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: var(--radius-lg);
    padding: var(--space-8);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition:
        border-color var(--transition-base),
        transform     var(--transition-base),
        box-shadow    var(--transition-base);
}

.pkg-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.45);
}

/* Featured / popular card */
.pkg-card--featured {
    border-color: rgba(23, 212, 212, 0.28);
}

.pkg-card--featured:hover {
    border-color: rgba(23, 212, 187, 0.55);
    box-shadow: 0 16px 48px rgba(23, 158, 212, 0.1);
}

/* "Beliebt" badge — floats above card top edge */
.pkg-card__badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-accent);
    color: #000;
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 4px 16px;
    border-radius: var(--radius-full);
    white-space: nowrap;
}

/* Decorative top dash */
.pkg-card__dash {
    display: block;
    width: 28px;
    height: 3px;
    background: rgba(255, 255, 255, 0.16);
    border-radius: 2px;
    margin-bottom: var(--space-5);
    flex-shrink: 0;
}

.pkg-card--featured .pkg-card__dash {
    background: var(--color-accent);
    opacity: 0.55;
}

/* Package name */
.pkg-card__name {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-text-primary);
    letter-spacing: var(--tracking-wide);
    text-transform: uppercase;
    margin-bottom: var(--space-4);
}

/* Pricing block */
.pkg-card__pricing {
    margin-bottom: var(--space-6);
    line-height: 1;
}

.pkg-card__starts {
    display: block;
    font-family: var(--font-body);
    font-size: 0.72rem;
    color: var(--color-text-muted);
    letter-spacing: 0.06em;
    margin-bottom: 4px;
}

.pkg-card__price {
    font-family: var(--font-display);
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--color-text-primary);
    letter-spacing: -0.02em;
}

/* CTA button */
.pkg-card__cta { margin-bottom: var(--space-4); }

/* Info note below button */
.pkg-card__note {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-body);
    font-size: 0.72rem;
    color: var(--color-text-muted);
    margin-bottom: var(--space-6);
    padding-bottom: var(--space-5);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pkg-card__note svg { flex-shrink: 0; opacity: 0.50; }

/* Checklist */
.pkg-card__list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
    padding: 0;
    margin: 0;
}

.pkg-card__list li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 0.875rem;
    color: var(--color-text-secondary);
    line-height: 1.35;
}

.pkg-card__list li::before {
    content: '✓';
    color: var(--color-accent);
    font-size: 0.72rem;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 2px;
    line-height: 1;
}

/* "Includes everything from X, plus:" inherit line */
.pkg-card__inherit {
    font-style: italic;
    color: rgba(255, 255, 255, 0.26);
    font-size: 0.8rem;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 4px;
}

.pkg-card__inherit::before { content: none; }


/* =============================================
   BEFORE / AFTER SLIDER
   ============================================= */
.ba-slider {
    position: relative;
    width: 100%;
    height: clamp(300px, 40vw, 560px);
    overflow: hidden;
    background: #0d0d0d;
    cursor: col-resize;
    user-select: none;
    touch-action: none;
    margin-bottom: var(--space-24);
}

/* Both images fill the slider absolutely */
.ba-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    pointer-events: none;
}

/* Clipping wrapper — JS sets width% to reveal/hide the before image */
.ba-clip {
    position: absolute;
    inset: 0;
    width: 50%;
    overflow: hidden;
}

/* Before image must stay at the slider's full pixel width so object-fit works correctly */
.ba-clip .ba-img--before {
    width: var(--ba-full-width, 100vw);
    max-width: none;
}

/* Vertical divider + drag circle */
.ba-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    pointer-events: none;
    z-index: 10;
    will-change: left;
}

.ba-handle__bar {
    width: 2px;
    flex: 1;
    background: rgba(255, 255, 255, 0.80);
}

.ba-handle__circle {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    border-radius: 50%;
    background: rgba(20, 20, 20, 0.55);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.80);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* "Vorher" / "Nachher" corner labels */
.ba-label {
    position: absolute;
    top: var(--space-4);
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.88);
    background: rgba(0, 0, 0, 0.42);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    padding: 4px 10px;
    border-radius: var(--radius-sm);
    pointer-events: none;
    z-index: 5;
}

.ba-label--before { left:  var(--space-4); }
.ba-label--after  { right: var(--space-4); }


/* =============================================
   COATING SECTION
   ============================================= */
.coating {
    position: relative;
    overflow: hidden;
}

/* Background: dark gradient simulating car photo; swap for real img when ready */
.coating__bg {
    position: absolute;
    inset: 0;
    background-color: #060606;
    background-image:
        radial-gradient(ellipse at 80% 50%, rgba(20, 140, 90, 0.3) 0%, transparent 55%),
        radial-gradient(ellipse at 60% 70%, rgba(10, 100, 77, 0.18) 0%, transparent 45%);
    /* Real photo: background-image: url('img/ceramic-bg.jpg'); background-size: cover; background-position: center right; */
    will-change: transform;
}

/* Gradient overlay: very dark on left (text), lighter on right (shows bg) */
.coating__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(4, 4, 4, 0.97) 0%,
        rgba(4, 4, 4, 0.92) 35%,
        rgba(4, 4, 4, 0.65) 60%,
        rgba(4, 4, 4, 0.42) 100%
    );
    z-index: 1;
}

/* Full-width flex layout — no container */
.coating__layout {
    position: relative;
    z-index: 2;
    display: flex;
    min-height: clamp(640px, 100vh, 1080px);
    align-items: stretch;
}

/* ── Left panel ── */
.coating__left {
    width: 38%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    padding: var(--space-24) var(--space-16) var(--space-24) var(--space-12);
}

.coating__text { display: flex; flex-direction: column; gap: var(--space-6); }

.coating__title {
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.04;
}

.coating__desc {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.45);
    line-height: var(--leading-loose);
    max-width: 36ch;
}

/* ── Vertical separator ── */
.coating__divider {
    width: 1px;
    background: rgba(255, 255, 255, 0.12);
    flex-shrink: 0;
    align-self: stretch;
}

/* ── Right panel ── */
.coating__right {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
}

/* CSS grid — 2 columns, no gap (borders act as dividers) */
.coating-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 100%;
    align-content: start;
}

/* Durability: spans full row */
.coating-tag--full {
    grid-column: 1 / -1;
}

/* Right-column cells: add left border */
.coating-tag--right {
    border-left: 1px solid rgba(255, 255, 255, 0.08);
}

/* Resale Value: right column only, no left sibling */
.coating-tag--solo {
    grid-column: 2;
}

/* Individual cell */
.coating-tag {
    padding: var(--space-8) var(--space-8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: background var(--transition-base);
}

.coating-tag:last-child { border-bottom: none; }

.coating-tag:hover { background: rgba(255, 255, 255, 0.025); }

/* Category pill badge */
.coating-tag__badge {
    display: inline-block;
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.65);
    background: rgba(255, 255, 255, 0.09);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 3px 8px;
    border-radius: 3px;
    margin-bottom: var(--space-4);
}

.coating-tag__name {
    font-size: clamp(1rem, 1.6vw, 1.375rem);
    font-weight: 700;
    color: #fff;
    line-height: var(--leading-tight);
    margin-bottom: var(--space-2);
}

.coating-tag__desc {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.40);
    line-height: var(--leading-normal);
}

/* ── Responsive collapse ── */
@media (max-width: 991px) {
    .coating__layout {
        flex-direction: column;
        min-height: auto;
    }
    .coating__left {
        width: 100%;
        padding: var(--space-16) var(--space-6);
    }
    .coating__divider { display: none; }
    .coating-grid { grid-template-columns: 1fr 1fr; }
    .coating-tag { padding: var(--space-5) var(--space-4); }
    .coating-tag__name { font-size: 1rem; }
}

@media (max-width: 575px) {
    .coating-grid { grid-template-columns: 1fr; }
    .coating-tag--right { border-left: none; }
    .coating-tag--solo { grid-column: 1; }
    .coating-tag--full { grid-column: 1; }
}


/* =============================================
   CERAMIC PACKAGES SECTION
   ============================================= */
.ceramic-pkgs {
    position: relative;
    padding: var(--space-24) 0;
    overflow: hidden;
    background: #0c0c0c;
}

.ceramic-pkgs__bg {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='800' height='800' viewBox='0 0 800 800' xmlns='http://www.w3.org/2000/svg'%3E%3Cg stroke='rgba(255,255,255,0.038)' stroke-width='1' fill='none' stroke-linecap='round'%3E%3Cpath d='M400 400 L320 280 L260 200 L210 120 M320 280 L270 320 L230 380 M260 200 L300 160 M400 400 L480 290 L540 210 L590 130 M480 290 L520 340 L560 390 M540 210 L500 170 M400 400 L290 460 L200 490 L110 510 M290 460 L310 520 L330 580 M200 490 L180 440 M400 400 L510 450 L600 480 L690 500 M510 450 L490 510 L480 570 M600 480 L620 430 M400 400 L360 530 L340 620 L320 720 M360 530 L310 540 L260 560 M340 620 L380 640 M400 400 L440 530 L460 620 L470 720 M440 530 L490 540 L540 555 M460 620 L420 645'/%3E%3Cpath d='M100 100 L160 180 L140 260 L170 340 M160 180 L200 160 M140 260 L100 280 M700 100 L640 180 L660 260 L630 340 M640 180 L600 160 M660 260 L700 280 M100 700 L160 620 L140 540 M160 620 L200 640 M700 700 L640 620 L660 540 M640 620 L600 640'/%3E%3C/g%3E%3C/svg%3E");
    background-size: 800px 800px;
    pointer-events: none;
}

.ceramic-pkgs__inner {
    position: relative;
    z-index: 1;
    display: flex;
    gap: var(--space-6);
    align-items: stretch;
}

.cpkg-col {
    flex: 1;
    min-width: 0;
}

.cpkg-card {
    position: relative;
    background: #161616;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: row;
    overflow: hidden;
    height: 100%;
    transition: border-color var(--transition-base), box-shadow var(--transition-base);
}

.cpkg-card:hover {
    border-color: rgba(23, 212, 155, 0.25);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.cpkg-card__main {
    flex-shrink: 0;
    width: 42%;
    padding: var(--space-8);
    display: flex;
    flex-direction: column;
    gap: var(--space-5);
    background: #131313;
}

.cpkg-card__divider {
    width: 1px;
    background: rgba(255, 255, 255, 0.08);
    flex-shrink: 0;
    align-self: stretch;
}

.cpkg-card__lists {
    flex: 1;
    padding: var(--space-8);
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
}

.cpkg-card__years {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--color-accent);
}

.cpkg-card__name {
    font-size: clamp(1.25rem, 2vw, 1.75rem);
    font-weight: 700;
    font-style: italic;
    text-transform: uppercase;
    line-height: 1.08;
}

.cpkg-card__desc {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.40);
    line-height: var(--leading-loose);
    flex: 1;
}

.cpkg-card__pricing {
    display: flex;
    align-items: baseline;
    gap: var(--space-2);
}

.cpkg-card__starts {
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

.cpkg-card__price {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}

.cpkg-list-group { display: flex; flex-direction: column; gap: var(--space-3); }

.cpkg-list-group__title {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.50);
}

.cpkg-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.cpkg-list li {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.70);
    line-height: var(--leading-normal);
}

.cpkg-check, .cpkg-shield { flex-shrink: 0; }

@media (max-width: 991px) {
    .ceramic-pkgs__inner { flex-direction: column; }
    .cpkg-card { flex-direction: column; }
    .cpkg-card__main { width: 100%; }
    .cpkg-card__divider { width: 100%; height: 1px; }
}


/* =============================================
   PREMIUM REVIEWS SECTION
   ============================================= */

.reviews-premium {
    position: relative;
    padding: var(--space-24) 0 var(--space-32);
    background: #0c0c0c;
    overflow: hidden;
}

.reviews-premium .container {
    position: relative;
    z-index: 1;
}

/* =============================================
   HEADER
   ============================================= */

.reviews-premium__header {
    text-align: center;
    margin-bottom: 80px;
}

.reviews-premium__eyebrow {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: var(--space-4);
}

.reviews-premium__title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 5rem);
    font-weight: 700;
    line-height: 0.95;
    text-transform: uppercase;
    color: #fff;
}

.reviews-premium__title span {
    color: var(--color-accent);
    font-style: italic;
}

/* =============================================
   SLIDER
   ============================================= */

.reviews-slider {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reviews-track {
    position: relative;

    width: 100%;
    max-width: 1100px;

    height: 520px;

    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: center;
}

/* =============================================
   CARDS
   ============================================= */

.review-card {
    position: absolute;
    top: 50%;
    left: 50%;

    width: 520px;
    padding: 48px;

    border-radius: 28px;

    background:
        linear-gradient(
            180deg,
            rgba(255,255,255,0.06),
            rgba(255,255,255,0.03)
        );

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    border: 1px solid rgba(255,255,255,0.08);

    overflow: hidden;

    transition:
        transform 500ms ease,
        opacity 500ms ease,
        box-shadow 500ms ease,
        border-color 300ms ease;
}

/* Giant quote mark */

.review-card::before {
    content: "“";

    position: absolute;
    top: 18px;
    right: 28px;

    font-size: 7rem;
    line-height: 1;

    font-family: var(--font-display);

    color: rgba(23, 212, 187, 0.08);

    pointer-events: none;
}

/* Quote */

.review-card__quote {
    position: relative;
    z-index: 2;

    max-width: 18ch;

    margin-bottom: 52px;

    font-size: 1.45rem;
    line-height: 1.5;

    color: rgba(255,255,255,0.92);
}

/* Footer */

.review-card__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-4);
}

.review-card__meta h3 {
    margin-bottom: 4px;

    font-size: 1rem;
    font-weight: 600;

    color: #fff;
}

.review-card__meta span {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.42);
}

.review-card__stars {
    flex-shrink: 0;

    font-size: 0.9rem;
    letter-spacing: 0.16em;

    color: var(--color-accent);
}

/* =============================================
   ACTIVE CARD
   ============================================= */

.review-card--active {
    z-index: 3;

    opacity: 1;

    transform:
        translate3d(-50%, -50%, 0)
        scale(1);

    box-shadow:
        0 35px 100px rgba(0,0,0,0.75);

    border-color: rgba(23, 212, 155, 0.22);
}

/* =============================================
   SIDE CARDS
   ============================================= */

.review-card--side {
    opacity: 0.32;
    z-index: 1;

    filter: blur(0.3px);
}

/* LEFT */

.review-card--side-left {
    transform:
        translate3d(calc(-50% - 320px), -50%, 0)
        scale(0.84)
        rotate(-5deg);
}

/* RIGHT */

.review-card--side-right {
    transform:
        translate3d(calc(-50% + 320px), -50%, 0)
        scale(0.84)
        rotate(5deg);
}

/* =============================================
   HOVER
   ============================================= */

.review-card:hover {
    border-color: rgba(23, 199, 212, 0.3);
}

/* =============================================
   NAVIGATION
   ============================================= */

.reviews-nav {
    position: absolute;
    top: 50%;

    transform: translateY(-50%);

    z-index: 10;

    width: 58px;
    height: 58px;

    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.10);

    background: rgba(255,255,255,0.04);

    color: #fff;

    cursor: pointer;

    transition:
        background 250ms ease,
        border-color 250ms ease,
        transform 250ms ease;
}

.reviews-nav--prev {
    left: calc(50% - 430px);
}

.reviews-nav--next {
    right: calc(50% - 430px);
}

.reviews-nav:hover {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: #000;

    transform:
        translateY(-50%)
        scale(1.04);
}

/* =============================================
   MOBILE
   ============================================= */

@media (max-width: 900px) {

    .reviews-track {
        height: 420px;
    }

    .review-card {
        width: 88%;
        padding: 34px;
    }

    .review-card__quote {
        font-size: 1.1rem;
    }

    .review-card--side-left,
    .review-card--side-right {
        display: none;
    }

    .reviews-nav {
        width: 48px;
        height: 48px;
    }

    .reviews-nav--prev {
        left: 6%;
    }

    .reviews-nav--next {
        right: 6%;
    }
}
/* =============================================
   TESTIMONIAL SECTION
   ============================================= */
.testimonial {
    position: relative;
    padding: var(--space-24) 0;
    overflow: hidden;
}

.testimonial__bg {
    position: absolute;
    inset: -10%;
    background-color: #080808;
    /* swap for: background-image: url('img/testimonial-bg.jpg'); background-size: cover; */
    background-image: radial-gradient(ellipse at 30% 50%, rgba(23, 143, 212, 0.05) 0%, transparent 60%);
    will-change: transform;
}

.testimonial__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.80);
}

.testimonial__container {
    position: relative;
    z-index: 1;
}

.testimonial__inner {
    text-align: center;
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-6);
    position: relative;
}

.testimonial__eyebrow {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--color-accent);
}

.testimonial__decor {
    font-family: var(--font-display);
    font-size: clamp(6rem, 14vw, 10rem);
    font-weight: 700;
    font-style: italic;
    color: rgba(23, 212, 187, 0.1);
    line-height: 0.6;
    pointer-events: none;
    user-select: none;
}

.testimonial__quote {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 700;
    font-style: italic;
    color: #fff;
    line-height: 1.25;
    quotes: none;
    margin-top: calc(-1 * var(--space-3));
}

.testimonial__meta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-2);
    padding-top: var(--space-4);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    width: 100%;
    max-width: 320px;
}

.testimonial__rating {
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

.testimonial__stars {
    color: var(--color-accent);
    font-size: 0.88rem;
    letter-spacing: 0.10em;
}

.testimonial__score {
    font-size: 0.8125rem;
    color: var(--color-text-secondary);
}

.testimonial__cite {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    font-style: normal;
    letter-spacing: 0.04em;
}

.testimonial__link {
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: var(--color-accent);
    transition: color var(--transition-fast), letter-spacing var(--transition-fast);
}

.testimonial__link:hover {
    color: var(--color-accent-hover);
    letter-spacing: 0.10em;
}


/* GALERIE */
/* =============================================
   PREMIUM GALLERY
============================================= */

.gallery-premium {
    position: relative;
    padding: var(--space-32) 0;
    background: #090909;
}

.gallery-grid {
    display: grid;

    grid-template-columns: 2fr 1fr 1fr;
    grid-auto-rows: 260px;

    gap: 18px;
}

.gallery-item {
    position: relative;

    overflow: hidden;
    border-radius: 0px;

    background: #111;

    border: 1px solid rgba(255,255,255,0.06);

    transition:
        transform 500ms ease,
        border-color 300ms ease,
        box-shadow 400ms ease;
}

.gallery-item img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 700ms ease,
        filter 500ms ease;
}

/* Large */
.gallery-item--large {
    grid-row: span 2;
}

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

/* Hover */
.gallery-item:hover {
    transform: translateY(-4px);

    border-color: rgba(23, 212, 187, 0.28);

    box-shadow:
        0 20px 50px rgba(0,0,0,0.45);
}

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

    filter: brightness(1.05);
}

/* Overlay */
.gallery-item::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(0,0,0,0.42),
            transparent
        );

    opacity: 0;

    transition: opacity 400ms ease;
}

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

/* Mobile */
@media (max-width: 991px) {

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 240px;
    }

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

/* =============================================
   13. BOOTSTRAP OVERRIDE GUARDS
   ============================================= */
body {
    font-family: var(--font-body);
    background: var(--color-bg-primary);
    color: var(--color-text-primary);
}

/* Ensure our container always uses our max-width, not Bootstrap breakpoint caps */
.container {
    max-width: var(--max-width);
    padding-inline: var(--space-6);
}

@media (min-width: 768px)  { .container { padding-inline: var(--space-8); } }
@media (min-width: 1024px) { .container { padding-inline: var(--space-12); } }

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: var(--leading-tight); }


/* =============================================
   14. SCROLL-TRIGGERED ANIMATIONS
   ============================================= */
@media (prefers-reduced-motion: no-preference) {
    .animate {
        opacity: 0;
        transform: translateY(18px);
        transition:
            opacity   0.65s cubic-bezier(0.22, 1, 0.36, 1),
            transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
    }
    .animate.is-visible {
        opacity: 1;
        transform: translateY(0);
    }

    /* Stagger delays — even 120ms spacing */
    .animate[data-delay="1"] { transition-delay: 0.10s; }
    .animate[data-delay="2"] { transition-delay: 0.22s; }
    .animate[data-delay="3"] { transition-delay: 0.34s; }
    .animate[data-delay="4"] { transition-delay: 0.46s; }
    .animate[data-delay="5"] { transition-delay: 0.58s; }

    /* Directional variants */
    .animate--left  { transform: translateX(-22px); }
    .animate--left.is-visible  { transform: translateX(0); }

    .animate--right { transform: translateX(22px); }
    .animate--right.is-visible { transform: translateX(0); }

    .animate--scale { transform: scale(0.97); }
    .animate--scale.is-visible { transform: scale(1); }
}

/* =============================================
   PREMIUM CONTACT SECTION
   ============================================= */

.contact-premium {
    position: relative;
    padding: var(--space-32) 0;
    background: #090909;
    overflow: hidden;
}

.contact-premium__bg {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            rgba(0,0,0,0.82),
            rgba(0,0,0,0.92)
        ),
        url("img/contact-bg.jpg");

    background-size: cover;
    background-position: center;

    opacity: 0.42;
}

.contact-premium .container {
    position: relative;
    z-index: 2;
}

/* =============================================
   GRID
   ============================================= */

.contact-premium__grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 90px;
    align-items: start;
}

/* =============================================
   LEFT CONTENT
   ============================================= */

.contact-premium__eyebrow {
    display: inline-block;

    margin-bottom: 18px;

    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;

    color: var(--color-accent);
}

.contact-premium__title {
    font-family: var(--font-display);

    font-size: clamp(3rem, 6vw, 6rem);
    font-weight: 700;

    line-height: 0.92;
    text-transform: uppercase;

    margin-bottom: 28px;

    color: #fff;
}

.contact-premium__title span {
    color: var(--color-accent);
    font-style: italic;
}

.contact-premium__text {
    max-width: 520px;

    margin-bottom: 48px;

    color: rgba(255,255,255,0.60);

    line-height: 1.9;
    font-size: 1rem;
}

/* =============================================
   CONTACT INFO GRID
   ============================================= */

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.contact-card {

    padding: 32px;

    border-radius: 14px;

    background:
        linear-gradient(
            180deg,
            rgba(255,255,255,0.05),
            rgba(255,255,255,0.02)
        );

    border: 1px solid rgba(255,255,255,0.08);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    transition:
        transform 300ms ease,
        border-color 300ms ease,
        background 300ms ease,
        box-shadow 300ms ease;
}

.contact-card:hover {

    transform: translateY(-4px);

    border-color: rgba(23, 212, 212, 0.2);

    box-shadow:
        0 20px 40px rgba(0,0,0,0.32);
}

/* =============================================
   ICONS
   ============================================= */

.contact-card__icon {

    width: 58px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 22px;

    border-radius: 14px;

    background:
        linear-gradient(
            180deg,
            rgba(23, 212, 139, 0.14),
            rgba(23, 212, 139, 0.05)
        );

    border: 1px solid rgba(23, 212, 149, 0.12);

    color: var(--color-accent);

    font-size: 1.2rem;

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.04),
        0 8px 24px rgba(0,0,0,0.24);
}

.contact-card h3 {

    margin-bottom: 14px;

    font-size: 0.9rem;
    font-weight: 700;

    letter-spacing: 0.12em;
    text-transform: uppercase;

    color: var(--color-accent);
}

.contact-card p {

    color: rgba(255,255,255,0.74);

    line-height: 1.8;
}

/* =============================================
   FORM WRAPPER
   ============================================= */

.contact-premium__form-wrap {
    position: relative;
}

.contact-form {

    padding: 44px;

    border-radius: 14px;

    background:
        linear-gradient(
            180deg,
            rgba(255,255,255,0.05),
            rgba(255,255,255,0.02)
        );

    border: 1px solid rgba(255,255,255,0.08);

    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);

    box-shadow:
        0 30px 80px rgba(0,0,0,0.40);
}

/* =============================================
   FORM LAYOUT
   ============================================= */

.contact-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.input-group {
    margin-bottom: 22px;
}

.input-group label {

    display: block;

    margin-bottom: 12px;

    font-size: 0.78rem;
    font-weight: 700;

    letter-spacing: 0.10em;
    text-transform: uppercase;

    color: rgba(255,255,255,0.82);
}

.input-group input,
.input-group textarea {

    width: 100%;

    padding: 22px 24px;

    border-radius: 0px;

    border: 1px solid rgba(255,255,255,0.08);

    background: rgba(255,255,255,0.03);

    color: #fff;

    font-size: 1rem;

    transition:
        border-color 250ms ease,
        box-shadow 250ms ease,
        background 250ms ease;
}

.input-group input::placeholder,
.input-group textarea::placeholder {
    color: rgba(255,255,255,0.34);
}

.input-group input:focus,
.input-group textarea:focus {

    outline: none;

    border-color: rgba(23, 212, 187, 0.42);

    background: rgba(255,255,255,0.045);

    box-shadow:
        0 0 0 4px rgba(23, 212, 171, 0.08);
}

.input-group textarea {

    min-height: 220px;

    resize: none;
}

/* =============================================
   BUTTON
   ============================================= */

.contact-form .btn {

    margin-top: 10px;
    width: 100%;
}

/* =============================================
   MOBILE
   ============================================= */

@media (max-width: 991px) {

    .contact-premium__grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

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

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

    .contact-form {
        padding: 32px;
    }

    .contact-premium__title {
        font-size: clamp(2.8rem, 12vw, 4.5rem);
    }
}