/* block 37baedd7 */
/* ===================================================================
   ZRUBY KRISTOFIK — Shared Stylesheet
   =================================================================== */

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

:root {
    --dark-wood: #2C1810;
    --medium-wood: #3D2B1F;
    --warm-brown: #5C3D2E;
    --light-brown: #8B6914;
    --cream: #F5ECD7;
    --cream-light: #FAF6EC;
    --green: #468D00;
    --green-light: #5AA000;
    --green-dark: #005500;
    --forest-green: #2A3C2A;
    --deep-green: #1E2D1E;
    --text-dark: #1A1209;
    --text-body: #3A2E22;
    --text-light: #D4C9B8;
    --text-muted: #8A7E70;
    --border-subtle: rgba(70, 141, 0, 0.15);
    --shadow-soft: 0 4px 20px rgba(44, 24, 16, 0.08);
    --shadow-medium: 0 8px 40px rgba(44, 24, 16, 0.12);
    --shadow-strong: 0 16px 60px rgba(44, 24, 16, 0.18);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Source Sans 3', 'Segoe UI', sans-serif;
    color: var(--text-body);
    background-color: var(--cream-light);
    line-height: 1.7;
    overflow-x: hidden;
}

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

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

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark-wood);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    text-align: center;
    margin-bottom: 0.5em;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--green), var(--green-light));
    margin: 0.6em auto 0;
    border-radius: 2px;
}

.section-title--left {
    text-align: left;
}

.section-title--left::after {
    margin-left: 0;
}

.section-title--light {
    color: var(--cream);
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto 3rem;
    font-weight: 300;
}

.section-subtitle--light {
    color: var(--text-light);
    opacity: 0.7;
}

/* ===== UTILITY ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

section {
    padding: 100px 0;
}

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

/* ===== SCROLL ANIMATIONS ===== */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

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

/* ===== WOOD TEXTURE ===== */
.wood-texture {
    background-image:
        repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(255,255,255,0.015) 2px, rgba(255,255,255,0.015) 4px),
        repeating-linear-gradient(0deg, transparent, transparent 40px, rgba(255,255,255,0.02) 40px, rgba(255,255,255,0.02) 41px);
}

/* ===== BUTTONS ===== */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    color: var(--dark-wood);
    padding: 16px 40px;
    border: none;
    border-radius: 8px;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    font-family: 'Source Sans 3', sans-serif;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(70, 141, 0, 0.4);
    color: var(--dark-wood);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(245, 236, 215, 0.08);
    color: var(--cream);
    padding: 16px 40px;
    border: 2px solid rgba(245, 236, 215, 0.65);
    border-radius: 8px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.btn-secondary:hover {
    border-color: var(--green);
    color: var(--green);
    background: rgba(70, 141, 0, 0.05);
    transform: translateY(-3px);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--dark-wood);
    padding: 14px 36px;
    border: 2px solid var(--dark-wood);
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: var(--dark-wood);
    color: var(--cream);
    transform: translateY(-2px);
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 24px;
    transition: all 0.4s ease;
    background: rgba(237, 227, 209, 0.92);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(70, 141, 0, 0.12);
}

.navbar--solid {
    background: #EDE3D1;
    backdrop-filter: blur(20px);
}

.navbar.scrolled {
    background: #EDE3D1;
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 16px rgba(44, 24, 16, 0.12);
}

.navbar-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 96px;
    transition: height 0.4s ease;
}

.navbar.scrolled .navbar-inner {
    height: 80px;
}

.nav-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--dark-wood);
    text-decoration: none;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-logo-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-logo-img {
    height: 72px;
    width: auto;
    object-fit: contain;
    transition: opacity 0.3s ease;
    filter: drop-shadow(0 1px 2px rgba(44, 24, 16, 0.15));
}

.nav-logo-img:hover {
    opacity: 0.85;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    color: var(--text-body);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--green);
    transition: width 0.3s ease;
}

.nav-links a:hover { color: var(--green); }
.nav-links a:hover::after { width: 100%; }

.nav-links a.active {
    color: var(--dark-wood);
    font-weight: 700;
}

.nav-links a.active::after {
    width: 100%;
}

.nav-cta {
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    color: var(--dark-wood) !important;
    padding: 10px 24px;
    border-radius: 6px;
    font-weight: 700 !important;
    letter-spacing: 0.5px;
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
    text-transform: uppercase;
    font-size: 0.85rem !important;
}

.nav-cta::after { display: none !important; }

.nav-cta:hover {
    color: var(--dark-wood) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(70, 141, 0, 0.4);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    z-index: 1001;
    padding: 8px;
    background: none;
    border: none;
}

.hamburger span {
    width: 26px;
    height: 2px;
    background: var(--dark-wood);
    transition: all 0.3s ease;
    border-radius: 2px;
}

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

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(44, 24, 16, 0.98);
    backdrop-filter: blur(20px);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.mobile-menu.active {
    display: flex;
    opacity: 1;
}

.mobile-menu a {
    color: var(--cream);
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 500;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.mobile-menu a:hover { color: var(--green); }

.mobile-menu .nav-cta-mobile {
    margin-top: 16px;
    padding: 14px 40px;
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    color: var(--dark-wood);
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
}

/* ===== PAGE HEADER (Sub-pages) ===== */
.page-header {
    position: relative;
    padding: 160px 0 80px;
    text-align: center;
    overflow: hidden;
}

.page-header-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(42, 60, 42, 0.5) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(61, 43, 31, 0.6) 0%, transparent 50%),
        linear-gradient(180deg, #1A120A 0%, #2C1810 40%, #1E2D1E 80%, #1A120A 100%);
    z-index: 0;
}

.page-header-bg img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.25;
}

.page-header-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(26,18,10,0.6) 0%, rgba(44,24,16,0.8) 100%);
}

.page-header .container {
    position: relative;
    z-index: 1;
}

.page-header h1 {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    color: var(--cream);
    margin-bottom: 0.5em;
}

.page-header p {
    color: var(--text-light);
    font-size: 1.15rem;
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 1.5rem;
    font-size: 0.85rem;
    color: var(--text-light);
    opacity: 0.6;
}

.breadcrumb a {
    color: var(--green-light);
    transition: opacity 0.3s;
}

.breadcrumb a:hover { opacity: 0.7; }

/* ===== HERO SECTION (Home) ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 120px 24px 80px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

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

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0;
    transform: scale(1.04);
    transition: opacity 1.8s ease-in-out, transform 9s ease-out;
    z-index: 1;
    will-change: opacity, transform;
}
.hero-slide.active {
    opacity: 1;
    transform: scale(1.1);
    z-index: 2;
}

.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(20,14,8,0.05) 0%, rgba(20,14,8,0.32) 45%, rgba(20,14,8,0.52) 75%, rgba(20,14,8,0.62) 100%);
    z-index: 2;
    pointer-events: none;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(90deg, transparent, transparent 1px, rgba(255,255,255,0.008) 1px, rgba(255,255,255,0.008) 3px);
    z-index: 3;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 4;
    text-align: center;
    max-width: 900px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(70, 141, 0, 0.18);
    border: 1px solid rgba(70, 141, 0, 0.5);
    color: var(--green-light);
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 2rem;
    animation: fadeInDown 1s ease 0.2s both;
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    color: var(--cream);
    margin-bottom: 1.2rem;
    font-weight: 800;
    line-height: 1.1;
    animation: fadeInDown 1s ease 0.4s both;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-light);
    margin-bottom: 2.5rem;
    font-weight: 300;
    letter-spacing: 0.5px;
    opacity: 0.85;
    animation: fadeInDown 1s ease 0.6s both;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInDown 1s ease 0.8s both;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
    opacity: 0.5;
    animation: bounce 2.5s ease-in-out infinite;
}

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

.scroll-arrow {
    width: 24px;
    height: 24px;
    border-right: 2px solid var(--text-light);
    border-bottom: 2px solid var(--text-light);
    transform: rotate(45deg);
}

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

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ===== SERVICE CARDS (Home) ===== */
.services-section { background: var(--cream-light); }

.services-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
    margin-top: 3rem;
}

.service-card {
    grid-column: span 2;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid rgba(44, 24, 16, 0.06);
    position: relative;
}

/* Center the last 2 cards */
.service-card:nth-child(4) {
    grid-column: 2 / span 2;
}

.service-card:nth-child(5) {
    grid-column: 4 / span 2;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--green), var(--green-light));
    transform: scaleX(0);
    transition: transform 0.4s ease;
    z-index: 2;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-strong);
}

.service-card:hover::before { transform: scaleX(1); }

.service-card-img {
    width: 100%;
    height: 180px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--warm-brown), var(--dark-wood));
}

.service-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-card:hover .service-card-img img {
    transform: scale(1.08);
}

.service-card-body {
    padding: 28px 24px;
    text-align: center;
}

.service-card-body h3 {
    font-size: 1.15rem;
    margin-bottom: 8px;
    color: var(--dark-wood);
}

.service-card-body p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 16px;
}

.service-card-link {
    color: var(--green-dark);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.3s ease;
}

.service-card:hover .service-card-link {
    gap: 10px;
    color: var(--green);
}

/* ===== SERVICE DETAIL (Services page — alternating) ===== */
.service-detail {
    padding: 80px 0;
    border-bottom: 1px solid rgba(44,24,16,0.06);
}

.service-detail:last-of-type {
    border-bottom: none;
}

.service-detail-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.service-detail:nth-child(even) .service-detail-inner {
    direction: rtl;
}

.service-detail:nth-child(even) .service-detail-inner > * {
    direction: ltr;
}

.service-detail-img {
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--warm-brown), var(--dark-wood));
    box-shadow: var(--shadow-medium);
}

.service-detail-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-detail-text h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    margin-bottom: 1rem;
}

.service-detail-text p {
    font-size: 1.05rem;
    color: var(--text-body);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.service-detail-text ul {
    list-style: none;
    margin-bottom: 2rem;
}

.service-detail-text ul li {
    padding: 8px 0;
    padding-left: 28px;
    position: relative;
    font-size: 1rem;
    color: var(--text-body);
}

.service-detail-text ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 16px;
    width: 12px;
    height: 12px;
    background: var(--green);
    border-radius: 50%;
    opacity: 0.6;
}

/* ===== WHY US / STATS ===== */
.why-us {
    background: var(--dark-wood);
    color: var(--cream);
    position: relative;
    overflow: hidden;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-bottom: 3rem;
    position: relative;
}

.stat-item {
    text-align: center;
    padding: 32px 16px;
    position: relative;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: rgba(70, 141, 0, 0.2);
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 800;
    color: var(--green);
    margin-bottom: 8px;
    line-height: 1;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--text-light);
    font-weight: 400;
    opacity: 0.8;
}

.why-us-text {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    opacity: 0.85;
    position: relative;
    padding-top: 2rem;
    border-top: 1px solid rgba(70, 141, 0, 0.15);
}

/* ===== TIMELINE ===== */
.how-it-works { background: var(--cream-light); }

.timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 3rem;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 48px;
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    background: linear-gradient(90deg, var(--green), var(--green-light), var(--green));
}

.timeline-step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    color: var(--dark-wood);
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 4px 20px rgba(70, 141, 0, 0.3);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.timeline-step:hover .step-number {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(70, 141, 0, 0.5);
}

.timeline-step h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.timeline-step p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
    max-width: 200px;
    margin: 0 auto;
}

/* ===== GALLERY ===== */
.gallery-section { background: white; }

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

.gallery-item {
    aspect-ratio: 4/3;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    background: linear-gradient(135deg, var(--warm-brown), var(--dark-wood));
}

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

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

.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(44,24,16,0.85) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.gallery-item-overlay h4 {
    color: var(--cream);
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.gallery-item-overlay p {
    color: var(--text-light);
    font-size: 0.85rem;
    opacity: 0.8;
}

.gallery-note {
    text-align: center;
    margin-top: 2.5rem;
    color: var(--text-muted);
    font-size: 1.05rem;
    font-style: italic;
}

/* ===== CTA BANNER ===== */
.cta-banner {
    background: var(--dark-wood);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(201,168,76,0.05) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 50%, rgba(42,60,42,0.3) 0%, transparent 50%);
}

.cta-banner .container {
    position: relative;
}

.cta-banner h2 {
    color: var(--cream);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    margin-bottom: 1rem;
}

.cta-banner p {
    color: var(--text-light);
    font-size: 1.1rem;
    opacity: 0.8;
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-banner .btn-primary {
    font-size: 1.1rem;
    padding: 18px 48px;
}

/* ===== CONTACT FORM ===== */
.contact-section {
    background:
        linear-gradient(135deg, var(--dark-wood) 0%, var(--medium-wood) 50%, var(--forest-green) 100%);
    color: var(--cream);
    position: relative;
    overflow: hidden;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: start;
    position: relative;
}

.contact-form {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 48px;
    backdrop-filter: blur(10px);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-light);
    letter-spacing: 0.3px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    color: var(--cream);
    font-size: 1rem;
    font-family: 'Source Sans 3', sans-serif;
    transition: all 0.3s ease;
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(212, 201, 184, 0.4);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--green);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(70, 141, 0, 0.15);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" width="12" height="12" fill="%23D4C9B8" viewBox="0 0 16 16"%3E%3Cpath d="M8 12L2 6h12z"/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer;
}

.form-group select option {
    background: var(--dark-wood);
    color: var(--cream);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group.error input,
.form-group.error select,
.form-group.error textarea {
    border-color: #e74c3c;
}

.error-message {
    color: #e74c3c;
    font-size: 0.8rem;
    margin-top: 6px;
    display: none;
}

.form-group.error .error-message {
    display: block;
}

.btn-submit {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    color: var(--dark-wood);
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    font-family: 'Source Sans 3', sans-serif;
    text-transform: uppercase;
    margin-top: 8px;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(70, 141, 0, 0.4);
}

.form-success {
    display: none;
    text-align: center;
    padding: 48px 24px;
}

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

.form-success .checkmark {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 2rem;
    color: var(--dark-wood);
}

.form-success h3 {
    color: var(--cream);
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.form-success p {
    color: var(--text-light);
    opacity: 0.8;
}

.contact-info { padding-top: 16px; }

.contact-info h3 {
    color: var(--cream);
    font-size: 1.4rem;
    margin-bottom: 2rem;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: background 0.3s ease;
}

.contact-detail:hover { background: rgba(255, 255, 255, 0.07); }

.contact-detail-icon {
    width: 48px;
    height: 48px;
    background: rgba(70, 141, 0, 0.12);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-detail-icon svg {
    width: 22px;
    height: 22px;
}

.contact-detail-text h4 {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
    color: var(--green-light);
}

.contact-detail-text p {
    color: var(--text-light);
    font-size: 1rem;
    opacity: 0.85;
    line-height: 1.5;
}

.contact-detail-text a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-detail-text a:hover { color: var(--green); }

/* ===== ABOUT PAGE ===== */
.about-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-intro-img {
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--warm-brown), var(--dark-wood));
    box-shadow: var(--shadow-medium);
}

.about-intro-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-intro-text h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    margin-bottom: 1rem;
}

.about-intro-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-body);
    margin-bottom: 1rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 3rem;
}

.value-card {
    background: white;
    border-radius: 16px;
    padding: 40px 28px;
    text-align: center;
    border: 1px solid rgba(44, 24, 16, 0.06);
    transition: all 0.4s ease;
}

.value-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-medium);
}

.value-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, rgba(70, 141, 0, 0.1), rgba(70, 141, 0, 0.05));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
}

.value-card h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
}

.value-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ===== FOOTER ===== */
footer {
    background: #130D07;
    color: var(--text-light);
    padding: 60px 0 30px;
}

.footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-brand h3 {
    font-size: 1.5rem;
    color: var(--cream);
    margin-bottom: 8px;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-links h4 {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--green);
    margin-bottom: 16px;
    font-weight: 600;
}

.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 10px; }

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    padding-top: 24px;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
    opacity: 0.6;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .contact-wrapper { grid-template-columns: 1fr; gap: 48px; }
    .footer-inner { grid-template-columns: 1fr; gap: 32px; }
    .about-intro { grid-template-columns: 1fr; gap: 40px; }
    .service-detail-inner { grid-template-columns: 1fr; gap: 40px; }
    .service-detail:nth-child(even) .service-detail-inner { direction: ltr; }
}

@media (max-width: 768px) {
    section { padding: 70px 0; }

    .nav-links { display: none; }
    .hamburger { display: flex; }

    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .stat-item::after { display: none !important; }

    .timeline { grid-template-columns: 1fr; gap: 40px; }
    .timeline::before { display: none; }

    .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }

    .contact-form { padding: 32px 24px; }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    .service-card,
    .service-card:nth-child(4),
    .service-card:nth-child(5) {
        grid-column: span 1;
    }

    .values-grid { grid-template-columns: 1fr; gap: 20px; }

    .page-header { padding: 130px 0 60px; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 2.2rem; }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .btn-primary, .btn-secondary, .btn-outline {
        text-align: center;
        justify-content: center;
        padding: 14px 24px;
    }

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

    .service-card,
    .service-card:nth-child(4),
    .service-card:nth-child(5) {
        grid-column: span 1;
    }
}

/* ===== SERVICES GRID --4 (4-column variant) ===== */
.services-grid--4 {
    grid-template-columns: repeat(4, 1fr);
}
.services-grid--4 .service-card,
.services-grid--4 .service-card:nth-child(4),
.services-grid--4 .service-card:nth-child(5) {
    grid-column: span 1;
}
@media (max-width: 900px) {
    .services-grid--4 {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 600px) {
    .services-grid--4 {
        grid-template-columns: 1fr;
    }
}

/* Reverse order for service-detail (image on right) */
.service-detail-inner--reverse { direction: rtl; }
.service-detail-inner--reverse > * { direction: ltr; }
@media (max-width: 900px) {
    .service-detail-inner--reverse { direction: ltr; }
}

/* Disable auto-alternation from nth-child so explicit modifier wins */
.service-detail:nth-child(even) .service-detail-inner { direction: ltr; }
.service-detail:nth-child(even) .service-detail-inner > * { direction: ltr; }

/* Footer logo */
.footer-logo {
    height: 56px;
    width: auto;
    display: block;
    margin-bottom: 16px;
}

/* Secondary button light variant */
.btn-secondary--light {
    color: #F5ECD7;
    border-color: rgba(245, 236, 215, 0.7);
}
.btn-secondary--light:hover {
    background: rgba(245, 236, 215, 0.12);
    color: #F5ECD7;
    border-color: #F5ECD7;
}

/* ===== GALLERY TABS ===== */
.gallery-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-bottom: 2.5rem;
}
.gallery-tab {
    background: transparent;
    border: 1.5px solid rgba(44, 24, 16, 0.18);
    color: var(--dark-wood, #2C1810);
    padding: 10px 20px;
    border-radius: 100px;
    font-family: 'Source Sans 3', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    letter-spacing: 0.3px;
}
.gallery-tab:hover {
    border-color: var(--green, #468D00);
    color: var(--green, #468D00);
}
.gallery-tab.active {
    background: var(--green, #468D00);
    color: #fff;
    border-color: var(--green, #468D00);
}

/* ===== LIGHTBOX ===== */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(10, 7, 4, 0.92);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 40px;
}
.lightbox.active { display: flex; }
.lightbox img {
    max-width: 90vw;
    max-height: 88vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.6);
}
.lightbox-close {
    position: absolute;
    top: 20px;
    right: 24px;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 2.5rem;
    line-height: 1;
    cursor: pointer;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.2s ease;
}
.lightbox-close:hover { background: rgba(255, 255, 255, 0.1); }
.gallery-item { cursor: zoom-in; }

/* Portrait photo fix in gallery */
.gallery-item img {
    aspect-ratio: 4 / 3;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===== WHATSAPP WIDGET ===== */
.wa-widget {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 9998;
    display: flex;
    align-items: center;
    gap: 10px;
    height: 60px;
    padding: 0 18px 0 14px;
    background: #25D366;
    color: #fff;
    text-decoration: none;
    font-family: 'Source Sans 3', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 100px;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.35), 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.wa-widget:hover {
    background: #1ebe5a;
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 14px 36px rgba(37, 211, 102, 0.45), 0 6px 18px rgba(0, 0, 0, 0.2);
    color: #fff;
}
.wa-widget:active {
    transform: translateY(0) scale(0.98);
}
.wa-icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.15));
}
.wa-label {
    white-space: nowrap;
    letter-spacing: 0.2px;
}
/* Pulse ring */
.wa-widget::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: inherit;
    border: 2px solid #25D366;
    opacity: 0.6;
    animation: wa-pulse 2.2s ease-out infinite;
    pointer-events: none;
}
@keyframes wa-pulse {
    0%   { transform: scale(1);    opacity: 0.6; }
    80%  { transform: scale(1.18); opacity: 0; }
    100% { transform: scale(1.18); opacity: 0; }
}

@media (max-width: 600px) {
    .wa-widget {
        right: 16px;
        bottom: 16px;
        padding: 0;
        width: 56px;
        height: 56px;
        justify-content: center;
    }
    .wa-label { display: none; }
}


.fade-in { opacity: 1 !important; transform: none !important; transition: none !important; }

/* block 523158f5 */
.gv-element-hover { outline: 1px dashed rgba(99, 102, 241, 0.5) !important; cursor: pointer; }
        .gv-element-selected { outline: 2px solid #6366f1 !important; }
        .gv-editing { outline: 2px solid #6366f1 !important; background: rgba(99, 102, 241, 0.05) !important; min-height: 1em; }
        /* Brief blink when parent breadcrumb hovers an ancestor — quick preview
           of which DOM node would become selected on click. */
        .gv-element-flash { outline: 3px solid #f59e0b !important; outline-offset: 2px; transition: outline 0.15s ease; }
        /* Prevent text selection while not editing */
        body:not(.gv-editing-mode) { user-select: none; -webkit-user-select: none; }
        body.gv-editing-mode [] { user-select: text; -webkit-user-select: text; }

/* block 9ad2b805 */
.gv-element-hover { outline: 1px dashed rgba(99, 102, 241, 0.5) !important; outline-offset: 1px; cursor: pointer; }
        /* Two-layer ring: 2px white inner + 4px indigo halo + 1px black edge.
           Always visible regardless of element bg (white-on-white, indigo
           button, dark text). box-shadow stacks where outline can't. */
        .gv-element-selected { outline: 2px solid #ffffff !important; outline-offset: 0 !important; box-shadow: 0 0 0 4px #6366f1, 0 0 0 5px rgba(0,0,0,0.4) !important; }
        .gv-editing { outline: 2px solid #ffffff !important; outline-offset: 0 !important; box-shadow: 0 0 0 4px #6366f1 !important; background: rgba(99, 102, 241, 0.05) !important; min-height: 1em; }
        /* Brief blink when parent breadcrumb hovers an ancestor — quick preview
           of which DOM node would become selected on click. */
        .gv-element-flash { outline: 3px solid #f59e0b !important; outline-offset: 2px; transition: outline 0.15s ease; }
        /* Prevent text selection while not editing */
        body:not(.gv-editing-mode) { user-select: none; -webkit-user-select: none; }
        body.gv-editing-mode [] { user-select: text; -webkit-user-select: text; }
        /* Iframe shield — transparent overlay that captures clicks so YouTube
           / Calendly / Vimeo embeds don't swallow the editor's selection.
           Hover shows a subtle hint chip so the user knows the click selects
           the iframe (not starts the video). Alt+Click on the shield falls
           through to the iframe for actually testing playback. */
        [data-gv-iframe-host] { position: relative; display: inline-block; line-height: 0; }
        [data-gv-iframe-host].gv-iframe-host-block { display: block; }
        .gv-iframe-shield {
            position: absolute; inset: 0; z-index: 5;
            background: transparent; cursor: pointer;
            transition: background-color 0.15s ease;
        }
        .gv-iframe-shield:hover { background-color: rgba(99, 102, 241, 0.08); }
        .gv-iframe-shield::after {
            content: 'Klikni pre výber · Alt+Click pre prehratie';
            position: absolute; top: 8px; left: 8px;
            background: rgba(15, 23, 42, 0.85); color: #fff;
            font: 500 11px/1 system-ui, sans-serif; padding: 5px 8px;
            border-radius: 6px; opacity: 0; transition: opacity 0.15s ease;
            pointer-events: none; white-space: nowrap;
        }
        .gv-iframe-shield:hover::after { opacity: 1; }

/* block 0b40be01 */
body{margin:0;}