:root {
    --bg: #f6f3ed;
    --paper: #fffdf9;
    --ink: #1d1b18;
    --muted: #6f675d;
    --dark: #111315;
    --dark2: #1b1e20;
    --gold: #c99645;
    --gold2: #e0b76d;
    --line: #dfd7cb;
    --shadow: 0 18px 55px rgba(24,20,15,.12);
    --radius: 18px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, Arial, sans-serif;
    background: var(--bg);
    color: var(--ink);
    line-height: 1.6;
}

a {
    color: inherit;
}

.container {
    width: min(1180px, calc(100% - 36px));
    margin: auto;
}

/* =====================================================
   HEADER
===================================================== */

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255,253,249,.94);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(0,0,0,.06);
}

.nav-wrap {
    min-height: 82px;
    display: flex;
    align-items: center;
    gap: 28px;
}

.brand {
    display: flex;
    align-items: center;
    margin-right: auto;
}

.brand img {
    height: 58px;
    width: auto;
    max-width: 210px;
    object-fit: contain;
}

.desktop-nav {
    display: flex;
    gap: 22px;
}

.desktop-nav a {
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    color: #3f3a34;
}

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

/* =====================================================
   BUTTONS
===================================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 800;
    border: 1px solid transparent;
    transition: .2s;
    cursor: pointer;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-gold {
    background: linear-gradient(135deg,var(--gold),var(--gold2));
    color: #18130d;
    padding: 12px 18px;
}

.btn-outline-light {
    border-color: rgba(255,255,255,.5);
    color: white;
    padding: 12px 18px;
}

.btn-big {
    padding: 15px 22px;
}

.full {
    width: 100%;
}

/* =====================================================
   HERO
===================================================== */

.hero {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 78% 30%,
            #5a432d 0,
            #1b1a19 35%,
            #0d0f11 75%
        );
    color: white;
    padding: 72px 0 68px;
}

.hero:before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(8,9,10,.96) 0%,
            rgba(8,9,10,.74) 48%,
            rgba(8,9,10,.15) 100%
        );
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 48px;
    align-items: center;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: .13em;
    font-size: 12px;
    color: var(--gold2);
    font-weight: 900;
}

.eyebrow.dark {
    color: #946b2c;
}

.hero h1 {
    font-family: Georgia, serif;
    font-size: clamp(42px,5.4vw,74px);
    line-height: 1.03;
    margin: 16px 0 20px;
    font-weight: 500;
}

.hero-lead {
    font-family: Georgia, serif;
    font-size: 21px;
    color: #eee5d8;
    max-width: 720px;
}

.hero-points {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 20px;
    margin: 26px 0;
    color: #f0e8dc;
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.microcopy {
    font-size: 13px;
    color: #bdb6ad;
}

/* =====================================================
   HERO IMAGE - CAŁA GRAFIKA BEZ PRZYCINANIA
===================================================== */

.hero-image-wrap {
    width: 100%;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 28px 80px rgba(0,0,0,.38);
    border: 1px solid rgba(255,255,255,.18);
    background: #111315;
}

.hero-image-wrap img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* =====================================================
   TRUST STRIP
===================================================== */

.trust-strip {
    background: #fff;
    border-bottom: 1px solid var(--line);
}

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

.trust-grid > div {
    padding: 22px 20px;
    display: flex;
    flex-direction: column;
    border-right: 1px solid var(--line);
}

.trust-grid > div:last-child {
    border-right: 0;
}

.trust-grid strong {
    font-size: 15px;
}

.trust-grid span {
    font-size: 13px;
    color: var(--muted);
}

/* =====================================================
   SECTIONS
===================================================== */

.section {
    padding: 82px 0;
}

.section-soft {
    background: #efe9df;
}

.section-dark {
    background: linear-gradient(145deg,var(--dark),var(--dark2));
    color: white;
}

.section-heading {
    max-width: 820px;
    margin: 0 auto 38px;
    text-align: center;
}

.section-heading h2 {
    font-family: Georgia, serif;
    font-size: clamp(34px,4vw,52px);
    line-height: 1.08;
    margin: 10px 0 14px;
    font-weight: 500;
}

.section-heading p {
    color: var(--muted);
    font-size: 18px;
}

.section-heading.light p {
    color: #c8c2b9;
}

/* =====================================================
   SERVICES
===================================================== */

.service-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 18px;
}

.service-card {
    background: var(--paper);
    border: 1px solid var(--line);
    padding: 28px;
    border-radius: var(--radius);
    box-shadow: 0 7px 28px rgba(30,25,19,.05);
}

.service-card .icon {
    font-size: 30px;
}

.service-card h3 {
    font-family: Georgia, serif;
    font-size: 24px;
    margin: 12px 0 8px;
}

.service-card p {
    color: var(--muted);
    margin: 0;
}

/* =====================================================
   PRICE TABLES
===================================================== */

.price-table-wrap,
.cycle-table-wrap {
    overflow: auto;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.price-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 800px;
}

.price-table th,
.price-table td {
    padding: 20px 18px;
    border-bottom: 1px solid var(--line);
    text-align: left;
    vertical-align: top;
}

.price-table th {
    background: #2a2926;
    color: white;
    font-size: 14px;
}

.price-table td:not(:first-child) {
    text-align: center;
    font-size: 19px;
}

.price-table small {
    display: block;
    color: var(--muted);
    margin-top: 5px;
    max-width: 540px;
}

.price-note {
    font-size: 13px;
    color: var(--muted);
    margin-top: 14px;
}

/* =====================================================
   PACKAGES
===================================================== */

.package-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
}

.package-card {
    background: #191b1d;
    border: 1px solid #343638;
    border-radius: 20px;
    padding: 30px;
    color: #f6f2ec;
    position: relative;
}

.featured-package {
    border-color: var(--gold);
    box-shadow:
        0 0 0 1px rgba(201,150,69,.25),
        0 22px 60px rgba(0,0,0,.28);
}

.package-tag {
    display: inline-block;
    background: rgba(201,150,69,.14);
    color: var(--gold2);
    border: 1px solid rgba(201,150,69,.32);
    padding: 5px 10px;
    border-radius: 999px;
    font-weight: 800;
    font-size: 12px;
}

.package-card h3 {
    font-family: Georgia, serif;
    font-size: 30px;
    margin: 15px 0 6px;
}

.package-price {
    color: #cfc8bd;
}

.package-price strong {
    display: block;
    color: var(--gold2);
    font-family: Georgia, serif;
    font-size: 39px;
}

.package-card ul {
    padding-left: 20px;
    color: #d7d0c7;
    min-height: 180px;
}

.package-card li {
    margin: 7px 0;
}

.cycle-table-wrap {
    margin-top: 28px;
    background: #141617;
    border-color: #303235;
    padding: 24px;
}

.cycle-table-wrap h3 {
    font-family: Georgia, serif;
    font-size: 26px;
    margin: 0 0 18px;
}

.dark-table th {
    background: #0d0e0f;
}

.dark-table td {
    background: #181a1c;
    color: #e7e0d7;
    border-color: #303235;
}

/* =====================================================
   EXTRAS
===================================================== */

.extras-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 14px;
}

.extra {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: center;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 19px 20px;
}

.extra strong {
    color: #946b2c;
    white-space: nowrap;
}

/* =====================================================
   HOW IT WORKS
===================================================== */

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

.step {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 26px;
}

.step > span {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--gold);
    color: #19130c;
    font-weight: 900;
}

.step h3 {
    font-family: Georgia, serif;
    font-size: 23px;
}

.step p {
    color: var(--muted);
}

/* =====================================================
   ORDER SECTION
===================================================== */

.order-section {
    background:
        radial-gradient(
            circle at 10% 15%,
            #443222 0,
            #17191a 38%,
            #0e0f10 100%
        );
    color: white;
}

.order-grid {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 44px;
    align-items: start;
}

.order-copy h2 {
    font-family: Georgia, serif;
    font-size: 46px;
    line-height: 1.08;
}

.order-copy p {
    color: #d1cac1;
}

.direct-contact {
    display: grid;
    gap: 10px;
    margin-top: 28px;
}

.direct-contact a {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 12px;
    padding: 15px;
}

.direct-contact span {
    font-size: 12px;
    color: #b9b2a9;
}

/* =====================================================
   FORM
===================================================== */

.order-form {
    background: #fff;
    color: #222;
    border-radius: 20px;
    padding: 30px;
    box-shadow: var(--shadow);
}

.order-form label {
    display: block;
    font-weight: 800;
    font-size: 13px;
    margin-bottom: 14px;
}

.order-form input,
.order-form select,
.order-form textarea {
    width: 100%;
    margin-top: 6px;
    border: 1px solid #d9d2c8;
    border-radius: 10px;
    padding: 12px 13px;
    font: inherit;
    background: #fff;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.order-form small {
    display: block;
    color: #777;
    margin-top: 10px;
}

/* =====================================================
   FINAL CTA
===================================================== */

.final-cta {
    background: #0b0c0d;
    color: white;
    padding: 48px 0;
    border-top: 1px solid #26282a;
}

.final-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.final-wrap h2 {
    font-family: Georgia, serif;
    font-size: 34px;
    margin: 5px 0;
}

.final-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

/* =====================================================
   FOOTER
===================================================== */

.site-footer {
    background: #0a0b0c;
    color: #ddd;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 32px;
    padding: 45px 0;
}

.footer-grid > div {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-grid strong {
    color: white;
}

.footer-grid p {
    color: #8f8d88;
    margin: 0;
}

.footer-grid a {
    text-decoration: none;
    color: #bbb;
}

.footer-grid a:hover {
    color: var(--gold2);
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #232526;
    padding: 18px;
    color: #777;
    font-size: 13px;
}

/* =====================================================
   MOBILE CTA
===================================================== */

.mobile-cta {
    display: none;
}

/* =====================================================
   TABLET
===================================================== */

@media (max-width: 980px) {

    .desktop-nav {
        display: none;
    }

    .hero-grid,
    .order-grid {
        grid-template-columns: 1fr;
    }

    /*
       Nie ustawiamy wysokości grafiki.
       Dzięki temu cały obraz pozostaje widoczny.
    */
    .hero-image-wrap img {
        width: 100%;
        height: auto;
        object-fit: contain;
    }

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

    .service-grid,
    .package-grid,
    .extras-grid {
        grid-template-columns: 1fr 1fr;
    }

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

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

/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 640px) {

    body {
        padding-bottom: 60px;
    }

    .container {
        width: min(100% - 24px,1180px);
    }

    .site-header .btn {
        display: none;
    }

    .brand img {
        height: 48px;
    }

    .hero {
        padding: 48px 0;
    }

    .hero h1 {
        font-size: 42px;
    }

    .hero-lead {
        font-size: 18px;
    }

    .hero-points {
        grid-template-columns: 1fr;
    }

    /*
       Również na telefonie pokazujemy
       całą grafikę bez przycinania.
    */
    .hero-image-wrap {
        width: 100%;
        border-radius: 16px;
    }

    .hero-image-wrap img {
        width: 100%;
        height: auto;
        object-fit: contain;
    }

    .trust-grid,
    .service-grid,
    .package-grid,
    .extras-grid,
    .steps,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .trust-grid > div {
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .section {
        padding: 58px 0;
    }

    .section-heading h2 {
        font-size: 36px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .order-copy h2 {
        font-size: 38px;
    }

    .final-wrap {
        flex-direction: column;
        align-items: flex-start;
    }

    .mobile-cta {
        position: fixed;
        z-index: 80;
        bottom: 0;
        left: 0;
        right: 0;
        display: grid;
        grid-template-columns: 1fr 1fr;
        background: #0b0c0d;
        border-top: 1px solid #26282a;
    }

    .mobile-cta a {
        text-align: center;
        padding: 16px 8px;
        color: white;
        text-decoration: none;
        font-weight: 900;
    }

    .mobile-cta a:last-child {
        background: var(--gold);
        color: #17110b;
    }
}