/* ============================================
   MON PETIT Atelier - Landing Page Styles
   ============================================ */

/* CSS Variables */
:root {
    --color-primary: #1A1A1A;
    --color-accent: #8B7355;
    --color-accent-light: #D4C4A8;
    --color-gold: #C9A84C;
    --color-bg-cream: #F5F0E8;
    --color-bg-light: #FAFAF8;
    --color-bg-tint: #F1EBE1;
    --color-surface: rgba(255, 255, 255, 0.78);
    --color-surface-strong: #FFFCF7;
    --color-text: #1B2742;
    --color-text-muted: #3D5277;
    --color-text-light: #5B6F92;
    --color-border: #E5E0D8;
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-serif);
    font-size: 18px;
    line-height: 1.7;
    color: var(--color-text);
    background: #f5f0e8;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    color: inherit;
    text-decoration: none;
}

ul, ol {
    list-style: none;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ============================================
   Navigation
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    transition: var(--transition);
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.25) 70%, transparent 100%);
}

.navbar.scrolled {
    background: linear-gradient(135deg, #060f26 0%, #0b1a42 50%, #0d1e4e 100%);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
    padding: 0.4rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    height: 88px;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.05rem;
    text-decoration: none;
    margin-left: 15%;
}

.logo img {
    height: 44px;
    width: auto;
}

.logo-subtitle {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.05rem;
    transition: var(--transition);
}

.logo-subtitle-atelier {
    font-family: var(--font-sans);
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--color-gold);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
    white-space: nowrap;
    line-height: 1;
    transition: var(--transition);
}

.logo-subtitle-tagline {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--color-gold);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
    white-space: nowrap;
    line-height: 1;
    margin-top: 0.3rem;
    transition: var(--transition);
}

.navbar.scrolled .logo-subtitle-atelier,
.navbar.scrolled .logo-subtitle-tagline {
    color: var(--color-gold);
    text-shadow: none;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: white;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
    transition: var(--transition);
}

.navbar.scrolled .nav-link {
    color: white;
    text-shadow: none;
}

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

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

.nav-cta {
    padding: 0.75rem 1.5rem;
    background: var(--color-accent);
    color: white !important;
    border: 2px solid var(--color-accent);
    text-shadow: none !important;
    border-radius: 3px;
}

.nav-cta:hover {
    background: transparent;
    border-color: white;
    color: white !important;
}

.navbar.scrolled .nav-cta {
    background: var(--color-accent);
    color: white !important;
    border-color: var(--color-accent);
}

.navbar.scrolled .nav-cta:hover {
    background: transparent;
    color: var(--color-accent) !important;
    border-color: var(--color-accent);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

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

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

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

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

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

.nav-toggle.active .hamburger::before {
    top: 0;
    transform: rotate(45deg);
}

.nav-toggle.active .hamburger::after {
    top: 0;
    transform: rotate(-45deg);
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
}

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background: transparent;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: left;
    color: white;
    padding: 3rem 3rem 3.25rem;
    max-width: 760px;
    margin: 0 auto 0 max(1.5rem, calc((100vw - 1200px) / 2 + 1.5rem));
    background: linear-gradient(180deg, rgba(18, 16, 13, 0.38), rgba(18, 16, 13, 0.12));
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-left: 3px solid var(--color-accent-light);
    backdrop-filter: blur(6px);
    box-shadow: 0 18px 55px rgba(0, 0, 0, 0.18);
}

.hero-content--minimal {
    position: absolute;
    top: 22%;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    padding: 0;
    width: min(528px, calc(100% - 3rem));
    display: flex;
    flex-direction: column;
    align-items: center;
    background: none;
    border: none;
    box-shadow: none;
    backdrop-filter: none;
}

.hero-phone {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-accent-light);
    text-decoration: none;
    transition: var(--transition);
}

.hero-phone:hover {
    color: white;
}

.hero-content--minimal .hero-btn {
    margin-top: 0;
    display: grid;
    justify-items: center;
    align-content: center;
    gap: 0.25rem;
    width: 100%;
    filter: drop-shadow(0 0 8px rgba(0, 0, 0, 0.4));
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(2px);
    border-color: rgba(255, 255, 255, 0.8);
}

.hero-btn-line1 {
    display: block;
    width: 100%;
    text-align: center;
}

.hero-btn-line2 {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    justify-content: center;
    width: 100%;
    text-align: center;
}

@media (max-width: 520px) {
    .hero-content--minimal .hero-btn {
        white-space: normal;
        text-align: center;
        font-size: 0.95rem;
        letter-spacing: 0.08em;
        padding: 0.875rem 1.5rem;
        line-height: 1.6;
    }
}

.hero-subtitle {
    font-family: var(--font-sans);
    font-size: 0.875rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--color-accent-light);
    margin-bottom: 1.2rem;
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 300;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-tagline {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-style: italic;
    font-weight: 300;
    color: #E8E0D5;
    margin-bottom: 2rem;
}

.hero-description {
    font-size: clamp(1rem, 2vw, 1.125rem);
    line-height: 1.7;
    opacity: 0.9;
    max-width: 580px;
}

.hero-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2.5rem;
    justify-content: center;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2.5rem;
    border: 2px solid white;
    color: white;
    font-family: var(--font-sans);
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.06);
}

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

.hero-btn--secondary {
    background: transparent;
}

.hero-btn--secondary:hover {
    background: white;
    color: var(--color-primary);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    animation: bounce 2s infinite;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.4);
    transition: var(--transition);
}

.scroll-indicator:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: white;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* ============================================
   Sections Common
   ============================================ */
.section {
    padding: 6rem 0;
    position: relative;
    overflow: clip;
}

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

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

.section-label {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 300;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.section-divider {
    width: 110px;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--color-accent) 20%, var(--color-accent) 80%, transparent 100%);
    margin: 0 auto 2rem;
}

.section-subtitle {
    font-size: 1.18rem;
    color: var(--color-text-light);
    max-width: 500px;
    margin: 0 auto 2.5rem;
    line-height: 1.8;
}

.section-description {
    font-size: 1.35rem;
    color: var(--color-text-muted);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.8;
}

.section-header-light .section-label {
    color: var(--color-accent-light);
}

.section-header-light .section-title {
    color: white;
}

.section-header-light .section-divider {
    background: var(--color-accent);
}

/* ============================================
   Studio Section
   ============================================ */
.section-studio {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 252, 247, 0.96)),
        radial-gradient(circle at top left, rgba(212, 196, 168, 0.22), transparent 25%);
    position: relative;
}

.studio-top-cta {
    text-align: center;
    margin-top: -2.5rem;
    margin-bottom: 5rem;
    position: relative;
    z-index: 2;
}

.studio-top-cta-btn {
    flex-direction: column;
    gap: 0.25rem;
    padding: 1.15rem 2.2rem;
    line-height: 1.25;
    white-space: nowrap;
}

.studio-top-cta-btn:hover {
    /* Hover handled by .btn-contact */
}

.studio-hero-block {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 3.5rem;
    padding-bottom: 0;
}

.studio-hero-label {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 1.25rem;
}

.studio-hero-tagline {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-style: italic;
    font-weight: 300;
    color: var(--color-primary);
    line-height: 1.3;
    margin-bottom: 0.75rem;
}

.studio-hero-desc {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    margin-bottom: 2rem;
}

.studio-services-inline {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    color: var(--color-text);
    text-align: center;
    line-height: 2;
}

.studio-sep {
    margin: 0 0.6rem;
    color: var(--color-accent);
    opacity: 0.6;
}

.studio-intro {
    max-width: 840px;
    margin: 0 auto 4rem;
    text-align: center;
    padding: 0 1rem 2.5rem;
    border-bottom: 1px solid rgba(139, 115, 85, 0.18);
}

.studio-intro-main {
    font-size: clamp(1.7rem, 3vw, 2.15rem);
    margin-bottom: 1.5rem;
    line-height: 1.35;
}

.studio-intro-text {
    font-size: 1.26rem;
    color: var(--color-text-muted);
    line-height: 1.8;
    max-width: 760px;
    margin: 0 auto;
}

.studio-intro-text + .studio-intro-text {
    margin-top: 1rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem 2rem;
}

.feature-card {
    text-align: left;
    padding: 1.75rem 1.5rem 0;
    background: transparent;
    border-top: 1px solid rgba(139, 115, 85, 0.28);
}

.feature-icon {
    width: 52px;
    height: 52px;
    margin: 0 0 1.25rem;
    border-radius: 999px;
    background: rgba(212, 196, 168, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent);
}

.feature-title {
    font-size: 1.38rem;
    font-weight: 500;
    margin-bottom: 0.65rem;
}

.feature-text {
    font-family: var(--font-sans);
    font-size: 1.1rem;
    color: var(--color-text-light);
    line-height: 1.75;
}

/* ============================================
   Services Section
   ============================================ */
.section-uslugi {
    background:
        linear-gradient(180deg, rgba(245, 240, 232, 0.98), rgba(250, 248, 243, 0.98)),
        radial-gradient(circle at right top, rgba(139, 115, 85, 0.08), transparent 30%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.25rem 2rem;
}

.service-card {
    background: linear-gradient(180deg, rgba(255, 252, 247, 0.9), rgba(255, 255, 255, 0.55));
    padding: 2.1rem 2rem 2.2rem;
    border: 1px solid rgba(139, 115, 85, 0.14);
    border-top: 2px solid rgba(139, 115, 85, 0.4);
    box-shadow: none;
    transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
    font-size: 1.2rem;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-4px);
    border-color: rgba(139, 115, 85, 0.26);
    background: linear-gradient(180deg, rgba(255, 252, 247, 1), rgba(255, 255, 255, 0.8));
}

.service-card-full {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: minmax(260px, 360px) minmax(0, 1fr);
    gap: 2.25rem;
    align-items: stretch;
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(255, 252, 247, 1) 0%, rgba(249, 244, 237, 0.92) 44%, rgba(255, 255, 255, 0.82) 100%);
}

.service-card-full::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at right top, rgba(212, 196, 168, 0.2), transparent 34%);
    pointer-events: none;
}

.service-card-full-intro {
    position: relative;
    z-index: 1;
    padding-right: 1.25rem;
    border-right: 1px solid rgba(139, 115, 85, 0.14);
}

.service-card-full-text {
    font-family: var(--font-sans);
    font-size: 1.1rem;
    line-height: 1.85;
    color: var(--color-text-light);
    max-width: 28rem;
}

.service-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.85rem;
    color: var(--color-accent);
}

.service-header h3 {
    font-size: 1.58rem;
    font-weight: 500;
    color: var(--color-text);
}

.service-subtitle {
    font-family: var(--font-sans);
    font-size: 1.14rem;
    font-weight: 600;
    color: var(--color-accent);
    margin-bottom: 1rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.service-card-text {
    font-family: var(--font-sans);
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--color-text-muted);
    margin-bottom: 1.25rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid rgba(139, 115, 85, 0.14);
}

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

.service-header svg {
    flex-shrink: 0;
}

.service-list {
    list-style: none;
    padding-left: 0;
    margin-left: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.service-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-family: var(--font-sans);
    color: var(--color-text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
}

.service-list li::before {
    content: '•';
    color: var(--color-accent);
    flex-shrink: 0;
}

.service-list-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem 1.5rem;
}

.service-list-grid-featured {
    position: relative;
    z-index: 1;
    align-content: center;
    min-height: 100%;
}

.service-list-item {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    color: var(--color-text-muted);
    font-size: 1.1rem;
    line-height: 1.7;
}

.service-list-grid-featured .service-list-item {
    padding: 1.25rem 1.2rem;
    background: rgba(255, 255, 255, 0.62);
    border: 1px solid rgba(139, 115, 85, 0.14);
    min-height: 100%;
}

.services-grid > .service-card:nth-child(1) {
    background: linear-gradient(180deg, rgba(255, 251, 245, 0.98), rgba(255, 255, 255, 0.72));
}

.services-grid > .service-card:nth-child(2) {
    background: linear-gradient(180deg, rgba(250, 245, 238, 0.96), rgba(255, 255, 255, 0.68));
}

.services-grid > .service-card:nth-child(3) {
    background: linear-gradient(180deg, rgba(255, 252, 247, 0.94), rgba(251, 247, 241, 0.7));
}

.service-list-item::before {
    content: '•';
    color: var(--color-accent);
    flex-shrink: 0;
}

/* ============================================
   Pricing Section
   ============================================ */
.section-cennik {
    background:
        radial-gradient(circle at top right, rgba(13, 30, 78, 0.08), transparent 26%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 248, 243, 0.98));
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.pricing-card {
    border: 1px solid rgba(13, 30, 78, 0.12);
    border-top: 2px solid rgba(13, 30, 78, 0.28);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(248, 246, 242, 0.92));
    padding: 2.4rem;
    font-size: 1.28rem;
    box-shadow: 0 20px 50px rgba(13, 30, 78, 0.05);
}

.pricing-title {
    font-size: 1.8rem;
    font-weight: 500;
    color: #0d1e4e;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(13, 30, 78, 0.14);
    margin-bottom: 1.5rem;
}

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

.pricing-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px dashed rgba(13, 30, 78, 0.14);
    font-size: 1.38rem;
    color: var(--color-text-muted);
}

.pricing-item span {
    color: var(--color-text-muted);
    font-weight: 500;
    line-height: 1.55;
}

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

.pricing-item strong {
    color: var(--color-gold);
    font-weight: 600;
    white-space: nowrap;
}

.pricing-item-description {
    font-style: italic;
    border-bottom: none;
    padding-bottom: 0;
}

.pricing-item-description span {
    color: var(--color-text-light);
    font-weight: 400;
    font-size: 1.38rem;
}

.pricing-card-express {
    border-color: rgba(13, 30, 78, 0.22);
    border-top-color: rgba(13, 30, 78, 0.38);
    background: linear-gradient(180deg, rgba(13, 30, 78, 0.05), rgba(255, 255, 255, 0.92));
}

/* ============================================
   Booking Modal
   ============================================ */
.booking-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 2rem 1rem;
    overflow-y: auto;
}

body.admin-bar .booking-modal {
    padding-top: calc(32px + 1.5rem);
}

@media screen and (max-width: 782px) {
    body.admin-bar .booking-modal {
        padding-top: calc(46px + 1rem);
    }
}

.booking-modal[hidden] {
    display: none;
}

.booking-modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(13, 30, 78, 0.55);
    backdrop-filter: blur(3px);
    cursor: pointer;
}

.booking-modal-box {
    position: relative;
    z-index: 1;
    background: #FFFCF7;
    max-width: 600px;
    width: 100%;
    padding: 2.5rem 2rem 2rem;
    box-shadow: 0 24px 64px rgba(13, 30, 78, 0.22);
    border-top: 3px solid var(--color-accent);
    margin-bottom: 2rem;
}

.booking-modal-box h3 {
    text-align: center;
    font-size: 1.75rem;
    font-weight: 300;
    margin-bottom: 0.75rem;
}

.booking-modal-close {
    position: absolute;
    top: 0.875rem;
    left: 0.875rem;
    right: auto;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--color-text);
    padding: 0;
    width: 2.25rem;
    height: 2.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: color 0.2s, background 0.2s;
}

.booking-modal-close:hover {
    color: var(--color-accent);
    background: rgba(139, 115, 85, 0.1);
}

.booking-modal-box .contact-form {
    margin-top: 1.5rem;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
}

.booking-modal-box .contact-form input,
.booking-modal-box .contact-form textarea {
    background: #fff;
    border-color: rgba(139, 115, 85, 0.35);
}

.section-standardy {
    background:
        radial-gradient(circle at top, rgba(212, 196, 168, 0.08), transparent 35%),
        linear-gradient(180deg, #191612 0%, #14110f 100%);
    color: white;
}

.standards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.standard-block {
    padding: 2rem 2rem 0;
    border-top: 1px solid rgba(212, 196, 168, 0.28);
}

.standard-title {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--color-accent-light);
    margin-bottom: 1.5rem;
}

.standard-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.standard-list li {
    display: flex;
    gap: 1rem;
}

.standard-bullet {
    color: var(--color-accent);
    font-size: 1.125rem;
    flex-shrink: 0;
}

.standard-list li strong {
    color: white;
    font-weight: 500;
    font-size: 1.22rem;
}

.standard-list li p {
    color: #B8B8B8;
    font-size: 1.14rem;
    line-height: 1.7;
    margin-top: 0.25rem;
}

.standards-footer {
    border-top: 1px solid rgba(212, 196, 168, 0.14);
    padding-top: 3rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.standard-box {
    border: 1px solid rgba(212, 196, 168, 0.12);
    background: rgba(255, 255, 255, 0.02);
    padding: 1.5rem;
}

.standard-box h4 {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--color-accent-light);
    margin-bottom: 0.75rem;
}

.standard-box p {
    color: #B8B8B8;
    font-size: 1.18rem;
    line-height: 1.7;
}

.standard-box .highlight {
    color: white;
}

/* ============================================
   FAQ Section
   ============================================ */
.section-faq {
    background:
        linear-gradient(180deg, rgba(255, 252, 247, 0.98), rgba(250, 248, 243, 0.98)),
        radial-gradient(circle at top right, rgba(212, 196, 168, 0.16), transparent 30%);
}

.faq-list {
    max-width: 860px;
    margin: 0 auto;
    display: grid;
    gap: 1rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(139, 115, 85, 0.16);
    border-top: 2px solid rgba(139, 115, 85, 0.32);
    padding: 0;
}

.faq-item[open] {
    background: rgba(255, 252, 247, 0.96);
}

.faq-question {
    list-style: none;
    cursor: pointer;
    font-size: 1.45rem;
    line-height: 1.45;
    padding: 1.5rem 4rem 1.5rem 1.5rem;
    position: relative;
    color: var(--color-text);
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-family: var(--font-sans);
    font-size: 1.4rem;
    color: var(--color-accent);
    transition: transform 0.2s ease;
}

.faq-item[open] .faq-question::after {
    content: '−';
}

.faq-answer {
    font-family: var(--font-sans);
    font-size: 1.12rem;
    line-height: 1.8;
    color: var(--color-text-light);
    padding: 0 1.5rem 1.5rem;
    max-width: 720px;
}

/* ============================================
   Contact Section
   ============================================ */
.section-kontakt {
    background:
        linear-gradient(180deg, rgba(245, 240, 232, 0.95), rgba(255, 252, 247, 0.95)),
        radial-gradient(circle at left bottom, rgba(212, 196, 168, 0.18), transparent 30%);
}

.contact-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
    margin: 0.5rem 0 1rem;
}

.contact-logo img {
    height: 55px;
    width: auto;
}

.contact-logo-atelier {
    font-family: var(--font-sans);
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--color-gold);
    line-height: 1;
}

.contact-logo-tagline {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--color-gold);
    line-height: 1;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.contact-card {
    background: rgba(255, 252, 247, 0.84);
    padding: 2rem 1.75rem;
    text-align: center;
    border: 1px solid rgba(139, 115, 85, 0.14);
    box-shadow: none;
}

.contact-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    background: rgba(212, 196, 168, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent);
}

.contact-card h3 {
    font-size: 1.35rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.contact-card p {
    font-size: 1.2rem;
    color: var(--color-text-light);
    line-height: 1.7;
}

.contact-card small {
    font-size: 0.875rem;
}

.contact-phone {
    font-size: 1.375rem;
    color: var(--color-accent);
    font-weight: 500;
    transition: var(--transition);
}

.contact-phone:hover {
    color: #6B5A45;
}

.contact-cta {
    text-align: center;
    margin-top: 3rem;
}

.contact-form-wrap {
    margin-top: 4rem;
}

.contact-cta-text {
    font-family: var(--font-serif);
    font-size: 1.45rem;
    font-style: italic;
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
}

.btn-contact {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.125rem 3rem;
    background: linear-gradient(135deg, #f9d976 0%, #e9c05e 25%, #caa141 50%, #f9d976 75%, #a87c22 100%);
    color: #000000;
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: 1px solid #f9d976;
    border-radius: 999px;
    transition: var(--transition);
    box-shadow: 0 10px 25px rgba(201, 168, 76, 0.4), inset 0 2px 2px rgba(255, 255, 255, 0.5), inset 0 -2px 4px rgba(168, 124, 34, 0.5);
    text-shadow: none;
}

.btn-contact:hover {
    background: linear-gradient(135deg, #ffeba2 0%, #f9d976 25%, #e9c05e 50%, #ffeba2 75%, #caa141 100%);
    border-color: #ffeba2;
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(201, 168, 76, 0.5), inset 0 2px 2px rgba(255, 255, 255, 0.6), inset 0 -2px 4px rgba(168, 124, 34, 0.5);
}

.btn-primary {
    display: inline-block;
    padding: 1.125rem 2.75rem;
    background: var(--color-primary);
    color: white;
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border: none;
    transition: var(--transition);
}

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

/* ============================================
   Footer
   ============================================ */
.footer {
    background:
        radial-gradient(circle at top, rgba(212, 196, 168, 0.08), transparent 38%),
        linear-gradient(180deg, #181512 0%, #12100e 100%);
    color: white;
    padding: 0;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(212, 196, 168, 0.3) 18%, rgba(212, 196, 168, 0.3) 82%, transparent 100%);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 4rem 0 2.4rem;
    align-items: start;
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: minmax(240px, 1.1fr) minmax(320px, 0.9fr) minmax(240px, 1fr);
        gap: 2.5rem;
    }
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

@media (min-width: 768px) {
    .footer-brand {
        align-items: flex-start;
    }
}

.footer-logo {
    height: 58px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-tagline {
    font-family: var(--font-sans);
    font-size: 0.98rem;
    color: #9a9388;
    letter-spacing: 0.06em;
    line-height: 1.65;
}

.footer-label {
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--color-accent-light);
    margin-bottom: 1rem;
}

.footer-nav-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 1rem;
}

.footer-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(120px, max-content));
    justify-content: center;
    gap: 0.9rem 1.5rem;
}

.footer-nav a {
    font-family: var(--font-sans);
    font-size: 0.875rem;
    font-weight: 500;
    color: #a49c91;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: var(--transition);
    padding-bottom: 0.2rem;
    border-bottom: 1px solid transparent;
}

.footer-nav a:hover {
    color: var(--color-accent-light);
    border-bottom-color: rgba(212, 196, 168, 0.35);
}

.footer-info {
    text-align: center;
    padding-top: 0.15rem;
}

@media (min-width: 768px) {
    .footer-info {
        text-align: right;
    }

    .footer-nav-wrap {
        border-left: 1px solid rgba(212, 196, 168, 0.12);
        border-right: 1px solid rgba(212, 196, 168, 0.12);
    }
}

.footer-info p {
    font-family: var(--font-sans);
    font-size: 1rem;
    color: #a49c91;
    line-height: 1.9;
}

.footer-info p + p {
    margin-top: 0.45rem;
}

.footer-phone {
    color: var(--color-accent-light);
    font-weight: 600;
    font-size: 1.05rem;
    letter-spacing: 0.04em;
    transition: var(--transition);
}

.footer-phone:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(212, 196, 168, 0.12);
    padding: 1.5rem 0 1.8rem;
    text-align: center;
}

.footer-bottom p {
    font-family: var(--font-sans);
    font-size: 0.8125rem;
    color: #746d64;
    letter-spacing: 0.04em;
}

/* ============================================
   Gallery Section
   ============================================ */
.section-galeria {
    background: white;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 280px;
    gap: 1rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 2px;
    cursor: pointer;
}

.gallery-item-tall {
    grid-row: span 2;
}

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

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, transparent 50%);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.gallery-overlay span {
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    font-weight: 500;
    color: white;
    letter-spacing: 0.05em;
}

@media (max-width: 767px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 220px;
    }
    
    .gallery-item-tall {
        grid-row: span 1;
    }
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 767px) {
    .nav-container {
        height: auto;
        padding: 0.4rem 1.5rem;
        align-items: center;
    }

    .logo img {
        height: 38px;
    }

    .logo-subtitle-atelier {
        font-size: 0.72rem;
        letter-spacing: 0.25em;
    }

    .logo-subtitle-tagline {
        font-size: 0.52rem;
        letter-spacing: 0.15em;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: #ffffff;
        background-image: none;
        flex-direction: column;
        padding: 6rem 2rem 2rem;
        gap: 0.5rem;
        justify-content: flex-start;
        transform: translateX(100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
        z-index: 1002;
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.12);
    }

    .nav-menu.active {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-toggle {
        display: block;
        color: var(--color-primary);
        z-index: 1003;
    }

    .navbar:not(.scrolled) .nav-toggle {
        color: white;
    }

    .navbar.scrolled .nav-toggle {
        color: white;
    }

    .nav-toggle.active {
        color: var(--color-primary) !important;
        position: relative;
    }

    .nav-menu a,
    .nav-link {
        color: var(--color-text) !important;
        padding: 0.75rem 0;
        font-size: 1rem;
        text-shadow: none !important;
        text-decoration: none;
        display: block;
        font-family: var(--font-sans);
        font-weight: 600;
        letter-spacing: 0.15em;
        text-transform: uppercase;
    }

    .nav-menu li {
        list-style: none;
    }

    .nav-cta,
    .nav-menu a.nav-cta {
        width: 100%;
        text-align: center;
        padding: 1rem;
        background: var(--color-accent);
        color: white !important;
        border: 2px solid var(--color-accent);
    }

    .hero {
        height: 100vh;
        min-height: unset;
        align-items: flex-start;
        padding-top: 108px;
    }

    .hero-bg img {
        object-position: center center;
    }

    .hero-content {
        margin: 0 1rem;
        padding: 2rem 1.5rem 2.5rem;
        text-align: center;
        width: calc(100% - 2rem);
    }

    .hero-description {
        margin: 0 auto;
    }

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

    .feature-card {
        padding-left: 0;
        padding-right: 0;
    }

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

    .service-card {
        padding: 1.75rem 1.5rem 1.9rem;
    }

    .section-label {
        font-size: 1rem;
    }

    .section-subtitle {
        font-size: 1.08rem;
    }

    .section-description {
        font-size: 1.28rem;
    }

    .studio-intro-main {
        font-size: 1.95rem;
    }

    .studio-intro-text,
    .feature-text,
    .service-card-text,
    .service-card-full-text,
    .faq-answer,
    .contact-card p {
        font-size: 1.12rem;
    }

    .feature-title,
    .contact-card h3,
    .standard-title {
        font-size: 1.48rem;
    }

    .service-header h3,
    .pricing-title,
    .faq-question {
        font-size: 1.48rem;
    }

    .service-list li,
    .service-list-item,
    .pricing-item,
    .standard-list li strong,
    .standard-list li p,
    .standard-box p {
        font-size: 1.08rem;
    }

    .pricing-title {
        font-size: 1.72rem;
    }

    .pricing-item {
        font-size: 1.24rem;
        gap: 0.45rem;
    }

    .pricing-item span,
    .pricing-item strong {
        font-size: 1.24rem;
        line-height: 1.55;
    }

    .service-subtitle {
        font-size: 1.08rem;
    }

    .service-card-text {
        margin-bottom: 1rem;
        padding-bottom: 1rem;
    }

    .service-card-full {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .service-card-full-intro {
        padding-right: 0;
        padding-bottom: 0.25rem;
        border-right: none;
        border-bottom: 1px solid rgba(139, 115, 85, 0.14);
    }

    .service-list-grid {
        grid-template-columns: 1fr;
    }

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

    .pricing-card {
        padding: 1.5rem 1.25rem;
    }

    .pricing-title {
        font-size: 1.55rem;
    }

    .pricing-item {
        flex-direction: column;
        gap: 0.35rem;
        font-size: 1.16rem;
    }

    .pricing-item strong {
        font-size: 1.42rem;
        white-space: normal;
    }

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

    .faq-question {
        font-size: 1.15rem;
        padding: 1.25rem 3.5rem 1.25rem 1.25rem;
    }

    .faq-answer {
        padding: 0 1.25rem 1.25rem;
    }

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

    .footer-content {
        padding: 3.25rem 0 2rem;
        gap: 2rem;
    }

    .footer-brand,
    .footer-nav-wrap,
    .footer-info {
        align-items: center;
        text-align: center;
    }

    .footer-nav {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .footer-nav-wrap {
        padding: 1.5rem 0;
        border-top: 1px solid rgba(212, 196, 168, 0.12);
        border-bottom: 1px solid rgba(212, 196, 168, 0.12);
    }

    .footer-logo {
        height: 52px;
    }
}

/* ============================================
   Animations
   ============================================ */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease forwards;
}

/* Smooth scroll behavior for older browsers */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    
    .scroll-indicator {
        animation: none;
    }
    
    * {
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
    }
}

/* ============================================
   Contact Form
   ============================================ */
.contact-form {
    max-width: 600px;
    margin: 3rem auto 0;
    display: grid;
    gap: 1.25rem;
}

.contact-form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-form label {
    font-family: var(--font-sans);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-text-muted);
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 0.875rem 1.125rem;
    border: 1px solid rgba(139, 115, 85, 0.28);
    background: rgba(255, 252, 247, 0.9);
    font-family: var(--font-serif);
    font-size: 1.05rem;
    color: var(--color-text);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    outline: none;
    border-radius: 2px;
    -webkit-appearance: none;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(139, 115, 85, 0.12);
}

.contact-form textarea {
    min-height: 90px;
    resize: vertical;
}

.contact-form-intro {
    text-align: center;
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: var(--color-text-muted);
    margin-bottom: 0.5rem;
}

.contact-form-desc {
    text-align: center;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    color: var(--color-text-light);
    margin-bottom: 0;
    line-height: 1.7;
}

.contact-form-hint {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    color: var(--color-text-light);
    font-style: italic;
    margin: 0;
    line-height: 1.5;
}

.contact-optional {
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
    font-size: 0.8rem;
    color: var(--color-text-light);
}

.contact-file-wrapper {
    position: relative;
}

.contact-file-custom {
	display: block;
	width: 100%;
	padding: 0.75rem 1rem;
	border: 1px solid rgba(139, 115, 85, 0.28);
	background: rgba(255, 252, 247, 0.9);
	font-family: var(--font-serif);
	font-size: 1rem;
	color: var(--color-text);
	border-radius: 2px;
	cursor: pointer;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.contact-file-input {
	opacity: 0;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	cursor: pointer;
}

.contact-form .contact-file-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0.875rem 1.125rem;
    border: 1px solid rgba(139, 115, 85, 0.28);
    background: rgba(255, 252, 247, 0.9);
    font-family: var(--font-serif);
    font-size: 1.05rem;
    font-weight: 400;
    letter-spacing: 0;
    text-transform: none;
    color: var(--color-text-light);
    border-radius: 2px;
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    user-select: none;
    min-height: 0;
}

.contact-file-name {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.contact-form .contact-file-label:hover {
    border-color: var(--color-accent);
}

.contact-form .contact-file-label.has-file .contact-file-name {
    color: var(--color-text);
}

.contact-file-btn {
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    color: var(--color-accent);
    white-space: nowrap;
    margin-left: 1rem;
    flex-shrink: 0;
}

.contact-form-footer-info {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.8;
    padding: 1rem 1.25rem;
    background: rgba(212, 196, 168, 0.12);
    border-left: 2px solid var(--color-accent);
}

.contact-form-footer-info p {
    margin: 0;
}

.contact-form-closing {
    text-align: center;
    font-family: var(--font-serif);
    font-size: 1rem;
    font-style: italic;
    color: var(--color-text-light);
    margin-top: 0.25rem;
    margin-bottom: 0;
}

.modal-form-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-form-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: var(--color-accent);
    color: white;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border: 2px solid var(--color-accent);
    cursor: pointer;
    transition: var(--transition);
    border-radius: 2px;
    width: 100%;
}

.modal-call-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    background: transparent;
    color: var(--color-primary);
    font-family: var(--font-sans);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: 2px solid var(--color-primary);
    transition: var(--transition);
    border-radius: 2px;
    width: 100%;
    text-decoration: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.modal-call-btn:hover {
    background: var(--color-primary);
    color: white;
}

.modal-or-divider {
	text-align: center;
	font-family: var(--font-sans);
	font-size: 1rem;
	letter-spacing: 0.1em;
	color: var(--color-muted, #999);
	margin: 1.25rem 0 0.5rem;
}

.modal-form-heading {
	display: flex;
	align-items: center;
	text-align: center;
	font-family: var(--font-sans);
	font-size: 0.875rem;
	letter-spacing: 0.1em;
	color: var(--color-primary);
	margin: 1.5rem 0 1rem;
	font-weight: 500;
	text-transform: uppercase;
}

.modal-form-heading a {
	color: inherit;
	text-decoration: none;
	white-space: nowrap;
}

.modal-form-heading::before,
.modal-form-heading::after {
	content: '';
	flex-grow: 1;
	height: 1px;
	background: var(--color-muted, #ccc);
}

.modal-form-heading::before {
	margin-right: 1.5rem;
}

.modal-form-heading::after {
	margin-left: 1.5rem;
}

.contact-form-submit:hover {
    background: transparent;
    color: var(--color-accent);
}

.contact-form-submit:disabled {
    opacity: 0.6;
    cursor: wait;
}

.contact-form-message {
    padding: 1rem 1.25rem;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    border-radius: 2px;
    display: none;
}

.contact-form-message.success {
    background: rgba(76, 175, 80, 0.1);
    border: 1px solid rgba(76, 175, 80, 0.3);
    color: #2e7d32;
    display: block;
}

.contact-form-message.error {
    background: rgba(244, 67, 54, 0.08);
    border: 1px solid rgba(244, 67, 54, 0.25);
    color: #c62828;
    display: block;
}

.contact-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

@media (max-width: 600px) {
    .contact-form-row {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   Podstrona: Umów konsultację (/umow-konsultacje/)
   ============================================ */
.page-konsultacja {
    min-height: 100vh;
    background: var(--color-bg-cream);
    padding-top: calc(88px + 3rem);
    padding-bottom: 4rem;
}

.page-konsultacja-wrap {
    max-width: 640px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.page-konsultacja .booking-modal-box {
    position: static;
    box-shadow: 0 12px 40px rgba(13, 30, 78, 0.12);
    padding: 2.5rem 2rem 2rem;
    background: #FFFCF7;
    border-top: 3px solid var(--color-accent);
    max-width: none;
    width: 100%;
}

@media (max-width: 600px) {
    .page-konsultacja {
        padding-top: calc(70px + 2rem);
    }

    .page-konsultacja .booking-modal-box {
        padding: 2rem 1.25rem 1.5rem;
    }
}

