/* ============================================================
   Stomatologia Estetyczna Anna Freyer — Kraków
   Arkusz stylów (wydzielony z anna_freyer_website.html)
   ============================================================ */

        :root {
            --navy:        #0C1830;
            --navy-mid:    #142044;
            --navy-light:  #1C2E5A;
            --gold:        #C9A050;
            --gold-light:  #EDC96A;
            --gold-pale:   #FAE49A;
            --gold-dark:   #7A5810;
            --white:       #FFFFFF;
            --text-dim:    rgba(255,255,255,0.58);
        }

        *, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
        html { scroll-behavior: smooth; }

        body {
            font-family: 'Raleway', sans-serif;
            background: var(--navy);
            color: var(--white);
            overflow-x: hidden;
        }

        ::-webkit-scrollbar { width: 6px; }
        ::-webkit-scrollbar-track { background: var(--navy); }
        ::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }
        ::selection { background: var(--gold); color: var(--navy); }

        /* ══════════════════════════════════
           LOADER
        ══════════════════════════════════ */
        #loader {
            position: fixed; inset: 0; background: var(--navy);
            z-index: 99999; display: flex; flex-direction: column;
            align-items: center; justify-content: center; gap: 28px;
            transition: opacity .7s ease, visibility .7s ease;
        }
        #loader.out { opacity: 0; visibility: hidden; pointer-events: none; }

        .loader-wordmark {
            text-align: center;
            font-family: 'Playfair Display', serif;
            font-size: 1.6rem;
            letter-spacing: 3px;
            color: var(--gold-light);
            line-height: 1.5;
        }
        .loader-wordmark span {
            display: block;
            font-family: 'Raleway', sans-serif;
            font-size: .65rem;
            font-weight: 300;
            letter-spacing: 7px;
            text-transform: uppercase;
            color: rgba(237,201,106,.5);
            margin-top: 6px;
        }
        .loader-bar-track {
            width: 200px; height: 1px;
            background: rgba(201,160,80,.18);
            position: relative; overflow: hidden;
        }
        .loader-bar {
            position: absolute; left: 0; top: 0; height: 100%;
            background: linear-gradient(90deg, var(--gold-dark), var(--gold-pale));
            animation: loadSlide 1.6s cubic-bezier(.4,0,.2,1) forwards;
        }
        @keyframes loadSlide { to { width: 100%; } }

        /* ══════════════════════════════════
           NAVIGATION
        ══════════════════════════════════ */
        nav {
            position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
            padding: 22px 64px;
            display: flex; justify-content: space-between; align-items: center;
            transition: all .45s ease;
        }
        nav.stuck {
            background: rgba(12,24,48,.96);
            backdrop-filter: blur(24px);
            padding: 14px 64px;
            border-bottom: 1px solid rgba(201,160,80,.18);
            box-shadow: 0 8px 40px rgba(0,0,0,.35);
        }

        .nav-brand {
            text-decoration: none;
            font-family: 'Playfair Display', serif;
            font-size: 1.15rem;
            color: var(--gold-light);
            letter-spacing: 1.5px;
            line-height: 1.35;
        }
        .nav-brand em {
            display: block;
            font-style: normal;
            font-family: 'Raleway', sans-serif;
            font-size: .58rem;
            font-weight: 400;
            letter-spacing: 5px;
            text-transform: uppercase;
            color: rgba(237,201,106,.5);
        }

        .nav-links { list-style: none; display: flex; gap: 38px; }
        .nav-links a {
            color: rgba(255,255,255,.75);
            text-decoration: none;
            font-size: .76rem;
            letter-spacing: 2.5px;
            text-transform: uppercase;
            font-weight: 500;
            position: relative;
            transition: color .3s;
        }
        .nav-links a::after {
            content: ''; position: absolute;
            bottom: -5px; left: 0; width: 0; height: 1px;
            background: var(--gold);
            transition: width .3s ease;
        }
        .nav-links a:hover { color: var(--gold-light); }
        .nav-links a:hover::after { width: 100%; }

        .nav-cta-link {
            border: 1px solid rgba(201,160,80,.55) !important;
            padding: 9px 22px !important;
            color: var(--gold-light) !important;
            transition: all .3s ease !important;
        }
        .nav-cta-link::after { display: none !important; }
        .nav-cta-link:hover {
            background: var(--gold) !important;
            color: var(--navy) !important;
        }

        .hamburger {
            display: none; flex-direction: column;
            gap: 5px; cursor: pointer; padding: 4px;
        }
        .hamburger span {
            display: block; width: 26px; height: 2px;
            background: var(--gold); border-radius: 2px;
            transition: all .3s;
        }

        /* ══════════════════════════════════
           MOBILE MENU
        ══════════════════════════════════ */
        .mob-nav {
            display: none; position: fixed; inset: 0;
            background: rgba(8,16,34,.98);
            z-index: 998; flex-direction: column;
            align-items: center; justify-content: center; gap: 36px;
        }
        .mob-nav.open { display: flex; }
        .mob-nav a {
            font-family: 'Playfair Display', serif;
            font-size: 1.9rem; color: var(--white);
            text-decoration: none; transition: color .3s;
        }
        .mob-nav a:hover { color: var(--gold-light); }
        .mob-close {
            position: absolute; top: 26px; right: 30px;
            background: none; border: none;
            color: var(--gold); font-size: 1.6rem; cursor: pointer;
        }

        /* ══════════════════════════════════
           LIGHTBOX
        ══════════════════════════════════ */
        .lb {
            display: none; position: fixed; inset: 0;
            background: rgba(0,0,0,.96); z-index: 9999;
            align-items: center; justify-content: center;
        }
        .lb.open { display: flex; }
        .lb img {
            max-width: 90vw; max-height: 90vh;
            object-fit: contain;
            border: 1px solid rgba(201,160,80,.25);
        }
        .lb-x {
            position: absolute; top: 22px; right: 28px;
            color: var(--gold); font-size: 1.6rem; cursor: pointer;
        }

        /* ══════════════════════════════════
           HERO
        ══════════════════════════════════ */
        #hero {
            position: relative; min-height: 100vh;
            display: flex; align-items: center; justify-content: center;
            overflow: hidden;
            background: radial-gradient(ellipse at 50% 60%, #14265C 0%, #0C1830 55%, #060D1A 100%);
        }
        #ptc { position: absolute; inset: 0; z-index: 0; }
        .hero-glow {
            position: absolute; inset: 0; z-index: 1;
            background: radial-gradient(ellipse at 50% 50%,
                rgba(201,160,80,.07) 0%, transparent 65%);
        }

        .hero-inner {
            position: relative; z-index: 2;
            text-align: center; padding: 0 24px;
            max-width: 920px;
        }

        .hero-eyebrow {
            display: inline-flex; align-items: center; gap: 14px;
            font-size: .68rem; letter-spacing: 5px;
            text-transform: uppercase; color: var(--gold);
            margin-bottom: 30px;
            opacity: 0; transform: translateY(18px);
            animation: up .8s ease .3s forwards;
        }
        .hero-eyebrow::before, .hero-eyebrow::after {
            content: ''; display: block;
            width: 38px; height: 1px; background: var(--gold);
        }

        .hero-h1 {
            font-family: 'Playfair Display', serif;
            font-size: clamp(3rem, 8vw, 6rem);
            font-weight: 700; line-height: 1.0;
            margin-bottom: 6px;
            opacity: 0; transform: translateY(28px);
            animation: up .9s ease .5s forwards;
        }
        .hero-h1 .shine {
            background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold-pale) 45%, var(--gold) 100%);
            -webkit-background-clip: text; -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-name {
            font-family: 'Playfair Display', serif;
            font-style: italic; font-weight: 400;
            font-size: clamp(1.4rem, 3.5vw, 2.4rem);
            color: rgba(237,201,106,.82);
            margin-bottom: 28px;
            opacity: 0; transform: translateY(24px);
            animation: up .9s ease .65s forwards;
        }

        .hero-sub {
            font-size: 1rem; line-height: 1.85;
            color: rgba(255,255,255,.6);
            font-weight: 300; letter-spacing: .4px;
            max-width: 580px; margin: 0 auto 46px;
            opacity: 0; transform: translateY(18px);
            animation: up .9s ease .82s forwards;
        }

        .hero-btns {
            display: flex; gap: 18px;
            justify-content: center; flex-wrap: wrap;
            opacity: 0; transform: translateY(16px);
            animation: up .9s ease 1s forwards;
        }

        .btn-gold {
            display: inline-flex; align-items: center; gap: 10px;
            background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
            color: var(--navy); padding: 16px 40px;
            border: none; border-radius: 2px;
            font-family: 'Raleway', sans-serif;
            font-size: .8rem; font-weight: 700;
            letter-spacing: 2.5px; text-transform: uppercase;
            text-decoration: none; cursor: pointer;
            position: relative; overflow: hidden;
            transition: transform .3s, box-shadow .3s;
        }
        .btn-gold::before {
            content: ''; position: absolute; inset: 0;
            background: linear-gradient(135deg, var(--gold-light), var(--gold-pale));
            opacity: 0; transition: opacity .3s;
        }
        .btn-gold:hover::before { opacity: 1; }
        .btn-gold:hover {
            transform: translateY(-3px);
            box-shadow: 0 14px 44px rgba(201,160,80,.42);
        }
        .btn-gold > * { position: relative; z-index: 1; }

        .btn-ghost {
            display: inline-flex; align-items: center; gap: 10px;
            background: transparent;
            color: var(--gold-light); padding: 15px 36px;
            border: 1px solid rgba(201,160,80,.48);
            border-radius: 2px;
            font-family: 'Raleway', sans-serif;
            font-size: .8rem; font-weight: 500;
            letter-spacing: 2px; text-transform: uppercase;
            text-decoration: none; cursor: pointer;
            transition: all .3s ease;
        }
        .btn-ghost:hover {
            background: rgba(201,160,80,.1);
            border-color: var(--gold);
            transform: translateY(-3px);
        }

        /* ══════════════════════════════════
           STATS RIBBON
        ══════════════════════════════════ */
        #stats {
            padding: 0;
            background: linear-gradient(90deg, #080F20, #0C1830, #080F20);
            border-top: 1px solid rgba(201,160,80,.12);
            border-bottom: 1px solid rgba(201,160,80,.12);
        }
        .stats-wrap {
            max-width: 1200px; margin: 0 auto; padding: 0 40px;
            display: grid; grid-template-columns: repeat(4,1fr);
        }
        .stat-box {
            text-align: center; padding: 46px 16px;
            border-right: 1px solid rgba(201,160,80,.12);
        }
        .stat-box:last-child { border-right: none; }
        .stat-num {
            font-family: 'Playfair Display', serif;
            font-size: 3rem; font-weight: 700;
            line-height: 1; margin-bottom: 10px;
            background: linear-gradient(135deg, var(--gold-dark), var(--gold-pale), var(--gold));
            background-size: 200% auto;
            -webkit-background-clip: text; -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: shimmer 3.5s linear infinite;
        }
        .stat-lbl {
            font-size: .72rem; letter-spacing: 2.5px;
            text-transform: uppercase; color: rgba(255,255,255,.4);
        }

        /* ══════════════════════════════════
           SECTION UTILITIES
        ══════════════════════════════════ */
        section { padding: 108px 0; }
        .wrap { max-width: 1200px; margin: 0 auto; padding: 0 40px; }

        .sec-label {
            display: inline-flex; align-items: center; gap: 13px;
            font-size: .68rem; letter-spacing: 4.5px;
            text-transform: uppercase; color: var(--gold);
            margin-bottom: 18px;
        }
        .sec-label::before {
            content: ''; display: block;
            width: 28px; height: 1px; background: var(--gold);
        }
        .sec-h2 {
            font-family: 'Playfair Display', serif;
            font-size: clamp(2rem,4vw,3.2rem);
            font-weight: 700; line-height: 1.15;
        }
        .sec-h2 .ac { color: var(--gold-light); }

        .divider {
            display: flex; align-items: center;
            gap: 16px; margin: 20px 0 56px;
        }
        .divider-l {
            flex: 1; max-width: 55px; height: 1px;
            background: linear-gradient(to right, var(--gold), transparent);
        }
        .divider-r {
            flex: 1; max-width: 55px; height: 1px;
            background: linear-gradient(to left, var(--gold), transparent);
        }
        .divider-diamond {
            width: 8px; height: 8px;
            background: var(--gold); transform: rotate(45deg);
        }

        /* ══════════════════════════════════
           SERVICES
        ══════════════════════════════════ */
        #services { background: var(--navy); }
        .svc-head { text-align: center; max-width: 680px; margin: 0 auto 72px; }
        .svc-grid {
            display: grid; grid-template-columns: repeat(3,1fr); gap: 2px;
        }
        .svc-card {
            background: rgba(20,32,68,.8);
            border: 1px solid rgba(201,160,80,.08);
            padding: 50px 38px; position: relative;
            overflow: hidden; cursor: default;
            transition: all .4s ease;
        }
        .svc-card::after {
            content: ''; position: absolute;
            bottom: 0; left: 0; right: 0; height: 2px;
            background: linear-gradient(90deg, transparent, var(--gold), transparent);
            transform: scaleX(0); transition: transform .4s ease;
        }
        .svc-card:hover::after { transform: scaleX(1); }
        .svc-card:hover {
            background: rgba(28,46,90,.9);
            transform: translateY(-5px);
            box-shadow: 0 22px 60px rgba(0,0,0,.45);
            border-color: rgba(201,160,80,.22);
        }
        .svc-bg-num {
            position: absolute; top: 24px; right: 26px;
            font-family: 'Playfair Display', serif;
            font-size: 4.5rem; font-weight: 700;
            color: rgba(201,160,80,.04);
            line-height: 1; user-select: none;
        }
        .svc-icon-ring {
            width: 62px; height: 62px;
            border: 1px solid rgba(201,160,80,.22);
            border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            margin-bottom: 28px;
            transition: border-color .4s;
        }
        .svc-card:hover .svc-icon-ring {
            border-color: rgba(201,160,80,.6);
            box-shadow: 0 0 24px rgba(201,160,80,.1);
        }
        .svc-icon-ring i { font-size: 1.7rem; color: var(--gold); }
        .svc-title {
            font-family: 'Playfair Display', serif;
            font-size: 1.28rem; font-weight: 600;
            margin-bottom: 14px;
        }
        .svc-desc {
            font-size: .87rem; line-height: 1.8;
            color: var(--text-dim); font-weight: 300;
        }

        /* ══════════════════════════════════
           ABOUT
        ══════════════════════════════════ */
        #about {
            background: linear-gradient(180deg, var(--navy) 0%, #09152E 100%);
        }
        .about-grid {
            display: grid; grid-template-columns: 1fr 1fr;
            gap: 90px; align-items: center;
        }
        .about-img-wrap { position: relative; }
        .about-img-frame {
            width: 100%; aspect-ratio: 4/5; overflow: hidden;
            position: relative;
        }
        .about-img-frame img {
            width: 100%; height: 100%; object-fit: cover;
        }
        .about-img-border {
            position: absolute;
            top: 22px; left: 22px;
            right: -22px; bottom: -22px;
            border: 1px solid rgba(201,160,80,.28);
            z-index: -1;
        }
        .about-badge-circle {
            position: absolute; bottom: -24px; right: -24px;
            width: 118px; height: 118px;
            background: linear-gradient(135deg, var(--gold-dark), var(--gold));
            border-radius: 50%;
            display: flex; flex-direction: column;
            align-items: center; justify-content: center;
            z-index: 2; text-align: center;
            box-shadow: 0 8px 32px rgba(201,160,80,.35);
        }
        .about-badge-circle .bn {
            font-family: 'Playfair Display', serif;
            font-size: 2.3rem; font-weight: 700;
            color: var(--navy); line-height: 1;
        }
        .about-badge-circle .bt {
            font-size: .55rem; font-weight: 700;
            color: var(--navy); text-transform: uppercase;
            letter-spacing: 1px; line-height: 1.4; margin-top: 3px;
        }

        .about-body p {
            font-size: .93rem; line-height: 1.92;
            color: rgba(255,255,255,.62);
            font-weight: 300; margin-bottom: 20px;
        }
        .feats {
            display: grid; grid-template-columns: 1fr 1fr;
            gap: 18px; margin-top: 36px;
        }
        .feat {
            display: flex; align-items: flex-start; gap: 14px;
        }
        .feat-ico {
            width: 38px; height: 38px; min-width: 38px;
            border: 1px solid rgba(201,160,80,.28);
            display: flex; align-items: center; justify-content: center;
            margin-top: 2px;
        }
        .feat-ico i { font-size: .9rem; color: var(--gold); }
        .feat-txt strong {
            display: block; font-size: .84rem;
            font-weight: 600; margin-bottom: 3px;
        }
        .feat-txt span {
            font-size: .78rem; color: rgba(255,255,255,.45);
            font-weight: 300;
        }

        /* ══════════════════════════════════
           HOURS + CONTACT
        ══════════════════════════════════ */
        #hours {
            background: linear-gradient(135deg, #060D1A, #0C1830);
            position: relative; overflow: hidden;
        }
        #hours::before {
            content: ''; position: absolute;
            top: -180px; right: -180px;
            width: 560px; height: 560px;
            background: radial-gradient(circle, rgba(201,160,80,.045) 0%, transparent 68%);
            pointer-events: none;
        }
        .hours-grid {
            display: grid; grid-template-columns: 1fr 1fr;
            gap: 80px; align-items: start;
        }

        .hours-table {
            background: rgba(20,32,68,.45);
            border: 1px solid rgba(201,160,80,.14);
            overflow: hidden;
        }
        .hours-thead {
            background: linear-gradient(135deg,
                rgba(201,160,80,.14), rgba(201,160,80,.04));
            padding: 20px 30px;
            border-bottom: 1px solid rgba(201,160,80,.14);
        }
        .hours-thead h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.05rem; color: var(--gold-light);
        }
        .hr-row {
            display: flex; justify-content: space-between;
            align-items: center;
            padding: 16px 30px;
            border-bottom: 1px solid rgba(255,255,255,.04);
            transition: background .3s;
        }
        .hr-row:last-child { border-bottom: none; }
        .hr-row.today {
            background: rgba(201,160,80,.07);
            border-left: 2px solid var(--gold);
        }
        .hr-row .day-name {
            font-size: .86rem; color: rgba(255,255,255,.7);
            display: flex; align-items: center; gap: 10px;
        }
        .hr-row.today .day-name { color: var(--gold-light); }
        .today-pill {
            font-size: .52rem;
            background: var(--gold); color: var(--navy);
            padding: 2px 7px; border-radius: 2px;
            font-weight: 700; letter-spacing: 1px;
            text-transform: uppercase;
        }
        .hr-row .time-val {
            font-size: .86rem; font-weight: 500;
        }
        .hr-row .time-val.closed { color: rgba(255,255,255,.3); }
        .hr-row.today .time-val { color: var(--gold-light); font-weight: 600; }

        .contact-list { margin-top: 40px; }
        .citem {
            display: flex; align-items: center;
            gap: 18px; padding: 20px 0;
            border-bottom: 1px solid rgba(255,255,255,.055);
        }
        .citem:last-child { border-bottom: none; }
        .citem-ico {
            width: 52px; height: 52px; min-width: 52px;
            border: 1px solid rgba(201,160,80,.28);
            display: flex; align-items: center; justify-content: center;
        }
        .citem-ico i { font-size: 1.1rem; color: var(--gold); }
        .citem-info strong {
            display: block; font-size: .72rem;
            letter-spacing: 2.5px; text-transform: uppercase;
            color: rgba(255,255,255,.36); margin-bottom: 4px;
        }
        .citem-info a, .citem-info span {
            font-size: .95rem; color: var(--white);
            text-decoration: none; font-weight: 400;
            transition: color .3s;
        }
        .citem-info a:hover { color: var(--gold-light); }

        /* ══════════════════════════════════
           GALLERY
        ══════════════════════════════════ */
        #gallery { background: var(--navy); }
        .gal-head { text-align: center; max-width: 640px; margin: 0 auto 60px; }
        .gal-grid {
            display: grid;
            /* 3 колонки: первая плитка высокая и занимает два ряда,
               остальные четыре закрывают оставшееся место без дыр. */
            grid-template-columns: 1.35fr 1fr 1fr;
            grid-template-rows: 280px 280px;
            gap: 4px;
        }
        .gal-grid .gi:nth-child(1){ grid-column: 1; grid-row: 1 / span 2; }
        .gal-grid .gi:nth-child(2){ grid-column: 2; grid-row: 1; }
        .gal-grid .gi:nth-child(3){ grid-column: 3; grid-row: 1; }
        .gal-grid .gi:nth-child(4){ grid-column: 2; grid-row: 2; }
        .gal-grid .gi:nth-child(5){ grid-column: 3; grid-row: 2; }

        .gi {
            overflow: hidden; position: relative; cursor: pointer;
        }
        .gi img {
            width: 100%; height: 100%;
            object-fit: cover;
            transition: transform .65s ease;
        }
        .gi:hover img { transform: scale(1.07); }
        .gi-overlay {
            position: absolute; inset: 0;
            background: linear-gradient(to top,
                rgba(12,24,48,.72), transparent);
            opacity: 0; transition: opacity .4s;
            display: flex; align-items: center; justify-content: center;
        }
        .gi:hover .gi-overlay { opacity: 1; }
        .gi-zoom {
            width: 50px; height: 50px;
            border: 1px solid rgba(201,160,80,.7);
            display: flex; align-items: center; justify-content: center;
        }
        .gi-zoom i { color: var(--gold-light); font-size: 1.05rem; }

        /* ══════════════════════════════════
           CERTIFICATES
        ══════════════════════════════════ */
        #certs {
            background: linear-gradient(180deg, #09152E 0%, var(--navy) 100%);
            text-align: center;
        }
        .cert-grid {
            display: grid; grid-template-columns: repeat(3,1fr);
            gap: 28px; max-width: 900px; margin: 0 auto;
        }
        .cert-box {
            background: rgba(20,32,68,.55);
            border: 1px solid rgba(201,160,80,.09);
            padding: 34px 22px;
            transition: all .35s ease;
        }
        .cert-box:hover {
            border-color: rgba(201,160,80,.4);
            background: rgba(28,46,90,.8);
            transform: translateY(-5px);
        }
        .cert-ico {
            font-size: 2rem; color: var(--gold);
            margin-bottom: 16px;
        }
        .cert-name {
            font-family: 'Playfair Display', serif;
            font-size: .98rem; margin-bottom: 8px;
        }
        .cert-org {
            font-size: .75rem;
            color: rgba(255,255,255,.38); font-weight: 300;
        }

        /* ══════════════════════════════════
           REVIEWS
        ══════════════════════════════════ */
        #reviews { background: var(--navy); }
        .rev-head { text-align: center; max-width: 680px; margin: 0 auto 60px; }
        .stars-row {
            display: flex; justify-content: center;
            gap: 6px; margin-bottom: 10px;
        }
        .stars-row i { color: var(--gold); font-size: 1.1rem; }
        .rev-meta {
            font-size: .84rem; color: rgba(255,255,255,.45);
        }
        .rev-meta b { color: var(--gold-light); font-weight: 600; }

        .rev-carousel { overflow: hidden; position: relative; }
        .rev-track {
            display: flex; gap: 22px;
            transition: transform .55s cubic-bezier(.4,0,.2,1);
        }
        .rev-card {
            min-width: calc(33.333% - 15px);
            background: rgba(20,32,68,.6);
            border: 1px solid rgba(201,160,80,.09);
            padding: 38px; position: relative;
        }
        .rev-quote {
            position: absolute; top: 22px; right: 26px;
            font-family: 'Playfair Display', serif;
            font-size: 5.5rem; color: rgba(201,160,80,.07);
            line-height: 1; user-select: none;
        }
        .rev-stars { display: flex; gap: 4px; margin-bottom: 18px; }
        .rev-stars i { color: var(--gold); font-size: .88rem; }
        .rev-text {
            font-size: .9rem; line-height: 1.82;
            color: rgba(255,255,255,.62);
            font-style: italic; margin-bottom: 26px; font-weight: 300;
        }
        .rev-author { display: flex; align-items: center; gap: 14px; }
        .rev-av {
            width: 46px; height: 46px; border-radius: 50%;
            background: linear-gradient(135deg, var(--gold-dark), var(--gold));
            display: flex; align-items: center; justify-content: center;
            font-family: 'Playfair Display', serif;
            font-size: 1.15rem; color: var(--navy); font-weight: 700;
        }
        .rev-aname { font-size: .86rem; font-weight: 600; display: block; }
        .rev-asrc  { font-size: .74rem; color: var(--gold); display: block; margin-top: 2px; }

        .rev-nav {
            display: flex; justify-content: center;
            gap: 12px; margin-top: 38px;
        }
        .rev-nav button {
            width: 46px; height: 46px;
            border: 1px solid rgba(201,160,80,.3);
            background: transparent;
            color: var(--gold); cursor: pointer;
            font-size: .9rem; transition: all .3s;
        }
        .rev-nav button:hover {
            background: var(--gold); color: var(--navy);
            border-color: var(--gold);
        }

        /* ══════════════════════════════════
           LOCATION
        ══════════════════════════════════ */
        #location {
            background: linear-gradient(180deg, var(--navy), #060D1A);
        }
        .loc-grid {
            display: grid; grid-template-columns: 1fr 1fr;
            gap: 70px; align-items: start;
        }
        .map-wrap {
            border: 1px solid rgba(201,160,80,.14);
            overflow: hidden; position: relative;
        }
        .map-wrap iframe {
            width: 100%; height: 420px;
            border: none; display: block;
            filter: invert(88%) hue-rotate(178deg) saturate(.6);
        }
        /* Google wkleja pod mapą pasek z linkami ("Dane mapy", "Warunki",
           "Zgłoś błąd na mapie", "Skróty klawiaturowe"). Zmieniają język razem
           z przeglądarką gościa, więc zamiast jeździć z językiem po stronie,
           po prostu chowamy ten pasek — jest bezużyteczny w makiecie.
           Ramka jest o 40px wyższa i wsunięta pod etykietę adresu. */
        .map-wrap iframe {
            width: 100%; height: 460px;
            border: none; display: block;
            margin-bottom: -40px;
            filter: invert(88%) hue-rotate(178deg) saturate(.6);
        }
        .map-label {
            position: absolute; bottom: 0; left: 0; right: 0;
            background: linear-gradient(to top, rgba(12,24,48,.9), transparent);
            padding: 30px 22px 16px;
        }
        .map-label p { font-size: .8rem; color: rgba(255,255,255,.65); }
        .map-label strong { color: var(--gold-light); }

        .form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
        .form-wrap form {
            display: flex; flex-direction: column; gap: 14px;
        }
        .fi {
            background: rgba(20,32,68,.5);
            border: 1px solid rgba(201,160,80,.2);
            color: white;
            padding: 16px 18px;
            font-family: 'Raleway', sans-serif;
            font-size: .85rem; outline: none;
            transition: border-color .3s;
            width: 100%;
        }
        .fi::placeholder { color: rgba(255,255,255,.38); }
        .fi:focus { border-color: rgba(201,160,80,.65); }
        select.fi { appearance: none; cursor: pointer; color: rgba(255,255,255,.6); }
        select.fi option { background: var(--navy); color: white; }
        textarea.fi { resize: none; }

        /* ══════════════════════════════════
           CTA BANNER
        ══════════════════════════════════ */
        #cta-band {
            padding: 100px 0; text-align: center;
            background: linear-gradient(135deg, #060D1A, #0C1830, #060D1A);
            position: relative; overflow: hidden;
        }
        #cta-band::before {
            content: ''; position: absolute;
            top: 50%; left: 50%; transform: translate(-50%,-50%);
            width: 760px; height: 760px;
            background: radial-gradient(circle,
                rgba(201,160,80,.065) 0%, transparent 60%);
        }
        #cta-band .inner { position: relative; z-index: 1; }
        #cta-band h2 {
            font-family: 'Playfair Display', serif;
            font-size: clamp(2rem,4vw,3rem);
            margin-bottom: 20px;
        }
        #cta-band p {
            color: rgba(255,255,255,.56);
            max-width: 480px; margin: 0 auto 44px;
            font-size: .96rem; line-height: 1.82;
            font-weight: 300;
        }

        /* ══════════════════════════════════
           FOOTER
        ══════════════════════════════════ */
        footer {
            background: #050B18; padding: 68px 0 28px;
            border-top: 1px solid rgba(201,160,80,.1);
        }
        .ft-grid {
            display: grid; grid-template-columns: 2fr 1fr 1fr;
            gap: 60px; margin-bottom: 52px;
        }
        .ft-logo {
            font-family: 'Playfair Display', serif;
            font-size: 1.2rem; color: var(--gold-light);
            letter-spacing: 1.5px; line-height: 1.4;
        }
        .ft-logo em {
            display: block; font-style: normal;
            font-family: 'Raleway', sans-serif;
            font-size: .58rem; font-weight: 300;
            letter-spacing: 5px; text-transform: uppercase;
            color: rgba(237,201,106,.45); margin-top: 5px;
        }
        .ft-tagline {
            font-size: .86rem; color: rgba(255,255,255,.4);
            line-height: 1.82; margin-top: 20px;
            font-weight: 300; max-width: 270px;
        }
        .ft-h {
            font-size: .68rem; letter-spacing: 3.5px;
            text-transform: uppercase; color: var(--gold);
            margin-bottom: 24px;
        }
        .ft-ul { list-style: none; }
        .ft-ul li { margin-bottom: 12px; }
        .ft-ul a {
            text-decoration: none; font-size: .84rem;
            color: rgba(255,255,255,.45); font-weight: 300;
            transition: color .3s;
        }
        .ft-ul a:hover { color: var(--gold-light); }
        .ft-bottom {
            border-top: 1px solid rgba(255,255,255,.06);
            padding-top: 26px;
            display: flex; justify-content: space-between;
            align-items: center;
        }
        .ft-copy {
            font-size: .76rem; color: rgba(255,255,255,.28); font-weight: 300;
        }
        .ft-social { display: flex; gap: 12px; }
        .ft-social a {
            width: 38px; height: 38px;
            border: 1px solid rgba(201,160,80,.18);
            display: flex; align-items: center; justify-content: center;
            color: rgba(255,255,255,.38); font-size: .84rem;
            text-decoration: none; transition: all .3s;
        }
        .ft-social a:hover { border-color: var(--gold); color: var(--gold); }

        /* ══════════════════════════════════
           REVEAL ANIMATION
        ══════════════════════════════════ */
        .rv {
            opacity: 0; transform: translateY(36px);
            transition: opacity .72s ease, transform .72s ease;
        }
        .rv.vis { opacity: 1; transform: translateY(0); }
        .rv.d1 { transition-delay: .1s; }
        .rv.d2 { transition-delay: .2s; }
        .rv.d3 { transition-delay: .3s; }
        .rv.d4 { transition-delay: .4s; }
        .rv.d5 { transition-delay: .5s; }

        /* ══════════════════════════════════
           KEYFRAMES
        ══════════════════════════════════ */
        @keyframes up {
            to { opacity:1; transform:translateY(0); }
        }
        @keyframes fadeIn {
            to { opacity:1; }
        }
        @keyframes shimmer {
            0%   { background-position: 0% center; }
            100% { background-position: 200% center; }
        }
        @keyframes sparkPop {
            0%   { transform:translate(-50%,-50%) scale(1); opacity:1; }
            100% { transform:translate(var(--sx),var(--sy)) scale(0); opacity:0; }
        }

        /* ══════════════════════════════════
           RESPONSIVE
        ══════════════════════════════════ */
        @media (max-width: 1024px) {
            nav, nav.stuck { padding: 16px 28px; }
            .nav-links { display: none; }
            .hamburger { display: flex; }
            .stats-wrap { grid-template-columns: repeat(2,1fr); }
            .stat-box:nth-child(2){ border-right:none; }
            .stat-box:nth-child(3){ border-top:1px solid rgba(201,160,80,.12); }
            .about-grid, .hours-grid, .loc-grid { grid-template-columns:1fr; gap:50px; }
            .svc-grid { grid-template-columns:1fr 1fr; }
            .ft-grid { grid-template-columns:1fr 1fr; gap:40px; }
        }
        @media (max-width: 768px) {
            section { padding: 68px 0; }
            .wrap { padding: 0 22px; }
            .svc-grid { grid-template-columns:1fr; }
            .gal-grid {
                grid-template-columns: 1fr 1fr;
                grid-template-rows: auto;
            }
            .gal-grid .gi:nth-child(n) {
                grid-column: span 1 !important;
                grid-row: span 1 !important;
                height: 220px;
            }
            .cert-grid { grid-template-columns:1fr 1fr; }
            .rev-card { min-width: 100%; }
            .ft-grid { grid-template-columns:1fr; gap:28px; }
            .ft-bottom { flex-direction:column; gap:16px; text-align:center; }
            .form-grid { grid-template-columns:1fr; }
        }
    