/* ============================================================
   360CityView — hlavný stylesheet
   Verzia: 1.0
   ============================================================ */

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

:root {
  --gold: #C8A84B;
  --gold-light: #E2C97E;
  --gold-dim: rgba(200,168,75,0.45);
  --dark: #0f0805;
  --text: #1a1208;
  --text-muted: #6b5e48;
  --bg: #faf8f4;
  --bg2: #f3efe8;
  --border: rgba(100,80,40,0.12);
  --border-strong: rgba(100,80,40,0.22);
}

html { scroll-behavior: smooth; }
body { font-family: 'Outfit', sans-serif; background: var(--bg); color: var(--text); -webkit-font-smoothing: antialiased; }

/* ── HERO ── */
.hero {
  width: 100%; height: 520px;
  background: radial-gradient(ellipse at 50% 60%, #2a1a06 0%, #140c03 45%, #080401 100%);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.hero.hero-short { height: 340px; }

.sphere-wrap {
  position: absolute; width: 320px; height: 320px;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  opacity: 0.55;
}
.hero-short .sphere-wrap { width: 220px; height: 220px; opacity: 0.45; }
.sphere-wrap svg { width: 100%; height: 100%; }

.glow {
  position: absolute; width: 380px; height: 200px;
  background: radial-gradient(ellipse, rgba(200,168,75,0.08) 0%, transparent 70%);
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  pointer-events: none;
}

.hero-line {
  position: absolute; bottom: 0; left: 0; right: 0; height: 0.5px;
  background: linear-gradient(to right, transparent, var(--gold-dim), transparent);
}

.hero-inner { position: relative; z-index: 2; text-align: center; padding: 0 20px; }
.hero-eyebrow {
  font-size: 10.5px; font-weight: 400; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 14px;
  opacity: 0; animation: fadeUp 0.7s 0.2s ease forwards;
}
.hero-short .hero-eyebrow { font-size: 10px; margin-bottom: 12px; animation: none; opacity: 1; }
.hero-title {
  font-family: 'Cormorant Garamond', serif; font-size: 48px; font-weight: 300;
  color: #fff; line-height: 1.1; margin-bottom: 8px;
  opacity: 0; animation: fadeUp 0.7s 0.4s ease forwards;
}
.hero-short .hero-title { font-size: 42px; animation: none; opacity: 1; }
.hero-sub {
  font-size: 13px; font-weight: 300; color: rgba(255,255,255,0.42);
  letter-spacing: 0.04em; margin-bottom: 32px;
  opacity: 0; animation: fadeUp 0.7s 0.6s ease forwards;
}
.hero-btns { display: flex; gap: 12px; justify-content: center; opacity: 0; animation: fadeUp 0.7s 0.8s ease forwards; }

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

/* ── NAV ── */
nav {
  position: absolute; top: 0; left: 0; right: 0; z-index: 10;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 40px;
  background: linear-gradient(to bottom, rgba(10,6,2,0.85) 0%, transparent 100%);
}
.logo { font-family: 'Outfit', sans-serif; font-weight: 500; font-size: 17px; letter-spacing: 0.06em; color: #fff; text-decoration: none; }
.logo em { font-style: normal; color: var(--gold-light); }
.nav-links { display: flex; gap: 28px; list-style: none; }
.nav-links a { font-size: 12.5px; font-weight: 300; letter-spacing: 0.08em; color: rgba(255,255,255,0.62); text-decoration: none; text-transform: uppercase; transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--gold-light); }
.nav-cta { font-family: 'Outfit', sans-serif; font-size: 12px; font-weight: 400; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold-light); background: transparent; border: 0.5px solid var(--gold-dim); border-radius: 2px; padding: 8px 18px; cursor: pointer; text-decoration: none; transition: background 0.2s, border-color 0.2s; }
.nav-cta:hover { background: rgba(200,168,75,0.1); border-color: var(--gold-light); }

/* Hamburger */
.nav-hamburger {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 36px; height: 36px; cursor: pointer; background: none; border: none; padding: 4px;
}
.nav-hamburger span { display: block; width: 22px; height: 1.5px; background: rgba(255,255,255,0.8); transition: all 0.25s ease; transform-origin: center; }
.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav-mobile {
  display: none; position: absolute; top: 100%; left: 0; right: 0;
  background: rgba(10,6,2,0.97); border-top: 0.5px solid rgba(200,168,75,0.2);
  padding: 16px 0 20px; z-index: 20;
}
.nav-mobile.open { display: block; }
.nav-mobile a { display: block; padding: 12px 24px; font-size: 13px; font-weight: 300; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.7); text-decoration: none; transition: color 0.2s; }
.nav-mobile a:hover { color: var(--gold-light); }
.nav-mobile .mobile-cta { margin: 12px 24px 0; display: block; text-align: center; color: var(--gold-light); border: 0.5px solid var(--gold-dim); border-radius: 2px; padding: 11px; }

/* ── TLAČIDLÁ ── */
.btn-primary { font-family: 'Outfit', sans-serif; font-size: 12px; font-weight: 400; letter-spacing: 0.08em; text-transform: uppercase; color: var(--dark); background: var(--gold-light); border: none; border-radius: 2px; padding: 10px 22px; cursor: pointer; text-decoration: none; transition: background 0.2s, transform 0.15s; }
.btn-primary:hover { background: #f0d888; transform: translateY(-1px); }
.btn-ghost { font-family: 'Outfit', sans-serif; font-size: 12px; font-weight: 300; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.7); background: transparent; border: 0.5px solid rgba(255,255,255,0.22); border-radius: 2px; padding: 10px 22px; cursor: pointer; text-decoration: none; transition: border-color 0.2s, color 0.2s; }
.btn-ghost:hover { border-color: rgba(255,255,255,0.5); color: #fff; }

/* ── MAIN OBSAH ── */
main { max-width: 1100px; margin: 0 auto; padding: 0 40px; }
main.narrow { max-width: 900px; }

.section { padding: 72px 0 56px; scroll-margin-top: 20px; }
.section-eyebrow { font-size: 10px; font-weight: 400; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.section-title { font-family: 'Cormorant Garamond', serif; font-size: 34px; font-weight: 300; color: var(--text); margin-bottom: 6px; }
.section-sub { font-size: 13.5px; font-weight: 300; color: var(--text-muted); margin-bottom: 36px; }

/* ── KARTY PROJEKTOV (index.html) ── */
.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.project-card { border: 0.5px solid var(--border); border-radius: 4px; overflow: hidden; background: #fff; cursor: pointer; text-decoration: none; color: inherit; transition: transform 0.25s ease, box-shadow 0.25s ease; display: block; }
.project-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(50,30,5,0.1); }
.card-thumb { height: 160px; position: relative; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.card-thumb.zvolen { background: radial-gradient(ellipse at 40% 50%, #3d2208 0%, #1a0e04 100%); }
.card-thumb.stiavnica { background: radial-gradient(ellipse at 50% 40%, #1a1a2e 0%, #0d0d1a 100%); }
.card-thumb.stitnik { background: radial-gradient(ellipse at 60% 50%, #1a2e1a 0%, #0a1a0a 100%); }
.card-thumb img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity 0.4s ease; }
.card-thumb img.loaded { opacity: 1; }
.thumb-sphere { width: 60px; height: 60px; border-radius: 50%; border: 0.5px solid rgba(255,255,255,0.18); position: relative; flex-shrink: 0; z-index: 1; }
.thumb-sphere::before { content: ''; position: absolute; top: 50%; left: 4px; right: 4px; height: 0.5px; background: rgba(255,255,255,0.2); }
.thumb-sphere::after { content: ''; position: absolute; left: 50%; top: 4px; bottom: 4px; width: 0.5px; background: rgba(255,255,255,0.2); }
.thumb-sphere.gold { border-color: rgba(200,168,75,0.4); }
.thumb-sphere.gold::before, .thumb-sphere.gold::after { background: rgba(200,168,75,0.3); }
.vr-badge { position: absolute; top: 10px; right: 10px; font-size: 9px; font-weight: 500; letter-spacing: 0.08em; background: rgba(200,168,75,0.85); color: #1a0e04; padding: 3px 7px; border-radius: 2px; z-index: 2; }
.card-body { padding: 16px 18px 18px; }
.card-name { font-size: 14px; font-weight: 500; color: var(--text); margin-bottom: 4px; }
.card-meta { font-size: 11.5px; font-weight: 300; color: var(--text-muted); }

/* ── FEATURES (index.html) ── */
.features-section { border-top: 0.5px solid var(--border); padding: 64px 0 80px; scroll-margin-top: 20px; }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.feature-icon-wrap { width: 36px; height: 36px; border: 0.5px solid rgba(200,168,75,0.3); border-radius: 3px; display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.feature-icon-wrap svg { width: 16px; height: 16px; }
.feature-name { font-size: 13.5px; font-weight: 500; color: var(--text); margin-bottom: 6px; }
.feature-desc { font-size: 12.5px; font-weight: 300; color: var(--text-muted); line-height: 1.65; }

/* ── FORMULÁR (index.html) ── */
.contact-section { border-top: 0.5px solid var(--border); padding: 64px 0 80px; scroll-margin-top: 20px; }
.contact-layout { display: grid; grid-template-columns: 1fr 1.6fr; gap: 60px; align-items: start; }
.contact-intro p { font-size: 12.5px; font-weight: 300; color: var(--text-muted); line-height: 1.7; margin-top: 12px; }
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-group { display: flex; flex-direction: column; gap: 5px; }
.form-group label { font-size: 10.5px; font-weight: 400; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); }
.form-group input, .form-group select, .form-group textarea { font-family: 'Outfit', sans-serif; font-size: 13px; font-weight: 300; color: var(--text); background: #fff; border: 0.5px solid var(--border); border-radius: 2px; padding: 10px 12px; outline: none; transition: border-color 0.2s; -webkit-appearance: none; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--gold); }
.form-group textarea { resize: vertical; min-height: 90px; }
.checkboxes-label { font-size: 10.5px; font-weight: 400; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 8px; }
.checkbox-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.check-item { display: flex; align-items: center; gap: 8px; cursor: pointer; }
.check-item input[type="checkbox"] { width: 14px; height: 14px; accent-color: var(--gold); cursor: pointer; flex-shrink: 0; }
.check-item span { font-size: 12.5px; font-weight: 300; color: var(--text); }
.form-submit { font-family: 'Outfit', sans-serif; font-size: 12px; font-weight: 400; letter-spacing: 0.1em; text-transform: uppercase; color: var(--dark); background: var(--gold-light); border: none; border-radius: 2px; padding: 12px 28px; cursor: pointer; align-self: flex-start; transition: background 0.2s, transform 0.15s; }
.form-submit:hover { background: #f0d888; transform: translateY(-1px); }

/* ── TOUR KARTY (ukazky.html) ── */
.filter-tabs { display: flex; border-bottom: 0.5px solid var(--border); margin: 48px 0 40px; }
.tab-btn { font-family: 'Outfit', sans-serif; font-size: 12px; font-weight: 400; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); background: none; border: none; padding: 12px 24px 11px; cursor: pointer; border-bottom: 1.5px solid transparent; margin-bottom: -0.5px; transition: color 0.2s, border-color 0.2s; }
.tab-btn:hover { color: var(--text); }
.tab-btn.active { color: var(--gold); border-bottom-color: var(--gold); }
.category-section { display: none; }
.category-section.visible { display: block; }
.category-label { font-size: 10px; font-weight: 400; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.category-title { font-family: 'Cormorant Garamond', serif; font-size: 28px; font-weight: 300; color: var(--text); margin-bottom: 4px; }
.category-desc { font-size: 12.5px; font-weight: 300; color: var(--text-muted); margin-bottom: 32px; }
.gothic-badge { display: inline-block; font-size: 9px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: #5a3e1b; background: rgba(200,168,75,0.18); border: 0.5px solid rgba(200,168,75,0.4); border-radius: 2px; padding: 2px 7px; margin-left: 8px; vertical-align: middle; }
.tours-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.tour-card { display: flex; text-decoration: none; color: inherit; border: 0.5px solid var(--border); border-radius: 4px; overflow: hidden; background: #fff; transition: transform 0.25s ease, box-shadow 0.25s ease; min-height: 90px; }
.tour-card:hover { transform: translateY(-3px); box-shadow: 0 10px 32px rgba(50,30,5,0.09); }
.tour-card-accent { width: 5px; flex-shrink: 0; background: linear-gradient(to bottom, #3d2208, #1a0e04); }
.tour-card[data-type="zamok"] .tour-card-accent { background: linear-gradient(to bottom, #2a1a06, #0f0805); }
.tour-card[data-type="hrad"]  .tour-card-accent { background: linear-gradient(to bottom, #2e2010, #150e04); }
.tour-card[data-type="kostol"] .tour-card-accent { background: linear-gradient(to bottom, #1a1a2e, #0d0d1a); }
.tour-card[data-type="klaster"] .tour-card-accent { background: linear-gradient(to bottom, #1a2e1a, #0a1a0a); }
.tour-card-img { width: 110px; flex-shrink: 0; overflow: hidden; background: #1c1008; position: relative; }
.tour-card-img img { width: 100%; height: 100%; object-fit: cover; display: block; opacity: 0; transition: opacity 0.4s ease; }
.tour-card-img img.loaded { opacity: 1; }
.tour-card-body { flex: 1; padding: 18px 20px; display: flex; flex-direction: column; justify-content: center; gap: 5px; }
.tour-card-name { font-size: 14px; font-weight: 500; color: var(--text); line-height: 1.3; }
.tour-card-meta { font-size: 11.5px; font-weight: 300; color: var(--text-muted); }
.tour-card-arrow { padding: 0 18px; display: flex; align-items: center; color: rgba(100,80,40,0.25); font-size: 18px; transition: color 0.2s, transform 0.2s; flex-shrink: 0; }
.tour-card:hover .tour-card-arrow { color: var(--gold); transform: translateX(3px); }
.empty-section { padding: 48px 0; text-align: center; color: var(--text-muted); font-size: 13px; font-weight: 300; border: 0.5px dashed var(--border); border-radius: 4px; }

/* ── TECHNOLÓGIA (technologia.html) ── */
.perex { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 300; color: var(--text); line-height: 1.6; margin-bottom: 56px; padding-bottom: 56px; border-bottom: 0.5px solid var(--border); }
.process { display: flex; flex-direction: column; }
.step { display: grid; grid-template-columns: 48px 1fr; gap: 0 32px; padding-bottom: 48px; position: relative; }
.step:not(:last-child) .step-line { position: absolute; left: 23px; top: 48px; bottom: 0; width: 0.5px; background: var(--border); }
.step-num { width: 48px; height: 48px; border: 0.5px solid var(--gold-dim); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 13px; font-weight: 400; color: var(--gold); background: var(--bg); position: relative; z-index: 1; }
.step-content { padding-top: 10px; }
.step-label { font-size: 9.5px; font-weight: 400; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
.step-title { font-family: 'Cormorant Garamond', serif; font-size: 26px; font-weight: 400; color: var(--text); margin-bottom: 14px; line-height: 1.2; }
.step-text { font-size: 13.5px; font-weight: 300; color: var(--text-muted); line-height: 1.75; }
.step-text p { margin-bottom: 10px; }
.step-text p:last-child { margin-bottom: 0; }
.step-facts { display: flex; gap: 20px; margin-top: 20px; flex-wrap: wrap; }
.fact { background: var(--bg2); border: 0.5px solid var(--border); border-radius: 3px; padding: 12px 16px; min-width: 120px; }
.fact-num { font-family: 'Cormorant Garamond', serif; font-size: 28px; font-weight: 300; color: var(--text); line-height: 1; margin-bottom: 3px; }
.fact-label { font-size: 10.5px; font-weight: 300; color: var(--text-muted); }
.outro { margin-top: 56px; padding-top: 56px; border-top: 0.5px solid var(--border); }
.outro-title { font-family: 'Cormorant Garamond', serif; font-size: 30px; font-weight: 300; color: var(--text); margin-bottom: 16px; }
.outro-text { font-size: 13.5px; font-weight: 300; color: var(--text-muted); line-height: 1.75; margin-bottom: 28px; max-width: 660px; }
.outro-cta { display: inline-block; font-family: 'Outfit', sans-serif; font-size: 12px; font-weight: 400; letter-spacing: 0.1em; text-transform: uppercase; color: var(--dark); background: var(--gold-light); border: none; border-radius: 2px; padding: 12px 28px; text-decoration: none; transition: background 0.2s, transform 0.15s; }
.outro-cta:hover { background: #f0d888; transform: translateY(-1px); }

/* ── CENNÍK (cenik.html) ── */
.packages { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 64px; }
.package { border: 0.5px solid var(--border); border-radius: 4px; background: #fff; overflow: hidden; display: flex; flex-direction: column; }
.package.featured { border-color: var(--gold-dim); box-shadow: 0 0 0 1px var(--gold-dim); }
.pkg-header { padding: 24px 24px 20px; border-bottom: 0.5px solid var(--border); }
.pkg-tag { font-size: 9px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 6px; }
.pkg-tag.gold { color: var(--gold); }
.pkg-name { font-family: 'Cormorant Garamond', serif; font-size: 28px; font-weight: 300; color: var(--text); margin-bottom: 4px; }
.pkg-code { font-size: 11px; font-weight: 300; color: var(--text-muted); letter-spacing: 0.06em; }
.pkg-price { padding: 20px 24px; border-bottom: 0.5px solid var(--border); }
.pkg-price-num { font-family: 'Cormorant Garamond', serif; font-size: 36px; font-weight: 300; color: var(--text); line-height: 1; }
.pkg-price-note { font-size: 11.5px; font-weight: 300; color: var(--text-muted); margin-top: 4px; }
.pkg-features { padding: 20px 24px; flex: 1; display: flex; flex-direction: column; gap: 10px; }
.pkg-feature { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; font-weight: 300; color: var(--text-muted); line-height: 1.4; }
.pkg-feature.included { color: var(--text); }
.pkg-feature.optional { color: var(--text-muted); font-style: italic; }
.pkg-feature.excluded { color: rgba(100,80,40,0.35); }
.feat-icon { width: 16px; flex-shrink: 0; margin-top: 1px; font-size: 12px; text-align: center; }
.feat-icon.yes { color: var(--gold); }
.feat-icon.opt { color: var(--text-muted); }
.feat-icon.no { color: rgba(100,80,40,0.25); }
.pkg-cta { margin: 0 24px 24px; display: block; text-align: center; font-family: 'Outfit', sans-serif; font-size: 11.5px; font-weight: 400; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); border: 0.5px solid var(--border-strong); border-radius: 2px; padding: 10px; text-decoration: none; transition: background 0.2s, color 0.2s, border-color 0.2s; }
.pkg-cta:hover { background: var(--bg2); color: var(--text); border-color: var(--gold-dim); }
.pkg-cta.primary { background: var(--gold-light); color: var(--dark); border-color: var(--gold-light); }
.pkg-cta.primary:hover { background: #f0d888; }
.compare-section { margin-bottom: 64px; }
.compare-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.compare-table th { padding: 12px 16px; text-align: center; font-weight: 400; font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); border-bottom: 0.5px solid var(--border-strong); }
.compare-table th:first-child { text-align: left; }
.compare-table th.featured-col { color: var(--gold); }
.compare-table td { padding: 11px 16px; text-align: center; border-bottom: 0.5px solid var(--border); color: var(--text-muted); font-weight: 300; }
.compare-table td:first-child { text-align: left; color: var(--text); font-weight: 400; }
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr:nth-child(even) td { background: var(--bg2); }
.check { color: var(--gold); font-size: 14px; }
.dash { color: rgba(100,80,40,0.25); }
.opt-text { font-style: italic; color: var(--text-muted); font-size: 12px; }
.price-cell { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 400; color: var(--text); }
.reference { border: 0.5px solid var(--border); border-left: 3px solid var(--gold); border-radius: 0 4px 4px 0; padding: 28px 32px; background: #fff; margin-bottom: 64px; }
.ref-title { font-family: 'Cormorant Garamond', serif; font-size: 24px; font-weight: 300; color: var(--text); margin-bottom: 12px; }
.ref-text { font-size: 13.5px; font-weight: 300; color: var(--text-muted); line-height: 1.75; margin-bottom: 16px; }
.ref-list { list-style: none; display: flex; flex-direction: column; gap: 7px; margin-bottom: 16px; }
.ref-list li { font-size: 13px; font-weight: 300; color: var(--text-muted); display: flex; gap: 10px; align-items: flex-start; }
.ref-list li::before { content: '—'; color: var(--gold); flex-shrink: 0; }
.ref-link { font-size: 12.5px; font-weight: 400; color: var(--gold); text-decoration: none; letter-spacing: 0.04em; }
.ref-link:hover { text-decoration: underline; }
.process-section { margin-bottom: 64px; }
.steps { display: flex; flex-direction: column; }
.step-body { padding-top: 6px; }
.step-title-sm { font-size: 14px; font-weight: 500; color: var(--text); margin-bottom: 3px; }
.step-desc { font-size: 13px; font-weight: 300; color: var(--text-muted); line-height: 1.6; }

/* ── FOOTER ── */
footer { border-top: 0.5px solid var(--border); padding: 24px 40px; display: flex; align-items: center; justify-content: space-between; max-width: 1100px; margin: 0 auto; }
.footer-logo { font-size: 13px; font-weight: 500; letter-spacing: 0.06em; color: var(--text); }
.footer-logo a { color: inherit; text-decoration: none; }
.footer-logo a:hover { color: var(--gold); }
.footer-logo em { font-style: normal; color: var(--gold); }
.footer-copy { font-size: 11px; font-weight: 300; color: var(--text-muted); }
.footer-copy a { color: var(--text-muted); text-decoration: none; }
.footer-copy a:hover { color: var(--gold); }

/* ── HAMBURGER JS HELPER ── */
.js-hamburger { cursor: pointer; }

/* ============================================================
   RESPONZIVITA
   ============================================================ */

@media (max-width: 900px) {
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .contact-layout { grid-template-columns: 1fr; gap: 32px; }
  .packages { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .compare-section { overflow-x: auto; }
  .compare-table { min-width: 560px; }
}

@media (max-width: 768px) {
  nav { padding: 14px 20px; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-hamburger { display: flex; }

  .hero { height: auto; min-height: 420px; padding: 80px 20px 48px; }
  .hero-short { min-height: 260px; padding: 70px 20px 40px; }
  .sphere-wrap { width: 220px; height: 220px; }
  .hero-title { font-size: 34px; }
  .hero-short .hero-title { font-size: 28px; }
  .hero-sub { font-size: 12px; }
  .hero-btns { flex-direction: column; align-items: center; gap: 10px; }
  .btn-primary, .btn-ghost { width: 100%; max-width: 280px; text-align: center; padding: 13px 20px; }

  main { padding: 0 20px; }
  main.narrow { padding: 32px 20px 60px; }
  .section { padding: 48px 0 36px; }
  .cards-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .features-grid { grid-template-columns: 1fr; gap: 24px; }
  .features-section { padding: 40px 0 48px; }
  .contact-section { padding: 40px 0 56px; }
  .form-row { grid-template-columns: 1fr; }
  .checkbox-grid { grid-template-columns: 1fr; }

  .tours-grid { grid-template-columns: 1fr; }
  .filter-tabs { overflow-x: auto; }
  .tab-btn { padding: 10px 16px; white-space: nowrap; font-size: 11px; }

  .perex { font-size: 18px; margin-bottom: 40px; padding-bottom: 40px; }
  .step { grid-template-columns: 36px 1fr; gap: 0 20px; }
  .step-num { width: 36px; height: 36px; font-size: 11px; }
  .step:not(:last-child) .step-line { left: 17px; }
  .step-title { font-size: 22px; }
  .step-facts { gap: 12px; }

  .reference { padding: 20px; }
  footer { padding: 20px; flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 28px; }
  .section-title { font-size: 26px; }
  .card-thumb { height: 180px; }
  .nav-hamburger { display: flex; }
  .step-facts { flex-direction: column; }
  .fact { min-width: unset; }
}
