:root {
    --bg-color: #f2f0ea;
    --bg-white: #ffffff;
    --text-main: #2c2c2c;
    --accent-brown: #a47864;
    --accent-dusty: #ba9d99;
    --accent-light: #ddb3b6;
    --font-serif: 'Cormorant Garamond', serif;
    --font-sans: 'Montserrat', sans-serif;
}

html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden !important;
    position: relative;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    padding-top: 90px;
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
    animation: pageFadeIn 0.8s ease-out;
}

input,
textarea {
    -webkit-user-select: auto;
    -moz-user-select: auto;
    -ms-user-select: auto;
    user-select: auto;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
    animation: pageFadeIn 0.8s ease-out;
}

@keyframes pageFadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-serif);
    font-weight: 400;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

.bg-light {
    background-color: var(--bg-white);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--text-main);
    position: relative;
    display: table;
    margin-left: auto;
    margin-right: auto;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 1px;
    background-color: var(--accent-brown);
    margin: 15px auto 0;
}

.line-separator {
    width: 40px;
    height: 1px;
    background-color: var(--accent-brown);
    margin: 20px 0;
}

.btn-primary {
    display: inline-block;
    background-color: var(--accent-brown);
    color: #fff;
    padding: 12px 30px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid var(--accent-brown);
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #8c6553;
    color: #ffffff;
    border-color: #8c6553;
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

.btn-outline {
    display: inline-block;
    background-color: transparent;
    color: var(--text-main);
    padding: 10px 25px;
    border: 1px solid var(--text-main);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.8rem;
}

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

.navbar {
    background-color: var(--bg-color);
    padding: 20px 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: padding, background-color, transform;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
}

.logo-img {
    height: 100px;
    width: auto;
    transition: height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links li a {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 5px;
}

.nav-links li a.active::after,
.nav-links li a:hover::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--accent-brown);
}

.hamburger {
    display: none;
}

.nav-item-dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--bg-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    min-width: 200px;
}

.nav-item-dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    text-transform: none;
}

.dropdown-menu li a:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.hero {
    height: 80vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: #2c2c2c;
}

.hero.hero-home {
    height: 90vh;
}

.hero.hero-subpage {
    height: 50vh;
    min-height: 400px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
    pointer-events: none;
}

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

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 15px;
    color: #ffffff;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: 1.2rem;
    color: #f2f0ea;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    margin-bottom: 30px;
}

#reviews {
    background-color: var(--bg-color);
}

.about-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-image {
    flex: 1;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 2.5rem;
}

.signature {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.5rem;
    margin-top: 30px;
    color: var(--accent-brown);
}

.offer-nav-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-bottom: 40px;
}

.offer-nav-item {
    position: relative;
    aspect-ratio: 3 / 4;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
    text-decoration: none;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.offer-nav-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease, filter 0.5s ease;
    z-index: 1;
    filter: brightness(0.85);
}

.offer-nav-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    transition: background 0.3s ease;
    z-index: 2;
}

.offer-nav-item:hover img {
    transform: scale(1.05);
    filter: brightness(0.6);
}

.offer-nav-item:hover::after {
    background: rgba(0, 0, 0, 0.5);
}

.offer-nav-item h3 {
    position: relative;
    z-index: 3;
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.offer-nav-item:hover h3 {
    transform: translateY(-5px);
}

.carousel-container {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    max-width: 1100px;
    margin: 50px auto 20px;
    gap: 20px;
}

.pricing-carousel {
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    justify-items: center;
    width: 100%;
    position: relative;
    perspective: 1000px;
}

.pricing-card {
    grid-area: 1 / 1;
    background: var(--bg-white, #fff);
    padding: 40px 30px;
    width: 100%;
    max-width: 380px;
    text-align: center;
    border: 1px solid #eee;
    box-sizing: border-box;
    transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out, z-index 0.5s ease-in-out;
    opacity: 0;
    z-index: 1;
    pointer-events: none;
}

.pricing-card.active {
    opacity: 1;
    z-index: 3;
    transform: scale(1) translateX(0);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    pointer-events: auto;
}

.pricing-card.prev {
    opacity: 0.6;
    z-index: 2;
    transform: scale(0.85) translateX(-90%);
}

.pricing-card.next {
    opacity: 0.6;
    z-index: 2;
    transform: scale(0.85) translateX(90%);
}

.price {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    color: var(--accent-brown);
    margin: 20px 0;
}

.pricing-card ul {
    margin-bottom: 30px;
    text-align: left;
}

.pricing-card ul li {
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    font-size: 0.95rem;
    list-style: none;
}

.pricing-card ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--accent-brown);
    position: absolute;
    left: 0;
    top: 2px;
}

.carousel-arrow {
    background: transparent;
    border: none;
    font-size: 2rem;
    color: #333;
    cursor: pointer;
    transition: transform 0.2s, color 0.2s;
    z-index: 4;
    padding: 10px;
}

.carousel-arrow:hover {
    transform: scale(1.2);
    color: var(--accent-brown, #b38b6d);
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 50px;
}

.dot {
    width: 12px;
    height: 12px;
    background-color: #ccc;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s;
}

.dot.active {
    background-color: var(--accent-brown, #333);
    transform: scale(1.2);
}

@media (max-width: 768px) {

    .pricing-card.prev,
    .pricing-card.next {
        opacity: 0;
        pointer-events: none;
    }
}

.no-padding-top {
    padding-top: 0;
}

.section-intro-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.8;
    color: #555;
}

.process-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.process-steps {
    position: relative;
    padding: 30px;
    background: #fff;
    border: 1px solid #f0ede9;
}

.step-number {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: #dad4cd;
    position: absolute;
    top: 10px;
    right: 20px;
    font-style: italic;
}

.process-steps h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: #333;
    position: relative;
}

.process-steps ul {
    list-style: none;
    padding: 0;
}

.process-steps ul li {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 12px;
    color: #666;
    padding-left: 15px;
    position: relative;
}

.process-steps ul li::before {
    content: "—";
    position: absolute;
    left: 0;
    color: #c9a997;
}

.philosophy-quote {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.2rem;
    color: #333;
    max-width: 700px;
    margin: 40px auto;
    padding: 20px;
    border-top: 1px solid #e0d9d0;
    border-bottom: 1px solid #e0d9d0;
}

.extras-box {
    text-align: center;
    margin-top: 40px;
}

.extras-box h4 {
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    color: #a89f91;
    margin-bottom: 10px;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 40px;
}

.philosophy-text p,
.emotional-faq p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.big-btn {
    padding: 18px 45px;
    font-size: 1rem;
}

.cta-subtext {
    margin-top: 20px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    color: #888;
}

@media (max-width: 992px) {

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

#instagram-feed {
    text-align: center;
    padding-bottom: 60px;
}

.insta-header h2 {
    font-size: 2.2rem;
    color: #333;
    margin-bottom: 40px;
}

.insta-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.insta-item {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    display: block;
}

.overlay-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
    color: white;
    opacity: 0;
    transition: opacity 0.3s;
}

.insta-item:hover img {
    filter: brightness(0.7);
}

.insta-item:hover .overlay-icon {
    opacity: 1;
}

.insta-handle a {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    color: var(--accent-brown);
}

.contact-wrapper {
    max-width: 600px;
    margin: 0 auto;
}

.contact-form .form-group {
    margin-bottom: 25px;
}

#contact {
    background-color: #fff;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    background-color: transparent;
    border: none;
    border-bottom: 1px solid #ccc;
    font-family: var(--font-sans);
    font-size: 1rem;
    color: var(--text-main);
    transition: all 0.3s ease;
    border-radius: 0;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-bottom-color: var(--accent-brown);
    background-color: rgba(255, 255, 255, 0.5);
}

.form-status {
    margin-bottom: 20px;
    text-align: center;
    font-size: 0.9rem;
    font-family: var(--font-sans);
    display: none;
}

.form-status.success {
    color: green;
    display: block;
}

.form-status.error {
    color: red;
    display: block;
}

footer {
    background-color: #222;
    color: #fff;
    text-align: center;
    padding: 30px 0;
    margin-top: 50px;
}

.section-divider {
    display: block;
    width: 90%;
    max-width: 1200px;
    height: 1px;
    margin: 50px auto;
    background: linear-gradient(90deg, transparent, #a47864, transparent);
    opacity: 0.7;
}

.minimalist-title {
    font-size: 2rem;
    text-transform: uppercase;
    letter-spacing: 10px;
    font-weight: 300;
    color: #555;
}

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

.preview-item {
    position: relative;
    display: block;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    cursor: pointer;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.preview-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.preview-item .preview-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(44, 44, 44, 0.4);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.preview-item h3 {
    color: #fff;
    font-size: 1.8rem;
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 15px;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.explore-btn {
    font-size: 0.8rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 1px solid #fff;
    padding: 8px 20px;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.preview-item:hover img {
    transform: scale(1.05);
}

.preview-item:hover .preview-overlay {
    opacity: 1;
}

.preview-item:hover h3,
.preview-item:hover .explore-btn {
    transform: translateY(0);
}

.preview-item:hover .explore-btn {
    background: #fff;
    color: var(--text-main);
}

.preview-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.preview-item:nth-child(1) {
    transition-delay: 0.1s;
}

.preview-item:nth-child(2) {
    transition-delay: 0.3s;
}

.preview-item:nth-child(3) {
    transition-delay: 0.5s;
}

.process-step {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}

.process-step.visible {
    opacity: 1;
    transform: translateY(0);
}

.process-step:nth-child(1) {
    transition-delay: 0.1s;
}

.process-step:nth-child(2) {
    transition-delay: 0.4s;
}

.process-step:nth-child(3) {
    transition-delay: 0.7s;
}

.reviews-wrapper {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 20px 0 60px 0;
}

.quote-icon {
    font-family: var(--font-serif);
    font-size: 6rem;
    line-height: 1;
    color: var(--accent-brown);
    opacity: 0.2;
    margin-bottom: 10px;
}

.reviews-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.review-slide {
    display: none;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
    width: 100%;
}

.review-slide.active {
    display: block;
    opacity: 1;
}

.review-text {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.3rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 25px;
}

@media (max-width: 768px) {
    .reviews-wrapper {
        padding: 10px 0 50px 0;
        touch-action: pan-y;
    }

    .review-text {
        font-size: 1.05rem;
        line-height: 1.7;
    }
}

.review-author {
    font-family: var(--font-sans);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    color: var(--text-main);
}

.review-category {
    display: block;
    font-size: 0.8rem;
    color: var(--accent-brown);
    margin-top: 5px;
    text-transform: uppercase;
}

.review-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}

.dot {
    width: 10px;
    height: 10px;
    background-color: #ddd;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s;
}

.dot.active {
    background-color: var(--accent-brown);
}

.cursor-dot {
    width: 6px;
    height: 6px;
    background-color: #333;
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 9999;
    pointer-events: none;
    display: none;
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    background-color: transparent;
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 9998;
    pointer-events: none;
    display: none;
    transition: width 0.2s, height 0.2s, border-color 0.2s;
}

body.hovering .cursor-outline {
    width: 55px;
    height: 55px;
    border-color: var(--accent-brown);
    border-width: 1px;
}

body.hovering .cursor-dot {
    background-color: var(--accent-brown);
}

.portfolio-filters {
    text-align: center;
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.filter-btn {
    border: none;
    background: transparent;
    font-family: var(--font-sans);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 2px;
    cursor: pointer;
    padding: 8px 16px;
    color: #777;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.filter-btn:hover,
.filter-btn.active {
    color: var(--accent-brown);
    border-bottom: 1px solid var(--accent-brown);
}

.masonry-grid {
    column-count: 3;
    column-gap: 20px;
}

.masonry-item {
    break-inside: avoid;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
    border-radius: 2px;
    cursor: pointer;
}

.masonry-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.masonry-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(44, 44, 44, 0.4);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.masonry-overlay h3 {
    color: #fff;
    font-family: var(--font-serif);
    font-size: 1.5rem;
    letter-spacing: 1px;
    font-weight: 400;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.masonry-item:hover img {
    transform: scale(1.05);
}

.masonry-item:hover .masonry-overlay {
    opacity: 1;
}

.masonry-item:hover .masonry-overlay h3 {
    transform: translateY(0);
}

.masonry-item.hide {
    display: none;
}

.masonry-item.show {
    animation: fadeIn 0.5s ease forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.lightbox-content {
    max-width: 90%;
    max-height: 85vh;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}

.close-lightbox {
    position: absolute;
    top: 20px;
    right: 40px;
    color: #fff;
    font-size: 40px;
    cursor: pointer;
    z-index: 100000;
}

.hero-minimal {
    height: 50vh;
    min-height: 400px;
    background-color: var(--bg-color);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    background: radial-gradient(circle at center, #fbf9f4 0%, #f2f0ea 100%);
}

.minimal-content {
    max-width: 800px;
    padding: 0 20px;
    animation: fadeInUp 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    opacity: 0;
    transform: translateY(30px);
}

.minimal-subtitle {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.8rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--accent-brown);
    margin-bottom: 15px;
}

.minimal-title {
    font-family: var(--font-serif);
    font-size: 5rem;
    font-weight: 300;
    color: var(--text-main);
    line-height: 1;
    margin: 0;
    letter-spacing: -1px;
}

.minimal-line {
    width: 1px;
    height: 60px;
    background-color: var(--accent-brown);
    margin: 30px auto;
    opacity: 0.5;
}

.minimal-desc {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.2rem;
    color: #666;
    letter-spacing: 1px;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.minimal-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 30px;
    padding: 10px 25px;
    border: 1px solid var(--accent-brown);
    color: var(--accent-brown);
    text-decoration: none;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    border-radius: 2px;
    opacity: 0;
    animation: fadeInUp 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) forwards 0.3s;
}

.minimal-back-btn i {
    transition: transform 0.3s ease;
}

.minimal-back-btn:hover {
    background-color: var(--accent-brown);
    color: #fff;
}

.minimal-back-btn:hover i {
    transform: translateX(-5px);
}

.contact-layout {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-top: 50px;
    align-items: flex-start;
}

.contact-info {
    flex: 1;
    max-width: 400px;
}

.info-title {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 20px;
    color: var(--text-main);
}

.info-desc {
    color: #666;
    margin-bottom: 40px;
    line-height: 1.6;
}

.info-item {
    margin-bottom: 30px;
}

.info-item .label {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #888;
    margin-bottom: 5px;
}

.info-item a,
.info-item p {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    color: var(--text-main);
    text-decoration: none;
    transition: color 0.3s;
}

.info-item a:hover {
    color: var(--accent-brown);
}

.info-socials {
    margin-top: 40px;
    display: flex;
    gap: 20px;
}

.info-socials a {
    color: var(--text-main);
    font-size: 1.2rem;
    transition: color 0.3s;
}

.info-socials a:hover {
    color: var(--accent-brown);
}

.contact-form-wrapper {
    flex: 1.2;
    width: 100%;
}

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

.insta-item {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    cursor: pointer;
}

.insta-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.insta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.insta-overlay i {
    color: #fff;
    font-size: 1.5rem;
}

.insta-overlay span {
    color: #fff;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.insta-item:hover .insta-overlay {
    opacity: 1;
}

.insta-item:hover img {
    transform: scale(1.1);
}

.lightbox {
    display: none;
    position: fixed;
    z-index: 999999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    justify-content: center;
    align-items: center;
    flex-direction: column;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    max-width: 90%;
    max-height: 85vh;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
    border: 2px solid #fff;
    animation: zoomIn 0.3s ease;
}

.close-lightbox {
    position: absolute;
    top: 20px;
    right: 40px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
    z-index: 100000;
}

.close-lightbox:hover {
    color: var(--accent-brown);
}

#caption {
    margin-top: 20px;
    color: #ccc;
    font-family: var(--font-serif);
    font-size: 1.2rem;
    text-align: center;
}

@keyframes zoomIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.lightbox.active {
    display: flex !important;
    opacity: 1;
}

.bg-light {
    background-color: var(--bg-color) !important;
}

.offer-header {
    position: relative;
    height: 60vh;
    min-height: 500px;
    background-color: var(--bg-color) !important;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
}

.soft-glow {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.8) 0%, rgba(242, 240, 234, 0) 70%);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
    pointer-events: none;
    animation: glowPulse 6s infinite alternate;
}

@keyframes glowPulse {
    from {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }

    to {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.8;
    }
}

.offer-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 0 20px;
    animation: fadeInUp 1.2s ease-out;
}

.offer-subtitle {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.8rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 20px;
}

.offer-title {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    font-weight: 300;
    line-height: 1.1;
    color: var(--text-main);
    margin-bottom: 30px;
}

.offer-title .italic-text {
    font-style: italic;
    font-family: 'Times New Roman', serif;
    font-weight: 400;
    color: var(--accent-brown);
    display: block;
    margin-top: 5px;
}

.offer-line {
    width: 1px;
    height: 50px;
    background-color: var(--accent-brown);
    margin: 0 auto 30px auto;
    opacity: 0.4;
}

.offer-desc {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.scroll-hint {
    position: absolute;
    bottom: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--accent-brown);
    opacity: 0.6;
    animation: bounce 2s infinite;
}

.scroll-hint span {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-5px);
    }

    60% {
        transform: translateY(-3px);
    }
}

.process-section {
    position: relative;
    overflow: hidden;
    padding-bottom: 100px;
}

.process-header {
    text-align: center;
    margin-bottom: 80px;
}

.process-timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 1px;
    background-color: var(--accent-brown);
    opacity: 0.3;
    transform: translateX(-50%);
    z-index: 1;
}

.timeline-line-fill {
    position: absolute;
    left: 50%;
    top: 0;
    width: 2px;
    background-color: var(--accent-brown);
    transform: translateX(-50%);
    height: 0%;
    z-index: 2;
}

.process-step {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 100px;
    position: relative;
}

.process-step.left {
    flex-direction: row;
}

.process-step.right {
    flex-direction: row-reverse;
}

.step-content {
    width: 45%;
    position: relative;
    z-index: 2;
}

.step-text {
    position: relative;
    z-index: 5;
    background: transparent;
}

.step-text h3 {
    font-family: var(--font-serif);
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--text-main);
}

.step-text p {
    font-family: var(--font-sans);
    color: #666;
    line-height: 1.8;
}

.step-number-bg {
    position: absolute;
    top: -70px;
    font-family: var(--font-serif);
    font-size: 9rem;
    font-weight: 700;
    color: var(--accent-brown);
    opacity: 0.07;
    z-index: -1;
    line-height: 1;
    pointer-events: none;
}

.process-step.left .step-number-bg {
    left: -100px;
    top: -140px;
}

.process-step.right .step-number-bg {
    right: -30px;
}

.step-icon {
    width: 45%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200px;
}

.step-icon i {
    font-size: 6rem;
    color: transparent;
    -webkit-text-stroke: 1.5px var(--accent-brown);
    opacity: 0.8;
    transition: all 0.4s ease;
}

.process-step:hover .step-icon i {
    opacity: 1;
    transform: scale(1.1) rotate(5deg);
    -webkit-text-stroke: 2px var(--accent-brown);
}

.process-step::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background-color: transparent;
    border-radius: 50%;
    border: 3px solid var(--bg-color);
    box-shadow: 0 0 0 1px var(--accent-brown);
    z-index: 5;
    transition: background-color 0.4s ease;
}

.process-step.filled::after {
    background-color: var(--accent-brown);
}

.cursor-dot,
.cursor-outline {
    z-index: 1000000 !important;
}

.lightbox-content {
    cursor: auto !important;
}

.lightbox-content:hover~.cursor-dot,
.lightbox-content:hover~.cursor-outline {
    opacity: 0;
}

.lightbox-content input,
.lightbox-content textarea,
.lightbox-content button {
    cursor: auto !important;
}

.nav-item-dropdown {
    position: relative;
    display: inline-block;
    vertical-align: middle;
}

.nav-item-dropdown>a {
    display: inline-flex !important;
    align-items: center;
    gap: 5px;
    height: 100%;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #ffffff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    min-width: 220px;
    border-radius: 4px;
    z-index: 1000;
    border-top: 3px solid var(--accent-brown);
}

.nav-item-dropdown:hover .dropdown-menu {
    display: block;
    animation: fadeInMenu 0.3s ease;
}

.dropdown-menu li {
    display: block;
    width: 100%;
}

.dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    color: var(--text-main);
    font-size: 0.95rem;
    text-transform: none;
    transition: all 0.3s;
    white-space: nowrap;
}

.dropdown-menu li a:hover {
    background-color: #f9f9f9;
    color: var(--accent-brown);
    padding-left: 25px;
}

@keyframes fadeInMenu {
    from {
        opacity: 0;
        transform: translate(-50%, 10px);
    }

    to {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}

.dropdown-menu li:last-child {
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    margin-top: 6px;
    padding-top: 6px;
}

.dropdown-menu li:last-child a {
    color: #a47864;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.dropdown-menu li:last-child a:hover {
    color: #8c6553;
    background-color: transparent;
    padding-left: 25px;
}

.editorial-section {
    padding: 100px 20px;
    overflow: hidden;
}

.intro-block {
    max-width: 700px;
    margin: 0 auto 80px auto;
}

.subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 3px;
    color: #a89f91;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.main-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-top: 20px;
}

.custom-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto 80px auto;
}

.timeline-center-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 1px;
    background-color: #d8c8bd;
    transform: translateX(-50%);
}

.timeline-row {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 50%;
    margin-bottom: 80px;
    position: relative;
}

.timeline-row.left-text {
    justify-content: flex-start;
    left: 50%;
    padding-left: 60px;
}

.timeline-row.right-text {
    padding-right: 60px;
}

.timeline-marker {
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #f6f5f1;
    border: 1px solid #c9a997;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
}

.marker-dot {
    width: 8px;
    height: 8px;
    background-color: #c9a997;
    border-radius: 50%;
}

.timeline-row.right-text .timeline-marker {
    right: -10px;
}

.timeline-row.left-text .timeline-marker {
    left: -10px;
}

.timeline-box {
    position: relative;
    max-width: 380px;
}

.timeline-row.right-text .timeline-box {
    text-align: right;
}

.timeline-row.left-text .timeline-box {
    text-align: left;
}

.timeline-row.right-text .huge-number {
    right: -40px;
}

.timeline-row.left-text .huge-number {
    left: -40px;
}

.timeline-box h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: #333;
    position: relative;
    z-index: 1;
    margin-bottom: 15px;
    font-weight: 400;
    letter-spacing: 1px;
}

.timeline-box p {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    line-height: 1.8;
    color: #555;
    position: relative;
    z-index: 1;
}

.doubts-block {
    max-width: 800px;
    margin: 80px auto 0 auto;
    background: #ffffff;
    padding: 60px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.02);
    border-radius: 4px;
}

.doubts-block .italic-text {
    font-style: italic;
    color: #777;
    font-size: 1.05rem;
    margin-bottom: 30px;
}

.doubts-block p {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.final-cta {
    margin-top: 50px;
}

.highlight-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem !important;
    color: #333 !important;
    margin-bottom: 30px !important;
    line-height: 1.5 !important;
}

.small-note {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem !important;
    color: #999 !important;
    margin-top: 15px !important;
}

@media (max-width: 768px) {
    .timeline-center-line {
        left: 20px;
    }

    .timeline-row {
        width: 100%;
        justify-content: flex-start !important;
        padding-left: 60px !important;
        padding-right: 0 !important;
        left: 0 !important;
    }

    .timeline-box {
        text-align: left !important;
        max-width: 100%;
    }

    .timeline-marker {
        left: 10px !important;
        right: auto !important;
    }

    .timeline-row.right-text .huge-number,
    .timeline-row.left-text .huge-number {
        left: -10px;
        right: auto;
    }

    .doubts-block {
        padding: 40px 20px;
    }

    .huge-number {
        font-size: 7rem;
        top: -50px;
    }
}

.offer-extra-details {
    margin-top: 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    border-top: 1px solid #d8c8bd;
    padding-top: 60px;
    padding-left: 30px;
    padding-right: 30px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
}

.extra-description p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 25px;
}

.offer-benefits-box h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: #333;
    margin-bottom: 25px;
    font-weight: 400;
}

.benefits-list {
    list-style: none;
    padding: 0;
}

.benefits-list li {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
    line-height: 1.6;
}

.benefits-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #c9a997;
    font-size: 1.2rem;
}

.final-offer-cta {
    margin-top: 40px;
}

.link-with-arrow {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 2px;
    color: #333;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.link-with-arrow:hover {
    color: #c9a997;
    padding-left: 10px;
}

@media (max-width: 1024px) {
    .offer-extra-details {
        grid-template-columns: 1fr;
        margin-top: 50px;
        padding-top: 40px;
        padding-left: 35px;
        padding-right: 30px;
        gap: 30px;
    }

    .extra-description p {
        font-size: 0.95rem;
    }

    .offer-benefits-box h3 {
        font-size: 1.2rem;
    }

    .link-with-arrow {
        font-size: 0.8rem;
        letter-spacing: 1.5px;
    }
}

.masonry-item {
    transition: opacity 0.6s ease-in-out, transform 0.6s ease-in-out;
    opacity: 1;
    transform: scale(1);
}

.masonry-item.animating-out {
    opacity: 0;
    transform: scale(0.95);
}

@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
        width: 100%;
    }

    .nav-container {
        padding: 0 20px;
    }

    .hamburger {
        display: block;
        cursor: pointer;
        z-index: 2000;
        position: relative;
    }

    .hamburger span {
        display: block;
        width: 30px;
        height: 2px;
        background-color: var(--text-main);
        margin: 6px 0;
        transition: all 0.4s ease;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: #f2f0ea;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transform: translateY(-100%);
        transition: transform 0.4s ease-in-out;
        z-index: 1500;
        padding: 0;
        margin: 0;
        overflow-y: auto;
    }

    .nav-links.active {
        transform: translateY(0);
    }

    .nav-links li {
        width: 100%;
        text-align: center;
        margin: 15px 0;
    }

    .nav-links li a {
        font-size: 1.3rem;
        display: block;
    }

    .process-timeline {
        padding-left: 0;
        position: relative;
    }

    .timeline-line {
        left: 20px !important;
        transform: none !important;
        width: 1px !important;
    }

    .process-step,
    .process-step.left,
    .process-step.right {
        display: flex;
        flex-direction: column-reverse !important;
        align-items: flex-start !important;
        margin-left: 60px !important;
        margin-bottom: 60px !important;
        margin-right: 20px !important;
        width: auto !important;
        position: relative;
    }

    .step-content,
    .step-icon {
        width: 100% !important;
        text-align: left !important;
    }

    .step-icon {
        height: auto !important;
        justify-content: flex-start !important;
        margin-bottom: 15px !important;
    }

    .step-icon i {
        font-size: 3.5rem !important;
        -webkit-text-stroke: 1px var(--accent-brown);
    }

    .process-step::after {
        left: 20px !important;
        top: 35px !important;
        transform: translateX(-50%) !important;
        background-color: var(--accent-brown);
        border: 2px solid var(--bg-color);
        z-index: 6;
    }

    .step-number-bg {
        font-size: 5rem !important;
        top: -20px !important;
        left: -40px !important;
        opacity: 0.1 !important;
        position: absolute;
    }

    .offer-nav-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .insta-grid,
    .preview-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

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

    .pricing-wrapper {
        flex-direction: column;
        align-items: center;
    }

    .pricing-card {
        width: 100%;
        margin-bottom: 20px;
    }

    .contact-layout,
    .about-wrapper {
        flex-direction: column;
        gap: 40px;
    }

    .hero h1 {
        font-size: 2.2rem;
        margin-top: 20px;
    }

    .hero-minimal .minimal-title {
        font-size: 3rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .masonry-grid {
        column-count: 2;
        column-gap: 15px;
    }
}

@media (max-width: 1024px) {
    .container {
        padding: 0 20px;
        width: 100%;
    }

    .nav-container {
        padding: 0 20px;
    }

    .hamburger {
        display: block;
        cursor: pointer;
        z-index: 2000;
        position: relative;
    }

    .hamburger span {
        display: block;
        width: 30px;
        height: 2px;
        background-color: var(--text-main);
        margin: 6px 0;
        transition: all 0.4s ease;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: #f2f0ea;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transform: translateY(-100%);
        transition: transform 0.4s ease-in-out;
        z-index: 1500;
        padding: 0;
        margin: 0;
        overflow-y: auto;
    }

    .nav-links.active {
        transform: translateY(0);
    }

    .nav-links li {
        width: 100%;
        text-align: center;
        margin: 15px 0;
    }

    .nav-links li a {
        font-size: 1.3rem;
        display: block;
    }

    .process-timeline {
        padding-left: 0;
        position: relative;
    }

    .timeline-line {
        left: 20px !important;
        transform: translateX(-50%) !important;
        width: 1px !important;
    }

    .timeline-line-fill {
        left: 20px !important;
        transform: translateX(-50%) !important;
        width: 2px !important;
    }

    .process-step,
    .process-step.left,
    .process-step.right {
        display: flex;
        flex-direction: column-reverse !important;
        align-items: flex-start !important;
        margin-left: 60px !important;
        margin-bottom: 60px !important;
        margin-right: 0 !important;
        position: relative;
    }

    .step-content,
    .step-icon {
        width: 100% !important;
        text-align: left !important;
    }

    .step-icon {
        height: auto !important;
        justify-content: flex-start !important;
        margin-bottom: 15px !important;
        position: relative;
        z-index: 2;
    }

    .step-icon i {
        font-size: 3.5rem !important;
        -webkit-text-stroke: 1px var(--accent-brown);
    }

    .process-step::after {
        content: '';
        left: -40px !important;
        top: 35px !important;
        transform: translate(-50%, -50%) !important;
        width: 12px;
        height: 12px;
        background-color: transparent !important;
        border: 3px solid var(--bg-color) !important;
        box-shadow: 0 0 0 1px var(--accent-brown) !important;
        border-radius: 50%;
        z-index: 6;
        position: absolute;
        transition: background-color 0.4s ease;
    }

    .process-step.filled::after {
        background-color: var(--accent-brown) !important;
    }

    .step-number-bg {
        position: absolute;
        font-size: 5rem !important;
        top: -10px !important;
        left: auto !important;
        right: 0 !important;
        opacity: 0.1 !important;
        z-index: 0;
        text-align: right !important;
    }

    .offer-nav-grid,
    .insta-grid,
    .preview-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .pricing-wrapper {
        flex-direction: column;
    }

    .pricing-card {
        width: 100%;
        margin-bottom: 20px;
    }

    .contact-layout,
    .about-wrapper {
        flex-direction: column;
        gap: 40px;
    }

    .hero h1 {
        font-size: 2.2rem;
        margin-top: 20px;
    }

    .hero-minimal .minimal-title {
        font-size: 3rem;
    }

    .masonry-grid {
        column-count: 1;
    }
}

@media (min-width: 1025px) {

    html,
    body,
    a,
    button,
    input,
    textarea,
    .masonry-item,
    .preview-item {
        cursor: none !important;
    }

    .cursor-dot,
    .cursor-outline {
        display: block !important;
    }
}

@media (max-width: 1024px) {
    .nav-item-dropdown {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .dropdown-menu {
        position: static !important;
        display: none;
        width: 100% !important;
        margin: 0 !important;
        border: none !important;
        box-shadow: none !important;
        background-color: transparent !important;
        text-align: center !important;
        padding-top: 10px;
        transform: none !important;
    }

    .dropdown-menu li {
        display: block;
        width: 100%;
        text-align: center;
    }

    .dropdown-menu li a {
        display: block !important;
        font-size: 1rem;
        color: var(--accent-brown);
        padding: 10px 0;
        text-align: center !important;
        width: 100%;
    }

    .nav-item-dropdown:hover .dropdown-menu {
        display: none !important;
    }

    .nav-item-dropdown.open .dropdown-menu {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        animation: slideDownFade 0.4s ease forwards;
    }

    .nav-item-dropdown.open>a i {
        transform: rotate(180deg);
        transition: transform 0.3s ease;
    }
}

.menu-separator {
    border-top: 1px solid #eee;
    margin-top: 5px;
    padding-top: 5px;
}

@media (max-width: 1024px) {
    .menu-separator {
        border-top: 1px solid rgba(168, 140, 119, 0.4);
        width: 80%;
        margin: 15px auto 0;
        padding-top: 15px;
        display: block;
    }
}

.menu-separator {
    border-top: 1px solid #eee;
    margin-top: 5px;
    padding-top: 5px;
}

@media (max-width: 1024px) {
    .menu-separator {
        border-top: 1px solid rgba(168, 140, 119, 0.4);
        width: 80%;
        margin: 15px auto 0;
        padding-top: 15px;
        display: block;
    }
}

body::-webkit-scrollbar {
    display: none;
}

html {
    scrollbar-width: none;
}

body {
    -ms-overflow-style: none;
}

.privacy-wrapper {
    margin-top: 25px;
    text-align: left;
}

.privacy-link {
    font-family: var(--font-sans);
    font-size: 13px;
    color: var(--text-main);
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease-in-out;
    opacity: 0.8;
}

.privacy-link:hover {
    color: var(--accent-brown);
    transform: scale(1.1);
    text-decoration: underline;
    opacity: 1;
    cursor: pointer;
}

.form-checkbox-wrapper {
    margin-top: 15px;
    margin-bottom: 30px;
    text-align: left;
}

.custom-checkbox {
    display: inline-flex;
    align-items: center;
    position: relative;
    padding-left: 28px;
    cursor: none;
    user-select: none;
}

.custom-checkbox input {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 2;
    cursor: pointer;
}

.checkmark {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 16px;
    width: 16px;
    background-color: transparent;
    border: 1px solid #b0b0b0;
    transition: all 0.2s ease;
}

.label-text {
    font-family: var(--font-sans);
    font-size: 11px;
    color: #666666;
    letter-spacing: 0.5px;
}

.label-text a {
    color: var(--text-main);
    text-decoration: underline;
    font-weight: 500;
    position: relative;
    z-index: 10;
    cursor: pointer;
}

.custom-checkbox:hover input~.checkmark {
    border-color: var(--accent-brown);
}

.custom-checkbox input:checked~.checkmark {
    background-color: var(--accent-brown);
    border-color: var(--accent-brown);
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.custom-checkbox input:checked~.checkmark:after {
    display: block;
}

.custom-checkbox .checkmark:after {
    left: 5px;
    top: 2px;
    width: 4px;
    height: 8px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.ba-slider {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 60px auto;
    overflow: hidden;
    --position: 50%;
    cursor: col-resize;
}

.ba-image-container {
    width: 100%;
    height: auto;
    display: block;
}

.ba-image-container img {
    display: block;
    width: 100%;
    height: auto;
    user-select: none;
}

.ba-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    clip-path: inset(0 calc(100% - var(--position)) 0 0);
}

.ba-range {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 20;
    cursor: col-resize;
    margin: 0;
}

.ba-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: var(--position);
    width: 2px;
    background-color: #fff;
    z-index: 10;
    pointer-events: none;
    filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.3));
}

.ba-handle-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--accent-brown);
    border: 2px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.arrows-icon {
    color: #fff;
    font-style: normal;
    font-size: 18px;
    line-height: 1;
}

.carousel-wrapper {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 8px;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
}

.carousel-slide {
    min-width: 100%;
    box-sizing: border-box;
}

.ba-slider {
    position: relative;
    width: 100%;
    margin: 0;
    overflow: hidden;
    --position: 50%;
    cursor: col-resize;
    aspect-ratio: 16/9;
}

.ba-image-container {
    width: 100%;
    height: 100%;
    display: block;
}

.ba-image-container img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    user-select: none;
}

.ba-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    clip-path: inset(0 calc(100% - var(--position)) 0 0);
}

.ba-range {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 20;
    cursor: col-resize;
    margin: 0;
    touch-action: pan-y;
}

.ba-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: var(--position);
    width: 2px;
    background-color: #fff;
    z-index: 10;
    pointer-events: none;
    filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.3));
}

.ba-handle-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--accent-brown);
    border: 2px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.arrows-icon {
    color: #fff;
    font-style: normal;
    font-size: 18px;
    line-height: 1;
}

.ba-label {
    position: absolute;
    top: 20px;
    color: #fff;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 2px;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 5px 10px;
    border-radius: 4px;
    z-index: 5;
    pointer-events: none;
    user-select: none;
    transition: opacity 0.2s ease;
}

.label-after {
    right: 20px;
    opacity: calc((100% - var(--position)) * 10);
}

.label-before {
    left: 20px;
    opacity: calc(var(--position) * 10);
}

.carousel-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.9);
    color: #333;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 30;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.carousel-nav-btn:hover {
    background-color: #fff;
    transform: translateY(-50%) scale(1.1);
}

.prev-btn {
    left: 15px;
}

.next-btn {
    right: 15px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    background-color: #555;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}

.carousel-dot.active {
    background-color: var(--accent-brown);
    transform: scale(1.3);
}

.reveal-element {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
    will-change: opacity, transform;
}

.reveal-element.active {
    opacity: 1;
    transform: translateY(0);
}

.delay-200 {
    transition-delay: 0.2s;
}

.voucher-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #fff;
    padding: 60px;
    margin: 40px auto;
    max-width: 1100px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(164, 120, 100, 0.1);
    gap: 50px;
    position: relative;
    overflow: hidden;
}

.voucher-content {
    flex: 1;
    z-index: 2;
}

.voucher-subtitle {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: #a47864;
    margin-bottom: 20px;
    font-weight: 400;
    font-style: italic;
}

.voucher-content p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 30px;
    font-size: 15px;
    max-width: 450px;
}

.voucher-visual {
    flex: 1;
    display: flex;
    justify-content: center; /* Centruje grupę zdjęć w dostępnym miejscu */
    align-items: center;
    position: relative;
    min-height: 450px; 
    padding: 20px;
}

/* Główne "pudełko" na zdjęcia - to ono trzyma je w kupie */
.photo-gallery-wrapper {
    position: relative;
    width: 400px; /* Stała szerokość grupy zdjęć */
    height: 350px; /* Stała wysokość grupy zdjęć */
}

/* Wspólne style dla ramek */
.photo-container {
    position: absolute;
    background: #fff;
    padding: 8px; /* Biała ramka wokół zdjęcia */
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
    border-radius: 2px;
    overflow: hidden;
}

.photo-container img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 1. Zdjęcie po lewej (pionowe, np. noworodek) */
.photo-small {
    width: 130px;
    height: 180px;
    left: 0;
    top: 60px;
    z-index: 1;
    transform: rotate(-6deg);
}

/* 2. Zdjęcie na górze po prawej (pionowe) */
.photo-main-bottom {
    width: 250px;
    height: 210px;
    right: 10px;
    top: -20px;
    z-index: 2;
    transform: rotate(4deg);
}

/* 3. Główne zdjęcie z napisem "Voucher" (poziome, na środku/dole) */
.photo-main-top {
    width: 240px;
    height: 160px;
    left: 100px; /* Nakłada się na oba boczne zdjęcia */
    bottom: 20px;
    z-index: 3; /* Najwyżej */
    transform: rotate(-2deg);
}

/* Stylizacja tekstu na zdjęciu Voucher */
.photo-text-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.15); /* Subtelne rozjaśnienie zdjęcia pod tekstem */
    color: #8d736a;
    pointer-events: none;
}

.photo-text-overlay .mockup-logo {
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.photo-text-overlay .mockup-title {
    font-family: 'Great Vibes', cursive;
    font-size: 32px;
    margin: 5px 0;
}

.photo-text-overlay .mockup-line {
    width: 30px;
    height: 1px;
    background: #8d736a;
}

/* Poprawka dla kontenera głównego, żeby zdjęcia nie ucinało */
.voucher-banner {
    display: flex;
    align-items: center;
    overflow: visible; /* Pozwala zdjęciom lekko wyjść poza biały boks jeśli trzeba */
}

.why-important-section {
    padding: 80px 20px;
}

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

.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.why-important-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #333;
    font-weight: 400;
    margin-bottom: 15px;
}

.center-line {
    width: 50px;
    height: 1px;
    background-color: #c9a997;
    margin: 0 auto 40px auto;
}

.text-content p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.text-content p:last-of-type {
    margin-bottom: 50px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-buttons a {
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 2px;
    padding: 15px 35px;
    transition: all 0.3s ease;
}

@media (max-width: 900px) {
    .voucher-banner {
        flex-direction: column;
        padding: 40px 20px;
        text-align: center;
        gap: 40px;
    }

    .voucher-content .section-title {
        text-align: center !important;
    }

    .voucher-content p {
        margin: 0 auto 30px auto;
    }

    .voucher-card-mockup {
        width: 280px;
        height: 180px;
    }
}

@media (max-width: 600px) {
  .photo-gallery-wrapper {
    width: 320px;
    height: 280px; 
    margin: 0 auto; 
  }
  .photo-container {
    padding: 6px;
  }
  .photo-small {
    width: 90px;
    height: 140px;
    left: 10px;
    top: 60px;
    transform: rotate(-5deg);
  }
  .photo-main-bottom {
    width: 200px;
    height: 160px;
    right: 10px;
    top: 10px;
    transform: rotate(3deg);
  }
  .photo-main-top {
    width: 220px;
    height: 140px;
    left: 50px;
    bottom: 10px;
    transform: rotate(-1deg);
  }

  .photo-text-overlay {
  }

  .photo-text-overlay .mockup-logo {
    font-size: 9px;
    letter-spacing: 1.5px;
  }

  .photo-text-overlay .mockup-title {
    font-size: 24px;
    margin: 3px 0;
  }

  .photo-text-overlay .mockup-line {
    width: 25px;
  }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

.page-title {
    font-family: var(--font-serif);
    font-size: 3rem;
    text-align: center;
    color: var(--accent-brown);
    margin-bottom: 20px;
    margin-top: 60px;
}

.page-subtitle {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
    color: #666;
    font-size: 1.1rem;
}

.info-box {
    background: #fff;
    border: 1px solid rgba(164, 120, 100, 0.2);
    padding: 30px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
    position: relative;
}

.info-box::before {
    content: '★';
    display: block;
    color: var(--accent-brown);
    font-size: 20px;
    margin-bottom: 10px;
}

.info-box strong {
    color: var(--accent-brown);
}

.packages-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 80px;
}

.voucher-card {
    background: #fff;
    flex: 1;
    min-width: 260px;
    max-width: 300px;
    padding: 40px 25px;
    text-align: center;
    border: 1px solid #eee;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.voucher-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(164, 120, 100, 0.15);
    border-color: var(--accent-brown);
}

.voucher-card.featured {
    border-top: 4px solid var(--accent-brown);
    background-color: #fff;
}

.pkg-name {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #222;
}

.pkg-price {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--accent-brown);
    margin-bottom: 20px;
    display: block;
}

.pkg-desc {
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 20px;
    list-style: none;
    padding: 0;
    text-align: left;
    padding-left: 10px;
}

.pkg-desc li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
}

.pkg-desc li::before {
    content: '•';
    color: var(--accent-brown);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.order-section {
    background-color: #fff;
    padding: 60px 40px;
    max-width: 700px;
    margin: 0 auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    border-top: 1px solid var(--accent-brown);
}

.form-title {
    font-family: var(--font-serif);
    text-align: center;
    font-size: 2rem;
    margin-bottom: 30px;
    color: #333;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    background: #fafafa;
    font-family: inherit;
    font-size: 1rem;
    box-sizing: border-box;
    transition: 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-brown);
    background: #fff;
}

.btn-submit {
    background-color: var(--accent-brown);
    color: #fff;
    border: none;
    padding: 15px 30px;
    font-size: 1rem;
    cursor: pointer;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: 0.3s;
    margin-top: 10px;
    font-family: var(--font-sans);
}

.btn-submit:hover {
    background-color: #8a6252;
}

@media(max-width: 768px) {
    .page-title {
        font-size: 2.2rem;
    }

    .order-section {
        padding: 40px 20px;
    }

    .packages-grid {
        flex-direction: column;
        align-items: center;
    }

    .voucher-card {
        width: 100%;
        max-width: 100%;
    }
}

.btn-back {
    position: absolute;
    top: 40px;
    left: 50px;
    text-decoration: none;
    color: #333;
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 1000;
    transition: all 0.3s ease;
}

.btn-back .arrow {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.btn-back:hover {
    color: var(--accent-brown);
}

.btn-back:hover .arrow {
    transform: translateX(-5px);
}

@media (max-width: 768px) {
    .btn-back {
        top: 20px;
        left: 20px;
        font-size: 11px;
    }
}

@media screen and (max-width: 768px) {

    input,
    select,
    textarea,
    .form-control {
        font-size: 16px !important;
    }
}

#offer .container {
    position: relative;
    padding-bottom: 60px;
}

.offer-cta-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 60px;
    padding-top: 20px;
    width: 100%;
}

.cta-left .btn-outline {
    white-space: nowrap;
}

.cta-right .voucher-cta-link {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
    text-decoration: none;
    z-index: 20;
}

.v-sub {
    font-family: 'Helvetica', 'Arial', sans-serif;
    font-size: 11px;
    letter-spacing: 2px;
    color: #999;
    margin-bottom: 5px;
    transition: color 0.4s ease;
}

.v-main {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: #1a1a1a;
    position: relative;
    padding-bottom: 5px;
}

.v-main::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0%;
    height: 1px;
    background-color: #1a1a1a;
    transition: width 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.voucher-cta-link:hover .v-sub {
    color: #a38a7a;
}

.voucher-cta-link:hover .v-main::after {
    width: 100%;
}

.v-main i {
    font-style: italic;
    font-weight: 400;
    color: #a38a7a;
}

@media (max-width: 768px) {
    .offer-cta-row {
        flex-direction: row; /* Zmiana na poziomy układ */
        justify-content: space-between;
        align-items: center;
        gap: 10px;
        margin-top: 40px;
    }

    .cta-right .voucher-cta-link {
        align-items: flex-end;
        text-align: right;
    }

    .v-sub {
        font-size: 12px;
    }

    .v-main {
        font-size: 18px;
    }
}

.voucher-main i {
    font-style: italic;
    font-weight: 400;
    color: #a38a7a;
}

.voucher-main::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0%;
    height: 1px;
    background-color: #1a1a1a;
    transition: width 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.typography-voucher-link:hover .voucher-sub {
    color: #a38a7a;
}

.typography-voucher-link:hover .voucher-main::after {
    width: 100%;
}

.cookie-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    display: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.cookie-overlay.show {
    opacity: 1;
}

.cookie-modal {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: var(--bg-color, #fff);
    padding: 30px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    z-index: 9999;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
    display: none;
    max-height: 90vh;
    overflow-y: auto;
    opacity: 0;
    transform: translateY(100%);
    transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.cookie-modal.show {
    opacity: 1;
    transform: translateY(0);
}

.cookie-close {
    position: absolute;
    top: 20px;
    right: 25px;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #999;
    line-height: 1;
    padding: 5px;
    transition: all 0.3s ease;
    z-index: 100;
}

.cookie-close:hover {
    color: var(--accent-brown);
    transform: scale(1.1);
}

@media (min-width: 768px) {
    .cookie-overlay {
        display: none !important;
    }

    .cookie-modal {
        bottom: 20px;
        right: 20px;
        left: auto;
        width: 380px;
        border-radius: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        transform: translateY(50px);
    }

    .cookie-modal.show {
        transform: translateY(0);
    }

    .cookie-modal h2 {
        font-size: 1rem;
    }

    .cookie-modal p {
        font-size: 0.85rem;
        text-align: left;
    }
}

.cookie-buttons {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.btn-accept {
    background: var(--accent-brown);
    color: white;
    padding: 12px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    transition: filter 0.3s ease, transform 0.1s ease;
}

.btn-accept:hover {
    filter: brightness(85%);
}

.btn-accept:active {
    filter: brightness(75%);
    transform: scale(0.98);
}

.btn-secondary {
    background: var(--bg-white);
    color: var(--text-main);
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.8rem;
}

.footer-link {
    color: #a47864;
    text-decoration: underline; 
    font-weight: bold; 
    transition: color 0.3s ease; 
}

.footer-link:hover {
    color: #8a6150;
}

.cookie-footer {
    margin-top: 15px;
    font-size: 0.75rem;
    text-align: center;
}

.cookie-footer a {
    color: var(--accent-brown);
    margin: 0 5px;
}

img.lazy {
    opacity: 0;
    transition: opacity 0.8s ease;
    background: #f0f0f0;
    min-height: 200px;
    width: 100%;
    display: block;
}

img.lazy.loaded {
    opacity: 1;
}

.load-more-wrapper {
    text-align: center;
    padding: 40px 0;
}

#load-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 30px;
    padding: 12px 30px;
    /* Zmiana: Tło jest teraz brązowe, a tekst biały */
    background-color: var(--accent-brown);
    color: #fff;
    border: 1px solid var(--accent-brown);
    
    text-decoration: none;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    border-radius: 2px;
    opacity: 0;
    animation: fadeInUp 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) forwards 0.3s;
}

#load-more-btn i {
    transition: transform 0.3s ease;
}

#load-more-btn:hover {
    /* Zmiana: Po najechaniu tło staje się białe (lub przezroczyste), a tekst brązowy */
    background-color: #fff; 
    color: var(--accent-brown);
}

#load-more-btn:hover i {
    transform: translateX(-5px);
}

/* ==========================================================================
   SCROLL TO TOP BUTTON
   ========================================================================== */
.scroll-to-top {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 45px;
    height: 45px;
    background-color: var(--bg-color);
    border: 1px solid var(--accent-brown);
    color: var(--accent-brown);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, transform 0.3s ease, background-color 0.3s ease, color 0.3s ease;
    transition-delay: 0s;
    z-index: 1000;
}

.scroll-to-top:hover~.cursor-dot {
    display: none !important;
}

.scroll-to-top.show {
    opacity: 0.8;
    visibility: visible;
}

.scroll-to-top:hover {
    background-color: var(--accent-brown);
    color: #fff;
    opacity: 1;
    transform: translateY(-5px);
}

@media (max-width: 768px) {
    .scroll-to-top {
        bottom: 25px;
        right: 25px;
        width: 40px;
        height: 40px;
    }
}

/* ==========================================================================
   NAVBAR SHRINK ON SCROLL
   ========================================================================== */
.navbar.scrolled {
    padding: 10px 0 !important;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
    background-color: rgba(242, 240, 234, 0.85) !important;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

.navbar.scrolled .logo-img {
    height: 70px !important;
}

/* ==========================================================================
   RESPONSIVE TITLES FIX
   ========================================================================== */
@media (max-width: 1024px) {
    .minimalist-title {
        font-size: 1.8rem;
        letter-spacing: 6px;
    }
}

@media (max-width: 768px) {
    .minimalist-title {
        font-size: 1.2rem;
        letter-spacing: 2px;
    }

    @media (max-width: 480px) {
        .minimalist-title {
            font-size: 1.0rem;
            letter-spacing: 2px;
        }
    }
}