/* Base Reset & Variables */
:root {
    --bg-color: #DCD7C9;
    /* AU LAIT - Soft elegant cream */
    --text-color: #2C3639;
    /* INKWELL - Deep sophisticated charcoal */
    --text-light: #3F4E4F;
    /* LUNAR ECLIPSE - Refined muted slate */
    --accent-color: #A27B5B;
    /* CREME BRULEE - Warm luxurious tan */
    --border-color: rgba(44, 54, 57, 0.15);
    /* Inkwell based border */
    --primary-color: #2C3639;
    /* Inkwell as primary */
    --font-serif: 'Instrument Serif', serif;
    --font-sans: 'Cousine', monospace;
    --spacing-xs: 1rem;
    --spacing-sm: 2rem;
    --spacing-md: 4rem;
    --spacing-lg: 8rem;
    --spacing-xl: 12rem;
    --container-width: 1400px;
    --container-small: 800px;
    --transition-smooth: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.3s ease;
}

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

html,
body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
    max-width: 100%;
}

body {
    font-family: var(--font-sans);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

main {
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-serif);
    font-weight: 400;
    line-height: 1.1;
    color: var(--primary-color);
    font-style: normal;
}

h1 {
    font-size: clamp(4rem, 10vw, 9rem);
    letter-spacing: -0.02em;
    margin-bottom: 2rem;
}

h2 {
    font-size: clamp(3rem, 6vw, 6rem);
    letter-spacing: -0.01em;
    margin-bottom: 2rem;
}

h3 {
    font-size: clamp(1.8rem, 3vw, 3rem);
    letter-spacing: -0.01em;
    margin-bottom: 1.5rem;
    font-family: var(--font-serif);
}

p {
    font-size: 1rem;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    font-weight: 400;
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

.center {
    text-align: center;
}

.section-description {
    font-family: var(--font-sans);
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-color);
    max-width: 700px;
    /* Golden standard for readability */
    margin: 0 auto 6rem;
    opacity: 0.85;
}

.text-accent {
    color: var(--accent-color);
}

.section-description.center {
    text-align: center;
}

/* Layout Utilities */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 4vw;
}

.container-grid {
    max-width: 80vw;
    margin: 0 auto;
    padding: 0 4vw;
}

section {
    padding: var(--spacing-xl) 0;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1.25rem 2.5rem;
    font-family: var(--font-sans);
    font-size: 0.8rem;
    text-transform: none;
    letter-spacing: 0.05em;
    cursor: pointer;
    border: 1px solid var(--primary-color);
    transition: var(--transition-fast);
    text-align: center;
    background-color: transparent;
    color: var(--primary-color);
    border-radius: 0;
    /* Sharp corners like screenshot */
}

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

.btn-primary:hover {
    background-color: transparent;
    color: var(--primary-color);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
}

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

.btn-magnet {
    display: inline-block;
    padding: 1.25rem 3rem;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    text-transform: none;
    letter-spacing: 0.05em;
    cursor: pointer;
    border: 1px solid var(--primary-color);
    transition: var(--transition-fast);
    text-align: center;
    background-color: var(--primary-color);
    color: var(--bg-color);
    border-radius: 12px;
    /* Zaokrąglone rogi jak magnes */
}

.btn-magnet:hover {
    background-color: transparent;
    color: var(--primary-color);
}

.full-width {
    width: 100%;
}

/* Helper classes */
body.menu-open {
    overflow: hidden;
}

.menu-toggle {
    display: none;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 3vw;
    position: fixed;
    top: 2rem;
    left: 50%;
    transform: translateX(-50%);
    width: 94%;
    max-width: 1600px;
    z-index: 1000;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);

    /* Initial state: transparent and white text */
    background: transparent;
    color: #FFFFFF;
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
    border: 1px solid transparent;
    border-radius: 20px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 3rem;
}

/* Neutralize card on desktop */
.nav-menu-card {
    display: contents;
}

.nav-socials {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    order: 10;
    /* PC: social icons on the right */
}

.navbar .btn {
    background-color: transparent;
    color: #FFFFFF;
    border: 1.5px solid #FFFFFF;
    border-radius: 50px;
    padding: 0.85rem 2rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.navbar .btn:hover {
    background: #FFFFFF;
    color: #000000;
    border-color: #FFFFFF;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.navbar.scrolled {
    top: 1.5rem;
    padding: 1rem 3vw;
    /* CTA-style glassmorphic background */
    background: rgba(44, 54, 57, 0.35);
    color: #FAF8F4;
    backdrop-filter: blur(18px) saturate(1.4);
    -webkit-backdrop-filter: blur(18px) saturate(1.4);
    border: 1px solid rgba(250, 247, 240, 0.25);
    border-radius: 50px;
    /* CTA-style double ring: transparent gap + outer glow */
    box-shadow:
        0 0 0 4px transparent,
        0 0 0 5px rgba(250, 247, 240, 0.12),
        0 8px 32px rgba(0, 0, 0, 0.18);
}

.menu-toggle,
.nav-socials a,
.nav-socials svg {
    color: #FFFFFF !important;
    stroke: #FFFFFF !important;
}

.navbar.scrolled .menu-toggle,
.navbar.scrolled .nav-socials a,
.navbar.scrolled .nav-socials svg {
    color: #FAF8F4 !important;
    stroke: #FAF8F4 !important;
}

.navbar.scrolled .btn {
    background: rgba(250, 247, 240, 0.12);
    color: #FAF8F4;
    border: 1px solid rgba(250, 247, 240, 0.4);
    box-shadow: 0 0 0 3px transparent, 0 0 0 4px rgba(250, 247, 240, 0.15);
}

.navbar.scrolled .btn:hover {
    background: rgba(162, 123, 91, 0.85);
    color: #fff;
    border-color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 0 0 3px transparent, 0 0 0 4px rgba(162, 123, 91, 0.35), 0 12px 30px rgba(162, 123, 91, 0.2);
}

.navbar.scrolled .logo {
    height: 45px;
}

.logo {
    height: 45px;
    /* Standardize height for consistency */
    position: relative;
    display: flex;
    align-items: center;
    transition: var(--transition-smooth);
    width: 180px;
    /* Give it a base width to prevent collapse */
}

.logo img {
    height: 100%;
    width: auto;
    display: block;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.15));
    transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.logo .logo-dark {
    opacity: 0;
    pointer-events: none;
}

/* Scrolled navbar is dark glass — keep light logo visible */
.navbar.scrolled .logo .logo-light {
    opacity: 1;
    pointer-events: auto;
}

.navbar.scrolled .logo .logo-dark {
    opacity: 0;
    pointer-events: none;
}

.nav-links a {
    font-size: 0.85rem;
    letter-spacing: 0.02em;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Efekt najechania na cały pasek - rozmycie i cofnięcie wszystkich linków */
.nav-links:hover a {
    opacity: 0.4;
    filter: blur(2px);
    transform: scale(0.98);
}

/* Efekt na konkretnym linku pod kursorem - wyostrzenie i krok do przodu */
.nav-links a:hover {
    opacity: 1;
    filter: blur(0);
    transform: scale(1.1);
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.nav-links .btn {
    padding: 0.75rem 1.5rem;
}

/* ================================================
   PROMO TOP BAR
   ================================================ */
.promo-top-bar {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--accent-color);
    color: #FAF8F4;
    text-align: center;
    padding: 0.5rem 2vw;
    font-size: 0.8rem;
    font-family: var(--font-sans);
    letter-spacing: 0.03em;
    text-decoration: none;
    z-index: 2001;
    transition: var(--transition-fast);
}

.promo-top-bar:hover {
    background-color: var(--primary-color);
    color: #FAF8F4;
}

.promo-top-bar strong {
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
    margin-left: 0.3rem;
}

@media (max-width: 768px) {
    .promo-top-bar {
        font-size: 0.7rem;
        padding: 0.6rem 4vw;
        line-height: 1.4;
    }
}

/* ================================================
   HERO — Editorial / Magazine Layout
   ================================================ */
.hero {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: stretch;
}

.hero-bg {
    position: absolute;
    top: -10%;
    left: 0;
    width: 100%;
    height: 120%;
    z-index: 1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Subtle vignette — keep the photo visible */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(180deg, rgba(31,30,29,0.3) 0%, transparent 35%),
        linear-gradient(0deg, rgba(31,30,29,0.65) 0%, transparent 45%),
        linear-gradient(90deg, rgba(31,30,29,0.55) 0%, transparent 50%);
}

/* Canvas grid — positions all hero elements */
.hero-canvas {
    position: relative;
    z-index: 2;
    width: 100%;
    min-height: 100vh;
    padding: 0 4.5vw;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr auto auto;
    gap: 0;
    align-items: end;
}

/* ---- Left block: Label + H1 ---- */
.hero-left {
    grid-column: 1;
    grid-row: 2;
    padding-bottom: 2.5rem;
}

.hero-label {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 0.62rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(250, 247, 240, 0.6);
    margin-bottom: 1.8rem;
    font-weight: 400;
}

.hero-left h1 {
    font-style: italic;
    color: #FAF8F4;
    font-size: clamp(2.8rem, 4.5vw, 5rem);
    line-height: 1.08;
    letter-spacing: -0.02em;
    margin: 0;
}

/* ---- Right block: Description + CTA ---- */
.hero-right {
    grid-column: 2;
    grid-row: 2;
    padding-bottom: 3rem;
    padding-left: 4vw;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-end;
    text-align: right;
}

.hero-right p {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    line-height: 1.8;
    color: rgba(250, 247, 240, 0.8);
    margin: 0 0 2.5rem;
    max-width: 420px;
}

/* CTA — Semi-transparent pill with double border */
.btn-hero-cta {
    display: inline-block;
    padding: 1.15rem 2.8rem;
    font-family: var(--font-sans);
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: #FAF8F4;
    background: rgba(250, 247, 240, 0.1);
    border: 1px solid rgba(250, 247, 240, 0.5);
    border-radius: 50px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    /* Outer ring: transparent gap (4px) + white outline (1px) */
    box-shadow: 0 0 0 4px transparent, 0 0 0 5px rgba(250, 247, 240, 0.3);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.btn-hero-cta::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s ease;
}

.btn-hero-cta:hover {
    background: rgba(162, 123, 91, 0.85);
    color: #fff;
    border-color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 0 0 4px transparent, 0 0 0 5px rgba(162, 123, 91, 0.4), 0 14px 40px rgba(162, 123, 91, 0.25);
}

.btn-hero-cta:hover::after {
    left: 130%;
}

/* ---- Bottom index row ---- */
.hero-index {
    grid-column: 1 / -1;
    grid-row: 3;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid rgba(250, 247, 240, 0.12);
    padding: 2rem 0 3rem;
}

.hero-index-item {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    padding: 0 1rem;
    border-left: 1px solid rgba(250, 247, 240, 0.1);
}

.hero-index-item:first-child {
    border-left: none;
    padding-left: 0;
}

.hero-index-num {
    font-family: var(--font-sans);
    font-size: 0.78rem;
    color: var(--accent-color);
    font-weight: 700;
    letter-spacing: 0.05em;
}

.hero-index-text {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    color: rgba(250, 247, 240, 0.8);
    letter-spacing: 0.01em;
}

/* ---- Scroll indicator — right side with line ---- */
.hero-scroll-indicator {
    position: absolute;
    right: 4.5vw;
    bottom: 3rem;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(250, 247, 240, 0.35);
    animation: heroScrollBounce 2.5s ease-in-out infinite;
}

.hero-scroll-line {
    display: block;
    width: 1px;
    height: 40px;
    background: rgba(250, 247, 240, 0.2);
}

@keyframes heroScrollBounce {
    0%, 100% { transform: translateY(0); opacity: 0.35; }
    50% { transform: translateY(6px); opacity: 0.8; }
}

/* ---- Tablet ---- */
@media (max-width: 1024px) {
    .hero-canvas {
        padding: 0 5vw;
    }
    .hero-left h1 {
        font-size: clamp(2.4rem, 5vw, 3.5rem);
    }
    .hero-right {
        padding-left: 2vw;
    }
}

/* ---- Mobile ---- */
@media (max-width: 768px) {
    .hero-canvas {
        grid-template-columns: 1fr;
        grid-template-rows: 1fr auto auto auto;
        padding: 0 7vw;
    }
    .hero-left {
        grid-column: 1;
        grid-row: 2;
        padding-bottom: 2rem;
    }
    .hero-left h1 {
        font-size: 2.6rem;
    }
    .hero-right {
        grid-column: 1;
        grid-row: 3;
        padding-left: 0;
        padding-bottom: 2rem;
    }
    .hero-right p {
        max-width: 100%;
    }
    .hero-index {
        grid-column: 1;
        grid-row: 4;
        grid-template-columns: 1fr;
        gap: 0;
        padding: 1.5rem 0 2.5rem;
    }
    .hero-index-item {
        padding: 0.6rem 0;
        border-left: none;
        border-bottom: 1px solid rgba(250, 247, 240, 0.08);
    }
    .hero-index-item:last-child {
        border-bottom: none;
    }
    .hero-overlay {
        background:
            linear-gradient(180deg, rgba(31,30,29,0.2) 0%, transparent 25%),
            linear-gradient(0deg, rgba(31,30,29,0.9) 0%, rgba(31,30,29,0.5) 50%, transparent 80%);
    }
    .hero-scroll-indicator {
        right: 7vw;
        bottom: 2rem;
    }
    .hero-scroll-line {
        height: 25px;
    }
}

/* Promo Teacher Section Styles */
.promo-teacher-section {
    background-color: var(--bg-color);
    padding: 6rem 0;
    border-bottom: 1px solid rgba(44, 54, 57, 0.1);
}

.promo-teacher-grid {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.promo-teacher-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.25), 0 15px 40px rgba(0, 0, 0, 0.15);
}

.promo-teacher-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    border-radius: 12px;
    transform: scale(1);
    transition: transform 1.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.promo-teacher-grid:hover .promo-teacher-image img {
    transform: scale(1.06);
}

.promo-teacher-content {
    flex: 1;
}

.promo-teacher-content h2 {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3.5rem);
    color: var(--primary-color);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.promo-teacher-content p {
    font-family: var(--font-sans);
    font-size: 1.1rem;
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .promo-teacher-grid {
        flex-direction: column;
        gap: 2.5rem;
    }
}

/* Craft Section (Exact match to screenshot) */
.craft-section {
    background-color: var(--bg-color);
}

.craft-container {
    display: flex;
    gap: 6vw;
    align-items: stretch;
    margin-top: 4rem;
}

.craft-image-col {
    flex: 1.3;
    /* Zwiększenie szerokości o ok. 30% w stosunku do tekstu (flex: 1.3 vs flex: 1) */
    display: flex;
    overflow: hidden;
    /* Niezbędne do efektu przybliżania wewnątrz ramki */
    border-radius: 12px;
}

.craft-image-col img {
    width: 100%;
    height: 100%;
    /* Match height of content column */
    object-fit: cover;
    object-position: center;
    border-radius: 12px;
    filter: grayscale(100%) brightness(0.85);
    /* Taki sam efekt B&W jak w sekcji Hero */
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1), filter 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.craft-image-col:hover img {
    transform: scale(1.08);
    /* Delikatny zoom in */
    filter: grayscale(0%) brightness(1);
    /* Powrót do kolorów */
}

.craft-content-col {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.craft-intro {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 2.5vw, 2.2rem);
    color: var(--primary-color);
    line-height: 1.2;
    margin: 0 auto 6rem;
    font-weight: 400;
    max-width: 70%;
    text-align: center;
}

.craft-method-header {
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
}

.craft-method-header h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    margin: 0;
    font-weight: 400;
}

.craft-list {
    display: flex;
    flex-direction: column;
}

.craft-list-item {
    display: flex;
    gap: 2rem;
    padding: 2.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
    transition: padding-left 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.craft-list-item:hover {
    padding-left: 0.8rem;
}

.craft-list-item:last-child {
    border-bottom: none;
}

.craft-num {
    font-size: 0.8rem;
    font-family: var(--font-sans);
    color: var(--text-color);
    min-width: 2rem;
    transition: color 0.3s ease;
}

.craft-list-item:hover .craft-num {
    color: var(--accent-color);
}

.craft-desc h4 {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    font-weight: 400;
    color: var(--primary-color);
}

.craft-desc p {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    margin: 0;
    color: var(--text-light);
    line-height: 1.5;
}

/* Process Section */
.process-section {
    border-top: 1px solid rgba(220, 215, 201, 0.1);
    border-bottom: 1px solid rgba(220, 215, 201, 0.1);
    padding: 10rem 0;
    background-color: var(--primary-color);
    color: var(--bg-color);
    position: relative;
}

.process-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(216, 179, 118, 0.3), transparent);
}

.process-section .section-title,
.process-section .section-description {
    color: var(--bg-color);
}

.process-steps {
    display: flex;
    justify-content: space-between;
    margin-top: 5rem;
    gap: 2rem;
}

.step {
    flex: 1;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 3rem 2.5rem;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 12px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.35s ease, box-shadow 0.35s ease;
    position: relative;
}

.step:hover {
    transform: translateY(-5px);
    border-color: rgba(216, 179, 118, 0.4);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 20px 45px rgba(0, 0, 0, 0.25);
}

.step-num {
    display: inline-block;
    font-family: var(--font-serif);
    font-size: 3rem;
    color: #D8B376;
    margin-bottom: 1.5rem;
    line-height: 1;
    position: relative;
}

.step-num::after {
    content: '';
    display: block;
    width: 32px;
    height: 1px;
    background: #D8B376;
    margin-top: 0.85rem;
    opacity: 0.6;
}

.step h3 {
    font-family: var(--font-serif);
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--bg-color);
    letter-spacing: -0.01em;
}

.step p {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(220, 215, 201, 0.8);
}

/* Pricing Section (Card Style matching luxury editorial standards) */
.pricing-section {
    padding: 8rem 0;
    position: relative;
    background-color: var(--bg-color);
}

.pricing-section .container {
    max-width: 96vw;
    padding: 0 2vw;
}

.pricing-cards-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3.5rem;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.45);
    border: 1px solid rgba(44, 54, 57, 0.12);
    border-radius: 18px;
    padding: 3rem 2.25rem;
    display: flex;
    flex-direction: column;
    min-height: 500px;
    position: relative;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8), 0 10px 25px -5px rgba(44, 54, 57, 0.05);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease, border-color 0.35s ease;
}

.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.95), 0 22px 45px -8px rgba(44, 54, 57, 0.12);
    border-color: rgba(44, 54, 57, 0.25);
}

.pricing-card.bestseller {
    border: 1.5px solid #C9A96E;
    background: linear-gradient(180deg, rgba(201, 169, 110, 0.1) 0%, rgba(201, 169, 110, 0.02) 100%), rgba(255, 255, 255, 0.55);
    transform: translateY(-6px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 25px 50px -10px rgba(201, 169, 110, 0.22);
}

.pricing-card.bestseller:hover {
    transform: translateY(-10px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 1), 0 30px 60px -10px rgba(201, 169, 110, 0.3);
}

.bestseller-badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #D8B376 0%, #A27B5B 100%);
    color: #FFFFFF;
    padding: 5px 18px;
    border-radius: 20px;
    font-family: var(--font-sans);
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 700;
    box-shadow: 0 4px 14px rgba(162, 123, 91, 0.4);
    animation: bestsellerPulse 2.5s ease-in-out infinite;
}

@keyframes bestsellerPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(162, 123, 91, 0.45); }
    50% { box-shadow: 0 0 0 7px rgba(162, 123, 91, 0); }
}

.free-shipping-badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #4F7053 0%, #39523C 100%);
    color: #FFFFFF;
    padding: 5px 18px;
    border-radius: 20px;
    font-family: var(--font-sans);
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 700;
    white-space: nowrap;
    box-shadow: 0 4px 14px rgba(57, 82, 60, 0.35);
}

.pricing-card-header {
    margin-bottom: 1.75rem;
}

.pricing-card h3 {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    font-weight: 400;
    margin-bottom: 0.35rem;
    color: var(--primary-color);
    letter-spacing: -0.01em;
}

.pricing-card .price {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--accent-color);
    letter-spacing: 0.05em;
}

.pricing-card-body {
    flex-grow: 1;
    margin-bottom: 2rem;
}

.pricing-card-body p {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    color: var(--text-color);
    line-height: 1.45;
    margin-bottom: 1.75rem;
    opacity: 0.95;
}

.pricing-card-body ul {
    list-style: none;
    padding-left: 0;
}

.pricing-card-body ul li {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    color: var(--text-color);
    line-height: 1.5;
    margin-bottom: 0.75rem;
    position: relative;
    padding-left: 1.25rem;
}

.pricing-card-body ul li::before {
    content: "✦";
    position: absolute;
    left: 0;
    top: 0;
    font-size: 0.65rem;
    color: var(--text-light);
}

.pricing-card.bestseller .pricing-card-body ul li::before {
    color: #C9A96E;
}

.pricing-card-actions {
    display: flex;
    gap: 0.5rem;
    align-items: stretch;
    margin-top: auto;
}

.qty-selector {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid rgba(44, 54, 57, 0.2);
    border-radius: 50px;
    padding: 0 1rem;
    width: 100px;
    font-family: var(--font-sans);
    font-size: 0.85rem;
}

.qty-selector span {
    cursor: pointer;
    user-select: none;
    font-size: 1rem;
}

.qty-selector .val {
    cursor: default;
}

.btn-pill {
    background-color: var(--primary-color);
    color: var(--bg-color);
    border: 1.5px solid var(--primary-color);
    border-radius: 50px;
    padding: 0.95rem 1.75rem;
    font-family: var(--font-sans);
    font-size: 0.82rem;
    text-align: center;
    cursor: pointer;
    flex-grow: 1;
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.25s ease;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(44, 54, 57, 0.12);
    display: inline-block;
}

.btn-pill:hover {
    transform: translateY(-3px);
    background-color: transparent;
    color: var(--primary-color);
    border: 1.5px solid var(--primary-color);
    box-shadow: 0 14px 28px rgba(44, 54, 57, 0.18);
}

.btn-pill:active,
.btn:active,
.btn-hero-cta:active {
    transform: scale(0.96) !important;
}

.pricing-card.bestseller .btn-pill {
    background: linear-gradient(135deg, #D8B376 0%, #A27B5B 100%);
    border-color: #D8B376;
    color: #FFFFFF;
    box-shadow: 0 8px 22px rgba(162, 123, 91, 0.3);
}

.pricing-card.bestseller .btn-pill:hover {
    background: transparent;
    color: #A27B5B;
    border-color: #A27B5B;
    box-shadow: 0 14px 30px rgba(162, 123, 91, 0.35);
}

.pricing-note {
    text-align: center;
    font-family: var(--font-serif);
    font-size: 1.15rem;
    margin-top: 4.5rem;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    color: var(--text-light);
    line-height: 1.5;
    opacity: 0.9;
}

/* Why Us Section (Personal Guardian / Watermark Cards) */
.why-section {
    padding: 8rem 0;
    background-color: #F7F5F0;
    position: relative;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.why-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 5rem;
}

.why-eyebrow {
    font-family: var(--font-sans);
    font-size: 0.78rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent-color);
    font-weight: 700;
    display: inline-block;
    margin-bottom: 1rem;
}

.why-header h2 {
    margin-bottom: 2rem;
}

.why-header .section-description {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 0;
}

.why-quote {
    display: block;
    font-family: var(--font-serif);
    font-size: 1.45rem;
    font-style: italic;
    color: var(--accent-color);
    margin-top: 1.5rem;
    letter-spacing: -0.01em;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.why-card {
    position: relative;
    background: transparent;
    padding: 3rem 2.25rem;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

/* Delicate Vanishing Corners for Why Cards */
.why-card .corner-tl,
.why-card .corner-tr,
.why-card .corner-bl,
.why-card .corner-br {
    position: absolute;
    width: 38px;
    height: 38px;
    pointer-events: none;
    border-color: rgba(162, 123, 91, 0.4);
    border-style: solid;
    transition: border-color 0.35s ease, transform 0.35s ease;
}

.why-card .corner-tl {
    top: 0;
    left: 0;
    border-width: 1.5px 0 0 1.5px;
    border-top-left-radius: 16px;
    mask-image: radial-gradient(circle at top left, black 35%, transparent 100%);
    -webkit-mask-image: radial-gradient(circle at top left, black 35%, transparent 100%);
}

.why-card .corner-tr {
    top: 0;
    right: 0;
    border-width: 1.5px 1.5px 0 0;
    border-top-right-radius: 16px;
    mask-image: radial-gradient(circle at top right, black 35%, transparent 100%);
    -webkit-mask-image: radial-gradient(circle at top right, black 35%, transparent 100%);
}

.why-card .corner-bl {
    bottom: 0;
    left: 0;
    border-width: 0 0 1.5px 1.5px;
    border-bottom-left-radius: 16px;
    mask-image: radial-gradient(circle at bottom left, black 35%, transparent 100%);
    -webkit-mask-image: radial-gradient(circle at bottom left, black 35%, transparent 100%);
}

.why-card .corner-br {
    bottom: 0;
    right: 0;
    border-width: 0 1.5px 1.5px 0;
    border-bottom-right-radius: 16px;
    mask-image: radial-gradient(circle at bottom right, black 35%, transparent 100%);
    -webkit-mask-image: radial-gradient(circle at bottom right, black 35%, transparent 100%);
}

.why-card:hover {
    transform: translateY(-5px);
}

.why-card:hover .corner-tl,
.why-card:hover .corner-tr,
.why-card:hover .corner-bl,
.why-card:hover .corner-br {
    border-color: #D8B376;
}

/* Watermark SVG Glyph comfortably inside Card */
.why-watermark {
    position: absolute;
    right: 28px;
    top: 28px;
    width: 68px;
    height: 68px;
    pointer-events: none;
    opacity: 0.12;
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 0;
}

.why-watermark svg {
    width: 100%;
    height: 100%;
    stroke: var(--text-color);
    fill: none;
    stroke-width: 1.2;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: stroke 0.4s ease;
}

.why-card:hover .why-watermark {
    opacity: 0.35;
    transform: translateY(-3px) scale(1.08);
}

.why-card:hover .why-watermark svg {
    stroke: var(--accent-color);
}

.why-card-inner {
    position: relative;
    z-index: 1;
}

.why-step-tag {
    font-family: var(--font-sans);
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent-color);
    font-weight: 700;
    margin-bottom: 1.25rem;
    display: block;
}

.why-card h4 {
    font-family: var(--font-serif);
    font-size: 1.85rem;
    font-weight: 400;
    margin-bottom: 1.15rem;
    color: var(--primary-color);
    letter-spacing: -0.01em;
    line-height: 1.2;
}

.why-card p {
    font-family: var(--font-sans);
    font-size: 0.92rem;
    line-height: 1.65;
    color: var(--text-color);
    opacity: 0.9;
    margin-bottom: 0;
}

@media (max-width: 1024px) {
    .why-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Gallery Section */
.gallery-section {
    padding: 6rem 0;
    /* Zmniejszone, by skompensować padding slidera */
    background-color: var(--primary-color);
    /* INKWELL */
}

.gallery-section .section-title,
.gallery-section .section-description {
    color: var(--bg-color);
    /* AU LAIT */
}

.gallery-container-wide {
    max-width: 100%;
    width: 100%;
    padding: 0;
}

.gallery-header {
    text-align: center;
    max-width: 70%;
    margin: 0 auto 2rem;
    color: var(--bg-color);
}

.gallery-header .section-title {
    color: var(--bg-color);
}

.gallery-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 1.5rem;
    z-index: 10;
    pointer-events: none;
}

.gallery-controls button {
    pointer-events: auto;
    background: rgba(220, 215, 201, 0.1);
    border: 1px solid rgba(220, 215, 201, 0.2);
    color: var(--bg-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.gallery-controls button:hover {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.1);
}

.gallery-slider {
    position: relative;
    width: 100vw;
    left: 50%;
    margin-left: -50vw;
    overflow: hidden;
    padding: 60px 0 100px;
    mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
}

.gallery-track {
    display: flex;
    gap: 2rem;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    margin-left: 0;
    padding: 0 4vw;
    cursor: grab;
    user-select: none;
    will-change: transform;
}

.gallery-track:active {
    cursor: grabbing;
}

.gallery-item {
    flex: 0 0 auto;
    width: calc(25% - 1.5rem);
    height: 525px;
    object-fit: cover;
    border-radius: 18px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.45s ease;
    cursor: zoom-in;
    -webkit-user-drag: none;
}

.gallery-item:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 35px 75px rgba(0, 0, 0, 0.25);
}

/* Lightbox styles */
.lightbox {
    position: fixed;
    z-index: 2500;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(20, 20, 20, 0.96);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    display: block;
    visibility: hidden;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.23, 1, 0.32, 1),
        visibility 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.lightbox.active {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}

.lightbox-content {
    position: absolute;
    object-fit: contain;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: 2501;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 25px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: 300;
    cursor: pointer;
    transition: color 0.3s;
    z-index: 2510;
    line-height: 1;
    padding: 10px;
}

.lightbox-close:hover {
    color: #a0a0a0;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 2.5rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 2510;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s, border-color 0.3s;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    line-height: 1;
    padding: 0;
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

@media (max-width: 768px) {
    .lightbox-close {
        top: 12px;
        right: 12px;
        font-size: 32px;
        padding: 8px;
    }

    .lightbox-nav {
        width: 40px;
        height: 40px;
        font-size: 2rem;
    }

    .lightbox-prev {
        left: 8px;
    }

    .lightbox-next {
        right: 8px;
    }
}

/* Testimonial Section */
.testimonial-section {
    padding: 12rem 0;
    border-top: 1px solid rgba(220, 215, 201, 0.05);
    background-color: var(--primary-color);
    /* INKWELL */
    overflow: hidden;
}

.testimonial-section .section-title,
.testimonial-section .section-description {
    color: var(--bg-color);
    /* AU LAIT */
    text-align: center;
}

.testimonial-container-wide {
    max-width: 100%;
    padding: 0;
}

.testimonial-outer-container {
    position: relative;
    max-width: 90%;
    /* Wider container to hold arrows on the sides */
    margin: 6rem auto 0;
}

.testimonial-slider {
    position: relative;
    width: 75%;
    /* Slightly wider for better 3-item layout */
    margin: 0 auto;
    padding: 2rem 0 6rem;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    gap: 4rem;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: grab;
    user-select: none;
}

.testimonial-track:active {
    cursor: grabbing;
}

.testimonial-item {
    flex: 0 0 calc((100% - 8rem) / 3);
    /* Exactly 3 items in the viewport */
    min-width: 280px;
    position: relative;
    padding: 0 10px;
    /* Safety padding to prevent border clipping */
}

.testimonial-initial {
    position: absolute;
    top: -22px;
    left: 50%;
    transform: translateX(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--primary-color);
    border: 2px solid rgba(220, 215, 201, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    font-size: 1.15rem;
    color: var(--bg-color);
    letter-spacing: 0;
    z-index: 2;
    transition: border-color 0.4s ease, transform 0.4s ease;
}

.testimonial-item:hover .testimonial-initial {
    border-color: rgba(220, 215, 201, 0.6);
    transform: translateX(-50%) scale(1.08);
}

.testimonial {
    text-align: center;
    padding: 3.5rem 2rem 2.5rem;
    background-color: transparent;
    /* Pozostawiamy przezroczyste tło */
    border: 1px solid rgba(220, 215, 201, 0.15);
    /* Cienka jasna ramka */
    border-radius: 16px;
    /* Zaokrąglone rogi */
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: transform 0.4s ease, border-color 0.4s ease;
    position: relative;
}

.testimonial-item:hover .testimonial {
    transform: translateY(-5px);
    border-color: rgba(220, 215, 201, 0.4);
    /* Lekkie rozjaśnienie ramki na hover */
}

.testimonial p {
    font-family: var(--font-serif);
    font-size: clamp(1.1rem, 1.4vw, 1.3rem);
    /* Zgodnie z 'skromnością' luksusu */
    line-height: 1.6;
    color: var(--bg-color);
    margin-bottom: 0;
    letter-spacing: 0;
    font-style: normal;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
}

.italic-accent {
    font-style: italic;
}

.testimonial-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0;
    z-index: 10;
    pointer-events: none;
    width: 100%;
    /* Spans the full width of the 90% outer container */
}

.testimonial-controls button {
    pointer-events: auto;
    background: rgba(220, 215, 201, 0.1);
    border: 1px solid rgba(220, 215, 201, 0.2);
    color: var(--bg-color);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

.testimonial-controls button:hover {
    background: var(--bg-color);
    color: var(--primary-color);
    border-color: var(--bg-color);
    transform: scale(1.1);
}

@media (max-width: 1024px) {
    .testimonial-item {
        flex: 0 0 calc(50% - 2rem);
    }
}

@media (max-width: 768px) {
    .testimonial-item {
        flex: 0 0 calc(85% - 1rem);
    }

    .testimonial {
        padding: 3rem 2rem;
    }
}

/* FAQ Section (Dark Editorial Luxury matching Testimonials color scheme) */
.faq-section {
    padding: 10rem 0;
    background-color: var(--primary-color);
    color: var(--bg-color);
    border-top: 1px solid rgba(220, 215, 201, 0.1);
    border-bottom: 1px solid rgba(220, 215, 201, 0.1);
    position: relative;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8vw;
    align-items: start;
}

.faq-text {
    position: sticky;
    top: 10rem;
}

.faq-text .section-title {
    text-align: left;
    margin-bottom: 2rem;
    color: var(--bg-color);
}

.faq-text .section-description {
    text-align: left;
    max-width: 100%;
    margin: 0;
    color: rgba(220, 215, 201, 0.85);
    font-size: 1.05rem;
    line-height: 1.7;
}

.faq-accordion {
    border-top: 1px solid rgba(220, 215, 201, 0.15);
}

.faq-item {
    border-bottom: 1px solid rgba(220, 215, 201, 0.15);
    transition: border-color 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(216, 179, 118, 0.4);
}

/* Visual separator between FAQ topic groups */
.faq-item:nth-child(3) {
    border-bottom: 2px solid rgba(216, 179, 118, 0.35);
    margin-bottom: 0.5rem;
    padding-bottom: 0.5rem;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 2.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-serif);
    font-size: 1.65rem;
    text-align: left;
    cursor: pointer;
    color: var(--bg-color);
    transition: color 0.3s ease;
}

.faq-question:hover,
.faq-item.active .faq-question {
    color: #D8B376;
}

.faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s ease;
    opacity: 0;
    overflow: hidden;
}

.faq-answer-content {
    min-height: 0;
}

.faq-answer p {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(220, 215, 201, 0.85);
    padding-bottom: 2.5rem;
}

.faq-answer strong {
    color: #FAF8F4;
}

.faq-item.active .faq-answer {
    grid-template-rows: 1fr;
    opacity: 1;
}

.faq-item.active .icon {
    transform: rotate(45deg);
    color: #D8B376;
}

.icon {
    font-size: 1.8rem;
    font-weight: 300;
    color: #D8B376;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), color 0.3s ease;
}

/* Contact Section */
.contact-section {
    padding: 9rem 0;
    background-color: var(--bg-color);
    border-top: 1px solid rgba(44, 54, 57, 0.08);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6vw;
    align-items: stretch;
}

.contact-text {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.contact-text .section-title {
    text-align: left;
    margin-bottom: 1.5rem;
}

.contact-text .section-description {
    text-align: left;
    max-width: 100%;
    margin: 0 0 2.5rem;
    font-size: 1.05rem;
    line-height: 1.7;
}

.contact-form-wrapper {
    height: 100%;
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

.clean-form {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 100%;
    gap: 1.25rem;
    justify-content: space-between;
}

.clean-form .input-group {
    margin-bottom: 0;
}

.clean-form .input-group:last-of-type {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    min-height: 250px;
}

.clean-form input {
    width: 100%;
    padding: 1.15rem 1.8rem;
    border: 1.5px solid rgba(44, 54, 57, 0.15);
    background: rgba(255, 255, 255, 0.4);
    font-family: var(--font-sans);
    font-size: 0.95rem;
    color: var(--text-color);
    transition: all 0.3s ease;
    border-radius: 50px;
}

.clean-form textarea {
    width: 100%;
    padding: 1.3rem 1.8rem;
    border: 1.5px solid rgba(44, 54, 57, 0.15);
    background: rgba(255, 255, 255, 0.4);
    font-family: var(--font-sans);
    font-size: 0.95rem;
    color: var(--text-color);
    transition: all 0.3s ease;
    border-radius: 20px;
    flex: 1 1 auto;
    height: 100%;
    min-height: 250px;
    resize: none;
}

.clean-form input:focus,
.clean-form textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    background: rgba(255, 255, 255, 0.85);
    box-shadow: 0 8px 25px rgba(162, 123, 91, 0.12);
}

.clean-form .btn-pill {
    margin-top: 0;
    align-self: flex-end;
    padding: 0.85rem 2.25rem;
    width: auto;
    flex-grow: 0;
    flex-shrink: 0;
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 700;
}

/* Footer */
.contact-list {
    list-style: none;
    margin-top: 3rem;
}

.contact-list li {
    font-family: var(--font-sans);
    font-size: 1rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-list a {
    color: var(--text-color);
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-color: rgba(0, 0, 0, 0.2);
}

.contact-list a:hover {
    text-decoration-color: var(--primary-color);
}

.footer {
    padding: 4rem 0 3rem;
    background-color: var(--primary-color);
    /* INKWELL */
    color: var(--bg-color);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(220, 215, 201, 0.1);
    padding-top: 3rem;
    font-size: 0.85rem;
    color: var(--bg-color);
}

.footer-links {
    display: flex;
    gap: 3rem;
}

.footer-links a {
    color: var(--bg-color);
    text-transform: none;
    letter-spacing: 0.02em;
}

.footer-links a:hover {
    color: var(--accent-color);
    opacity: 1;
}

/* Scroll-Driven Animations — JS controls inline opacity/transform */
.fade-up,
.reveal-left,
.reveal-right,
.scale-reveal,
.fade-in-section,
.fade-in-element {
    opacity: 0;
    will-change: transform, opacity;
}

/* Hero mist-reveal — stays CSS transition-based (on-load, not scroll-linked) */
.hero-mist-reveal {
    opacity: 0;
    filter: blur(15px);
    transform: translateY(20px) scale(1.05);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), filter 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, filter, transform;
}

.hero-mist-reveal.is-visible {
    opacity: 1;
    filter: blur(0);
    transform: none;
}

/* Mobile: hero mist stays soft */
@media (max-width: 768px) {
    .hero-mist-reveal {
        filter: blur(10px);
        transform: none;
        transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), filter 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }
}

/* Responsive */
@media (max-width: 1200px) {
    .pricing-cards-container {
        grid-template-columns: repeat(2, 1fr);
        /* 2 kafelki w rzędzie na średnich ekranach */
        gap: 2rem;
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1024px) {
    .gallery-item {
        width: calc(33.333% - 1rem);
    }

    .contact-grid,
    .craft-container {
        grid-template-columns: 1fr;
        flex-direction: column;
        gap: 4rem;
    }
}

@media (max-width: 992px) {
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 5rem;
    }

    .faq-text {
        position: static;
        margin-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 4rem;
    }

    h2 {
        font-size: 3rem;
    }

    .pricing-cards-container,
    .why-grid {
        grid-template-columns: 1fr;
        /* 1 kafelek w rzędzie na telefonach */
        gap: 1.5rem;
    }

    .gallery-item {
        width: calc(85% - 1rem);
        height: 280px;
    }

    .process-steps {
        flex-direction: column;
        gap: 4rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 1.2rem;
        align-items: center;
    }
}

/* Quality & Craft Showcase (Delicate Vanishing Corner Frames) */
.quality-section {
    padding: 7rem 0;
    background-color: var(--bg-color);
    border-top: 1px solid rgba(44, 54, 57, 0.08);
    position: relative;
}

.quality-header {
    text-align: center;
    margin-bottom: 4rem;
}

.quality-eyebrow {
    font-family: var(--font-sans);
    font-size: 0.78rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent-color);
    font-weight: 700;
    display: inline-block;
    margin-bottom: 1rem;
}

.quality-bento-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: stretch;
}

/* Base Card without background box - matches main section background */
.craft-card {
    background: transparent;
    position: relative;
    padding: 2.25rem 2rem;
    border-radius: 20px;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Delicate Vanishing Corners */
.craft-card .corner-tl,
.craft-card .corner-tr,
.craft-card .corner-bl,
.craft-card .corner-br {
    position: absolute;
    width: 42px;
    height: 42px;
    pointer-events: none;
    border-color: rgba(162, 123, 91, 0.45);
    border-style: solid;
    transition: border-color 0.35s ease, transform 0.35s ease;
}

.craft-card .corner-tl {
    top: 0;
    left: 0;
    border-width: 1.5px 0 0 1.5px;
    border-top-left-radius: 16px;
    mask-image: radial-gradient(circle at top left, black 35%, transparent 100%);
    -webkit-mask-image: radial-gradient(circle at top left, black 35%, transparent 100%);
}

.craft-card .corner-tr {
    top: 0;
    right: 0;
    border-width: 1.5px 1.5px 0 0;
    border-top-right-radius: 16px;
    mask-image: radial-gradient(circle at top right, black 35%, transparent 100%);
    -webkit-mask-image: radial-gradient(circle at top right, black 35%, transparent 100%);
}

.craft-card .corner-bl {
    bottom: 0;
    left: 0;
    border-width: 0 0 1.5px 1.5px;
    border-bottom-left-radius: 16px;
    mask-image: radial-gradient(circle at bottom left, black 35%, transparent 100%);
    -webkit-mask-image: radial-gradient(circle at bottom left, black 35%, transparent 100%);
}

.craft-card .corner-br {
    bottom: 0;
    right: 0;
    border-width: 0 1.5px 1.5px 0;
    border-bottom-right-radius: 16px;
    mask-image: radial-gradient(circle at bottom right, black 35%, transparent 100%);
    -webkit-mask-image: radial-gradient(circle at bottom right, black 35%, transparent 100%);
}

.craft-card:hover {
    transform: translateY(-4px);
}

.craft-card:hover .corner-tl,
.craft-card:hover .corner-tr,
.craft-card:hover .corner-bl,
.craft-card:hover .corner-br {
    border-color: #D8B376;
}

/* Left Hero (Akt I) */
.craft-hero {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.craft-hero-image-wrapper {
    width: 100%;
    height: 310px;
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 16px 35px rgba(44, 54, 57, 0.12);
    margin-bottom: 2rem;
}

.craft-badge {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    background: rgba(44, 54, 57, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #FFFFFF;
    padding: 5px 14px;
    border-radius: 20px;
    font-family: var(--font-sans);
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.craft-tag {
    font-family: var(--font-sans);
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent-color);
    font-weight: 700;
    margin-bottom: 0.65rem;
    display: block;
}

.craft-content h3 {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.85rem;
    line-height: 1.15;
    letter-spacing: -0.01em;
}

.craft-content p {
    font-family: var(--font-sans);
    font-size: 0.92rem;
    line-height: 1.6;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.craft-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: auto;
}

.craft-pill {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    color: var(--text-color);
    background: rgba(44, 54, 57, 0.05);
    border: 1px solid rgba(44, 54, 57, 0.12);
    padding: 5px 13px;
    border-radius: 20px;
}

/* Right Side Column (Akt II & Akt III) */
.craft-side-column {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    height: 100%;
}

.craft-small {
    flex: 1 1 50%;
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 1.75rem;
    align-items: center;
}

.craft-small-thumb {
    height: 100%;
    min-height: 190px;
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 14px 30px rgba(44, 54, 57, 0.1);
}

.craft-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.craft-card:hover .craft-image {
    transform: scale(1.05);
}

.craft-small .craft-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.craft-small .craft-content h3 {
    font-size: 1.65rem;
    margin-bottom: 0.6rem;
}

.craft-small .craft-content p {
    margin-bottom: 0;
    font-size: 0.88rem;
    line-height: 1.55;
}

@media (max-width: 1024px) {
    .quality-bento-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .craft-hero-image-wrapper {
        height: 280px;
    }
}

@media (max-width: 640px) {
    .craft-card {
        padding: 1.75rem 1.25rem;
    }

    .craft-small {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .craft-small-thumb {
        height: 200px;
    }
}

/* Unboxing Section */
.unboxing-section {
    padding: 12rem 0;
    background-color: var(--bg-color);
}

.unboxing-section .container {
    max-width: 70%;
    margin: 0 auto;
    padding: 0 2vw;
}

.unboxing-header {
    text-align: center;
    max-width: 100%;
    margin: 0 auto 8rem;
}

.unboxing-header .section-title {
    font-size: clamp(3rem, 6vw, 5rem);
    margin-bottom: 3.5rem;
}

.unboxing-header .section-title i {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
}

.unboxing-intro {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    line-height: 1.4;
    color: var(--text-color);
    max-width: 70%;
    margin: 0 auto;
}

.unboxing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 6rem;
}

.unboxing-card {
    display: flex;
    flex-direction: column;
    padding: 2rem 2rem 2.5rem;
    border: 1px solid rgba(44, 54, 57, 0.12);
    border-radius: 18px;
    position: relative;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6), 0 10px 25px -5px rgba(44, 54, 57, 0.05);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.35s ease, box-shadow 0.35s ease;
}

.unboxing-card:hover {
    transform: translateY(-5px);
    border-color: rgba(216, 179, 118, 0.45);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 20px 45px rgba(44, 54, 57, 0.12);
}

.unboxing-image-wrapper {
    margin-bottom: 2rem;
    overflow: hidden;
    border-radius: 14px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.45s ease;
}

.unboxing-card:hover .unboxing-image-wrapper {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.16);
}

.unboxing-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.unboxing-card:hover .unboxing-image {
    transform: scale(1.04);
}

.unboxing-card-title {
    font-family: var(--font-serif);
    font-size: 1.85rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.unboxing-card-num {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    color: var(--accent-color);
    letter-spacing: 0.05em;
    font-weight: 400;
}

.unboxing-card-text {
    font-family: var(--font-sans);
    font-size: 0.92rem;
    line-height: 1.6;
    color: var(--text-color);
    opacity: 0.9;
}

.unboxing-footer {
    text-align: center;
    max-width: 100%;
    margin: 0 auto;
    padding-top: 4rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.unboxing-footer p {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    line-height: 1.5;
    color: var(--text-light);
}

@media (max-width: 1024px) {
    .unboxing-grid {
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .unboxing-section {
        padding: 8rem 0;
    }

    .unboxing-grid {
        grid-template-columns: 1fr;
        gap: 5rem;
    }

    .unboxing-header {
        margin-bottom: 5rem;
    }
}

/* Modal System */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(20, 20, 20, 0.45);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    display: flex;
    visibility: hidden;
    pointer-events: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.9s cubic-bezier(0.23, 1, 0.32, 1),
        visibility 0.9s cubic-bezier(0.23, 1, 0.32, 1);
}

.modal-overlay.active {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}

.modal-window {
    background-color: var(--bg-color);
    width: 90%;
    height: 90%;
    max-width: 1200px;
    border-radius: 20px;
    position: relative;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform: translateY(40px) scale(0.98);
    transition: transform 1.1s cubic-bezier(0.23, 1, 0.32, 1),
        opacity 0.9s cubic-bezier(0.23, 1, 0.32, 1);
    opacity: 0;
}

.modal-overlay.active .modal-window {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.modal-close {
    position: absolute;
    top: 2rem;
    right: 2.5rem;
    background: none;
    border: none;
    font-size: 2.5rem;
    color: var(--primary-color);
    cursor: pointer;
    z-index: 10;
    transition: transform 0.3s ease;
}

.modal-close:hover {
    transform: rotate(90deg) scale(1.1);
}

.modal-content {
    flex: 1;
    overflow-y: auto;
    padding: 6rem 5rem;
    scrollbar-width: thin;
    scrollbar-color: var(--accent-color) transparent;
}

.modal-content::-webkit-scrollbar {
    width: 6px;
}

.modal-content::-webkit-scrollbar-thumb {
    background-color: var(--accent-color);
    border-radius: 10px;
}

.modal-text-container {
    max-width: 800px;
    margin: 0 auto;
}

.modal-text-container h1 {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    text-align: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding-bottom: 1rem;
}

.modal-text-container section {
    padding: 0;
    margin: 0;
}

.modal-text-container h2 {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    margin: 1rem 0 0.5rem;
    color: var(--accent-color);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.modal-text-container p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 0.4rem;
}

@media (max-width: 768px) {
    .modal-window {
        width: 100%;
        height: 100%;
        border-radius: 0;
    }

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

    .modal-text-container h1 {
        font-size: 2rem;
    }
}

/* ================================================
   MINIMALIST COOKIE BANNER
   ================================================ */
.cookie-banner {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 480px;
    /* Width 3 units */
    height: 320px;
    /* Height 2 units -> 3:2 proportion */
    background-color: rgba(44, 54, 57, 0.55);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    color: var(--bg-color);
    padding: 2.5rem;
    border-radius: 24px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.45);
    z-index: 10000;
    font-family: var(--font-sans);
    font-size: 13px;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1.5rem;
    visibility: hidden;
    opacity: 0;
    transform: translateY(40px);
    transition: all 1.2s cubic-bezier(0.23, 1, 0.32, 1);
    border: 1px solid rgba(162, 123, 91, 0.4);
}

.cookie-banner.active {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.cookie-text {
    margin: 0;
    color: #FAF8F4 !important;
    /* Force high contrast off-white */
    font-weight: 500;
    /* Slightly thicker for legibility */
}

.cookie-text a {
    color: #A27B5B !important;
    /* Use bronze for the link to make it pop */
    text-decoration: underline;
    font-weight: 700;
}

.cookie-actions {
    display: flex;
    flex-direction: row;
    /* Back to horizontal for 3:2 layout */
    gap: 1rem;
    width: 100%;
}

.btn-cookie-accept {
    background-color: #A27B5B;
    color: #fff;
    border: none;
    padding: 0.9rem 1.8rem;
    flex: 1;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    cursor: pointer;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.btn-cookie-accept:hover {
    background-color: #c09673;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.btn-cookie-settings {
    background: transparent;
    border: 1px solid rgba(250, 248, 244, 0.3);
    color: #FAF8F4;
    padding: 0.9rem 1.8rem;
    flex: 1;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    cursor: pointer;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.btn-cookie-settings:hover {
    background: rgba(250, 248, 244, 0.1);
    border-color: rgba(250, 248, 244, 1);
    transform: translateY(-2px);
}

/* ================================================
   COOKIE SETTINGS MODAL & TOGGLES
   ================================================ */
.cookie-settings-window {
    background-color: rgba(44, 54, 57, 0.9);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    width: 90%;
    max-width: 500px;
    padding: 3rem;
    border-radius: 32px;
    border: 1px solid rgba(162, 123, 91, 0.3);
    color: #FAF8F4;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.5);
    position: relative;
    transform: scale(0.9);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.modal-overlay.active .cookie-settings-window {
    transform: scale(1);
}

.cookie-settings-header h3 {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    margin: 0 0 2rem;
    color: var(--bg-color);
}

.cookie-category-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.cookie-category-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 1.2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.cookie-category-info h4 {
    font-size: 14px;
    margin: 0 0 0.3rem;
    font-weight: 700;
    color: #FAF8F4;
    /* Jasny tekst nagłówka */
}

.cookie-category-info p {
    font-size: 12px;
    color: rgba(250, 248, 244, 0.7);
    /* Czytelny opis */
    margin: 0;
}

/* Luxury Toggle Switch */
.switch {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 24px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.1);
    transition: .4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: #fff;
    transition: .4s;
    border-radius: 50%;
}

input:checked+.slider {
    background-color: var(--accent-color);
}

input:checked+.slider:before {
    transform: translateX(20px);
}

input:disabled+.slider {
    opacity: 0.5;
    cursor: not-allowed;
}

.btn-cookie-save {
    background-color: var(--accent-color);
    color: #fff;
    border: none;
    padding: 1.1rem;
    width: 100%;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    cursor: pointer;
    border-radius: 50px;
    transition: all 0.4s ease;
}

.btn-cookie-save:hover {
    background-color: #c09673;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.btn-cookie-settings:hover {
    opacity: 1;
}

@media (max-width: 480px) {
    .cookie-banner {
        bottom: 0;
        right: 0;
        width: 100%;
        border-radius: 0;
        padding: 1.5rem;
    }
}

/* ================================================
   SHIPPING MODAL (WYSYŁKA)
   ================================================ */
.shipping-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 3rem;
    margin-bottom: 4rem;
}

.shipping-col {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.shipping-col-icon {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.shipping-col h3 {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    margin: 0;
    color: var(--text-color);
}

.shipping-col p {
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
    color: var(--text-color);
    opacity: 0.8;
}

.shipping-price-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0;
}

.shipping-price-list li {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(44, 54, 57, 0.08);
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
}

.shipping-price-list li strong {
    color: var(--accent-color);
}

.shipping-footer-note {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(44, 54, 57, 0.08);
    text-align: center;
    font-style: italic;
    font-size: 0.85rem;
    color: var(--text-color);
    opacity: 0.6;
}

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

/* Nowy układ 2x2 dla modalu Wysyłka */
.shipping-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 3rem;
    margin-bottom: 2rem;
}

.shipping-pricing-row {
    grid-column: span 2;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    background: rgba(44, 54, 57, 0.03);
    padding: 2.5rem;
    border-radius: 15px;
    margin-top: 1rem;
}

.shipping-pricing-title {
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    opacity: 0.7;
}

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

    .shipping-pricing-row {
        grid-column: span 1;
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 1.5rem;
    }
}

/* ================================================
   CONTACT TILES (WhatsApp & Email)
   ================================================ */
.contact-tiles {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
}

.contact-tile {
    flex: 1;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1.5rem;
    padding: 1.8rem 2rem;
    background: transparent;
    border: 1.5px solid rgba(44, 54, 57, 0.15);
    border-radius: 15px;
    text-decoration: none;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.contact-tile:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(44, 54, 57, 0.06);
    border-color: var(--accent-color);
}

.contact-tile-icon {
    width: 46px;
    height: 46px;
    background: rgba(44, 54, 57, 0.03);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    transition: all 0.5s ease;
    flex-shrink: 0;
}

.contact-tile:hover .contact-tile-icon {
    background: var(--accent-color);
    color: #fff;
    transform: rotateY(180deg);
}

.contact-tile-content {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.contact-tile-label {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    color: var(--text-color);
    font-weight: 500;
}

.contact-tile-sub {
    font-size: 0.8rem;
    color: var(--text-color);
    opacity: 0.5;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

@media (max-width: 992px) {
    .contact-tiles {
        flex-direction: column;
        gap: 1rem;
    }
}

/* ================================================
   FOOTER SOCIALS
   ================================================ */
.footer-socials {
    display: flex;
    gap: 1.2rem;
    align-items: center;
    margin-left: 1rem;
}

.footer-socials a {
    color: var(--bg-color);
    opacity: 0.7;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-socials a:hover {
    opacity: 1;
    transform: translateY(-2px);
    color: var(--accent-color);
}

@media (max-width: 768px) {
    .footer-socials {
        margin-left: 0;
        margin-top: 1rem;
        justify-content: center;
    }
}

/* ================================================
   NAVBAR SOCIALS
   ================================================ */
.nav-socials {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-left: 2rem;
    padding-left: 2rem;
    border-left: 1px solid rgba(44, 54, 57, 0.1);
}

.nav-socials a {
    color: var(--text-color);
    opacity: 0.6;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.nav-socials a:hover {
    opacity: 1;
    color: var(--accent-color);
    transform: translateY(-2px);
}

@media (max-width: 1100px) {
    .nav-socials {
        display: none;
        /* Hide on smaller screens to prevent menu clutter */
    }
}

/* ================================================
   BLOG & JOURNAL EDITORIAL STYLES
   ================================================ */

/* Blog Index Hero */
.blog-hero {
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 14rem 4vw 6rem;
    position: relative;
    overflow: hidden;
    text-align: center;
    color: #FFFFFF;
}

.blog-hero-bg {
    position: absolute;
    top: -10%;
    left: 0;
    width: 100%;
    height: 120%;
    z-index: 1;
}

.blog-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.blog-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(31, 30, 29, 0.6);
    backdrop-filter: blur(3px);
    z-index: 2;
}

.blog-hero .container {
    position: relative;
    z-index: 3;
    max-width: 900px;
}

.blog-hero .article-eyebrow {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #D8B376;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.blog-hero h1 {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: clamp(2.8rem, 5vw, 4.5rem);
    color: var(--bg-color);
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.blog-hero .section-description {
    color: rgba(220, 215, 201, 0.9);
    font-size: 1.15rem;
    line-height: 1.7;
    max-width: 650px;
    margin: 0 auto;
}

/* Blog Section & Grid */
.blog-section {
    padding: 8rem 0 12rem;
    background-color: var(--bg-color);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 2rem;
}

.blog-card {
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.35);
    border: 1px solid rgba(44, 54, 57, 0.12);
    border-radius: 20px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6), 0 10px 25px rgba(44, 54, 57, 0.04);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease, box-shadow 0.4s ease;
    text-decoration: none;
    color: inherit;
}

.blog-card:hover {
    transform: translateY(-6px);
    border-color: rgba(216, 179, 118, 0.5);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 20px 45px rgba(44, 54, 57, 0.1);
}

.blog-card-image {
    width: 100%;
    aspect-ratio: 16 / 11;
    overflow: hidden;
    border-radius: 14px;
    position: relative;
    margin-bottom: 1.75rem;
    background: rgba(44, 54, 57, 0.05);
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-card-content {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-card-content .article-meta {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent-color);
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.blog-card-content h3 {
    font-family: var(--font-serif);
    font-size: 1.65rem;
    line-height: 1.25;
    margin-bottom: 1rem;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

.blog-card:hover .blog-card-content h3 {
    color: var(--accent-color);
}

.blog-card-content p {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    color: var(--text-color);
    opacity: 0.85;
    line-height: 1.65;
    margin-bottom: 1.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-link {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--accent-color);
    font-weight: 700;
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: transform 0.3s ease, color 0.3s ease;
}

.blog-card:hover .blog-card-link {
    color: var(--primary-color);
    transform: translateX(4px);
}

/* ================================================
   ARTICLE PAGES (Full Editorial Polish)
   ================================================ */

.article-header {
    padding: 12rem 1.5rem 3.5rem;
    text-align: center;
    max-width: 860px;
    margin: 0 auto;
}

.article-header .article-title {
    font-family: var(--font-serif);
    font-size: clamp(2.4rem, 4.5vw, 3.8rem);
    line-height: 1.15;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

.article-header .article-meta {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent-color);
    font-weight: 700;
}

/* Article Hero Image */
.article-hero-image {
    max-width: 1040px;
    margin: 0 auto 5rem;
    padding: 0 1.5rem;
}

.article-hero-image img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 25px 60px rgba(44, 54, 57, 0.12);
    display: block;
}

/* Article Container & Typography */
.article-container {
    max-width: 820px;
    margin: 0 auto;
    padding: 0 1.5rem 10rem;
}

.article-content {
    font-family: var(--font-sans);
    font-size: 1.05rem;
    line-height: 1.9;
    color: #2C3639;
}

.article-content > p:first-of-type {
    font-family: var(--font-serif);
    font-size: 1.45rem;
    line-height: 1.65;
    font-style: italic;
    color: var(--primary-color);
    margin-bottom: 3rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(44, 54, 57, 0.12);
}

.article-content p {
    margin-bottom: 2rem;
    opacity: 0.92;
}

.article-content h2 {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-top: 4rem;
    margin-bottom: 1.25rem;
    line-height: 1.2;
}

.article-content h3 {
    font-family: var(--font-serif);
    font-size: 1.65rem;
    color: var(--accent-color);
    margin-top: 3rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.article-content img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 45px rgba(44, 54, 57, 0.1);
    margin: 3.5rem 0;
    display: block;
    object-fit: cover;
}

.article-content blockquote {
    border-left: 3px solid #D8B376;
    padding: 2rem 2.5rem;
    margin: 3.5rem 0;
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.35rem;
    line-height: 1.6;
    color: var(--primary-color);
    background: rgba(255, 255, 255, 0.45);
    border-radius: 0 16px 16px 0;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

/* Sales CTA Box */
.sales-cta-box {
    background: var(--primary-color);
    color: var(--bg-color);
    padding: 4rem 3rem;
    border-radius: 20px;
    text-align: center;
    margin: 5rem 0;
    position: relative;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(220, 215, 201, 0.1);
}

.sales-cta-box h3 {
    font-family: var(--font-serif);
    color: var(--bg-color);
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.sales-cta-box p {
    color: rgba(220, 215, 201, 0.85);
    font-family: var(--font-sans);
    font-size: 1rem;
    line-height: 1.7;
    max-width: 540px;
    margin: 0 auto 2.5rem;
}

.sales-cta-box .btn-magnet {
    display: inline-block;
    background: #D8B376;
    color: #2C3639;
    padding: 1rem 2.75rem;
    border-radius: 50px;
    text-decoration: none;
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease, background 0.35s ease;
}

.sales-cta-box .btn-magnet:hover {
    transform: translateY(-3px) scale(1.02);
    background: #FAF8F4;
    box-shadow: 0 15px 35px rgba(216, 179, 118, 0.3);
}

/* Related Section in Article */
.related-section {
    margin-top: 6rem;
    padding-top: 5rem;
    border-top: 1px solid rgba(44, 54, 57, 0.12);
}

.related-section h3 {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 3rem;
}

.related-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
}

.related-grid .blog-card {
    background: rgba(255, 255, 255, 0.4);
    padding: 1.5rem;
    border-radius: 18px;
    border: 1px solid rgba(44, 54, 57, 0.1);
    text-decoration: none;
    color: inherit;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.4s ease;
}

.related-grid .blog-card:hover {
    transform: translateY(-5px);
    border-color: rgba(216, 179, 118, 0.45);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8), 0 20px 40px rgba(44, 54, 57, 0.08);
}

.related-grid .blog-card-image {
    width: 100%;
    aspect-ratio: 16 / 10;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1.25rem;
}

.related-grid .blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.related-grid .blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.related-grid .blog-card-content h4 {
    font-family: var(--font-serif);
    font-size: 1.45rem;
    line-height: 1.3;
    color: var(--primary-color);
    margin: 0;
}

/* ================================================
   BLOG & ARTICLE — RESPONSIVE
   ================================================ */

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

    .related-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .sales-cta-box {
        padding: 3.5rem 2rem;
        margin: 4rem 0;
    }

    .sales-cta-box h3 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .blog-hero {
        min-height: 50vh;
        padding: 10rem 1.5rem 4rem;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .article-header {
        padding: 9rem 1.25rem 2.5rem;
    }

    .article-header .article-title {
        font-size: 2.2rem;
    }

    .article-hero-image {
        margin-bottom: 3.5rem;
        padding: 0 1.25rem;
    }

    .article-container {
        padding: 0 1.25rem 6rem;
    }

    .article-content {
        font-size: 1rem;
        line-height: 1.8;
    }

    .article-content > p:first-of-type {
        font-size: 1.25rem;
        margin-bottom: 2rem;
        padding-bottom: 1.5rem;
    }

    .article-content h2 {
        font-size: 1.7rem;
        margin-top: 3rem;
    }

    .article-content h3 {
        font-size: 1.35rem;
        margin-top: 2.5rem;
    }

    .article-content img {
        margin: 2.5rem 0;
    }

    .article-content blockquote {
        padding: 1.25rem 1.5rem;
        font-size: 1.15rem;
        margin: 2.5rem 0;
    }

    .sales-cta-box {
        padding: 3rem 1.5rem;
        margin: 3.5rem 0;
    }

    .sales-cta-box h3 {
        font-size: 1.75rem;
    }

    .related-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 1024px) {
    .container-grid {
        max-width: 90vw;
    }
}

@media (max-width: 768px) {
    /* Navbar & Mobile Menu Overlay */
    .navbar {
        width: 90%;
        top: 1rem;
        padding: 0.8rem 1.5rem;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.6);
        /* Ciemniejszy overlay */
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        display: flex !important;
        justify-content: center;
        align-items: center;
        transition: var(--transition-smooth);
        z-index: 999;
        padding: 20px;
        transform: translateX(100%);
        visibility: hidden;
        pointer-events: none;
    }

    .nav-links.active {
        transform: translateX(0);
        visibility: visible;
        pointer-events: all;
    }

    /* KAFELEK MENU */
    .nav-menu-card {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        background: rgba(220, 215, 201, 0.98);
        /* Au Lait */
        width: calc(100% - 40px);
        max-width: 380px;
        padding: 3.5rem 2rem;
        border-radius: 35px;
        gap: 1.5rem;
        box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
        border: 1px solid rgba(255, 255, 255, 0.3);
        margin: 0 !important;
    }

    .nav-links a {
        font-family: var(--font-serif);
        font-size: 1.8rem;
        color: var(--text-color) !important;
        text-align: center;
        margin: 0;
    }

    .nav-links .nav-contact-btn {
        font-family: var(--font-sans);
        font-size: 0.85rem;
        padding: 1.2rem 3rem;
        margin-top: 1rem;
        background: var(--text-color) !important;
        color: var(--bg-color) !important;
        border: none !important;
        border-radius: 50px;
        width: auto;
    }

    /* SOCIALE NA GÓRZE W KAFELKU */
    .nav-socials {
        display: flex !important;
        margin-bottom: 1.5rem;
        gap: 2rem;
        justify-content: center;
        order: -1;
    }

    .nav-socials a,
    .nav-socials svg {
        color: var(--text-color) !important;
        stroke: var(--text-color) !important;
        width: 24px;
        height: 24px;
    }

    .menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        background: none;
        border: none;
        cursor: pointer;
        z-index: 1001;
    }

    .hamburger {
        display: block;
        width: 24px;
        height: 2px;
        background: currentColor;
        position: relative;
        transition: var(--transition-fast);
    }

    .hamburger::before,
    .hamburger::after {
        content: '';
        position: absolute;
        width: 24px;
        height: 2px;
        background: currentColor;
        left: 0;
        transition: var(--transition-fast);
    }

    .hamburger::before {
        top: -8px;
    }

    .hamburger::after {
        top: 8px;
    }

    .menu-toggle.active .hamburger {
        background: transparent;
    }

    .menu-toggle.active .hamburger::before {
        transform: rotate(45deg);
        top: 0;
        background: var(--text-color);
    }

    .menu-toggle.active .hamburger::after {
        transform: rotate(-45deg);
        top: 0;
        background: var(--text-color);
    }

    /* Footer Fix */
    .footer-grid {
        grid-template-columns: 1fr !important;
        gap: 3rem;
        text-align: center;
    }
}