/* ═══════════════════════════════════
   RESET + ROOT
═══════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --white:    #FFFFFF;
  --bg:       #FAF5EA;
  --dark:     #2D2620;
  --ink:      #3D342B;
  --muted:    #7A6B5C;
  --border:   #E8DDC9;
  --green:    #4A7A5C;
  --green-lt: #ECE6D2;
  --green-mid:#7AA288;
  --cream:    #F2E8D2;
}
html { scroll-behavior: smooth; }
body { font-family: 'Plus Jakarta Sans', sans-serif; background: var(--white); color: var(--ink); font-size: 17px; line-height: 1.65; }

/* ── TOPBAR ── */
.topbar { background: var(--green); color: rgba(255,255,255,0.9); text-align: center; font-size: 0.8rem; padding: 10px 20px; }
.topbar a { color: #fff; font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }

/* ── NAV ── */
nav { background: var(--white); border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 100; padding: 0 48px; display: flex; align-items: center; justify-content: space-between; height: 64px; }
.nav-logo { font-family: 'Lora', serif; font-size: 1.15rem; font-weight: 600; color: var(--dark); text-decoration: none; display: flex; align-items: center; gap: 9px; }
.nav-dot { width: 7px; height: 7px; background: var(--green); border-radius: 50%; }
.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav-links a { font-size: 0.82rem; font-weight: 400; color: var(--muted); text-decoration: none; padding: 6px 14px; border-radius: 20px; transition: background 0.2s, color 0.2s; cursor: pointer; }
.nav-links a:hover, .nav-links a.active { background: var(--bg); color: var(--dark); }
.nav-cta { background: var(--green) !important; color: #fff !important; font-weight: 500 !important; }
.nav-cta:hover { background: var(--green-mid) !important; }
.nav-tel { display: inline-flex; align-items: center; gap: 7px; color: var(--green) !important; font-weight: 600 !important; white-space: nowrap; }
.nav-tel:hover { background: var(--green-lt) !important; color: var(--green) !important; }
.nav-tel svg { flex-shrink: 0; }

/* Hamburger toggle (mobile) */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; width: 40px; height: 40px; flex-direction: column; justify-content: center; align-items: center; gap: 4px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--dark); border-radius: 2px; transition: transform 0.25s, opacity 0.25s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ── SHARED SECTION STYLES ── */
.wrap { max-width: 1100px; margin: 0 auto; padding: 0 48px; }
.section { padding: 48px 0; }
.section-sm { padding: 44px 0; }
.sep { border: none; border-top: 1px solid var(--border); }
.label { display: inline-flex; align-items: center; gap: 8px; font-size: 0.72rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--green); margin-bottom: 14px; }
.label::before { content: ''; width: 20px; height: 1.5px; background: var(--green); }
h2.st { font-family: 'Lora', serif; font-size: clamp(1.7rem, 2.8vw, 2.4rem); font-weight: 600; line-height: 1.2; color: var(--dark); margin-bottom: 14px; }
.btn-p { display: inline-flex; align-items: center; gap: 8px; background: var(--dark); color: var(--white); font-size: 0.88rem; font-weight: 500; padding: 13px 26px; border-radius: 6px; text-decoration: none; border: none; cursor: pointer; transition: background 0.2s, transform 0.15s; }
.btn-p:hover { background: var(--green); transform: translateY(-1px); }
.btn-s { display: inline-flex; align-items: center; gap: 6px; font-size: 0.88rem; color: var(--muted); text-decoration: none; border: 1px solid var(--border); padding: 12px 22px; border-radius: 6px; transition: border-color 0.2s, color 0.2s; cursor: pointer; background: none; }
.btn-s:hover { border-color: var(--dark); color: var(--dark); }
.btn-g { display: inline-flex; align-items: center; justify-content: center; gap: 8px; background: #fff; color: var(--green); font-size: 0.9rem; font-weight: 600; padding: 14px 28px; border-radius: 6px; text-decoration: none; transition: transform 0.15s, box-shadow 0.15s; }
.btn-g:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(0,0,0,0.12); }
.btn-ow { display: inline-flex; align-items: center; justify-content: center; border: 1.5px solid rgba(255,255,255,0.5); color: rgba(255,255,255,0.95); font-size: 0.85rem; padding: 13px 28px; border-radius: 6px; text-decoration: none; transition: border-color 0.2s, color 0.2s; cursor: pointer; background: none; }
.btn-ow:hover { border-color: #fff; color: #fff; }

/* CTA BLOCK */
.cta-block { background: var(--green); border-radius: 12px; padding: 48px 60px; display: grid; grid-template-columns: 1fr auto; gap: 48px; align-items: center; position: relative; overflow: hidden; }
.cta-block::before { content: ''; position: absolute; top: -80px; right: 80px; width: 400px; height: 400px; background: radial-gradient(circle, rgba(255,255,255,0.07) 0%, transparent 65%); pointer-events: none; }
.cta-label { font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.6); display: flex; align-items: center; gap: 8px; margin-bottom: 14px; }
.cta-label::before { content: ''; width: 20px; height: 1px; background: rgba(255,255,255,0.5); }
.cta-block h2 { font-family: 'Lora', serif; font-size: clamp(1.5rem, 2.5vw, 2.1rem); font-weight: 600; color: #fff; line-height: 1.25; margin-bottom: 10px; }
.cta-block p { font-size: 1rem; font-weight: 400; color: rgba(255,255,255,0.92); line-height: 1.65; }
.cta-btns { display: flex; flex-direction: column; gap: 12px; min-width: 200px; }

/* FOOTER */
footer { background: var(--dark); padding: 48px; margin-top: 0; }
.footer-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; }
.footer-logo { font-family: 'Lora', serif; font-size: 1.05rem; font-weight: 600; color: #fff; text-decoration: none; display: block; margin-bottom: 10px; }
.footer-logo span { color: var(--green-mid); }
.footer-tag { font-size: 0.8rem; color: rgba(255,255,255,0.55); line-height: 1.6; }
.fc-title { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 14px; }
.fc-links { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.fc-links a { font-size: 0.92rem; color: rgba(255,255,255,0.6); text-decoration: none; transition: color 0.2s; cursor: pointer; }
.fc-links a:hover { color: #fff; }
.footer-bottom { max-width: 1100px; margin: 28px auto 0; padding-top: 22px; border-top: 1px solid rgba(255,255,255,0.07); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.footer-copy { font-size: 0.72rem; color: rgba(255,255,255,0.45); }
.footer-sm { display: flex; gap: 18px; }
.footer-sm a { font-size: 0.72rem; color: rgba(255,255,255,0.45); text-decoration: none; transition: color 0.2s; }
.footer-sm a:hover { color: rgba(255,255,255,0.8); }

/* ═══════════════════════════════════
   PAGE: HOMEPAGE
═══════════════════════════════════ */
.hero { max-width: 1100px; margin: 0 auto; padding: 56px 48px 64px; display: grid; grid-template-columns: 1fr 400px; gap: 72px; align-items: center; }
.hero-tag { display: inline-flex; align-items: center; gap: 8px; background: var(--green-lt); color: var(--green); font-size: 0.76rem; font-weight: 500; letter-spacing: 0.04em; padding: 5px 13px; border-radius: 20px; margin-bottom: 26px; }
.hero-tag::before { content: ''; width: 6px; height: 6px; background: var(--green); border-radius: 50%; }
.hero h1 { font-family: 'Lora', serif; font-size: clamp(2.2rem, 3.8vw, 3.2rem); font-weight: 600; line-height: 1.15; color: var(--dark); margin-bottom: 10px; letter-spacing: -0.01em; }
.hero h1 em { font-style: italic; color: var(--green); }
.hero-sub { font-size: 1.05rem; font-weight: 400; color: var(--muted); line-height: 1.7; max-width: 480px; margin-bottom: 36px; }
.hero-ctas { display: flex; align-items: center; gap: 14px; margin-bottom: 48px; flex-wrap: wrap; }
.hero-trust { display: flex; align-items: center; gap: 20px; padding-top: 28px; border-top: 1px solid var(--border); flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 7px; font-size: 0.9rem; color: var(--muted); }
.trust-item svg { color: var(--green); flex-shrink: 0; }
.hero-photo { position: relative; }
.hero-photo-wrap { width: 100%; aspect-ratio: 3/4; border-radius: 12px; overflow: hidden; background: linear-gradient(160deg, #E0D9C0 0%, #B5BFA0 50%, #7A8B6C 100%); display: flex; align-items: center; justify-content: center; }
.photo-ph { display: flex; flex-direction: column; align-items: center; gap: 10px; color: rgba(255,255,255,0.55); font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; }
.photo-ph-box { width: 100px; height: 130px; border: 1.5px dashed rgba(255,255,255,0.35); border-radius: 6px; display: flex; align-items: center; justify-content: center; }
.float-card { position: absolute; bottom: -16px; left: -20px; background: var(--white); border-radius: 10px; padding: 14px 18px; box-shadow: 0 8px 28px rgba(0,0,0,0.10); border: 1px solid var(--border); border-left: 3px solid var(--green); animation: fl 4s ease-in-out infinite; }
.fc-top { font-size: 0.62rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 3px; }
.fc-main { font-family: 'Lora', serif; font-size: 0.95rem; font-weight: 600; color: var(--dark); }
.fc-sub { font-size: 0.68rem; color: var(--green); margin-top: 2px; font-weight: 500; }
.fc-sub a { color: inherit; text-decoration: none; }
.fc-sub a:hover { text-decoration: underline; }

/* Numbers */
.nums { background: var(--cream); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.nums-inner { max-width: 1100px; margin: 0 auto; padding: 36px 48px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; }
.num-item { text-align: center; padding: 12px; }
.num-v { font-family: 'Lora', serif; font-size: 2.2rem; font-weight: 600; color: var(--dark); line-height: 1; margin-bottom: 7px; }
.num-v span { color: var(--green); }
.num-l { font-size: 0.76rem; color: var(--muted); letter-spacing: 0.04em; }

/* USP */
.usp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 32px; }
.usp-card { background: var(--bg); border: 1px solid var(--border); border-radius: 10px; padding: 32px 28px; transition: border-color 0.3s, transform 0.3s; }
.usp-card:hover { border-color: var(--green-mid); transform: translateY(-3px); }
.usp-n { font-family: 'Lora', serif; font-size: 2.4rem; font-weight: 400; color: var(--border); line-height: 1; margin-bottom: 16px; }
.usp-title { font-size: 0.95rem; font-weight: 600; color: var(--dark); margin-bottom: 8px; }
.usp-text { font-size: 0.95rem; font-weight: 400; color: var(--muted); line-height: 1.7; }

/* Services preview */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 32px; }
.svc-card { border: 1px solid var(--border); border-radius: 10px; padding: 28px 32px; display: flex; align-items: flex-start; gap: 18px; transition: border-color 0.3s, box-shadow 0.3s; cursor: pointer; text-decoration: none; color: inherit; }
.svc-card:hover { border-color: var(--green-mid); box-shadow: 0 4px 18px rgba(45,106,79,0.07); }
.svc-icon { width: 44px; height: 44px; background: var(--green-lt); border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.svc-icon svg { color: var(--green); }
.svc-title { font-size: 0.95rem; font-weight: 600; color: var(--dark); margin-bottom: 6px; }
.svc-desc { font-size: 0.92rem; font-weight: 400; color: var(--muted); line-height: 1.6; }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; margin-top: 32px; }
.step { padding: 24px 0; border-top: 3px solid var(--border); transition: border-color 0.3s; }
.step:hover { border-color: var(--green); }
.step-n { font-family: 'Lora', serif; font-size: 1.8rem; font-weight: 400; color: var(--border); line-height: 1; margin-bottom: 14px; transition: color 0.3s; }
.step:hover .step-n { color: var(--green-lt); }
.step-title { font-size: 0.92rem; font-weight: 600; color: var(--dark); margin-bottom: 7px; }
.step-text { font-size: 0.92rem; font-weight: 400; color: var(--muted); line-height: 1.65; }

/* Reviews */
.reviews { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; margin-top: 32px; }
.review { background: var(--bg); border: 1px solid var(--border); border-radius: 10px; padding: 28px 30px; transition: border-color 0.3s; }
.review:hover { border-color: var(--green-mid); }
.stars { display: flex; gap: 2px; margin-bottom: 14px; }
.star { color: #F5A623; font-size: 0.88rem; }
.review-text { font-size: 0.98rem; font-weight: 400; color: var(--ink); line-height: 1.7; font-style: italic; margin-bottom: 18px; }
.review-author { display: flex; align-items: center; gap: 11px; }
.rav { width: 38px; height: 38px; background: var(--green-lt); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Lora', serif; font-size: 0.9rem; font-weight: 600; color: var(--green); flex-shrink: 0; }
.rname { font-size: 0.85rem; font-weight: 600; color: var(--dark); }
.rrole { font-size: 0.75rem; color: var(--muted); }

/* ═══════════════════════════════════
   PAGE: NEMOVITOSTI
═══════════════════════════════════ */
.page-hero { background: var(--bg); border-bottom: 1px solid var(--border); padding: 44px 48px; }
.page-hero-inner { max-width: 1100px; margin: 0 auto; }
.page-hero h1 { font-family: 'Lora', serif; font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 600; color: var(--dark); margin-bottom: 10px; }
.page-hero p { font-size: 1.05rem; font-weight: 400; color: var(--muted); max-width: 540px; line-height: 1.7; }
.listings { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 32px; }
.listing { border: 1px solid var(--border); border-radius: 10px; overflow: hidden; transition: border-color 0.3s, box-shadow 0.3s; cursor: pointer; background: var(--white); }
.listing:hover { border-color: var(--green-mid); box-shadow: 0 6px 24px rgba(45,106,79,0.08); }
.listing-img { height: 200px; background: linear-gradient(135deg, #E0D9C0, #B5BFA0); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.6); font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; position: relative; }
.listing-badge { position: absolute; top: 12px; left: 12px; background: var(--green); color: #fff; font-size: 0.68rem; font-weight: 600; padding: 4px 10px; border-radius: 4px; letter-spacing: 0.06em; text-transform: uppercase; }
.listing-body { padding: 22px; }
.listing-price { font-family: 'Lora', serif; font-size: 1.25rem; font-weight: 600; color: var(--dark); margin-bottom: 4px; }
.listing-title { font-size: 0.9rem; font-weight: 500; color: var(--ink); margin-bottom: 8px; }
.listing-meta { font-size: 0.78rem; color: var(--muted); display: flex; gap: 14px; flex-wrap: wrap; }
.listing-meta span { display: flex; align-items: center; gap: 4px; }
.listing-empty { grid-column: 1/-1; text-align: center; padding: 80px 40px; color: var(--muted); }
.listing-empty p { font-size: 1rem; margin-bottom: 8px; }
.listing-empty small { font-size: 0.82rem; }
.listing-empty a { color: var(--green); text-decoration: none; }
.listing-empty a:hover { text-decoration: underline; }

/* ═══════════════════════════════════
   PAGE: PRODEJ NEMOVITOSTI (LP)
═══════════════════════════════════ */
.lp-hero { background: linear-gradient(180deg, var(--cream) 0%, var(--bg) 100%); padding: 52px 48px; border-bottom: 1px solid var(--border); }
.lp-hero-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.lp-tag { font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--green); display: flex; align-items: center; gap: 8px; margin-bottom: 18px; }
.lp-tag::before { content: ''; width: 20px; height: 1px; background: var(--green); }
.lp-hero h1 { font-family: 'Lora', serif; font-size: clamp(1.9rem, 3.2vw, 2.8rem); font-weight: 600; color: var(--dark); line-height: 1.18; margin-bottom: 18px; }
.lp-hero h1 em { font-style: italic; color: var(--green); }
.lp-hero-sub { font-size: 1.05rem; font-weight: 400; color: var(--muted); line-height: 1.7; margin-bottom: 32px; }
.lp-form { background: var(--white); border-radius: 12px; padding: 36px; box-shadow: 0 12px 40px rgba(45,38,32,0.08); border: 1px solid var(--border); }
.lp-form h3 { font-family: 'Lora', serif; font-size: 1.3rem; font-weight: 600; color: var(--dark); margin-bottom: 6px; }
.lp-form p { font-size: 0.92rem; color: var(--muted); margin-bottom: 24px; line-height: 1.55; }
.form-field { margin-bottom: 14px; }
.form-field label { display: block; font-size: 0.88rem; font-weight: 500; color: var(--ink); margin-bottom: 6px; }
.form-field input, .form-field select, .form-field textarea { width: 100%; border: 1px solid var(--border); border-radius: 6px; padding: 12px 14px; font-size: 0.98rem; font-family: 'Plus Jakarta Sans', sans-serif; color: var(--ink); background: var(--bg); transition: border-color 0.2s; outline: none; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--green); background: var(--white); }
.form-field textarea { resize: vertical; min-height: 80px; }
.form-submit { width: 100%; background: var(--green); color: #fff; border: none; border-radius: 6px; padding: 16px; font-size: 1rem; font-weight: 600; font-family: 'Plus Jakarta Sans', sans-serif; cursor: pointer; transition: background 0.2s; margin-top: 4px; }
.form-submit:hover { background: var(--green-mid); }
.form-note { font-size: 0.82rem; color: var(--muted); text-align: center; margin-top: 12px; }
.form-success { background: var(--green-lt); border: 1px solid var(--green); border-radius: 10px; padding: 32px 28px; text-align: center; }
.form-success h3 { font-family: 'Lora', serif; font-size: 1.15rem; font-weight: 600; color: var(--green); margin-bottom: 8px; }
.form-success p { font-size: 0.9rem; color: var(--ink); }
.lp-trust-strip { background: var(--bg); border-bottom: 1px solid var(--border); }
.lp-trust-inner { max-width: 1100px; margin: 0 auto; padding: 32px 48px; display: flex; align-items: center; justify-content: center; gap: 48px; flex-wrap: wrap; }
.lp-trust-item { display: flex; align-items: center; gap: 10px; font-size: 0.83rem; color: var(--muted); }
.lp-trust-item svg { color: var(--green); }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 32px; }
.feature { padding: 28px; border: 1px solid var(--border); border-radius: 10px; }
.feature-icon { width: 40px; height: 40px; background: var(--green-lt); border-radius: 8px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.feature-icon svg { color: var(--green); }
.feature-title { font-size: 0.92rem; font-weight: 600; color: var(--dark); margin-bottom: 7px; }
.feature-text { font-size: 0.92rem; font-weight: 400; color: var(--muted); line-height: 1.65; }

/* ── BEFORE / AFTER ── */
.section-sub { font-size: 1.02rem; color: var(--muted); line-height: 1.7; max-width: 640px; margin-bottom: 8px; }
.ba-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 28px; }
.ba-item { position: relative; margin: 0; border-radius: 12px; overflow: hidden; border: 1px solid var(--border); }
.ba-item img { display: block; width: 100%; height: auto; aspect-ratio: 4/3; object-fit: cover; }
.ba-tag { position: absolute; top: 14px; left: 14px; z-index: 2; background: rgba(45,38,32,0.85); color: #fff; font-size: 0.7rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; padding: 6px 14px; border-radius: 20px; }
.ba-tag-after { background: var(--green); }
.ba-note { font-size: 0.82rem; color: var(--muted); margin-top: 14px; }

/* ── FAQ ── */
.faq { max-width: 780px; margin-top: 28px; display: flex; flex-direction: column; gap: 12px; }
.faq-item { border: 1px solid var(--border); border-radius: 10px; background: var(--white); transition: border-color 0.3s; }
.faq-item[open], .faq-item:hover { border-color: var(--green-mid); }
.faq-item summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 18px 22px; font-size: 0.98rem; font-weight: 600; color: var(--dark); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-family: 'Lora', serif; font-size: 1.4rem; font-weight: 400; color: var(--green); line-height: 1; transition: transform 0.2s; flex-shrink: 0; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-a { padding: 0 22px 20px; }
.faq-a p { font-size: 0.95rem; color: var(--ink); line-height: 1.7; }
.faq-a a { color: var(--green); }

/* ── COOKIE LIŠTA ── */
.cookie-bar { position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 200; max-width: 560px; margin: 0 auto; background: var(--white); border: 1px solid var(--border); border-left: 3px solid var(--green); border-radius: 12px; box-shadow: 0 10px 40px rgba(45,38,32,0.16); padding: 20px 22px; opacity: 0; transform: translateY(16px); transition: opacity .35s ease, transform .35s ease; }
.cookie-bar.is-visible { opacity: 1; transform: translateY(0); }
.cookie-bar p { font-size: .88rem; color: var(--ink); line-height: 1.6; margin-bottom: 14px; }
.cookie-bar a { color: var(--green); }
.cookie-bar-btns { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-bar-btns button { flex: 1 1 auto; font-family: inherit; font-size: .86rem; font-weight: 600; padding: 11px 18px; border-radius: 6px; cursor: pointer; transition: background .2s, border-color .2s; }
.cookie-accept { background: var(--green); color: #fff; border: 1px solid var(--green); }
.cookie-accept:hover { background: var(--green-mid); border-color: var(--green-mid); }
.cookie-reject { background: none; color: var(--muted); border: 1px solid var(--border); }
.cookie-reject:hover { border-color: var(--dark); color: var(--dark); }
@media (max-width: 480px) { .cookie-bar { left: 10px; right: 10px; bottom: 10px; padding: 16px 18px; } }

/* ── LEGAL PAGES (GDPR / Cookies) ── */
.legal { max-width: 760px; margin: 0 auto; padding: 56px 48px 90px; }
.legal h1 { font-family: 'Lora', serif; font-size: clamp(1.7rem, 2.8vw, 2.3rem); font-weight: 600; color: var(--dark); margin-bottom: 10px; }
.legal .legal-updated { font-size: 0.82rem; color: var(--muted); margin-bottom: 36px; }
.legal h2 { font-family: 'Lora', serif; font-size: 1.25rem; font-weight: 600; color: var(--dark); margin: 34px 0 10px; }
.legal p, .legal li { font-size: 0.97rem; color: var(--ink); line-height: 1.75; }
.legal p { margin-bottom: 12px; }
.legal ul { padding-left: 22px; margin-bottom: 12px; }
.legal a { color: var(--green); }

/* ═══════════════════════════════════
   PAGE: O MNĚ
═══════════════════════════════════ */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
.about-text p { font-size: 1.02rem; font-weight: 400; color: var(--ink); line-height: 1.8; margin-bottom: 20px; }
.about-text p strong { font-weight: 600; color: var(--ink); }
.aside-box { background: var(--bg); border: 1px solid var(--border); border-radius: 10px; padding: 26px 30px; margin-bottom: 18px; }
.aside-title { font-size: 0.73rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-bottom: 14px; }
.aside-list { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.aside-list li { display: flex; align-items: center; gap: 9px; font-size: 0.88rem; color: var(--ink); }
.aside-list li::before { content: ''; width: 6px; height: 6px; background: var(--green); border-radius: 50%; flex-shrink: 0; }
.contact-box { background: var(--dark); border-radius: 10px; padding: 24px 28px; }
.contact-row { display: flex; align-items: center; gap: 14px; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.07); }
.contact-row:last-child { border-bottom: none; }
.contact-row svg { color: var(--green-mid); flex-shrink: 0; }
.contact-row a { font-size: 0.9rem; color: rgba(255,255,255,0.75); text-decoration: none; transition: color 0.2s; }
.contact-row a:hover { color: #fff; }

/* ═══════════════════════════════════
   PAGE: REFERENCE
═══════════════════════════════════ */
.reviews-full { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; margin-top: 32px; }

/* ═══════════════════════════════════
   PAGE: KONTAKT
═══════════════════════════════════ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
.contact-info h2 { font-family: 'Lora', serif; font-size: 2rem; font-weight: 600; color: var(--dark); margin-bottom: 14px; }
.contact-info p { font-size: 1.02rem; font-weight: 400; color: var(--muted); line-height: 1.75; margin-bottom: 32px; }
.contact-methods { display: flex; flex-direction: column; gap: 16px; }
.cm { display: flex; align-items: center; gap: 16px; padding: 18px 20px; border: 1px solid var(--border); border-radius: 10px; text-decoration: none; transition: border-color 0.3s, box-shadow 0.3s; }
.cm:hover { border-color: var(--green-mid); box-shadow: 0 4px 14px rgba(45,106,79,0.07); }
.cm-icon { width: 42px; height: 42px; background: var(--green-lt); border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.cm-icon svg { color: var(--green); }
.cm-label { font-size: 0.72rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 3px; }
.cm-val { font-size: 0.95rem; font-weight: 500; color: var(--dark); }

/* ═══════════════════════════════════
   PAGE: 404
═══════════════════════════════════ */
.err-wrap { max-width: 720px; margin: 0 auto; padding: 120px 48px; text-align: center; }
.err-code { font-family: 'Lora', serif; font-size: clamp(4rem, 10vw, 6rem); font-weight: 600; color: var(--green); line-height: 1; margin-bottom: 16px; }
.err-wrap h1 { font-family: 'Lora', serif; font-size: clamp(1.6rem, 2.6vw, 2rem); font-weight: 600; color: var(--dark); margin-bottom: 14px; }
.err-wrap p { font-size: 1rem; font-weight: 300; color: var(--muted); line-height: 1.75; margin-bottom: 32px; }

/* ═══════════════════════════════════
   ANIMATIONS + RESPONSIVE
═══════════════════════════════════ */
@keyframes fl { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-6px)} }

@media (max-width: 960px) {
  nav { padding: 0 20px; }
  .nav-toggle { display: flex; }
  .nav-links { display: none; position: absolute; top: 64px; left: 0; right: 0; background: var(--white); border-bottom: 1px solid var(--border); flex-direction: column; align-items: stretch; gap: 0; padding: 12px 20px 20px; box-shadow: 0 8px 20px rgba(0,0,0,0.06); }
  .nav-links.is-open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 12px 14px; border-radius: 8px; font-size: 0.92rem; }
  .nav-cta { text-align: center; margin-top: 4px; }
  .hero, .lp-hero-inner, .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero { padding: 40px 24px 48px; gap: 40px; }
  .hero-photo-wrap { max-width: 300px; margin: 0 auto; }
  .wrap { padding: 0 24px; }
  .section { padding: 44px 0; }
  .usp-grid, .steps { grid-template-columns: 1fr 1fr; }
  .services-grid, .reviews, .reviews-full, .listings, .features-grid { grid-template-columns: 1fr; }
  .nums-inner { grid-template-columns: repeat(3,1fr); padding: 32px 24px; }
  .cta-block { grid-template-columns: 1fr; padding: 48px 32px; }
  .cta-btns { flex-direction: row; flex-wrap: wrap; }
  .ba-grid { grid-template-columns: 1fr; }
  .nav-tel { justify-content: center; }
  .legal { padding: 40px 24px 70px; }
  .page-hero { padding: 40px 24px; }
  .lp-hero { padding: 40px 24px; }
  .lp-trust-inner { padding: 24px; gap: 24px; }
  footer { padding: 40px 24px 28px; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .err-wrap { padding: 80px 24px; }
}
