/* =============================================
   PROMĚNNÉ & RESET
   ============================================= */
:root {
    --primary: #d4a373;
    --primary-dark: #bc8a5f;
    --accent: #faedcd;
    --text: #2d2d2d;
    --text-muted: #888;
    --light: #fefae0;
    --white: #ffffff;
    --bg: #fffaf5;
    --shadow: 0 4px 20px rgba(0,0,0,0.09);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.13);
    --radius: 14px;
    --transition: 0.3s ease;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.7;
    color: var(--text);
    background-color: var(--bg);
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    line-height: 1.25;
}

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

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

.section { padding: 90px 0; }
.bg-light { background-color: var(--accent); }
.text-center { text-align: center; }
.text-muted { color: var(--text-muted); font-size: 0.9rem; margin-top: 20px; }

/* =============================================
   NAVBAR
   ============================================= */
.navbar {
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(10px);
    padding: 14px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 1px 0 rgba(0,0,0,0.08);
    transition: box-shadow var(--transition);
}

.navbar.scrolled {
    box-shadow: var(--shadow);
}

.nav-container {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Logo */
.logo {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
    text-decoration: none;
    margin-right: auto;
    flex-shrink: 0;
}

.logo-sub {
    font-size: 0.68rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #a08060;
}

.logo-name {
    font-size: 1.4rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    color: var(--primary);
    letter-spacing: 0.01em;
}

/* Nav links */
.nav-links {
    display: flex;
    list-style: none;
    gap: 4px;
}

.nav-links li a {
    text-decoration: none;
    color: var(--text);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.92rem;
    font-weight: 400;
    transition: var(--transition);
}

.nav-links li a:hover {
    color: var(--primary);
    background: var(--accent);
}

/* Nav right */
.nav-right {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.btn-small {
    padding: 8px 20px;
    background: var(--primary);
    color: white;
    font-size: 0.88rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-small:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

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

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: var(--transition);
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =============================================
   HERO
   ============================================= */
.hero {
    min-height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)),
        url(Luxurious\ premium\ bakery.jpg) center/cover no-repeat;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 100px 24px 60px;
    position: relative;
}

.hero-eyebrow {
    font-size: 0.85rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px;
    opacity: 0.9;
}

.hero h1 {
    font-size: clamp(2.2rem, 5vw, 4rem);
    margin-bottom: 20px;
    text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}

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

.hero-sub {
    font-size: 1.1rem;
    margin-bottom: 36px;
    max-width: 560px;
    opacity: 0.9;
    font-weight: 300;
}

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

.hero-scroll-hint {
    position: absolute;
    bottom: 30px;
    font-size: 1.4rem;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
}

/* Fade-in animation */
.fade-in {
    animation: fadeInUp 0.9s ease both;
}

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

/* =============================================
   BUTTONS
   ============================================= */
.btn-primary, .btn-secondary {
    padding: 13px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    display: inline-block;
    cursor: pointer;
    border: 2px solid transparent;
}

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

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(212,163,115,0.4);
}

.btn-secondary {
    background: transparent;
    color: white;
    border-color: rgba(255,255,255,0.7);
}

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

/* =============================================
   SECTION TAG
   ============================================= */
.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 10px;
}

.text-center-tag {
    display: block;
    text-align: center;
}

/* =============================================
   SCROLL REVEAL
   ============================================= */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* =============================================
   O NÁS
   ============================================= */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 { font-size: 2.2rem; margin-bottom: 20px; }
.about-text p { color: #555; margin-bottom: 16px; }

.features {
    list-style: none;
    margin-top: 28px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.features li {
    display: flex;
    align-items: center;
    gap: 14px;
    font-weight: 600;
    font-size: 1.08rem;
    color: var(--text);
    background: var(--accent);
    padding: 12px 18px;
    border-radius: 10px;
    border-left: 4px solid var(--primary);
}

.check {
    color: var(--primary);
    font-weight: 700;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.img-placeholder {
    width: 100%;
    height: 420px;
    background: linear-gradient(135deg, #f0e6d6, #e8d5bc);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
    color: #aaa;
    border: 2px dashed #d4b896;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
}

/* =============================================
   GALERIE
   ============================================= */
.filter-btns {
    margin: 28px 0;
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.filter-btn {
    padding: 8px 20px;
    border: 1.5px solid var(--primary);
    background: transparent;
    cursor: pointer;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.88rem;
    color: var(--primary);
    transition: var(--transition);
}

.filter-btn:hover, .filter-btn.active {
    background: var(--primary);
    color: white;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.gallery-item {
    transition: var(--transition);
}

.gallery-item.hidden {
    display: none;
}

.img-box {
    height: 260px;
    overflow: hidden;
    border-radius: var(--radius);
    position: relative;
    cursor: pointer;
}

.img-box .img-placeholder {
    height: 100%;
    border-radius: var(--radius);
    transition: transform 0.4s ease;
    border: none;
}

.img-box:hover .img-placeholder {
    transform: scale(1.05);
}

.img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.55), transparent);
    border-radius: var(--radius);
    display: flex;
    align-items: flex-end;
    padding: 18px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.img-box:hover .img-overlay {
    opacity: 1;
}

.img-overlay span {
    color: white;
    font-weight: 600;
    font-size: 0.95rem;
}

/* =============================================
   LIGHTBOX
   ============================================= */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.88);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

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

.lightbox-inner {
    max-width: 80vw;
    max-height: 80vh;
    background: #1a1a1a;
    border-radius: var(--radius);
    min-width: 300px;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
}

.lightbox-close {
    position: absolute;
    top: 24px;
    right: 32px;
    background: none;
    border: none;
    color: white;
    font-size: 2.5rem;
    cursor: pointer;
    line-height: 1;
    opacity: 0.8;
    transition: opacity var(--transition);
}

.lightbox-close:hover { opacity: 1; }

/* Šipky lightboxu */
.lightbox-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.12);
    border: 2px solid rgba(255,255,255,0.25);
    color: white;
    font-size: 2.8rem;
    line-height: 1;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, transform 0.2s ease;
    z-index: 2100;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}

.lightbox-arrow:hover {
    background: rgba(255,255,255,0.28);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

/* Počítadlo / popis pod fotkou */
.lightbox-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.75);
    font-size: 0.88rem;
    font-family: 'Poppins', sans-serif;
    background: rgba(0,0,0,0.4);
    padding: 5px 16px;
    border-radius: 50px;
    white-space: nowrap;
    pointer-events: none;
}

@media (max-width: 600px) {
    .lightbox-arrow {
        width: 44px;
        height: 44px;
        font-size: 2rem;
    }
    .lightbox-prev { left: 8px; }
    .lightbox-next { right: 8px; }
}

/* =============================================
   CENÍK
   ============================================= */
.price-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    margin: 40px 0;
}

.price-card {
    background: white;
    border-radius: var(--radius);
    padding: 32px 24px;
    box-shadow: var(--shadow);
    text-align: center;
    position: relative;
    transition: var(--transition);
}

.price-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.price-card--featured {
    border: 2px solid var(--primary);
    background: linear-gradient(135deg, #fff9f2, #fff5e8);
}

.price-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: 50px;
    white-space: nowrap;
}

.price-icon { font-size: 2.2rem; margin-bottom: 14px; }
.price-card h3 { font-size: 1.15rem; margin-bottom: 8px; }
.price-desc { color: var(--text-muted); font-size: 0.85rem; margin-bottom: 16px; }

.price-amount {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    font-family: 'Playfair Display', serif;
}

/* =============================================
   FAQ ACCORDION
   ============================================= */
.faq-container {
    max-width: 760px;
    margin: 40px auto 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 24px;
    text-align: left;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    transition: color var(--transition);
}

.faq-question:hover { color: var(--primary); }

.faq-icon {
    font-size: 1.4rem;
    line-height: 1;
    color: var(--primary);
    transition: transform var(--transition);
    flex-shrink: 0;
}

.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 24px;
}

.faq-answer p {
    color: #555;
    padding-bottom: 20px;
}

.faq-item.open .faq-answer {
    max-height: 200px;
    padding: 0 24px;
}

/* =============================================
   FORMULÁŘ
   ============================================= */
.order-section { background: var(--light); }

.form-card {
    background: white;
    padding: 48px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    max-width: 760px;
    margin: 0 auto;
}

.form-card h2 { font-size: 2rem; margin: 8px 0 6px; }
.form-subtitle { color: var(--text-muted); margin-bottom: 32px; }

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

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid #e0d5c5;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    color: var(--text);
    background: #fdfaf6;
    transition: border-color var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    background: white;
}

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

.full-width { width: 100%; font-size: 1rem; }

#formStatus {
    margin-top: 16px;
    font-weight: 600;
    text-align: center;
    min-height: 24px;
}

/* GDPR souhlas */
.form-consent {
    margin-bottom: 24px;
}

.consent-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-weight: 400;
    font-size: 0.88rem;
    color: #555;
    line-height: 1.5;
}

.consent-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    min-width: 18px;
    margin-top: 2px;
    accent-color: var(--primary);
    cursor: pointer;
    border-radius: 4px;
}

.consent-label a {
    color: var(--primary);
    text-decoration: underline;
    transition: color var(--transition);
}

.consent-label a:hover {
    color: var(--primary-dark);
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
    background: #2a2218;
    color: #ccc;
    padding: 64px 0 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
    margin-bottom: 24px;
}

.footer-logo .logo-sub {
    font-size: 0.68rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #a08060;
}

.footer-logo .logo-name {
    font-size: 1.5rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    color: var(--primary);
}

.footer-contacts {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 28px;
}

.footer-contacts p { font-size: 0.92rem; }
.footer-contacts a { color: #ccc; text-decoration: none; transition: color var(--transition); }
.footer-contacts a:hover { color: var(--primary); }

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 20px;
}

.footer-nav a {
    color: #888;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color var(--transition);
}

.footer-nav a:hover { color: var(--primary); }

.copyright {
    margin-top: 48px;
    border-top: 1px solid #3d3025;
    padding-top: 24px;
    font-size: 0.8rem;
    color: #666;
}

/* =============================================
   COOKIE PLACEHOLDER
   ============================================= */
.cookie-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: var(--accent);
    border-radius: var(--radius);
    padding: 36px 24px;
    text-align: center;
    min-height: 160px;
}

.cookie-placeholder--dark {
    background: #3a3025;
    border-radius: 12px;
    height: 280px;
}

.cookie-placeholder--dark p { color: #bbb; }

.cookie-placeholder-icon { font-size: 2rem; }

.cookie-placeholder p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

.cookie-placeholder-btn {
    margin-top: 4px;
    padding: 9px 24px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.25s ease, transform 0.25s ease;
}

.cookie-placeholder-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* =============================================
   COOKIES LIŠTA
   ============================================= */
.cookie-banner {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%) translateY(120px);
    z-index: 9999;
    width: calc(100% - 48px);
    max-width: 720px;
    background: #2a2218;
    border-radius: 16px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.25);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.4s ease;
    pointer-events: none;
}

.cookie-banner.visible {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    pointer-events: all;
}

.cookie-inner {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 18px 24px;
    flex-wrap: wrap;
}

.cookie-text {
    flex: 1;
    min-width: 200px;
}

.cookie-text p {
    font-size: 0.88rem;
    color: #ccc;
    line-height: 1.55;
    margin: 0;
}

.cookie-text a {
    color: var(--primary);
    text-decoration: underline;
}

.cookie-btns {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 9px 22px;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.cookie-btn--accept {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.cookie-btn--accept:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
}

.cookie-btn--decline {
    background: transparent;
    color: #aaa;
    border-color: #555;
}

.cookie-btn--decline:hover {
    border-color: #888;
    color: #ccc;
}

@media (max-width: 600px) {
    .cookie-banner { bottom: 16px; width: calc(100% - 32px); }
    .cookie-inner { padding: 16px 18px; gap: 14px; }
    .cookie-btns { width: 100%; }
    .cookie-btn { flex: 1; text-align: center; }
}

/* =============================================
   RESPONSIVE – TABLET
   ============================================= */
@media (max-width: 900px) {
    .grid-2 { grid-template-columns: 1fr; gap: 32px; }
    .footer-grid { grid-template-columns: 1fr; gap: 36px; }
    .price-grid { grid-template-columns: 1fr 1fr; }
}

/* =============================================
   RESPONSIVE – MOBIL (768px)
   ============================================= */
@media (max-width: 768px) {

    /* --- Navigace --- */
    .nav-links {
        display: none;
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 12px 20px 24px;
        box-shadow: var(--shadow-lg);
        gap: 2px;
        border-top: 1px solid #f0e8dc;
    }
    .nav-links.open { display: flex; }
    .nav-links li a {
        display: block;
        padding: 11px 14px;
        font-size: 1rem;
        border-radius: 8px;
    }
    .hamburger { display: flex; }
    .btn-small { display: none; }

    /* --- Obecné --- */
    .section { padding: 52px 0; }
    .container { padding: 0 16px; }

    /* --- Hero --- */
    .hero {
        min-height: 92vh;
        padding: 90px 20px 50px;
    }
    .hero-eyebrow { font-size: 0.75rem; }
    .hero h1 { font-size: 1.85rem; margin-bottom: 14px; }
    .hero-sub { font-size: 0.95rem; margin-bottom: 28px; }
    .hero-btns { flex-direction: column; align-items: center; gap: 12px; }
    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 280px;
        text-align: center;
        padding: 13px 24px;
    }

    /* --- O nás --- */
    .about-img { order: -1; }
    .img-placeholder { height: 200px; font-size: 0.8rem; }
    .about-text h2 { font-size: 1.7rem; }
    .about-text p { font-size: 0.92rem; }

    /* --- Galerie --- */
    /* Filter tlačítka jako horizontální scroll – nepřeskakují na další řádek */
    .filter-btns {
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        padding-bottom: 8px;
        gap: 8px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    .filter-btns::-webkit-scrollbar { display: none; }
    .filter-btn { flex-shrink: 0; padding: 7px 16px; font-size: 0.82rem; }

    /* Galerie 2 sloupce, menší výška */
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    .img-box { height: 160px; }

    /* --- Ceník --- */
    .price-grid { grid-template-columns: 1fr; gap: 14px; }
    .price-card { padding: 24px 20px; }
    .price-icon { font-size: 1.8rem; margin-bottom: 10px; }
    .price-card h3 { font-size: 1.05rem; }
    .price-amount { font-size: 1.1rem; }

    /* --- FAQ --- */
    .faq-container { margin-top: 28px; gap: 8px; }
    .faq-question { font-size: 0.92rem; padding: 16px 18px; }
    .faq-answer { padding: 0 18px; }
    .faq-answer p { font-size: 0.9rem; }

    /* --- Formulář --- */
    .form-card { padding: 28px 18px; border-radius: 12px; }
    .form-card h2 { font-size: 1.6rem; }
    .form-subtitle { font-size: 0.88rem; }
    .form-row { grid-template-columns: 1fr; gap: 0; }
    .form-group label { font-size: 0.85rem; }
    .form-group input,
    .form-group select,
    .form-group textarea { font-size: 0.92rem; padding: 11px 14px; }

    /* --- Footer --- */
    .footer { padding: 44px 0 20px; }
    .footer-logo .logo-name { font-size: 1.25rem; }
    .footer-contacts p { font-size: 0.88rem; }
    .footer-map iframe { height: 200px; }
    .copyright { margin-top: 32px; }
}

/* =============================================
   RESPONSIVE – MALÝ MOBIL (420px)
   ============================================= */
@media (max-width: 420px) {
    .hero h1 { font-size: 1.6rem; }
    .gallery-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
    .img-box { height: 140px; }
    .section-tag { font-size: 0.7rem; }
    h2 { font-size: 1.6rem; }
}