: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: 540px;
    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;
}

.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;
}

.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); }

/* ===== Responsive ===== */
@media (max-width: 960px) {
    .site-header {
        flex-direction: column;
        gap: 18px;
        padding: 24px 20px;
    }
    .brand {
        position: static;
        transform: none;
        order: -1;
    }
    .nav-list { gap: 22px; }
    .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; }
}

@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; }
}
