@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600&family=Montserrat:wght@300;400;500;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: #2b2926;
    background: #faf7f2;
    line-height: 1.7;
}

h1, h2, h3 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
}

a {
    text-decoration: none;
}

/* BUTTON */

.btn {
    display: inline-block;
    padding: 16px 42px;
    background: #b79a72;
    color: white;
    border-radius: 30px;
    transition: .3s;
}

.btn:hover {
    background: #92734d;
}


/* HERO */

.hero {
    min-height: 100vh;

    background:
        linear-gradient(
            rgba(0,0,0,.45),
            rgba(0,0,0,.55)
        ),
        url('images/hero.jpg');

    background-size: cover;
    background-position: center;
    color: white;
}

.hero-content {
    min-height: 100vh;

    padding: 140px 8% 80px;

    max-width: 900px;

    margin: auto;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    text-align: center;

    transform: translateY(0);
}

.subtitle {
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 17px;
    margin-bottom: 30px;
    color: #f1e7d8;
}

.hero h1 {
    font-size: 64px;
    line-height: 1.1;
    max-width: 800px;
    margin-bottom: 25px;
}

.hero p {
    font-size: 20px;
    max-width: 560px;
    margin-bottom: 35px;
    font-weight: 300;
}


/* =====================
WANESSA
===================== */

.about {
    padding: 100px 8%;
    background: #faf7f2;
}

.about-container {
    max-width: 1100px;
    margin: auto;

    display: flex;
    align-items: center;
    gap: 80px;
}

.about-text {
    flex: 1;
}

.subtitle-dark {
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 15px;
    color: #a48862;
    margin-bottom: 20px;
}

.about-text h2 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 30px;
}

.about-text p {
    font-size: 18px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
}


/* ZDJĘCIE WANESSY */

.about-image {
    flex: 0 0 320px;
    display: flex;
    justify-content: center;
}

.about-image img {
    width: 320px;
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}


/* KARTY */

.cards {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 25px;
}

.card {
    background: white;
    padding: 40px 25px;
    text-align: center;
}


/* KONTAKT */

.contact {
    background: #292723;
    color: white;
    text-align: center;
    padding: 100px 8%;
}


/* STOPKA */

footer {
    background: #1f1d1a;
    color: white;
    text-align: center;
    padding: 30px;
}


/* TELEFON */

@media(max-width:900px) {

    .hero h1 {
        font-size: 45px;
    }

    .about-container {
        flex-direction: column;
    }

    .about-image img {
        width: 280px;
    }

    .cards {
        grid-template-columns: 1fr;
    }
}


/* =====================
NASZE PODEJŚCIE
===================== */

.approach {
    padding: 100px 8%;
    background: #ffffff;
    text-align: center;
}

.approach-container {
    max-width: 1200px;
    margin: auto;
}

.approach .subtitle-dark {
    margin-bottom: 20px;
}

.approach h2 {
    max-width: 800px;
    margin: 0 auto 60px;
    font-size: 48px;
    line-height: 1.2;
}

.approach-cards {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
}

.approach-card {
    background: #faf7f2;
    padding: 45px 35px;
    border-radius: 12px;
    text-align: center;
}

.approach-card h3 {
    font-size: 32px;
    margin-bottom: 20px;
}

.approach-card p {
    font-size: 17px;
    color: #555;
    line-height: 1.7;
}

@media(max-width:900px) {

    .approach-cards {
        grid-template-columns: 1fr;
    }

    .approach h2 {
        font-size: 38px;
    }
}


/* =====================
OBSZARY PRACY
===================== */

.services {
    padding: 100px 8%;
    background: #faf7f2;
    text-align: center;
}

.services-container {
    max-width: 1200px;
    margin: auto;
}

.services h2 {
    font-size: 48px;
    max-width: 800px;
    margin: 0 auto 60px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 25px;
}

.service-card {
    position: relative;
    height: 520px;
    overflow: hidden;
    border-radius: 15px;
}

.service-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.service-card::after {
    content: "";
    position: absolute;
    inset: 0;

    background: linear-gradient(
        transparent,
        rgba(0,0,0,0.65)
    );
}

.service-overlay {
    position: absolute;
    bottom: 35px;
    left: 25px;
    right: 25px;
    color: white;
    z-index: 2;
    text-align: left;
}

.service-overlay h3 {
    font-size: 30px;
    margin-bottom: 10px;
}

.service-overlay p {
    font-size: 15px;
    line-height: 1.5;
}

@media(max-width:1000px) {

    .services-grid {
        grid-template-columns: repeat(2,1fr);
    }
}

@media(max-width:600px) {

    .services-grid {
        grid-template-columns: 1fr;
    }
}


/* =====================
JAK WYGLĄDA WSPÓŁPRACA
===================== */

.process {
    padding: 100px 8%;
    background: #efe6da;
    text-align: center;
}

.process-container {
    max-width: 1200px;
    margin: auto;
}

.process h2 {
    font-size: 48px;
    max-width: 800px;
    margin: 0 auto 60px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 35px;
}

.process-step {
    background: #faf7f2;
    padding: 45px 35px;
    border-radius: 12px;
    text-align: center;
}

.process-step span {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 60px;
    color: #b79a72;
    line-height: 1;
    margin-bottom: 20px;
}

.process-step h3 {
    font-size: 32px;
    margin-bottom: 20px;
}

.process-step p {
    font-size: 17px;
    color: #555;
    line-height: 1.7;
}

@media(max-width:900px) {

    .process-steps {
        grid-template-columns: 1fr;
    }

    .process h2 {
        font-size: 38px;
    }
}


/* =====================
OPINIE BOOKSY
===================== */

.reviews {
    padding: 100px 8%;
    background: #faf7f2;
    text-align: center;
}

.reviews-container {
    max-width: 900px;
    margin: auto;
}

.reviews h2 {
    font-size: 48px;
    margin-bottom: 50px;
}

.booksy-rating {
    margin-bottom: 60px;
}

.booksy-stars {
    font-size: 22px;
    color: #b79a72;
    letter-spacing: 5px;
}

.booksy-rating h3 {
    font-size: 45px;
    margin: 10px 0;
}

.booksy-rating p {
    font-size: 18px;
    color: #555;
    margin-bottom: 30px;
}

.reviews-slider {
    position: relative;
    max-width: 520px;
    margin: auto;
    overflow: hidden;
    perspective: 1000px;
}

.review-slide {
    display: none;
    animation: slide3d 0.8s ease;
}

.review-slide.active {
    display: block;
}

.review-slide img {
    width: 100%;
    display: block;
    border-radius: 18px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

@keyframes slide3d {

    from {
        opacity: 0;
        transform:
            translateX(80px)
            rotateY(-15deg)
            scale(0.95);
    }

    to {
        opacity: 1;
        transform:
            translateX(0)
            rotateY(0)
            scale(1);
    }
}

.booksy-rating .btn {
    padding: 12px 30px;
    font-size: 14px;
}


/* =====================
DODATKOWE STYLE OPINII
===================== */

.reviews {
    padding: 100px 20px 10px;
}

.reviews-container {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.review-card {
    max-width: 600px;
    margin: 50px auto 0;
    padding: 45px;
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    text-align: left;
}

.stars {
    font-size: 28px;
    letter-spacing: 4px;
    margin-bottom: 25px;
}

.review-card p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 30px;
}

.review-card h3 {
    margin-bottom: 8px;
}

.review-card span {
    display: block;
    font-size: 14px;
    opacity: 0.7;
}

.review-card small {
    display: block;
    margin-top: 12px;
    opacity: 0.6;
}


/* OPINIE BOOKSY - PREMIUM SLIDER */

#reviews-slider {
    margin-top: 50px;
    position: relative;
    overflow: hidden;
    min-height: 280px;
}

.review-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 35px;
    max-width: 700px;
    margin: 0 auto;

    box-shadow: 0 20px 60px rgba(0,0,0,0.08);

    animation: reviewShow 0.8s ease;
}

.review-card h3 {
    margin: 0;
    font-size: 20px;
    color: #222;
}

.review-stars {
    color: #b48a55;
    font-size: 22px;
    letter-spacing: 3px;
    margin: 15px 0;
}

.review-text {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
}

.review-info {
    margin-top: 20px;
    font-size: 14px;
    color: #888;
}

@keyframes reviewShow {

    from {
        opacity: 0;
        transform:
            translateY(20px)
            scale(0.96);
    }

    to {
        opacity: 1;
        transform:
            translateY(0)
            scale(1);
    }
}

.review-card {
    background: white;
    border-radius: 25px;
    padding: 40px;
    max-width: 650px;
    margin: 40px auto;

    box-shadow: 0 20px 50px rgba(0,0,0,0.08);

    animation: reviewFade 0.8s ease;
}

.review-stars {
    color: #b08b5c;
    font-size: 32px;
    letter-spacing: 5px;
    margin-bottom: 20px;
}

.review-text {
    font-size: 18px;
    line-height: 1.7;
    color: #333;
}

.review-card h3 {
    margin-top: 25px;
    font-size: 20px;
}

.review-card p {
    margin: 8px 0;
}

.review-card small {
    color: #777;
}

@keyframes reviewFade {

    from {
        opacity: 0;
        transform: translateY(30px) scale(0.96);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

#reviews-slider {
    transition: opacity 0.3s ease;
}

.review-card {
    background: #fff;
    padding: 40px;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    max-width: 700px;
    margin: auto;
}

.stars {
    font-size: 24px;
    letter-spacing: 3px;
    color: #b08a5a;
    margin-bottom: 15px;
}

.verified {
    display: inline-block;
    font-size: 13px;
    color: #218cac;
    margin-bottom: 20px;
}

.review-text {
    font-size: 18px;
    line-height: 1.7;
}

.review-card h3 {
    margin-top: 25px;
}

.review-service {
    color: #777;
}

.review-card small {
    color: #999;
}


/* =========================
OPINIE - PREMIUM SLIDER
========================= */

#reviews-slider {
    max-width: 650px;
    margin: 50px auto 0;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.review-card {
    background: #ffffff;

    padding: 45px 40px;

    border-radius: 24px;

    box-shadow:
        0 20px 50px rgba(0,0,0,0.08);

    text-align: center;

    position: relative;

    overflow: hidden;
}

.review-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 5px;

    background: #b08d57;
}

.stars {
    font-size: 28px;

    color: #b08d57;

    letter-spacing: 4px;

    margin-bottom: 15px;
}

.verified {
    display: inline-block;

    background: #f5eee5;

    color: #8a6a3d;

    padding: 7px 16px;

    border-radius: 50px;

    font-size: 14px;

    margin-bottom: 25px;
}

.review-text {
    font-size: 18px;

    line-height: 1.7;

    color: #444;

    margin-bottom: 30px;

    font-style: italic;
}

.review-card h3 {
    margin-bottom: 8px;

    font-size: 22px;

    color: #222;
}

.review-service {
    color: #b08d57;

    font-size: 15px;

    margin-bottom: 10px;
}

.review-card small {
    color: #888;
}

.review-photo {
    width: 100%;

    max-width: 280px;

    margin-top: 25px;

    border-radius: 18px;
}

@media(max-width:768px) {

    #reviews-slider {
        padding: 0 20px;
    }

    .review-card {
        padding: 35px 25px;
    }

    .review-text {
        font-size: 16px;
    }
}


/* =========================================================
   NOWA CZĘŚĆ — INSTAGRAM PREMIUM
   DOPISANA DO TWOJEGO CSS
========================================================= */

.instagram-section {
    position: relative;
    overflow: hidden;
    padding: 140px 8%;
    background: #efe6da;
}

.instagram-container {
    max-width: 1200px;
    margin: auto;

    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 90px;
}

.instagram-content {
    position: relative;
    z-index: 2;
    max-width: 560px;
}

.instagram-mark {
    width: 65px;
    height: 65px;

    border: 2px solid #b79a72;
    border-radius: 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 48px;
    color: #b79a72;

    margin-bottom: 30px;

    transform: rotate(-8deg);
    transition: .4s;
}

.instagram-content:hover .instagram-mark {
    transform: rotate(0deg) scale(1.08);
}

.instagram-content h2 {
    font-size: 58px;
    line-height: 1.05;
    margin-bottom: 30px;
}

.instagram-content > p:not(.subtitle-dark) {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.instagram-btn {
    display: inline-block;

    margin-top: 20px;
    padding: 16px 34px;

    background: #b79a72;
    color: white;

    border-radius: 40px;

    transition:
        transform .3s ease,
        background .3s ease,
        box-shadow .3s ease;
}

.instagram-btn:hover {
    transform: translateY(-4px);
    background: #92734d;

    box-shadow:
        0 15px 35px rgba(80,60,40,.2);
}


/* =========================
INSTAGRAM VISUAL
========================= */

.instagram-visual {
    position: relative;
    min-height: 560px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.instagram-frame {
    position: relative;
    z-index: 3;

    width: min(430px, 90%);

    transform: rotate(3deg);

    transition: .5s ease;
}

.instagram-frame:hover {
    transform: rotate(0deg) scale(1.03);
}

.instagram-frame img {
    display: block;

    width: 100%;

    aspect-ratio: 4 / 5;
    object-fit: cover;

    border-radius: 25px;

    box-shadow:
        0 30px 70px rgba(50,40,30,.2);
}

.instagram-floating-card {
    position: absolute;

    right: -35px;
    bottom: 30px;

    padding: 15px 22px;

    background: white;

    border-radius: 16px;

    box-shadow:
        0 15px 40px rgba(0,0,0,.12);

    display: flex;
    flex-direction: column;
}

.instagram-floating-card span {
    font-size: 11px;

    text-transform: uppercase;

    letter-spacing: 2px;

    color: #a48862;
}

.instagram-floating-card strong {
    font-size: 14px;
    margin-top: 4px;
}


/* =========================
DELIKATNE ANIMACJE
========================= */

.instagram-orbit {
    position: absolute;

    border: 1px solid rgba(183,154,114,.35);

    border-radius: 50%;

    animation:
        instagramFloat 7s ease-in-out infinite;
}

.orbit-one {
    width: 420px;
    height: 420px;
}

.orbit-two {
    width: 540px;
    height: 540px;

    animation-delay: -3s;
}

@keyframes instagramFloat {

    0%, 100% {
        transform:
            translateY(0)
            rotate(0deg);
    }

    50% {
        transform:
            translateY(-15px)
            rotate(4deg);
    }
}


/* =========================
FINAL CTA
========================= */

.final-cta {
    position: relative;
    overflow: hidden;

    padding: 240px 8% 140px;

    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(183,154,114,.18),
            transparent 40%
        ),
        #292723;

    color: white;

    text-align: center;
}

.cta-glow {
    position: absolute;

    width: 500px;
    height: 500px;

    top: -250px;
    left: 50%;

    transform: translateX(-50%);

    border-radius: 50%;

    background: rgba(183,154,114,.08);

    filter: blur(50px);

    pointer-events: none;
}

.final-cta-container {
    position: relative;
    z-index: 2;

    max-width: 1100px;
    margin: auto;
}

.cta-small {
    text-transform: uppercase;

    letter-spacing: 4px;

    font-size: 13px;

    color: #d6bd99;

    margin-bottom: 25px;
}

.final-cta h2 {
    font-size: 70px;
    line-height: 1.05;

    font-weight: 500;

    margin-bottom: 30px;
}

.cta-description {
    max-width: 550px;

    margin: 0 auto 40px;

    font-size: 18px;

    line-height: 1.7;

    color: #d5d0ca;
}

.cta-main-btn {
    display: inline-block;

    padding: 18px 45px;

    background: #b79a72;

    color: white;

    border-radius: 40px;

    font-size: 16px;

    transition: .35s;
}

.cta-main-btn:hover {
    transform: translateY(-5px);

    background: #d0b48b;

    box-shadow:
        0 20px 45px rgba(0,0,0,.3);
}


/* =========================
KONTAKT
========================= */

.contact-links {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 1px;

    margin-top: 90px;

    border-top:
        1px solid rgba(255,255,255,.15);

    border-bottom:
        1px solid rgba(255,255,255,.15);
}

.contact-links a {
    padding: 30px 15px;

    color: white;

    transition: .3s;
}

.contact-links a:hover {
    background: rgba(255,255,255,.05);

    transform: translateY(-3px);
}

.contact-links span {
    display: block;

    text-transform: uppercase;

    letter-spacing: 2px;

    font-size: 11px;

    color: #b79a72;

    margin-bottom: 8px;
}

.contact-links strong {
    font-weight: 400;

    font-size: 15px;
}


/* =========================
ADRES / MAPS
========================= */

.contact-address {
    margin-top: 70px;
}

.contact-address > span {
    text-transform: uppercase;

    letter-spacing: 3px;

    font-size: 12px;

    color: #b79a72;
}

.contact-address p {
    margin: 15px 0 20px;

    color: #ddd;

    line-height: 1.7;
}

.maps-link {
    color: white;

    border-bottom:
        1px solid #b79a72;

    padding-bottom: 4px;

    transition: .3s;
}

.maps-link:hover {
    color: #d6bd99;
}


/* =========================
FOOTER
========================= */

.site-footer {
    background: #1f1d1a;

    color: white;

    padding: 45px 8%;
}

.footer-container {
    max-width: 1200px;

    margin: auto;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;
}

.footer-logo {
    font-family:
        'Cormorant Garamond',
        serif;

    font-size: 28px;
}

.footer-container p {
    margin: 0;

    color: #aaa;

    font-size: 13px;
}

.footer-socials {
    display: flex;

    gap: 25px;
}

.footer-socials a {
    color: #ccc;

    font-size: 13px;

    transition: .3s;
}

.footer-socials a:hover {
    color: #d6bd99;
}


/* =========================
MOBILE
========================= */

@media(max-width: 900px) {

    .instagram-section {
        padding: 100px 6%;
    }

    .instagram-container {
        grid-template-columns: 1fr;

        gap: 60px;
    }

    .instagram-content h2 {
        font-size: 43px;
    }

    .instagram-visual {
        min-height: 450px;
    }

    .instagram-floating-card {
        right: 5px;
    }

    .orbit-one {
        width: 300px;
        height: 300px;
    }

    .orbit-two {
        width: 380px;
        height: 380px;
    }

    .final-cta {
        padding: 100px 6%;
    }

    .final-cta h2 {
        font-size: 48px;
    }

    .contact-links {
        grid-template-columns: 1fr 1fr;
    }

    .footer-container {
        flex-direction: column;
        text-align: center;
    }
}

@media(max-width: 600px) {

    .instagram-content h2 {
        font-size: 38px;
    }

    .instagram-visual {
        min-height: 380px;
    }

    .instagram-frame {
        width: 85%;
    }

    .instagram-floating-card {
        right: 0;
        bottom: 15px;
    }

    .contact-links {
        grid-template-columns: 1fr;
    }

    .final-cta h2 {
        font-size: 42px;
    }

    .footer-socials {
        flex-wrap: wrap;
        justify-content: center;
    }
}.instagram-mark {
    overflow: hidden;
}

.instagram-mark img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
/* =========================
   MAPA - GOOGLE MAPS
========================= */

.contact-address {
    margin-top: 70px;
    display: grid;
    grid-template-columns: 1fr 780px;
    gap: 50px;
    align-items: center;
    text-align: left;
}

.contact-address-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.contact-address-info > span {
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 12px;
    color: #b79a72;
}

.contact-address-info p {
    margin: 15px 0 20px;
    color: #ddd;
    line-height: 1.7;
}

.maps-link {
    color: white;
    border-bottom: 1px solid #b79a72;
    padding-bottom: 4px;
    transition: .3s;
}

.maps-link:hover {
    color: #d6bd99;
}

.map-preview {
    position: relative;
    display: block;
    height: 280px;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,.25);
}

.map-preview iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
    pointer-events: none;
}
.map-preview:hover .map-overlay {
    background: #b79a72;
    transform: translateY(-3px);
}


/* =========================
   MAPA - MOBILE
========================= */

@media(max-width: 900px) {

    .contact-address {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .map-preview {
        width: 100%;
        height: 300px;
    }

}

@media(max-width: 600px) {

    .map-preview {
        height: 250px;
    }

}/* MAPA */

.map-preview {
    position: relative;
    width: 100%;
    height: 260px;
    overflow: hidden;
    border-radius: 24px;
    background: #211f1c;
    box-shadow: 0 20px 50px rgba(0,0,0,.25);
    isolation: isolate;
    display: block;
}

.map-preview iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
    filter: saturate(.75) contrast(.95);
    pointer-events: auto;
}

.map-preview::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(25,23,20,.72),
        rgba(25,23,20,.05) 55%,
        rgba(25,23,20,.12)
    );
    pointer-events: none;
}

/* PRZYCISK NA MAPIE */
.map-overlay {
    position: absolute;
    left: 01px;
    top: 01px;
    bottom: auto;
    right: auto;

    display: inline-flex;
    align-items: center;

    width: max-content;
    height: auto;

    padding: 11px 18px;

    background: rgba(31,29,26,.94);
    color: #ffffff !important;

    border: 1px solid rgba(214,189,153,.35);
    border-radius: 30px;

    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    letter-spacing: .4px;

    text-decoration: none !important;

    box-shadow: 0 8px 25px rgba(0,0,0,.25);

    z-index: 10;

    transition:
        background .3s ease,
        transform .3s ease,
        border-color .3s ease;
}

.map-overlay:hover {
    background: #b79a72;
    color: #ffffff !important;
    border-color: #b79a72;
    transform: translateY(-3px);
}
/* INSTAGRAM - ZDJĘCIE W IKONIE */

.instagram-mark {
    width: 65px;
    height: 65px;

    border: 2px solid #b79a72;
    border-radius: 20px;

    overflow: hidden;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 30px;

    transform: rotate(-8deg);

    transition:
        transform .4s ease,
        box-shadow .4s ease;
}

.instagram-mark img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.instagram-content:hover .instagram-mark {
    transform: rotate(0deg) scale(1.08);
    box-shadow: 0 10px 30px rgba(80,60,40,.18);
}

/* MOBILE */

@media(max-width: 900px) {

    .contact-address {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .map-preview {
        height: 300px;
    }
}

@media(max-width: 600px) {

    .map-preview {
        height: 250px;
        border-radius: 20px;
    }

    .map-overlay {
        left: 15px;
        bottom: 15px;
        font-size: 11px;
    }
}
.instagram-mark {
display: flex;
align-items: center;
margin-bottom: 24px;
}

.instagram-mark svg {
width: 42px;
height: 42px;
fill: none;
stroke: currentColor;
stroke-width: 1.5;
stroke-linecap: round;
stroke-linejoin: round;
}
/* =========================
   DELIKATNE ANIMACJE STRONY
========================= */

.reveal {
    opacity: 0;
    transform: translateY(35px);
    transition:
        opacity 0.9s ease,
        transform 0.9s ease;
}

.reveal.show {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 {
    transition-delay: 0.15s;
}

.reveal-delay-2 {
    transition-delay: 0.3s;
}

.reveal-delay-3 {
    transition-delay: 0.45s;
}


/* Delikatne unoszenie kart */

.approach-card,
.service-card,
.process-step {
    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease;
}

.approach-card:hover,
.process-step:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(50,40,30,.10);
}

.service-card:hover {
    transform: translateY(-8px);
}


/* Zdjęcia delikatnie reagują na mysz */

.about-image img {
    transition: transform 0.6s ease;
}

.about-image:hover img {
    transform: scale(1.025);
}

.instagram-frame img {
    transition: transform 0.7s ease;
}

.instagram-frame:hover img {
    transform: scale(1.025);
}


/* Delikatny ruch przycisków */

.btn,
.instagram-btn,
.cta-main-btn {
    transition:
        transform 0.3s ease,
        background 0.3s ease,
        box-shadow 0.3s ease;
}

.btn:hover,
.instagram-btn:hover,
.cta-main-btn:hover {
    transform: translateY(-4px);
}


/* Szanujemy ustawienie "zmniejsz ruch" */

@media (prefers-reduced-motion: reduce) {

    .reveal,
    .reveal.show,
    .approach-card,
    .service-card,
    .process-step,
    .about-image img,
    .instagram-frame img {
        transition: none !important;
        transform: none !important;
        opacity: 1 !important;
    }

}