/* ============================================================
   ZI Vibe Coded — Main Stylesheet v7.0.0
   Cool minimal · Playfair Display + Inter · Green #527530
   ============================================================ */

/* ── Reset & base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
ul, ol { list-style: none; }

/* ── Design tokens ────────────────────────────────────────── */
:root {
  --accent:       #527530;
  --accent-hover: #42601F;
  --accent-faint: #EBF2E2;
  --accent-light: rgba(82,117,48,0.12);

  --bg:           #F8F8F7;
  --bg-card:      #FFFFFF;
  --bg-dark:      #1A1A1A;

  --text:         #1A1A1A;
  --text-muted:   #5C5C5C;
  --text-faint:   #9A9A9A;

  --border:       #E8E8E8;
  --border-strong:#D4D4D4;

  --radius-card:  16px;
  --radius-pill:  999px;
  --radius-sm:    8px;

  --shadow-card:  0 2px 16px rgba(26,26,26,0.06);
  --shadow-card-hover: 0 8px 32px rgba(26,26,26,0.10);

  --container:    1200px;
  --gap:          clamp(24px, 4vw, 48px);
  --section-py:   clamp(64px, 10vw, 120px);
  --header-h:     72px;
  --transition:   0.22s cubic-bezier(0.4,0,0.2,1);
}

/* ── Typography ───────────────────────────────────────────── */
body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  font-optical-sizing: auto;
  line-height: 1.15;
  color: var(--text);
}

h1 { font-size: clamp(42px, 6vw, 72px); font-weight: 800; }
h2 { font-size: clamp(30px, 4vw, 48px); font-weight: 700; }
h3 { font-size: clamp(18px, 2.5vw, 24px); font-weight: 700; }
h4 { font-family: 'Inter', sans-serif; font-size: 18px; font-weight: 600; color: var(--text); }
p  { color: var(--text-muted); }

/* ── Accessibility ────────────────────────────────────────── */
.skip-link {
  position: absolute;
  left: -9999px; top: auto;
  width: 1px; height: 1px;
  overflow: hidden;
}
.skip-link:focus {
  position: fixed;
  top: 0; left: 0;
  width: auto; height: auto;
  padding: 12px 20px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  z-index: 9999;
}
.screen-reader-text {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(1px,1px,1px,1px);
  white-space: nowrap;
}

/* ── Layout helpers ───────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 48px);
}

.section-label {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.section-title { margin-bottom: 12px; }

/* Section alternation utility — body is var(--bg) grey by default */
.section--white { background: var(--bg-card); border-top: 1px solid var(--border); }

.section-subtitle {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 860px;
  line-height: 1.7;
  margin-bottom: 56px;
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 500;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 2px 12px rgba(82,117,48,0.28);
}
.btn--primary:hover {
  background: var(--accent-hover);
  box-shadow: 0 2px 12px rgba(82,117,48,0.20);
}

.btn--outline {
  background: transparent;
  color: var(--accent);
  border: 1.5px solid var(--accent);
}
.btn--outline:hover { background: var(--accent-faint); }

.btn--pill { border-radius: var(--radius-pill); }

/* ── Top Bar ──────────────────────────────────────────────── */
.topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 101;
  background: var(--accent);
  color: rgba(255,255,255,0.92);
  font-size: 13px;
  height: 40px;
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.topbar__text {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 500;
  letter-spacing: 0.01em;
}
.topbar__dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #7dcea0;
  box-shadow: 0 0 0 2px rgba(125,206,160,0.35);
  flex-shrink: 0;
  animation: topbar-pulse 2.4s ease-in-out infinite;
}
@keyframes topbar-pulse {
  0%, 100% { box-shadow: 0 0 0 2px rgba(125,206,160,0.35); }
  50%       { box-shadow: 0 0 0 5px rgba(125,206,160,0); }
}
.topbar__contact {
  display: flex;
  align-items: center;
  gap: 24px;
}
.topbar__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.92);
  text-decoration: none;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 13px;
  transition: color var(--transition);
  white-space: nowrap;
}
.topbar__link:hover { color: #fff; }
.topbar__link svg { flex-shrink: 0; opacity: 0.8; }

body.has-topbar { --topbar-h: 40px; }
body.has-topbar .site-header { top: var(--topbar-h); }
body.has-topbar .header__mobile-menu { top: 0; }
body.has-topbar .admin-bar .site-header { top: calc(32px + var(--topbar-h)); }

@media (max-width: 782px) {
  body.has-topbar .admin-bar .site-header { top: calc(46px + var(--topbar-h)); }
}

/* ── Header ───────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  z-index: 100;
  background: transparent;
  transition: background var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.site-header.scrolled {
  background: rgba(248,248,247,0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 16px rgba(26,26,26,0.06);
}

.header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 24px;
}

.header__logo {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.02em;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.header__logo span {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-top: 2px;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: flex-end;
}

.header__nav a,
.header__nav-list li a {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-muted);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
  display: inline-block;
}

.header__nav a:hover,
.header__nav-list li a:hover {
  color: var(--text);
  background: var(--accent-light);
}
.header__nav-list .current-menu-item > a,
.header__nav-list .current-menu-ancestor > a,
.header__nav-list .current_page_item > a {
  color: var(--accent);
  font-weight: 500;
}

.header__nav-list { display: flex; align-items: center; gap: 4px; }
.header__nav-list li { list-style: none; position: relative; }

/* Dropdown */
.header__nav-list .sub-menu {
  display: block;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 210px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  box-shadow: 0 8px 24px rgba(0,0,0,0.10);
  padding: 14px 6px 6px;
  z-index: 200;
  transition: opacity 0.18s ease, visibility 0.18s ease, transform 0.18s ease;
  transform: translateY(4px);
}
.header__nav-list li:hover > .sub-menu,
.header__nav-list li:focus-within > .sub-menu {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.header__nav-list .sub-menu li { width: 100%; }
.header__nav-list .sub-menu li a {
  display: block;
  width: 100%;
  padding: 8px 12px;
  font-size: 14px;
  color: var(--text-muted);
  border-radius: 6px;
  white-space: nowrap;
}
.header__nav-list .sub-menu li a:hover {
  color: var(--accent);
  background: var(--accent-faint);
}

/* Chevron indicator for parent items */
.header__nav-list li:has(> .sub-menu) > a::after {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  margin-left: 6px;
  vertical-align: middle;
  opacity: 0.6;
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.header__cta { padding: 10px 22px; font-size: 14px; }

.header__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--radius-sm);
}
.header__burger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition);
}

.header__mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  right: 0;
  width: 75%;
  max-width: 320px;
  height: 100vh;
  background: var(--accent);
  padding: 70px 28px 40px;
  gap: 0;
  box-shadow: -4px 0 32px rgba(0,0,0,0.2);
  z-index: 9999;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
  overflow-y: auto;
}
.header__mobile-menu.open { transform: translateX(0); }


.header__mobile-menu a,
.header__mobile-menu li a {
  font-size: 18px;
  font-weight: 500;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  display: block;
}
.header__mobile-menu a:hover,
.header__mobile-menu li a:hover { color: rgba(255,255,255,0.75); }
.header__mobile-menu ul { list-style: none; }
.header__mobile-menu .sub-menu { display: none; padding-left: 16px; }
.header__mobile-menu .sub-menu.open { display: block; }
.header__mobile-menu .sub-menu li a { font-size: 15px; color: rgba(255,255,255,0.85); border-bottom-color: rgba(255,255,255,0.1); }
.header__mobile-menu li.menu-item-has-children { display: flex; flex-wrap: wrap; align-items: center; }
.header__mobile-menu li.menu-item-has-children > a { flex: 0 0 auto; border-bottom: none; padding-right: 0; }
.mobile-sub-toggle { background: none; border: none; border-bottom: 1px solid rgba(255,255,255,0.15); color: rgba(255,255,255,0.8); font-size: 20px; padding: 4px 0 4px 6px; cursor: pointer; line-height: 1; flex: 0 0 auto; }
.header__mobile-menu .sub-menu { width: 100%; }
.mobile-close-btn { position: fixed; top: 18px; right: 18px; background: none; border: none; color: #fff; font-size: 24px; cursor: pointer; padding: 4px 8px; line-height: 1; z-index: 10000; }
.mobile-hours { margin-top: 28px; border-top: 1px solid rgba(255,255,255,0.2); padding-top: 20px; }
.mobile-hours__title { font-size: 13px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.7); margin-bottom: 14px; }
.mobile-hours__list { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.mobile-hours__item { display: flex; gap: 24px; font-size: 14px; }
.mobile-hours__day { color: rgba(255,255,255,0.7); font-weight: 500; }
.mobile-hours__time { color: #fff; font-weight: 500; }

.mobile-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 98;
}
.mobile-backdrop.open { display: block; }

.header__mobile-menu .btn {
  margin-top: 16px;
  justify-content: center;
  border-bottom: none;
  padding: 12px 28px;
  background: rgba(255,255,255,0.15) !important;
  color: #fff !important;
  border: 1.5px solid rgba(255,255,255,0.5) !important;
  box-shadow: none !important;
}

/* Admin bar */
.admin-bar .site-header { top: 32px; }
.admin-bar .header__mobile-menu { top: 0; }
@media (max-width: 782px) {
  .admin-bar .site-header { top: 46px; }
  .admin-bar .header__mobile-menu { top: calc(var(--header-h) + 46px); }
}

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  display: flex;
  align-items: center;
  padding-top: calc(var(--header-h) + var(--topbar-h, 0px));
  padding-bottom: 56px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -120px; right: -80px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(82,117,48,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: var(--gap);
  align-items: stretch;
}

.hero__label-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-faint);
  color: var(--accent);
  font-size: 13px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 24px;
}
.hero__label-chip::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.hero__headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 800;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.hero__headline em { font-style: normal; color: var(--accent); }

.hero__text {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 40px;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero__trust { display: flex; align-items: center; gap: 8px; }
.hero__stars { display: flex; gap: 2px; }
.hero__star { width: 16px; height: 16px; color: #C4953A; fill: #C4953A; }
.hero__trust-text { font-size: 13px; color: var(--text-muted); }
.hero__trust-text strong { color: var(--text); font-weight: 600; }

.hero__visual {
  position: relative;
  align-self: stretch;
  display: flex;
  flex-direction: column;
}

.hero__photo-frame {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  flex: 1;
  background: var(--accent-faint);
  border: 1px solid var(--border);
}

.hero__badge {
  position: absolute;
  bottom: 24px; right: -50px;
  background: var(--bg-card);
  border-radius: 14px;
  padding: 14px 20px;
  box-shadow: var(--shadow-card-hover);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
}
.hero__badge-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--accent-faint);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}
.hero__badge-num { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 600; color: var(--text); line-height: 1; }
.hero__badge-label { font-size: 11px; color: var(--text-muted); margin-top: 2px; }

.hero__badge--top-right { bottom: auto; left: auto; top: 24px; right: -50px; }
.hero__badge--mid-left  { bottom: auto; right: auto; top: 50%; left: -40px; transform: translateY(-50%); }
.hero__badge-icon--star { background: rgba(196,149,58,0.12); color: #C4953A; }

/* ── Trust strip ──────────────────────────────────────────── */
.trust-strip {
  border-bottom: 1px solid var(--border);
  padding: 32px 0;
}
.trust-strip__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 4vw, 64px);
  flex-wrap: wrap;
}
.trust-item { display: flex; flex-direction: column; align-items: center; gap: 4px; text-align: center; }
.trust-item__num { font-family: 'Playfair Display', serif; font-size: 32px; font-weight: 600; color: var(--text); line-height: 1; }
.trust-item__num span { color: var(--accent); }
.trust-item__label { font-size: 12px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.06em; }
.trust-divider { width: 1px; height: 40px; background: var(--border); }

/* ── Services ─────────────────────────────────────────────── */
.services { padding: var(--section-py) 0; }
.services__header { margin-bottom: 56px; text-align: center; }
.services__header .section-subtitle { margin-inline: auto; }
.services__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all var(--transition);
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 0;
  background: var(--accent);
  border-radius: 0 0 3px 3px;
  transition: height var(--transition);
}
.service-card:hover { border-color: var(--accent); box-shadow: var(--shadow-card-hover); transform: translateY(-2px); }
.service-card:hover::after { height: 100%; border-radius: 3px 0 0 3px; }

.service-card__img {
  width: calc(100% + 64px);
  margin: -32px -32px 0 -32px;
  height: 200px;
  overflow: hidden;
  border-radius: var(--radius-card) var(--radius-card) 0 0;
  flex-shrink: 0;
  margin-bottom: 20px;
}
.service-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s cubic-bezier(0.4,0,0.2,1); }
.service-card:hover .service-card__img img { transform: scale(1.04); }
.service-card__title { font-size: 20px; font-weight: 500; color: var(--text); margin: 0; }
.service-card__desc { font-size: 14px; color: var(--text-muted); line-height: 1.6; flex: 1; margin: 0; }
.service-card__price { font-size: 13px; font-weight: 600; color: var(--accent); }
.service-card__link { display: inline-flex; align-items: center; gap: 4px; font-size: 13px; font-weight: 500; color: var(--accent); margin-top: 4px; transition: gap var(--transition); }
.service-card__link::after { content: ''; position: absolute; inset: 0; border-radius: var(--radius-card); }
.service-card:hover .service-card__link { gap: 8px; }

/* ── Why choose us ────────────────────────────────────────── */
.why-us {
  padding: var(--section-py) 0;
}
.why-us__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 80px); align-items: start; }
.why-us__left { position: sticky; top: calc(var(--header-h) + 32px); }
.why-us__img-frame { border-radius: 20px; overflow: hidden; aspect-ratio: 3/4; background: var(--accent-faint); border: 1px solid var(--border); margin-top: 32px; }
.why-us__right .section-subtitle { margin-bottom: 40px; }

.why-feature { display: flex; gap: 20px; padding: 28px 0; border-bottom: 1px solid var(--border); }
.why-feature:last-child { border-bottom: none; }
.why-feature__icon { width: 44px; height: 44px; background: var(--accent-faint); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.why-feature__title { font-size: 16px; font-weight: 600; color: var(--text); margin-bottom: 6px; font-family: 'Inter', sans-serif; }
.why-feature__desc { font-size: 14px; color: var(--text-muted); line-height: 1.65; margin: 0; }

/* ── Team Bento ───────────────────────────────────────────── */
.team-bento { padding: var(--section-py) 0; }
.team-bento__header { margin-bottom: 40px; text-align: center; }

.bento-tile {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}
.bento-tile:hover { box-shadow: var(--shadow-card-hover); transform: translateY(-2px); border-color: var(--border-strong); }

.bento-team { display: grid; grid-template-columns: repeat(12, 1fr); gap: 16px; }
.bento-tile--tall   { grid-column: 1 / 5; grid-row: 1 / 3; position: relative; min-height: 480px; }
.bento-tile--quote  { grid-column: 5 / 10; grid-row: 1 / 2; padding: 40px; display: flex; flex-direction: column; gap: 16px; background: var(--bg); }
.bento-tile--clinic { grid-column: 10 / 13; grid-row: 1 / 2; position: relative; min-height: 220px; }
.bento-tile--stat   { grid-column: 5 / 9; grid-row: 2 / 3; padding: 36px 40px; display: flex; flex-direction: column; justify-content: center; background: var(--accent-faint); border-color: transparent; }
.bento-tile--certs  { grid-column: 9 / 13; grid-row: 2 / 3; padding: 36px 40px; display: flex; flex-direction: column; gap: 12px; }

.bento-tile--photo img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.6s cubic-bezier(0.4,0,0.2,1); }
.bento-tile--photo:hover img { transform: scale(1.04); }

.bento-tile__photo-label { position: absolute; bottom: 0; left: 0; right: 0; padding: 28px 24px 24px; background: linear-gradient(to top, rgba(26,26,26,0.75) 0%, transparent 100%); display: flex; flex-direction: column; gap: 4px; }
.bento-tile__doctor-name { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 600; color: #fff; }
.bento-tile__doctor-title { font-size: 13px; color: rgba(255,255,255,0.8); font-weight: 400; }
.bento-tile__overlay-label { position: absolute; bottom: 16px; left: 16px; background: rgba(255,255,255,0.9); backdrop-filter: blur(8px); border-radius: var(--radius-pill); padding: 6px 14px; font-size: 12px; font-weight: 600; color: var(--text); letter-spacing: 0.04em; }

.bento-quote-mark { font-family: 'Playfair Display', serif; font-size: 72px; color: var(--accent); line-height: 0.7; display: block; opacity: 0.3; height: 32px; }
.bento-quote-text { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 400; color: var(--text); line-height: 1.55; margin: 0; flex: 1; }
.bento-quote-author { font-size: 13px; color: var(--accent); font-weight: 500; }

.bento-stat-num { font-family: 'Playfair Display', serif; font-size: 64px; font-weight: 600; color: var(--accent); line-height: 1; }
.bento-stat-num span { font-size: 40px; }
.bento-stat-label { font-size: 15px; color: var(--text-muted); margin-top: 8px; max-width: 200px; line-height: 1.4; }

.bento-certs-icon { width: 52px; height: 52px; background: var(--accent-faint); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: var(--accent); margin-bottom: 4px; }
.bento-certs-title { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 500; color: var(--text); }
.bento-certs-list { display: flex; flex-direction: column; gap: 8px; }
.bento-certs-list li { font-size: 13px; color: var(--text-muted); display: flex; align-items: center; gap: 8px; }
.bento-certs-list li::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); flex-shrink: 0; }

/* ── Process ──────────────────────────────────────────────── */
.process { padding: var(--section-py) 0; }
.process__header { text-align: center; margin-bottom: 64px; }
.process__header .section-subtitle { margin: 0 auto; }
.process__steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; }
.process__steps::before { content: ''; position: absolute; top: 24px; left: calc(12.5% + 24px); right: calc(12.5% + 24px); height: 1px; background: var(--border); }
.process__step { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 0 20px; position: relative; }
.process__step-num { width: 48px; height: 48px; border-radius: 50%; background: var(--bg-card); border: 2px solid var(--border); display: flex; align-items: center; justify-content: center; font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 600; color: var(--text-faint); margin-bottom: 24px; position: relative; z-index: 1; transition: all var(--transition); }
.process__step--active .process__step-num,
.process__step:hover .process__step-num { background: var(--accent); border-color: var(--accent); color: #fff; box-shadow: 0 4px 16px rgba(82,117,48,0.3); }
.process__step-title { font-size: 16px; font-weight: 500; color: var(--text); margin-bottom: 10px; font-family: 'Playfair Display', serif; }
.process__step-desc { font-size: 13px; color: var(--text-muted); line-height: 1.6; margin: 0; }

/* ── Testimonials ─────────────────────────────────────────── */
.testimonials {
  padding: var(--section-py) 0;
  border-top: 1px solid var(--border);
}
.testimonials__header { text-align: center; margin-bottom: 48px; }
.testimonials__header .section-subtitle { margin: 0 auto; }

.testimonials__slider { position: relative; }

/* Overflow hidden but show peek of 4th card */
.testimonials__track-wrap { overflow: hidden; }

.testimonials__track {
  display: flex;
  gap: 20px;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}

/* Width set by JS — 3 visible on desktop, 2 tablet, 1 mobile */
.testimonials__slide {
  flex-shrink: 0;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  transition: box-shadow var(--transition), transform var(--transition);
}
.testimonials__slide:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-3px);
}


.testimonials__text {
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  color: var(--text);
  line-height: 1.8;
  flex: 1;
  margin: 0 0 24px;
}

.testimonials__stars-row {
  display: flex;
  gap: 3px;
  margin-bottom: 14px;
}
.testimonials__star-fill { color: #C4953A; fill: #C4953A; width: 15px; height: 15px; }

.testimonials__author {
  display: flex;
  align-items: center;
  gap: 10px;
}
.testimonials__avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--accent-faint);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--accent);
  flex-shrink: 0;
}
.testimonials__name { font-size: 13px; font-weight: 700; color: var(--text); line-height: 1.3; }
.testimonials__role { font-size: 12px; color: var(--text-faint); margin-top: 2px; }

/* Controls */
.testimonials__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
}
.testimonials__dots { display: flex; gap: 8px; align-items: center; }
.testimonials__dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--border-strong);
  transition: all var(--transition);
  padding: 0;
}
.testimonials__dot.active { background: var(--accent); width: 22px; border-radius: 4px; }
.testimonials__btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all var(--transition);
}
.testimonials__btn:hover { border-color: var(--accent); color: var(--accent); background: var(--accent-faint); }

.testimonials__cta { text-align: center; margin-top: 40px; }


/* ── Social Proof Bento ────────────────────────────────────── */
.proof-bento { padding: var(--section-py) 0; }
.proof-bento__header { margin-bottom: 40px; text-align: center; }

.bento-proof { display: grid; grid-template-columns: repeat(12, 1fr); grid-auto-rows: minmax(200px, auto); gap: 16px; }
.bento-tile--proof-main { grid-column: 1 / 6; grid-row: 1 / 3; min-height: 400px; }
.bento-tile--hero-stat { grid-column: 6 / 9; grid-row: 1 / 3; background: var(--accent); border-color: transparent; padding: 40px 36px; display: flex; flex-direction: column; gap: 12px; }
.bento-tile--hero-stat:hover { background: var(--accent-hover); border-color: transparent; }
.bento-tile--rating { grid-column: 9 / 13; grid-row: 1 / 2; padding: 32px 36px; display: flex; flex-direction: column; gap: 8px; }
.bento-tile--guarantee { grid-column: 9 / 11; grid-row: 2 / 3; padding: 32px; display: flex; flex-direction: column; gap: 12px; background: var(--accent-faint); border-color: transparent; }
.bento-tile--free-cta { grid-column: 11 / 13; grid-row: 2 / 3; padding: 24px; display: flex; flex-direction: column; gap: 8px; background: var(--text); border-color: transparent; overflow: hidden; }
.bento-tile--free-cta:hover { border-color: transparent; }

.bento-hero-num { font-family: 'Playfair Display', serif; font-size: 80px; font-weight: 600; color: #fff; line-height: 1; }
.bento-hero-num span { font-size: 48px; }
.bento-hero-label { font-size: 18px; font-family: 'Playfair Display', serif; font-weight: 500; color: #fff; line-height: 1.3; max-width: 220px; }
.bento-hero-sublabel { font-size: 14px; color: rgba(255,255,255,0.75); line-height: 1.6; max-width: 220px; }
.bento-hero-cta { padding: 10px 22px; font-size: 14px; margin-top: auto; align-self: flex-start; }

.bento-rating-google-logo { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; color: var(--text-muted); letter-spacing: 0.02em; margin-bottom: 4px; }
.bento-rating-score-row { display: flex; align-items: flex-end; gap: 12px; }
.bento-rating-num { font-family: 'Playfair Display', serif; font-size: 64px; font-weight: 600; color: var(--text); line-height: 1; }
.bento-rating-stars { display: flex; gap: 3px; padding-bottom: 10px; }
.bento-rating-stars svg { width: 22px; height: 22px; fill: #C4953A; stroke: #C4953A; stroke-width: 0.5; }
.bento-rating-sub { font-size: 13px; color: var(--text-muted); }
.bento-rating-avatars { display: flex; margin-top: auto; }
.bento-rating-avatars span { width: 32px; height: 32px; border-radius: 50%; border: 2px solid var(--bg-card); display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 600; color: #fff; margin-left: -8px; }
.bento-rating-avatars span:first-child { margin-left: 0; }

.bento-guarantee-icon { color: var(--accent); }
.bento-guarantee-title { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 500; color: var(--text); }
.bento-guarantee-desc { font-size: 13px; color: var(--text-muted); line-height: 1.5; margin: 0; }

.bento-free-icon { color: var(--accent-faint); opacity: 0.7; flex-shrink: 0; }
.bento-free-label { font-size: 10px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(82,117,48,0.9); flex-shrink: 0; }
.bento-free-title { font-family: 'Playfair Display', serif; font-size: 16px; font-weight: 500; color: #fff; line-height: 1.35; flex: 1; }
.bento-free-btn { align-self: flex-start; font-size: 13px; padding: 10px 20px; flex-shrink: 0; white-space: nowrap; }

/* ── Service areas ────────────────────────────────────────── */
.service-areas { padding: var(--section-py) 0; }
.service-areas__header { margin-bottom: 40px; text-align: center; }
.service-areas__header .section-subtitle { margin-inline: auto; }
.service-areas__tags { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.area-tag { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-pill); padding: 8px 18px; font-size: 14px; color: var(--text-muted); transition: all var(--transition); }
.area-tag:hover { border-color: var(--accent); color: var(--accent); background: var(--accent-faint); }

/* ── Contact CTA ──────────────────────────────────────────── */
.cta-section { padding: var(--section-py) 0; }
.cta-section__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 80px); align-items: stretch; }
.cta-section__tag { display: inline-block; font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); margin-bottom: 16px; }
.cta-section__title { margin-bottom: 16px; }
.cta-section__subtitle { margin-bottom: 40px; font-size: 17px; max-width: 420px; }
.cta-section__left { display: flex; flex-direction: column; }
.cta-section__contacts { display: flex; flex-direction: column; gap: 20px; flex: 1; justify-content: space-evenly; }
.cta-section__right { display: flex; flex-direction: column; background: #F2F2F2; border-radius: var(--radius-card); padding: 20px 20px; border: 1px solid var(--border); }

.contact-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-item__icon { width: 44px; height: 44px; background: var(--accent-faint); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--accent); flex-shrink: 0; }
.contact-item__label { font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-faint); display: block; margin-bottom: 4px; }
.contact-item__value { font-size: 17px; font-weight: 500; color: var(--text); display: block; margin-bottom: 2px; }
.contact-item__note { font-size: 12px; color: var(--text-muted); }

.form-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-card); padding: 40px; flex: 1; display: flex; flex-direction: column; }
.form-card__title { font-family: 'Playfair Display', serif; font-size: 24px; font-weight: 500; margin-bottom: 28px; }

/* Fluent Forms overrides inside .form-card */
.form-card .ff-el-form-control,
.form-card .ff-el-group input,
.form-card .ff-el-group textarea,
.form-card .ff-el-group select {
  background: var(--bg-card) !important;
  border: 1px solid var(--border) !important;
  border-radius: var(--radius-sm) !important;
  padding: 12px 16px !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 15px !important;
  color: var(--text) !important;
  width: 100% !important;
  outline: none !important;
  box-shadow: none !important;
  transition: border-color var(--transition), box-shadow var(--transition) !important;
}
.form-card .ff-el-form-control:focus,
.form-card .ff-el-group input:focus,
.form-card .ff-el-group textarea:focus {
  border-color: var(--accent) !important;
  box-shadow: 0 0 0 3px rgba(82,117,48,0.12) !important;
}
.form-card .ff-el-group label,
.form-card .ff-el-group .ff-el-input--label label {
  font-size: 13px !important;
  font-weight: 500 !important;
  color: var(--text-muted) !important;
}
/* Required asterisk */
.form-card .ff-el-group .ff-el-input--label .asterisk { color: var(--accent) !important; }

/* Submit button — covers all Fluent Forms button class combos */
.form-card .ff-btn-submit,
.form-card button[type="submit"],
.form-card input[type="submit"] {
  background: var(--accent) !important;
  background-color: var(--accent) !important;
  color: #fff !important;
  border: none !important;
  border-radius: var(--radius-pill) !important;
  padding: 14px 28px !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 15px !important;
  font-weight: 500 !important;
  width: 100% !important;
  cursor: pointer !important;
  box-shadow: 0 2px 12px rgba(82,117,48,0.28) !important;
  transition: background var(--transition), transform var(--transition) !important;
}
.form-card .ff-btn-submit:hover,
.form-card button[type="submit"]:hover,
.form-card input[type="submit"]:hover {
  background: var(--accent-hover) !important;
  background-color: var(--accent-hover) !important;
  transform: translateY(-1px) !important;
}

/* ── FAQ ──────────────────────────────────────────────────── */
.faq { padding: var(--section-py) 0; }
.faq__header { margin-bottom: 48px; text-align: center; }
.faq__header .section-subtitle { margin-inline: auto; }
.faq__list { max-width: 860px; margin-inline: auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }

.faq-item__btn { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 26px 0; text-align: left; color: var(--text); font-size: 17px; font-weight: 600; letter-spacing: -0.01em; transition: color var(--transition); cursor: pointer; font-family: 'Inter', sans-serif; }
.faq-item__btn:hover { color: var(--accent); }
.faq-item__btn[aria-expanded="true"] { color: var(--accent); }

.faq-icon { width: 32px; height: 32px; border-radius: 50%; border: 1.5px solid currentColor; display: flex; align-items: center; justify-content: center; flex-shrink: 0; opacity: 0.45; transition: all var(--transition); }
.faq-item__btn:hover .faq-icon,
.faq-item__btn[aria-expanded="true"] .faq-icon { opacity: 1; }
.faq-item__btn[aria-expanded="true"] .faq-icon { background: var(--accent); border-color: var(--accent); color: #fff; transform: rotate(45deg); }

.faq-item__answer { overflow: hidden; max-height: 0; transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1); }
.faq-item__answer.open { max-height: 500px; }
.faq-item__answer p { padding-bottom: 28px; font-size: 16px; color: var(--text-muted); line-height: 1.75; margin: 0; max-width: 720px; }

/* ── Fixed bottom CTA ────────────────────────────────────── */
.fixed-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--accent);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8px 24px;
  z-index: 999;
  box-shadow: 0 -2px 12px rgba(0,0,0,0.12);
}
.fixed-cta__btn {
  display: inline-block;
  padding: 6px 24px;
  border: 1.5px solid rgba(255,255,255,0.7);
  border-radius: 100px;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: background var(--transition), border-color var(--transition);
}
.fixed-cta__btn:hover {
  background: rgba(255,255,255,0.12);
  border-color: #fff;
}
body { padding-bottom: 44px; }

/* ── Footer ───────────────────────────────────────────────── */
.site-footer { padding: 56px 0 32px; background: var(--accent); }
.footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer__brand { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 600; color: #fff; margin-bottom: 12px; display: block; }
.footer__tagline { font-size: 14px; color: rgba(255,255,255,0.65); line-height: 1.6; margin-bottom: 24px; }
.footer__social { display: flex; gap: 10px; }
.footer__social-link { width: 36px; height: 36px; border-radius: 8px; border: 1px solid rgba(255,255,255,0.25); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.7); transition: all var(--transition); }
.footer__social-link:hover { background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.5); color: #fff; }
.footer__col-title { font-size: 16px; font-weight: 600; color: #fff; margin-bottom: 16px; display: block; }
.footer__links { display: flex; flex-direction: column; gap: 10px; }
.footer__links a { font-size: 14px; color: rgba(255,255,255,0.7); transition: color var(--transition); }
.footer__links a:hover { color: #fff; }
.footer__bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.15); gap: 16px; flex-wrap: wrap; }
.footer__copy { font-size: 13px; color: rgba(255,255,255,0.45); }
.footer__bottom-links { display: flex; gap: 24px; }
.footer__bottom-links a { font-size: 13px; color: rgba(255,255,255,0.45); transition: color var(--transition); }
.footer__bottom-links a:hover { color: #fff; }

/* ── CTA Banner ───────────────────────────────────────────── */
.cta-banner { padding: var(--section-py) 0; text-align: center; }
.cta-banner__title { margin-bottom: 16px; max-width: 70%; margin-inline: auto; }
.cta-banner__text { font-size: 18px; color: var(--text-muted); max-width: 70%; margin: 0 auto 40px; }
.cta-banner__actions { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ── Button size variant ──────────────────────────────────── */
.btn--lg { padding: 16px 36px; font-size: 16px; }

/* ── Inner pages ──────────────────────────────────────────── */
.site-main { padding-top: 0; }

/* ── Page hero (shared template for all inner pages) ─────── */
.page-hero {
  padding-top: calc(var(--header-h) + 56px);
  padding-bottom: 72px;
  background: var(--bg-card); /* white */
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}



/* Subtle sage glow top-right */
.page-hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(82,117,48,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: stretch;
}

/* Content column */
.page-hero__content { position: relative; z-index: 1; }

.page-hero__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 20px;
}

.page-hero__subtitle {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 460px;
  margin-bottom: 36px;
}

.page-hero__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Image column */
.page-hero__image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  min-height: 400px;
  height: 100%;
  background: var(--accent-faint);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
}

.page-hero__image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Decorative label badge over image — only when data-badge has content */
.page-hero__image[data-badge]:not([data-badge=""])::after {
  content: attr(data-badge);
  position: absolute;
  bottom: 20px; left: 20px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-pill);
  padding: 8px 18px;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.04em;
}

/* Responsive */
@media (max-width: 900px) {
  .page-hero__inner { grid-template-columns: 1fr; }
  .page-hero__image { min-height: 0; height: 280px; width: 100%; }
  .page-hero__subtitle { max-width: 100%; }
}

/* Legacy inner-page hero class aliases → redirect to page-hero style */
.cenik-hero,
.o-nas-hero,
.recenze-hero,
.diskuze-hero,
.sluzba-hero {
  padding: calc(var(--header-h) + 48px) 0 64px;
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
}

.kontakt-process { padding: var(--section-py) 0; }
.kontakt-process__heading { text-align: center; margin-bottom: 48px; }
.kontakt-process__steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.kontakt-process__step { text-align: center; }
.kontakt-process__number { display: inline-flex; width: 48px; height: 48px; border-radius: 50%; background: var(--accent-faint); color: var(--accent); font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 600; align-items: center; justify-content: center; margin-bottom: 16px; }
.kontakt-process__step-title { font-size: 16px; font-weight: 600; color: var(--text); margin-bottom: 8px; }
.kontakt-process__step-desc { font-size: 14px; color: var(--text-muted); line-height: 1.6; }
.kontakt-bottom-cta { padding: var(--section-py) 0; text-align: center; }
.kontakt-bottom-cta__title { margin-bottom: 16px; }
.kontakt-bottom-cta__text { font-size: 17px; max-width: 640px; margin: 0 auto 32px; }

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 400;
  margin-bottom: 24px;
}
.breadcrumbs__link {
  color: var(--text-faint);
  transition: color var(--transition);
}
.breadcrumbs__link:hover { color: var(--accent); }
.breadcrumbs__sep {
  font-size: 0;
  color: var(--text-faint);
}
.breadcrumbs__sep::before {
  content: '›';
  font-size: 16px;
  line-height: 1;
  opacity: 0.4;
}
.breadcrumbs__current {
  color: var(--text);
  font-weight: 500;
}

/* Pricing section */
.pricing { padding: var(--section-py) 0; }
.pricing__header { margin-bottom: 40px; text-align: center; }
.pricing__header .section-subtitle { margin-inline: auto; margin-bottom: 32px; }
.pricing__tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 40px; justify-content: center; }
.pricing__tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  background: var(--bg-card);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: all var(--transition);
}
.pricing__tab svg { flex-shrink: 0; }
.pricing__tab--active,
.pricing__tab:hover { background: var(--accent); color: #fff; border-color: var(--accent); }
.pricing__panel { display: none; }
.pricing__panel--active { display: block; }

.pricing__group {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  overflow: hidden;
  margin-bottom: 16px;
}

.pricing__group-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  padding: 20px 28px;
  border-bottom: none;
  background: var(--accent);
}
.pricing__group-title svg { color: rgba(255,255,255,0.8); flex-shrink: 0; }

.pricing__items { padding: 0 28px; }

.pricing__row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}
.pricing__row:last-child { border-bottom: none; }
.pricing__row--highlight { background: var(--accent-faint); margin: 0 -28px; padding: 14px 28px; border-bottom: 1px solid rgba(82,117,48,0.15); }
.pricing__row--highlight:last-child { border-bottom: none; }

.pricing__service {
  font-size: 15px;
  color: var(--text);
  white-space: nowrap;
  flex-shrink: 0;
}
.pricing__row--highlight .pricing__service { font-weight: 600; }

.pricing__dots {
  flex: 1;
  border-bottom: 1px dashed var(--border-strong);
  min-width: 24px;
  margin-bottom: 2px;
  opacity: 0.5;
}

.pricing__price {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
  flex-shrink: 0;
}
.pricing__price--free     { color: var(--accent); }
.pricing__price--included { color: var(--text-muted); font-weight: 400; font-style: italic; }
.pricing__price--highlight { color: var(--accent); font-size: 17px; }
@media (max-width: 600px) {
  .pricing__service { white-space: normal; flex: 1 1 auto; flex-shrink: 1; }
  .pricing__price { flex-shrink: 0; white-space: nowrap; }
}

.pricing__note {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 24px 28px;
  margin-top: 24px;
}
.pricing__note-icon {
  width: 40px; height: 40px;
  background: var(--accent-faint);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}
.pricing__note-content strong { font-size: 14px; color: var(--text); display: block; margin-bottom: 6px; }
.pricing__note-content p { font-size: 14px; color: var(--text-muted); line-height: 1.65; margin: 0; }

/* ── O nás page ───────────────────────────────────────────── */
.page-hero__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
  display: block;
}

/* Stats bar */
.stats-bar {
  padding: 56px 0;
  border-bottom: 1px solid var(--border);
}
.stats-bar__intro {
  text-align: center;
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 40px;
}
.stats-bar__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: center;
}
.stats-bar__number {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 600;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}
.stats-bar__label {
  font-size: 14px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* About features grid */
.about-features { padding: var(--section-py) 0; }
.about-features .section-title { margin-bottom: 48px; }
.about-features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.about-features__card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.about-features__card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-2px);
}
.about-features__icon {
  width: 52px; height: 52px;
  background: var(--accent-faint);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}
.about-features__card-title {
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
  font-family: 'Inter', sans-serif;
}
.about-features__card-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}

/* About values */
.about-values { padding: var(--section-py) 0; }
.about-values .section-title { margin-bottom: 12px; }
.about-values__mission {
  font-size: 17px;
  color: var(--text-muted);
  margin-bottom: 64px;
}
.about-values__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
  margin-bottom: 80px;
}
.about-values__row:last-child { margin-bottom: 0; }
.about-values__row--reverse { direction: rtl; }
.about-values__row--reverse > * { direction: ltr; }

.about-values__text h3 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 500;
  color: var(--text);
  margin-bottom: 20px;
  line-height: 1.25;
}
.about-values__text p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 16px;
}
.about-values__text .btn { margin-top: 12px; }
.about-values__text ul + p { margin-top: 20px; }

.about-values__image {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/3;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
}
.about-values__image img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 900px) {
  .about-features__grid,
  .about-features__grid--2col { grid-template-columns: 1fr; }
  .stats-bar__grid { grid-template-columns: repeat(3, 1fr); }
  .about-values__row, .about-values__row--reverse { grid-template-columns: 1fr; direction: ltr; }
  .about-values__image { aspect-ratio: 16/9; }
}
@media (max-width: 600px) {
  .about-features__grid,
  .about-features__grid--2col { grid-template-columns: 1fr; }
  .stats-bar__grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ── Recenze page ─────────────────────────────────────────── */
.recenze { padding: var(--section-py) 0; text-align: center; }
.recenze .breadcrumbs { justify-content: center; margin-bottom: 32px; }
.recenze__intro { text-align: center; max-width: 720px; margin-inline: auto; margin-bottom: 56px; }
.recenze__big-heading { font-family: 'Playfair Display', serif; font-size: clamp(28px, 4vw, 44px); font-weight: 600; color: var(--text); margin-bottom: 12px; }
.recenze__seo-heading { font-size: 18px; font-weight: 500; color: var(--text-muted); margin-bottom: 8px; }
.recenze__subtitle { font-size: 16px; color: var(--text-muted); line-height: 1.7; margin-bottom: 28px; }

.recenze__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  text-align: left;
}
.recenze__card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.recenze__card:hover { box-shadow: var(--shadow-card-hover); transform: translateY(-2px); }
.recenze__quote { font-size: 15px; color: var(--text); line-height: 1.75; flex: 1; margin: 0; }
.recenze__stars { display: flex; gap: 3px; }
.recenze__stars svg { width: 16px; height: 16px; fill: #C4953A; color: #C4953A; }
.recenze__client { display: flex; align-items: center; gap: 12px; padding-top: 16px; border-top: 1px solid var(--border); }
.recenze__avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--accent-faint);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 16px; font-weight: 600;
  color: var(--accent);
  flex-shrink: 0;
}
.recenze__avatar--placeholder { background: var(--accent-faint); }
.recenze__name { font-size: 14px; font-weight: 600; color: var(--text); }
.recenze__role { font-size: 12px; color: var(--text-faint); margin-top: 2px; }

@media (max-width: 700px) { .recenze__grid { grid-template-columns: 1fr; } }

/* ── Diskuze page ─────────────────────────────────────────── */
.diskuze { padding: var(--section-py) 0; text-align: center; }
.diskuze .breadcrumbs { justify-content: center; margin-bottom: 32px; }
.diskuze__intro { margin-bottom: 48px; text-align: center; max-width: 720px; margin-inline: auto; margin-bottom: 48px; }
.diskuze__big-heading { font-family: 'Playfair Display', serif; font-size: clamp(28px, 4vw, 44px); font-weight: 600; color: var(--text); margin-bottom: 12px; }
.diskuze__seo-heading { font-size: 18px; font-weight: 500; color: var(--text-muted); margin-bottom: 8px; }
.diskuze__subtitle { font-size: 16px; color: var(--text-muted); line-height: 1.7; }

.diskuze__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.diskuze__card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 44px 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
}
.diskuze__card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--accent);
  opacity: 0;
  transition: opacity var(--transition);
}
.diskuze__card:hover { box-shadow: var(--shadow-card-hover); transform: translateY(-3px); }
.diskuze__card:hover::before { opacity: 1; }
.diskuze__question {
  font-family: 'Playfair Display', serif;
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 600;
  color: var(--text);
  line-height: 1.35;
  margin: 0;
}
.diskuze__answer {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
  margin: 0;
  flex: 1;
}
.diskuze__answer p { margin: 0; }
.diskuze__cta { text-align: center; margin-top: 64px; }
.diskuze__cta-btn { display: inline-flex; align-items: center; gap: 8px; background: var(--accent); color: #fff; padding: 14px 32px; border-radius: var(--radius-pill); font-weight: 600; font-size: 15px; text-decoration: none; transition: background var(--transition); }
.diskuze__cta-btn:hover { background: var(--accent-hover); }
@media (max-width: 768px) { .diskuze__grid { grid-template-columns: 1fr; } }
@media (max-width: 900px) { .diskuze__grid { grid-template-columns: 1fr; gap: 16px; } .diskuze__card { padding: 32px 28px; } }

/* ── Děkujeme (thank you) page ────────────────────────────── */
.thankyou {
  min-height: 70vh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 64px) 0 80px;
}
.thankyou__inner { max-width: 640px; margin: 0 auto; text-align: center; }
.thankyou__icon {
  width: 72px; height: 72px;
  background: var(--accent-faint);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  margin: 0 auto 28px;
}
.thankyou__title { font-family: 'Playfair Display', serif; font-size: clamp(28px, 4vw, 44px); font-weight: 600; color: var(--text); margin-bottom: 16px; }
.thankyou__text { font-size: 17px; color: var(--text-muted); line-height: 1.7; margin-bottom: 40px; }
.thankyou__steps { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-card); padding: 32px; margin-bottom: 40px; text-align: left; }
.thankyou__steps-title { font-size: 16px; font-weight: 600; color: var(--text); margin-bottom: 16px; }
.thankyou__steps-list { display: flex; flex-direction: column; gap: 10px; padding-left: 20px; }
.thankyou__steps-list li { font-size: 15px; color: var(--text-muted); line-height: 1.6; }
.thankyou__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 32px; }
.thankyou__contact { font-size: 15px; color: var(--text-muted); }
.thankyou__contact-label { display: block; margin-bottom: 4px; }
.thankyou__contact-phone { font-size: 20px; font-weight: 600; color: var(--accent); }

/* ── Vše o implantátech (edu) page ───────────────────────── */
.edu-highlights { padding: var(--section-py) 0; }
.edu-highlights__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.edu-highlights__card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 28px 24px;
  text-align: center;
}
.edu-highlights__value { font-family: 'Playfair Display', serif; font-size: 40px; font-weight: 600; color: var(--accent); line-height: 1; margin-bottom: 8px; display: block; }
.edu-highlights__label { font-size: 13px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.06em; }

.edu-block { padding: var(--section-py) 0 calc(var(--section-py) + 24px); }
.edu-block--alt { background: var(--bg-card); border-top: 1px solid var(--border); }
.edu-block .section-title { margin-bottom: 32px; text-align: center; }
.edu-block__subtitle { font-size: 20px; font-weight: 500; color: var(--text); line-height: 1.7; margin-bottom: 40px; max-width: 680px; text-align: center; margin-inline: auto; }
.about-features__grid--2col { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 900px) { .about-features__grid--2col { grid-template-columns: 1fr; } }
.edu-block__subheading { font-size: 17px; font-weight: 600; color: var(--text); margin-bottom: 16px; }
.edu-block__features { list-style: none; padding: 0; margin-top: 28px; display: flex; flex-direction: column; gap: 10px; }
.edu-block__features li { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; color: var(--text); line-height: 1.6; }
.edu-block__features li::before { content: ''; display: block; width: 8px; height: 8px; min-width: 8px; border-radius: 50%; background: var(--accent); margin-top: 7px; }
.edu-block__features li strong { display: block; font-weight: 600; color: var(--text); margin-bottom: 2px; }

/* ── Service: Treatment Process ───────────────────────────── */
.svc-process { padding: var(--section-py) 0; background: var(--bg); border-top: 1px solid var(--border); }
.svc-process .section-title { margin-bottom: 48px; text-align: center; }
.svc-process__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.svc-process__image {
  border-radius: var(--radius-card);
  overflow: hidden;
  aspect-ratio: 4/3;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
}
.svc-process__image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.svc-process__steps { display: flex; flex-direction: column; gap: 24px; }
.svc-process__step { display: flex; gap: 20px; align-items: flex-start; }
.svc-process__number {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--accent-faint);
  color: var(--accent);
  font-size: 15px;
  font-weight: 600;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  border: 1px solid var(--border);
}
.svc-process__step-title { font-size: 16px; font-weight: 600; color: var(--text); margin-bottom: 4px; }
.svc-process__step-desc { font-size: 14px; color: var(--text-muted); line-height: 1.65; }

/* ── Service: Pricing Table ───────────────────────────────── */
.svc-pricing { padding: var(--section-py) 0; background: var(--bg-card); border-top: 1px solid var(--border); }
.svc-pricing .section-title { margin-bottom: 40px; text-align: center; }
.svc-pricing__table {
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  overflow: hidden;
  margin-bottom: 20px;
}
.svc-pricing__row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  border-bottom: 1px solid var(--border);
  background: var(--bg-card);
}
.svc-pricing__row:last-child { border-bottom: none; }
.svc-pricing__row--highlight { background: var(--accent-faint); }
.svc-pricing__service { font-size: 15px; font-weight: 500; color: var(--text); }
.svc-pricing__dots { flex: 1; border-bottom: 1px dashed var(--border); margin: 0 8px; }
.svc-pricing__price { font-size: 15px; font-weight: 600; color: var(--accent); white-space: nowrap; }
.svc-pricing__note { font-size: 13px; color: var(--text-muted); margin-bottom: 28px; }

@media (max-width: 900px) {
  .svc-process__inner { grid-template-columns: 1fr; }
  .svc-process__image { aspect-ratio: 16/9; }
}
@media (max-width: 600px) {
  .svc-pricing__row { padding: 12px 14px; gap: 6px; }
  .svc-pricing__service { font-size: 13px; white-space: normal; flex: 1 1 auto; }
  .svc-pricing__price { font-size: 13px; white-space: nowrap; flex-shrink: 0; }
  .svc-pricing__dots { min-width: 12px; margin: 0 4px; }
}

.edu-steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.edu-steps__item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
}
.edu-steps__item:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-2px);
}
.edu-steps__item::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: var(--accent);
  border-radius: 0;
}
.edu-steps__number {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 600;
  color: var(--accent);
  opacity: 0.15;
  line-height: 1;
  position: absolute;
  top: 20px; right: 24px;
}
.edu-steps__title {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 500;
  color: var(--text);
  margin: 0;
  line-height: 1.3;
  padding-right: 48px;
}
.edu-steps__desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 700px) {
  .edu-steps { grid-template-columns: 1fr; }
}

.edu-warning {
  display: flex;
  gap: 20px;
  background: var(--accent-faint);
  border: 1px solid rgba(107,138,122,0.25);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius-card);
  padding: 32px 36px;
  margin-top: 40px;
}
.edu-warning__icon { color: var(--accent); flex-shrink: 0; margin-top: 3px; opacity: 0.85; }
.edu-warning__content { flex: 1; }
.edu-warning__title { font-size: 18px; font-weight: 600; color: var(--text); margin-bottom: 10px; }
.edu-warning__content > p { font-size: 15px; color: var(--text-muted); line-height: 1.7; margin-bottom: 16px; }
.edu-warning__list { display: flex; flex-direction: column; gap: 8px; list-style: none; padding: 0; margin-bottom: 0; }
.edu-warning__list li { display: flex; align-items: center; gap: 10px; font-size: 15px; color: var(--text); line-height: 1.5; }
.edu-warning__list li svg { flex-shrink: 0; color: var(--accent); opacity: 0.7; }
.edu-warning__note { font-size: 13px; color: var(--text-muted); margin-top: 16px; font-style: italic; border-top: 1px solid rgba(107,138,122,0.2); padding-top: 12px; }

@media (max-width: 900px) {
  .edu-highlights__grid { grid-template-columns: repeat(2, 1fr); }
  .edu-block__features { gap: 8px; }
}
@media (max-width: 600px) {
  .edu-highlights__grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .edu-highlights__card { padding: 18px 12px; text-align: center; }
  .edu-highlights__value { font-size: 26px; }
  .edu-highlights__label { font-size: 11px; line-height: 1.4; }
}

/* ── Blog archive ─────────────────────────────────────────── */
.blog-hero {
  padding: calc(var(--header-h) + 48px) 0 64px;
  background: #fff;
  text-align: center;
}
.blog-hero__breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 28px;
}
.blog-hero__breadcrumb a { color: var(--text-muted); text-decoration: none; }
.blog-hero__breadcrumb a:hover { color: var(--accent); }
.blog-hero__separator { color: var(--border-strong); }
.blog-hero__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 600;
  color: var(--text);
  line-height: 1.15;
  margin-bottom: 16px;
}
.blog-hero__subtitle {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 540px;
  margin-inline: auto;
  line-height: 1.7;
}

.blog-archive { padding: var(--section-py) 0; background: var(--bg); }
.blog-archive__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.article-card {
  background: #fff;
  border-radius: var(--radius-card);
  border: 1px solid var(--border);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: box-shadow var(--transition), transform var(--transition);
}
.article-card:hover { box-shadow: var(--shadow-card-hover); transform: translateY(-3px); }

.article-card__image-wrap { position: relative; aspect-ratio: 16 / 9; overflow: hidden; flex-shrink: 0; }
.article-card__image { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s ease; }
.article-card:hover .article-card__image { transform: scale(1.04); }
.article-card__image--placeholder {
  width: 100%; height: 100%;
  background: var(--accent-faint);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
}

.article-card__badges {
  position: absolute;
  top: 14px; left: 14px;
  display: flex; gap: 6px; flex-wrap: wrap;
}
.article-card__badge {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 99px;
}
.article-card__badge--popular { background: var(--accent); color: #fff; }
.article-card__badge--category { background: rgba(255,255,255,0.92); color: var(--accent); }

.article-card__body {
  padding: 28px 28px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 12px;
}
.article-card__title { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 600; color: var(--text); line-height: 1.35; margin: 0; }
.article-card__title a { color: inherit; text-decoration: none; }
.article-card__title a:hover { color: var(--accent); }
.article-card__excerpt { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin: 0; flex: 1; }

.article-card__reading-time { display: flex; align-items: center; gap: 6px; font-size: 12px; color: var(--text-faint); }
.article-card__reading-label { }
.article-card__reading-value { font-weight: 600; color: var(--accent); }

.article-card__btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  margin-top: 4px;
}
.article-card__btn::after { content: '→'; transition: transform var(--transition); }
.article-card:hover .article-card__btn::after { transform: translateX(4px); }

.article-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  margin-top: auto;
}
.article-card__author { display: flex; align-items: center; gap: 10px; }
.article-card__avatar { width: 32px; height: 32px; border-radius: 50%; object-fit: cover; }
.article-card__author-name { font-size: 13px; font-weight: 600; color: var(--text); display: block; }
.article-card__author-role { font-size: 11px; color: var(--text-faint); display: block; }
.article-card__date { font-size: 12px; color: var(--text-faint); white-space: nowrap; }

.blog-archive__empty { text-align: center; padding: 80px 0; color: var(--text-muted); font-size: 17px; }

/* Clickable card — stretched link via title <a> */
.article-card__title a::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
}
/* keep inner links above the stretched overlay */
.article-card__btn,
.article-card__badge--category,
.article-card__author a { position: relative; z-index: 2; }

/* Pagination */
.nav-links { display: flex; justify-content: center; gap: 8px; margin-top: 56px; flex-wrap: wrap; }
.nav-links .page-numbers {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.nav-links .page-numbers:hover,
.nav-links .page-numbers.current { background: var(--accent); color: #fff; border-color: var(--accent); }
.nav-links .page-numbers.prev,
.nav-links .page-numbers.next { width: auto; padding: 0 18px; border-radius: var(--radius-pill); gap: 4px; }

@media (max-width: 900px) { .blog-archive__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .blog-archive__grid { grid-template-columns: 1fr; } .article-card__body { padding: 20px; } }

/* ── Animations ───────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { opacity: 0; animation: fadeUp 0.6s cubic-bezier(0.4,0,0.2,1) forwards; }
.fade-up-1 { animation-delay: 0.1s; }
.fade-up-2 { animation-delay: 0.2s; }
.fade-up-3 { animation-delay: 0.3s; }
.fade-up-4 { animation-delay: 0.4s; }

/* ── Bento responsive ─────────────────────────────────────── */
@media (max-width: 1024px) {
  .bento-team { grid-template-columns: 1fr 1fr; }
  .bento-tile--tall   { grid-column: 1 / 2; grid-row: 1 / 2; min-height: 360px; }
  .bento-tile--quote  { grid-column: 2 / 3; grid-row: 1 / 2; }
  .bento-tile--clinic { grid-column: 1 / 2; grid-row: 2 / 3; min-height: 220px; }
  .bento-tile--stat   { grid-column: 2 / 3; grid-row: 2 / 3; }
  .bento-tile--certs  { grid-column: 1 / 3; grid-row: 3 / 4; }

  .bento-proof { grid-template-columns: 1fr 1fr; grid-auto-rows: auto; }
  .bento-tile--proof-main { grid-column: 1 / 2; grid-row: 1 / 2; min-height: 300px; }
  .bento-tile--hero-stat  { grid-column: 2 / 3; grid-row: 1 / 2; }
  .bento-tile--rating     { grid-column: 1 / 2; grid-row: 2 / 3; }
  .bento-tile--guarantee  { grid-column: 2 / 3; grid-row: 2 / 3; }
  .bento-tile--free-cta   { grid-column: 1 / 3; grid-row: 3 / 4; }
}

/* ── Global responsive ────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__visual { display: block; max-width: 480px; margin: 0 auto; }
  .hero__badge { display: none; }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .process__steps { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .process__steps::before { display: none; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .kontakt-process__steps { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .header__nav { display: none; }
  .header__actions { margin-left: auto; display: flex; align-items: center; gap: 12px; }
  .header__cta { display: inline-flex; font-size: 14px; padding: 10px 20px; }
  .header__burger { display: flex; }
  .topbar__text { display: none; }
  .topbar__contact { width: 100%; justify-content: space-between; gap: 0; }


  .hero__grid { padding: 48px 0 64px; }
  .hero__headline { font-size: 40px; }
  .trust-divider { display: none; }
  .trust-strip__inner { gap: 32px; }
  .services__grid { grid-template-columns: 1fr; }
  .why-us__grid { grid-template-columns: 1fr; }
  .why-us__left { position: static; max-width: 480px; margin: 0 auto 32px; }
  .process__steps { grid-template-columns: 1fr; }
  .testimonials__slide { padding: 40px 28px; grid-template-columns: 1fr; }
  .testimonials__text { font-size: 20px; margin-bottom: 24px; }
  .cta-section__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .kontakt-process__steps { grid-template-columns: 1fr; }

  .bento-team, .bento-proof { grid-template-columns: 1fr; }
  .bento-tile--tall, .bento-tile--quote, .bento-tile--clinic,
  .bento-tile--stat, .bento-tile--certs, .bento-tile--proof-main,
  .bento-tile--hero-stat, .bento-tile--rating, .bento-tile--guarantee,
  .bento-tile--free-cta { grid-column: 1 / 2; grid-row: auto; min-height: auto; }
  .bento-tile--tall, .bento-tile--clinic, .bento-tile--proof-main { min-height: 280px; }
  .bento-tile--hero-stat { min-height: 260px; }
  .bento-hero-num { font-size: 56px; }
}

/* ── Single blog post ─────────────────────────────────────── */
.single-post__header {
  padding: calc(var(--header-h) + 40px) 0 56px;
  background: #fff;
}
.single-post__header-grid {
  display: grid;
  grid-template-columns: 55% 1fr;
  gap: 48px;
  align-items: center;
}
.single-post__header-text { display: flex; flex-direction: column; gap: 16px; }

/* breadcrumbs inside header — truncate long current title */
.single-post__header .breadcrumbs { flex-wrap: nowrap; overflow: hidden; }
.single-post__header .breadcrumbs__current {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 280px;
  display: inline-block;
}

.single-post__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 600;
  line-height: 1.2;
  color: var(--text);
  margin: 0;
}

.single-post__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.single-post__meta-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  color: var(--text-muted);
}
.single-post__category-badge {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 99px;
  background: var(--accent-faint);
  color: var(--accent);
  text-decoration: none;
}
.single-post__header-image {
  border-radius: var(--radius-card);
  overflow: hidden;
  aspect-ratio: 4 / 3;
}
.single-post__header-image .single-post__image {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}

/* TOC */
.toc { padding: 0; border: none; margin: 0; background: var(--bg); }
.toc .container { padding-top: 20px; padding-bottom: 0; }
.toc__card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 24px 28px;
  max-width: 720px;
}
.toc__toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
}
.toc__toggle-label { display: flex; align-items: center; gap: 8px; }
.toc__icon { color: var(--accent); }
.toc__chevron { color: var(--text-muted); transition: transform var(--transition); }
.toc__toggle[aria-expanded="false"] .toc__chevron { transform: rotate(-90deg); }
.toc__list {
  margin: 16px 0 0 0;
  padding: 0 0 0 8px;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  counter-reset: toc;
}
/* hidden attribute must override display:flex */
.toc__list[hidden] { display: none !important; }
.toc__item { counter-increment: toc; display: flex; align-items: baseline; gap: 10px; }
.toc__item::before { content: counter(toc) '.'; font-size: 12px; color: var(--accent); font-weight: 600; flex-shrink: 0; }
.toc__link { font-size: 14px; color: var(--text-muted); text-decoration: none; transition: color var(--transition); }
.toc__link:hover, .toc__link--active { color: var(--accent); }

/* Article body */
.single-post__content { background: var(--bg); }
.single-post__body {
  max-width: 860px;
  padding-top: 24px;
  padding-bottom: 24px;
}
.single-post__body h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 600;
  color: var(--text);
  margin: 48px 0 16px;
  line-height: 1.25;
}
.single-post__body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--text);
  margin: 36px 0 12px;
}
.single-post__body p { font-size: 17px; color: var(--text); line-height: 1.8; margin: 0 0 20px; }
.single-post__body ul,
.single-post__body ol { padding-left: 24px; margin: 0 0 20px; }
.single-post__body li { font-size: 16px; color: var(--text-muted); line-height: 1.75; margin-bottom: 6px; }
.single-post__body a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.single-post__body blockquote {
  border-left: 4px solid var(--accent);
  margin: 32px 0;
  padding: 20px 28px;
  background: var(--accent-faint);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-style: italic;
  font-size: 18px;
  color: var(--text);
  line-height: 1.65;
}
.single-post__body img { max-width: 100%; border-radius: var(--radius-sm); margin: 8px 0; }

/* Author bio */
.author-bio__card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 20px 24px;
  margin-top: 56px;
  max-width: 720px;
}
.author-bio__avatar {
  width: 144px;
  height: 144px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  flex-shrink: 0;
}
.author-bio__info { display: flex; flex-direction: column; gap: 3px; }
.author-bio__eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 2px;
}
.author-bio__name { font-size: 15px; font-weight: 600; color: var(--text); }
.author-bio__credentials { font-size: 13px; color: var(--accent); }
.author-bio__desc { font-size: 13px; color: var(--text-muted); line-height: 1.5; margin: 0; }

/* Related posts — auto-fit centers cards when fewer than 3 */
.single-post__related { background: var(--bg-card); border-top: 1px solid var(--border); padding: 48px 0; }
.single-post__related .section-title { margin-bottom: 36px; text-align: center; }
.related-posts__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 360px));
  gap: 24px;
  justify-content: center;
}

@media (max-width: 900px) {
  .single-post__header-grid { grid-template-columns: 1fr; gap: 24px; }
  .single-post__header-image { aspect-ratio: 16/9; width: 100%; max-width: 100%; }
  .single-post__header .breadcrumbs { flex-wrap: wrap; overflow: visible; }
  .single-post__header .breadcrumbs__current { max-width: 100%; white-space: normal; }
  .related-posts__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .single-post__header { padding: calc(var(--header-h) + 20px) 0 28px; }
  .single-post__title { font-size: 26px; line-height: 1.2; }
  .single-post__body { padding-top: 20px; padding-bottom: 20px; }
  .single-post__body p { font-size: 15px; }
  .single-post__body h2 { font-size: 21px; }
  .single-post__body h3 { font-size: 17px; }
  .single-post__body blockquote { padding: 14px 16px; }
  .toc__card { padding: 14px 16px; max-width: 100%; }
  .author-bio__card { flex-direction: column; align-items: center; text-align: center; padding: 20px; gap: 12px; }
  .author-bio__avatar { width: 80px; height: 80px; }
  .related-posts__grid { grid-template-columns: 1fr; }
}
