@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Inter:wght@300;400;500;600&display=swap');

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

:root {
    --gold: #c6a686;
    --gold-dark: #ad8e70;
    --bg: #0f0e0d;
    --bg2: #17140f;
    --bg3: #201c17;
    --text: #f2ece4;
    --muted: #9e8e7e;
    --border: #2e2720;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.7;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    line-height: 1.2;
}

a { transition: color 0.3s; }

/* ── NAVIGATION ── */
.nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.4rem 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(15, 14, 13, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}

.nav-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--gold);
    text-decoration: none;
    letter-spacing: 0.08em;
    font-style: italic;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    color: var(--muted);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.nav-links a:hover, .nav-links a.active { color: var(--gold); }

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    background: none;
    border: none;
    z-index: 1100;
}

.hamburger span {
    display: block;
    width: 26px;
    height: 1px;
    background: var(--text);
    transition: all 0.3s;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 768px) {
    .nav {
        padding: 1.2rem 1.5rem;
        align-items: center;
        height: 64px;
        overflow: hidden;
        transition: height 0.3s ease, background 0.3s ease;
    }
    .nav.menu-open {
        height: 100dvh;
        background: var(--bg);
        backdrop-filter: none;
        align-items: flex-start;
    }
    .hamburger { display: flex; }
    .nav-links {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        gap: 3rem;
        position: absolute;
        inset: 0;
        padding-top: 80px;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.25s ease;
    }
    .nav-links.open {
        opacity: 1;
        pointer-events: auto;
    }
    .nav-links a { font-size: 1rem; }
}

/* ── HERO ── */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 9rem 2rem 5rem;
    position: relative;
    background:
        linear-gradient(to bottom, rgba(15,14,13,0.5) 0%, rgba(15,14,13,0.85) 100%),
        /* Zastąp poniższy kolor zdjęciem: background-image: url('hero.jpg'); */
        radial-gradient(ellipse at 60% 40%, #2d2218 0%, #0f0e0d 70%);
    background-size: cover;
    background-position: center;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
    opacity: 0.4;
    pointer-events: none;
}

.hero-content { max-width: 780px; position: relative; }

.hero-eyebrow {
    font-size: 0.72rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 2rem;
}

.hero h1 {
    font-size: clamp(2.6rem, 6vw, 5rem);
    color: var(--text);
    margin-bottom: 1.8rem;
    font-weight: 700;
}

.hero h1 em {
    color: var(--gold);
    font-style: italic;
}

.hero-sub {
    font-size: 1.05rem;
    color: var(--muted);
    max-width: 520px;
    margin: 0 auto 3rem;
}

.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── BUTTONS ── */
.btn {
    display: inline-block;
    padding: 0.95rem 2.4rem;
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    text-decoration: none;
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 500;
    transition: all 0.3s;
    font-family: 'Inter', sans-serif;
}

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

.btn-solid {
    background: var(--gold);
    color: var(--bg);
    border-color: var(--gold);
}

.btn-solid:hover { background: var(--gold-dark); border-color: var(--gold-dark); }

/* ── PAGE HEADER ── */
.page-header {
    padding: 11rem 2rem 5rem;
    text-align: center;
    border-bottom: 1px solid var(--border);
}

.page-header .eyebrow {
    font-size: 0.72rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.2rem;
}

.page-header h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--text);
    margin-bottom: 1rem;
}

.page-header p {
    color: var(--muted);
    font-size: 1.05rem;
    max-width: 520px;
    margin: 0 auto;
}

/* ── SECTIONS ── */
.section {
    padding: 6rem 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.section-full {
    padding: 6rem 3rem;
    background: var(--bg2);
}

.section-full .inner {
    max-width: 1200px;
    margin: 0 auto;
}

.label {
    font-size: 0.72rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
    display: block;
}

.section h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    margin-bottom: 1.2rem;
    color: var(--text);
}

.section p, .section-full p {
    color: var(--muted);
    font-size: 1rem;
}

.divider {
    width: 50px;
    height: 1px;
    background: var(--gold);
    margin: 1.5rem 0;
}

/* ── TWO COLUMN ── */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

@media (max-width: 900px) { .two-col { grid-template-columns: 1fr; gap: 3rem; } }

/* ── PHOTO PLACEHOLDER ── */
.photo-placeholder {
    aspect-ratio: 3/4;
    background: var(--bg3);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* ── FEATURES LIST ── */
.feature-list {
    list-style: none;
    margin-top: 2rem;
}

.feature-list li {
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--border);
    color: var(--muted);
    font-size: 0.95rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.feature-list li::before {
    content: '—';
    color: var(--gold);
    flex-shrink: 0;
}

/* ── MOTTO STRIP ── */
.motto-strip {
    background: var(--bg2);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 4rem 3rem;
}

.motto-strip .inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    text-align: center;
}

@media (max-width: 768px) { .motto-strip .inner { grid-template-columns: 1fr; gap: 2rem; } }

.motto-item .number {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--gold);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 1rem;
}

.motto-item h3 {
    font-size: 1rem;
    color: var(--text);
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.05em;
}

.motto-item p { font-size: 0.9rem; color: var(--muted); }

/* ── OFFER CARDS ── */
.offer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 4rem;
}

@media (max-width: 900px) { .offer-grid { grid-template-columns: 1fr; } }

.offer-card {
    border: 1px solid var(--border);
    padding: 2.5rem 2rem;
    position: relative;
    transition: border-color 0.3s;
    display: flex;
    flex-direction: column;
}

.offer-card:hover { border-color: var(--gold); }
.offer-card.featured { border-color: var(--gold); }

.offer-badge {
    position: absolute;
    top: -1px;
    right: 1.5rem;
    background: var(--gold);
    color: var(--bg);
    font-size: 0.65rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 0.35rem 1rem;
    font-weight: 600;
}

.offer-name {
    font-size: 0.75rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.offer-card h3 {
    font-size: 1.6rem;
    color: var(--text);
    margin-bottom: 0.25rem;
}

.offer-price {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: var(--gold);
    font-weight: 700;
    margin: 1rem 0 2rem;
    line-height: 1;
}

.offer-price .currency { font-size: 1.2rem; }
.offer-price .unit { font-size: 0.9rem; color: var(--muted); font-family: 'Inter', sans-serif; font-weight: 400; }

.offer-features {
    list-style: none;
    flex: 1;
    margin-bottom: 2.5rem;
}

.offer-features li {
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--border);
    color: var(--muted);
    font-size: 0.9rem;
    display: flex;
    gap: 0.75rem;
}

.offer-features li::before { content: '—'; color: var(--gold); flex-shrink: 0; }

/* ── DETAILS SECTION ── */
.details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    margin-top: 3rem;
}

@media (max-width: 768px) { .details-grid { grid-template-columns: 1fr; gap: 3rem; } }

.details-block h3 {
    font-size: 1.1rem;
    color: var(--text);
    margin-bottom: 1rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    letter-spacing: 0.05em;
}

/* ── FAQ ── */
.faq-list { margin-top: 3rem; }

.faq-item {
    border-bottom: 1px solid var(--border);
    padding: 2rem 0;
}

.faq-q {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.75rem;
    font-family: 'Inter', sans-serif;
}

.faq-a { color: var(--muted); font-size: 0.95rem; }

/* ── PORTFOLIO GRID ── */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-top: 3rem;
}

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

.portfolio-item {
    aspect-ratio: 3/4;
    background: var(--bg3);
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    display: block;
}

.portfolio-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gold);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.portfolio-item:hover::after { opacity: 0.08; }
.portfolio-item:hover img { transform: scale(1.04); }

.portfolio-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--border);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-align: center;
    padding: 2rem;
}

/* ── CONTACT ── */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 6rem;
    margin-top: 4rem;
    align-items: start;
}

@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; gap: 4rem; } }

.contact-detail {
    margin-bottom: 2.5rem;
}

.contact-label {
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.4rem;
    display: block;
}

.contact-value {
    color: var(--muted);
    font-size: 1rem;
}

.contact-value a {
    color: var(--muted);
    text-decoration: none;
}

.contact-value a:hover { color: var(--gold); }

/* Form */
.form-group { margin-bottom: 1.5rem; }

label {
    display: block;
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 0.5rem;
}

input, textarea, select {
    width: 100%;
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: 0;
    color: var(--text);
    padding: 0.9rem 1.1rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.3s;
    appearance: none;
}

input:focus, textarea:focus, select:focus { border-color: var(--gold); }

textarea { height: 130px; resize: vertical; }

select option { background: var(--bg2); }

/* ── QUOTE ── */
.quote-block {
    border-left: 2px solid var(--gold);
    padding: 1.2rem 2rem;
    margin: 2.5rem 0;
}

.quote-block p {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.2rem;
    color: var(--text) !important;
    line-height: 1.6;
}

/* ── CTA SECTION ── */
.cta-section {
    padding: 8rem 2rem;
    text-align: center;
    background:
        linear-gradient(rgba(15,14,13,0.7), rgba(15,14,13,0.7)),
        radial-gradient(ellipse at 50% 50%, #2d1f10 0%, #0f0e0d 70%);
    border-top: 1px solid var(--border);
}

.cta-section h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    color: var(--text);
    margin-bottom: 1rem;
}

.cta-section p {
    color: var(--muted);
    max-width: 480px;
    margin: 0 auto 2.5rem;
}

/* ── FOOTER ── */
footer {
    background: var(--bg2);
    border-top: 1px solid var(--border);
    padding: 3.5rem 2rem;
    text-align: center;
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--gold);
    display: block;
    margin-bottom: 1.5rem;
    text-decoration: none;
    font-style: italic;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 2rem;
    list-style: none;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.footer-nav a {
    color: var(--muted);
    text-decoration: none;
    font-size: 0.75rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.footer-nav a:hover { color: var(--gold); }

.footer-copy {
    color: var(--border);
    font-size: 0.78rem;
    letter-spacing: 0.05em;
}

/* ── RESPONSIVE PADDINGS ── */
@media (max-width: 768px) {
    .section { padding: 4rem 1.5rem; }
    .section-full { padding: 4rem 1.5rem; }
    .cta-section { padding: 5rem 1.5rem; }
    .motto-strip { padding: 3rem 1.5rem; }
    .page-header { padding: 9rem 1.5rem 4rem; }
}

/* ── STUDIOS ── */
.studio-item {
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.9rem;
    color: var(--muted);
}

.studio-item:first-child { padding-top: 0; }
.studio-item strong { color: var(--text); }

/* ── HOME ABOUT PREVIEW ── */
.about-preview {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 5rem;
    align-items: center;
}

@media (max-width: 900px) { .about-preview { grid-template-columns: 1fr; gap: 3rem; } }

/* ── PORTFOLIO PREVIEW ── */
.portfolio-preview {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
}

@media (max-width: 768px) { .portfolio-preview { grid-template-columns: 1fr; } }

.portfolio-preview .portfolio-item { aspect-ratio: 2/3; }

/* ── SCROLL LINE ── */
.scroll-hint {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--muted);
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--gold), transparent);
}
