/* =============================================
   DOMEK BRENNA — Premium Editorial Style
   Inspiracja: magazyn SIECI + góry
   ============================================= */

/* ----- ZMIENNE ----- */
:root {
    --color-bg-dark: #1a1a1a;
    --color-bg-forest: #1a2e1a;
    --color-bg-light: #FAF8F5;
    --color-white: #FFFFFF;
    --color-accent: #C17817;
    --color-accent-light: #D4922E;
    --color-text-dark: #1a1a1a;
    --color-text-light: #FAF8F5;
    --color-text-gray: #888888;
    --color-text-medium: #555555;
    --color-border: #e0e0e0;
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ----- RESET ----- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-sans);
    font-size: 1.05rem;
    line-height: 1.8;
    letter-spacing: 0.01em;
    color: var(--color-text-dark);
    background-color: var(--color-bg-light);
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

/* ----- PASEK POSTĘPU ----- */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--color-accent);
    z-index: 10000;
    transition: width 0.05s linear;
}

/* ----- TYPOGRAFIA ----- */
h1, h2, h3, h4 {
    font-family: var(--font-serif);
    font-weight: 700;
    line-height: 1.15;
}

h1 {
    font-size: clamp(3rem, 6vw, 5.5rem);
    line-height: 1.1;
}

h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
}

h3 {
    font-size: clamp(1.2rem, 2vw, 1.5rem);
}

em.accent,
.accent {
    color: var(--color-accent);
    font-style: italic;
}

.section-label {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-text-gray);
    margin-bottom: 24px;
}

.section-label-light {
    color: rgba(255, 255, 255, 0.5);
}

.section-heading {
    margin-bottom: 40px;
}

.section-heading-light {
    color: var(--color-white);
}

.section-subtext {
    font-size: 1.1rem;
    color: var(--color-text-medium);
    margin-bottom: 60px;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ----- NAWIGACJA ----- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    z-index: 1000;
    transition: background-color 0.4s ease, box-shadow 0.4s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-white);
    transition: color 0.4s ease;
    white-space: nowrap;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-link {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.85);
    transition: color 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-accent);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--color-accent);
}

.nav-cta {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    background: var(--color-accent);
    color: var(--color-white);
    padding: 10px 24px;
    transition: background-color 0.3s ease;
}

.nav-cta:hover {
    background: var(--color-accent-light);
}

/* Nawigacja po przewinięciu */
.nav-scrolled {
    background-color: var(--color-white);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
}

.nav-scrolled .nav-logo {
    color: var(--color-text-dark);
}

.nav-scrolled .nav-link {
    color: var(--color-text-dark);
}

.nav-scrolled .nav-link:hover {
    color: var(--color-accent);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 30px;
    height: 30px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1100;
    padding: 0;
}

.hamburger span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--color-white);
    transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.4s ease;
}

.nav-scrolled .hamburger span {
    background: var(--color-text-dark);
}

.menu-open .hamburger span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
    background: var(--color-white);
}

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

.menu-open .hamburger span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
    background: var(--color-white);
}

/* Menu mobilne */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 26, 26, 0.97);
    z-index: 1050;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.menu-open .mobile-menu {
    opacity: 1;
    pointer-events: all;
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.mobile-menu-link {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-white);
    transition: color 0.3s ease;
}

.mobile-menu-link:hover {
    color: var(--color-accent);
}

.mobile-menu-cta {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    background: var(--color-accent);
    color: var(--color-white);
    padding: 14px 36px;
    margin-top: 20px;
    transition: background-color 0.3s ease;
}

.mobile-menu-cta:hover {
    background: var(--color-accent-light);
}

/* ----- HERO ----- */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(0, 0, 0, 0.2) 50%,
        rgba(0, 0, 0, 0.3) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 24px 12vh;
    max-width: 900px;
}

.hero-label {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 24px;
}

.hero-title {
    color: var(--color-white);
    margin-bottom: 20px;
}

.hero-subtitle {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.05em;
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Wskaźnik przewijania */
.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-accent);
    animation: lineDown 2s ease-in-out infinite;
}

@keyframes lineDown {
    0% { top: -100%; }
    100% { top: 100%; }
}

/* Kropki nawigacyjne */
.hero-dots {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 2;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.4);
    background: transparent;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    cursor: pointer;
}

.dot.active,
.dot:hover {
    background: var(--color-accent);
    border-color: var(--color-accent);
}

/* ----- PRZYCISKI ----- */
.btn {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    padding: 14px 36px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-align: center;
}

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

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

.btn-outline-white {
    background: transparent;
    color: var(--color-white);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.btn-outline-white:hover {
    border-color: var(--color-white);
    background: rgba(255, 255, 255, 0.1);
}

.btn-submit {
    padding: 16px 48px;
    margin-top: 20px;
}

/* ----- LINK ZE STRZAŁKĄ ----- */
.link-arrow {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: var(--color-text-dark);
    margin-top: 40px;
    transition: color 0.3s ease;
}

.link-arrow:hover {
    color: var(--color-accent);
}

.link-arrow-light {
    color: rgba(255, 255, 255, 0.6);
}

.link-arrow-light:hover {
    color: var(--color-accent);
}

/* ----- SEKCJE ----- */
.section {
    padding: 120px 0;
}

.section-light {
    background: var(--color-bg-light);
    color: var(--color-text-dark);
}

.section-dark {
    background: var(--color-bg-dark);
    color: var(--color-text-light);
}

/* ----- O DOMKU ----- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text p {
    color: var(--color-text-medium);
    margin-bottom: 20px;
}

.about-text p:last-child {
    margin-bottom: 0;
}

.about-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

/* ----- WIELKI CYTAT ----- */
.section-quote {
    padding: 150px 0;
}

.big-quote {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.big-quote p {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4.5vw, 4rem);
    font-weight: 700;
    line-height: 1.3;
    color: var(--color-text-dark);
}

.big-quote cite {
    display: block;
    margin-top: 40px;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-style: normal;
    letter-spacing: 0.05em;
    color: var(--color-text-gray);
}

/* ----- UDOGODNIENIA ----- */
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.amenity-item {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.amenity-item h3 {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 8px;
}

.amenity-item p {
    font-size: 0.9rem;
    color: var(--color-text-gray);
    line-height: 1.5;
}

/* ----- GALERIA ----- */
.gallery-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 8px;
    margin-top: 50px;
}

.gallery-item {
    overflow: hidden;
    position: relative;
}

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

.gallery-item:hover img {
    transform: scale(1.03);
}

.gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(193, 120, 23, 0);
    transition: background 0.5s ease;
    pointer-events: none;
}

.gallery-item:hover::after {
    background: rgba(193, 120, 23, 0.1);
}

.gallery-item-large {
    grid-row: 1 / 3;
    grid-column: 1;
}

.gallery-item-large img {
    min-height: 500px;
}

.gallery-item:not(.gallery-item-large) img {
    min-height: 245px;
}

/* ----- PRZERWA Z PARALLAXEM ----- */
.parallax-break {
    position: relative;
    width: 100%;
    height: 50vh;
    min-height: 350px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.parallax-bg {
    position: absolute;
    top: -20%;
    left: 0;
    width: 100%;
    height: 140%;
    background-size: cover;
    background-position: center;
    will-change: transform;
}

.parallax-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.parallax-text {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 24px;
}

.parallax-text p {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--color-white);
    line-height: 1.3;
}

/* ----- CENNIK ----- */
.pricing-cards {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin-bottom: 60px;
}

.pricing-card {
    flex: 1;
    max-width: 320px;
    border: 1px solid var(--color-border);
    padding: 50px 40px;
    text-align: center;
    position: relative;
    transition: border-color 0.3s ease;
}

.pricing-card:hover {
    border-color: var(--color-accent);
}

.pricing-card-featured {
    border-color: var(--color-accent);
}

.pricing-featured-label {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    background: var(--color-accent);
    color: var(--color-white);
    font-family: var(--font-sans);
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    padding: 5px 16px;
}

.pricing-label {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-text-gray);
    margin-bottom: 20px;
}

.pricing-price {
    margin-bottom: 4px;
}

.pricing-amount {
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-accent);
}

.pricing-currency {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-accent);
}

.pricing-period {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    color: var(--color-text-gray);
    margin-bottom: 20px;
}

.pricing-desc {
    font-size: 0.9rem;
    color: var(--color-text-medium);
    line-height: 1.6;
}

/* ----- FORMULARZ ----- */
.booking-form {
    max-width: 700px;
    margin: 0 auto;
}

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

.form-row-full {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group select {
    width: 100%;
    border: none;
    border-bottom: 1px solid #ccc;
    padding: 15px 0 10px;
    background: transparent;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    color: var(--color-text-dark);
    outline: none;
    transition: border-color 0.3s ease;
    -webkit-appearance: none;
    appearance: none;
    border-radius: 0;
}

.form-group select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%23888' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0 center;
    padding-right: 20px;
}

.form-group input:focus,
.form-group select:focus {
    border-bottom-color: var(--color-accent);
}

.form-group label {
    position: absolute;
    top: 15px;
    left: 0;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    color: var(--color-text-gray);
    pointer-events: none;
    transition: all 0.3s ease;
}

.form-group input:focus ~ label,
.form-group input:not(:placeholder-shown) ~ label,
.form-group input[type="date"] ~ label,
.form-group select:focus ~ label,
.form-group select:not([value=""]) ~ label {
    top: -8px;
    font-size: 0.7rem;
    color: var(--color-accent);
    letter-spacing: 0.05em;
}

.form-success,
.form-error {
    display: none;
    text-align: center;
    padding: 20px;
    margin-top: 20px;
}

.form-success p {
    color: #2e7d32;
    font-size: 0.95rem;
}

.form-error p {
    color: #c62828;
    font-size: 0.95rem;
}

.form-success.show,
.form-error.show {
    display: block;
}

/* ----- SKLEP ----- */
.shop-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.shop-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    transition: background 0.3s ease;
}

.shop-card:hover {
    background: rgba(255, 255, 255, 0.08);
}

.shop-card h3 {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 12px;
}

.shop-desc {
    font-size: 0.9rem;
    color: var(--color-text-gray);
    line-height: 1.6;
    margin-bottom: 16px;
}

.shop-price {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-accent);
}

/* ----- SPLIT: LOJALNOŚĆ + BLOG ----- */
.split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

/* Oś czasu lojalności */
.loyalty-timeline {
    position: relative;
    padding-left: 30px;
    margin-top: 10px;
}

.loyalty-timeline::before {
    content: '';
    position: absolute;
    left: 5px;
    top: 6px;
    bottom: 6px;
    width: 1px;
    background: var(--color-border);
}

.loyalty-step {
    position: relative;
    padding-left: 20px;
    padding-bottom: 30px;
}

.loyalty-step:last-child {
    padding-bottom: 0;
}

.loyalty-dot {
    position: absolute;
    left: -30px;
    top: 6px;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: var(--color-accent);
    border: 2px solid var(--color-bg-light);
}

.loyalty-content strong {
    display: block;
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.loyalty-content p {
    font-size: 0.9rem;
    color: var(--color-text-medium);
}

/* Karty bloga */
.blog-cards {
    margin-top: 10px;
}

.blog-card {
    padding-bottom: 24px;
    margin-bottom: 24px;
    border-bottom: 1px solid var(--color-border);
}

.blog-card:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.blog-date {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    color: var(--color-text-gray);
    letter-spacing: 0.05em;
}

.blog-title {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 700;
    margin: 8px 0;
    line-height: 1.3;
}

.blog-title a {
    transition: color 0.3s ease;
}

.blog-title a:hover {
    color: var(--color-accent);
}

.blog-excerpt {
    font-size: 0.9rem;
    color: var(--color-text-medium);
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ----- SEKCJA CTA ----- */
.section-cta {
    padding: 150px 0;
    text-align: center;
}

.cta-heading {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    color: var(--color-white);
    margin-bottom: 24px;
}

.cta-subtext {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

/* ----- KALENDARZ DOSTĘPNOŚCI ----- */
.calendar-section {
    max-width: 700px;
    margin: 0 auto 60px;
    padding: 50px;
    background: var(--color-bg-light);
    border: 1px solid var(--color-border);
}

.calendar-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 20px;
}

.calendar-legend {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 24px;
    font-size: 0.85rem;
    color: var(--color-text-medium);
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.legend-dot {
    width: 14px;
    height: 14px;
    border-radius: 3px;
    display: inline-block;
}

.legend-free {
    background: #e8f5e9;
    border: 1px solid #81c784;
}

.legend-booked {
    background: #ffebee;
    border: 1px solid #e57373;
}

.legend-selected {
    background: var(--color-accent);
    border: 1px solid var(--color-accent);
}

.calendar-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
}

.calendar-nav-btn {
    background: none;
    border: 1px solid var(--color-border);
    width: 40px;
    height: 40px;
    cursor: pointer;
    font-size: 1.1rem;
    color: var(--color-text-dark);
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.calendar-nav-btn:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
}

.calendar-month-label {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 700;
    min-width: 180px;
    text-align: center;
}

.calendar-grid {
    user-select: none;
}

.calendar-header {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-gray);
    padding-bottom: 10px;
    border-bottom: 1px solid var(--color-border);
    margin-bottom: 8px;
}

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

.cal-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    border-radius: 3px;
    cursor: pointer;
    transition: all 0.15s;
    position: relative;
}

.cal-day:hover:not(.cal-booked):not(.cal-empty):not(.cal-past) {
    background: rgba(193, 120, 23, 0.15);
}

.cal-day.cal-empty {
    cursor: default;
}

.cal-day.cal-past {
    color: #ccc;
    cursor: default;
}

.cal-day.cal-free {
    background: #e8f5e9;
    color: var(--color-text-dark);
}

.cal-day.cal-free:hover {
    background: #c8e6c9;
}

.cal-day.cal-booked {
    background: #ffebee;
    color: #c62828;
    cursor: not-allowed;
    text-decoration: line-through;
}

.cal-day.cal-selected {
    background: var(--color-accent);
    color: #fff;
    font-weight: 600;
}

.cal-day.cal-range {
    background: rgba(193, 120, 23, 0.2);
    color: var(--color-text-dark);
}

.cal-day.cal-today {
    font-weight: 700;
    box-shadow: inset 0 0 0 2px var(--color-text-dark);
}

@media (max-width: 768px) {
    .calendar-section {
        padding: 30px 20px;
    }
    .calendar-legend {
        flex-wrap: wrap;
        gap: 12px;
    }
    .cal-day {
        font-size: 0.8rem;
    }
}

/* ----- STOPKA ----- */
.footer {
    background: #111;
    padding: 80px 0 40px;
    color: var(--color-text-gray);
}

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

.footer-heading {
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 20px;
}

.footer-text {
    font-size: 0.85rem;
    line-height: 1.7;
    color: var(--color-text-gray);
}

.footer-links li {
    margin-bottom: 10px;
    font-size: 0.85rem;
}

.footer-links a {
    color: var(--color-text-gray);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--color-white);
}

.footer-bottom {
    border-top: 1px solid #222;
    padding-top: 30px;
    margin-top: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: #666;
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    font-size: 0.8rem;
    color: #666;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--color-white);
}

/* ----- ANIMACJE SCROLL ----- */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.delay-1 { transition-delay: 0.1s !important; }
.delay-2 { transition-delay: 0.2s !important; }
.delay-3 { transition-delay: 0.3s !important; }
.delay-4 { transition-delay: 0.4s !important; }
.delay-5 { transition-delay: 0.5s !important; }

/* ----- RESPONSYWNOŚĆ: TABLET ----- */
@media (max-width: 1024px) {
    .section {
        padding: 90px 0;
    }

    .section-quote {
        padding: 100px 0;
    }

    .section-cta {
        padding: 100px 0;
    }

    .about-grid {
        gap: 50px;
    }

    .split-grid {
        gap: 50px;
    }

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

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

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }

    .gallery-item-large {
        grid-row: auto;
        grid-column: 1 / 3;
    }

    .gallery-item-large img {
        min-height: 350px;
    }

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

/* ----- RESPONSYWNOŚĆ: MOBILE ----- */
@media (max-width: 768px) {
    .section {
        padding: 70px 0;
    }

    .section-quote {
        padding: 70px 0;
    }

    .section-cta {
        padding: 80px 0;
    }

    /* Nawigacja mobilna */
    .nav-links {
        display: none;
    }

    .nav-cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    /* Hero */
    .hero-bg {
        background-attachment: scroll;
    }

    .hero-content {
        padding-bottom: 15vh;
    }

    .hero-dots {
        display: none;
    }

    .hero-title {
        font-size: clamp(2.2rem, 8vw, 3.5rem);
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
    }

    /* O domku */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image {
        order: -1;
    }

    .about-image img {
        height: 350px;
    }

    /* Cytat */
    .big-quote p {
        font-size: clamp(1.5rem, 6vw, 2.2rem);
    }

    /* Udogodnienia */
    .amenities-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    /* Galeria */
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .gallery-item-large {
        grid-column: 1;
    }

    .gallery-item-large img,
    .gallery-item:not(.gallery-item-large) img {
        min-height: 200px;
        max-height: 300px;
    }

    /* Parallax break */
    .parallax-bg {
        background-attachment: scroll;
    }

    .parallax-text p {
        font-size: clamp(1.5rem, 5vw, 2rem);
    }

    /* Cennik */
    .pricing-cards {
        flex-direction: column;
        align-items: center;
    }

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

    /* Formularz */
    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Sklep */
    .shop-grid {
        grid-template-columns: 1fr;
    }

    /* Split */
    .split-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    /* CTA */
    .cta-heading {
        font-size: clamp(2rem, 7vw, 3rem);
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 280px;
    }

    /* Stopka */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

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

/* ----- RESPONSYWNOŚĆ: MAŁY MOBILE ----- */
@media (max-width: 420px) {
    .hero-title {
        font-size: 2rem;
    }

    .container {
        padding: 0 16px;
    }

    .pricing-card {
        padding: 35px 25px;
    }

    .shop-card {
        padding: 30px 24px;
    }
}

/* =====================================================
   BOOKING WIDGET — Kalendarz + Panel obok siebie
   ===================================================== */
.booking-widget {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 32px;
    align-items: start;
    margin-bottom: 60px;
}

.booking-widget .calendar-section {
    max-width: none;
    margin: 0;
}

/* Panel rezerwacji (prawa kolumna) */
.booking-panel {
    background: var(--color-bg-light);
    border: 1px solid var(--color-border);
    padding: 36px 28px;
    position: sticky;
    top: 90px;
}

.booking-panel-title {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    margin-bottom: 6px;
    color: var(--color-text-dark);
}

.booking-panel-hint {
    font-size: 0.85rem;
    color: var(--color-text-gray);
    margin-bottom: 24px;
}

.booking-panel-field {
    margin-bottom: 20px;
}

.booking-panel-field label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-text-gray);
    margin-bottom: 6px;
    position: static;
}

.booking-panel-field input[type="date"],
.booking-panel-field select {
    width: 100%;
    border: 1px solid var(--color-border);
    border-radius: 0;
    padding: 10px 12px;
    background: #fff;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    color: var(--color-text-dark);
    outline: none;
    transition: border-color 0.2s;
    -webkit-appearance: none;
    appearance: none;
}

.booking-panel-field input[type="date"]:focus,
.booking-panel-field select:focus {
    border-color: var(--color-accent);
}

.booking-panel-field select {
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%23888' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 32px;
    cursor: pointer;
}

.booking-panel-btn {
    width: 100%;
    margin-top: 8px;
    text-align: center;
    padding: 14px 20px;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
}

.booking-panel-step {
    font-size: 0.85rem;
    color: var(--color-accent);
    font-weight: 500;
    margin-bottom: 20px;
    min-height: 1.4em;
}

.booking-panel-btn:disabled {
    opacity: 0.45;
    cursor: not-allowed;
    pointer-events: none;
}

.booking-panel-note {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    font-size: 0.8rem;
    color: var(--color-text-gray);
}

.booking-panel-note svg {
    color: var(--color-accent);
    flex-shrink: 0;
}

/* Błąd w panelu */
.booking-panel .form-error {
    display: none;
    background: #fff3f3;
    border: 1px solid #ffcdd2;
    padding: 10px 12px;
    margin-bottom: 12px;
    font-size: 0.85rem;
    color: #c62828;
}

.booking-panel .form-error.show {
    display: block;
}

.booking-panel .form-error p {
    margin: 0;
}

/* Responsive — na mobile stack pionowo */
@media (max-width: 900px) {
    .booking-widget {
        grid-template-columns: 1fr;
    }

    .booking-panel {
        position: static;
    }
}