:root {
    --bg: #ffffff;
    --bg-soft: #f5f0ea;
    --bg-beige: #ece4da;
    --bg-warm: #efe8df;
    --text: #2d2722;
    --text-soft: #6b5f55;
    --muted: #9a8c80;
    --line: #d9cfc4;
    --accent: #8a7a6c;

    --font-serif: 'Cormorant Garamond', 'Times New Roman', serif;
    --font-sans: 'Montserrat', 'Helvetica Neue', sans-serif;
    --font-script: 'Pinyon Script', 'Brush Script MT', cursive;
}

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

html, body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-sans);
    font-weight: 300;
    font-size: 15px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }

/* ===== Header ===== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 22px 60px;
    background: #fff;
    min-height: 110px;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
}

.main-nav {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    align-self: stretch;
}

.nav-list {
    list-style: none;
    display: flex;
    gap: 38px;
}

.nav-list a {
    font-size: 11px;
    letter-spacing: 0.18em;
    color: var(--text);
    font-weight: 400;
    padding-bottom: 2px;
}

.nav-list a.active { font-weight: 600; }

.brand {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.brand-name {
    font-family: var(--font-serif);
    font-weight: 400;
    font-size: 30px;
    letter-spacing: 0.35em;
    padding-left: 0.35em;
    line-height: 1;
    color: var(--text);
}

.brand-sub {
    display: block;
    font-family: var(--font-serif);
    font-size: 11px;
    letter-spacing: 0.45em;
    color: var(--text-soft);
    margin-top: 6px;
    padding-left: 0.45em;
}

.brand-name::before,
.brand-name::after {
    content: "";
    display: none;
}

/* decorative thin lines under FOTOGRAFIA */
.brand::after {
    content: "";
    display: block;
    width: 60px;
    height: 1px;
    background: var(--line);
    margin: 8px auto 0;
}

/* ===== Hero ===== */
.hero {
    position: relative;
    height: 560px;
    background-size: cover;
    background-position: center 55%;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    margin: 0 60px;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(40, 30, 24, 0.18);
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 0 20px;
}

.hero-title {
    font-family: var(--font-serif);
    font-weight: 400;
    font-size: 50px;
    line-height: 1.15;
    color: #fff;
    margin-bottom: 22px;
    letter-spacing: 0.01em;
}

.hero-sub {
    font-family: var(--font-sans);
    font-size: 11px;
    letter-spacing: 0.25em;
    color: #fff;
    margin-bottom: 32px;
    line-height: 1.9;
}

.btn {
    display: inline-block;
    padding: 14px 34px;
    font-family: var(--font-sans);
    font-size: 11px;
    letter-spacing: 0.25em;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.25s ease;
}

.btn-outline {
    border: 1px solid #fff;
    color: #fff;
    background: transparent;
}

.btn-outline:hover {
    background: #fff;
    color: var(--text);
}

/* ===== Categories ===== */
.categories {
    padding: 60px 60px 70px;
    background: #fff;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
}

.category {
    display: block;
    text-align: center;
}

.category img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    margin-bottom: 18px;
    transition: opacity 0.3s ease;
}

.category:hover img { opacity: 0.85; }

.category-label {
    font-size: 11px;
    letter-spacing: 0.3em;
    color: var(--text);
    font-weight: 400;
}

/* ===== Values ===== */
.values {
    position: relative;
    background: var(--bg-beige);
    padding: 80px 60px;
    text-align: center;
}

.values-side {
    position: absolute;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    transform-origin: center;
    font-size: 10px;
    letter-spacing: 0.35em;
    color: var(--text);
    font-weight: 400;
    white-space: nowrap;
}

.values-left { left: 30px; }
.values-right { right: 30px; transform: translateY(-50%) rotate(90deg); }

.values-inner {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.value-pair { display: flex; flex-direction: column; gap: 6px; }

.value-main {
    font-family: var(--font-serif);
    font-weight: 400;
    font-size: 26px;
    color: var(--text);
    letter-spacing: 0.01em;
}

.value-script {
    font-family: var(--font-script);
    font-weight: 400;
    font-size: 22px;
    color: var(--text-soft);
}

/* ===== About / Poznaj mnie ===== */
.about {
    padding: 70px 60px 90px;
    background: #fff;
    text-align: center;
}

.section-script {
    font-family: var(--font-script);
    font-size: 36px;
    font-weight: 400;
    color: var(--text);
    margin-bottom: 40px;
}

.about-photos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-bottom: 36px;
}

.about-photo {
    flex: 0 0 auto;
}

.about-photo img {
    width: 190px;
    height: 240px;
    object-fit: cover;
}

.about-photo-center img {
    width: 230px;
    height: 290px;
    object-fit: cover;
}

.about-photos-single { gap: 0; }
.about-photos-single .about-photo-center img {
    width: 260px;
    height: 330px;
}

.about-name {
    font-family: var(--font-serif);
    font-weight: 500;
    font-size: 22px;
    color: var(--text);
    margin-bottom: 14px;
    letter-spacing: 0.02em;
}

.about-text p {
    max-width: 640px;
    margin: 0 auto;
    color: var(--text);
    font-size: 14px;
    line-height: 1.85;
}

/* ===== Footer ===== */
.site-footer {
    background: var(--bg-warm);
    padding: 28px 60px;
    border-top: 1px solid var(--line);
}

.footer-inner {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.footer-item {
    font-size: 13px;
    color: var(--text);
    letter-spacing: 0.04em;
    font-weight: 300;
}

.footer-item:hover { color: var(--accent); }

/* ===== Page hero (portfolio, oferta, kontakt) ===== */
.page-hero {
    position: relative;
    height: 420px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    margin: 0 60px;
}
.page-hero-overlay {
    position: absolute; inset: 0;
    background: rgba(255, 250, 244, 0.32);
}
.page-hero-content { position: relative; z-index: 1; padding: 0 20px; }
.page-hero-title {
    font-family: var(--font-serif);
    font-weight: 400;
    font-size: 56px;
    color: #fff;
    margin-bottom: 14px;
    letter-spacing: 0.01em;
}
.hero-divider {
    display: inline-block;
    width: 50px; height: 1px;
    background: #fff; opacity: 0.75;
    margin-bottom: 18px;
}
.page-hero-sub {
    font-family: var(--font-sans);
    font-size: 12px;
    letter-spacing: 0.18em;
    color: #fff;
    line-height: 1.9;
}

.title-divider {
    display: inline-block;
    width: 38px; height: 1px;
    background: var(--line);
    margin: 12px 0 22px;
}

.btn-bordered {
    border: 1px solid var(--text);
    color: var(--text);
    background: transparent;
}
.btn-bordered:hover { background: var(--text); color: #fff; }

.btn-filled {
    background: var(--bg-beige);
    color: var(--text);
    border: none;
}
.btn-filled:hover { background: var(--text); color: #fff; }

/* ===== Portfolio rows ===== */
.portfolio-row {
    display: grid;
    grid-template-columns: 1fr 2.4fr;
    gap: 30px;
    padding: 70px 60px;
    background: #fff;
    border-bottom: 1px solid #f0eae3;
    align-items: center;
}
.portfolio-row:nth-of-type(even) {
    background: var(--bg-soft);
}
.portfolio-row-reverse {
    grid-template-columns: 2.4fr 1fr;
}
.portfolio-row-reverse .portfolio-text { order: 2; }
.portfolio-row-reverse .portfolio-gallery { order: 1; }
.portfolio-text {
    padding: 0 20px;
}
.portfolio-title {
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 500;
    letter-spacing: 0.25em;
    color: var(--text);
    margin-bottom: 4px;
}
.portfolio-desc {
    font-size: 13.5px;
    color: var(--text-soft);
    line-height: 1.75;
    max-width: 280px;
}
.portfolio-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}
.portfolio-photo {
    display: block;
    cursor: zoom-in;
    overflow: hidden;
}
.portfolio-photo img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    transition: transform 0.4s ease, opacity 0.3s ease;
}
.portfolio-photo:hover img { transform: scale(1.03); opacity: 0.92; }

.portfolio-cta {
    position: relative;
    min-height: 280px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 70px 60px;
    color: #fff;
}
.portfolio-cta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(40, 30, 24, 0.35);
}
.portfolio-cta-inner {
    position: relative;
    z-index: 1;
    max-width: 620px;
}
.portfolio-cta-inner p {
    font-family: var(--font-serif);
    font-size: 20px;
    color: #fff;
    margin-bottom: 28px;
    line-height: 1.6;
}

/* ===== Lightbox ===== */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(20, 14, 10, 0.92);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 30px 60px;
}
.lightbox.open { display: flex; }
.lightbox-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    box-shadow: 0 10px 40px rgba(0,0,0,0.4);
}
.lightbox button {
    position: absolute;
    background: transparent;
    border: none;
    color: #fff;
    cursor: pointer;
    font-size: 32px;
    line-height: 1;
    padding: 12px 18px;
    transition: opacity 0.2s;
    opacity: 0.85;
}
.lightbox button:hover { opacity: 1; }
.lightbox-close { top: 18px; right: 24px; font-size: 38px; }
.lightbox-prev { left: 18px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 18px; top: 50%; transform: translateY(-50%); }
@media (max-width: 560px) {
    .lightbox { padding: 20px 10px; }
    .lightbox-prev { left: 6px; }
    .lightbox-next { right: 6px; }
}

/* ===== Oferta ===== */
.oferta-intro {
    padding: 80px 60px 30px;
    text-align: center;
    background: #fff;
}
.section-tag {
    display: inline-block;
    font-size: 11px;
    letter-spacing: 0.4em;
    color: var(--text);
    margin-bottom: 18px;
}
.oferta-intro-text {
    max-width: 560px;
    margin: 0 auto;
    font-size: 14px;
    line-height: 1.85;
    color: var(--text);
}

.oferta-sesje {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    padding: 30px 60px 80px;
    background: #fff;
}
.oferta-card { text-align: center; }
.oferta-card-img img {
    width: 100%;
    height: 290px;
    object-fit: cover;
    margin-bottom: 22px;
}
.oferta-card-title {
    font-family: var(--font-serif);
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.3em;
    margin-bottom: 12px;
}
.oferta-card-desc {
    font-size: 13.5px;
    color: var(--text-soft);
    margin-bottom: 14px;
    line-height: 1.65;
    max-width: 280px;
    margin-left: auto; margin-right: auto;
}
.oferta-card-price {
    font-family: var(--font-serif);
    font-size: 16px;
    color: var(--text);
    letter-spacing: 0.04em;
}

.oferta-reportaze {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 26px;
    align-items: center;
    padding: 50px 60px;
    background: var(--bg-soft);
}
.oferta-reportaze-text { padding: 0 20px; }
.oferta-reportaze-title {
    font-family: var(--font-serif);
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.3em;
    margin-bottom: 16px;
}
.oferta-reportaze-desc {
    font-size: 13.5px;
    color: var(--text-soft);
    line-height: 1.75;
    margin-bottom: 18px;
    max-width: 280px;
}
.oferta-reportaze-price {
    font-family: var(--font-serif);
    font-size: 16px;
    color: var(--text);
}
.oferta-reportaze-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}
.oferta-reportaze-photo img {
    width: 100%; height: 200px; object-fit: cover;
}

.oferta-zawiera {
    padding: 60px 60px;
    background: var(--bg-warm);
    text-align: center;
}
.oferta-zawiera-title {
    font-family: var(--font-serif);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.4em;
    margin-bottom: 36px;
    color: var(--text);
}
.oferta-zawiera-items {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
}
.zawiera-item { text-align: center; padding: 0 8px; }
.zawiera-icon {
    width: 32px; height: 32px;
    margin: 0 auto 14px;
    color: var(--text);
}
.zawiera-icon svg { width: 100%; height: 100%; }
.zawiera-text {
    font-size: 11px;
    letter-spacing: 0.22em;
    line-height: 1.7;
    color: var(--text);
    text-transform: uppercase;
    margin: 0;
}
.zawiera-text .zawiera-main,
.zawiera-text .zawiera-sub { display: block; }
.zawiera-text .zawiera-sub { color: var(--muted); }

.oferta-cta {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    align-items: center;
    gap: 30px;
    padding: 50px 60px 90px;
    background: #fff;
}
.oferta-cta-img img {
    width: 100%; height: 220px; object-fit: cover;
}
.oferta-cta-text { text-align: center; padding: 0 30px; }
.cta-main {
    font-family: var(--font-serif);
    font-size: 22px;
    color: var(--text);
    margin-bottom: 8px;
}
.cta-script {
    font-family: var(--font-script);
    font-size: 22px;
    color: var(--text-soft);
    margin-bottom: 22px;
}
.cta-note {
    font-size: 10px;
    letter-spacing: 0.3em;
    color: var(--muted);
    margin-top: 14px;
}

/* ===== Kontakt ===== */
.kontakt-hero { height: 380px; }
.kontakt-main {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 36px;
    padding: 70px 60px;
    background: #fff;
}
.kontakt-form-title,
.kontakt-data-title {
    font-family: var(--font-serif);
    font-size: 26px;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 4px;
}
.kontakt-form .field {
    display: block;
    margin-bottom: 14px;
}
.kontakt-form input,
.kontakt-form select,
.kontakt-form textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--line);
    background: #faf6f1;
    font-family: var(--font-sans);
    font-size: 13px;
    color: var(--text);
    outline: none;
    transition: border 0.2s;
}
.kontakt-form input:focus,
.kontakt-form select:focus,
.kontakt-form textarea:focus { border-color: var(--accent); }
.kontakt-form textarea { resize: vertical; min-height: 110px; }
.kontakt-form .btn-filled {
    padding: 14px 30px;
    margin-top: 6px;
    cursor: pointer;
}
.form-note {
    font-size: 11px;
    color: var(--muted);
    margin-top: 18px;
    line-height: 1.8;
}
.form-alert {
    padding: 12px 14px;
    margin-bottom: 18px;
    font-size: 13px;
    border: 1px solid var(--line);
    background: #fbf6ef;
}
.form-alert-ok { border-color: #b9c7a8; color: #4a5d3a; }
.form-alert-err { border-color: #c7a8a8; color: #6d3a3a; }

.kontakt-data-list {
    list-style: none;
    margin-top: 30px;
}
.kontakt-data-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    font-size: 13.5px;
    color: var(--text);
    flex-wrap: wrap;
}
.kontakt-data-list li a { color: var(--text); }
.kontakt-data-list li a:hover { color: var(--accent); }
.kontakt-data-list small {
    display: block;
    width: 100%;
    padding-left: 28px;
    color: var(--muted);
    font-size: 11px;
    margin-top: -4px;
}
.kontakt-data-list [class^="icon-"] {
    width: 16px; height: 16px; flex: 0 0 16px;
    margin-top: 2px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.7;
}
.icon-person { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232d2722' stroke-width='1.2'><circle cx='12' cy='8' r='4'/><path d='M4 21c0-4 3.5-7 8-7s8 3 8 7'/></svg>"); }
.icon-ig { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232d2722' stroke-width='1.2'><rect x='3' y='3' width='18' height='18' rx='4'/><circle cx='12' cy='12' r='4'/><circle cx='17' cy='7' r='0.8' fill='%232d2722'/></svg>"); }
.icon-phone { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232d2722' stroke-width='1.2'><path d='M5 4h4l2 5-3 2c1 3 3 5 6 6l2-3 5 2v4c0 1-1 2-2 2C9 22 2 15 2 6c0-1 1-2 2-2z'/></svg>"); }
.icon-mail { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232d2722' stroke-width='1.2'><rect x='3' y='5' width='18' height='14' rx='1'/><path d='M3 7l9 7 9-7'/></svg>"); }
.icon-pin { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232d2722' stroke-width='1.2'><path d='M12 22s7-7 7-13a7 7 0 10-14 0c0 6 7 13 7 13z'/><circle cx='12' cy='9' r='2.5'/></svg>"); }

.kontakt-photo-col img {
    width: 100%;
    height: 360px;
    object-fit: cover;
}

.kontakt-faq {
    background: var(--bg-soft);
    padding: 60px 60px;
    text-align: center;
}
.kontakt-faq-title {
    font-family: var(--font-serif);
    font-size: 28px;
    font-weight: 500;
    color: var(--text);
}
.faq-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 18px;
    text-align: center;
}
.faq-item { padding: 0 20px; border-left: 1px solid var(--line); }
.faq-item:first-child { border-left: none; }
.faq-icon {
    width: 28px; height: 28px;
    margin: 0 auto 14px;
    color: var(--text);
}
.faq-icon svg { width: 100%; height: 100%; }
.faq-q {
    font-family: var(--font-serif);
    font-size: 17px;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 14px;
}
.faq-a {
    font-size: 12.5px;
    line-height: 1.75;
    color: var(--text-soft);
}

.kontakt-outro {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    background: var(--bg-warm);
    align-items: center;
}
.kontakt-outro-img img {
    width: 100%; height: 220px; object-fit: cover;
}
.kontakt-outro-text {
    text-align: center;
    padding: 50px 30px;
}
.outro-script {
    font-family: var(--font-script);
    font-size: 30px;
    color: var(--text);
    line-height: 1.4;
    margin-bottom: 24px;
}
.outro-note {
    font-size: 11px;
    letter-spacing: 0.4em;
    color: var(--text);
}

/* ===== Responsive ===== */
@media (max-width: 960px) {
    .site-header {
        flex-direction: column;
        gap: 18px;
        padding: 24px 20px;
        justify-content: center;
    }
    .main-nav {
        width: 100%;
        justify-content: center;
    }
    .brand {
        position: static;
        transform: none;
        order: -1;
    }
    .nav-list {
        gap: 22px;
        justify-content: center;
        width: 100%;
    }
    .hero { margin: 0 20px; height: 460px; }
    .hero-title { font-size: 36px; }
    .categories, .values, .about { padding-left: 20px; padding-right: 20px; }
    .categories-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
    .values-side { display: none; }
    .about-photos { flex-direction: column; gap: 18px; }
    .about-photo img, .about-photo-center img { width: 80%; height: auto; margin: 0 auto; }

    .page-hero { margin: 0 20px; height: 320px; }
    .page-hero-title { font-size: 38px; }

    .portfolio-row, .portfolio-row-reverse { grid-template-columns: 1fr; padding: 40px 20px; }
    .portfolio-row-reverse .portfolio-text { order: 1; }
    .portfolio-row-reverse .portfolio-gallery { order: 2; }
    .portfolio-photo img { height: 220px; }
    .portfolio-cta { padding: 50px 20px; min-height: 240px; }

    .oferta-intro, .oferta-sesje, .oferta-reportaze, .oferta-zawiera, .oferta-cta { padding-left: 20px; padding-right: 20px; }
    .oferta-sesje { grid-template-columns: 1fr; gap: 30px; }
    .oferta-reportaze { grid-template-columns: 1fr; }
    .oferta-zawiera-items { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .oferta-cta { grid-template-columns: 1fr; }

    .kontakt-main { grid-template-columns: 1fr; padding: 40px 20px; }
    .kontakt-photo-col img { height: 280px; }
    .kontakt-faq { padding: 40px 20px; }
    .faq-items { grid-template-columns: 1fr; gap: 28px; }
    .faq-item { border-left: none; border-top: 1px solid var(--line); padding-top: 20px; }
    .faq-item:first-child { border-top: none; padding-top: 0; }
    .kontakt-outro { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
    .nav-list { flex-wrap: wrap; justify-content: center; gap: 16px; }
    .brand-name { font-size: 22px; letter-spacing: 0.28em; }
    .hero-title { font-size: 28px; }
    .value-main { font-size: 22px; }
    .footer-inner { flex-direction: column; gap: 10px; }
}
