/* =====================================================================
   DHVM v3 – "Warm Minimal"  |  CSS v11.4
===================================================================== */

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

:root {
  /* Warm Minimal Palette – no navy */
  --c-bg:       #FFFFFF;
  --c-warm:     #F5F0EA;
  --c-dark:     #111111;
  --c-text:     #1A1A1A;
  --c-mid:      #666666;
  --c-muted:    #9A9A9A;
  --c-orange:   #FF8A00;
  --c-o-light:  #FFF4E5;
  --c-line:     #E5DDD4;

  /* Typography Scale */
  --text-hero:    clamp(3.8rem, 8.5vw, 7.5rem);
  --text-h2:      clamp(1.7rem, 2.8vw, 2.4rem);
  --text-body:    1rem;
  --text-sm:      0.9rem;

  /* Spacing */
  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  1.5rem;
  --space-lg:  2rem;
  --space-xl:  3rem;
  --space-xxl: 5rem;

  /* Layout */
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --shadow-sm: 0 4px 16px rgba(0,0,0,0.06);
  --shadow-md: 0 12px 36px rgba(0,0,0,0.09);
  --shadow-lg: 0 24px 64px rgba(0,0,0,0.12);

  /* Navigation */
  --nav-height: 68px;

  /* Transitions */
  --t-fast: 0.2s ease;
  --t-med:  0.4s ease;
}

html {
  font-size: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--c-bg);
  color: var(--c-text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* =====================================================================
   2) SKIP LINK
===================================================================== */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--c-orange);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9rem;
  z-index: 9999;
  transition: top var(--t-fast);
  text-decoration: none;
}
.skip-link:focus { top: 1rem; }

/* =====================================================================
   3) LAYOUT UTILITIES
===================================================================== */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.narrow {
  max-width: 820px;
  margin: 0 auto;
}

.section {
  padding-top: var(--space-xxl);
  padding-bottom: var(--space-xxl);
}

.section h2 {
  font-family: 'DM Sans', sans-serif;
  font-size: var(--text-h2);
  font-weight: 700;
  color: var(--c-text);
  margin-bottom: var(--space-lg);
  letter-spacing: -0.025em;
}

/* =====================================================================
   4) TYPOGRAPHY & LINKS
===================================================================== */
a {
  color: var(--c-orange);
  text-decoration: none;
  transition: color var(--t-fast);
}
a:hover { color: #e67300; }

/* =====================================================================
   5) SCROLL ANIMATIONS
===================================================================== */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition-delay: var(--delay, 0s);
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =====================================================================
   6) NAVIGATION
===================================================================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: var(--c-bg);
  border-bottom: 1px solid var(--c-line);
  transition: box-shadow var(--t-med);
}
.nav.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.07);
  border-bottom-color: transparent;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.nav-logo img {
  height: 64px;
  width: auto;
  display: block;
  filter: contrast(1.15) drop-shadow(0 1px 3px rgba(0,0,0,0.08));
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: var(--space-md);
  align-items: center;
}

.nav-link {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--c-mid);
  padding: 0.35rem 0;
  border-bottom: 2px solid transparent;
  transition: color var(--t-fast), border-color var(--t-fast);
}
.nav-link:hover {
  color: var(--c-text);
  border-bottom-color: var(--c-orange);
}

/* CTA link in nav – orange */
.nav-cta {
  background: var(--c-orange);
  color: #fff !important;
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  border-bottom: none !important;
  font-weight: 600;
  font-size: 0.88rem;
  transition: background var(--t-fast), transform var(--t-fast);
}
.nav-cta:hover {
  background: #e67300 !important;
  color: #fff !important;
  transform: translateY(-1px);
}

/* Hamburger button */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  min-width: 44px;
  min-height: 44px;
  justify-content: center;
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--c-text);
  border-radius: 2px;
  transition: transform var(--t-med), opacity var(--t-fast);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =====================================================================
   7) HERO – TYPOGRAPHY FIRST
===================================================================== */
.hero {
  background: var(--c-bg);
  padding-top: var(--nav-height);
  min-height: 100svh;
  display: flex;
  flex-direction: column;
}

.hero-main {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 0.6fr;
  gap: 3rem;
  align-items: center;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 0 3rem;
}

/* Left – text block */
.hero-text {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.hero-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-orange);
}

.hero-title {
  font-family: 'DM Sans', sans-serif;
  font-size: var(--text-hero);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: var(--c-text);
  opacity: 0;
  transform: translateY(36px);
  animation: heroTitleIn 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.1s forwards;
}
@keyframes heroTitleIn {
  to { opacity: 1; transform: translateY(0); }
}

.hero-name {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--c-mid);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.hero-name::before {
  content: '';
  display: block;
  width: 2.5rem;
  height: 2px;
  background: var(--c-orange);
  flex-shrink: 0;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: heroActionsIn 0.6s ease 0.55s forwards;
}
@keyframes heroActionsIn {
  to { opacity: 1; }
}

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  background: var(--c-orange);
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  box-shadow: 0 6px 24px rgba(255,138,0,0.35);
  transition: background var(--t-fast), transform var(--t-fast), box-shadow var(--t-fast);
  text-decoration: none;
}
.btn-primary:hover {
  background: #e67300;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(255,138,0,0.45);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: transparent;
  color: var(--c-text);
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  border: 2px solid var(--c-line);
  transition: border-color var(--t-fast), color var(--t-fast), transform var(--t-fast);
  text-decoration: none;
}
.btn-ghost:hover {
  border-color: var(--c-text);
  color: var(--c-text);
  transform: translateY(-2px);
}

/* Right – pill photo */
.hero-photo-wrap {
  position: relative;
  opacity: 0;
  transform: translateX(40px);
  animation: heroPhotoIn 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.3s forwards;
}
@keyframes heroPhotoIn {
  to { opacity: 1; transform: translateX(0); }
}

.hero-photo {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: top center;
  border-radius: 999px 999px 40px 40px;
  display: block;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero-slide.active {
  opacity: 1;
  position: relative;
}

/* Info row – bottom of hero */
.hero-info-row {
  border-top: 1px solid var(--c-line);
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.75rem 0;
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
}

.hero-info-item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.hero-info-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-muted);
}

.hero-info-value {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--c-text);
}
.hero-info-value a {
  color: var(--c-text);
  transition: color var(--t-fast);
}
.hero-info-value a:hover { color: var(--c-orange); }

.hero-address-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.hero-address-link svg {
  color: var(--c-orange);
  flex-shrink: 0;
}

/* =====================================================================
   8) ANNOUNCE SECTION (Důležité informace)
===================================================================== */
.section-announce {
  background: var(--c-o-light);
  padding: var(--space-xl) 0;
}

.announce-card {
  background: var(--c-bg);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--c-orange);
  padding: 1.75rem 2rem;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.announce-icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--c-o-light);
  display: flex; align-items: center; justify-content: center;
  color: var(--c-orange);
  margin-top: 0.1rem;
}

.announce-label {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-orange);
  margin-bottom: 0.65rem;
}

.announce-body p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--c-mid);
}
.announce-body p + p {
  margin-top: 0.75rem;
}

/* =====================================================================
   9) ABOUT SECTION – photo LEFT
===================================================================== */
.section-about {
  background: var(--c-warm);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: var(--space-xl);
  align-items: start;
  margin-bottom: var(--space-xl);
}

/* Photo column is now LEFT */
.about-photo {
  position: relative;
}

.about-photo-inner {
  position: relative;
  display: inline-block;
  width: 100%;
}

.about-photo img {
  width: 100%;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  display: block;
}

/* Floating stat card */
.about-stat-card {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--c-bg);
  border-radius: 16px;
  padding: 1rem 1.25rem;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.1rem;
  min-width: 90px;
  z-index: 2;
}

.stat-number {
  font-family: 'DM Sans', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1;
  color: var(--c-orange);
  letter-spacing: -0.04em;
}

.stat-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-mid);
  text-align: center;
}

/* Numbered subtitle tags */
.subtitle-tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--c-orange);
  background: var(--c-o-light);
  padding: 0.15rem 0.45rem;
  border-radius: 4px;
  margin-right: 0.5rem;
  vertical-align: middle;
  letter-spacing: 0.05em;
}

/* Text column is now RIGHT */
.about-content {}

.section-label {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-orange);
  margin-bottom: var(--space-sm);
}

.about-content h2 {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--c-text);
  letter-spacing: -0.025em;
  margin-bottom: var(--space-md);
}

.lead {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--c-mid);
  margin-bottom: var(--space-md);
  line-height: 1.7;
}

.about-subtitle {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--c-text);
  margin-top: var(--space-lg);
  margin-bottom: var(--space-xs);
}

.about-content p {
  color: var(--c-mid);
  margin-bottom: var(--space-sm);
  font-size: 0.97rem;
}

.about-cert {
  margin-top: var(--space-lg);
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--c-bg);
  border-radius: var(--radius-md);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  cursor: pointer;
}
.about-cert img {
  width: 80px;
  height: auto;
  border-radius: 6px;
  border: 1px solid var(--c-line);
  flex-shrink: 0;
}
.about-cert-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--c-mid);
  line-height: 1.4;
}

.signature {
  margin-top: var(--space-lg);
  padding-top: var(--space-md);
  border-top: 1px solid var(--c-line);
  font-size: 0.95rem;
  color: var(--c-mid);
  font-style: italic;
  line-height: 1.6;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

/* About Collapse */
.about-collapse { position: relative; }

.about-collapse-inner {
  max-height: 295px;
  overflow: hidden;
  transition: max-height 0.5s ease;
}
.about-collapse.expanded .about-collapse-inner {
  max-height: 2600px;
}

.about-toggle {
  margin-top: var(--space-sm);
  background: none;
  border: none;
  color: var(--c-orange);
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  font-size: 0.95rem;
  transition: color var(--t-fast);
}
.about-toggle:hover { color: #e67300; }

/* Office Gallery */
.gallery-header {
  margin-bottom: var(--space-md);
}
.gallery-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--c-text);
  margin-top: 0.3rem;
}

.office-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-sm);
}

.office-gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin: 0;
  cursor: pointer;
  position: relative;
  background: var(--c-bg);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: transform var(--t-med), box-shadow var(--t-med);
}
.office-gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
}
.office-gallery-item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  transition: transform var(--t-med);
}
.office-gallery-item:hover img {
  transform: scale(1.05);
}
.office-gallery-item figcaption {
  padding: 0.6rem 0.8rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--c-mid);
  text-align: center;
}

/* =====================================================================
   10) SERVICES – 2×2 CARD GRID
===================================================================== */
.section-services {
  background: var(--c-bg);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: var(--space-lg);
}

.svc-card {
  background: var(--c-warm);
  border-radius: var(--radius-md);
  padding: 2rem 1.75rem;
  border: 1px solid var(--c-line);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.svc-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
  border-color: var(--c-orange);
}

.svc-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
}

.svc-card-num {
  font-family: 'DM Sans', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  color: var(--c-orange);
  opacity: 0.6;
  letter-spacing: -0.04em;
}

.svc-card-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--c-o-light);
  display: flex; align-items: center; justify-content: center;
}
.svc-card-icon svg {
  width: 20px; height: 20px;
  stroke: var(--c-orange);
}

.svc-card h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--c-text);
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}
.svc-card p {
  font-size: 0.92rem;
  color: var(--c-mid);
  line-height: 1.6;
  margin: 0;
}

/* =====================================================================
   11) BEFORE VISIT – CARD GRID
===================================================================== */
.section-before-visit {
  background: var(--c-warm);
}

.bv-section {
  margin-top: var(--space-lg);
}

.bv-section-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-orange);
  padding-bottom: 0.6rem;
  border-bottom: 2px solid var(--c-orange);
  display: inline-block;
  margin-bottom: 1.5rem;
}

.bv-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.bv-card {
  background: var(--c-bg);
  border-radius: 16px;
  padding: 1.25rem 1.25rem 1.25rem 1rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  border: 1px solid var(--c-line);
}
.bv-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.09);
}

.bv-card-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--c-o-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-orange);
}
.bv-card-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--c-orange);
}

.bv-card-body strong {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--c-text);
  margin-bottom: 0.3rem;
}
.bv-card-body p {
  font-size: 0.85rem;
  color: var(--c-mid);
  line-height: 1.5;
  margin: 0;
}

.payment-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.6rem;
}

.pm-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.2rem 0.55rem;
  border-radius: 5px;
  font-size: 0.72rem;
  font-weight: 700;
  font-family: 'DM Sans', sans-serif;
  background: var(--c-warm);
  border: 1px solid var(--c-line);
  color: var(--c-text);
  line-height: 1.4;
  letter-spacing: 0.01em;
}

.pm-chip--brand {
  background: var(--pm-c, var(--c-text));
  color: #fff;
  border-color: transparent;
}

.pm-chip--mc {
  position: relative;
  width: 2.2rem;
  justify-content: center;
  background: transparent;
  border-color: transparent;
  padding: 0.2rem 0.3rem;
}

.mc-circle {
  display: inline-block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
}

.mc-circle--left  { background: #EB001B; margin-right: -5px; }
.mc-circle--right { background: #F79E1B; }

.pm-sep {
  flex-basis: 100%;
  height: 0;
  margin: 0;
}

/* =====================================================================
   12) MOTTO
===================================================================== */
.section-motto {
  background: var(--c-dark);
  padding: 3rem 0;
  text-align: center;
}

.motto-quote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(1.25rem, 2.5vw, 2rem);
  max-width: 600px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
  line-height: 1.65;
  text-align: center;
  color: rgba(255,255,255,0.88);
}

.motto-quote::before {
  content: '\201E';
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  color: var(--c-orange);
  opacity: 0.6;
  font-style: normal;
  margin-right: 0.15rem;
}

.motto-quote::after {
  content: '\201C';
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  color: var(--c-orange);
  opacity: 0.6;
  font-style: normal;
  margin-left: 0.15rem;
}

.motto-quote.animate {
  opacity: 0;
  transform: translateY(30px);
}
.motto-quote.animate.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 1s ease, transform 1s ease;
}

/* =====================================================================
   13) FAQ LAYOUT (sidebar mapa + accordion)
===================================================================== */
.section-faq {
  background: var(--c-warm);
}

.faq-layout {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 3rem;
  align-items: start;
}

.faq-sidebar,
.faq-main {
  min-width: 0;
}

.faq-sidebar h2 {
  margin-bottom: var(--space-md);
}

.faq-map-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--c-bg);
}

.faq-sidlo-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
}
.faq-address-block {
  padding: 1rem 1.25rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
  border-top: 1px solid var(--c-line);
}
.faq-address-block svg {
  color: var(--c-orange);
  flex-shrink: 0;
}
.faq-address-block strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--c-text);
}
.faq-address-block span {
  font-size: 0.82rem;
  color: var(--c-mid);
}

/* =====================================================================
   14) FAQ – ACCORDION
===================================================================== */

.faq-item {
  background: var(--c-bg);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-sm);
  border-left: 4px solid transparent;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  max-width: 100%;
  transition: border-color var(--t-med), box-shadow var(--t-med);
}
.faq-item.active {
  border-left-color: var(--c-orange);
  box-shadow: var(--shadow-md);
}

.faq-question {
  width: 100%;
  padding: var(--space-md);
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  border: none;
  background: none;
  cursor: pointer;
  color: var(--c-text);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-sm);
  transition: color var(--t-fast);
}
.faq-item.active .faq-question { color: var(--c-text); }
.faq-question:hover { color: var(--c-orange); }

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--c-orange);
  flex-shrink: 0;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  line-height: 1;
  display: inline-block;
}
.faq-item.active .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer,
.price-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer p,
.price-answer .price-card {
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.3s ease 0.1s, transform 0.3s ease 0.1s;
}
.faq-item.active .faq-answer p,
.faq-item.active .price-answer .price-card {
  opacity: 1;
  transform: translateY(0);
}

.faq-answer p {
  padding: 0 var(--space-md) var(--space-md);
  font-size: 0.95rem;
  color: var(--c-mid);
  line-height: 1.6;
}

.faq-contact { line-height: 2; }
.faq-contact-item { display: inline-block; }

/* =====================================================================
   15) PRICING
===================================================================== */
.price-card {
  background: var(--c-bg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  margin: 1rem 0 0;
}

.price-header {
  background: var(--c-dark);
  padding: 1.25rem 2rem;
}
.price-header h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0;
}

.price-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.price-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.price-col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.price-section {
  background: var(--c-warm);
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
  border: 1px solid var(--c-line);
}
/* Full-width sekce (Bělení, Možnosti navíc) */
.price-body > .price-section {
  margin-top: 1rem;
}

.price-section h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-orange);
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--c-line);
}

.price-section p {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  padding: 0.3rem 0;
  color: var(--c-mid);
  border-bottom: 1px dashed var(--c-line);
  gap: 0.75rem;
}
.price-section p:last-of-type { border-bottom: none; }
.price-section p span:first-child { flex: 1; }
.price-section p .price {
  font-weight: 700;
  color: var(--c-text);
  white-space: nowrap;
  font-family: 'DM Sans', sans-serif;
}

.price-note {
  padding: 1rem 1.5rem 1.25rem;
  font-size: 0.8rem;
  line-height: 1.5;
  color: var(--c-muted);
  font-style: italic;
  border-top: 1px solid var(--c-line);
  margin: 0;
}

/* =====================================================================
   16) FOOTER
===================================================================== */
.footer { font-size: var(--text-sm); }

.footer-main {
  background: var(--c-dark);
  padding: var(--space-xxl) 0 var(--space-xl);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  position: relative;
}

.footer-grid .footer-col:not(:last-child) {
  padding-right: var(--space-xl);
  border-right: 1px solid rgba(255,255,255,0.08);
}

.footer-logo {
  display: block;
  margin-bottom: var(--space-sm);
  filter: brightness(0) invert(1);
  opacity: 0.85;
}

.footer-brand {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  margin-bottom: var(--space-xs);
}

.footer-col {
  color: rgba(255,255,255,0.45);
  line-height: 1.9;
}

.footer-col-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-orange);
  margin-bottom: var(--space-sm);
}

.footer-col a {
  color: rgba(255,255,255,0.7);
  transition: color var(--t-fast);
}
.footer-col a:hover { color: var(--c-orange); }

.footer-ico {
  margin-top: var(--space-xs);
  font-size: 0.8rem;
  opacity: 0.5;
}

.footer-bottom {
  background: #0A0A0A;
  padding: var(--space-md) 0;
  text-align: center;
  color: rgba(255,255,255,0.3);
  font-size: 0.78rem;
}

/* =====================================================================
   17) BACK TO TOP
===================================================================== */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 1.5rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--c-dark);
  color: #fff;
  font-size: 1.3rem;
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity var(--t-med), transform var(--t-med), background var(--t-fast);
  z-index: 998;
}
.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
}
.back-to-top:hover { background: #333; }

/* =====================================================================
   18) FLOATING CTA (mobile)
===================================================================== */
.floating-cta {
  position: fixed;
  bottom: 2rem;
  left: 1.5rem;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--c-orange);
  color: #fff;
  text-decoration: none;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  z-index: 998;
  animation: floatRing 2.2s ease-in-out infinite;
}
@keyframes floatRing {
  0%,  100% { box-shadow: 0 0 0 0 rgba(255,138,0,0.45), var(--shadow-md); }
  50%        { box-shadow: 0 0 0 13px rgba(255,138,0,0), var(--shadow-md); }
}

/* =====================================================================
   LIGHTBOX
===================================================================== */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.85);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.lightbox.active {
  display: flex;
}
.lightbox-img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}
.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.5rem;
  cursor: pointer;
  line-height: 1;
  opacity: 0.7;
  transition: opacity var(--t-fast);
}
.lightbox-close:hover {
  opacity: 1;
}
.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.15);
  border: none;
  color: #fff;
  font-size: 2.5rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.7;
  transition: opacity var(--t-fast), background var(--t-fast);
  line-height: 1;
}
.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }
.lightbox-prev:hover,
.lightbox-next:hover {
  opacity: 1;
  background: rgba(255,255,255,0.25);
}

/* =====================================================================
   19) RESPONSIVE – TABLET (≤ 1024px)
===================================================================== */
@media (max-width: 1024px) {
  .hero-main {
    grid-template-columns: 1fr 0.5fr;
    gap: 2rem;
  }

  .about-grid {
    grid-template-columns: 0.85fr 1fr;
    gap: var(--space-lg);
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .faq-layout {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
  }
  .footer-grid .footer-col:nth-child(2) {
    padding-right: 0;
    border-right: none;
  }
  .footer-grid .footer-col:nth-child(3) {
    grid-column: 1 / -1;
  }

  .bv-cards { grid-template-columns: repeat(2, 1fr); }
}

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

  /* Nav */
  .nav-toggle { display: flex; }

  .nav-menu {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: var(--c-bg);
    flex-direction: column;
    gap: 0;
    padding: var(--space-sm) 0 var(--space-lg);
    transform: translateY(-110%);
    visibility: hidden;
    transition: transform var(--t-med), visibility var(--t-med);
    box-shadow: 0 10px 30px rgba(0,0,0,0.10);
    border-bottom: 1px solid var(--c-line);
    z-index: 999;
  }
  .nav-menu.open { transform: translateY(0); visibility: visible; }
  .nav-menu li {
    width: 100%;
    text-align: center;
  }
  .nav-link {
    display: block;
    padding: var(--space-sm) var(--space-lg);
    border-bottom: none;
    font-size: 1rem;
    color: var(--c-mid) !important;
  }
  .nav-cta {
    display: inline-block;
    margin-top: var(--space-sm);
  }

  /* Sections */
  .section {
    padding-top: var(--space-xl);
    padding-bottom: var(--space-xl);
  }

  /* Hero – stack vertically */
  .hero-main {
    grid-template-columns: 1fr;
    padding: 2.5rem 0 2rem;
    gap: 2rem;
  }
  .hero-photo-wrap {
    order: -1;
    max-width: 260px;
    margin: 0 auto;
  }
  .hero-title {
    font-size: clamp(3rem, 12vw, 5rem);
  }
  .hero-info-row {
    gap: 1.5rem;
  }

  /* Announce */
  .announce-card {
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
  }

  /* About */
  .about-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
  .about-collapse-inner { max-height: 220px; }

  /* Office gallery */
  .office-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
  .office-gallery-item img { height: 160px; }

  /* Services */
  .services-grid {
    grid-template-columns: 1fr;
  }

  /* Before visit */
  .bv-cards { grid-template-columns: 1fr; }

  /* About stat card – prevent overflow on mobile */
  .about-stat-card { top: 0.75rem; left: 0.75rem; }

  /* Motto */
  .motto-quote {
    font-size: 1.4rem;
    padding: var(--space-lg);
  }

  /* FAQ */
  .faq-question {
    font-size: 0.95rem;
    padding: var(--space-md) var(--space-sm);
  }

  /* Price */
  .price-grid { grid-template-columns: 1fr; }
  .price-body { padding: 1rem; }
  .price-section p {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.15rem;
  }

  /* Section h2 */
  .section h2 { font-size: 1.6rem; }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
  .footer-grid .footer-col {
    padding-right: 0 !important;
    border-right: none !important;
  }

  /* Floating CTA */
  .floating-cta { display: flex; }

  /* Minimum font sizes for readability */
  .hero-eyebrow,
  .svc-card-num,
  .bv-section-title,
  .faq-address-block span,
  .footer-col-title { font-size: 0.85rem; }

  .bv-card-body p { font-size: 0.875rem; }

  /* FAQ map iframe */
  .faq-map-card iframe {
    width: 100%;
    max-width: 100%;
  }

}

/* =====================================================================
   21) RESPONSIVE – SMALL MOBILE (≤ 480px)
===================================================================== */
@media (max-width: 480px) {
  .hero-title { font-size: clamp(2.6rem, 13vw, 3.8rem); }
  .hero-info-row { gap: 1rem; flex-wrap: wrap; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn-primary, .btn-ghost { justify-content: center; }
  .bv-card-body p { font-size: 0.82rem; }
  .office-gallery { grid-template-columns: 1fr; }
  .office-gallery-item img { height: 170px; }
  .motto-quote { font-size: 1.2rem; }
  .footer-main { padding: var(--space-xl) 0; }
}
