/* =============================================
   Studio Ceramiki w Rokietnicy - Wspólne style
   ============================================= */

:root {
    --clay-warm: #7BA8A0;
    --clay-light: #E5F0ED;
    --clay-dark: #5A7A73;
    --earth-deep: #3D4A4A;
    --cream: #F7F8F8;
    --terracotta: #6B9B93;
    --glaze-blue: #8DBAB3;
}

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

body {
    font-family: 'Jost', sans-serif;
    background-color: var(--cream);
    color: var(--earth-deep);
    overflow-x: hidden;
}

/* Organiczne tło */
.organic-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.4;
}

.organic-shape {
    position: absolute;
    border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%;
    animation: morph 20s ease-in-out infinite;
}

.shape1 {
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, var(--clay-light) 0%, var(--clay-warm) 100%);
    top: -10%;
    right: -10%;
    animation-delay: 0s;
}

.shape2 {
    width: 400px;
    height: 400px;
    background: linear-gradient(225deg, var(--glaze-blue) 0%, transparent 100%);
    bottom: 10%;
    left: -5%;
    animation-delay: 5s;
}

.shape3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--terracotta) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    animation-delay: 10s;
}

@keyframes morph {
    0%, 100% {
        border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%;
        transform: rotate(0deg) scale(1);
    }
    25% {
        border-radius: 48% 52% 68% 32% / 42% 58% 42% 58%;
        transform: rotate(90deg) scale(1.1);
    }
    50% {
        border-radius: 40% 60% 42% 58% / 48% 32% 68% 52%;
        transform: rotate(180deg) scale(0.9);
    }
    75% {
        border-radius: 58% 42% 55% 45% / 60% 40% 60% 40%;
        transform: rotate(270deg) scale(1.05);
    }
}

/* Header */
header {
    padding: 2rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 10;
}

.logo {
    animation: fadeInDown 1s ease-out;
}

.logo img {
    height: 320px;
    width: auto;
    display: block;
}

nav {
    display: flex;
    gap: 2.5rem;
    animation: fadeInDown 1s ease-out 0.2s both;
}

nav a {
    text-decoration: none;
    color: var(--earth-deep);
    font-weight: 400;
    font-size: 1.4rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: color 0.3s ease;
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--clay-warm);
    transition: width 0.3s ease;
}

nav a:hover {
    color: var(--clay-dark);
}

nav a:hover::after {
    width: 100%;
}

/* Announcement Banner */
.announcement-banner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, var(--clay-light) 0%, rgba(123, 168, 160, 0.5) 100%);
    border-top: 3px solid var(--clay-warm);
    border-bottom: 3px solid var(--clay-warm);
    text-align: center;
    animation: fadeIn 1s ease-out 0.4s both;
}

.announcement-banner p {
    font-family: 'Jost', sans-serif;
    font-size: 1rem;
    color: var(--earth-deep);
    font-weight: 400;
    line-height: 1.6;
    max-width: 900px;
}

.announcement-events {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 0;
    width: 100%;
    max-width: 900px;
}

.announcement-event {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    flex: 1;
}

.announcement-divider {
    width: 1px;
    align-self: stretch;
    background: var(--clay-warm);
    opacity: 0.5;
    margin: 0 1.5rem;
    flex-shrink: 0;
}

.announcement-title {
    font-family: 'Cormorant Garamond', serif !important;
    font-size: 2rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.02em;
    line-height: 1.3 !important;
}

.announcement-details {
    font-size: 1.05rem !important;
}

.announcement-address {
    font-size: 0.95rem !important;
    color: var(--clay-dark) !important;
}

.announcement-address a {
    color: var(--clay-dark);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.calendar-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.82rem;
    color: var(--clay-dark);
    text-decoration: none;
    opacity: 0.75;
    transition: opacity 0.2s;
    margin-top: 0.3rem;
}

.calendar-link:hover {
    opacity: 1;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.calendar-link svg {
    width: 13px;
    height: 13px;
    flex-shrink: 0;
}

.news-card__cta .calendar-link {
    font-size: 0.9rem;
    margin-top: 0.5rem;
    opacity: 0.8;
}

.facebook-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    color: var(--clay-dark);
    font-size: 1.2rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.7);
    box-shadow: 0 4px 15px rgba(90, 122, 115, 0.2);
}

.facebook-link:hover {
    color: var(--earth-deep);
    background: rgba(255, 255, 255, 0.95);
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(90, 122, 115, 0.3);
}

.banner-social {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
}

.facebook-link svg {
    width: 24px;
    height: 24px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4rem 4rem 6rem;
    min-height: 85vh;
    position: relative;
}

.hero-content {
    max-width: 600px;
    animation: fadeInLeft 1.2s ease-out 0.4s both;
}

.hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 5.5rem;
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--earth-deep);
}

.hero h1 .accent {
    color: var(--terracotta);
    font-weight: 400;
}

.hero p {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--clay-dark);
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.hero p:last-of-type {
    margin-bottom: 3rem;
}

.hero p strong {
    color: var(--terracotta);
    font-weight: 500;
}

.hero-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem !important;
    font-style: italic;
    color: var(--clay-warm) !important;
    margin-bottom: 0.5rem !important;
}

.hero-event-details {
    border-left: 3px solid var(--clay-warm);
    padding-left: 1.5rem;
    margin: 1.5rem 0 2rem;
}

.hero-date {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem !important;
    font-weight: 600 !important;
    color: var(--earth-deep) !important;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem !important;
}

.hero-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem !important;
    font-weight: 600 !important;
    color: var(--terracotta) !important;
    margin-top: 1rem !important;
    margin-bottom: 0.25rem !important;
}

.hero-price-note {
    font-size: 0.95rem !important;
    color: var(--clay-dark) !important;
    margin-bottom: 1rem !important;
}

.hero-address {
    font-size: 0.95rem !important;
    color: var(--clay-dark) !important;
    margin-bottom: 0 !important;
}

/* CTA Button */
.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--earth-deep);
    color: var(--cream);
    text-decoration: none;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--clay-warm);
    transition: left 0.4s ease;
    z-index: -1;
}

.cta-button:hover::before {
    left: 0;
}

.cta-button:hover {
    color: var(--earth-deep);
}

/* Sekcja z ceramiką - SVG */
.ceramic-showcase {
    width: 500px;
    animation: fadeInRight 1.2s ease-out 0.6s both;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.pottery-item {
    animation: float 6s ease-in-out infinite;
}

.pottery-item:nth-child(2) {
    animation-delay: 2s;
}

.pottery-item:nth-child(3) {
    animation-delay: 4s;
}

/* O nas */
.about {
    padding: 8rem 4rem;
    background: linear-gradient(180deg, transparent 0%, rgba(212, 165, 116, 0.1) 100%);
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.about h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    font-weight: 300;
    margin-bottom: 2rem;
    color: var(--earth-deep);
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--clay-dark);
    font-weight: 300;
}

.about-text p {
    margin-bottom: 1.5rem;
}

/* O mnie */
.about-me {
    background: linear-gradient(180deg, rgba(212, 165, 116, 0.1) 0%, transparent 100%);
}

.about-me .about-content {
    direction: rtl;
}

.about-me .about-content > div {
    direction: ltr;
}

.about-me .about-text p:first-child {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--earth-deep);
}

.about-me .about-text p:last-child {
    font-style: italic;
    margin-top: 0.5rem;
}

.about-me-photo {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(58, 50, 38, 0.15);
}

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

/* Oferujemy */
.services {
    padding: 6rem 4rem;
    background: var(--cream);
}

.services h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    font-weight: 300;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--earth-deep);
}

.services h2:first-of-type {
    margin-bottom: 4rem;
}

.services h2 + .services-grid + h2 {
    margin-top: 4rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 3rem;
}

.services-grid:last-child {
    margin-bottom: 0;
}

.service-card {
    padding: 3rem 2rem;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 165, 116, 0.2);
    transition: all 0.4s ease;
    position: relative;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--clay-light) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(58, 50, 38, 0.1);
}

.service-card:hover::before {
    opacity: 0.3;
}

.service-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 1.5rem;
}

.service-icon svg {
    width: 100%;
    height: 100%;
}

.service-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: var(--earth-deep);
}

.service-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--clay-dark);
    font-weight: 300;
}

.service-card p.price {
    font-weight: 500;
    color: var(--terracotta);
    margin-bottom: 0.8rem;
    font-size: 1.05rem;
}

.service-card p.note {
    font-size: 0.9rem;
    font-style: italic;
    opacity: 0.8;
    margin-bottom: 0.8rem;
}

/* Workshop intro */
.workshop-intro {
    max-width: 900px;
    margin: 0 auto 3rem;
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 165, 116, 0.2);
}

.workshop-intro h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--earth-deep);
    margin-bottom: 1rem;
}

.workshop-intro p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--clay-dark);
    font-weight: 300;
}

/* Kontakt */
.contact {
    padding: 8rem 4rem;
    background: linear-gradient(180deg, var(--cream) 0%, var(--clay-light) 100%);
    text-align: center;
}

.contact h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    font-weight: 300;
    margin-bottom: 2rem;
    color: var(--earth-deep);
}

.contact-details {
    font-size: 1.2rem;
    line-height: 2;
    color: var(--clay-dark);
    margin-bottom: 3rem;
}

.contact-details a {
    color: var(--terracotta);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: var(--clay-dark);
}

/* Page Header (dla podstron) */
.page-header {
    padding: 4rem 4rem 3rem;
    text-align: center;
    animation: fadeInDown 1s ease-out 0.4s both;
}

.page-header h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    font-weight: 300;
    color: var(--earth-deep);
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.1rem;
    color: var(--clay-dark);
    max-width: 700px;
    margin: 0 auto;
    font-weight: 300;
}

/* Content (dla podstron) */
.content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem 4rem 6rem;
}

.content-section {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    padding: 3rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(212, 165, 116, 0.2);
    animation: fadeInUp 0.8s ease-out both;
}

.content-section:nth-child(2) {
    animation-delay: 0.1s;
}

.content-section:nth-child(3) {
    animation-delay: 0.2s;
}

.content-section:nth-child(4) {
    animation-delay: 0.3s;
}

.content-section:nth-child(5) {
    animation-delay: 0.4s;
}

.content-section:nth-child(6) {
    animation-delay: 0.5s;
}

.content-section:nth-child(7) {
    animation-delay: 0.6s;
}

.content-section h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 400;
    color: var(--earth-deep);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--clay-warm);
}

.content-section h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--earth-deep);
    margin: 1.5rem 0 1rem;
}

.content-section p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--clay-dark);
    margin-bottom: 1rem;
    font-weight: 300;
}

.content-section ul {
    color: var(--clay-dark);
    margin-left: 2rem;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.content-section ul li {
    margin-bottom: 0.7rem;
    font-weight: 300;
}

.admin-box {
    background: var(--clay-light);
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-left: 4px solid var(--terracotta);
}

.admin-box strong {
    color: var(--earth-deep);
    font-weight: 500;
}

.highlight-box {
    background: linear-gradient(135deg, var(--glaze-blue) 0%, rgba(122, 155, 168, 0.7) 100%);
    color: white;
    padding: 1.5rem;
    margin: 1.5rem 0;
    text-align: center;
    font-weight: 400;
    font-size: 1.1rem;
}

.back-link {
    text-align: center;
    margin: 3rem 0 2rem;
}

/* Footer */
footer {
    padding: 2rem 4rem;
    background: var(--earth-deep);
    color: var(--cream);
    text-align: center;
    font-size: 0.9rem;
    font-weight: 300;
    letter-spacing: 0.05em;
}

footer a {
    color: var(--clay-warm);
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--terracotta);
}

.footer-social {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.footer-facebook {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    color: var(--clay-warm);
    transition: all 0.3s ease;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.footer-facebook:hover {
    color: var(--cream);
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.footer-facebook svg {
    width: 20px;
    height: 20px;
}

/* Animacje */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsywność */
@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 3rem 2rem;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero h1 {
        font-size: 4rem;
    }

    .ceramic-showcase {
        width: 400px;
        margin-top: 3rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

    .workshop-intro {
        padding: 1.5rem;
    }

    header {
        padding: 1.5rem 2rem;
    }

    nav {
        gap: 1.5rem;
    }

    .page-header {
        padding: 3rem 2rem 2rem;
    }

    .page-header h1 {
        font-size: 3rem;
    }

    .content {
        padding: 2rem 2rem 4rem;
    }

    .content-section {
        padding: 2rem;
    }

    .announcement-banner {
        padding: 2.5rem 1.5rem;
        gap: 1.2rem;
    }

    .announcement-banner p {
        font-size: 2rem;
    }

    .announcement-events {
        flex-direction: column;
        gap: 1.5rem;
    }

    .announcement-divider {
        width: 60%;
        height: 1px;
        align-self: center;
        margin: 0;
    }

    .facebook-link {
        padding: 0.8rem 1.5rem;
        font-size: 1.1rem;
    }

    .facebook-link svg {
        width: 22px;
        height: 22px;
    }
}

@media (max-width: 640px) {
    .hero h1 {
        font-size: 3rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .ceramic-showcase {
        width: 300px;
    }

    header {
        flex-direction: column;
        gap: 1.5rem;
    }

    nav {
        flex-wrap: wrap;
        justify-content: center;
    }

    .about h2,
    .services h2,
    .contact h2 {
        font-size: 2.5rem;
    }

    .page-header h1 {
        font-size: 2.5rem;
    }

    .content-section {
        padding: 1.5rem;
    }

    .content-section h2 {
        font-size: 1.6rem;
    }

    .announcement-banner {
        padding: 2rem 1rem;
    }

    .announcement-banner p {
        font-size: 1.5rem;
    }

    .facebook-link {
        padding: 0.7rem 1.2rem;
        font-size: 1rem;
        gap: 0.5rem;
    }

    .facebook-link svg {
        width: 20px;
        height: 20px;
    }

    .logo img {
        height: 160px;
    }
}

/* ==================== */
/* Galeria              */
/* ==================== */

.gallery-content {
    padding-bottom: 4rem;
}

.gallery-section-title {
    grid-column: 1 / -1;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--clay-dark);
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--clay-warm);
    margin-top: 1rem;
    opacity: 0.85;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 1400px;
    margin: 0 auto 3rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(58, 50, 38, 0.1);
    transition: all 0.4s ease;
}

.gallery-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(61, 74, 74, 0.6) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

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

.gallery-item::after {
    content: attr(data-title);
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    color: var(--cream);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 400;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 2;
}

.gallery-item:hover::after {
    opacity: 1;
    transform: translateY(0);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(58, 50, 38, 0.15);
}

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

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(61, 74, 74, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.3);
}

.lightbox-title {
    color: var(--cream);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    margin-top: 1.5rem;
    text-align: center;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: none;
    border: none;
    color: var(--cream);
    font-size: 2.5rem;
    cursor: pointer;
    padding: 1rem;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    opacity: 1;
    transform: scale(1.1);
}

.lightbox-close {
    top: 1rem;
    right: 1rem;
    font-size: 3rem;
}

.lightbox-prev {
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-next {
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-prev:hover,
.lightbox-next:hover {
    transform: translateY(-50%) scale(1.1);
}

/* Navigation active state */
nav a.active {
    color: var(--terracotta);
}

nav a.active::after {
    width: 100%;
}

/* Gallery responsive */
@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 1rem;
    }
}

@media (max-width: 640px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .gallery-item::after {
        font-size: 0.9rem;
        bottom: 0.5rem;
        left: 0.5rem;
        right: 0.5rem;
    }

    .lightbox-prev,
    .lightbox-next {
        font-size: 2rem;
        padding: 0.5rem;
    }

    .lightbox-close {
        font-size: 2.5rem;
    }

    .lightbox-title {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
}

/* ==================== */
/* Aktualności          */
/* ==================== */

.news-content {
    padding-bottom: 4rem;
}

.news-grid {
    max-width: 860px;
    margin: 0 auto 3rem;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.news-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(58, 50, 38, 0.08);
    overflow: hidden;
    position: relative;
    transition: box-shadow 0.3s ease;
}

.news-card:hover {
    box-shadow: 0 8px 30px rgba(58, 50, 38, 0.14);
}

.news-card--featured {
    border-left: 4px solid var(--clay-warm);
}

.news-card__badge {
    display: inline-block;
    background: var(--clay-light);
    color: var(--clay-dark);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.3rem 0.9rem;
    border-radius: 0 0 6px 0;
    position: absolute;
    top: 0;
    left: 0;
}

.news-card__body {
    padding: 2.5rem 2.5rem 2rem;
}

.news-card__date {
    font-size: 0.9rem;
    color: var(--clay-warm);
    font-weight: 500;
    letter-spacing: 0.04em;
    margin-bottom: 0.5rem;
    margin-top: 1rem;
}

.news-card__title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.4rem;
    font-weight: 400;
    color: var(--earth-deep);
    line-height: 1.2;
    margin-bottom: 0.4rem;
}

.news-card__tagline {
    font-style: italic;
    color: var(--clay-dark);
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
}

.news-card__body p {
    color: var(--clay-dark);
    line-height: 1.8;
    margin-bottom: 0.75rem;
}

.news-card__details {
    list-style: none;
    margin: 1.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.news-card__details li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.95rem;
    color: var(--earth-deep);
    line-height: 1.5;
}

.news-card__details svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--clay-warm);
}

.news-card__pricing {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 2rem;
    align-items: baseline;
    margin: 1.5rem 0;
    padding: 1.2rem 1.5rem;
    background: var(--clay-light);
    border-radius: 6px;
}

.news-card__price {
    display: flex;
    align-items: baseline;
    gap: 0.3rem;
}

.price-amount {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 600;
    color: var(--terracotta);
}

.price-unit {
    font-size: 0.9rem;
    color: var(--clay-dark);
}

.news-card__price--promo .price-amount {
    font-size: 1.6rem;
    color: var(--clay-dark);
}

.news-card__cta {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.news-card__cta-note {
    font-size: 0.9rem !important;
    color: var(--clay-dark) !important;
    margin: 0 !important;
}

.news-card__cta-note a {
    color: var(--clay-warm);
    text-decoration: underline;
    text-underline-offset: 3px;
}

@media (max-width: 640px) {
    .news-card__body {
        padding: 2rem 1.5rem 1.5rem;
    }

    .news-card__title {
        font-size: 1.9rem;
    }

    .news-card__pricing {
        flex-direction: column;
        gap: 0.5rem;
    }
}
