/* ========================================================
   S&S MEBLE NA WYMIAR — Stylesheet
   Kolory: #F05A1A / #FFFFFF / #1A1A1A / #F5F5F5
   Font: Poppins (Google Fonts)
======================================================== */

/* ========================
   RESET & VARIABLES
======================== */
:root {
    --orange:      #F05A1A;
    --orange-dark: #d44d14;
    --orange-pale: rgba(240, 90, 26, 0.10);
    --white:       #FFFFFF;
    --graphite:    #1A1A1A;
    --light-gray:  #F5F5F5;
    --mid-gray:    #E0E0E0;
    --text-main:   #2C2C2C;
    --text-muted:  #6B6B6B;
    --star-color:  #F5A623;

    --shadow-sm:  0 2px 8px rgba(0,0,0,0.07);
    --shadow-md:  0 8px 32px rgba(0,0,0,0.10);
    --shadow-lg:  0 20px 60px rgba(0,0,0,0.12);
    --shadow-orange: 0 8px 28px rgba(240, 90, 26, 0.30);

    --radius-s:   8px;
    --radius-m:   16px;
    --radius-l:   24px;

    --ease:       cubic-bezier(0.4, 0, 0.2, 1);
    --dur:        0.28s;

    --nav-h:      72px;
    --container:  1160px;
    --pad:        1.5rem;

    --font: 'Poppins', sans-serif;
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--nav-h);
}

body {
    font-family: var(--font);
    color: var(--text-main);
    background: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }
img { max-width: 100%; display: block; }
blockquote { margin: 0; }

/* ========================
   CONTAINER
======================== */
.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--pad);
}

/* ========================
   BUTTONS
======================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-s);
    font-family: var(--font);
    font-weight: 600;
    font-size: 0.9375rem;
    cursor: pointer;
    border: 2px solid transparent;
    transition: background var(--dur) var(--ease),
                border-color var(--dur) var(--ease),
                color var(--dur) var(--ease),
                transform var(--dur) var(--ease),
                box-shadow var(--dur) var(--ease);
    white-space: nowrap;
    line-height: 1;
}

.btn--orange {
    background: var(--orange);
    color: var(--white);
    border-color: var(--orange);
}
.btn--orange:hover,
.btn--orange:focus-visible {
    background: var(--orange-dark);
    border-color: var(--orange-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-orange);
}

.btn--outline {
    background: transparent;
    color: var(--graphite);
    border-color: var(--graphite);
}
.btn--outline:hover,
.btn--outline:focus-visible {
    background: var(--graphite);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn--lg {
    padding: 1rem 2rem;
    font-size: 1rem;
}

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

/* ========================
   SHARED SECTION STYLES
======================== */
section {
    padding: 5.5rem 0;
}

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

.section-tag {
    display: inline-block;
    background: var(--orange-pale);
    color: var(--orange);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.4rem 1rem;
    border-radius: 100px;
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(1.875rem, 4vw, 2.625rem);
    font-weight: 800;
    color: var(--graphite);
    line-height: 1.15;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.section-desc {
    color: var(--text-muted);
    font-size: 1.0625rem;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.75;
}

/* ========================
   SCROLL ANIMATIONS
======================== */
.animate-in {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.55s var(--ease),
                transform 0.55s var(--ease);
}
.animate-in.visible {
    opacity: 1;
    transform: translateY(0);
}
.animate-in:nth-child(1) { transition-delay: 0.05s; }
.animate-in:nth-child(2) { transition-delay: 0.13s; }
.animate-in:nth-child(3) { transition-delay: 0.21s; }
.animate-in:nth-child(4) { transition-delay: 0.29s; }
.animate-in:nth-child(5) { transition-delay: 0.37s; }
.animate-in:nth-child(6) { transition-delay: 0.45s; }

/* ========================
   NAVBAR
======================== */
.navbar {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 999;
    height: var(--nav-h);
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid transparent;
    transition: border-color var(--dur) var(--ease),
                box-shadow var(--dur) var(--ease);
}
.navbar.scrolled {
    border-bottom-color: var(--mid-gray);
    box-shadow: var(--shadow-sm);
}

.navbar__inner {
    display: flex;
    align-items: center;
    height: 100%;
    gap: 2rem;
}

.navbar__logo { flex-shrink: 0; }

.navbar__nav {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin: 0 auto;
}

.navbar__link {
    position: relative;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text-main);
    padding-bottom: 2px;
    transition: color var(--dur) var(--ease);
}
.navbar__link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--orange);
    border-radius: 1px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--dur) var(--ease);
}
.navbar__link:hover,
.navbar__link:focus-visible { color: var(--orange); }
.navbar__link:hover::after,
.navbar__link:focus-visible::after { transform: scaleX(1); }

.navbar__cta { flex-shrink: 0; }

.navbar__burger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 18px;
    background: none;
    border: none;
    cursor: pointer;
    flex-shrink: 0;
    padding: 0;
}
.navbar__burger span {
    display: block;
    height: 2px;
    background: var(--graphite);
    border-radius: 1px;
    transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease);
}
.navbar__burger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.navbar__burger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.navbar__burger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ========================
   HERO
======================== */
.hero {
    min-height: 100svh;
    display: flex;
    align-items: center;
    padding-top: var(--nav-h);
    position: relative;
    overflow: hidden;
    background: var(--white);
}

.hero__bg-shape {
    position: absolute;
    inset: 0;
    left: 52%;
    background: var(--light-gray);
    clip-path: polygon(8% 0, 100% 0, 100% 100%, 0 100%);
    pointer-events: none;
}

.hero__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--orange-pale);
    color: var(--orange);
    font-size: 0.8125rem;
    font-weight: 600;
    padding: 0.45rem 1rem;
    border-radius: 100px;
    margin-bottom: 1.5rem;
}

.hero__title {
    font-size: clamp(2.25rem, 5vw, 3.75rem);
    font-weight: 800;
    line-height: 1.08;
    color: var(--graphite);
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
}
.hero__title-accent { color: var(--orange); }

.hero__subtitle {
    font-size: 1.125rem;
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 2.5rem;
    max-width: 440px;
}

.hero__actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.hero__trust {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 0.9375rem;
    color: var(--text-muted);
}
.hero__stars {
    color: var(--star-color);
    font-size: 1.0625rem;
    letter-spacing: 0.04em;
}

/* Hero visual */
.hero__visual {
    position: relative;
    padding: 1rem 2rem 1rem 1rem;
}

.hero__img-frame {
    border-radius: var(--radius-l);
    overflow: hidden;
    aspect-ratio: 4 / 5;
    background: var(--white);
    box-shadow: var(--shadow-lg);
}

.hero__img-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero__img-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, #f0ede8 0%, #e4e0d8 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: #bbb;
}
.hero__img-placeholder p {
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.04em;
}

.hero__stat {
    position: absolute;
    background: var(--white);
    border-radius: var(--radius-m);
    box-shadow: var(--shadow-md);
    padding: 0.875rem 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
    min-width: 120px;
}
.hero__stat strong {
    font-size: 1.1875rem;
    font-weight: 800;
    color: var(--orange);
    line-height: 1;
}
.hero__stat span {
    font-size: 0.6875rem;
    color: var(--text-muted);
    font-weight: 500;
}
.hero__stat--top    { top: 10%;  right: 0; }
.hero__stat--bottom { bottom: 14%; left: -1rem; }

/* Scroll arrow */
.hero__scroll {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    color: var(--text-muted);
    animation: bounce 2s infinite;
    transition: color var(--dur);
}
.hero__scroll:hover { color: var(--orange); }

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%       { transform: translateX(-50%) translateY(6px); }
}

/* ========================
   O NAS
======================== */
.about {
    background: var(--light-gray);
}

.values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.value-card {
    background: var(--white);
    border-radius: var(--radius-m);
    padding: 2.25rem 2rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: transform var(--dur) var(--ease),
                box-shadow var(--dur) var(--ease);
}
.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.value-card__icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--orange-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--orange);
    transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
}
.value-card:hover .value-card__icon {
    background: var(--orange);
    color: var(--white);
}

.value-card h3 {
    font-size: 1.1875rem;
    font-weight: 700;
    color: var(--graphite);
    margin-bottom: 0.75rem;
}
.value-card p {
    color: var(--text-muted);
    font-size: 0.9375rem;
    line-height: 1.65;
}

/* ========================
   USŁUGI
======================== */
.services {
    background: var(--white);
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.service-card {
    position: relative;
    border: 2px solid var(--light-gray);
    border-radius: var(--radius-m);
    padding: 2.25rem 2rem;
    background: var(--white);
    transition: border-color var(--dur) var(--ease),
                box-shadow var(--dur) var(--ease),
                transform var(--dur) var(--ease);
    overflow: hidden;
}
.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--orange);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--dur) var(--ease);
}
.service-card:hover {
    border-color: transparent;
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}
.service-card:hover::after { transform: scaleX(1); }
.service-card:hover .service-card__icon {
    background: var(--orange);
    color: var(--white);
}

.service-card__icon {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-s);
    background: var(--orange-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--orange);
    transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
}

.service-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--graphite);
    margin-bottom: 0.75rem;
}
.service-card p {
    color: var(--text-muted);
    font-size: 0.9375rem;
    line-height: 1.65;
    margin-bottom: 1.5rem;
}

.service-card__link {
    display: inline-flex;
    align-items: center;
    color: var(--orange);
    font-weight: 600;
    font-size: 0.9375rem;
    transition: letter-spacing var(--dur) var(--ease);
}
.service-card__link:hover { letter-spacing: 0.02em; }

/* ========================
   GALERIA ZDJĘĆ
======================== */
.gallery {
    background: var(--light-gray);
}

.gallery__wrap {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.gallery__viewport {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: clamp(220px, 46vw, 520px);
    border-radius: var(--radius-m);
    background: #f0ede9;
    user-select: none;
}

.gallery__track {
    display: flex;
    height: 100%;
    transition: transform 0.4s ease;
    will-change: transform;
}

.gallery__slide {
    flex-shrink: 0;
    height: 100%;
    overflow: hidden;
}
.gallery__slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

/* Placeholder gradient cycling via nth-child */
.gallery__ph {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.875rem;
    background: linear-gradient(145deg, #e8e2dc, #cec5bd);
    color: #9a9086;
}
.gallery__slide:nth-child(6n+2) .gallery__ph { background: linear-gradient(145deg, #dde4ec, #c5cfd8); color: #8494a0; }
.gallery__slide:nth-child(6n+3) .gallery__ph { background: linear-gradient(145deg, #e4ecdd, #ccd8c5); color: #8a9984; }
.gallery__slide:nth-child(6n+4) .gallery__ph { background: linear-gradient(145deg, #ece4dd, #d8cec5); color: #9a9086; }
.gallery__slide:nth-child(6n+5) .gallery__ph { background: linear-gradient(145deg, #ece8dd, #d8d0c5); color: #9a968a; }
.gallery__slide:nth-child(6n+0) .gallery__ph { background: linear-gradient(145deg, #dde8e4, #c5d5d0); color: #849490; }
.gallery__ph span {
    font-size: 0.6875rem;
    font-weight: 500;
    font-family: monospace;
    letter-spacing: 0.04em;
    opacity: 0.75;
}

/* Navigation arrows */
.gallery__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(255,255,255,0.92);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--graphite);
    box-shadow: var(--shadow-md);
    transition: background var(--dur) var(--ease),
                color var(--dur) var(--ease),
                transform var(--dur) var(--ease);
    z-index: 2;
}
.gallery__arrow:hover {
    background: var(--orange);
    color: var(--white);
    transform: translateY(-50%) scale(1.08);
}
.gallery__arrow--prev { left: 1rem; }
.gallery__arrow--next { right: 1rem; }

/* Counter badge */
.gallery__counter {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background: rgba(0,0,0,0.52);
    color: var(--white);
    font-size: 0.8125rem;
    font-weight: 600;
    padding: 0.325rem 0.75rem;
    border-radius: 100px;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 2;
    pointer-events: none;
}

/* Thumbnail strip */
.gallery__thumbs-outer {
    overflow: hidden;
}
.gallery__thumbs {
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: thin;
    scrollbar-color: var(--mid-gray) transparent;
}
.gallery__thumbs::-webkit-scrollbar { height: 3px; }
.gallery__thumbs::-webkit-scrollbar-track { background: transparent; }
.gallery__thumbs::-webkit-scrollbar-thumb { background: var(--mid-gray); border-radius: 2px; }

.gallery__thumb {
    flex-shrink: 0;
    width: 88px;
    height: 62px;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    opacity: 0.5;
    border: 2px solid transparent;
    background: none;
    padding: 0;
    transition: opacity var(--dur) var(--ease),
                border-color var(--dur) var(--ease),
                transform var(--dur) var(--ease);
}
.gallery__thumb:hover { opacity: 0.8; transform: translateY(-2px); }
.gallery__thumb.active {
    opacity: 1;
    border-color: var(--orange);
    transform: translateY(-2px);
}
.gallery__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Thumbnail placeholder — same gradient cycling */
.gallery__thumb-ph {
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, #e8e2dc, #cec5bd);
}
.gallery__thumb:nth-child(6n+2) .gallery__thumb-ph { background: linear-gradient(145deg, #dde4ec, #c5cfd8); }
.gallery__thumb:nth-child(6n+3) .gallery__thumb-ph { background: linear-gradient(145deg, #e4ecdd, #ccd8c5); }
.gallery__thumb:nth-child(6n+4) .gallery__thumb-ph { background: linear-gradient(145deg, #ece4dd, #d8cec5); }
.gallery__thumb:nth-child(6n+5) .gallery__thumb-ph { background: linear-gradient(145deg, #ece8dd, #d8d0c5); }
.gallery__thumb:nth-child(6n+0) .gallery__thumb-ph { background: linear-gradient(145deg, #dde8e4, #c5d5d0); }

/* ========================
   FILMY (wertykalne)
======================== */
.films {
    background: var(--white);
}

.films__layout {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

/* Outer nav arrows */
.films__arrow {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--light-gray);
    border: 2px solid var(--mid-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--graphite);
    transition: background var(--dur) var(--ease),
                border-color var(--dur) var(--ease),
                color var(--dur) var(--ease),
                transform var(--dur) var(--ease);
}
.films__arrow:hover {
    background: var(--orange);
    border-color: var(--orange);
    color: var(--white);
    transform: scale(1.08);
}

/* Viewport — vertical phone width */
.films__viewport {
    overflow: hidden;
    width: 300px;
    flex-shrink: 0;
}

.films__track {
    display: flex;
    transition: transform 0.45s var(--ease);
    will-change: transform;
    touch-action: pan-y;
}

.films__slide {
    min-width: 100%;
    display: flex;
    justify-content: center;
}

/* Phone-shaped container 9:16 */
.films__phone {
    width: 100%;
    aspect-ratio: 9 / 16;
    border-radius: 22px;
    overflow: hidden;
    position: relative;
    background: var(--graphite);
    box-shadow: 0 10px 48px rgba(0,0,0,0.28),
                inset 0 0 0 3px rgba(255,255,255,0.06);
}

.films__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


/* Placeholder dark screen */
.films__ph {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: linear-gradient(170deg, #242424 0%, #161616 100%);
    color: rgba(255,255,255,0.3);
    padding: 2rem 1.5rem;
    text-align: center;
}
.films__ph svg { color: rgba(255,255,255,0.25); }
.films__ph span {
    font-size: 0.875rem;
    font-weight: 600;
    color: rgba(255,255,255,0.55);
}
.films__ph code {
    font-family: monospace;
    font-size: 0.625rem;
    opacity: 0.35;
    word-break: break-all;
}

/* Video overlay controls */
.films__controls {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0);
    transition: background var(--dur) var(--ease);
}
.films__phone:hover .films__controls { background: rgba(0,0,0,0.18); }

.films__play-btn {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(255,255,255,0.14);
    border: 2px solid rgba(255,255,255,0.38);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    cursor: pointer;
    opacity: 0;
    transition: opacity var(--dur) var(--ease),
                background var(--dur) var(--ease),
                transform var(--dur) var(--ease);
    backdrop-filter: blur(6px);
}
.films__phone:hover .films__play-btn { opacity: 1; }
.films__play-btn.paused              { opacity: 1; }
.films__play-btn:hover {
    background: var(--orange);
    border-color: var(--orange);
    transform: scale(1.1);
}

.films__mute-btn {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(0,0,0,0.45);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    cursor: pointer;
    opacity: 0;
    transition: opacity var(--dur) var(--ease), background var(--dur) var(--ease);
    backdrop-filter: blur(4px);
}
.films__phone:hover .films__mute-btn { opacity: 1; }
.films__mute-btn:hover { background: rgba(0,0,0,0.7); }

/* Dots nav */
.films__dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.75rem;
}
.film-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--mid-gray);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.film-dot.active {
    background: var(--orange);
    transform: scale(1.3);
}

/* ========================
   OPINIE
======================== */
.reviews {
    background: var(--graphite);
    color: var(--white);
}
.reviews .section-tag {
    background: rgba(240, 90, 26, 0.22);
    color: #FFA07A;
}
.reviews .section-title { color: var(--white); }

.reviews__meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    margin-top: 0.75rem;
    flex-wrap: wrap;
}
.reviews__stars {
    color: var(--star-color);
    font-size: 1.125rem;
    letter-spacing: 0.04em;
}
.reviews__meta strong { color: var(--white); font-size: 1.125rem; }
.reviews__count { color: rgba(255,255,255,0.55); font-size: 0.9375rem; }

.reviews__carousel-wrap {
    max-width: 700px;
    margin: 0 auto;
}

.reviews__carousel {
    overflow: hidden;
    border-radius: var(--radius-m);
}

.reviews__track {
    display: flex;
    transition: transform 0.5s var(--ease);
    touch-action: pan-y;
}

.review-card {
    min-width: 100%;
    padding: 2.5rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: var(--radius-m);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.review-card__stars {
    color: var(--star-color);
    font-size: 1.125rem;
    letter-spacing: 0.06em;
}

.review-card__text {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: rgba(255,255,255,0.88);
    font-style: italic;
    font-weight: 300;
}

.review-card__author {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.review-card__avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
    color: var(--white);
    flex-shrink: 0;
}
.review-card__info {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}
.review-card__info strong { color: var(--white); font-size: 0.9375rem; }
.review-card__info span  { color: rgba(255,255,255,0.45); font-size: 0.8125rem; }

.reviews__controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.reviews__btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease);
    flex-shrink: 0;
}
.reviews__btn:hover {
    background: var(--orange);
    border-color: var(--orange);
}

.reviews__dots {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.review-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.25);
    border: none;
    cursor: pointer;
    transition: background var(--dur) var(--ease), transform var(--dur) var(--ease);
    padding: 0;
}
.review-dot.active {
    background: var(--orange);
    transform: scale(1.25);
}

/* ========================
   KONTAKT
======================== */
.contact {
    background: var(--white);
}

.contact__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

/* Form */
.contact__form-wrap {
    background: var(--light-gray);
    border-radius: var(--radius-l);
    padding: 2.5rem;
}

.contact__form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.form-group label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--graphite);
}
.form-group label span { color: var(--orange); }

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--mid-gray);
    border-radius: var(--radius-s);
    font-family: var(--font);
    font-size: 0.9375rem;
    color: var(--text-main);
    background: var(--white);
    transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
    outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #bbb; }
.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(240, 90, 26, 0.12);
}
.form-group textarea { resize: vertical; min-height: 130px; }

.form-note {
    font-size: 0.8125rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: 0.25rem;
}

/* Form success */
.form-success {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 1rem;
    padding: 2rem;
    min-height: 280px;
}
.form-success h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--graphite);
}
.form-success p {
    color: var(--text-muted);
    font-size: 1.0625rem;
}

/* Info column */
.contact__info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding-top: 0.5rem;
}

.contact__call-btn {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    background: var(--orange);
    color: var(--white);
    border-radius: var(--radius-m);
    padding: 1.5rem 2rem;
    transition: background var(--dur) var(--ease), transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.contact__call-btn:hover {
    background: var(--orange-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-orange);
}
.contact__call-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.contact__call-btn > div:last-child {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}
.contact__call-btn span {
    font-size: 0.8125rem;
    opacity: 0.85;
    font-weight: 500;
}
.contact__call-btn strong {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 0.01em;
}

.contact__hours {
    background: var(--light-gray);
    border-radius: var(--radius-m);
    padding: 1.75rem;
}
.contact__hours h4 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--graphite);
    margin-bottom: 1.25rem;
}
.hours-list { display: flex; flex-direction: column; gap: 0; }
.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--mid-gray);
    font-size: 0.9375rem;
}
.hours-item:last-child { border-bottom: none; }
.hours-item span { color: var(--text-muted); }
.hours-item strong { color: var(--graphite); font-weight: 600; }
.hours-item--closed strong { color: #bbb; }

.contact__social h4 {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--graphite);
    margin-bottom: 1rem;
}
.social-links { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--light-gray);
    border: 2px solid var(--mid-gray);
    border-radius: var(--radius-s);
    padding: 0.6rem 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-main);
    transition: all var(--dur) var(--ease);
}
.social-link:hover {
    border-color: var(--orange);
    color: var(--orange);
    background: var(--white);
}

/* ========================
   FOOTER
======================== */
.footer {
    background: var(--graphite);
    padding: 3rem 0;
}
.footer__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer__social {
    display: flex;
    gap: 0.75rem;
}
.footer__social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.65);
    transition: background var(--dur), color var(--dur), border-color var(--dur);
}
.footer__social-icon:hover {
    background: var(--orange);
    border-color: var(--orange);
    color: var(--white);
}

.footer__copy {
    color: rgba(255,255,255,0.35);
    font-size: 0.8125rem;
}

/* ========================
   RESPONSIVE
======================== */

/* Tablet */
@media (max-width: 1024px) {
    .services__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Medium tablet */
@media (max-width: 900px) {
    /* Navbar */
    .navbar__burger { display: flex; margin-left: auto; }
    .navbar__cta    { display: none; }

    .navbar__nav {
        position: fixed;
        top: var(--nav-h);
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: flex-start;
        background: var(--white);
        padding: 1.5rem var(--pad) 2rem;
        gap: 0;
        border-bottom: 1px solid var(--mid-gray);
        box-shadow: var(--shadow-md);
        transform: translateY(-110%);
        opacity: 0;
        pointer-events: none;
        transition: transform 0.35s var(--ease), opacity 0.35s var(--ease);
        z-index: 998;
    }
    .navbar__nav.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }
    .navbar__link {
        width: 100%;
        padding: 0.875rem 0;
        border-bottom: 1px solid var(--light-gray);
        font-size: 1rem;
    }
    .navbar__link:last-child { border-bottom: none; }

    /* Hero */
    .hero__inner {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero__bg-shape { display: none; }
    .hero__badge { margin: 0 auto 1.5rem; }
    .hero__subtitle { margin-left: auto; margin-right: auto; }
    .hero__actions { justify-content: center; }
    .hero__trust  { justify-content: center; }
    .hero__visual {
        max-width: 360px;
        margin: 0 auto;
        padding: 0 2rem;
    }

    /* Contact */
    .contact__inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

/* Small tablet */
@media (max-width: 767px) {
    section { padding: 4rem 0; }

    .values {
        grid-template-columns: 1fr;
        max-width: 440px;
        margin: 0 auto;
    }
    .footer__inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    /* Gallery */
    .gallery__viewport { height: clamp(200px, 56vw, 360px); }
    .gallery__thumb { width: 72px; height: 52px; }

    /* Films */
    .films__layout { gap: 0.875rem; }
    .films__viewport { width: clamp(200px, 58vw, 300px); }
    .films__arrow { width: 40px; height: 40px; }
}

/* Mobile */
@media (max-width: 540px) {
    :root { --pad: 1rem; }

    .hero__title { font-size: 2rem; }

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

    .hero__stat--top    { right: -0.5rem; }
    .hero__stat--bottom { left: -0.5rem; }

    .contact__form-wrap { padding: 1.5rem; }
    .review-card { padding: 1.75rem; }

    /* Gallery mobile */
    .gallery__viewport { height: 56vw; min-height: 180px; }
    .gallery__arrow { width: 36px; height: 36px; }
    .gallery__arrow--prev { left: 0.5rem; }
    .gallery__arrow--next { right: 0.5rem; }
    .gallery__thumb { width: 60px; height: 44px; }

    /* Films mobile — full width minus arrows */
    .films__layout { gap: 0.5rem; }
    .films__viewport { width: calc(100vw - 7rem); }
    .films__arrow { width: 36px; height: 36px; }
}

/* ========================
   FAQ
======================== */
.faq {
    padding: 5rem 0;
    background: var(--light-gray);
}

.faq__list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    max-width: 800px;
    margin: 0 auto;
}

.faq__item {
    background: var(--white);
    border-radius: var(--radius-m);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: box-shadow var(--dur) var(--ease);
}

.faq__item[open] {
    box-shadow: var(--shadow-md);
}

.faq__question {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-main);
    cursor: pointer;
    user-select: none;
}

.faq__question::-webkit-details-marker { display: none; }

.faq__question::after {
    content: '+';
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--orange);
    flex-shrink: 0;
    line-height: 1;
    transition: transform var(--dur) var(--ease);
}

.faq__item[open] .faq__question::after {
    transform: rotate(45deg);
}

.faq__answer {
    padding: 0 1.5rem 1.25rem;
    color: var(--text-muted);
    line-height: 1.75;
    font-size: 0.95rem;
}

.faq__answer a {
    color: var(--orange);
    text-decoration: none;
}

.faq__answer a:hover {
    text-decoration: underline;
}

/* Footer address */
.footer__address {
    font-size: 0.78rem;
    color: var(--text-muted);
    font-style: normal;
    margin-top: 0.5rem;
    text-align: center;
}

.footer__address a {
    color: var(--text-muted);
    text-decoration: none;
}

@media (max-width: 480px) {
    .faq__question { font-size: 0.92rem; padding: 1rem 1.25rem; }
    .faq__answer { padding: 0 1.25rem 1rem; }
}
