/* =============================================================
   NÁVRH 1 — Solid Wine kopie careweb.cz/mudrgott
   Wine palette, hero bez obrázku, sticky notice bar
============================================================= */

:root {
  --wine-darkest: #5C1414;
  --wine-primary: #7B1A1A;
  --wine-light: #A6332E;
  --wine-muted: #8B5C5C;
  --wine-soft: #C9A0A0;
  --wine-pale: #F4D5D5;
  --wine-rose: #FAEAEA;
  --gold: #C8A24A;
  --gold-soft: #E8C547;
  --cream: #FFF8E7;
  --bg-page: #FAF6F6;
  --bg-alt: #F8F0F0;
  --bg-warm: #FAF6EE;
  --text-dark: #1F1B1B;
  --text-muted: #6B5A5A;
  --hairline: #E8D8D8;
  --header-h: 76px;
  --notice-h: 56px;
}

* , *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--text-dark);
  background-color: var(--bg-page);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  font-weight: 400;
}
img { display: block; max-width: 100%; height: auto; }
a { color: var(--wine-primary); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--wine-darkest); }
ul { list-style: none; }

.container {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 2rem;
}
@media (max-width: 550px) { .container { padding: 0 1.25rem; } }

.section { padding: 7rem 0; }
@media (max-width: 1024px) { .section { padding: 5rem 0; } }
@media (max-width: 768px) { .section { padding: 4rem 0; } }
@media (max-width: 550px) { .section { padding: 3rem 0; } }

.section-alt { background-color: var(--bg-alt); }

.section-header { text-align: center; margin-bottom: 4rem; }
@media (max-width: 768px) { .section-header { margin-bottom: 2.5rem; } }

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--wine-primary);
  margin-bottom: 1rem;
}
.section-eyebrow i { font-size: 1rem; color: var(--gold); }

.section-header h2 {
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  font-size: clamp(1.7rem, 2.8vw, 2.4rem);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.95rem 2.1rem;
  border-radius: 50px;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background-color .2s, color .2s, border-color .2s, transform .2s, box-shadow .2s;
  text-decoration: none;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(92, 20, 20, 0.18); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background-color: #fff;
  color: var(--wine-primary);
  border-color: #fff;
}
.btn-primary:hover {
  background-color: var(--cream);
  border-color: var(--cream);
  color: var(--wine-darkest);
}

.btn-outline {
  background-color: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.7);
}
.btn-outline:hover {
  background-color: rgba(255,255,255,0.12);
  border-color: #fff;
  color: #fff;
}

/* =========== HEADER =========== */
.site-header {
  position: sticky;
  top: 0;
  left: 0; right: 0;
  z-index: 1000;
  padding: 1rem 0;
  background-color: var(--wine-darkest);
  box-shadow: 0 2px 10px rgba(0,0,0,0.18);
  transition: background-color .3s ease, padding .3s ease, box-shadow .3s ease;
}
.site-header.scrolled {
  background-color: var(--wine-darkest);
  box-shadow: 0 4px 18px rgba(0,0,0,0.25);
  padding: 0.7rem 0;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.logo { display: flex; flex-direction: column; gap: 0.15rem; text-decoration: none; flex-shrink: 0; }
.logo:hover { opacity: 0.9; }
.logo-title {
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  font-size: 1.15rem;
  font-weight: 500;
  color: #fff;
  line-height: 1.2;
  transition: color .2s;
}
.logo-sub {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.78);
  text-transform: uppercase;
  transition: color .2s;
}
/* sticky header keeps white text on wine bg, scrolled state same */

.main-nav ul { display: flex; align-items: center; gap: 0.25rem; }
.main-nav a {
  display: block;
  padding: 0.4rem 0.85rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.92);
  border-radius: 6px;
  transition: color .2s, background-color .2s;
}
.main-nav a:hover { color: var(--gold-soft); background-color: rgba(255,255,255,0.12); }

/* Nav actions wrapper (bell + burger) */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex-shrink: 0;
}

/* Notice bell — recall dismissed notification */
.notice-bell {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  border-radius: 50%;
  color: var(--gold-soft);
  position: relative;
  opacity: 0.5; /* výchozí stav = aktualita je VIDĚT → zvoneček nenápadný, bez odznaku */
  transition: color .2s, background-color .2s, opacity .2s;
}
.notice-bell:hover {
  color: #FAD566;
  background-color: rgba(232, 197, 71, 0.12);
  opacity: 1;
}
.notice-bell[hidden] { display: none !important; }
.notice-bell .fa-bell { font-size: 1.25rem; }

/* ALERT stav = aktualita je SCHOVANÁ → zvoneček výrazný + odznak „1" + jemný pulz
   (konvence z FB/sítí: odznak upozorňuje, že je tu nepřečtená zpráva k rozkliknutí) */
.notice-bell--alert { opacity: 1; }
.notice-bell--alert .fa-bell { animation: bellPulse 2.2s ease-in-out infinite; }
.notice-bell--alert:hover .fa-bell { animation: none; }

/* Odznak s počtem — viditelný jen v ALERT stavu */
.notice-bell-badge {
  position: absolute;
  top: 2px; right: 2px;
  min-width: 17px; height: 17px;
  padding: 0 4px;
  display: none;
  align-items: center;
  justify-content: center;
  background-color: #D64545;
  color: #fff;
  border: 2px solid var(--wine-darkest);
  border-radius: 999px;
  font-size: 0.66rem;
  font-weight: 700;
  line-height: 1;
}
.notice-bell--alert .notice-bell-badge { display: flex; }

@keyframes bellPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.12); }
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px; height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: 6px;
  flex-shrink: 0;
  z-index: 1001;
}
.burger span {
  display: block;
  width: 22px; height: 2px;
  background-color: #fff;
  border-radius: 2px;
  transition: transform .2s, opacity .2s, background-color .2s;
}
.burger.is-open span { background-color: var(--text-dark); }
.burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 1024px) {
  .burger { display: flex; }
  .main-nav {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateX(100%);
    transition: transform .35s ease;
    z-index: 999;
  }
  .main-nav.is-open { transform: translateX(0); }
  .main-nav ul { flex-direction: column; gap: 0.5rem; text-align: center; }
  .main-nav a {
    font-size: 1.35rem;
    color: var(--text-dark) !important;
    padding: 0.7rem 2rem;
  }
  .main-nav a:hover {
    color: var(--wine-primary) !important;
    background-color: var(--wine-rose) !important;
  }
}

/* =========== NOTICE BAR (non-sticky, scrolls away) =========== */
.notice-bar {
  position: relative;
  z-index: 900;
  background-color: var(--gold-soft);
  border-top: 1px solid #d1a824;
  border-bottom: 1px solid #d1a824;
  box-shadow: 0 4px 16px rgba(92, 20, 20, 0.10);
  animation: slideDown .35s ease;
}
@keyframes slideDown {
  from { transform: translateY(-100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.notice-bar[hidden] { display: none; }

.notice-bar-inner {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.1rem 1.75rem;
}
@media (max-width: 600px) { .notice-bar-inner { padding: 1rem 0.5rem; } }
.notice-bar-text {
  flex: 1;
  font-size: 0.95rem;
  color: var(--wine-darkest);
  line-height: 1.65;
}
.notice-bar-text strong { font-weight: 600; }
.notice-bar-text a {
  color: var(--wine-darkest);
  font-weight: 600;
  text-decoration: underline;
}
.notice-bar-text a:hover { color: var(--wine-primary); }
@media (max-width: 768px) {
  .notice-bar-text { font-size: 0.88rem; }
}

.notice-bar-toggle {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.9rem 0;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--wine-darkest);
  line-height: 1.4;
  min-width: 0;
}
.notice-bar-icon { color: var(--wine-darkest); font-size: 1.05rem; flex-shrink: 0; margin-top: 0.28rem; }
.notice-bar-headline {
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.notice-bar-headline strong { font-weight: 600; }
@media (max-width: 768px) {
  .notice-bar-headline { white-space: normal; font-size: 0.88rem; }
}
.notice-bar-caret {
  font-size: 0.75rem;
  color: var(--wine-darkest);
  transition: transform .3s ease;
  flex-shrink: 0;
}
.notice-bar.is-expanded .notice-bar-caret { transform: rotate(180deg); }

.notice-bar-body {
  padding: 0 0 1rem 1.85rem;
  font-size: 0.92rem;
  color: var(--wine-darkest);
  line-height: 1.6;
}
.notice-bar-body[hidden] { display: none; }
.notice-bar-body a {
  color: var(--wine-darkest);
  font-weight: 600;
  text-decoration: underline;
}
.notice-bar-body a:hover { color: var(--wine-primary); }

.notice-bar.is-expanded .notice-bar-inner { flex-wrap: wrap; align-items: flex-start; }
.notice-bar.is-expanded .notice-bar-body { display: block; flex-basis: 100%; }

/* notice-bar-dismiss removed in V7 — bell in header handles toggle */

/* =========== HERO =========== */
.hero {
  position: relative;
  height: 420px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
@media (min-width: 768px) {
  .hero { height: 480px; }
}
@media (max-width: 480px) {
  .hero { height: auto; min-height: 360px; }
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--wine-darkest) 0%, var(--wine-primary) 50%, var(--wine-darkest) 100%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(200, 162, 74, 0.10), transparent 55%),
    radial-gradient(ellipse at 15% 85%, rgba(166, 51, 46, 0.18), transparent 60%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 2rem;
  padding-bottom: 2rem;
  text-align: center;
}

.hero-text { max-width: 100%; margin: 0 auto; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 1.5rem;
}
.hero-eyebrow i { font-size: 1.05rem; }

.hero-content h1 {
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  font-size: clamp(2.1rem, 4.6vw, 3.5rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.12;
  margin-bottom: 1.75rem;
  letter-spacing: -0.02em;
}
/* Celé jméno na JEDEN řádek na desktopu; mobilní <br> se zobrazí až pod 560px */
.hero-br-mobile { display: none; }
@media (min-width: 700px) {
  .hero-content h1 { white-space: nowrap; }
}
@media (max-width: 560px) {
  .hero-br-mobile { display: block; }
}

.hero-desc {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.88);
  margin-bottom: 2.5rem;
  max-width: 520px;
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.hero-scroll-hint span {
  display: block;
  width: 2px; height: 50px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.55), transparent);
  margin: 0 auto;
  animation: scrollHint 2s ease-in-out infinite;
}
@keyframes scrollHint {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(0.6) translateY(8px); }
}

/* =========== HOURS =========== */
.hours-section { background-color: var(--bg-page); }

.hours-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  margin-bottom: 3rem;
}
@media (max-width: 900px) { .hours-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .hours-grid { grid-template-columns: 1fr; } }

.hours-card {
  background-color: #fff;
  border-radius: 16px;
  padding: 1.5rem 1rem;
  text-align: center;
  box-shadow: 0 2px 12px rgba(92, 20, 20, 0.05);
  border: 1px solid var(--hairline);
  transition: transform .2s, box-shadow .2s;
}
.hours-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(92, 20, 20, 0.10);
}

.hours-day {
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--wine-primary);
  margin-bottom: 0.5rem;
}
.hours-time {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 0.3rem;
}
.hours-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hours-notes {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 720px;
  margin: 0 auto 3rem;
}
.hours-note-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background-color: var(--bg-warm);
  border-left: 3px solid var(--gold);
  border-radius: 0 8px 8px 0;
  font-size: 0.97rem;
  color: var(--text-muted);
}
.hours-note-item i {
  color: var(--wine-primary);
  font-size: 1.15rem;
  margin-top: 0.15rem;
  flex-shrink: 0;
}
.hours-note-item strong { color: var(--text-dark); font-weight: 600; }

.hours-contact {
  text-align: center;
  padding: 2rem 1rem;
  background: linear-gradient(135deg, var(--wine-rose), #fff);
  border-radius: 16px;
  border: 1px solid var(--wine-pale);
}
.hours-contact p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  font-size: clamp(1.4rem, 6vw, 2rem);
  font-weight: 600;
  color: var(--wine-primary);
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.phone-link i { font-size: 1.4rem; }
.phone-link:hover { color: var(--wine-darkest); }
.email-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 0.6rem;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--wine-primary);
}
.email-link i { font-size: 1rem; color: var(--gold); }
.email-link:hover { color: var(--wine-darkest); }

/* =========== SERVICES =========== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 900px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .services-grid { grid-template-columns: 1fr; } }

.service-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  background-color: #fff;
  border-radius: 16px;
  padding: 1.75rem 1.25rem;
  border: 1px solid var(--hairline);
  box-shadow: 0 2px 12px rgba(92, 20, 20, 0.04);
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(92, 20, 20, 0.10);
  border-color: var(--wine-pale);
}

.service-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--wine-rose), var(--wine-pale));
  border-radius: 50%;
  flex-shrink: 0;
}
.service-icon i { font-size: 1.5rem; color: var(--wine-primary); }

.service-card h3 {
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.4;
  letter-spacing: -0.005em;
}

/* =========== PRO PACIENTY =========== */
.patients-section { background-color: var(--bg-page); }

.patients-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 980px;
  margin: 0 auto;
}
.patients-grid--3 {
  grid-template-columns: repeat(3, 1fr);
  max-width: 1100px;
}
@media (max-width: 900px) { .patients-grid--3 { grid-template-columns: 1fr; max-width: 560px; } }
@media (max-width: 700px) { .patients-grid { grid-template-columns: 1fr; } }

.patient-card {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  background-color: #fff;
  padding: 1.75rem;
  border-radius: 16px;
  border: 1px solid var(--hairline);
  text-decoration: none;
  color: inherit;
  position: relative;
  transition: transform .25s, box-shadow .25s, border-color .25s;
  cursor: pointer;
}
.patient-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 26px rgba(92, 20, 20, 0.09);
  border-color: var(--wine-pale);
}
.patient-card[data-tooltip]:hover::after {
  content: attr(data-tooltip);
  position: absolute;
  top: -28px;
  right: 12px;
  font-size: 0.72rem;
  background-color: var(--wine-darkest);
  color: #fff;
  padding: 0.25rem 0.55rem;
  border-radius: 4px;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.patient-icon {
  width: 52px; height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--wine-primary);
  border-radius: 12px;
  flex-shrink: 0;
}
.patient-icon i { font-size: 1.35rem; color: #fff; }

.patient-body { flex: 1; min-width: 0; }
.patient-body h3 {
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.4rem;
  letter-spacing: -0.005em;
}
.patient-body p {
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 0.8rem;
}
.patient-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--wine-primary);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.patient-link i { font-size: 0.75rem; transition: transform .2s; }
.patient-card:hover .patient-link { color: var(--wine-darkest); }
.patient-card:hover .patient-link i { transform: translateX(4px); }

/* =========== ABOUT (O ordinaci) =========== */
.about-section { background-color: var(--bg-page); }
.about-content {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.about-lead {
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  color: var(--wine-darkest);
  margin-bottom: 1.5rem;
  font-style: italic;
  line-height: 1.5;
}
.about-content p {
  font-size: 1.02rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  line-height: 1.75;
}
.about-content p strong { color: var(--text-dark); font-weight: 600; }

/* =========== FAQ =========== */
.faq-list { max-width: 820px; margin: 0 auto; }

.faq-item {
  background-color: #fff;
  border: 1px solid var(--hairline);
  border-radius: 12px;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: border-color .2s, box-shadow .2s;
}
.faq-item.is-open {
  border-color: var(--wine-pale);
  box-shadow: 0 4px 16px rgba(92, 20, 20, 0.06);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-dark);
  text-align: left;
}
.faq-question:hover { color: var(--wine-primary); }
.faq-question i {
  font-size: 1rem;
  color: var(--wine-primary);
  transition: transform .3s;
}
.faq-item.is-open .faq-question i { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
.faq-item.is-open .faq-answer { max-height: 400px; }

.faq-answer-inner {
  padding: 0 1.5rem 1.25rem;
}
.faq-answer-inner p {
  font-size: 0.97rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.faq-answer-inner a {
  color: var(--wine-primary);
  font-weight: 500;
  text-decoration: underline;
}

/* =========== CONTACT =========== */
.contact-section { background-color: var(--bg-page); }

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: stretch; /* mapa se natáhne na stejnou výšku jako sloupec se 4 bloky */
}
@media (max-width: 900px) {
  .contact-layout { grid-template-columns: 1fr; gap: 2rem; align-items: start; }
}

.contact-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
@media (max-width: 550px) { .contact-info { grid-template-columns: 1fr; } }

.contact-block {
  background-color: #fff;
  padding: 1.5rem;
  border-radius: 12px;
  border: 1px solid var(--hairline);
}
.contact-block h3 {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--wine-primary);
  margin-bottom: 0.7rem;
}
.contact-block h3 i { color: var(--gold); font-size: 1rem; }
.contact-block p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.contact-block a { color: var(--wine-primary); font-weight: 500; }
.contact-block a:hover { color: var(--wine-darkest); }

.contact-phone { margin-bottom: 0.75rem; }
.contact-emails { display: flex; flex-direction: column; gap: 0.5rem; }
.contact-emails li {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  font-size: 0.92rem;
  line-height: 1.4;
}
.contact-emails-role {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.contact-emails a { word-break: break-word; }

.contact-hours {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.contact-hours li {
  display: flex;
  justify-content: space-between;
  font-size: 0.92rem;
  color: var(--text-muted);
  padding: 0.2rem 0;
  border-bottom: 1px solid var(--hairline);
}
.contact-hours li:last-child { border-bottom: none; }
.contact-hours li span:first-child {
  font-weight: 600;
  color: var(--text-dark);
}

.contact-map {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--hairline);
  background-color: #fff;
  display: flex;
  flex-direction: column;
}
.contact-map iframe {
  flex: 1;
  width: 100%;
  border: none;
  min-height: 320px; /* dolní mez hlavně pro mobil; na desktopu iframe vyplní výšku sloupce */
}
.map-link {
  display: block;
  padding: 0.8rem 1rem;
  text-align: center;
  font-size: 0.88rem;
  color: var(--wine-primary);
  font-weight: 500;
  border-top: 1px solid var(--hairline);
  background-color: var(--bg-warm);
}
.map-link:hover { background-color: var(--wine-rose); }

/* =========== FOOTER =========== */
.site-footer {
  background-color: var(--wine-darkest);
  color: rgba(255,255,255,0.78);
  padding: 3rem 0 2rem;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}
.footer-brand { display: flex; flex-direction: column; gap: 0.2rem; }
.footer-brand .logo-title {
  font-size: 1.2rem;
  color: #fff;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  font-weight: 500;
}
.footer-brand .logo-sub {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.footer-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-links a {
  color: rgba(255,255,255,0.78);
  font-size: 0.9rem;
}
.footer-links a:hover { color: var(--gold-soft); }

.footer-copy {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  margin-top: 0.5rem;
}

/* =========== DOCUMENT SUBPAGES =========== */
.doc-main { padding: 3.5rem 0 5rem; background-color: var(--bg-page); min-height: 60vh; }
.doc-back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--wine-primary);
  margin-bottom: 2rem;
}
.doc-back:hover { color: var(--wine-darkest); }
.doc-wrap { max-width: 860px; margin: 0 auto; }
.doc-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--wine-primary);
  margin-bottom: 0.75rem;
}
.doc-eyebrow i { color: var(--gold); }
.doc-wrap h1 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}
.doc-meta { font-size: 0.95rem; color: var(--text-muted); margin-bottom: 2.5rem; }
.doc-card {
  background-color: #fff;
  border: 1px solid var(--hairline);
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 2px 12px rgba(92, 20, 20, 0.04);
}
@media (max-width: 600px) { .doc-card { padding: 1.5rem; } }
.doc-card h2 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--wine-primary);
  margin: 2rem 0 0.85rem;
  letter-spacing: -0.01em;
}
.doc-card h2:first-child { margin-top: 0; }
.doc-card h3 {
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--text-dark);
  margin: 1.5rem 0 0.6rem;
}
.doc-card p { font-size: 0.97rem; color: var(--text-muted); line-height: 1.75; margin-bottom: 1rem; }
.doc-card p:last-child { margin-bottom: 0; }
.doc-card ul.doc-list { margin: 0 0 1rem; padding: 0; }
.doc-card ul.doc-list li {
  position: relative;
  padding: 0.35rem 0 0.35rem 1.5rem;
  font-size: 0.97rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.doc-card ul.doc-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.85rem;
  width: 6px; height: 6px;
  background-color: var(--gold);
  border-radius: 50%;
}
.doc-card ul.doc-list li strong { color: var(--text-dark); font-weight: 600; }

/* Price table */
.price-table { width: 100%; border-collapse: collapse; font-size: 0.95rem; }
.price-table caption {
  text-align: left;
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  line-height: 1.6;
}
.price-table td {
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--hairline);
  color: var(--text-muted);
  vertical-align: top;
  line-height: 1.5;
}
.price-table tr:last-child td { border-bottom: none; }
.price-table td.price {
  text-align: right;
  white-space: nowrap;
  font-weight: 600;
  color: var(--wine-primary);
  padding-left: 1.5rem;
}
.doc-note { font-size: 0.85rem; color: var(--text-muted); margin-top: 1.5rem; font-style: italic; }

/* =============================================================
   MOBILNÍ VYLADĚNÍ (V9 — finální kolo)
============================================================= */
/* Zabránit horizontálnímu přetečení na malých displejích */
html, body { overflow-x: hidden; }

/* Kotvy v menu: odsazení pod lepivou hlavičku, ať nadpis nezmizí pod lištou */
section[id] { scroll-margin-top: calc(var(--header-h) + 12px); }

/* Header: na úzkých displejích zmenšit název, ať se vejde vedle burgeru a zvonku */
@media (max-width: 560px) {
  .logo-title { font-size: 1rem; }
  .logo-sub { font-size: 0.66rem; letter-spacing: 0.06em; }
  .site-header { padding: 0.85rem 0; }
}
@media (max-width: 360px) {
  .logo-title { font-size: 0.92rem; }
  .logo-sub { display: none; }
}

/* Hero: eyebrow se na mobilu smí zalomit a zůstává vycentrovaný */
@media (max-width: 520px) {
  .hero-eyebrow {
    flex-wrap: wrap;
    justify-content: center;
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    margin-bottom: 1.1rem;
  }
  .hero { min-height: 340px; }
  .hero-content { padding-top: 1.5rem; padding-bottom: 1.5rem; }
}

/* CTA tlačítka přes celou šířku = pohodlnější klikací plocha na mobilu */
@media (max-width: 480px) {
  .hero-cta { width: 100%; gap: 0.75rem; }
  .hero-cta .btn { flex: 1 1 auto; justify-content: center; padding: 0.95rem 1.25rem; }
}

/* Spojení do ordinace: zmenšit velké e-mailové písmo na mobilu, ať se vejde */
@media (max-width: 420px) {
  .email-link { font-size: 0.95rem; word-break: break-word; text-align: center; }
  .hours-contact { padding: 1.75rem 0.85rem; }
}

/* Dostatečná klikací plocha pro odkazy v patičce a navigaci (min ~44px) */
@media (max-width: 768px) {
  .footer-links { gap: 1rem 1.5rem; }
  .footer-links a { padding: 0.35rem 0; }
}
