@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600&family=Lato:wght@300;400;700;900&display=swap');

/* ============================================================
   ROOT & RESET
   ============================================================ */
:root {
  --bg:           #F5F0EA;
  --bg-alt:       #EAE5DB;
  --bg-dark:      #2D4A3F;
  --bg-dark-deep: #1E3430;
  --accent:       #C47038;
  --accent-hover: #A85D28;
  --text:         #252525;
  --text-muted:   #6B6B6B;
  --text-light:   #9A9090;
  --white:        #FFFFFF;
  --border:       #D5CFC5;
  --shadow:       0 2px 16px rgba(0,0,0,0.08);
  --shadow-hover: 0 6px 24px rgba(0,0,0,0.13);
  --radius:       8px;
  --radius-lg:    16px;
  --max-w:        1160px;
  --nav-h:        72px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 16px;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.25;
  font-weight: 600;
  color: var(--text);
  overflow-wrap: break-word;
}

h1 { font-size: clamp(2.2rem, 4.5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 3vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }
h4 { font-size: 1.1rem; }

p { margin-bottom: 0; }

.label {
  font-family: 'Lato', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: block;
  margin-bottom: 0.6rem;
}

em.accent {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: var(--accent);
  font-weight: 400;
}

/* ============================================================
   LAYOUT HELPERS
   ============================================================ */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 80px 0; }
.section-sm { padding: 52px 0; }
.section-lg { padding: 104px 0; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  max-width: 100%;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  padding: 13px 28px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: background 0.22s, transform 0.15s, box-shadow 0.22s;
  text-decoration: none;
  white-space: normal;
  text-align: center;
}

.btn:hover { transform: translateY(-1px); }

.btn-dark {
  background: var(--bg-dark);
  color: var(--white);
}
.btn-dark:hover { background: var(--bg-dark-deep); box-shadow: 0 4px 16px rgba(45,74,63,0.32); }

.btn-accent {
  background: var(--accent);
  color: var(--white);
}
.btn-accent:hover { background: var(--accent-hover); box-shadow: 0 4px 16px rgba(196,112,56,0.32); }

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 2px solid var(--border);
}
.btn-outline:hover { border-color: var(--text-muted); }

.btn-ghost {
  background: transparent;
  color: var(--text-muted);
  padding: 13px 0;
  font-weight: 400;
  font-size: 0.95rem;
}
.btn-ghost:hover { color: var(--text); }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-muted);
  transition: color 0.2s, gap 0.2s;
}
.link-arrow:hover { color: var(--accent); gap: 10px; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: transparent;
  height: var(--nav-h);
  display: flex;
  align-items: center;
}

.nav::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(213, 207, 197, 0.5);
  z-index: -1;
}

.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  text-decoration: none;
}

.nav-logo-mark {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nav-logo-mark img {
  height: 34px;
  width: auto;
  display: block;
}

.nav-logo-text {
  line-height: 1.2;
  min-width: 0;
}

.nav-logo-text strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
}

.nav-logo-text span {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0px;
}

.nav-links a {
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--text-muted);
  padding: 6px 10px;
  border-radius: 50px;
  white-space: nowrap;
  transition: color 0.2s, background 0.2s;
}

.nav-links a:hover,
.nav-links a.active { color: var(--text); background: var(--bg); }

.nav-cta {
  margin-left: 8px;
  padding: 11px 20px;
  white-space: nowrap;
}

.nav-lang-dropdown { margin-left: 4px; }

.nav-lang-dropdown .nav-dropdown-toggle {
  gap: 4px;
  padding: 6px 8px;
  font-size: 0.8rem;
}

.nav-lang-dropdown .nav-dropdown-menu {
  left: auto;
  right: 0;
  min-width: 170px;
}

.nav-item-dropdown { position: relative; }

.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: inherit;
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--text-muted);
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px 10px;
  border-radius: 50px;
  white-space: nowrap;
  transition: color 0.2s, background 0.2s;
}

.nav-dropdown-toggle:hover,
.nav-item-dropdown.open .nav-dropdown-toggle,
.nav-dropdown-toggle.active { color: var(--text); background: var(--bg); }

.nav-caret { flex-shrink: 0; transition: transform 0.2s ease; }
.nav-item-dropdown.open .nav-caret { transform: rotate(180deg); }

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 270px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 16px 40px rgba(0,0,0,0.16);
  padding: 8px;
  margin: 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 200;
}

.nav-item-dropdown.open .nav-dropdown-menu,
.nav-item-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown-menu li { list-style: none; }

.nav-dropdown-menu a {
  display: block;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  white-space: normal;
  line-height: 1.3;
  transition: color 0.2s, background 0.2s;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a.active { color: var(--text); background: var(--bg-alt); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: var(--text);
  position: relative;
  z-index: 1001;
}

/* Mobile menu footer (EN + CTA) — only visible inside open mobile overlay */
.nav-menu-footer {
  display: none;
}

.nav-links.open .nav-menu-footer {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding-top: 28px;
  width: 100%;
  border-top: 1px solid rgba(213, 207, 197, 0.4);
}

.nav-lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  border: 1.5px solid var(--border);
  padding: 9px 20px;
  border-radius: 50px;
  transition: color 0.2s, border-color 0.2s;
  text-decoration: none;
}

.nav-lang-btn:hover {
  color: var(--text);
  border-color: var(--text-muted);
}

.nav-lang-row {
  display: flex;
  gap: 10px;
}

.nav-menu-cta {
  width: 100%;
  max-width: 280px;
  justify-content: center;
}

/* ============================================================
   IMAGE PLACEHOLDERS (replace with real images later)
   ============================================================ */
.img-placeholder {
  background: var(--bg-alt);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.img-placeholder::after {
  content: attr(data-label);
  font-size: 0.75rem;
  color: var(--text-light);
  letter-spacing: 0.05em;
  text-align: center;
  padding: 8px;
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  padding: 72px 0 64px;
  background: var(--bg);
}

.page-hero .label { margin-bottom: 12px; }

.page-hero h1 {
  max-width: 640px;
  margin-bottom: 20px;
}

.page-hero p {
  max-width: 560px;
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* ============================================================
   STATS BAND (dark, reusable section — e.g. O meni page)
   ============================================================ */
.stats-band {
  background: var(--bg-dark);
}

.stats-band .label { color: rgba(255,255,255,0.55); }

.stats-band h2 { color: var(--white); margin-bottom: 48px; }

.stats-band .hero-stats {
  border-top: none;
  padding-top: 0;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.stats-band .stat-num { color: var(--white); }
.stats-band .stat-label { color: rgba(255,255,255,0.6); }

/* ============================================================
   CTA SECTION (dark)
   ============================================================ */
.cta-section {
  background: var(--bg-dark);
  padding: 80px 0;
  text-align: center;
}

.cta-section h2 {
  color: var(--white);
  margin-bottom: 16px;
}

.cta-section p {
  color: rgba(255,255,255,0.72);
  max-width: 520px;
  margin: 0 auto 36px;
  font-size: 1.05rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--bg-dark-deep);
  padding: 28px 0;
}

footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-logo-mark {
  display: flex;
  align-items: center;
}

.footer-logo-mark img {
  height: 28px;
  width: auto;
  display: block;
}

.footer-logo-text strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 0.9rem;
  color: var(--white);
}

.footer-logo-text span {
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

.footer-copy {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  text-align: center;
}

.footer-photo-note {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.32);
  text-align: center;
  max-width: 520px;
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}

.footer-links a:hover { color: rgba(255,255,255,0.9); }

.footer-social {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s, transform 0.2s;
}

.footer-social a:hover { transform: translateY(-2px); }

.footer-social a.social-instagram { color: #E1306C; }
.footer-social a.social-instagram:hover { color: #ff4081; }

.footer-social a.social-facebook { color: #1877F2; }
.footer-social a.social-facebook:hover { color: #3b93ff; }

.footer-social a.social-linkedin { color: #0A66C2; }
.footer-social a.social-linkedin:hover { color: #2f8fe6; }

/* ============================================================
   HOME — HERO
   ============================================================ */
.hero {
  min-height: calc(100vh - var(--nav-h));
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  padding: 64px 0 80px;
  background: var(--bg);
}

.hero .container {
  display: contents;
}

.hero-content {
  padding: 0 24px 0 max(24px, calc((100vw - var(--max-w)) / 2 + 24px));
}

.hero-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.hero h1 {
  margin-bottom: 24px;
}

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

.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 28px;
}

.hero-age-note {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-bottom: 40px;
}

.hero-stats {
  display: flex;
  gap: 36px;
  padding-top: 36px;
  border-top: 1px solid var(--border);
}

.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
  display: block;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 4px;
  max-width: 110px;
  line-height: 1.4;
}

.hero-image {
  padding-right: max(24px, calc((100vw - var(--max-w)) / 2 + 24px));
  height: 100%;
  min-height: 480px;
}

.hero-image .img-placeholder {
  width: 100%;
  height: 100%;
  min-height: 480px;
  border-radius: var(--radius-lg);
}

.hero-portrait {
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

/* ============================================================
   HOME — TESTIMONIAL HIGHLIGHT
   ============================================================ */
.testimonial-highlight {
  background: var(--bg-alt);
  padding: 56px 0;
}

.testimonial-highlight blockquote {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  line-height: 1.65;
  color: var(--text);
  position: relative;
  padding: 0 32px;
}

.testimonial-highlight blockquote::before {
  content: '"';
  position: absolute;
  top: -16px;
  left: 0;
  font-size: 5rem;
  color: var(--accent);
  opacity: 0.25;
  font-family: 'Playfair Display', serif;
  line-height: 1;
}

.testimonial-highlight cite {
  display: block;
  margin-top: 20px;
  font-style: normal;
  font-family: 'Lato', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

.quote-feature {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 56px;
  align-items: center;
}

.quote-feature-text {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.35rem;
  line-height: 1.65;
  color: var(--text);
}

.quote-feature-text cite {
  display: block;
  margin-top: 20px;
  font-style: normal;
  font-family: 'Lato', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.quote-feature-image {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.quote-feature-image img {
  width: 100%;
  display: block;
}

.quote-feature-image figcaption {
  padding: 14px;
  text-align: center;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ============================================================
   HOME — ABOUT
   ============================================================ */
.about {
  background: var(--bg);
}

.about .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-image .img-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
}

.about-portrait {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.about-content .label { margin-bottom: 12px; }

.about-content h2 { margin-bottom: 24px; }

.about-content p {
  color: var(--text-muted);
  font-size: 1.02rem;
  line-height: 1.75;
  margin-bottom: 16px;
}

.about-content .link-arrow { margin-top: 16px; }

/* ============================================================
   HOME / USLUGE — SERVICES PREVIEW
   ============================================================ */
.services-preview { background: var(--bg-alt); }

.services-preview .label { margin-bottom: 12px; }
.services-preview h2 { margin-bottom: 48px; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
  transition: box-shadow 0.25s, transform 0.25s;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}

.service-card.card-dark {
  background: var(--bg-dark);
  color: var(--white);
}

.service-card.card-dark .card-label,
.service-card.card-dark h3,
.service-card.card-dark p { color: rgba(255,255,255,0.85); }

.service-card.card-dark h3 { color: var(--white); }

.card-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 10px;
  display: block;
}

.service-card h3 {
  font-size: 1.15rem;
  margin-bottom: 14px;
  line-height: 1.35;
  color: var(--accent);
}

.service-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
}

.service-card.card-dark p { color: rgba(255,255,255,0.68); }

.service-card .link-arrow {
  margin-top: 20px;
  align-self: flex-start;
}

.service-card.card-dark .link-arrow { color: rgba(255,255,255,0.65); }
.service-card.card-dark .link-arrow:hover { color: var(--white); }

.service-card ul {
  margin: 12px 0;
}

.service-card ul li {
  font-size: 0.9rem;
  color: var(--text-muted);
  padding: 5px 0;
  padding-left: 18px;
  position: relative;
  line-height: 1.5;
}

.service-card ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 0.85rem;
}

/* ============================================================
   HOME — COMPARISON PREVIEW
   ============================================================ */
.comparison-preview { background: var(--bg); }

.comparison-preview .label { margin-bottom: 12px; }
.comparison-preview h2 { margin-bottom: 40px; }

.comparison-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.comparison-col {
  border-radius: var(--radius-lg);
  padding: 36px;
}

.comparison-col.col-dark {
  background: var(--bg-dark);
  color: var(--white);
}

.comparison-col.col-light {
  background: var(--white);
  border: 1px solid var(--border);
}

.comparison-col .card-label {
  margin-bottom: 8px;
}

.comparison-col.col-dark .card-label {
  color: rgba(255,255,255,0.55);
}

.comparison-col h3 {
  margin-bottom: 16px;
  color: var(--white);
  font-size: 1.3rem;
}

.comparison-col.col-light h3 { color: var(--accent); }

.comparison-col p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.72);
}

.comparison-col.col-light p { color: var(--text-muted); }

.comparison-col .link-arrow {
  margin-top: 28px;
  color: rgba(255,255,255,0.6);
}

.comparison-col.col-light .link-arrow { color: var(--text-muted); }
.comparison-col.col-dark .link-arrow:hover { color: var(--white); }

/* ============================================================
   HOME — RESULTS
   ============================================================ */
.results { background: var(--bg-alt); }

.results-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.results-grid-full {
  grid-template-columns: repeat(3, 1fr);
}

.result-item .img-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: var(--radius);
}

.result-item img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  background: var(--bg-alt);
  border-radius: var(--radius);
  transition: transform 0.3s;
}

.result-item img:hover {
  transform: scale(1.03);
}

.result-caption {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 10px;
  text-align: center;
}

.results-detail-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 40px;
}

.result-detail-card {
  display: flex;
  align-items: center;
  gap: 24px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow);
}

.result-detail-card img {
  width: 160px;
  height: 160px;
  flex-shrink: 0;
  object-fit: contain;
  background: var(--bg-alt);
  border-radius: var(--radius);
  cursor: zoom-in;
}

.result-detail-body h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: var(--bg-dark);
  margin-bottom: 8px;
}

.result-detail-body p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

@media (max-width: 640px) {
  .result-detail-card { flex-direction: column; align-items: stretch; text-align: center; }
  .result-detail-card img { width: 100%; height: auto; aspect-ratio: 4/3; }
}

.results-note {
  margin-top: 32px;
  background: var(--bg-dark);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.results-note p {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: rgba(255,255,255,0.85);
  font-size: 1rem;
  line-height: 1.6;
  max-width: 560px;
}

.results-note .btn { flex-shrink: 0; max-width: 100%; white-space: normal; text-align: center; }

/* ============================================================
   HOME — TESTIMONIALS
   ============================================================ */
.testimonials { background: var(--bg); }

.testimonials .label { margin-bottom: 12px; }
.testimonials h2 { margin-bottom: 40px; }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow);
}

.testimonial-card .img-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: var(--radius);
  margin-bottom: 16px;
}

.testimonial-card img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  margin-bottom: 16px;
  border: 1px solid var(--border);
}

.testimonial-source {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 12px;
}

/* ============================================================
   HOME — BROCHURES
   ============================================================ */
.brochures { background: var(--bg-alt); }

.brochures .label { margin-bottom: 12px; }
.brochures h2 { margin-bottom: 40px; }

.brochures-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.brochure-card {
  display: block;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: box-shadow 0.25s, transform 0.25s;
  cursor: pointer;
  text-decoration: none;
}

.brochure-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}

.brochure-card .img-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: 0;
}

.brochure-visual {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--bg-dark);
  position: relative;
  display: flex;
  align-items: flex-start;
  padding: 16px;
}

.brochure-type {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

.brochure-pdf-badge {
  position: absolute;
  bottom: 14px;
  right: 14px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.85);
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 50px;
  padding: 4px 12px;
}

.brochure-visual-photo {
  padding: 0;
  align-items: flex-end;
  overflow: hidden;
}

.brochure-visual-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
}

.brochure-visual-photo .brochure-pdf-badge {
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(4px);
  border-color: rgba(255,255,255,0.6);
}

.brochure-card-body {
  padding: 14px;
}

.brochure-subtype {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.brochures-note {
  margin-top: 28px;
  display: inline-block;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 14px 24px;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.brochure-card-body p {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.4;
}

/* ============================================================
   HOME — BOOKING FORM
   ============================================================ */
.booking { background: var(--bg); }

.booking .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.booking .container + .container {
  display: block;
  margin-top: 48px;
}

.contact-map-embed {
  width: 100%;
  height: 420px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.contact-map-embed iframe {
  width: 100%;
  height: 100%;
  display: block;
}

.booking-content .label { margin-bottom: 12px; }
.booking-content h2 { margin-bottom: 16px; }

.booking-content p {
  color: var(--text-muted);
  margin-bottom: 36px;
  font-size: 1rem;
}

.booking-contact {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  display: grid;
  gap: 12px;
}

.booking-contact p {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.5;
}

.booking-contact a {
  color: var(--accent);
}

.contact-item-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.contact-item-sub {
  color: var(--text-muted);
  font-size: 0.88rem;
}

.contact-item-sub a { color: var(--accent); }
.contact-item-sub a:hover { color: var(--accent-hover); }

.booking-contact p.contact-value-accent { color: var(--accent); }

.contact-map-link {
  color: var(--text);
  transition: color 0.2s;
}

.contact-map-link:hover { color: var(--accent); }

.contact-social {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 16px;
}

.contact-social a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text);
  transition: color 0.2s;
}

.contact-social a.social-instagram { color: #E1306C; }
.contact-social a.social-instagram:hover { color: #C8285C; }

.contact-social a.social-facebook { color: #1877F2; }
.contact-social a.social-facebook:hover { color: #1461C9; }

.contact-social a.social-linkedin { color: #0A66C2; }
.contact-social a.social-linkedin:hover { color: #084d8f; }

.booking-form { padding-top: 12px; }

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--bg-dark);
  box-shadow: 0 0 0 3px rgba(45,74,63,0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%236B6B6B' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

/* ============================================================
   USLUGE PAGE — SERVICES GRID (full)
   ============================================================ */
.services-full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.services-full-grid .service-card p {
  font-size: 0.92rem;
}

/* ============================================================
   USLUGE PAGE — GALLERY
   ============================================================ */
.gallery-section { background: var(--bg-alt); }
.gallery-section .label { margin-bottom: 12px; }
.gallery-section h2 { margin-bottom: 12px; }
.gallery-section > .container > p {
  color: var(--text-muted);
  margin-bottom: 36px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.gallery-grid-row2 {
  grid-template-columns: repeat(4, 1fr);
  margin-top: 12px;
}

.gallery-item .img-placeholder {
  width: 100%;
  aspect-ratio: 1;
  border-radius: var(--radius);
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  background: var(--bg-alt);
  border-radius: var(--radius);
  transition: transform 0.3s;
}

.gallery-item img:hover {
  transform: scale(1.03);
}

/* ============================================================
   USLUGE PAGE — EXERCISES
   ============================================================ */
.exercises-section { background: var(--bg); }
.exercises-section .label { margin-bottom: 12px; }
.exercises-section h2 { margin-bottom: 36px; }

.exercises-block {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-bottom: 24px;
}

.exercises-block-label {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  background: var(--bg-alt);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.exercises-block .img-placeholder {
  width: 100%;
  aspect-ratio: 16/6;
  border-radius: 0;
}

.exercises-block-img {
  width: 100%;
  height: auto;
  display: block;
}

/* ============================================================
   LIMFEDEM PAGE — CONDITION BOXES
   ============================================================ */
.condition-boxes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 48px;
}

.condition-box {
  border-radius: var(--radius-lg);
  padding: 36px;
}

.condition-box.box-dark {
  background: var(--bg-dark);
}

.condition-box.box-light {
  background: var(--white);
  border: 1px solid var(--border);
}

.condition-box .card-label {
  margin-bottom: 6px;
}

.condition-box.box-dark .card-label {
  color: rgba(255,255,255,0.55);
}

.condition-box h3 {
  font-size: 1.4rem;
  margin-bottom: 16px;
}

.condition-box.box-dark h3 { color: var(--white); }
.condition-box.box-light h3 { color: var(--text); }

.condition-box p {
  font-size: 0.95rem;
  line-height: 1.7;
}

.condition-box.box-dark p { color: rgba(255,255,255,0.72); }
.condition-box.box-light p { color: var(--text-muted); }

.condition-box ul {
  margin-top: 16px;
}

.condition-box ul li {
  font-size: 0.92rem;
  padding: 5px 0;
  padding-left: 20px;
  position: relative;
  color: var(--text-muted);
  line-height: 1.5;
}

.condition-box.box-dark ul li { color: rgba(255,255,255,0.68); }

.condition-box ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--accent);
}

.condition-box.condition-clickable {
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.condition-box.condition-clickable:hover,
.condition-box.condition-clickable:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.18);
  outline: none;
}

.condition-more {
  display: block;
  margin-top: 16px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent);
}

.condition-box.box-dark .condition-more { color: var(--accent); }

.condition-detail-panel {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.3s ease, margin-top 0.4s ease;
}

.condition-detail-panel.open {
  max-height: 2200px;
  opacity: 1;
  margin-top: 20px;
}

.condition-detail-panel .stage-detail-inner {
  border-left: 3px solid var(--accent);
}

.condition-detail-subhead {
  font-family: 'Playfair Display', serif;
  font-size: 1.02rem;
  color: var(--bg-dark);
  margin: 22px 0 10px;
}

.condition-detail-subhead:first-of-type { margin-top: 20px; }

.condition-detail-panel .stage-detail-text { margin-bottom: 8px; }

/* ============================================================
   LIMFEDEM PAGE — PHOTO GALLERIES
   ============================================================ */
.photo-gallery { background: var(--bg-alt); }

.gallery-block { margin-bottom: 40px; }
.gallery-block:last-child { margin-bottom: 0; }

.gallery-block-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
  display: block;
}

.photo-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}

.photo-row.photo-row-4 {
  grid-template-columns: repeat(4, 1fr);
}

.photo-row img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  background: var(--white);
  border-radius: var(--radius);
  transition: transform 0.3s;
}

.photo-row img:hover {
  transform: scale(1.03);
}

.photo-row .img-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: var(--radius);
}

.gallery-caption {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 10px;
  font-style: italic;
}

/* ============================================================
   LIMFEDEM PAGE — COMPARISON TABLE
   ============================================================ */
.comparison-table-section { background: var(--bg); }
.comparison-table-section .label { margin-bottom: 12px; }
.comparison-table-section h2 { margin-bottom: 36px; }

.table-wrap {
  width: 100%;
  max-width: 100%;
  border-radius: var(--radius-lg);
  overflow-x: auto;
  overflow-y: hidden;
  box-shadow: var(--shadow);
  -webkit-overflow-scrolling: touch;
}

table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  font-size: 0.92rem;
}

thead tr {
  background: var(--bg-dark);
}

thead th {
  padding: 16px 24px;
  text-align: left;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
}

thead th:first-child { color: rgba(255,255,255,0.55); }

tbody tr {
  border-bottom: 1px solid var(--border);
  transition: background 0.15s;
}

tbody tr:last-child { border-bottom: none; }
tbody tr:hover { background: var(--bg); }

tbody td {
  padding: 14px 24px;
  color: var(--text);
  line-height: 1.5;
}

tbody td:first-child {
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--text-muted);
}

tbody td.td-accent { color: var(--accent); }

/* ============================================================
   LIMFEDEM PAGE — STAGES
   ============================================================ */
.stages-section { background: var(--bg-alt); }
.stages-section .label { margin-bottom: 12px; }
.stages-section h2 { margin-bottom: 40px; }

.stages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.stages-grid.stages-grid-3 { grid-template-columns: repeat(3, 1fr); }

.stage-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
  position: relative;
}

.stage-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--bg-dark);
  display: block;
  margin-bottom: 8px;
  opacity: 0.6;
}

.stage-roman {
  display: inline-block;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--bg-dark);
  border-bottom: 2px solid var(--accent);
  padding-bottom: 2px;
  margin-bottom: 14px;
}

.stage-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.stage-card.stage-clickable,
.treatment-stage-card.stage-clickable {
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.stage-card.stage-clickable:hover,
.stage-card.stage-clickable:focus-visible,
.treatment-stage-card.stage-clickable:hover,
.treatment-stage-card.stage-clickable:focus-visible {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg, 0 12px 32px rgba(0,0,0,0.12));
  outline: none;
}

.stage-more {
  display: block;
  margin-top: 12px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent);
}

.stage-active { box-shadow: 0 0 0 2px var(--accent); }

.stage-detail-panel {
  grid-column: 1 / -1;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.3s ease, margin-top 0.4s ease;
}

.stage-detail-panel.open {
  max-height: 1200px;
  opacity: 1;
  margin-top: 4px;
}

.stage-detail-inner {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
  border-left: 3px solid var(--accent);
}

.stage-detail-img {
  display: none;
  width: 320px;
  height: 380px;
  flex-shrink: 0;
  border-radius: var(--radius);
  object-fit: contain;
  background: var(--bg-alt);
}

.stage-detail-body { flex: 1; min-width: 0; }

.stage-detail-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  color: var(--bg-dark);
  margin-bottom: 12px;
}

.stage-detail-text {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text-muted);
}

@media (max-width: 640px) {
  .stage-detail-inner { flex-direction: column; padding: 24px 20px; }
  .stage-detail-img { width: 100%; height: auto; aspect-ratio: 4/3; }
}

/* ============================================================
   LIMFEDEM PAGE — PREVENTION TIPS
   ============================================================ */
.prevention-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 40px;
  margin-top: 32px;
  list-style: none;
}

.prevention-grid li {
  position: relative;
  padding-left: 20px;
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--text-muted);
}

.prevention-grid li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
}

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

/* ============================================================
   LIMFEDEM PAGE — INFO BOXES
   ============================================================ */
.info-box {
  border-radius: var(--radius-lg);
  padding: 36px;
  margin: 48px 0;
}

.info-box-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media (max-width: 768px) {
  .info-box-grid { grid-template-columns: 1fr; }
}

.info-box.box-teal {
  background: rgba(45,74,63,0.08);
  border-left: 4px solid var(--bg-dark);
}

.info-box.box-warning {
  background: rgba(196,112,56,0.08);
  border-left: 4px solid var(--accent);
}

.info-box .info-box-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
  display: block;
}

.info-box.box-warning .info-box-label { color: var(--accent); }

.info-box h3 {
  font-size: 1.2rem;
  margin-bottom: 14px;
}

.info-box p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.75;
}

.info-box p + p { margin-top: 12px; }

.info-box ul { margin: 4px 0 0; }

.info-box ul li {
  font-size: 0.95rem;
  color: var(--text-muted);
  padding: 6px 0;
  padding-left: 20px;
  position: relative;
  line-height: 1.6;
}

.info-box ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--accent);
}

.erizipel-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 24px;
}

.erizipel-info-item {
  min-width: 0;
  background: rgba(255,255,255,0.7);
  border-radius: 8px;
  padding: 16px;
}

.erizipel-info-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.erizipel-info-value {
  font-weight: 700;
  font-size: 0.95rem;
  overflow-wrap: break-word;
}

@media (max-width: 600px) {
  .erizipel-info-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   LIMFEDEM PAGE — VENOUS SECTION
   ============================================================ */
.venous-section { background: var(--bg); }
.venous-section .label { margin-bottom: 12px; }
.venous-section h2 { margin-bottom: 20px; }
.venous-section > .container > p {
  color: var(--text-muted);
  max-width: 640px;
  margin-bottom: 36px;
}

.treatment-stages {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 0;
}

.treatment-stage-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--border);
}

.treatment-stage-card .card-label { margin-bottom: 8px; }

.treatment-stage-card h4 {
  font-size: 1rem;
  margin-bottom: 12px;
}

.treatment-stage-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.68;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 56px 0;
  }

  .hero-content {
    padding: 0 24px;
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
  }

  .hero-subtitle { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }

  .hero-image {
    padding: 0 24px;
    min-height: 0;
    height: auto;
  }

  .hero-image .img-placeholder { min-height: 0; aspect-ratio: 4/5; }
  .hero-portrait { min-height: 0; height: auto; aspect-ratio: 4/5; }

  .about .container { grid-template-columns: 1fr; gap: 40px; }
  .about-image { order: -1; }
  .about-image .img-placeholder { aspect-ratio: 1; }
  .about-portrait { aspect-ratio: 1; object-fit: contain; background: var(--bg-alt); }
  .about-portrait.about-portrait-person { aspect-ratio: 4/5; object-fit: cover; background: none; }

  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .services-full-grid { grid-template-columns: repeat(2, 1fr); }
  .stages-grid, .stages-grid.stages-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .brochures-grid { grid-template-columns: repeat(2, 1fr); }
  .results-grid, .results-grid-full { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }

  .booking .container { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 1000px) {
  :root { --nav-h: 60px; }

  .nav-links, .nav-cta, .nav-lang-dropdown { display: none; }
  .nav-toggle { display: block; }

  @keyframes menuSlideIn {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    padding: 100px 32px 48px;
    gap: 8px;
    z-index: 999;
    overflow-y: auto;
    animation: menuSlideIn 0.3s cubic-bezier(.22,1,.36,1) both;
  }

  .nav-links.open li:nth-child(1) a { animation: fadeUp 0.4s cubic-bezier(.22,1,.36,1) both; animation-delay: 0.08s; }
  .nav-links.open li:nth-child(2) a { animation: fadeUp 0.4s cubic-bezier(.22,1,.36,1) both; animation-delay: 0.14s; }
  .nav-links.open li:nth-child(3) a { animation: fadeUp 0.4s cubic-bezier(.22,1,.36,1) both; animation-delay: 0.20s; }
  .nav-links.open li:nth-child(4) a { animation: fadeUp 0.4s cubic-bezier(.22,1,.36,1) both; animation-delay: 0.26s; }
  .nav-links.open li:nth-child(5) a { animation: fadeUp 0.4s cubic-bezier(.22,1,.36,1) both; animation-delay: 0.32s; }
  .nav-links.open li:nth-child(6) a { animation: fadeUp 0.4s cubic-bezier(.22,1,.36,1) both; animation-delay: 0.38s; }
  .nav-links.open .nav-menu-footer  { animation: fadeUp 0.4s cubic-bezier(.22,1,.36,1) both; animation-delay: 0.46s; }

  .nav-links.open a {
    font-size: 1.5rem;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    padding: 14px 20px;
    border-radius: var(--radius);
    color: var(--text);
    text-align: center;
  }

  .nav-links.open a:hover,
  .nav-links.open a.active {
    color: var(--accent);
    background: transparent;
  }

  .nav-item-dropdown {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .nav-links.open .nav-dropdown-toggle {
    animation: fadeUp 0.4s cubic-bezier(.22,1,.36,1) both;
    animation-delay: 0.20s;
    font-size: 1.5rem;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    padding: 14px 20px;
    border-radius: var(--radius);
    color: var(--text);
    background: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }

  .nav-links.open .nav-dropdown-toggle:hover,
  .nav-links.open .nav-dropdown-toggle.active { color: var(--accent); }

  .nav-dropdown-menu {
    position: static;
    box-shadow: none;
    background: none;
    padding: 0;
    margin: 0;
    opacity: 1;
    visibility: visible;
    transform: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    width: 100%;
    text-align: center;
  }

  .nav-item-dropdown.open .nav-dropdown-menu { max-height: 900px; }

  .nav-dropdown-menu a {
    font-size: 1rem;
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    padding: 9px 20px;
    color: var(--text-muted);
  }

  .nav-dropdown-menu a:hover,
  .nav-dropdown-menu a.active { color: var(--accent); background: none; }
}

@media (max-width: 768px) {
  .quote-feature { grid-template-columns: 1fr; gap: 32px; }
  .quote-feature-text { text-align: left; }

  footer .container { justify-content: center; text-align: center; }
  .footer-logo { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }
  .footer-social { justify-content: center; }

  .services-grid { grid-template-columns: 1fr; }
  .services-full-grid { grid-template-columns: 1fr; }
  .stages-grid, .stages-grid.stages-grid-3 { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .brochures-grid { grid-template-columns: repeat(2, 1fr); }
  .results-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .comparison-cols { grid-template-columns: 1fr; }
  .condition-boxes { grid-template-columns: 1fr; }
  .treatment-stages { grid-template-columns: 1fr; }
  .photo-row, .photo-row.photo-row-4 { grid-template-columns: repeat(3, 1fr); }

  .results-header { flex-direction: column; align-items: flex-start; gap: 12px; }

  .section { padding: 56px 0; }
  .section-lg { padding: 72px 0; }

  table { font-size: 0.82rem; }
  thead th, tbody td { padding: 12px 14px; }
}

@media (max-width: 480px) {
  .hero-stats { flex-direction: column; gap: 20px; }
  .stages-grid, .stages-grid.stages-grid-3 { grid-template-columns: 1fr; }
  .brochures-grid { grid-template-columns: 1fr 1fr; }
  .photo-row, .photo-row.photo-row-4 { grid-template-columns: repeat(2, 1fr); }

  table { font-size: 0.76rem; min-width: 480px; }
  thead th, tbody td { padding: 10px 12px; }
}

/* ============================================================
   ANIMATIONS
   ============================================================ */

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

/* Hero page-load stagger */
.hero .hero-tag     { animation: fadeUp 0.6s cubic-bezier(.22,1,.36,1) both; animation-delay: 0.05s; }
.hero h1            { animation: fadeUp 0.7s cubic-bezier(.22,1,.36,1) both; animation-delay: 0.15s; }
.hero .hero-subtitle{ animation: fadeUp 0.6s cubic-bezier(.22,1,.36,1) both; animation-delay: 0.28s; }
.hero .hero-actions { animation: fadeUp 0.6s cubic-bezier(.22,1,.36,1) both; animation-delay: 0.4s; }
.hero .hero-stats   { animation: fadeUp 0.6s cubic-bezier(.22,1,.36,1) both; animation-delay: 0.52s; }
.hero-image         { animation: fadeIn 0.9s ease both;                        animation-delay: 0.2s; }

/* Inner page hero stagger */
.page-hero .label { animation: fadeUp 0.5s cubic-bezier(.22,1,.36,1) both; animation-delay: 0.08s; }
.page-hero h1     { animation: fadeUp 0.7s cubic-bezier(.22,1,.36,1) both; animation-delay: 0.18s; }
.page-hero p      { animation: fadeUp 0.6s cubic-bezier(.22,1,.36,1) both; animation-delay: 0.3s; }

/* Scroll-triggered */
.anim {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s cubic-bezier(.22,1,.36,1),
              transform 0.65s cubic-bezier(.22,1,.36,1);
}
.anim.visible { opacity: 1; transform: translateY(0); }

.anim-d1 { transition-delay: 0.07s; }
.anim-d2 { transition-delay: 0.14s; }
.anim-d3 { transition-delay: 0.21s; }
.anim-d4 { transition-delay: 0.28s; }
.anim-d5 { transition-delay: 0.35s; }

@media (prefers-reduced-motion: reduce) {
  *, .anim, .anim.visible,
  .hero .hero-tag, .hero h1, .hero .hero-subtitle,
  .hero .hero-actions, .hero .hero-stats, .hero-image,
  .page-hero .label, .page-hero h1, .page-hero p {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ============================================================
   LIGHTBOX (image zoom)
   ============================================================ */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(20, 24, 22, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease;
}

.lightbox-overlay.open {
  opacity: 1;
  visibility: visible;
}

.lightbox-img {
  max-width: 100%;
  max-height: 100%;
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  cursor: zoom-out;
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: rgba(255,255,255,0.12);
  border: none;
  color: var(--white);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
}

.lightbox-close:hover { background: rgba(255,255,255,0.22); }

@media (max-width: 600px) {
  .lightbox-overlay { padding: 16px; }
  .lightbox-close { top: 12px; right: 12px; }
}

/* ============================================================
   O MENI — CERTIFICATES
   ============================================================ */
.certs-intro {
  color: var(--text-muted);
  margin-top: -8px;
  margin-bottom: 40px;
  font-size: 0.95rem;
}

.certs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.cert-card {
  display: flex;
  flex-direction: column;
}

.cert-card-frame {
  background: var(--white);
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: box-shadow 0.25s, transform 0.25s;
  overflow: hidden;
}

.cert-card-frame:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}

.cert-card-frame img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: top;
  border-radius: 2px;
  display: block;
}

.cert-card figcaption {
  margin-top: 12px;
  font-size: 0.85rem;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .certs-grid { grid-template-columns: repeat(2, 1fr); }
  .cert-card-frame img { height: 220px; }
}

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

/* ============================================================
   O MENI — EDUCATION & WORK EXPERIENCE (CV)
   ============================================================ */
.cv-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 8px;
}

.cv-col-title {
  font-size: 1rem;
  letter-spacing: 0.04em;
  color: var(--accent);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--border);
}

.cv-list li {
  display: flex;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}

.cv-list li:last-child { border-bottom: none; }

.cv-year {
  flex-shrink: 0;
  width: 96px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-muted);
  padding-top: 2px;
}

.cv-list li div {
  font-size: 0.92rem;
  color: var(--text);
  line-height: 1.55;
}

.cv-list li div strong { color: var(--text); }

.cv-extra {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.cv-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cv-tags li {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 8px 18px;
  font-size: 0.85rem;
  color: var(--text);
}

@media (max-width: 768px) {
  .cv-columns { grid-template-columns: 1fr; gap: 40px; }
}
