/* ========================================
   SYRENA BYĆ — syrenabyc.pl
   Paleta: kremowo-perłowa, luksusowy minimalizm
   ======================================== */

/* --- Reset & Base --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Paleta kremowo-perłowa */
    --pearl:       #F5F0EB;
    --cream:       #FAF7F2;
    --sand:        #E8DDD3;
    --shell:       #D4C5B5;
    --warm-gray:   #9E8E7E;
    --deep-taupe:  #6B5B4F;
    --dark-brown:  #3D2E23;
    --gold-accent: #C4A97D;
    --soft-rose:   #DBBEB7;
    --white:       #FFFDF9;

    /* Typografia */
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body:    'Raleway', 'Segoe UI', sans-serif;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    color: var(--dark-brown);
    background-color: var(--white);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--deep-taupe);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--gold-accent);
}

/* --- Utility --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 100px 0;
}

/* --- NAWIGACJA (fixed, jeden rząd, wycentrowana) --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1100;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    padding: 20px 40px;
    background: rgba(250, 247, 242, 0.92);
    backdrop-filter: blur(12px);
    transition: background 0.4s ease, box-shadow 0.3s ease;
}

.navbar.scrolled {
    background: rgba(250, 247, 242, 0.97);
    box-shadow: 0 1px 20px rgba(61, 46, 35, 0.06);
}

.navbar__logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 400;
    font-style: italic;
    color: var(--dark-brown);
    letter-spacing: 0.04em;
}

.navbar__logo img {
    height: 36px;
    width: auto;
}

.navbar__links {
    display: flex;
    list-style: none;
    gap: 36px;
}

.navbar__links a {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--deep-taupe);
    position: relative;
    padding-bottom: 4px;
    transition: color 0.3s ease;
}

.navbar__links a:hover {
    color: var(--gold-accent);
}

.navbar__links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background: var(--gold-accent);
    transition: width 0.3s ease;
}

.navbar__links a:hover::after {
    width: 100%;
}

/* Hamburger */
.navbar__hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 4px;
    background: none;
    border: none;
}

.navbar__hamburger span {
    display: block;
    width: 28px;
    height: 1.5px;
    background: var(--dark-brown);
    transition: all 0.3s ease;
}

.navbar__hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.navbar__hamburger.open span:nth-child(2) {
    opacity: 0;
}
.navbar__hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile menu — pełnoekranowe overlay */
.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(250, 247, 242, 0.98);
    backdrop-filter: blur(20px);
    z-index: 999;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.mobile-menu.open {
    display: flex;
    opacity: 1;
}

.mobile-menu__links {
    list-style: none;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.mobile-menu__links a {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--dark-brown);
    letter-spacing: 0.05em;
}

/* --- HERO (styl Dita.net — zdjęcie na cały ekran) --- */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    background-color: var(--dark-brown);
}

.hero__image {
    position: absolute;
    inset: 0;
    animation: heroZoom 20s ease-in-out infinite alternate;
}

.hero__image picture {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

/* Placeholder — widoczny do momentu wstawienia zdjęcia */
.hero__placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(
        160deg,
        var(--shell) 0%,
        var(--sand) 30%,
        var(--soft-rose) 60%,
        var(--shell) 100%
    );
}

.hero__placeholder span {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--deep-taupe);
    letter-spacing: 0.1em;
    margin-bottom: 8px;
}

.hero__placeholder small {
    font-family: var(--font-body);
    font-size: 0.75rem;
    color: var(--warm-gray);
    letter-spacing: 0.05em;
}

@keyframes heroZoom {
    0%   { transform: scale(1); }
    100% { transform: scale(1.05); }
}

/* Delikatny gradient na dole hero — żeby nawigacja była czytelna na górze,
   a scroll arrow widoczna na dole */
.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(61, 46, 35, 0.15) 0%,
        transparent 30%,
        transparent 70%,
        rgba(61, 46, 35, 0.3) 100%
    );
    pointer-events: none;
    z-index: 1;
}

.hero__h1 {
    position: absolute;
    bottom: 90px;
    left: 0;
    right: 0;
    z-index: 2;
    text-align: center;
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--pearl);
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
    letter-spacing: 0.02em;
    margin: 0;
    padding: 0 24px;
}

/* Scroll arrow — na dole ekranu */
.hero__scroll {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: scrollBounce 2s ease-in-out infinite;
}

.hero__scroll svg {
    width: 28px;
    height: 28px;
    stroke: var(--pearl);
    filter: drop-shadow(0 1px 3px rgba(0,0,0,0.3));
}

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


/* --- CREDO (cytat pod hero) --- */
.credo {
    padding: 80px 24px;
    text-align: center;
    background: var(--cream);
}

.credo__quote {
    font-family: var(--font-display);
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    font-weight: 400;
    font-style: italic;
    color: var(--deep-taupe);
    max-width: 960px;
    margin: 0 auto 16px;
    line-height: 1.6;
}

.credo__author {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--warm-gray);
}

.credo a {
    color: inherit;
    border-bottom: 1px solid var(--gold-accent);
    transition: color 0.3s;
}

.credo a:hover {
    color: var(--gold-accent);
}

/* --- WAVE DIVIDER --- */
.wave-divider {
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.wave-divider svg {
    width: 100%;
    height: 60px;
    display: block;
}

.wave-divider--cream svg { fill: var(--cream); }
.wave-divider--white svg { fill: var(--white); }
.wave-divider--pearl svg { fill: var(--pearl); }

/* --- O MNIE --- */
.about {
    padding: 100px 0;
    background: var(--white);
}

.about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Desktop: zdjęcia po lewej (kolumna 1), tekst po prawej (kolumna 2) */
.about__images {
    grid-column: 1;
    grid-row: 1;
}

.about__text {
    grid-column: 2;
    grid-row: 1;
}

.about__images {
    position: relative;
    height: 600px;
}

.about__img {
    position: absolute;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(61, 46, 35, 0.12);
}

.about__img--persona {
    width: 55%;
    height: 70%;
    top: 0;
    left: 0;
    z-index: 2;
    background: linear-gradient(145deg, var(--shell), var(--sand));
}

.about__img--mersona {
    width: 55%;
    height: 70%;
    bottom: 0;
    right: 0;
    z-index: 1;
    background: linear-gradient(145deg, var(--soft-rose), var(--shell));
}

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


.about__text {
    padding-right: 20px;
}

/* Mobile header + zdjęcia — ukryte na desktop */
.about__header-mobile {
    display: none;
    text-align: center;
    margin-bottom: 30px;
}

.about__images--mobile {
    display: none;
}

.about__images--desktop {
    display: block;
}

.about__label {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-accent);
    margin-bottom: 16px;
}

.about__name {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 500;
    color: var(--dark-brown);
    margin-bottom: 8px;
}

.about__credential {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--warm-gray);
    letter-spacing: 0.05em;
    margin-bottom: 24px;
}

.about__credential--inline {
    display: block;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--warm-gray);
    letter-spacing: 0.05em;
    margin-top: 8px;
}

.about__quote {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1rem;
    color: var(--deep-taupe);
    margin-bottom: 28px;
    padding-left: 20px;
    border-left: 2px solid var(--gold-accent);
    line-height: 1.6;
}
.about__quote cite {
    display: block;
    margin-top: 4px;
    font-size: 1rem;
}

.about__bio {
    font-size: 0.95rem;
    color: var(--deep-taupe);
    line-height: 1.8;
    margin-bottom: 32px;
}

.about__bio p + p {
    margin-top: 16px;
}

.btn {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 16px 40px;
    border: 1px solid var(--dark-brown);
    color: var(--dark-brown);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.btn:hover {
    background: var(--dark-brown);
    color: var(--white);
}

.btn--filled {
    background: var(--dark-brown);
    color: var(--white);
}

.btn--filled:hover {
    background: var(--deep-taupe);
    border-color: var(--deep-taupe);
    color: var(--white);
}

.btn--gold {
    border-color: var(--gold-accent);
    color: var(--gold-accent);
}

.btn--gold:hover {
    background: var(--gold-accent);
    color: var(--white);
}

/* --- ZOSTAŃ SYRENĄ (oferta) --- */
.courses {
    background: var(--pearl);
    padding: 100px 0;
}

.courses__header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.courses__label {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-accent);
    margin-bottom: 16px;
}

.courses__title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 400;
    color: var(--dark-brown);
    margin-bottom: 24px;
}

.courses__intro {
    font-size: 0.95rem;
    color: var(--deep-taupe);
    line-height: 1.8;
}

.courses__intro p + p {
    margin-top: 12px;
}

.courses__note {
    font-size: 0.8rem;
    color: var(--warm-gray);
    font-style: italic;
    margin-top: 12px;
}

/* Cards grid */
.courses__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 50px;
}

.course-card {
    background: var(--white);
    border-radius: 8px;
    padding: 40px 28px 36px;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(196, 169, 125, 0.15);
    display: flex;
    flex-direction: column;
}

.course-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(61, 46, 35, 0.1);
}

.course-card--featured {
    border-color: var(--gold-accent);
}

.course-card--featured::before {
    content: 'Pakiet';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold-accent);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 5px 20px;
    border-radius: 20px;
}

.course-card__icon {
    margin-bottom: 20px;
    color: var(--gold-accent);
}

.course-card__icon svg {
    width: 44px;
    height: 44px;
    stroke-width: 1.2;
}

.course-card__name {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--dark-brown);
    margin-bottom: 8px;
}

.course-card__duration {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--warm-gray);
    margin-bottom: 20px;
    min-height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.course-card__price {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 600;
    color: var(--dark-brown);
    margin-bottom: 4px;
}

.course-card__price-unit {
    font-size: 1rem;
    font-weight: 400;
}

.course-card__desc {
    font-size: 0.85rem;
    color: var(--deep-taupe);
    line-height: 1.6;
    margin: 20px 0 28px;
    flex: 1;
}

.course-card__buttons {
    display: flex;
    gap: 8px;
    margin-top: auto;
}

.course-card__buttons .btn {
    flex: 1;
    padding: 12px 10px;
    text-align: center;
    font-size: 0.65rem;
}

/* Courses bottom text */
.courses__bottom {
    text-align: center;
    margin-top: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.courses__bottom p {
    font-size: 0.9rem;
    color: var(--deep-taupe);
    line-height: 1.7;
    margin-bottom: 12px;
}

.courses__pool-note {
    font-size: 0.8rem;
    color: var(--warm-gray);
    font-style: italic;
}

/* Social links — tekstowe */
.social-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 16px;
    flex-wrap: wrap;
}

.social-links a {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    color: var(--deep-taupe);
    border-bottom: 1px solid var(--gold-accent);
    padding-bottom: 2px;
    transition: color 0.3s;
}

.social-links a:hover {
    color: var(--gold-accent);
}

/* Social links — ikonki (footer, kontakt) */
.social-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.social-row a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--shell);
    color: var(--deep-taupe);
    transition: all 0.3s ease;
}

.social-row a:hover {
    border-color: var(--gold-accent);
    color: var(--gold-accent);
    transform: translateY(-2px);
}

.social-row svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}


/* --- PASEK ZDJĘĆ Z IG (poziomy, edge-to-edge) --- */
.ig-strip {
    width: 100%;
    overflow: hidden;
    background: var(--cream);
    padding: 0;
}

.ig-strip__track {
    display: flex;
    width: 100%;
}

.ig-strip__item {
    flex: 1 1 0;
    min-width: 0;
    position: relative;
    overflow: hidden;
}

.ig-strip__img {
    width: 100%;
    aspect-ratio: 1;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

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

.ig-strip__item:hover .ig-strip__img {
    transform: scale(1.08);
}

.ig-strip__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(61, 46, 35, 0);
    transition: background 0.3s ease;
    pointer-events: none;
}

.ig-strip__overlay svg {
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.ig-strip__item:hover .ig-strip__overlay {
    background: rgba(61, 46, 35, 0.25);
}

.ig-strip__item:hover .ig-strip__overlay svg {
    opacity: 1;
    transform: scale(1);
}

@media (max-width: 768px) {
    .ig-strip__track {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
    }

    .ig-strip__item {
        flex: 0 0 33.333%;
        scroll-snap-align: start;
    }
}

@media (max-width: 480px) {
    .ig-strip__item {
        flex: 0 0 50%;
    }
}

/* --- NEWSLETTER (Zobacz syrenki) --- */
.newsletter {
    padding: 100px 0;
    background: var(--white);
    text-align: center;
}

.newsletter__inner {
    max-width: 560px;
    margin: 0 auto;
}

.newsletter__label {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-accent);
    margin-bottom: 16px;
}

.newsletter__title {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 400;
    color: var(--dark-brown);
    margin-bottom: 12px;
}

.newsletter__desc {
    font-size: 0.95rem;
    color: var(--deep-taupe);
    margin-bottom: 36px;
    line-height: 1.7;
}

.newsletter__form {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    max-width: 480px;
    margin: 0 auto;
}

.newsletter__form .form-checkbox {
    flex-basis: 100%;
    justify-content: center;
    margin: 0;
}

.newsletter__input {
    flex: 1;
    padding: 16px 20px;
    border: 1px solid var(--shell);
    border-radius: 2px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--dark-brown);
    background: var(--cream);
    outline: none;
    transition: border-color 0.3s ease;
}

.newsletter__input::placeholder {
    color: var(--warm-gray);
}

.newsletter__input:focus {
    border-color: var(--gold-accent);
}

.newsletter__form .btn {
    white-space: nowrap;
}

/* --- KONTAKT --- */
.contact {
    padding: 100px 0;
    background: var(--white);
}

.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact__info {
    padding-top: 20px;
}

.contact__label {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-accent);
    margin-bottom: 16px;
}

.contact__title {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 400;
    color: var(--dark-brown);
    margin-bottom: 24px;
}

.contact__text {
    font-size: 0.95rem;
    color: var(--deep-taupe);
    line-height: 1.7;
    margin-bottom: 32px;
}

.contact__social-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--warm-gray);
    margin-bottom: 16px;
}

/* Form */
.contact__form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 18px 20px;
    border: 1px solid var(--shell);
    border-radius: 2px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--dark-brown);
    background: var(--white);
    outline: none;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--gold-accent);
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--warm-gray);
    font-weight: 300;
}

.contact__form .btn {
    align-self: flex-start;
}

/* RODO checkbox */
.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.75rem;
    color: var(--warm-gray);
    line-height: 1.5;
    margin-bottom: -8px;
}

.form-checkbox input[type="checkbox"] {
    margin-top: 3px;
    accent-color: var(--gold-accent);
}

/* --- SOCIAL (styl Dita.net — okrągłe zdjęcia + podpisy) --- */
.social-dita {
    background: var(--dark-brown);
    text-align: center;
}

.social-dita__title {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 400;
    color: var(--pearl);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 50px;
}

.social-dita__grid {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: nowrap;
}

.social-dita__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-decoration: none;
}

.social-dita__circle {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(245, 240, 235, 0.15);
    transition: border-color 0.4s ease, transform 0.4s ease;
}

.social-dita__item:hover .social-dita__circle {
    border-color: var(--gold-accent);
    transform: scale(1.05);
}

.social-dita__circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.social-dita__item:hover .social-dita__circle img {
    transform: scale(1.1);
}

.social-dita__name {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--pearl);
    transition: color 0.3s ease;
}

.social-dita__item:hover .social-dita__name {
    color: var(--gold-accent);
}

@media (max-width: 768px) {
    .social-dita__circle {
        width: 120px;
        height: 120px;
    }

    .social-dita__grid {
        gap: 24px;
    }
}

@media (max-width: 480px) {
    .social-dita__circle {
        width: 80px;
        height: 80px;
    }

    .social-dita__grid {
        gap: 16px;
    }

    .social-dita__name,
    .social-dita__name--dark {
        font-size: 0.55rem;
    }
}

/* Scroll offset dla wszystkich sekcji — kompensacja fixed navbar */
section[id],
#social {
    scroll-margin-top: 0;
}

/* --- SEKCJA SOCIAL --- */
.social-section {
    background: var(--pearl);
    text-align: center;
}

.social-section__header {
    max-width: 600px;
    margin: 0 auto 50px;
}

.social-section__label {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-accent);
    margin-bottom: 16px;
}

.social-section__title {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--deep-taupe);
    line-height: 1.6;
}

/* Wariant jasny (w sekcji kursów) */
.social-dita__grid--light {
    margin-top: 30px;
}

.social-dita__grid--light .social-dita__circle {
    border-color: rgba(196, 169, 125, 0.25);
}

.social-dita__name--dark {
    color: var(--deep-taupe);
}

.social-dita__item:hover .social-dita__name--dark {
    color: var(--gold-accent);
}

/* --- FAQ --- */
.faq {
    background: var(--cream);
}

.faq__header {
    text-align: center;
    margin-bottom: 50px;
}

.faq__title {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 2.5vw, 1.8rem);
    font-weight: 400;
    color: var(--dark-brown);
}

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

.faq__item {
    padding: 24px 0;
    border-bottom: 1px solid rgba(196, 169, 125, 0.2);
}

.faq__item:last-child {
    border-bottom: none;
}

.faq__question {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--dark-brown);
    margin-bottom: 10px;
}

.faq__answer {
    font-size: 0.9rem;
    color: var(--deep-taupe);
    line-height: 1.7;
}

/* --- FOOTER --- */
.footer {
    background: var(--dark-brown);
    padding: 50px 0 30px;
    text-align: center;
}

.footer__logo {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--pearl);
    margin-bottom: 24px;
}

.footer__logo span {
    font-style: italic;
}

.footer .social-row a {
    border-color: rgba(245, 240, 235, 0.2);
    color: var(--pearl);
}

.footer .social-row a:hover {
    border-color: var(--gold-accent);
    color: var(--gold-accent);
}

.footer__copy {
    margin-top: 30px;
    font-size: 0.7rem;
    color: rgba(245, 240, 235, 0.4);
    letter-spacing: 0.1em;
}

.footer__links {
    margin-top: 12px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 4px 0;
}

.footer__links a {
    font-size: 0.7rem;
    color: rgba(245, 240, 235, 0.4);
    letter-spacing: 0.05em;
}

.footer__links span {
    margin: 0 6px !important;
    font-size: 0.65rem;
    color: rgba(245, 240, 235, 0.25) !important;
}

.footer__links a:hover {
    color: var(--gold-accent);
}

@media (max-width: 480px) {
    .footer__links {
        flex-direction: column;
        align-items: center;
        gap: 6px;
    }
    .footer__links span {
        display: none;
    }
}

/* --- SCROLL ANIMATIONS --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

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

@media (min-width: 769px) {
    .hero__scroll {
        bottom: 80px;
    }
}

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

@media (max-width: 768px) {
    .navbar {
        padding: 16px 24px;
        justify-content: space-between;
    }

    .navbar__links {
        display: none;
    }

    .navbar__hamburger {
        display: flex;
        order: 3;
    }

    .navbar .lang-switch {
        display: flex;
        margin-left: auto;
        margin-right: 12px;
        font-size: 0.7rem;
        order: 2;
    }

    .hero {
        height: 100vh;
        min-height: 500px;
    }

    .about__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about__images,
    .about__text {
        grid-column: auto;
        grid-row: auto;
    }

    .about__images {
        height: 350px;
        width: 280px;
        margin: 0 auto;
        position: relative;
    }

    .about__img--persona,
    .about__img--mersona {
        width: 60%;
        height: 65%;
    }

    .about__header-mobile {
        display: block;
    }

    .about__header-desktop {
        display: none;
    }

    .about__images--mobile {
        display: block;
        height: 350px;
        width: 280px;
        margin: 0 auto 30px;
        position: relative;
    }

    .about__images--mobile-only {
        display: block !important;
    }

    .about__images--mobile .about__img--persona,
    .about__images--mobile .about__img--mersona {
        width: 60%;
        height: 65%;
    }

    .about__images--desktop {
        display: none;
    }

    .about__text {
        padding-right: 0;
        text-align: center;
    }

    .about__quote {
        text-align: left;
    }

    .courses__grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .newsletter__form {
        flex-direction: column;
    }

    .contact__grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .contact__info {
        text-align: center;
    }

    .contact__form .btn {
        align-self: center;
        width: 100%;
    }

    .section-padding {
        padding: 35px 0;
    }
}

@media (max-width: 480px) {
    .hero__h1 {
        font-size: 1.2rem;
        bottom: 80px;
    }

    .hero__title {
        font-size: 2.2rem;
    }

    .credo__quote {
        font-size: 1.15rem;
    }

}

/* --- MOBILE BOTTOM NAV --- */
.bottom-nav {
    display: none;
}

@media (max-width: 768px) {
    /* App Shell: body nie scrolluje, scrolluje #app-content (tylko gdy app-shell istnieje) */
    html:has(#app-shell), html:has(#app-shell) body {
        height: 100%;
        overflow: hidden;
    }

    #app-shell {
        display: flex;
        flex-direction: column;
        height: 100%;
    }

    .navbar {
        position: relative;
        flex-shrink: 0;
        justify-content: center;
    }

    #app-content {
        flex: 1;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior-y: contain;
        scroll-behavior: smooth;
    }

    .hero {
        height: calc(100dvh - 110px);
        min-height: 400px;
    }

    .bottom-nav {
        display: flex;
        flex-shrink: 0;
        background: #faf7f2;
        box-shadow: 0 -1px 20px rgba(61, 46, 35, 0.08);
        padding: 8px 0;
        justify-content: space-around;
        align-items: center;
    }

    .bottom-nav__item {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 4px;
        text-decoration: none;
        padding: 4px 8px;
        transition: color 0.3s;
        color: var(--warm-gray);
    }

    .bottom-nav__item:hover,
    .bottom-nav__item.active {
        color: var(--gold-accent);
    }

    .bottom-nav__item svg {
        width: 22px;
        height: 22px;
    }

    .bottom-nav__item span {
        font-family: var(--font-body);
        font-size: 0.55rem;
        font-weight: 600;
        letter-spacing: 0.05em;
        text-transform: uppercase;
    }

    /* Ukryj hamburger */
    .navbar__hamburger {
        display: none !important;
    }

    .footer {
        padding-bottom: 80px;
    }
}

/* --- Prefers reduced motion --- */
@media (prefers-reduced-motion: reduce) {
    .hero__image {
        animation: none;
    }

    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }

    html {
        scroll-behavior: auto;
    }
}
