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

:root {
    /* === Hlavné 3 farby === */
    --cream:       #f2f2f2;
    --brown-dark:  #2b2b2b;
    --rust:        #c0392b;

    /* Odvodené odtiene */
    --cream-deep:  #ebe4db;
    --cream-soft:  #f9f6f2;
    --brown-mid:   #3d2418;
    --brown-light: #5c3a28;
    --rust-hover:  #d96035;
    --rust-pale:   #f5e8e2;
    --text-body:   #1e1410;
    --text-muted:  #8a7a68;

    /* Sémantické tokeny — light mode */
    --bg:          var(--cream-soft);
    --bg-alt:      var(--cream);
    --bg-stone:    var(--cream-deep);
    --border:      #e2d9cf;
    --border2:     #cfc4b8;
    --text:        var(--text-body);
    --text-mid:    #4a3828;
    --text-muted:  var(--text-muted);
    --nav-bg:      rgba(249,246,242,0.97);
    --card-bg:     var(--cream-soft);
    --input-bg:    var(--cream-soft);
    --orange:      var(--rust);
    --orange-h:    var(--rust-hover);
    --orange-pale: var(--rust-pale);

    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans:  'Inter', sans-serif;
    --radius: 4px;
    --transition: 0.25s ease;
}

html { scroll-behavior: smooth; }

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

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

a { text-decoration: none; color: inherit; transition: color var(--transition); }
img { display: block; max-width: 100%; }

/* =====================
   BUTTONS
===================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2.25rem;
    font-family: var(--font-sans);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all var(--transition);
    border: 1.5px solid transparent;
}
.btn--primary {
    background: var(--orange);
    color: #fff;
    border-color: var(--orange);
}
.btn--primary:hover {
    background: var(--orange-h);
    border-color: var(--orange-h);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(184,73,40,0.3);
}
.btn--outline {
    background: transparent;
    color: var(--orange);
    border-color: var(--orange);
}
.btn--outline:hover {
    background: var(--orange);
    color: #fff;
    transform: translateY(-1px);
}
.btn--full { width: 100%; justify-content: center; }

/* =====================
   SECTION HEADER
===================== */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}
.section-header h2 {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    color: var(--text);
    margin-bottom: 1.25rem;
    letter-spacing: -0.01em;
}
.section-header h2::after {
    content: '';
    display: block;
    width: 48px;
    height: 2px;
    background: var(--orange);
    margin: 1rem auto 0;
}
.section-header p {
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.9;
}
.pricing__badge {
    display: inline-block;
    background: var(--orange-pale);
    color: var(--orange);
    border: 1px solid rgba(184,73,40,0.2);
    border-radius: 2px;
    padding: 0.45rem 1.25rem;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-top: 1.25rem;
}

/* =====================
   NAV
===================== */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: transparent;
    border-bottom: 1px solid transparent;
    transition: background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}
.nav.scrolled {
    background: var(--nav-bg);
    backdrop-filter: blur(12px);
    border-bottom-color: var(--border);
    box-shadow: 0 2px 30px rgba(0,0,0,0.07);
}
.nav__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2.5rem;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav__logo {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.02em;
    transition: color 0.4s ease;
}
.nav__logo span { color: #fff; transition: color 0.4s ease; }
.nav.scrolled .nav__logo { color: var(--text); }
.nav.scrolled .nav__logo span { color: var(--orange); }
.nav__links {
    display: flex;
    align-items: center;
    gap: 2.75rem;
    list-style: none;
}
.nav__links a {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.85);
    position: relative;
    padding-bottom: 2px;
    transition: color 0.4s ease;
}
.nav.scrolled .nav__links a { color: var(--text-mid); }
.nav__links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--orange);
    transition: width var(--transition);
}
.nav__links a.active { color: #fff; }
.nav__links a.active::after { width: 100%; }
.nav.scrolled .nav__links a.active { color: var(--orange); }
@media (hover: hover) {
    .nav__links a:hover { color: var(--orange); }
    .nav__links a:hover::after { width: 100%; }
}
.nav__right {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.nav__social {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    color: rgba(255,255,255,0.75);
    transition: color 0.4s ease;
}
.nav.scrolled .nav__social { color: var(--text-muted); }
.nav__social a {
    display: flex;
    align-items: center;
    transition: color var(--transition);
}
@media (hover: hover) { .nav__social a:hover { color: var(--orange); } }
.nav__burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.nav__burger span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: #fff;
    transition: all 0.3s ease, background 0.4s ease;
    transform-origin: center;
}
.nav.scrolled .nav__burger span { background: var(--text); }
#burger.active span { background: var(--brown-dark); }
.nav__burger.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__burger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__burger.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* =====================
   MOBILE MENU
===================== */
.mobile-menu {
    position: fixed;
    inset: 0;
    background: var(--bg);
    z-index: 99;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}
.mobile-menu.active { opacity: 1; pointer-events: all; }
.mobile-menu__logo {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text);
    letter-spacing: -0.02em;
    margin-bottom: 2rem;
}
.mobile-menu__logo span { color: var(--orange); }
.mobile-menu ul { list-style: none; text-align: center; }
.mobile-menu li { margin: 1.25rem 0; }
.mobile-menu a {
    font-family: var(--font-serif);
    font-size: 2.25rem;
    font-weight: 600;
    color: var(--text);
    letter-spacing: -0.02em;
    transition: color var(--transition);
}
@media (hover: hover) { .mobile-menu a:hover { color: var(--orange); } }

/* =====================
   HERO
===================== */
.hero {
    min-height: 100vh;
    background: none;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 9rem 2.5rem 5rem;
    position: relative;
}
/* Hero slideshow */
.hero__slides {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero__slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.5s ease;
}
.hero__slide.active { opacity: 1; }
.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.75) 100%);
    z-index: 1;
}
.hero__content { max-width: 780px; color: #fff; position: relative; z-index: 2; }
.hero__label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--orange-pale);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 2px;
    padding: 0.4rem 1.25rem;
    margin-bottom: 1.75rem;
    opacity: 0.9;
}
.hero h1 {
    font-family: var(--font-serif);
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 800;
    line-height: 1.07;
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
}
.hero h1 span { color: var(--orange-h); }
.hero__sub {
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    opacity: 0.82;
    letter-spacing: 0.01em;
}
.hero__desc {
    font-size: 0.97rem;
    opacity: 0.72;
    max-width: 580px;
    margin: 0 auto 2.25rem;
    line-height: 1.9;
}
.hero__divider {
    width: 40px;
    height: 1px;
    background: rgba(255,255,255,0.4);
    margin: 0 auto 2.25rem;
}
.hero__badges {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    margin-bottom: 2.75rem;
    flex-wrap: wrap;
}
.hero__badge {
    font-size: 0.82rem;
    letter-spacing: 0.04em;
    opacity: 0.85;
    font-weight: 500;
}
.hero__badge::before {
    content: '—';
    margin-right: 0.5rem;
    color: var(--orange-h);
}
.hero__actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3.5rem;
}
.hero .btn--outline { color: #fff; border-color: rgba(255,255,255,0.55); }
.hero .btn--outline:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.85); }
.hero__arrow {
    font-size: 1.2rem;
    opacity: 0.45;
    animation: bounce 2.5s ease infinite;
    letter-spacing: 0.2em;
}
@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}

/* =====================
   STATS STRIP
===================== */
.stats-strip {
    background: var(--cream);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 2.25rem 0;
}
.stats-strip__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2.5rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}
.stat-item {
    text-align: center;
    padding: 0.5rem 1.5rem;
    border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-item__num {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 700;
    color: var(--rust);
    line-height: 1;
    margin-bottom: 0.35rem;
}
.stat-item__label {
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
}

/* =====================
   ABOUT
===================== */
.about {
    padding: 8rem 0;
    background: var(--bg);
}
.about__inner {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 5rem;
}
.about__eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 1rem;
}
.about__text h3 {
    font-family: var(--font-serif);
    font-size: 1.9rem;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 1.5rem;
    color: var(--text);
    letter-spacing: -0.01em;
}
.about__text p {
    color: var(--text-muted);
    margin-bottom: 1.1rem;
    line-height: 1.9;
    font-size: 0.97rem;
}
.about__text strong { color: var(--text); font-weight: 600; }

.about__slider { position: relative; border-radius: 14px; overflow: hidden; }
.about__slides { position: relative; }
.about__slide { display: none; position: relative; }
.about__slide.active { display: block; }
.about__slide-img {
    width: 100%;
    height: 420px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.about__slide-label {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 2rem 1.5rem 1.25rem;
    background: linear-gradient(to top, rgba(22,20,18,0.78) 0%, transparent 100%);
    color: #fff;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}
.slider-prev, .slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(4px);
    border: 1.5px solid rgba(255,255,255,0.35);
    color: #fff;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
    z-index: 2;
}
.slider-prev { left: 1rem; }
.slider-next { right: 1rem; }
.slider-prev:hover, .slider-next:hover {
    background: var(--orange);
    border-color: var(--orange);
}
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 1rem 0 0;
    background: none;
}
.dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--border2);
    cursor: pointer;
    transition: background var(--transition);
}
.dot.active { background: var(--orange); }

.features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border: 1px solid var(--stone);
}
.feature-card {
    padding: 2.25rem 2rem;
    border-right: 1px solid var(--stone);
    transition: background var(--transition);
    position: relative;
}
.feature-card:last-child { border-right: none; }
.feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: var(--orange);
    opacity: 0;
    transition: opacity var(--transition);
}
.feature-card:hover { background: var(--bg-alt); }
.feature-card:hover::before { opacity: 1; }
.feature-card__icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius);
    background: var(--orange-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    color: var(--orange);
}
.feature-card h4 {
    font-family: var(--font-sans);
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 0.6rem;
    color: var(--text);
}
.feature-card p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.75; }

/* =====================
   GALLERY
===================== */
.gallery {
    padding: 8rem 0;
    background: var(--bg-alt);
}
.gallery__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}
.gallery-item--wide {
    grid-column: span 2;
}
.gallery-item--tall .gallery-item__img {
    height: 420px;
}
.gallery-item {
    overflow: hidden;
    cursor: pointer;
    position: relative;
    background: var(--stone);
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
    outline: none;
}
.gallery-item__img {
    height: 280px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.6s ease;
}
.gallery-item:hover .gallery-item__img { transform: scale(1.06); }
.gallery-item__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(22,20,18,0.72) 0%, transparent 50%);
    display: flex;
    align-items: flex-end;
    padding: 1.25rem;
    transition: background 0.4s ease;
}
.gallery-item:hover .gallery-item__overlay {
    background: linear-gradient(to top, rgba(22,20,18,0.88) 0%, rgba(22,20,18,0.2) 100%);
}
.gallery-item__label {
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #fff;
    text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}

/* =====================
   PRICING
===================== */
.pricing {
    padding: 8rem 0;
    background: var(--bg);
}
.pricing__category {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.pricing__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.25rem;
    margin-bottom: 3.5rem;
}
.pricing__grid--small {
    grid-template-columns: repeat(2, 1fr);
    max-width: 520px;
}
.pricing-card {
    background: var(--card-bg);
    border: 1.5px solid var(--border);
    border-radius: 14px;
    padding: 2rem 1.5rem 1.75rem;
    text-align: center;
    position: relative;
    transition: box-shadow var(--transition), transform var(--transition);
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.pricing-card:hover {
    box-shadow: 0 8px 28px rgba(0,0,0,0.09);
    transform: translateY(-2px);
}
.pricing-card--featured {
    background: var(--card-bg);
    border-color: var(--orange);
    border-width: 2px;
    box-shadow: 0 4px 20px rgba(196,84,44,0.12);
}
.pricing-card--featured:hover {
    box-shadow: 0 10px 32px rgba(196,84,44,0.18);
}
.pricing-card__badge {
    position: absolute;
    top: -13px;
    left: 1.25rem;
    background: var(--orange);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    padding: 0.25rem 0.875rem;
    border-radius: 100px;
    white-space: nowrap;
}
.pricing-card__icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--orange-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    color: var(--orange);
}
.pricing-card--featured .pricing-card__icon {
    background: var(--orange-pale);
    color: var(--orange);
}
.pricing-card h4 {
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0;
    text-transform: none;
    margin-bottom: 0.75rem;
    color: var(--text);
}
.pricing-card__price {
    font-family: var(--font-serif);
    font-size: 2.1rem;
    font-weight: 700;
    color: var(--orange);
    line-height: 1;
    margin-bottom: 0.75rem;
}
.pricing-card__price span {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--text-muted);
}
.pricing-card__note {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
    line-height: 1.6;
}
.pricing__info {
    margin-top: 3rem;
    padding: 2rem 2.5rem;
    background: var(--bg-alt);
    border: 1px solid var(--border);
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    align-items: center;
}
.pricing__info strong {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    color: var(--text);
    display: block;
    margin-bottom: 0.35rem;
}
.pricing__info p {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.7;
}
.pricing__info-mid { border-left: 1px solid var(--border); padding-left: 2rem; }
.pricing__info-right {
    border-left: 1px solid var(--border);
    padding-left: 2rem;
    text-align: right;
}
.pricing__info-vat {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--rust);
    letter-spacing: 0.02em;
}

/* =====================
   CONTACT
===================== */
.contact-section {
    padding: 8rem 0;
    background: var(--cream);
}

/* Top: cards + map side by side */
.contact__top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: stretch;
    margin-bottom: 3rem;
}
.contact__cards-wrap {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.contact__cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    flex: 1;
}
.contact__card {
    background: var(--cream-soft);
    border: 1.5px solid var(--border);
    border-radius: 14px;
    padding: 1.4rem 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    transition: border-color var(--transition), box-shadow var(--transition);
}
.contact__card:hover {
    border-color: var(--rust);
    box-shadow: 0 4px 16px rgba(196,84,44,0.08);
}
.contact__item-icon {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    background: var(--rust-pale);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--rust);
}
.contact__card strong {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.15rem;
}
.contact__card span { font-size: 0.95rem; color: var(--text); line-height: 1.5; }
@media (hover: hover) { .contact__card a:hover { color: var(--orange); } }

/* Action buttons below cards */
.contact__actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}
.contact__actions .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* Map */
.contact__map {
    border-radius: 14px;
    overflow: hidden;
    border: 1.5px solid var(--border);
    min-height: 360px;
}
.contact__map iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 360px;
}

/* Form section */
.contact__form-wrap {
    background: var(--cream-soft);
    border: 1.5px solid var(--border);
    border-radius: 18px;
    padding: 3rem;
}
.contact__form-title {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--brown-dark);
    margin-bottom: 2rem;
}

/* Legacy contact item styles (kept for compatibility) */
.contact__item { display: flex; align-items: flex-start; gap: 1.1rem; }
.contact__item strong {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.3rem;
}
.contact__item span { font-size: 0.95rem; color: var(--text); }
@media (hover: hover) { .contact__item a:hover { color: var(--orange); } }

.contact__form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-group label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
}
.form-group input,
.form-group textarea {
    background: #fff;
    border: 1.5px solid var(--border2);
    border-radius: 8px;
    padding: 0.9rem 1.1rem;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    color: var(--text-body);
    outline: none;
    transition: border-color var(--transition), box-shadow var(--transition);
}
.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(196,84,44,0.1);
}
.form-group textarea { min-height: 150px; resize: vertical; }

.char-counter {
    float: right;
    font-size: 0.72rem;
    font-weight: 400;
    color: var(--text-muted);
    letter-spacing: 0;
    text-transform: none;
}
.char-counter.near-limit { color: #c0392b; }

.form-group--checkbox { margin-top: 0.25rem; }
.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.875rem;
    color: var(--text-muted);
}
.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    min-width: 18px;
    border: 1.5px solid var(--border2);
    border-radius: 3px;
    background: #fff;
    cursor: pointer;
    accent-color: var(--rust);
    margin-top: 1px;
}
.checkbox-label a {
    color: var(--rust);
    text-decoration: underline;
}
@media (hover: hover) { .checkbox-label a:hover { color: var(--rust-hover); } }

/* =====================
   REVIEWS
===================== */
.reviews {
    padding: 8rem 0;
    background: var(--cream-soft);
}
.reviews__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}
.review-card {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    transition: box-shadow var(--transition), border-color var(--transition);
}
.review-card:hover {
    border-color: var(--rust);
    box-shadow: 0 6px 24px rgba(196,84,44,0.08);
}
.review-card__stars {
    color: var(--rust);
    font-size: 1.1rem;
    letter-spacing: 2px;
}
.review-card__text {
    font-size: 0.97rem;
    line-height: 1.8;
    color: var(--text-body);
    flex: 1;
    font-style: italic;
}
.review-card__author {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}
.review-card__avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--rust-pale);
    color: var(--rust);
    font-size: 0.78rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.review-card__author strong {
    display: block;
    font-size: 0.92rem;
    color: var(--brown-dark);
}
.review-card__author span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* =====================
   LIGHTBOX
===================== */
#lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(10,8,6,0.92);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}
#lightbox.active { display: flex; }
.lightbox__img-wrap {
    max-width: 90vw;
    max-height: 88vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.lightbox__img {
    max-width: 90vw;
    max-height: 88vh;
    object-fit: contain;
    border-radius: 6px;
    box-shadow: 0 24px 80px rgba(0,0,0,0.6);
}
.lightbox__close {
    position: fixed;
    top: 1.25rem;
    right: 1.5rem;
    background: rgba(255,255,255,0.1);
    border: 1.5px solid rgba(255,255,255,0.25);
    color: #fff;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition);
}
.lightbox__close:hover { background: var(--rust); border-color: var(--rust); }
.lightbox__prev, .lightbox__next {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.1);
    border: 1.5px solid rgba(255,255,255,0.25);
    color: #fff;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition);
}
.lightbox__prev { left: 1.25rem; }
.lightbox__next { right: 1.25rem; }
.lightbox__prev:hover, .lightbox__next:hover { background: var(--rust); border-color: var(--rust); }

/* =====================
   FOOTER
===================== */
.footer { background: var(--brown-dark); color: rgba(255,255,255,0.75); }
.footer__top {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
    gap: 3rem;
    padding: 5rem 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer__logo {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}
.footer__logo span { color: var(--orange-h); }
.footer__col p {
    font-size: 0.875rem;
    line-height: 1.85;
    color: rgba(255,255,255,0.45);
    margin-bottom: 1.5rem;
}
.footer__social { display: flex; gap: 0.6rem; }
.footer__social a {
    width: 34px;
    height: 34px;
    border: 1px solid rgba(255,255,255,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.5);
    transition: all var(--transition);
}
@media (hover: hover) {
    .footer__social a:hover {
        background: var(--orange);
        border-color: var(--orange);
        color: #fff;
    }
}
.footer__col h4 {
    font-size: 0.72rem;
    font-weight: 700;
    color: rgba(255,255,255,0.9);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
}
.footer__col ul { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
.footer__col ul a {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.45);
    transition: color var(--transition);
}
@media (hover: hover) { .footer__col ul a:hover { color: rgba(255,255,255,0.9); } }
.footer__contact { display: flex; flex-direction: column; gap: 1rem; }
.footer__contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: rgba(255,255,255,0.45);
}
.footer__contact-item svg { flex-shrink: 0; margin-top: 2px; color: var(--orange-h); }
.footer__bottom {
    padding: 1.5rem 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.25);
    flex-wrap: wrap;
    gap: 0.5rem;
}


/* GDPR stránka */
.gdpr-page {
    padding: 9rem 0 6rem;
}
.gdpr-page h1 {
    font-family: var(--font-serif);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    color: var(--text);
    margin-bottom: 2.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--rust);
    display: inline-block;
}
.gdpr-page h2 {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    color: var(--text);
    margin: 2rem 0 0.75rem;
}
.gdpr-page p, .gdpr-page li {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.9;
}
.gdpr-page ul {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}
.gdpr-page a { color: var(--rust); text-decoration: underline; }

/* Admin link */
.footer__admin-link {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s;
}
@media (hover: hover) { .footer__admin-link:hover { color: var(--rust); } }

/* =====================
   SCROLL ANIMATIONS
===================== */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* =====================
   RESPONSIVE
===================== */
@media (max-width: 1024px) {
    .pricing__grid { grid-template-columns: repeat(3, 1fr); }
    .stats-strip__inner { grid-template-columns: repeat(2, 1fr); }
    .stats-strip .stat-item:nth-child(2) { border-right: none; }
    .footer__top { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}
@media (max-width: 640px) {
    .nav__links, .nav__social { display: none; }
    .nav__burger { display: flex; }
    .hero { min-height: 60vh; }
    .hero__slide { background-size: cover; background-position: center 40%; }
    .about__inner { grid-template-columns: 1fr; gap: 3rem; }
    .features { grid-template-columns: repeat(2, 1fr); }
    .features .feature-card:nth-child(2) { border-right: none; }
    .features .feature-card:nth-child(3),
    .features .feature-card:nth-child(4) { border-top: 1px solid var(--stone); }
    .gallery__grid { grid-template-columns: 1fr; }
    .pricing__grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
    .contact__inner { grid-template-columns: 1fr; gap: 3rem; }
    .reviews__grid { grid-template-columns: 1fr; }
    .contact__top { grid-template-columns: 1fr; }
    .contact__map { min-height: 280px; }
    .contact__map iframe { min-height: 280px; }
    .contact__form-wrap { padding: 2rem 1.5rem; }
    .form-row { grid-template-columns: 1fr; }
    .footer__top { grid-template-columns: 1fr 1fr; }
    .footer__bottom { flex-direction: column; text-align: center; }
    .pricing__info { grid-template-columns: 1fr; }
    .pricing__info-mid, .pricing__info-right { border-left: none; padding-left: 0; border-top: 1px solid var(--border); padding-top: 1rem; text-align: left; }
    .slider-prev { left: 0.75rem; }
    .slider-next { right: 0.75rem; }
}
@media (max-width: 480px) {
    .container { padding: 0 1.5rem; }
    .hero__badges { flex-direction: column; gap: 0.75rem; }
    .hero__actions { display: none; }
    .features { grid-template-columns: 1fr; }
    .features .feature-card { border-right: none; border-top: 1px solid var(--stone); }
    .features .feature-card:first-child { border-top: none; }
    .gallery__grid { grid-template-columns: 1fr; }
    .pricing__grid { grid-template-columns: 1fr; }
    .footer__top { grid-template-columns: 1fr; }
    .stats-strip__inner { grid-template-columns: repeat(2, 1fr); }
    .contact__cards { grid-template-columns: 1fr; }
    .contact__actions { flex-direction: column; }
    .contact__actions .btn { width: 100%; justify-content: center; }
}
